From f8d4617664d2c32ac3705113e450e490d6c0ab6a Mon Sep 17 00:00:00 2001 From: Marina Polubelova Date: Wed, 25 Jun 2025 11:26:02 +0200 Subject: [PATCH 01/31] proto: update aggregate operations result format --- .../lib_client/operation_result.ml | 15 ++- .../lib_dal/dal_plugin_registration.ml | 2 +- src/proto_023_PtSEouLo/lib_protocol/apply.ml | 14 +- .../lib_protocol/apply_results.ml | 33 +++-- .../lib_protocol/apply_results.mli | 8 +- .../integration/consensus/test_aggregate.ml | 21 ++- .../PtSEouLo_machine.real.ml | 126 ++++++------------ 7 files changed, 97 insertions(+), 122 deletions(-) diff --git a/src/proto_023_PtSEouLo/lib_client/operation_result.ml b/src/proto_023_PtSEouLo/lib_client/operation_result.ml index dba9ce7719ee..200fb656e5fe 100644 --- a/src/proto_023_PtSEouLo/lib_client/operation_result.ml +++ b/src/proto_023_PtSEouLo/lib_client/operation_result.ml @@ -981,6 +981,9 @@ let pp_contents_and_result : Signature.Public_key_hash.pp rewarded_delegate in + let pp_committee ppf (delegate, voting_power) = + Format.fprintf ppf "(%a, %d)" Consensus_key.pp delegate voting_power + in fun ppf -> function | Seed_nonce_revelation {level; nonce}, Seed_nonce_revelation_result bus -> Format.fprintf @@ -1051,7 +1054,7 @@ let pp_contents_and_result : consensus_power | ( Preattestations_aggregate {consensus_content = {level; _}; _}, Preattestations_aggregate_result - {balance_updates; committee; consensus_power} ) -> + {balance_updates; committee; total_consensus_power} ) -> Format.fprintf ppf "@[Preattestations aggregate:@,\ @@ -1063,12 +1066,12 @@ let pp_contents_and_result : level pp_balance_updates balance_updates - (Format.pp_print_list Consensus_key.pp) + (Format.pp_print_list pp_committee) committee - consensus_power + total_consensus_power | ( Attestations_aggregate {consensus_content = {level; _}; _}, Attestations_aggregate_result - {balance_updates; committee; consensus_power} ) -> + {balance_updates; committee; total_consensus_power} ) -> Format.fprintf ppf "@[Attestations aggregate:@,\ @@ -1080,9 +1083,9 @@ let pp_contents_and_result : level pp_balance_updates balance_updates - (Format.pp_print_list Consensus_key.pp) + (Format.pp_print_list pp_committee) committee - consensus_power + total_consensus_power | ( Double_consensus_operation_evidence {slot; op1; op2}, Double_consensus_operation_evidence_result double_signing_result ) -> Format.fprintf diff --git a/src/proto_023_PtSEouLo/lib_dal/dal_plugin_registration.ml b/src/proto_023_PtSEouLo/lib_dal/dal_plugin_registration.ml index 0b070e64cd97..8a1c1c52836c 100644 --- a/src/proto_023_PtSEouLo/lib_dal/dal_plugin_registration.ml +++ b/src/proto_023_PtSEouLo/lib_dal/dal_plugin_registration.ml @@ -270,7 +270,7 @@ module Plugin = struct (Attestations_aggregate_result {committee; _}) -> List.map2 ~when_different_lengths:[Aggregation_result_size_error] - (fun (tb_slot, dal_attestation) consensus_key -> + (fun (tb_slot, dal_attestation) (consensus_key, _) -> ( tb_slot, Some consensus_key.Consensus_key.delegate, packed_operation, diff --git a/src/proto_023_PtSEouLo/lib_protocol/apply.ml b/src/proto_023_PtSEouLo/lib_protocol/apply.ml index bbb6efddfb6f..b8e5d86d6220 100644 --- a/src/proto_023_PtSEouLo/lib_protocol/apply.ml +++ b/src/proto_023_PtSEouLo/lib_protocol/apply.ml @@ -2400,7 +2400,7 @@ let record_attestations_aggregate ctxt (mode : mode) committee : match mode with | Application _ | Full_construction _ -> let slot_map = Consensus.allowed_attestations ctxt in - let*? ctxt, rev_committee, consensus_power = + let*? ctxt, rev_committee, total_consensus_power = let open Result_syntax in List.fold_left_e (fun (ctxt, consensus_keys, consensus_power) (slot, dal) -> @@ -2412,7 +2412,8 @@ let record_attestations_aggregate ctxt (mode : mode) committee : in let* ctxt = record_dal_content ctxt slot ~dal_power dal in let key = ({delegate; consensus_pkh} : Consensus_key.t) in - return (ctxt, key :: consensus_keys, power + consensus_power)) + return + (ctxt, (key, power) :: consensus_keys, power + consensus_power)) (ctxt, [], 0) committee in @@ -2421,7 +2422,7 @@ let record_attestations_aggregate ctxt (mode : mode) committee : { balance_updates = []; committee = List.rev rev_committee; - consensus_power; + total_consensus_power; } in return (ctxt, Single_result result) @@ -2448,7 +2449,7 @@ let record_preattestations_aggregate ctxt (mode : mode) in let slot_map = Consensus.allowed_preattestations ctxt in (* Accumulate the list of delegates and the total attesting power *) - let*? ctxt, rev_committee, consensus_power = + let*? ctxt, rev_committee, total_consensus_power = let open Result_syntax in List.fold_left_e (fun (ctxt, consensus_keys, consensus_power) slot -> @@ -2463,7 +2464,8 @@ let record_preattestations_aggregate ctxt (mode : mode) round in let key = ({delegate; consensus_pkh} : Consensus_key.t) in - return (ctxt, key :: consensus_keys, power + consensus_power)) + return + (ctxt, (key, power) :: consensus_keys, power + consensus_power)) (ctxt, [], 0) committee in @@ -2472,7 +2474,7 @@ let record_preattestations_aggregate ctxt (mode : mode) { balance_updates = []; committee = List.rev rev_committee; - consensus_power; + total_consensus_power; } in return (ctxt, Single_result result) diff --git a/src/proto_023_PtSEouLo/lib_protocol/apply_results.ml b/src/proto_023_PtSEouLo/lib_protocol/apply_results.ml index 1a8a398ccf06..609d28bdb3c8 100644 --- a/src/proto_023_PtSEouLo/lib_protocol/apply_results.ml +++ b/src/proto_023_PtSEouLo/lib_protocol/apply_results.ml @@ -900,14 +900,14 @@ type 'kind contents_result = -> Kind.attestation contents_result | Preattestations_aggregate_result : { balance_updates : Receipt.balance_updates; - committee : Consensus_key.t list; - consensus_power : int; + committee : (Consensus_key.t * int) list; + total_consensus_power : int; } -> Kind.preattestations_aggregate contents_result | Attestations_aggregate_result : { balance_updates : Receipt.balance_updates; - committee : Consensus_key.t list; - consensus_power : int; + committee : (Consensus_key.t * int) list; + total_consensus_power : int; } -> Kind.attestations_aggregate contents_result | Seed_nonce_revelation_result : @@ -1042,8 +1042,13 @@ module Encoding = struct let open Data_encoding in obj3 (dft "balance_updates" Receipt.balance_updates_encoding []) - (req "committee" (list Consensus_key.encoding)) - (req "consensus_power" int31) + (req + "committee" + (list + (merge_objs + Consensus_key.encoding + (obj1 (req "consensus_power" int31))))) + (req "total_consensus_power" int31) type case = | Case : { @@ -1158,12 +1163,12 @@ module Encoding = struct proj = (function | Attestations_aggregate_result - {balance_updates; committee; consensus_power} -> - (balance_updates, committee, consensus_power)); + {balance_updates; committee; total_consensus_power} -> + (balance_updates, committee, total_consensus_power)); inj = - (fun (balance_updates, committee, consensus_power) -> + (fun (balance_updates, committee, total_consensus_power) -> Attestations_aggregate_result - {balance_updates; committee; consensus_power}); + {balance_updates; committee; total_consensus_power}); } let preattestations_aggregate_case = @@ -1184,12 +1189,12 @@ module Encoding = struct proj = (function | Preattestations_aggregate_result - {balance_updates; committee; consensus_power} -> - (balance_updates, committee, consensus_power)); + {balance_updates; committee; total_consensus_power} -> + (balance_updates, committee, total_consensus_power)); inj = - (fun (balance_updates, committee, consensus_power) -> + (fun (balance_updates, committee, total_consensus_power) -> Preattestations_aggregate_result - {balance_updates; committee; consensus_power}); + {balance_updates; committee; total_consensus_power}); } let seed_nonce_revelation_case = diff --git a/src/proto_023_PtSEouLo/lib_protocol/apply_results.mli b/src/proto_023_PtSEouLo/lib_protocol/apply_results.mli index 21434b291695..6fa6fab25c51 100644 --- a/src/proto_023_PtSEouLo/lib_protocol/apply_results.mli +++ b/src/proto_023_PtSEouLo/lib_protocol/apply_results.mli @@ -81,14 +81,14 @@ and 'kind contents_result = -> Kind.attestation contents_result | Preattestations_aggregate_result : { balance_updates : Receipt.balance_updates; - committee : Consensus_key.t list; - consensus_power : int; + committee : (Consensus_key.t * int) list; + total_consensus_power : int; } -> Kind.preattestations_aggregate contents_result | Attestations_aggregate_result : { balance_updates : Receipt.balance_updates; - committee : Consensus_key.t list; - consensus_power : int; + committee : (Consensus_key.t * int) list; + total_consensus_power : int; } -> Kind.attestations_aggregate contents_result | Seed_nonce_revelation_result : diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_aggregate.ml b/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_aggregate.ml index e06739ee3be3..98f465950e46 100644 --- a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_aggregate.ml +++ b/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_aggregate.ml @@ -118,10 +118,18 @@ let check_aggregate_result (type kind) (kind : kind aggregate) ~committee match (kind, result) with | ( Preattestation, Preattestations_aggregate_result - {balance_updates; committee = resulting_committee; consensus_power} ) + { + balance_updates; + committee = resulting_committee; + total_consensus_power; + } ) | ( Attestation, Attestations_aggregate_result - {balance_updates; committee = resulting_committee; consensus_power} ) -> + { + balance_updates; + committee = resulting_committee; + total_consensus_power; + } ) -> (* Check balance updates *) let* () = match balance_updates with @@ -137,12 +145,12 @@ let check_aggregate_result (type kind) (kind : kind aggregate) ~committee 0 committee in - if voting_power = consensus_power then return_unit + if voting_power = total_consensus_power then return_unit else Test.fail "Wrong voting power : expected %d, found %d" voting_power - consensus_power + total_consensus_power in (* Check committee *) let committee_pkhs = @@ -152,7 +160,8 @@ let check_aggregate_result (type kind) (kind : kind aggregate) ~committee in let resulting_committee_pkhs = List.map - (fun (attester : Alpha_context.Consensus_key.t) -> attester.delegate) + (fun ((attester : Alpha_context.Consensus_key.t), _) -> + attester.delegate) resulting_committee in if @@ -747,7 +756,7 @@ let test_metadata_committee_is_correctly_ordered () = let check_committees ~loc committee result_committee = let result_committee = List.map - (fun (key : Alpha_context.Consensus_key.t) -> key.consensus_pkh) + (fun ((key : Alpha_context.Consensus_key.t), _) -> key.consensus_pkh) result_committee in let* () = diff --git a/teztale/bin_teztale_archiver/PtSEouLo_machine.real.ml b/teztale/bin_teztale_archiver/PtSEouLo_machine.real.ml index 197722605111..aab594f34757 100644 --- a/teztale/bin_teztale_archiver/PtSEouLo_machine.real.ml +++ b/teztale/bin_teztale_archiver/PtSEouLo_machine.real.ml @@ -228,75 +228,23 @@ module Services : Protocol_machinery.PROTOCOL_SERVICES = struct | Consensus_ops.Preattestation -> get_preattestation_round protocol_data | Attestation -> get_attestation_round protocol_data - let get_consensus_power cctxt protocol_data delegates = - let level = - match protocol_data with - | Protocol.Alpha_context.Operation_data {contents; _} -> ( - match contents with - | Single - (Preattestations_aggregate - {consensus_content = {level; _}; committee = _}) -> - level - | Single - (Attestations_aggregate - {consensus_content = {level; _}; committee = _}) -> - level - | _ -> assert false) - in - let lvl = Protocol.Alpha_context.Raw_level.to_int32 level in - let* answers = - Plugin.RPC.Attestation_rights.get - cctxt - ~levels:[level] - ~delegates - (cctxt#chain, `Level lvl) - in - match answers with - | answer :: _ -> - return - (List.fold_left - (fun acc - Plugin.RPC.Attestation_rights. - {delegate; first_slot = _; attestation_power; _} -> - Signature.Public_key_hash.Map.add delegate attestation_power acc) - Signature.Public_key_hash.Map.empty - answer.Plugin.RPC.Attestation_rights.delegates_rights) - | [] -> return Signature.Public_key_hash.Map.empty - - let consensus_ops_from_aggregate cctxt acc hash protocol_data committee kind = - let* consensus_powers = - get_consensus_power - cctxt - protocol_data - (List.map - (fun (ck : Protocol.Alpha_context.Consensus_key.t) -> ck.delegate) - committee) - in - return - @@ List.fold_left - (fun acc (ck : Protocol.Alpha_context.Consensus_key.t) -> - let power = - match - Signature.Public_key_hash.Map.find ck.delegate consensus_powers - with - | None -> 0 - | Some power -> power - in - Consensus_ops. - { - op = - { - hash; - round = Some (get_consensus_round protocol_data kind); - kind; - }; - delegate = - Tezos_crypto.Signature.Of_V2.public_key_hash ck.delegate; - power; - } - :: acc) - acc - committee + let consensus_ops_from_aggregate acc hash protocol_data committee kind = + List.fold_left + (fun acc ((ck : Protocol.Alpha_context.Consensus_key.t), power) -> + Consensus_ops. + { + op = + { + hash; + round = Some (get_consensus_round protocol_data kind); + kind; + }; + delegate = Tezos_crypto.Signature.Of_V2.public_key_hash ck.delegate; + power; + } + :: acc) + acc + committee let consensus_ops_info_of_block cctxt hash = let* ops = @@ -359,30 +307,38 @@ module Services : Protocol_machinery.PROTOCOL_SERVICES = struct contents = Single_result (Protocol.Apply_results.Attestations_aggregate_result - {committee; consensus_power = _; balance_updates = _}); + { + committee; + total_consensus_power = _; + balance_updates = _; + }); }) -> - consensus_ops_from_aggregate - cctxt - acc - hash - protocol_data - committee - Consensus_ops.Attestation + return + @@ consensus_ops_from_aggregate + acc + hash + protocol_data + committee + Consensus_ops.Attestation | Receipt (Protocol.Apply_results.Operation_metadata { contents = Single_result (Protocol.Apply_results.Preattestations_aggregate_result - {committee; consensus_power = _; balance_updates = _}); + { + committee; + total_consensus_power = _; + balance_updates = _; + }); }) -> - consensus_ops_from_aggregate - cctxt - acc - hash - protocol_data - committee - Consensus_ops.Preattestation + return + @@ consensus_ops_from_aggregate + acc + hash + protocol_data + committee + Consensus_ops.Preattestation | _ -> return acc) [] ops -- GitLab From 8d8753aeb3d0ff19baf2c9d630cea442978d2bb1 Mon Sep 17 00:00:00 2001 From: Marina Polubelova Date: Wed, 25 Jun 2025 11:26:55 +0200 Subject: [PATCH 02/31] 023_PtSEouLo/Proto/test: test double attestation with duplicate slot in committee Porting to proto 023_PtSEouLo 61e9aed8f9b232e117cd19021612669990bd0732 - Proto/test: test double attestation with duplicate slot in committee --- .../lib_protocol/test/helpers/op.ml | 11 +- .../lib_protocol/test/helpers/op.mli | 5 + .../consensus/test_double_attestation.ml | 100 ++++++++++++++++++ 3 files changed, 111 insertions(+), 5 deletions(-) diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.ml b/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.ml index b8ad0f87f50d..7cda4d12ebf6 100644 --- a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.ml +++ b/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.ml @@ -148,7 +148,7 @@ let raw_attestation ?delegate ?slot ?level ?round ?block_payload_hash branch contents -let aggregate attestations = +let raw_aggregate attestations = let aggregate_content = List.fold_left (fun acc ({shell; protocol_data = {contents; signature}} : _ Operation.t) -> @@ -182,10 +182,11 @@ let aggregate attestations = (* Reverse committee to preserve [attestations] order *) {consensus_content; committee = List.rev committee}) in - let protocol_data = - Operation_data {contents; signature = Some (Bls signature)} - in - {shell; protocol_data} + let protocol_data = {contents; signature = Some (Bls signature)} in + ({shell; protocol_data} : Kind.attestations_aggregate operation) + +let aggregate attestations = + Option.map Operation.pack (raw_aggregate attestations) let aggregate_preattestations preattestations = let aggregate_content = diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.mli b/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.mli index 13685a020607..ccf6ab5e3500 100644 --- a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.mli +++ b/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.mli @@ -122,6 +122,11 @@ val attestations_aggregate : Attestations signed by non-bls delegates are ignored. Evaluates to {!None} if no bls-signed attestations are found or if signature_aggregation failed (due to unreadable signature representation). *) +val raw_aggregate : + Kind.attestation_consensus_kind Kind.consensus operation trace -> + Kind.attestations_aggregate operation option + +(** Same as {!raw_aggregate} but returns the packed operation. *) val aggregate : Kind.attestation_consensus_kind Kind.consensus operation trace -> Operation.packed option diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_double_attestation.ml b/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_double_attestation.ml index 670035504ff0..ca2cdb3e51b7 100644 --- a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_double_attestation.ml +++ b/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_double_attestation.ml @@ -596,6 +596,102 @@ let test_invalid_double_attestation_variant () = true | _ -> false) +let invalid_denunciation kind = function + | Validate_errors.Anonymous.Invalid_denunciation kind' -> + Misbehaviour.equal_kind kind kind' + | _ -> false + +(** Check that a double attestation operation fails if the same slot + is duplicated in the committee of one of the evidences. *) +let test_invalid_double_attestation_duplicate_in_committee () = + let open Lwt_result_wrap_syntax in + let* _genesis, block = + Test_aggregate.init_genesis_with_some_bls_accounts + ~aggregate_attestation:true + () + in + let* b = Block.bake_until_cycle_end block in + let* blk_1, blk_2 = block_fork b in + let* blk_a = Block.bake blk_1 in + let* blk_b = Block.bake blk_2 in + let* attesters = Context.get_attesters (B blk_a) in + let attester, slot = + WithExceptions.Option.get + ~loc:__LOC__ + (Test_aggregate.find_attester_with_bls_key attesters) + in + let* op1 = + Op.raw_attestation ~delegate:attester.RPC.Validators.delegate ~slot blk_a + in + let* op2_standalone = + Op.raw_attestation ~delegate:attester.RPC.Validators.delegate ~slot blk_b + in + let op2 = + WithExceptions.Option.get + ~loc:__LOC__ + (Op.raw_aggregate [op2_standalone; op2_standalone]) + in + let op = + let contents = + if Operation_hash.(Operation.hash op1 < Operation.hash op2) then + Single (Double_consensus_operation_evidence {slot; op1; op2}) + else + Single + (Double_consensus_operation_evidence {slot; op1 = op2; op2 = op1}) + in + let branch = Context.branch (B blk_a) in + { + shell = {branch}; + protocol_data = Operation_data {contents; signature = None}; + } + in + let* () = + Op.check_validation_and_application_all_modes + ~loc:__LOC__ + ~error:(invalid_denunciation Double_attesting) + ~predecessor:blk_a + op + in + (* Also check with duplicate slots with different dal contents *) + let* op2_standalone' = + let number_of_slots = + Default_parameters.constants_test.dal.number_of_slots + in + let*?@ slot_index = Dal.Slot_index.of_int ~number_of_slots 3 in + let dal_content = + {attestation = Dal.Attestation.(commit empty slot_index)} + in + Op.raw_attestation + ~delegate:attester.RPC.Validators.delegate + ~slot + ~dal_content + blk_b + in + let op2 = + WithExceptions.Option.get + ~loc:__LOC__ + (Op.raw_aggregate [op2_standalone; op2_standalone']) + in + let op = + let contents = + if Operation_hash.(Operation.hash op1 < Operation.hash op2) then + Single (Double_consensus_operation_evidence {slot; op1; op2}) + else + Single + (Double_consensus_operation_evidence {slot; op1 = op2; op2 = op1}) + in + let branch = Context.branch (B blk_a) in + { + shell = {branch}; + protocol_data = Operation_data {contents; signature = None}; + } + in + Op.check_validation_and_application_all_modes + ~loc:__LOC__ + ~error:(invalid_denunciation Double_attesting) + ~predecessor:blk_a + op + (** Check that a future-cycle double attestation fails. *) let test_too_early_double_attestation_evidence () = let open Lwt_result_syntax in @@ -998,6 +1094,10 @@ let tests = "another invalid double attestation evidence" `Quick test_invalid_double_attestation_variant; + Tztest.tztest + "invalid double attestation evidence: duplicate slot in committee" + `Quick + test_invalid_double_attestation_duplicate_in_committee; Tztest.tztest "too early double attestation evidence" `Quick -- GitLab From 82d9c909238d489e14b0eaf7377067dd9ff42942 Mon Sep 17 00:00:00 2001 From: Marina Polubelova Date: Wed, 25 Jun 2025 11:27:19 +0200 Subject: [PATCH 03/31] 023_PtSEouLo/Proto/test: test double preattestation with duplicate slot in committee Porting to proto 023_PtSEouLo 797a838d5c086343f89a60242ba6e178d287766b - Proto/test: test double preattestation with duplicate slot in committee --- .../lib_protocol/test/helpers/op.ml | 29 ++++++-- .../lib_protocol/test/helpers/op.mli | 17 +++++ .../consensus/test_double_preattestation.ml | 66 +++++++++++++++++++ 3 files changed, 105 insertions(+), 7 deletions(-) diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.ml b/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.ml index 7cda4d12ebf6..6bbd1b795081 100644 --- a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.ml +++ b/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.ml @@ -188,7 +188,7 @@ let raw_aggregate attestations = let aggregate attestations = Option.map Operation.pack (raw_aggregate attestations) -let aggregate_preattestations preattestations = +let raw_aggregate_preattestations preattestations = let aggregate_content = List.fold_left (fun acc ({shell; protocol_data = {contents; signature}} : _ Operation.t) -> @@ -217,10 +217,11 @@ let aggregate_preattestations preattestations = (* Reverse committee to preserve [preattestations] order *) {consensus_content; committee = List.rev committee}) in - let protocol_data = - Operation_data {contents; signature = Some (Bls signature)} - in - {shell; protocol_data} + let protocol_data = {contents; signature = Some (Bls signature)} in + ({shell; protocol_data} : Kind.preattestations_aggregate operation) + +let aggregate_preattestations preattestations = + Option.map Operation.pack (raw_aggregate_preattestations preattestations) let attestation ?delegate ?slot ?level ?round ?block_payload_hash ?dal_content ?branch attested_block = @@ -306,7 +307,7 @@ let preattestation ?delegate ?slot ?level ?round ?block_payload_hash ?branch in return (Operation.pack op) -let preattestations_aggregate ?committee ?level ?round ?block_payload_hash +let raw_preattestations_aggregate ?committee ?level ?round ?block_payload_hash ?branch attested_block = let open Lwt_result_syntax in let* committee = @@ -334,10 +335,24 @@ let preattestations_aggregate ?committee ?level ?round ?block_payload_hash attested_block) committee in - match aggregate_preattestations preattestations with + match raw_aggregate_preattestations preattestations with | Some preattestations_aggregate -> return preattestations_aggregate | None -> failwith "no Bls delegate found" +let preattestations_aggregate ?committee ?level ?round ?block_payload_hash + ?branch attested_block = + let open Lwt_result_syntax in + let* op = + raw_preattestations_aggregate + ?committee + ?level + ?round + ?block_payload_hash + ?branch + attested_block + in + return (Operation.pack op) + let sign ?watermark ctxt sk branch (Contents_list contents) = let open Lwt_result_syntax in let* op = sign ctxt ?watermark sk branch contents in diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.mli b/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.mli index ccf6ab5e3500..3be9e34a43e3 100644 --- a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.mli +++ b/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.mli @@ -146,6 +146,17 @@ val preattestation : (** Create a packed preattestations_aggregate that is expected for a given [Block.t]. Block context is expected to include at least one delegate with a BLS key (or a registered consensus keys). *) +val raw_preattestations_aggregate : + ?committee:public_key_hash list -> + ?level:Raw_level.t -> + ?round:Round.t -> + ?block_payload_hash:Block_payload_hash.t -> + ?branch:Block_hash.t -> + Block.t -> + Kind.preattestations_aggregate operation tzresult Lwt.t + +(** Same as {!raw_preattestations_aggregate} but returns the packed + operation. *) val preattestations_aggregate : ?committee:public_key_hash list -> ?level:Raw_level.t -> @@ -158,6 +169,12 @@ val preattestations_aggregate : (** Aggregate a list of preattestations in a single Preattestations_aggregate. Preattestations signed by non-bls delegates are ignored. Evaluates to {!None} if no bls-signed attestations are found or if signature_aggregation failed. *) +val raw_aggregate_preattestations : + Kind.preattestation_consensus_kind Kind.consensus operation trace -> + Kind.preattestations_aggregate operation option + +(** Same as {!raw_aggregate_preattestations} but returns the packed + operation. *) val aggregate_preattestations : Kind.preattestation_consensus_kind Kind.consensus operation trace -> Operation.packed option diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_double_preattestation.ml b/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_double_preattestation.ml index 984ebe471ea1..22fb696c9512 100644 --- a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_double_preattestation.ml +++ b/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_double_preattestation.ml @@ -432,6 +432,67 @@ end = struct in return_unit + let invalid_denunciation kind = function + | Validate_errors.Anonymous.Invalid_denunciation kind' -> + Misbehaviour.equal_kind kind kind' + | _ -> false + + (** Check that a double preattestation operation fails if the same slot + is duplicated in the committee of one of the evidences. *) + let test_invalid_double_preattestation_duplicate_in_committee () = + let open Lwt_result_syntax in + let* _genesis, block = + Test_aggregate.init_genesis_with_some_bls_accounts + ~aggregate_attestation:true + () + in + let* b = Block.bake_until_cycle_end block in + let* blk_1, blk_2 = block_fork b in + let* blk_a = Block.bake blk_1 in + let* blk_b = Block.bake blk_2 in + let* attesters = Context.get_attesters (B blk_a) in + let attester, slot = + WithExceptions.Option.get + ~loc:__LOC__ + (Test_aggregate.find_attester_with_bls_key attesters) + in + let* op1 = + Op.raw_preattestation + ~delegate:attester.RPC.Validators.delegate + ~slot + blk_a + in + let* op2_standalone = + Op.raw_preattestation + ~delegate:attester.RPC.Validators.delegate + ~slot + blk_b + in + let op2 = + WithExceptions.Option.get + ~loc:__LOC__ + (Op.raw_aggregate_preattestations [op2_standalone; op2_standalone]) + in + let op = + let contents = + if Operation_hash.(Operation.hash op1 < Operation.hash op2) then + Single (Double_consensus_operation_evidence {slot; op1; op2}) + else + Single + (Double_consensus_operation_evidence {slot; op1 = op2; op2 = op1}) + in + let branch = Context.branch (B blk_a) in + { + shell = {branch}; + protocol_data = Operation_data {contents; signature = None}; + } + in + Op.check_validation_and_application_all_modes + ~loc:__LOC__ + ~error:(invalid_denunciation Double_preattesting) + ~predecessor:blk_a + op + let my_tztest title test = Tztest.tztest (Format.sprintf "%s: %s" name title) test @@ -479,6 +540,11 @@ end = struct "different slots under feature flag" `Quick different_slots_under_feature_flag; + my_tztest + "ko: invalid double preattestation evidence: duplicate slot in \ + committee" + `Quick + test_invalid_double_preattestation_duplicate_in_committee; ] end -- GitLab From f113cf93a2bfdaab944dcfc5a305cc007bea52d9 Mon Sep 17 00:00:00 2001 From: Marina Polubelova Date: Wed, 25 Jun 2025 11:27:36 +0200 Subject: [PATCH 04/31] 023_PtSEouLo/Proto/validate/double consensus op: check slot unicity in each evidence op Porting to proto 023_PtSEouLo e03a4fdfc5adbb24368e013f96e4e19df75577ea - Proto/validate/double consensus op: check slot unicity in each evidence op --- .../lib_protocol/validate.ml | 55 ++++++++++++++++--- 1 file changed, 48 insertions(+), 7 deletions(-) diff --git a/src/proto_023_PtSEouLo/lib_protocol/validate.ml b/src/proto_023_PtSEouLo/lib_protocol/validate.ml index 2fe2ac45ca87..76f9ee5770c7 100644 --- a/src/proto_023_PtSEouLo/lib_protocol/validate.ml +++ b/src/proto_023_PtSEouLo/lib_protocol/validate.ml @@ -2042,6 +2042,36 @@ module Anonymous = struct | Attestations_aggregate {consensus_content; _} ) -> consensus_content + let check_no_duplicates_in_committee_preattestation committee + error_if_duplicate = + let open Result_syntax in + let* (_ : Slot.Set.t) = + List.fold_left_e + (fun seen_slots slot -> + let* () = + error_when (Slot.Set.mem slot seen_slots) error_if_duplicate + in + return (Slot.Set.add slot seen_slots)) + Slot.Set.empty + committee + in + return_unit + + let check_no_duplicates_in_committee_attestation committee error_if_duplicate + = + let open Result_syntax in + let* (_ : Slot.Set.t) = + List.fold_left_e + (fun seen_slots (slot, (_ : dal_content option)) -> + let* () = + error_when (Slot.Set.mem slot seen_slots) error_if_duplicate + in + return (Slot.Set.add slot seen_slots)) + Slot.Set.empty + committee + in + return_unit + let check_double_consensus_operation_evidence vi (operation : Kind.double_consensus_operation_evidence operation) = let open Lwt_result_syntax in @@ -2070,7 +2100,8 @@ module Anonymous = struct they must be either a standalone (pre)attestation for [slot], or an aggregate whose committee includes [slot]. *) let open Result_syntax in - let check_slot (type a) (op : a Kind.consensus Operation.t) = + let check_slot_and_committee (type a) (op : a Kind.consensus Operation.t) + = match op.protocol_data.contents with | Single (Preattestation consensus_content) | Single (Attestation {consensus_content; _}) -> @@ -2078,16 +2109,26 @@ module Anonymous = struct Slot.(consensus_content.slot = slot) (Invalid_denunciation kind) | Single (Preattestations_aggregate {committee; _}) -> - error_unless - (List.mem ~equal:Slot.equal slot committee) + let* () = + error_unless + (List.mem ~equal:Slot.equal slot committee) + (Invalid_denunciation kind) + in + check_no_duplicates_in_committee_preattestation + committee (Invalid_denunciation kind) | Single (Attestations_aggregate {committee; _}) -> - error_unless - (List.mem_assoc ~equal:Slot.equal slot committee) + let* () = + error_unless + (List.mem_assoc ~equal:Slot.equal slot committee) + (Invalid_denunciation kind) + in + check_no_duplicates_in_committee_attestation + committee (Invalid_denunciation kind) in - let* () = check_slot op1 in - check_slot op2 + let* () = check_slot_and_committee op1 in + check_slot_and_committee op2 in let*? () = (* For the double operations to be punishable, they must have at -- GitLab From 252badf076743c9280283437179448172242993c Mon Sep 17 00:00:00 2001 From: Albin Coquereau Date: Wed, 25 Jun 2025 11:40:56 +0200 Subject: [PATCH 05/31] Doc: flush alpha change log into seoul one --- docs/protocols/023_s023.rst | 4 ++++ docs/protocols/alpha.rst | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/protocols/023_s023.rst b/docs/protocols/023_s023.rst index 376cf36a5e9d..cef288a34182 100644 --- a/docs/protocols/023_s023.rst +++ b/docs/protocols/023_s023.rst @@ -124,6 +124,10 @@ Operation receipts misbehaviour's level, round, and kind (double-baking/double-attesting/double-preattesting). +- Aggregate operations receipts update. Return the consensus power for each + delegate in the committee (MR :gl:`!18435`) + + RPC Changes ----------- diff --git a/docs/protocols/alpha.rst b/docs/protocols/alpha.rst index 3bbb218cb0f4..438797258343 100644 --- a/docs/protocols/alpha.rst +++ b/docs/protocols/alpha.rst @@ -37,9 +37,6 @@ RPC Changes Operation receipts ------------------ -- Aggregate operations receipts update. Return the consensus power for each delegate in the committee (MR :gl:`!18435`) - - Errors ------ -- GitLab From 93295fd7e44535ef2682052482c6626997bca998 Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 14:24:57 +0200 Subject: [PATCH 06/31] scripts/proto_manager: update rehash according to snapshotting --- scripts/proto_manager.sh | 40 +++++++++++++++++++++++++++++++++------- 1 file changed, 33 insertions(+), 7 deletions(-) diff --git a/scripts/proto_manager.sh b/scripts/proto_manager.sh index 040b46db28e0..e25aba86cd2c 100755 --- a/scripts/proto_manager.sh +++ b/scripts/proto_manager.sh @@ -817,7 +817,7 @@ function update_protocol_tests() { ocamlformat -i src/lib_scoru_wasm/test/test_protocol_migration.ml sed -e "s/let proto_${protocol_source}_name = .*/let proto_${label}_name = \"${label}_${version}\"/" -i.old src/lib_scoru_wasm/constants.ml - ocamlformat -i src/lib_scoru_wasm/constants.ml + ocamlformat -i src/lib_scoru_wasm/constant.ml sed -e "s/${capitalized_source}/ ${capitalized_label}/g" -i.old src/lib_scoru_wasm/pvm_input_kind.ml sed -e "s/${capitalized_source}/ ${capitalized_label}/g" -i.old src/lib_scoru_wasm/pvm_input_kind.mli @@ -1006,7 +1006,7 @@ function generate_regression_test() { (*****************************************************************************) (* *) (* SPDX-License-Identifier: MIT *) -(* Copyright (c) %s Nomadic Labs *) +(* Copyright (c) %s Nomadic Labs *) (* *) (*****************************************************************************) @@ -2086,6 +2086,21 @@ function hash() { ocamlformat -i src/bin_testnet_scenarios/*.ml commit_if_changes "tezt: fix testnets_scenarios" + # fix tezt/lib_tezos/constants.ml + # replace short hash in Uses.make ~tag:"baker_" ~path:"./octez-baker-" () + echo "Adding new protocol baker" + # print all used variables for debug + echo "source_short_hash: ${source_short_hash}" + echo "short_hash: ${short_hash}" + echo "tezos_protocol_source: ${tezos_protocol_source}" + echo "new_tezos_protocol: ${new_tezos_protocol}" + sed -e "s/baker_${source_short_hash}/baker_${short_hash}/g" \ + -e "s/octez-baker-${source_short_hash}/octez-baker-${short_hash}/g" \ + -e "s/octez-baker-${tezos_protocol_source}/octez-baker-${new_tezos_protocol}/g" \ + -i tezt/lib_tezos/constant.ml + ocamlformat -i tezt/lib_tezos/constant.ml + commit_if_changes "tezt: replace baker in constant.ml" + #fix other tests: sed -e "s/Protocol.${capitalized_source}/Protocol.${capitalized_label}/g" \ -e "s/${previous_variant}/${new_variant}/g" -i tezt/tests/*.ml @@ -2109,10 +2124,16 @@ function hash() { regression_source_name="${regression_source_name}-" done + search_name="*${regression_source_name}*.out" + + echo "search_name: ${search_name}" + # shellcheck disable=SC2001 - find . -type f -name "*${alpha_regression}*.out" | while read -r FILE; do - ORIG_FILENAME=$(echo "${FILE}" | sed "s/${alpha_regression}/${regression_source_name}/g") - NEW_FILENAME=$(echo "${FILE}" | sed "s/${alpha_regression}/${regression_protocol_name}/g") + find . -type f -name "${search_name}" | while read -r FILE; do + ORIG_FILENAME=${FILE} + echo "Processing file: ${ORIG_FILENAME}" + NEW_FILENAME=$(echo "${FILE}" | sed "s/${regression_source_name}/${regression_protocol_name}/g") + echo "New filename: ${NEW_FILENAME}" # Create the directory structure for the new file if it doesn't exist mkdir -p "$(dirname "${NEW_FILENAME}")" @@ -2127,6 +2148,8 @@ function hash() { orig_filename=$(dirname "${ORIG_FILENAME}")/"${orig_filename}".out NEW_FILENAME=$(dirname "${NEW_FILENAME}")/"${filename}".out + echo "Renaming ${orig_filename} to ${NEW_FILENAME}" + if [[ "${orig_filename}" != "${NEW_FILENAME}" ]]; then ## if $FILE exists if [[ -f "${orig_filename}" ]]; then @@ -2135,6 +2158,9 @@ function hash() { else echo "File ${orig_filename} does not exist" fi + else + echo "File ${orig_filename} already has the correct name" + update_files "${NEW_FILENAME}" fi done @@ -2151,8 +2177,8 @@ function hash() { # if ${capitalized_label} exist in raw_context.ml, reset weeklynet regression test if grep -q "${capitalized_label}" src/proto_alpha/lib_protocol/raw_context.ml; then - log_blue "${capitalized_label} is an alph predecessor, reset weeklynet regression test" - dune exec tezt/tests/main.exe -- --file tezt/tests/protocol_migration.ml --title 'Alpha: weeklynet regression test' --reset-regressions + log_blue "${capitalized_label} is an alpha predecessor, reset weeklynet regression test" + dune exec tezt/tests/main.exe -- --file tezt/tests/weeklynet.ml --reset-regressions commit_if_changes "tezt: reset weeklynet regression test" fi fi -- GitLab From 1b45edabd4f10dd0f02dc4f87be6416880665533 Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:33:56 +0200 Subject: [PATCH 07/31] S023/src: restore vanity nonce --- src/proto_023_PtSEouLo/lib_protocol/main.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto_023_PtSEouLo/lib_protocol/main.ml b/src/proto_023_PtSEouLo/lib_protocol/main.ml index 7d0d3f1ec6c4..4be507fadfec 100644 --- a/src/proto_023_PtSEouLo/lib_protocol/main.ml +++ b/src/proto_023_PtSEouLo/lib_protocol/main.ml @@ -469,4 +469,4 @@ module Mempool = struct ~predecessor_hash:head_hash) end -(* Vanity nonce: 4475497670474517 *) +(* Vanity nonce: TBD *) -- GitLab From 5f70da9d16ba28aa1e4bcd89d3e7839a6dea2926 Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:34:04 +0200 Subject: [PATCH 08/31] S023/src: add vanity nonce --- src/proto_023_PtSEouLo/lib_protocol/main.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto_023_PtSEouLo/lib_protocol/main.ml b/src/proto_023_PtSEouLo/lib_protocol/main.ml index 4be507fadfec..e1b0f2612a9a 100644 --- a/src/proto_023_PtSEouLo/lib_protocol/main.ml +++ b/src/proto_023_PtSEouLo/lib_protocol/main.ml @@ -469,4 +469,4 @@ module Mempool = struct ~predecessor_hash:head_hash) end -(* Vanity nonce: TBD *) +(* Vanity nonce: 7130263421897740 *) -- GitLab From f4988ba5a73acc973299fdd2b054e0813417d985 Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:34:04 +0200 Subject: [PATCH 09/31] S023/src: update 023_PtSEouLo hash --- src/proto_023_PtSEouLo/lib_protocol/TEZOS_PROTOCOL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto_023_PtSEouLo/lib_protocol/TEZOS_PROTOCOL b/src/proto_023_PtSEouLo/lib_protocol/TEZOS_PROTOCOL index f2ec1a29f83e..a2e424eb7e37 100644 --- a/src/proto_023_PtSEouLo/lib_protocol/TEZOS_PROTOCOL +++ b/src/proto_023_PtSEouLo/lib_protocol/TEZOS_PROTOCOL @@ -1,6 +1,6 @@ { "expected_env_version": 15, - "hash": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "hash": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "modules": [ "Misc", "Non_empty_string", -- GitLab From 68d07ca84a75315a8c7e78ce12ddb8a42692852d Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:34:04 +0200 Subject: [PATCH 10/31] S023/src: rename proto_023_PtSEouLo to proto_023_PtSeouLo --- .../bin_accuser/dune | 0 .../bin_accuser/main_accuser_023_PtSEouLo.ml | 0 .../bin_baker/dune | 0 .../bin_baker/main_baker_023_PtSEouLo.ml | 0 .../lib_agnostic_baker/accuser_commands_helpers.ml | 0 .../lib_agnostic_baker/agnostic_baker_plugin.ml | 0 .../lib_agnostic_baker/baker_commands_helpers.ml | 0 .../lib_agnostic_baker/baker_commands_helpers.mli | 0 .../lib_agnostic_baker/dune | 0 .../lib_benchmark/README.md | 0 .../lib_benchmark/autocomp.ml | 0 .../lib_benchmark/dune | 0 .../lib_benchmark/execution_context.ml | 0 .../lib_benchmark/kernel.ml | 0 .../lib_benchmark/lib_benchmark_type_inference/dune | 0 .../lib_benchmark_type_inference/inference.ml | 0 .../lib_benchmark_type_inference/inference.mli | 0 .../lib_benchmark_type_inference/int_map.ml | 0 .../lib_benchmark_type_inference/mikhailsky.ml | 0 .../lib_benchmark_type_inference/mikhailsky.mli | 0 .../lib_benchmark_type_inference/mikhailsky_prim.ml | 0 .../lib_benchmark_type_inference/monads.ml | 0 .../lib_benchmark_type_inference/stores.ml | 0 .../lib_benchmark_type_inference/test/dune | 0 .../test/test_inference.ml | 0 .../lib_benchmark_type_inference/test/test_uf.ml | 0 .../lib_benchmark_type_inference/type.ml | 0 .../lib_benchmark_type_inference/type.mli | 0 .../lib_benchmark_type_inference/uf.ml | 0 .../lib_benchmark/micheline_sampler.ml | 0 .../lib_benchmark/micheline_sampler.mli | 0 .../lib_benchmark/michelson_mcmc_samplers.ml | 0 .../lib_benchmark/michelson_mcmc_samplers.mli | 0 .../lib_benchmark/michelson_samplers.ml | 0 .../lib_benchmark/michelson_samplers.mli | 0 .../lib_benchmark/michelson_samplers_base.ml | 0 .../lib_benchmark/michelson_samplers_base.mli | 0 .../lib_benchmark/mikhailsky_to_michelson.ml | 0 .../lib_benchmark/rules.ml | 0 .../lib_benchmark/sampling_helpers.ml | 0 .../lib_benchmark/state_space.ml | 0 .../lib_benchmark/test/dune | 0 .../lib_benchmark/test/test_autocompletion.ml | 0 .../lib_benchmark/test/test_distribution.ml | 0 .../lib_benchmark/test/test_helpers.ml | 0 .../lib_benchmark/test/test_sampling_code.ml | 0 .../lib_benchmark/test/test_sampling_data.ml | 0 .../lib_benchmark/type_helpers.ml | 0 .../lib_benchmark/type_helpers.mli | 0 .../lib_benchmarks_proto/apply_benchmarks.ml | 0 .../lib_benchmarks_proto/benchmarks_proto.ml | 0 .../lib_benchmarks_proto/benchmarks_proto.mli | 0 .../lib_benchmarks_proto/cache_benchmarks.ml | 0 .../carbonated_map_benchmarks.ml | 0 .../lib_benchmarks_proto/dal_benchmarks.ml | 0 .../lib_benchmarks_proto/dune | 0 .../lib_benchmarks_proto/encodings_benchmarks.ml | 0 .../lib_benchmarks_proto/gas_helpers.ml | 0 .../global_constants_storage_benchmarks.ml | 0 .../lib_benchmarks_proto/interpreter_benchmarks.ml | 0 .../lib_benchmarks_proto/interpreter_model.ml | 0 .../lib_benchmarks_proto/interpreter_workload.ml | 0 .../lib_benchmarks_proto/michelson_commands.ml | 0 .../lib_benchmarks_proto/michelson_generation.ml | 0 .../lib_benchmarks_proto/michelson_generation.mli | 0 .../lib_benchmarks_proto/michelson_types.ml | 0 .../lib_benchmarks_proto/registration_helpers.ml | 0 .../lib_benchmarks_proto/sapling_benchmarks.ml | 0 .../lib_benchmarks_proto/sapling_commands.ml | 0 .../lib_benchmarks_proto/sapling_generation.ml | 0 .../lib_benchmarks_proto/sc_rollup_benchmarks.ml | 0 .../lib_benchmarks_proto/script_repr_benchmarks.ml | 0 .../script_typed_ir_size_benchmarks.ml | 0 .../lib_benchmarks_proto/skip_list_benchmarks.ml | 0 .../lib_benchmarks_proto/storage_benchmarks.ml | 0 .../lib_benchmarks_proto/tags.ml | 0 .../lib_benchmarks_proto/ticket_benchmarks.ml | 0 .../lib_benchmarks_proto/translator_benchmarks.ml | 0 .../lib_benchmarks_proto/translator_model.ml | 0 .../lib_benchmarks_proto/translator_workload.ml | 0 .../lib_client/annotated_manager_operation.ml | 0 .../lib_client/annotated_manager_operation.mli | 0 .../lib_client/client_proto_args.ml | 0 .../lib_client/client_proto_args.mli | 0 .../lib_client/client_proto_context.ml | 0 .../lib_client/client_proto_context.mli | 0 .../lib_client/client_proto_contracts.ml | 0 .../lib_client/client_proto_contracts.mli | 0 .../lib_client/client_proto_fa12.ml | 0 .../lib_client/client_proto_fa12.mli | 0 .../lib_client/client_proto_multisig.ml | 0 .../lib_client/client_proto_multisig.mli | 0 .../lib_client/client_proto_programs.ml | 0 .../lib_client/client_proto_programs.mli | 0 .../lib_client/client_proto_rollups.ml | 0 .../lib_client/client_proto_rollups.mli | 0 .../lib_client/client_proto_tzt.ml | 0 .../lib_client/client_proto_tzt.mli | 0 .../lib_client/client_proto_utils.ml | 0 .../lib_client/client_proto_utils.mli | 0 .../lib_client/dune | 0 .../lib_client/injection.ml | 0 .../lib_client/injection.mli | 0 .../lib_client/light.ml | 0 .../lib_client/limit.ml | 0 .../lib_client/limit.mli | 0 .../lib_client/managed_contract.ml | 0 .../lib_client/managed_contract.mli | 0 .../lib_client/michelson_v1_emacs.ml | 0 .../lib_client/michelson_v1_emacs.mli | 0 .../lib_client/michelson_v1_entrypoints.ml | 0 .../lib_client/michelson_v1_entrypoints.mli | 0 .../lib_client/michelson_v1_error_reporter.ml | 0 .../lib_client/michelson_v1_error_reporter.mli | 0 .../lib_client/michelson_v1_helpers.ml | 0 .../lib_client/michelson_v1_macros.ml | 0 .../lib_client/michelson_v1_macros.mli | 0 .../lib_client/michelson_v1_parser.ml | 0 .../lib_client/michelson_v1_parser.mli | 0 .../lib_client/michelson_v1_printer.ml | 0 .../lib_client/michelson_v1_printer.mli | 0 .../lib_client/michelson_v1_stack.ml | 0 .../lib_client/michelson_v1_stack.mli | 0 .../lib_client/mockup.ml | 0 .../lib_client/operation_result.ml | 0 .../lib_client/operation_result.mli | 0 .../lib_client/protocol_client_context.ml | 0 .../lib_client/proxy.ml | 0 .../lib_client/test/dune | 0 .../lib_client/test/test_client_proto_context.ml | 0 .../lib_client/test/test_client_proto_contracts.ml | 0 .../lib_client/test/test_michelson_v1_macros.ml | 0 .../lib_client/test/test_proxy.ml | 0 .../alpha_commands_registration.ml | 0 .../lib_client_commands/client_bls_commands.ml | 0 .../lib_client_commands/client_bls_commands.mli | 0 .../client_proto_context_commands.ml | 0 .../client_proto_contracts_commands.ml | 0 .../client_proto_fa12_commands.ml | 0 .../client_proto_mockup_commands.ml | 0 .../client_proto_mockup_commands.mli | 0 .../client_proto_multisig_commands.ml | 0 .../client_proto_multisig_commands.mli | 0 .../client_proto_programs_commands.ml | 0 .../client_proto_programs_commands.mli | 0 .../client_proto_stresstest_commands.ml | 0 .../client_proto_stresstest_commands.mli | 0 .../client_proto_stresstest_contracts.ml | 0 .../client_proto_stresstest_contracts.mli | 0 .../client_proto_utils_commands.ml | 0 .../client_proto_utils_commands.mli | 0 .../lib_client_commands/dune | 0 .../lib_client_sapling/client_sapling_commands.ml | 0 .../lib_client_sapling/client_sapling_commands.mli | 0 .../lib_client_sapling/context.ml | 0 .../lib_client_sapling/context.mli | 0 .../lib_client_sapling/dune | 0 .../lib_client_sapling/wallet.ml | 0 .../lib_client_sapling/wallet.mli | 0 .../lib_dal/RPC_directory.ml | 0 .../lib_dal/RPC_directory.mli | 0 .../lib_dal/dal_plugin_registration.ml | 0 .../lib_dal/dal_proto_client.ml | 0 .../lib_dal/dal_proto_client.mli | 0 .../lib_dal/dal_services.ml | 0 .../lib_dal/dal_services.mli | 0 .../lib_dal/dal_slot_frame_encoding.ml | 0 .../lib_dal/dal_slot_frame_encoding.mli | 0 .../lib_dal/dune | 0 .../lib_dal/test/dune | 0 .../lib_dal/test/test_dal_slot_frame_encoding.ml | 0 .../lib_dal/test/test_helpers.ml | 0 .../lib_delegate/abstract_context_index.ml | 0 .../lib_delegate/abstract_context_index.mli | 0 .../lib_delegate/baking_actions.ml | 0 .../lib_delegate/baking_actions.mli | 0 .../lib_delegate/baking_cache.ml | 0 .../lib_delegate/baking_commands.ml | 0 .../lib_delegate/baking_commands.mli | 0 .../lib_delegate/baking_commands_registration.ml | 0 .../lib_delegate/baking_configuration.ml | 0 .../lib_delegate/baking_configuration.mli | 0 .../lib_delegate/baking_errors.ml | 0 .../lib_delegate/baking_events.ml | 0 .../lib_delegate/baking_files.ml | 0 .../lib_delegate/baking_files.mli | 0 .../lib_delegate/baking_highwatermarks.ml | 0 .../lib_delegate/baking_highwatermarks.mli | 0 .../lib_delegate/baking_lib.ml | 0 .../lib_delegate/baking_lib.mli | 0 .../lib_delegate/baking_nonces.ml | 0 .../lib_delegate/baking_nonces.mli | 0 .../lib_delegate/baking_pow.ml | 0 .../lib_delegate/baking_pow.mli | 0 .../lib_delegate/baking_profiler.ml | 0 .../lib_delegate/baking_scheduling.ml | 0 .../lib_delegate/baking_scheduling.mli | 0 .../lib_delegate/baking_simulator.ml | 0 .../lib_delegate/baking_simulator.mli | 0 .../lib_delegate/baking_state.ml | 0 .../lib_delegate/baking_state.mli | 0 .../lib_delegate/baking_state_types.ml | 0 .../lib_delegate/baking_state_types.mli | 0 .../lib_delegate/baking_vdf.ml | 0 .../lib_delegate/baking_vdf.mli | 0 .../lib_delegate/block_forge.ml | 0 .../lib_delegate/block_forge.mli | 0 .../lib_delegate/client_baking_blocks.ml | 0 .../lib_delegate/client_baking_blocks.mli | 0 .../lib_delegate/client_baking_denunciation.ml | 0 .../lib_delegate/client_baking_denunciation.mli | 0 .../lib_delegate/client_baking_scheduling.ml | 0 .../lib_delegate/client_baking_scheduling.mli | 0 .../lib_delegate/client_daemon.ml | 0 .../lib_delegate/client_daemon.mli | 0 .../lib_delegate/delegate_events.ml | 0 .../lib_delegate/dune | 0 .../lib_delegate/forge_worker.ml | 0 .../lib_delegate/forge_worker.mli | 0 .../lib_delegate/node_rpc.ml | 0 .../lib_delegate/node_rpc.mli | 0 .../lib_delegate/operation_pool.ml | 0 .../lib_delegate/operation_pool.mli | 0 .../lib_delegate/operation_selection.ml | 0 .../lib_delegate/operation_selection.mli | 0 .../lib_delegate/operation_worker.ml | 0 .../lib_delegate/operation_worker.mli | 0 .../lib_delegate/state_transitions.ml | 0 .../lib_delegate/state_transitions.mli | 0 .../lib_delegate/test/README.md | 0 .../lib_delegate/test/dune | 0 .../test/mockup_simulator/broadcast_services.ml | 0 .../lib_delegate/test/mockup_simulator/dune | 0 .../test/mockup_simulator/faked_client_context.ml | 0 .../test/mockup_simulator/faked_daemon.ml | 0 .../test/mockup_simulator/faked_services.ml | 0 .../test/mockup_simulator/mockup_simulator.ml | 0 .../test/mockup_simulator/mockup_simulator.mli | 0 .../lib_delegate/test/tenderbrute/dune | 0 .../lib_delegate/test/tenderbrute/lib/dune | 0 .../test/tenderbrute/lib/tenderbrute.ml | 0 .../test/tenderbrute/lib/tenderbrute.mli | 0 .../test/tenderbrute/tenderbrute_main.ml | 0 .../lib_delegate/test/test_scenario.ml | 0 .../lib_delegate/vdf_helpers.ml | 0 .../lib_delegate/vdf_helpers.mli | 0 .../lib_injector/dune | 0 .../lib_injector/injector_plugin.ml | 0 .../lib_layer2_utils/dune | 0 .../lib_layer2_utils/layer1_services.ml | 0 .../lib_layer2_utils/layer1_services.mli | 0 .../lib_parameters/default_parameters.ml | 0 .../lib_parameters/default_parameters.mli | 0 .../lib_parameters/dune | 0 .../lib_parameters/gen.ml | 0 .../lib_plugin/RPC.ml | 0 .../lib_plugin/adaptive_issuance_services.ml | 0 .../lib_plugin/adaptive_issuance_services.mli | 0 .../lib_plugin/alpha_services.ml | 0 .../lib_plugin/alpha_services.mli | 0 .../lib_plugin/constants_services.ml | 0 .../lib_plugin/constants_services.mli | 0 .../lib_plugin/contract_services.ml | 0 .../lib_plugin/contract_services.mli | 0 .../lib_plugin/dal_services.ml | 0 .../lib_plugin/dal_services.mli | 0 .../lib_plugin/delegate_services.ml | 0 .../lib_plugin/delegate_services.mli | 0 .../lib_plugin/delegators_contribution.ml | 0 .../lib_plugin/delegators_contribution.mli | 0 .../lib_plugin/dune | 0 .../lib_plugin/http_cache_headers.ml | 0 .../lib_plugin/http_cache_headers.mli | 0 .../lib_plugin/index.mld | 0 .../lib_plugin/mempool.ml | 0 .../lib_plugin/mempool.mli | 0 .../lib_plugin/metrics_plugin.ml | 0 .../lib_plugin/plugin.ml | 0 .../lib_plugin/plugin_errors.ml | 0 .../lib_plugin/plugin_registerer.ml | 0 .../lib_plugin/sapling_services.ml | 0 .../lib_plugin/script_interpreter_logging.ml | 0 .../lib_plugin/script_interpreter_logging.mli | 0 .../lib_plugin/services_registration.ml | 0 .../lib_plugin/services_registration.mli | 0 .../lib_plugin/services_registration_plugin.ml | 0 .../lib_plugin/shell_helpers.ml | 0 .../lib_plugin/test/dune | 0 .../lib_plugin/test/helpers.ml | 0 .../lib_plugin/test/test_conflict_handler.ml | 0 .../lib_plugin/test/test_consensus_filter.ml | 0 .../lib_plugin/test/test_fee_needed_to_overtake.ml | 0 .../test/test_fee_needed_to_replace_by_fee.ml | 0 .../lib_plugin/view_helpers.ml | 0 .../lib_plugin/voting_services.ml | 0 .../lib_plugin/voting_services.mli | 0 .../lib_protocol/.ocamlformat-ignore | 0 .../lib_protocol/TEZOS_PROTOCOL | 0 .../lib_protocol/adaptive_issuance_costs.ml | 0 .../lib_protocol/adaptive_issuance_costs.mli | 0 .../lib_protocol/adaptive_issuance_storage.ml | 0 .../lib_protocol/adaptive_issuance_storage.mli | 0 .../lib_protocol/alpha_context.ml | 0 .../lib_protocol/alpha_context.mli | 0 .../lib_protocol/already_denounced_storage.ml | 0 .../lib_protocol/already_denounced_storage.mli | 0 .../lib_protocol/amendment.ml | 0 .../lib_protocol/amendment.mli | 0 .../lib_protocol/apply.ml | 0 .../lib_protocol/apply.mli | 0 .../lib_protocol/apply_internal_results.ml | 0 .../lib_protocol/apply_internal_results.mli | 0 .../lib_protocol/apply_operation_result.ml | 0 .../lib_protocol/apply_operation_result.mli | 0 .../lib_protocol/apply_results.ml | 0 .../lib_protocol/apply_results.mli | 0 .../lib_protocol/baking.ml | 0 .../lib_protocol/baking.mli | 0 .../lib_protocol/blinded_public_key_hash.ml | 0 .../lib_protocol/blinded_public_key_hash.mli | 0 .../lib_protocol/block_header_repr.ml | 0 .../lib_protocol/block_header_repr.mli | 0 .../lib_protocol/block_payload_hash.ml | 0 .../lib_protocol/block_payload_hash.mli | 0 .../lib_protocol/block_payload_repr.ml | 0 .../lib_protocol/block_payload_repr.mli | 0 .../lib_protocol/bond_id_repr.ml | 0 .../lib_protocol/bond_id_repr.mli | 0 .../lib_protocol/bootstrap_storage.ml | 0 .../lib_protocol/bootstrap_storage.mli | 0 .../lib_protocol/bounded_history_repr.ml | 0 .../lib_protocol/bounded_history_repr.mli | 0 .../lib_protocol/cache_memory_helpers.ml | 0 .../lib_protocol/cache_repr.ml | 0 .../lib_protocol/cache_repr.mli | 0 .../lib_protocol/cache_repr_costs.ml | 0 .../lib_protocol/cache_repr_costs_generated.ml | 0 .../lib_protocol/carbonated_map.ml | 0 .../lib_protocol/carbonated_map.mli | 0 .../lib_protocol/carbonated_map_costs.ml | 0 .../lib_protocol/carbonated_map_costs.mli | 0 .../lib_protocol/carbonated_map_costs_generated.ml | 0 .../lib_protocol/commitment_repr.ml | 0 .../lib_protocol/commitment_repr.mli | 0 .../lib_protocol/commitment_storage.ml | 0 .../lib_protocol/commitment_storage.mli | 0 .../constants_parametric_previous_repr.ml | 0 .../constants_parametric_previous_repr.mli | 0 .../lib_protocol/constants_parametric_repr.ml | 0 .../lib_protocol/constants_parametric_repr.mli | 0 .../lib_protocol/constants_repr.ml | 0 .../lib_protocol/constants_repr.mli | 0 .../lib_protocol/constants_storage.ml | 0 .../lib_protocol/constants_storage.mli | 0 .../lib_protocol/context_binary_proof.ml | 0 .../lib_protocol/context_binary_proof.mli | 0 .../lib_protocol/contract_delegate_storage.ml | 0 .../lib_protocol/contract_delegate_storage.mli | 0 .../lib_protocol/contract_hash.ml | 0 .../lib_protocol/contract_hash.mli | 0 .../lib_protocol/contract_manager_storage.ml | 0 .../lib_protocol/contract_manager_storage.mli | 0 .../lib_protocol/contract_repr.ml | 0 .../lib_protocol/contract_repr.mli | 0 .../lib_protocol/contract_storage.ml | 0 .../lib_protocol/contract_storage.mli | 0 .../lib_protocol/contracts/cpmm.bin | 0 .../lib_protocol/contracts/cpmm.mligo | 0 .../lib_protocol/contracts/cpmm.tz | 0 .../lib_protocol/contracts/lqt.bin | 0 .../lib_protocol/contracts/lqt.mligo | 0 .../lib_protocol/contracts/lqt.tz | 0 .../lib_protocol/contracts/timelock_flip.tz | 0 .../lib_protocol/cycle_repr.ml | 0 .../lib_protocol/cycle_repr.mli | 0 .../lib_protocol/cycle_storage.ml | 0 .../lib_protocol/cycle_storage.mli | 0 .../lib_protocol/dal_already_denounced_storage.ml | 0 .../lib_protocol/dal_already_denounced_storage.mli | 0 .../lib_protocol/dal_apply.ml | 0 .../lib_protocol/dal_apply.mli | 0 .../lib_protocol/dal_attestation_repr.ml | 0 .../lib_protocol/dal_attestation_repr.mli | 0 .../lib_protocol/dal_costs.ml | 0 .../lib_protocol/dal_costs_generated.ml | 0 .../lib_protocol/dal_costs_generated.mli | 0 .../lib_protocol/dal_errors_repr.ml | 0 .../lib_protocol/dal_operations_repr.ml | 0 .../lib_protocol/dal_operations_repr.mli | 0 .../lib_protocol/dal_slot_index_repr.ml | 0 .../lib_protocol/dal_slot_index_repr.mli | 0 .../lib_protocol/dal_slot_repr.ml | 0 .../lib_protocol/dal_slot_repr.mli | 0 .../lib_protocol/dal_slot_storage.ml | 0 .../lib_protocol/dal_slot_storage.mli | 0 .../lib_protocol/delegate_activation_storage.ml | 0 .../lib_protocol/delegate_activation_storage.mli | 0 .../lib_protocol/delegate_consensus_key.ml | 0 .../lib_protocol/delegate_consensus_key.mli | 0 .../lib_protocol/delegate_cycles.ml | 0 .../lib_protocol/delegate_cycles.mli | 0 .../delegate_missed_attestations_storage.ml | 0 .../delegate_missed_attestations_storage.mli | 0 .../lib_protocol/delegate_rewards.ml | 0 .../lib_protocol/delegate_rewards.mli | 0 .../lib_protocol/delegate_sampler.ml | 0 .../lib_protocol/delegate_sampler.mli | 0 .../delegate_slashed_deposits_storage.ml | 0 .../delegate_slashed_deposits_storage.mli | 0 .../lib_protocol/delegate_staking_parameters.ml | 0 .../lib_protocol/delegate_staking_parameters.mli | 0 .../lib_protocol/delegate_storage.ml | 0 .../lib_protocol/delegate_storage.mli | 0 .../lib_protocol/denunciations_repr.ml | 0 .../lib_protocol/denunciations_repr.mli | 0 .../lib_protocol/dependent_bool.ml | 0 .../lib_protocol/dependent_bool.mli | 0 .../lib_protocol/deposits_repr.ml | 0 .../lib_protocol/deposits_repr.mli | 0 .../lib_protocol/destination_repr.ml | 0 .../lib_protocol/destination_repr.mli | 0 .../lib_protocol/destination_storage.ml | 0 .../lib_protocol/destination_storage.mli | 0 .../lib_protocol/dune | 0 .../lib_protocol/entrypoint_repr.ml | 0 .../lib_protocol/entrypoint_repr.mli | 0 .../lib_protocol/fees_storage.ml | 0 .../lib_protocol/fees_storage.mli | 0 .../lib_protocol/fitness_repr.ml | 0 .../lib_protocol/fitness_repr.mli | 0 .../lib_protocol/fixed_point_repr.ml | 0 .../lib_protocol/fixed_point_repr.mli | 0 .../lib_protocol/forbidden_delegates_storage.ml | 0 .../lib_protocol/forbidden_delegates_storage.mli | 0 .../lib_protocol/frozen_staker_repr.ml | 0 .../lib_protocol/frozen_staker_repr.mli | 0 .../lib_protocol/full_staking_balance_repr.ml | 0 .../lib_protocol/full_staking_balance_repr.mli | 0 .../lib_protocol/gas_comparable_input_size.ml | 0 .../lib_protocol/gas_comparable_input_size.mli | 0 .../lib_protocol/gas_input_size.ml | 0 .../lib_protocol/gas_input_size.mli | 0 .../lib_protocol/gas_limit_repr.ml | 0 .../lib_protocol/gas_limit_repr.mli | 0 .../lib_protocol/gas_monad.ml | 0 .../lib_protocol/gas_monad.mli | 0 .../lib_protocol/gas_parameters.json | 0 .../lib_protocol/global_constants_costs.ml | 0 .../lib_protocol/global_constants_costs.mli | 0 .../global_constants_costs_generated.ml | 0 .../lib_protocol/global_constants_storage.ml | 0 .../lib_protocol/global_constants_storage.mli | 0 .../lib_protocol/indexable.ml | 0 .../lib_protocol/indexable.mli | 0 .../lib_protocol/init_storage.ml | 0 .../lib_protocol/init_storage.mli | 0 .../lib_protocol/issuance_bonus_repr.ml | 0 .../lib_protocol/issuance_bonus_repr.mli | 0 .../lib_protocol/lazy_storage_diff.ml | 0 .../lib_protocol/lazy_storage_diff.mli | 0 .../lib_protocol/lazy_storage_kind.ml | 0 .../lib_protocol/lazy_storage_kind.mli | 0 .../lib_protocol/legacy_script_patches.ml | 0 .../lib_protocol/level_repr.ml | 0 .../lib_protocol/level_repr.mli | 0 .../lib_protocol/level_storage.ml | 0 .../lib_protocol/level_storage.mli | 0 .../lib_protocol/liquidity_baking_cpmm.ml | 0 .../lib_protocol/liquidity_baking_lqt.ml | 0 .../lib_protocol/liquidity_baking_migration.ml | 0 .../lib_protocol/liquidity_baking_migration.mli | 0 .../lib_protocol/liquidity_baking_storage.ml | 0 .../lib_protocol/liquidity_baking_storage.mli | 0 .../lib_protocol/local_gas_counter.ml | 0 .../lib_protocol/local_gas_counter.mli | 0 .../lib_protocol/main.ml | 0 .../lib_protocol/main.mli | 0 .../lib_protocol/manager_counter_repr.ml | 0 .../lib_protocol/manager_counter_repr.mli | 0 .../lib_protocol/manager_repr.ml | 0 .../lib_protocol/manager_repr.mli | 0 .../lib_protocol/mempool_validation.ml | 0 .../lib_protocol/mempool_validation.mli | 0 .../lib_protocol/merkle_list.ml | 0 .../lib_protocol/merkle_list.mli | 0 .../lib_protocol/michelson_v1_gas.ml | 0 .../lib_protocol/michelson_v1_gas.mli | 0 .../lib_protocol/michelson_v1_gas_costs.ml | 0 .../michelson_v1_gas_costs_generated.ml | 0 .../lib_protocol/michelson_v1_primitives.ml | 0 .../lib_protocol/michelson_v1_primitives.mli | 0 .../lib_protocol/migration_repr.ml | 0 .../lib_protocol/migration_repr.mli | 0 .../lib_protocol/misbehaviour_repr.ml | 0 .../lib_protocol/misbehaviour_repr.mli | 0 .../lib_protocol/misc.ml | 0 .../lib_protocol/misc.mli | 0 .../lib_protocol/non_empty_string.ml | 0 .../lib_protocol/non_empty_string.mli | 0 .../lib_protocol/nonce_hash.ml | 0 .../lib_protocol/nonce_hash.mli | 0 .../lib_protocol/nonce_storage.ml | 0 .../lib_protocol/nonce_storage.mli | 0 .../lib_protocol/operation_costs.ml | 0 .../lib_protocol/operation_costs.mli | 0 .../lib_protocol/operation_repr.ml | 0 .../lib_protocol/operation_repr.mli | 0 .../lib_protocol/origination_nonce.ml | 0 .../lib_protocol/origination_nonce.mli | 0 .../lib_protocol/parameters_repr.ml | 0 .../lib_protocol/parameters_repr.mli | 0 .../lib_protocol/path_encoding.ml | 0 .../lib_protocol/path_encoding.mli | 0 .../lib_protocol/pending_denunciations_storage.ml | 0 .../lib_protocol/pending_denunciations_storage.mli | 0 .../lib_protocol/per_block_votes_repr.ml | 0 .../lib_protocol/per_block_votes_repr.mli | 0 .../lib_protocol/percentage.ml | 0 .../lib_protocol/percentage.mli | 0 .../lib_protocol/period_repr.ml | 0 .../lib_protocol/period_repr.mli | 0 .../lib_protocol/ratio_repr.ml | 0 .../lib_protocol/ratio_repr.mli | 0 .../lib_protocol/raw_context.ml | 0 .../lib_protocol/raw_context.mli | 0 .../lib_protocol/raw_context_intf.ml | 0 .../lib_protocol/raw_level_repr.ml | 0 .../lib_protocol/raw_level_repr.mli | 0 .../lib_protocol/receipt_repr.ml | 0 .../lib_protocol/receipt_repr.mli | 0 .../lib_protocol/round_repr.ml | 0 .../lib_protocol/round_repr.mli | 0 .../lib_protocol/sampler.ml | 0 .../lib_protocol/sampler.mli | 0 .../lib_protocol/sapling_repr.ml | 0 .../lib_protocol/sapling_storage.ml | 0 .../lib_protocol/sapling_storage_costs.ml | 0 .../lib_protocol/sapling_storage_costs_generated.ml | 0 .../lib_protocol/sapling_validator.ml | 0 .../lib_protocol/saturation_repr.ml | 0 .../lib_protocol/saturation_repr.mli | 0 .../lib_protocol/sc_rollup_PVM_sig.ml | 0 .../lib_protocol/sc_rollup_arith.ml | 0 .../lib_protocol/sc_rollup_arith.mli | 0 .../lib_protocol/sc_rollup_commitment_repr.ml | 0 .../lib_protocol/sc_rollup_commitment_repr.mli | 0 .../lib_protocol/sc_rollup_commitment_storage.ml | 0 .../lib_protocol/sc_rollup_commitment_storage.mli | 0 .../lib_protocol/sc_rollup_costs.ml | 0 .../lib_protocol/sc_rollup_costs.mli | 0 .../lib_protocol/sc_rollup_costs_generated.ml | 0 .../lib_protocol/sc_rollup_dal_parameters_repr.ml | 0 .../lib_protocol/sc_rollup_dal_parameters_repr.mli | 0 .../lib_protocol/sc_rollup_data_version_sig.ml | 0 .../lib_protocol/sc_rollup_dissection_chunk_repr.ml | 0 .../sc_rollup_dissection_chunk_repr.mli | 0 .../lib_protocol/sc_rollup_errors.ml | 0 .../lib_protocol/sc_rollup_game_repr.ml | 0 .../lib_protocol/sc_rollup_game_repr.mli | 0 ...c_rollup_inbox_merkelized_payload_hashes_repr.ml | 0 ..._rollup_inbox_merkelized_payload_hashes_repr.mli | 0 .../lib_protocol/sc_rollup_inbox_message_repr.ml | 0 .../lib_protocol/sc_rollup_inbox_message_repr.mli | 0 .../lib_protocol/sc_rollup_inbox_repr.ml | 0 .../lib_protocol/sc_rollup_inbox_repr.mli | 0 .../lib_protocol/sc_rollup_inbox_storage.ml | 0 .../lib_protocol/sc_rollup_inbox_storage.mli | 0 .../lib_protocol/sc_rollup_management_protocol.ml | 0 .../lib_protocol/sc_rollup_management_protocol.mli | 0 .../lib_protocol/sc_rollup_metadata_repr.ml | 0 .../lib_protocol/sc_rollup_metadata_repr.mli | 0 .../lib_protocol/sc_rollup_operations.ml | 0 .../lib_protocol/sc_rollup_operations.mli | 0 .../lib_protocol/sc_rollup_origination_machine.ml | 0 .../lib_protocol/sc_rollup_origination_machine.mli | 0 .../lib_protocol/sc_rollup_outbox_message_repr.ml | 0 .../lib_protocol/sc_rollup_outbox_message_repr.mli | 0 .../lib_protocol/sc_rollup_outbox_storage.ml | 0 .../lib_protocol/sc_rollup_outbox_storage.mli | 0 .../lib_protocol/sc_rollup_proof_repr.ml | 0 .../lib_protocol/sc_rollup_proof_repr.mli | 0 .../lib_protocol/sc_rollup_refutation_storage.ml | 0 .../lib_protocol/sc_rollup_refutation_storage.mli | 0 .../lib_protocol/sc_rollup_repr.ml | 0 .../lib_protocol/sc_rollup_repr.mli | 0 .../lib_protocol/sc_rollup_reveal_hash.ml | 0 .../lib_protocol/sc_rollup_reveal_hash.mli | 0 .../lib_protocol/sc_rollup_riscv.ml | 0 .../lib_protocol/sc_rollup_riscv.mli | 0 .../lib_protocol/sc_rollup_stake_storage.ml | 0 .../lib_protocol/sc_rollup_stake_storage.mli | 0 .../lib_protocol/sc_rollup_staker_index_repr.ml | 0 .../lib_protocol/sc_rollup_staker_index_repr.mli | 0 .../lib_protocol/sc_rollup_staker_index_storage.ml | 0 .../lib_protocol/sc_rollup_staker_index_storage.mli | 0 .../lib_protocol/sc_rollup_storage.ml | 0 .../lib_protocol/sc_rollup_storage.mli | 0 .../lib_protocol/sc_rollup_tick_repr.ml | 0 .../lib_protocol/sc_rollup_tick_repr.mli | 0 .../lib_protocol/sc_rollup_wasm.ml | 0 .../lib_protocol/sc_rollup_wasm.mli | 0 .../lib_protocol/sc_rollup_whitelist_repr.ml | 0 .../lib_protocol/sc_rollup_whitelist_repr.mli | 0 .../lib_protocol/sc_rollup_whitelist_storage.ml | 0 .../lib_protocol/sc_rollup_whitelist_storage.mli | 0 .../lib_protocol/sc_rollups.ml | 0 .../lib_protocol/sc_rollups.mli | 0 .../lib_protocol/script_big_map.ml | 0 .../lib_protocol/script_big_map.mli | 0 .../lib_protocol/script_bytes.ml | 0 .../lib_protocol/script_bytes.mli | 0 .../lib_protocol/script_cache.ml | 0 .../lib_protocol/script_cache.mli | 0 .../lib_protocol/script_comparable.ml | 0 .../lib_protocol/script_comparable.mli | 0 .../lib_protocol/script_expr_hash.ml | 0 .../lib_protocol/script_expr_hash.mli | 0 .../lib_protocol/script_int.ml | 0 .../lib_protocol/script_int.mli | 0 .../lib_protocol/script_interpreter.ml | 0 .../lib_protocol/script_interpreter.mli | 0 .../lib_protocol/script_interpreter_defs.ml | 0 .../lib_protocol/script_ir_annot.ml | 0 .../lib_protocol/script_ir_annot.mli | 0 .../lib_protocol/script_ir_translator.ml | 0 .../lib_protocol/script_ir_translator.mli | 0 .../lib_protocol/script_ir_translator_config.ml | 0 .../lib_protocol/script_ir_unparser.ml | 0 .../lib_protocol/script_ir_unparser.mli | 0 .../lib_protocol/script_list.ml | 0 .../lib_protocol/script_list.mli | 0 .../lib_protocol/script_map.ml | 0 .../lib_protocol/script_map.mli | 0 .../lib_protocol/script_repr.ml | 0 .../lib_protocol/script_repr.mli | 0 .../lib_protocol/script_repr_costs.ml | 0 .../lib_protocol/script_repr_costs_generated.ml | 0 .../lib_protocol/script_set.ml | 0 .../lib_protocol/script_set.mli | 0 .../lib_protocol/script_string.ml | 0 .../lib_protocol/script_string.mli | 0 .../lib_protocol/script_tc_context.ml | 0 .../lib_protocol/script_tc_context.mli | 0 .../lib_protocol/script_tc_errors.ml | 0 .../lib_protocol/script_tc_errors_registration.ml | 0 .../lib_protocol/script_tc_errors_registration.mli | 0 .../lib_protocol/script_timestamp.ml | 0 .../lib_protocol/script_timestamp.mli | 0 .../lib_protocol/script_typed_ir.ml | 0 .../lib_protocol/script_typed_ir.mli | 0 .../lib_protocol/script_typed_ir_size.ml | 0 .../lib_protocol/script_typed_ir_size.mli | 0 .../lib_protocol/script_typed_ir_size_costs.ml | 0 .../lib_protocol/script_typed_ir_size_costs.mli | 0 .../script_typed_ir_size_costs_generated.ml | 0 .../lib_protocol/seed_repr.ml | 0 .../lib_protocol/seed_repr.mli | 0 .../lib_protocol/seed_storage.ml | 0 .../lib_protocol/seed_storage.mli | 0 .../lib_protocol/shared_stake.ml | 0 .../lib_protocol/shared_stake.mli | 0 .../lib_protocol/skip_list_costs.ml | 0 .../lib_protocol/skip_list_costs.mli | 0 .../lib_protocol/skip_list_costs_generated.ml | 0 .../lib_protocol/slash_percentage.ml | 0 .../lib_protocol/slash_percentage.mli | 0 .../lib_protocol/slot_repr.ml | 0 .../lib_protocol/slot_repr.mli | 0 .../lib_protocol/stake_context.ml | 0 .../lib_protocol/stake_context.mli | 0 .../lib_protocol/stake_repr.ml | 0 .../lib_protocol/stake_repr.mli | 0 .../lib_protocol/stake_storage.ml | 0 .../lib_protocol/stake_storage.mli | 0 .../lib_protocol/staking.ml | 0 .../lib_protocol/staking.mli | 0 .../lib_protocol/staking_parameters_repr.ml | 0 .../lib_protocol/staking_parameters_repr.mli | 0 .../lib_protocol/staking_pseudotoken_repr.ml | 0 .../lib_protocol/staking_pseudotoken_repr.mli | 0 .../lib_protocol/staking_pseudotokens_storage.ml | 0 .../lib_protocol/staking_pseudotokens_storage.mli | 0 .../lib_protocol/state_hash.ml | 0 .../lib_protocol/state_hash.mli | 0 .../lib_protocol/storage.ml | 0 .../lib_protocol/storage.mli | 0 .../lib_protocol/storage_costs.ml | 0 .../lib_protocol/storage_costs.mli | 0 .../lib_protocol/storage_costs_generated.ml | 0 .../lib_protocol/storage_description.ml | 0 .../lib_protocol/storage_description.mli | 0 .../lib_protocol/storage_functors.ml | 0 .../lib_protocol/storage_functors.mli | 0 .../lib_protocol/storage_sigs.ml | 0 .../lib_protocol/test/README.md | 0 .../lib_protocol/test/helpers/README.md | 0 .../lib_protocol/test/helpers/account.ml | 0 .../lib_protocol/test/helpers/account.mli | 0 .../lib_protocol/test/helpers/account_helpers.ml | 0 .../test/helpers/adaptive_issuance_helpers.ml | 0 .../lib_protocol/test/helpers/assert.ml | 0 .../lib_protocol/test/helpers/big_map_helpers.ml | 0 .../lib_protocol/test/helpers/big_map_helpers.mli | 0 .../lib_protocol/test/helpers/block.ml | 0 .../lib_protocol/test/helpers/block.mli | 0 .../lib_protocol/test/helpers/consensus_helpers.ml | 0 .../lib_protocol/test/helpers/constants_helpers.ml | 0 .../lib_protocol/test/helpers/context.ml | 0 .../lib_protocol/test/helpers/context.mli | 0 .../lib_protocol/test/helpers/contract_helpers.ml | 0 .../lib_protocol/test/helpers/cpmm_logic.ml | 0 .../lib_protocol/test/helpers/cpmm_repr.ml | 0 .../lib_protocol/test/helpers/dal_helpers.ml | 0 .../lib_protocol/test/helpers/dal_helpers.mli | 0 .../lib_protocol/test/helpers/dummy_zk_rollup.ml | 0 .../lib_protocol/test/helpers/dune | 0 .../lib_protocol/test/helpers/error_helpers.ml | 0 .../lib_protocol/test/helpers/expr.ml | 0 .../lib_protocol/test/helpers/expr_common.ml | 0 .../lib_protocol/test/helpers/incremental.ml | 0 .../lib_protocol/test/helpers/incremental.mli | 0 .../test/helpers/liquidity_baking_generator.ml | 0 .../test/helpers/liquidity_baking_generator.mli | 0 .../test/helpers/liquidity_baking_machine.ml | 0 .../test/helpers/liquidity_baking_machine.mli | 0 .../lib_protocol/test/helpers/log_helpers.ml | 0 .../lib_protocol/test/helpers/lqt_fa12_repr.ml | 0 .../test/helpers/lwt_result_wrap_syntax.ml | 0 .../test/helpers/lwt_result_wrap_syntax.mli | 0 .../lib_protocol/test/helpers/merkle_list_helper.ml | 0 .../lib_protocol/test/helpers/nonce.ml | 0 .../lib_protocol/test/helpers/nonce.mli | 0 .../lib_protocol/test/helpers/op.ml | 0 .../lib_protocol/test/helpers/op.mli | 0 .../test/helpers/operation_generator.ml | 0 .../lib_protocol/test/helpers/result_wrap_syntax.ml | 0 .../test/helpers/result_wrap_syntax.mli | 0 .../lib_protocol/test/helpers/rewards.ml | 0 .../lib_protocol/test/helpers/sapling_helpers.ml | 0 .../lib_protocol/test/helpers/sc_rollup_helpers.ml | 0 .../lib_protocol/test/helpers/scenario.ml | 0 .../lib_protocol/test/helpers/scenario_bake.ml | 0 .../lib_protocol/test/helpers/scenario_base.ml | 0 .../lib_protocol/test/helpers/scenario_begin.ml | 0 .../lib_protocol/test/helpers/scenario_constants.ml | 0 .../lib_protocol/test/helpers/scenario_dsl.ml | 0 .../lib_protocol/test/helpers/scenario_op.ml | 0 .../lib_protocol/test/helpers/script_big_map.ml | 0 .../lib_protocol/test/helpers/script_big_map.mli | 0 .../lib_protocol/test/helpers/script_map.ml | 0 .../lib_protocol/test/helpers/script_map.mli | 0 .../lib_protocol/test/helpers/script_set.ml | 0 .../lib_protocol/test/helpers/script_set.mli | 0 .../lib_protocol/test/helpers/slashing_helpers.ml | 0 .../lib_protocol/test/helpers/slashing_helpers.mli | 0 .../lib_protocol/test/helpers/state.ml | 0 .../lib_protocol/test/helpers/state_account.ml | 0 .../test/helpers/test_global_constants.ml | 0 .../lib_protocol/test/helpers/testable.ml | 0 .../lib_protocol/test/helpers/tez_helpers.ml | 0 .../lib_protocol/test/helpers/tez_helpers.mli | 0 .../test/helpers/tez_staking_helpers.ml | 0 .../lib_protocol/test/helpers/tezt_helpers.ml | 0 .../lib_protocol/test/helpers/ticket_helpers.ml | 0 .../lib_protocol/test/helpers/transfers.ml | 0 .../lib_protocol/test/helpers/transfers.mli | 0 .../test/helpers/zk_rollup_l2_helpers.ml | 0 .../lib_protocol/test/integration/consensus/dune | 0 .../test/integration/consensus/test_aggregate.ml | 0 .../test/integration/consensus/test_attestation.ml | 0 .../test/integration/consensus/test_baking.ml | 0 .../integration/consensus/test_companion_key.ml | 0 .../integration/consensus/test_consensus_key.ml | 0 .../integration/consensus/test_dal_entrapment.ml | 0 .../test/integration/consensus/test_deactivation.ml | 0 .../test/integration/consensus/test_delegation.ml | 0 .../consensus/test_double_attestation.ml | 0 .../integration/consensus/test_double_baking.ml | 0 .../consensus/test_double_preattestation.ml | 0 .../integration/consensus/test_frozen_deposits.ml | 0 .../test/integration/consensus/test_helpers_rpcs.ml | 0 .../integration/consensus/test_participation.ml | 0 .../integration/consensus/test_preattestation.ml | 0 .../consensus/test_preattestation_functor.ml | 0 .../test/integration/consensus/test_seed.ml | 0 .../lib_protocol/test/integration/dune | 0 .../lib_protocol/test/integration/gas/dune | 0 .../test/integration/gas/test_gas_costs.ml | 0 .../test/integration/gas/test_gas_levels.ml | 0 .../michelson/contracts/big_interpreter_stack.tz | 0 .../test/integration/michelson/contracts/emit.tz | 0 .../integration/michelson/contracts/fail_rec.tz | 0 .../forbidden_op_in_view_CREATE_CONTRACT.tz | 0 .../contracts/forbidden_op_in_view_SELF.tz | 0 .../contracts/forbidden_op_in_view_SET_DELEGATE.tz | 0 .../forbidden_op_in_view_TRANSFER_TOKENS.tz | 0 .../integration/michelson/contracts/int-store.tz | 0 .../test/integration/michelson/contracts/omega.tz | 0 .../integration/michelson/contracts/rec_fact.tz | 0 .../michelson/contracts/rec_fact_apply.tz | 0 .../michelson/contracts/rec_fact_apply_store.tz | 0 .../michelson/contracts/rec_fact_store.tz | 0 .../michelson/contracts/sapling_contract.tz | 0 .../michelson/contracts/sapling_contract_double.tz | 0 .../michelson/contracts/sapling_contract_drop.tz | 0 .../michelson/contracts/sapling_contract_send.tz | 0 .../contracts/sapling_contract_state_as_arg.tz | 0 .../contracts/sapling_push_sapling_state.tz | 0 .../contracts/sapling_use_existing_state.tz | 0 .../michelson/contracts/temp_big_maps.tz | 0 .../lib_protocol/test/integration/michelson/dune | 0 .../test/integration/michelson/test_annotations.ml | 0 .../michelson/test_block_time_instructions.ml | 0 .../integration/michelson/test_contract_event.ml | 0 .../michelson/test_global_constants_storage.ml | 0 .../integration/michelson/test_interpretation.ml | 0 .../michelson/test_lambda_normalization.ml | 0 .../integration/michelson/test_lazy_storage_diff.ml | 0 .../integration/michelson/test_patched_contracts.ml | 0 .../test/integration/michelson/test_sapling.ml | 0 .../test/integration/michelson/test_script_cache.ml | 0 .../michelson/test_script_typed_ir_size.ml | 0 .../integration/michelson/test_temp_big_maps.ml | 0 .../integration/michelson/test_ticket_accounting.ml | 0 .../integration/michelson/test_ticket_balance.ml | 0 .../michelson/test_ticket_balance_key.ml | 0 .../michelson/test_ticket_direct_spending.ml | 0 .../michelson/test_ticket_lazy_storage_diff.ml | 0 .../integration/michelson/test_ticket_manager.ml | 0 .../michelson/test_ticket_operations_diff.ml | 0 .../integration/michelson/test_ticket_scanner.ml | 0 .../integration/michelson/test_ticket_storage.ml | 0 .../test/integration/michelson/test_typechecking.ml | 0 .../lib_protocol/test/integration/operations/dune | 0 .../test/integration/operations/test_activation.ml | 0 .../operations/test_combined_operations.ml | 0 .../integration/operations/test_failing_noop.ml | 0 .../test/integration/operations/test_origination.ml | 0 .../operations/test_paid_storage_increase.ml | 0 .../test/integration/operations/test_reveal.ml | 0 .../test/integration/operations/test_sc_rollup.ml | 0 .../operations/test_sc_rollup_transfer.ml | 0 .../test/integration/operations/test_transfer.ml | 0 .../integration/operations/test_transfer_ticket.ml | 0 .../test/integration/operations/test_voting.ml | 0 .../test/integration/operations/test_zk_rollup.ml | 0 .../lib_protocol/test/integration/test_constants.ml | 0 .../test/integration/test_frozen_bonds.ml | 0 .../test/integration/test_liquidity_baking.ml | 0 .../test/integration/test_scenario_base.ml | 0 .../test/integration/test_scenario_deactivation.ml | 0 .../test/integration/test_scenario_rewards.ml | 0 .../test/integration/test_scenario_slashing.ml | 0 .../integration/test_scenario_slashing_stakers.ml | 0 .../test/integration/test_scenario_stake.ml | 0 .../lib_protocol/test/integration/test_storage.ml | 0 .../test/integration/test_storage_functions.ml | 0 .../lib_protocol/test/integration/test_token.ml | 0 .../lib_protocol/test/integration/validate/dune | 0 .../integration/validate/generator_descriptors.ml | 0 .../integration/validate/generator_descriptors.mli | 0 .../test/integration/validate/generators.ml | 0 .../validate/manager_operation_helpers.ml | 0 .../integration/validate/test_1m_restriction.ml | 0 .../test/integration/validate/test_covalidity.ml | 0 .../validate/test_manager_operation_validation.ml | 0 .../test/integration/validate/test_mempool.ml | 0 .../test/integration/validate/test_sanity.ml | 0 .../integration/validate/test_validation_batch.ml | 0 .../validate/valid_operations_generators.ml | 0 .../test/integration/validate/validate_helpers.ml | 0 .../test/integration/wasm_kernel/README.md | 0 .../test/integration/wasm_kernel/computation.wasm | Bin .../test/integration/wasm_kernel/echo.wasm | Bin .../test/integration/wasm_kernel/echo.wast | 0 .../wasm_kernel/no_parse_bad_fingerprint.wasm | Bin .../integration/wasm_kernel/no_parse_random.wasm | 0 .../test/integration/wasm_kernel/tx-kernel.wasm | Bin .../lib_protocol/test/pbt/dune | 0 .../lib_protocol/test/pbt/liquidity_baking_pbt.ml | 0 .../lib_protocol/test/pbt/saturation_fuzzing.ml | 0 .../test/pbt/test_balance_updates_encoding.ml | 0 .../lib_protocol/test/pbt/test_bytes_conversion.ml | 0 .../lib_protocol/test/pbt/test_carbonated_map.ml | 0 .../test/pbt/test_compare_operations.ml | 0 .../lib_protocol/test/pbt/test_dal_slot_proof.ml | 0 .../lib_protocol/test/pbt/test_gas_properties.ml | 0 .../lib_protocol/test/pbt/test_merkle_list.ml | 0 .../test/pbt/test_operation_encoding.ml | 0 .../lib_protocol/test/pbt/test_refutation_game.ml | 0 .../lib_protocol/test/pbt/test_sampler.ml | 0 .../test/pbt/test_sc_rollup_encoding.ml | 0 .../lib_protocol/test/pbt/test_sc_rollup_inbox.ml | 0 .../test/pbt/test_sc_rollup_tick_repr.ml | 0 .../lib_protocol/test/pbt/test_script_comparison.ml | 0 .../lib_protocol/test/pbt/test_script_roundtrip.ml | 0 .../lib_protocol/test/pbt/test_tez_repr.ml | 0 .../test/pbt/test_zk_rollup_encoding.ml | 0 .../test/regression/contracts/accounts.tz | 0 .../test/regression/contracts/append.tz | 0 .../test/regression/contracts/auction.tz | 0 .../test/regression/contracts/big_map_union.tz | 0 .../test/regression/contracts/check_signature.tz | 0 .../test/regression/contracts/comb-get.tz | 0 .../test/regression/contracts/comb-set.tz | 0 .../test/regression/contracts/concat.tz | 0 .../test/regression/contracts/conditionals.tz | 0 .../test/regression/contracts/cps_fact.tz | 0 .../lib_protocol/test/regression/contracts/dign.tz | 0 .../lib_protocol/test/regression/contracts/dipn.tz | 0 .../lib_protocol/test/regression/contracts/dugn.tz | 0 .../lib_protocol/test/regression/contracts/ediv.tz | 0 .../test/regression/contracts/faucet.tz | 0 .../test/regression/contracts/get_and_update_map.tz | 0 .../lib_protocol/test/regression/contracts/if.tz | 0 .../test/regression/contracts/insertion_sort.tz | 0 .../test/regression/contracts/list_map_block.tz | 0 .../test/regression/contracts/loop_left.tz | 0 .../test/regression/contracts/opt_map.tz | 0 .../test/regression/contracts/packunpack.tz | 0 .../lib_protocol/test/regression/contracts/pexec.tz | 0 .../test/regression/contracts/rec_id_unit.tz | 0 .../test/regression/contracts/reverse_loop.tz | 0 .../test/regression/contracts/set_delegate.tz | 0 .../test/regression/contracts/shifts.tz | 0 .../test/regression/contracts/spawn_identities.tz | 0 .../test/regression/contracts/ticket_join.tz | 0 .../test/regression/contracts/ticket_split.tz | 0 .../test/regression/contracts/view_fib.tz | 0 .../test/regression/contracts/view_toplevel_lib.tz | 0 .../lib_protocol/test/regression/contracts/xor.tz | 0 .../lib_protocol/test/regression/dune | 0 .../expected/test_logging.ml/accounts.out | 0 .../regression/expected/test_logging.ml/append.out | 0 .../regression/expected/test_logging.ml/auction.out | 0 .../expected/test_logging.ml/big_map_union.out | 0 .../expected/test_logging.ml/check_signature.out | 0 .../expected/test_logging.ml/comb-get.out | 0 .../expected/test_logging.ml/comb-set.out | 0 .../regression/expected/test_logging.ml/concat.out | 0 .../expected/test_logging.ml/conditionals.out | 0 .../expected/test_logging.ml/cps_fact.out | 0 .../regression/expected/test_logging.ml/dign.out | 0 .../regression/expected/test_logging.ml/dipn.out | 0 .../regression/expected/test_logging.ml/dugn.out | 0 .../regression/expected/test_logging.ml/ediv.out | 0 .../regression/expected/test_logging.ml/faucet.out | 0 .../expected/test_logging.ml/get_and_update_map.out | 0 .../test/regression/expected/test_logging.ml/if.out | 0 .../expected/test_logging.ml/insertion_sort.out | 0 .../expected/test_logging.ml/list_map_block.out | 0 .../expected/test_logging.ml/loop_left.out | 0 .../regression/expected/test_logging.ml/opt_map.out | 0 .../expected/test_logging.ml/packunpack.out | 0 .../regression/expected/test_logging.ml/pexec.out | 0 .../expected/test_logging.ml/rec_id_unit.out | 0 .../expected/test_logging.ml/reverse_loop.out | 0 .../expected/test_logging.ml/set_delegate.out | 0 .../regression/expected/test_logging.ml/shifts.out | 0 .../expected/test_logging.ml/spawn_identities.out | 0 .../expected/test_logging.ml/ticket_join.out | 0 .../expected/test_logging.ml/ticket_split.out | 0 .../expected/test_logging.ml/view_fib.out | 0 .../expected/test_logging.ml/view_toplevel_lib.out | 0 .../regression/expected/test_logging.ml/xor.out | 0 .../lib_protocol/test/regression/test_logging.ml | 0 .../lib_protocol/test/unit/dune | 0 .../test/unit/test_adaptive_issuance.ml | 0 .../test/unit/test_adaptive_issuance_ema.ml | 0 .../lib_protocol/test/unit/test_alpha_context.ml | 0 .../lib_protocol/test/unit/test_bond_id_repr.ml | 0 .../test/unit/test_consecutive_round_zero.ml | 0 .../lib_protocol/test/unit/test_consensus_key.ml | 0 .../lib_protocol/test/unit/test_contract_repr.ml | 0 .../lib_protocol/test/unit/test_dal_slot_proof.ml | 0 .../lib_protocol/test/unit/test_destination_repr.ml | 0 .../lib_protocol/test/unit/test_fitness.ml | 0 .../lib_protocol/test/unit/test_fixed_point.ml | 0 .../test/unit/test_full_staking_balance_repr.ml | 0 .../lib_protocol/test/unit/test_gas_monad.ml | 0 .../test/unit/test_global_constants_storage.ml | 0 .../lib_protocol/test/unit/test_level_module.ml | 0 .../test/unit/test_liquidity_baking_repr.ml | 0 .../lib_protocol/test/unit/test_local_contexts.ml | 0 .../lib_protocol/test/unit/test_merkle_list.ml | 0 .../lib_protocol/test/unit/test_operation_repr.ml | 0 .../lib_protocol/test/unit/test_percentage.ml | 0 .../lib_protocol/test/unit/test_qty.ml | 0 .../lib_protocol/test/unit/test_raw_level_repr.ml | 0 .../lib_protocol/test/unit/test_receipt.ml | 0 .../lib_protocol/test/unit/test_round_repr.ml | 0 .../lib_protocol/test/unit/test_saturation.ml | 0 .../lib_protocol/test/unit/test_sc_rollup_arith.ml | 0 .../lib_protocol/test/unit/test_sc_rollup_game.ml | 0 .../lib_protocol/test/unit/test_sc_rollup_inbox.ml | 0 .../test/unit/test_sc_rollup_inbox_legacy.ml | 0 .../test/unit/test_sc_rollup_management_protocol.ml | 0 .../test/unit/test_sc_rollup_storage.ml | 0 .../lib_protocol/test/unit/test_sc_rollup_wasm.ml | 0 .../lib_protocol/test/unit/test_skip_list_repr.ml | 0 .../test/unit/test_slashing_percentage.ml | 0 .../test/unit/test_staking_operations.ml | 0 .../lib_protocol/test/unit/test_tez_repr.ml | 0 .../lib_protocol/test/unit/test_time_repr.ml | 0 .../test/unit/test_zk_rollup_storage.ml | 0 .../lib_protocol/tez_repr.ml | 0 .../lib_protocol/tez_repr.mli | 0 .../lib_protocol/ticket_accounting.ml | 0 .../lib_protocol/ticket_accounting.mli | 0 .../lib_protocol/ticket_amount.ml | 0 .../lib_protocol/ticket_amount.mli | 0 .../lib_protocol/ticket_balance_key.ml | 0 .../lib_protocol/ticket_balance_key.mli | 0 .../lib_protocol/ticket_costs.ml | 0 .../lib_protocol/ticket_costs.mli | 0 .../lib_protocol/ticket_costs_generated.ml | 0 .../lib_protocol/ticket_hash_builder.ml | 0 .../lib_protocol/ticket_hash_builder.mli | 0 .../lib_protocol/ticket_hash_repr.ml | 0 .../lib_protocol/ticket_hash_repr.mli | 0 .../lib_protocol/ticket_lazy_storage_diff.ml | 0 .../lib_protocol/ticket_lazy_storage_diff.mli | 0 .../lib_protocol/ticket_operations_diff.ml | 0 .../lib_protocol/ticket_operations_diff.mli | 0 .../lib_protocol/ticket_receipt.ml | 0 .../lib_protocol/ticket_receipt.mli | 0 .../lib_protocol/ticket_scanner.ml | 0 .../lib_protocol/ticket_scanner.mli | 0 .../lib_protocol/ticket_storage.ml | 0 .../lib_protocol/ticket_storage.mli | 0 .../lib_protocol/ticket_token.ml | 0 .../lib_protocol/ticket_token.mli | 0 .../lib_protocol/ticket_token_map.ml | 0 .../lib_protocol/ticket_token_map.mli | 0 .../lib_protocol/ticket_token_unparser.ml | 0 .../lib_protocol/ticket_token_unparser.mli | 0 .../lib_protocol/ticket_transfer.ml | 0 .../lib_protocol/ticket_transfer.mli | 0 .../lib_protocol/time_repr.ml | 0 .../lib_protocol/time_repr.mli | 0 .../lib_protocol/token.ml | 0 .../lib_protocol/token.mli | 0 .../lib_protocol/tx_rollup_l2_address.ml | 0 .../lib_protocol/tx_rollup_l2_address.mli | 0 .../lib_protocol/unstake_requests_storage.ml | 0 .../lib_protocol/unstake_requests_storage.mli | 0 .../lib_protocol/unstaked_frozen_deposits_repr.ml | 0 .../lib_protocol/unstaked_frozen_deposits_repr.mli | 0 .../unstaked_frozen_deposits_storage.ml | 0 .../unstaked_frozen_deposits_storage.mli | 0 .../lib_protocol/unstaked_frozen_staker_repr.ml | 0 .../lib_protocol/unstaked_frozen_staker_repr.mli | 0 .../lib_protocol/validate.ml | 0 .../lib_protocol/validate.mli | 0 .../lib_protocol/validate_errors.ml | 0 .../lib_protocol/validate_errors.mli | 0 .../lib_protocol/vote_repr.ml | 0 .../lib_protocol/vote_repr.mli | 0 .../lib_protocol/vote_storage.ml | 0 .../lib_protocol/vote_storage.mli | 0 .../lib_protocol/votes_EMA_repr.ml | 0 .../lib_protocol/votes_EMA_repr.mli | 0 .../lib_protocol/voting_period_repr.ml | 0 .../lib_protocol/voting_period_repr.mli | 0 .../lib_protocol/voting_period_storage.ml | 0 .../lib_protocol/voting_period_storage.mli | 0 .../lib_protocol/zk_rollup_account_repr.ml | 0 .../lib_protocol/zk_rollup_account_repr.mli | 0 .../lib_protocol/zk_rollup_apply.ml | 0 .../lib_protocol/zk_rollup_apply.mli | 0 .../zk_rollup_circuit_public_inputs_repr.ml | 0 .../zk_rollup_circuit_public_inputs_repr.mli | 0 .../lib_protocol/zk_rollup_errors.ml | 0 .../lib_protocol/zk_rollup_operation_repr.ml | 0 .../lib_protocol/zk_rollup_operation_repr.mli | 0 .../lib_protocol/zk_rollup_parameters.ml | 0 .../lib_protocol/zk_rollup_parameters.mli | 0 .../lib_protocol/zk_rollup_repr.ml | 0 .../lib_protocol/zk_rollup_repr.mli | 0 .../lib_protocol/zk_rollup_scalar.ml | 0 .../lib_protocol/zk_rollup_scalar.mli | 0 .../lib_protocol/zk_rollup_state_repr.ml | 0 .../lib_protocol/zk_rollup_state_repr.mli | 0 .../lib_protocol/zk_rollup_storage.ml | 0 .../lib_protocol/zk_rollup_storage.mli | 0 .../lib_protocol/zk_rollup_ticket_repr.ml | 0 .../lib_protocol/zk_rollup_ticket_repr.mli | 0 .../lib_protocol/zk_rollup_update_repr.ml | 0 .../lib_protocol/zk_rollup_update_repr.mli | 0 .../lib_sc_rollup/README.md | 0 .../lib_sc_rollup/context_helpers.ml | 0 .../lib_sc_rollup/context_helpers.mli | 0 .../lib_sc_rollup/dune | 0 .../lib_sc_rollup/game_helpers.ml | 0 .../lib_sc_rollup/game_helpers.mli | 0 .../lib_sc_rollup/pvm_in_memory.ml | 0 .../lib_sc_rollup/pvm_in_memory.mli | 0 .../lib_sc_rollup_layer2/README.md | 0 .../lib_sc_rollup_layer2/dune | 0 .../lib_sc_rollup_layer2/sc_rollup_proto_types.ml | 0 .../lib_sc_rollup_layer2/sc_rollup_proto_types.mli | 0 .../lib_sc_rollup_layer2/sc_rollup_services.ml | 0 .../lib_sc_rollup_node/RPC_directory.ml | 0 .../lib_sc_rollup_node/RPC_directory.mli | 0 .../lib_sc_rollup_node/arith_pvm.ml | 0 .../lib_sc_rollup_node/batcher_constants.ml | 0 .../lib_sc_rollup_node/batcher_constants.mli | 0 .../lib_sc_rollup_node/context_wrapper.ml | 0 .../lib_sc_rollup_node/context_wrapper.mli | 0 .../lib_sc_rollup_node/daemon_helpers.ml | 0 .../lib_sc_rollup_node/daemon_helpers.mli | 0 .../lib_sc_rollup_node/dal_pages_request.ml | 0 .../lib_sc_rollup_node/dal_pages_request.mli | 0 .../lib_sc_rollup_node/dal_slots_tracker.ml | 0 .../lib_sc_rollup_node/dal_slots_tracker.mli | 0 .../lib_sc_rollup_node/dal_slots_tracker_event.ml | 0 .../lib_sc_rollup_node/dune | 0 .../lib_sc_rollup_node/fueled_pvm.ml | 0 .../lib_sc_rollup_node/inbox.ml | 0 .../lib_sc_rollup_node/inbox.mli | 0 .../lib_sc_rollup_node/inbox_event.ml | 0 .../lib_sc_rollup_node/inbox_event.mli | 0 .../lib_sc_rollup_node/layer1_helpers.ml | 0 .../lib_sc_rollup_node/layer1_helpers.mli | 0 .../lib_sc_rollup_node/outbox.ml | 0 .../lib_sc_rollup_node/outbox.mli | 0 .../lib_sc_rollup_node/pvm.ml | 0 .../lib_sc_rollup_node/pvm_plugin.ml | 0 .../lib_sc_rollup_node/pvm_plugin.mli | 0 .../lib_sc_rollup_node/pvm_rpc.ml | 0 .../lib_sc_rollup_node/pvm_sig.ml | 0 .../lib_sc_rollup_node/refutation_game_helpers.ml | 0 .../lib_sc_rollup_node/refutation_game_helpers.mli | 0 .../lib_sc_rollup_node/reveals.ml | 0 .../lib_sc_rollup_node/reveals.mli | 0 .../lib_sc_rollup_node/riscv_pvm.ml | 0 .../lib_sc_rollup_node/rollup_node_plugin.ml | 0 .../lib_sc_rollup_node/sc_rollup_injector.ml | 0 .../lib_sc_rollup_node/sc_rollup_injector.mli | 0 .../lib_sc_rollup_node/sc_rollup_node_errors.ml | 0 .../lib_sc_rollup_node/test/dune | 0 .../lib_sc_rollup_node/test/serialized_proofs.ml | 0 .../lib_sc_rollup_node/test/serialized_proofs.mli | 0 .../test/test_octez_conversions.ml | 0 .../lib_sc_rollup_node/wasm_2_0_0_pvm.ml | 0 .../lib_sc_rollup_node/wasm_2_0_0_rpc.ml | 0 .../parameters/dune | 0 1147 files changed, 0 insertions(+), 0 deletions(-) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/bin_accuser/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/bin_accuser/main_accuser_023_PtSEouLo.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/bin_baker/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/bin_baker/main_baker_023_PtSEouLo.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_agnostic_baker/accuser_commands_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_agnostic_baker/agnostic_baker_plugin.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_agnostic_baker/baker_commands_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_agnostic_baker/baker_commands_helpers.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_agnostic_baker/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/README.md (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/autocomp.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/execution_context.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/kernel.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/lib_benchmark_type_inference/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/lib_benchmark_type_inference/inference.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/lib_benchmark_type_inference/inference.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/lib_benchmark_type_inference/int_map.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/lib_benchmark_type_inference/mikhailsky.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/lib_benchmark_type_inference/mikhailsky.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/lib_benchmark_type_inference/mikhailsky_prim.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/lib_benchmark_type_inference/monads.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/lib_benchmark_type_inference/stores.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/lib_benchmark_type_inference/test/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/lib_benchmark_type_inference/test/test_inference.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/lib_benchmark_type_inference/test/test_uf.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/lib_benchmark_type_inference/type.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/lib_benchmark_type_inference/type.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/lib_benchmark_type_inference/uf.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/micheline_sampler.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/micheline_sampler.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/michelson_mcmc_samplers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/michelson_mcmc_samplers.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/michelson_samplers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/michelson_samplers.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/michelson_samplers_base.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/michelson_samplers_base.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/mikhailsky_to_michelson.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/rules.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/sampling_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/state_space.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/test/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/test/test_autocompletion.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/test/test_distribution.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/test/test_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/test/test_sampling_code.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/test/test_sampling_data.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/type_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmark/type_helpers.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/apply_benchmarks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/benchmarks_proto.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/benchmarks_proto.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/cache_benchmarks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/carbonated_map_benchmarks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/dal_benchmarks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/encodings_benchmarks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/gas_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/global_constants_storage_benchmarks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/interpreter_benchmarks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/interpreter_model.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/interpreter_workload.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/michelson_commands.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/michelson_generation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/michelson_generation.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/michelson_types.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/registration_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/sapling_benchmarks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/sapling_commands.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/sapling_generation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/sc_rollup_benchmarks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/script_repr_benchmarks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/script_typed_ir_size_benchmarks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/skip_list_benchmarks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/storage_benchmarks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/tags.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/ticket_benchmarks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/translator_benchmarks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/translator_model.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_benchmarks_proto/translator_workload.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/annotated_manager_operation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/annotated_manager_operation.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_args.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_args.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_context.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_context.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_contracts.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_contracts.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_fa12.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_fa12.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_multisig.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_multisig.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_programs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_programs.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_rollups.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_rollups.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_tzt.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_tzt.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_utils.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/client_proto_utils.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/injection.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/injection.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/light.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/limit.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/limit.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/managed_contract.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/managed_contract.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/michelson_v1_emacs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/michelson_v1_emacs.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/michelson_v1_entrypoints.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/michelson_v1_entrypoints.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/michelson_v1_error_reporter.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/michelson_v1_error_reporter.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/michelson_v1_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/michelson_v1_macros.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/michelson_v1_macros.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/michelson_v1_parser.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/michelson_v1_parser.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/michelson_v1_printer.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/michelson_v1_printer.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/michelson_v1_stack.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/michelson_v1_stack.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/mockup.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/operation_result.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/operation_result.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/protocol_client_context.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/proxy.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/test/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/test/test_client_proto_context.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/test/test_client_proto_contracts.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/test/test_michelson_v1_macros.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client/test/test_proxy.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/alpha_commands_registration.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_bls_commands.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_bls_commands.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_proto_context_commands.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_proto_contracts_commands.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_proto_fa12_commands.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_proto_mockup_commands.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_proto_mockup_commands.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_proto_multisig_commands.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_proto_multisig_commands.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_proto_programs_commands.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_proto_programs_commands.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_proto_stresstest_commands.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_proto_stresstest_commands.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_proto_stresstest_contracts.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_proto_stresstest_contracts.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_proto_utils_commands.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/client_proto_utils_commands.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_commands/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_sapling/client_sapling_commands.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_sapling/client_sapling_commands.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_sapling/context.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_sapling/context.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_sapling/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_sapling/wallet.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_client_sapling/wallet.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_dal/RPC_directory.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_dal/RPC_directory.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_dal/dal_plugin_registration.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_dal/dal_proto_client.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_dal/dal_proto_client.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_dal/dal_services.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_dal/dal_services.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_dal/dal_slot_frame_encoding.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_dal/dal_slot_frame_encoding.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_dal/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_dal/test/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_dal/test/test_dal_slot_frame_encoding.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_dal/test/test_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/abstract_context_index.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/abstract_context_index.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_actions.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_actions.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_cache.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_commands.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_commands.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_commands_registration.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_configuration.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_configuration.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_errors.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_events.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_files.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_files.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_highwatermarks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_highwatermarks.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_lib.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_lib.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_nonces.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_nonces.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_pow.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_pow.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_profiler.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_scheduling.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_scheduling.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_simulator.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_simulator.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_state.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_state.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_state_types.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_state_types.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_vdf.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/baking_vdf.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/block_forge.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/block_forge.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/client_baking_blocks.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/client_baking_blocks.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/client_baking_denunciation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/client_baking_denunciation.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/client_baking_scheduling.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/client_baking_scheduling.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/client_daemon.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/client_daemon.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/delegate_events.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/forge_worker.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/forge_worker.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/node_rpc.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/node_rpc.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/operation_pool.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/operation_pool.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/operation_selection.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/operation_selection.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/operation_worker.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/operation_worker.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/state_transitions.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/state_transitions.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/test/README.md (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/test/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/test/mockup_simulator/broadcast_services.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/test/mockup_simulator/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/test/mockup_simulator/faked_client_context.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/test/mockup_simulator/faked_daemon.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/test/mockup_simulator/faked_services.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/test/mockup_simulator/mockup_simulator.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/test/mockup_simulator/mockup_simulator.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/test/tenderbrute/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/test/tenderbrute/lib/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/test/tenderbrute/lib/tenderbrute.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/test/tenderbrute/lib/tenderbrute.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/test/tenderbrute/tenderbrute_main.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/test/test_scenario.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/vdf_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_delegate/vdf_helpers.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_injector/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_injector/injector_plugin.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_layer2_utils/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_layer2_utils/layer1_services.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_layer2_utils/layer1_services.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_parameters/default_parameters.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_parameters/default_parameters.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_parameters/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_parameters/gen.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/RPC.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/adaptive_issuance_services.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/adaptive_issuance_services.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/alpha_services.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/alpha_services.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/constants_services.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/constants_services.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/contract_services.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/contract_services.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/dal_services.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/dal_services.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/delegate_services.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/delegate_services.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/delegators_contribution.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/delegators_contribution.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/http_cache_headers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/http_cache_headers.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/index.mld (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/mempool.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/mempool.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/metrics_plugin.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/plugin.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/plugin_errors.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/plugin_registerer.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/sapling_services.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/script_interpreter_logging.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/script_interpreter_logging.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/services_registration.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/services_registration.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/services_registration_plugin.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/shell_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/test/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/test/helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/test/test_conflict_handler.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/test/test_consensus_filter.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/test/test_fee_needed_to_overtake.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/test/test_fee_needed_to_replace_by_fee.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/view_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/voting_services.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_plugin/voting_services.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/.ocamlformat-ignore (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/TEZOS_PROTOCOL (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/adaptive_issuance_costs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/adaptive_issuance_costs.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/adaptive_issuance_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/adaptive_issuance_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/alpha_context.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/alpha_context.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/already_denounced_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/already_denounced_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/amendment.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/amendment.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/apply.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/apply.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/apply_internal_results.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/apply_internal_results.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/apply_operation_result.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/apply_operation_result.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/apply_results.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/apply_results.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/baking.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/baking.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/blinded_public_key_hash.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/blinded_public_key_hash.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/block_header_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/block_header_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/block_payload_hash.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/block_payload_hash.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/block_payload_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/block_payload_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/bond_id_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/bond_id_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/bootstrap_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/bootstrap_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/bounded_history_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/bounded_history_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/cache_memory_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/cache_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/cache_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/cache_repr_costs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/cache_repr_costs_generated.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/carbonated_map.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/carbonated_map.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/carbonated_map_costs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/carbonated_map_costs.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/carbonated_map_costs_generated.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/commitment_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/commitment_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/commitment_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/commitment_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/constants_parametric_previous_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/constants_parametric_previous_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/constants_parametric_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/constants_parametric_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/constants_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/constants_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/constants_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/constants_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/context_binary_proof.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/context_binary_proof.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contract_delegate_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contract_delegate_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contract_hash.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contract_hash.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contract_manager_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contract_manager_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contract_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contract_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contract_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contract_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contracts/cpmm.bin (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contracts/cpmm.mligo (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contracts/cpmm.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contracts/lqt.bin (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contracts/lqt.mligo (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contracts/lqt.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/contracts/timelock_flip.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/cycle_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/cycle_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/cycle_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/cycle_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_already_denounced_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_already_denounced_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_apply.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_apply.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_attestation_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_attestation_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_costs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_costs_generated.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_costs_generated.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_errors_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_operations_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_operations_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_slot_index_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_slot_index_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_slot_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_slot_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_slot_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dal_slot_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_activation_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_activation_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_consensus_key.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_consensus_key.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_cycles.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_cycles.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_missed_attestations_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_missed_attestations_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_rewards.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_rewards.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_sampler.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_sampler.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_slashed_deposits_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_slashed_deposits_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_staking_parameters.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_staking_parameters.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/delegate_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/denunciations_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/denunciations_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dependent_bool.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dependent_bool.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/deposits_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/deposits_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/destination_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/destination_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/destination_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/destination_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/entrypoint_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/entrypoint_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/fees_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/fees_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/fitness_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/fitness_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/fixed_point_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/fixed_point_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/forbidden_delegates_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/forbidden_delegates_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/frozen_staker_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/frozen_staker_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/full_staking_balance_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/full_staking_balance_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/gas_comparable_input_size.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/gas_comparable_input_size.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/gas_input_size.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/gas_input_size.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/gas_limit_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/gas_limit_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/gas_monad.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/gas_monad.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/gas_parameters.json (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/global_constants_costs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/global_constants_costs.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/global_constants_costs_generated.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/global_constants_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/global_constants_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/indexable.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/indexable.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/init_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/init_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/issuance_bonus_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/issuance_bonus_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/lazy_storage_diff.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/lazy_storage_diff.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/lazy_storage_kind.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/lazy_storage_kind.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/legacy_script_patches.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/level_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/level_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/level_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/level_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/liquidity_baking_cpmm.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/liquidity_baking_lqt.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/liquidity_baking_migration.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/liquidity_baking_migration.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/liquidity_baking_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/liquidity_baking_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/local_gas_counter.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/local_gas_counter.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/main.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/main.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/manager_counter_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/manager_counter_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/manager_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/manager_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/mempool_validation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/mempool_validation.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/merkle_list.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/merkle_list.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/michelson_v1_gas.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/michelson_v1_gas.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/michelson_v1_gas_costs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/michelson_v1_gas_costs_generated.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/michelson_v1_primitives.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/michelson_v1_primitives.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/migration_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/migration_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/misbehaviour_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/misbehaviour_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/misc.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/misc.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/non_empty_string.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/non_empty_string.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/nonce_hash.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/nonce_hash.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/nonce_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/nonce_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/operation_costs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/operation_costs.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/operation_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/operation_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/origination_nonce.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/origination_nonce.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/parameters_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/parameters_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/path_encoding.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/path_encoding.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/pending_denunciations_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/pending_denunciations_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/per_block_votes_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/per_block_votes_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/percentage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/percentage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/period_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/period_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ratio_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ratio_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/raw_context.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/raw_context.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/raw_context_intf.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/raw_level_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/raw_level_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/receipt_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/receipt_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/round_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/round_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sampler.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sampler.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sapling_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sapling_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sapling_storage_costs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sapling_storage_costs_generated.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sapling_validator.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/saturation_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/saturation_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_PVM_sig.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_arith.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_arith.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_commitment_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_commitment_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_commitment_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_commitment_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_costs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_costs.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_costs_generated.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_dal_parameters_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_dal_parameters_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_data_version_sig.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_dissection_chunk_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_dissection_chunk_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_errors.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_game_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_game_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_inbox_merkelized_payload_hashes_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_inbox_merkelized_payload_hashes_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_inbox_message_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_inbox_message_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_inbox_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_inbox_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_inbox_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_inbox_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_management_protocol.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_management_protocol.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_metadata_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_metadata_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_operations.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_operations.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_origination_machine.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_origination_machine.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_outbox_message_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_outbox_message_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_outbox_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_outbox_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_proof_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_proof_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_refutation_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_refutation_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_reveal_hash.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_reveal_hash.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_riscv.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_riscv.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_stake_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_stake_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_staker_index_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_staker_index_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_staker_index_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_staker_index_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_tick_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_tick_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_wasm.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_wasm.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_whitelist_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_whitelist_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_whitelist_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollup_whitelist_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollups.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/sc_rollups.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_big_map.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_big_map.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_bytes.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_bytes.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_cache.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_cache.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_comparable.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_comparable.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_expr_hash.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_expr_hash.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_int.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_int.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_interpreter.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_interpreter.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_interpreter_defs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_ir_annot.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_ir_annot.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_ir_translator.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_ir_translator.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_ir_translator_config.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_ir_unparser.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_ir_unparser.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_list.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_list.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_map.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_map.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_repr_costs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_repr_costs_generated.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_set.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_set.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_string.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_string.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_tc_context.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_tc_context.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_tc_errors.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_tc_errors_registration.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_tc_errors_registration.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_timestamp.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_timestamp.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_typed_ir.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_typed_ir.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_typed_ir_size.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_typed_ir_size.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_typed_ir_size_costs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_typed_ir_size_costs.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/script_typed_ir_size_costs_generated.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/seed_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/seed_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/seed_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/seed_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/shared_stake.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/shared_stake.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/skip_list_costs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/skip_list_costs.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/skip_list_costs_generated.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/slash_percentage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/slash_percentage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/slot_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/slot_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/stake_context.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/stake_context.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/stake_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/stake_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/stake_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/stake_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/staking.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/staking.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/staking_parameters_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/staking_parameters_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/staking_pseudotoken_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/staking_pseudotoken_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/staking_pseudotokens_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/staking_pseudotokens_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/state_hash.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/state_hash.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/storage_costs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/storage_costs.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/storage_costs_generated.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/storage_description.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/storage_description.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/storage_functors.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/storage_functors.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/storage_sigs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/README.md (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/README.md (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/account.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/account.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/account_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/adaptive_issuance_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/assert.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/big_map_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/big_map_helpers.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/block.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/block.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/consensus_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/constants_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/context.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/context.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/contract_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/cpmm_logic.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/cpmm_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/dal_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/dal_helpers.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/dummy_zk_rollup.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/error_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/expr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/expr_common.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/incremental.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/incremental.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/liquidity_baking_generator.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/liquidity_baking_generator.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/liquidity_baking_machine.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/liquidity_baking_machine.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/log_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/lqt_fa12_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/lwt_result_wrap_syntax.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/lwt_result_wrap_syntax.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/merkle_list_helper.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/nonce.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/nonce.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/op.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/op.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/operation_generator.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/result_wrap_syntax.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/result_wrap_syntax.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/rewards.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/sapling_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/sc_rollup_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/scenario.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/scenario_bake.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/scenario_base.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/scenario_begin.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/scenario_constants.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/scenario_dsl.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/scenario_op.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/script_big_map.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/script_big_map.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/script_map.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/script_map.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/script_set.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/script_set.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/slashing_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/slashing_helpers.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/state.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/state_account.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/test_global_constants.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/testable.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/tez_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/tez_helpers.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/tez_staking_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/tezt_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/ticket_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/transfers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/transfers.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/helpers/zk_rollup_l2_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_aggregate.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_attestation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_baking.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_companion_key.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_consensus_key.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_dal_entrapment.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_deactivation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_delegation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_double_attestation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_double_baking.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_double_preattestation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_frozen_deposits.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_helpers_rpcs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_participation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_preattestation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_preattestation_functor.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/consensus/test_seed.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/gas/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/gas/test_gas_costs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/gas/test_gas_levels.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/big_interpreter_stack.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/emit.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/fail_rec.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_CREATE_CONTRACT.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_SELF.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_SET_DELEGATE.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_TRANSFER_TOKENS.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/int-store.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/omega.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/rec_fact.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/rec_fact_apply.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/rec_fact_apply_store.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/rec_fact_store.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/sapling_contract.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/sapling_contract_double.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/sapling_contract_drop.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/sapling_contract_send.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/sapling_contract_state_as_arg.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/sapling_push_sapling_state.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/sapling_use_existing_state.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/contracts/temp_big_maps.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_annotations.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_block_time_instructions.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_contract_event.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_global_constants_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_interpretation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_lambda_normalization.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_lazy_storage_diff.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_patched_contracts.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_sapling.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_script_cache.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_script_typed_ir_size.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_temp_big_maps.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_ticket_accounting.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_ticket_balance.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_ticket_balance_key.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_ticket_lazy_storage_diff.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_ticket_manager.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_ticket_operations_diff.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_ticket_scanner.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_ticket_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/michelson/test_typechecking.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/operations/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/operations/test_activation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/operations/test_combined_operations.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/operations/test_failing_noop.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/operations/test_origination.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/operations/test_paid_storage_increase.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/operations/test_reveal.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/operations/test_sc_rollup.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/operations/test_transfer.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/operations/test_transfer_ticket.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/operations/test_voting.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/operations/test_zk_rollup.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/test_constants.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/test_frozen_bonds.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/test_liquidity_baking.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/test_scenario_base.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/test_scenario_deactivation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/test_scenario_rewards.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/test_scenario_slashing.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/test_scenario_slashing_stakers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/test_scenario_stake.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/test_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/test_storage_functions.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/test_token.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/validate/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/validate/generator_descriptors.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/validate/generator_descriptors.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/validate/generators.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/validate/manager_operation_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/validate/test_1m_restriction.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/validate/test_covalidity.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/validate/test_manager_operation_validation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/validate/test_mempool.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/validate/test_sanity.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/validate/test_validation_batch.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/validate/valid_operations_generators.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/validate/validate_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/wasm_kernel/README.md (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/wasm_kernel/computation.wasm (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/wasm_kernel/echo.wasm (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/wasm_kernel/echo.wast (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/wasm_kernel/no_parse_bad_fingerprint.wasm (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/wasm_kernel/no_parse_random.wasm (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/integration/wasm_kernel/tx-kernel.wasm (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/liquidity_baking_pbt.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/saturation_fuzzing.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_balance_updates_encoding.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_bytes_conversion.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_carbonated_map.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_compare_operations.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_dal_slot_proof.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_gas_properties.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_merkle_list.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_operation_encoding.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_refutation_game.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_sampler.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_sc_rollup_encoding.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_sc_rollup_inbox.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_sc_rollup_tick_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_script_comparison.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_script_roundtrip.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_tez_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/pbt/test_zk_rollup_encoding.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/accounts.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/append.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/auction.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/big_map_union.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/check_signature.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/comb-get.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/comb-set.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/concat.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/conditionals.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/cps_fact.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/dign.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/dipn.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/dugn.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/ediv.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/faucet.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/get_and_update_map.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/if.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/insertion_sort.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/list_map_block.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/loop_left.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/opt_map.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/packunpack.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/pexec.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/rec_id_unit.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/reverse_loop.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/set_delegate.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/shifts.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/spawn_identities.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/ticket_join.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/ticket_split.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/view_fib.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/view_toplevel_lib.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/contracts/xor.tz (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/accounts.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/append.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/auction.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/big_map_union.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/check_signature.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/comb-get.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/comb-set.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/concat.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/conditionals.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/cps_fact.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/dign.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/dipn.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/dugn.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/ediv.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/faucet.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/get_and_update_map.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/if.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/insertion_sort.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/list_map_block.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/loop_left.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/opt_map.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/packunpack.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/pexec.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/rec_id_unit.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/reverse_loop.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/set_delegate.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/shifts.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/spawn_identities.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/ticket_join.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/ticket_split.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/view_fib.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/view_toplevel_lib.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/expected/test_logging.ml/xor.out (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/regression/test_logging.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_adaptive_issuance.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_adaptive_issuance_ema.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_alpha_context.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_bond_id_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_consecutive_round_zero.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_consensus_key.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_contract_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_dal_slot_proof.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_destination_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_fitness.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_fixed_point.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_full_staking_balance_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_gas_monad.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_global_constants_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_level_module.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_liquidity_baking_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_local_contexts.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_merkle_list.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_operation_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_percentage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_qty.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_raw_level_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_receipt.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_round_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_saturation.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_sc_rollup_arith.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_sc_rollup_game.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_sc_rollup_inbox.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_sc_rollup_inbox_legacy.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_sc_rollup_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_sc_rollup_wasm.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_skip_list_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_slashing_percentage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_staking_operations.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_tez_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_time_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/test/unit/test_zk_rollup_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/tez_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/tez_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_accounting.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_accounting.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_amount.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_amount.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_balance_key.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_balance_key.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_costs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_costs.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_costs_generated.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_hash_builder.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_hash_builder.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_hash_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_hash_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_lazy_storage_diff.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_lazy_storage_diff.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_operations_diff.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_operations_diff.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_receipt.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_receipt.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_scanner.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_scanner.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_token.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_token.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_token_map.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_token_map.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_token_unparser.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_token_unparser.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_transfer.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/ticket_transfer.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/time_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/time_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/token.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/token.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/tx_rollup_l2_address.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/tx_rollup_l2_address.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/unstake_requests_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/unstake_requests_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/unstaked_frozen_deposits_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/unstaked_frozen_deposits_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/unstaked_frozen_deposits_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/unstaked_frozen_deposits_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/unstaked_frozen_staker_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/unstaked_frozen_staker_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/validate.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/validate.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/validate_errors.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/validate_errors.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/vote_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/vote_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/vote_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/vote_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/votes_EMA_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/votes_EMA_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/voting_period_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/voting_period_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/voting_period_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/voting_period_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_account_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_account_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_apply.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_apply.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_circuit_public_inputs_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_circuit_public_inputs_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_errors.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_operation_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_operation_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_parameters.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_parameters.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_scalar.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_scalar.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_state_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_state_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_storage.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_storage.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_ticket_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_ticket_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_update_repr.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_protocol/zk_rollup_update_repr.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup/README.md (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup/context_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup/context_helpers.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup/game_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup/game_helpers.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup/pvm_in_memory.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup/pvm_in_memory.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_layer2/README.md (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_layer2/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_layer2/sc_rollup_proto_types.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_layer2/sc_rollup_proto_types.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_layer2/sc_rollup_services.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/RPC_directory.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/RPC_directory.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/arith_pvm.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/batcher_constants.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/batcher_constants.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/context_wrapper.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/context_wrapper.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/daemon_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/daemon_helpers.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/dal_pages_request.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/dal_pages_request.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/dal_slots_tracker.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/dal_slots_tracker.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/dal_slots_tracker_event.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/fueled_pvm.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/inbox.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/inbox.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/inbox_event.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/inbox_event.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/layer1_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/layer1_helpers.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/outbox.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/outbox.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/pvm.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/pvm_plugin.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/pvm_plugin.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/pvm_rpc.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/pvm_sig.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/refutation_game_helpers.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/refutation_game_helpers.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/reveals.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/reveals.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/riscv_pvm.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/rollup_node_plugin.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/sc_rollup_injector.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/sc_rollup_injector.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/sc_rollup_node_errors.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/test/dune (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/test/serialized_proofs.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/test/serialized_proofs.mli (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/test/test_octez_conversions.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/wasm_2_0_0_pvm.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/lib_sc_rollup_node/wasm_2_0_0_rpc.ml (100%) rename src/{proto_023_PtSEouLo => proto_023_PtSeouLo}/parameters/dune (100%) diff --git a/src/proto_023_PtSEouLo/bin_accuser/dune b/src/proto_023_PtSeouLo/bin_accuser/dune similarity index 100% rename from src/proto_023_PtSEouLo/bin_accuser/dune rename to src/proto_023_PtSeouLo/bin_accuser/dune diff --git a/src/proto_023_PtSEouLo/bin_accuser/main_accuser_023_PtSEouLo.ml b/src/proto_023_PtSeouLo/bin_accuser/main_accuser_023_PtSEouLo.ml similarity index 100% rename from src/proto_023_PtSEouLo/bin_accuser/main_accuser_023_PtSEouLo.ml rename to src/proto_023_PtSeouLo/bin_accuser/main_accuser_023_PtSEouLo.ml diff --git a/src/proto_023_PtSEouLo/bin_baker/dune b/src/proto_023_PtSeouLo/bin_baker/dune similarity index 100% rename from src/proto_023_PtSEouLo/bin_baker/dune rename to src/proto_023_PtSeouLo/bin_baker/dune diff --git a/src/proto_023_PtSEouLo/bin_baker/main_baker_023_PtSEouLo.ml b/src/proto_023_PtSeouLo/bin_baker/main_baker_023_PtSEouLo.ml similarity index 100% rename from src/proto_023_PtSEouLo/bin_baker/main_baker_023_PtSEouLo.ml rename to src/proto_023_PtSeouLo/bin_baker/main_baker_023_PtSEouLo.ml diff --git a/src/proto_023_PtSEouLo/lib_agnostic_baker/accuser_commands_helpers.ml b/src/proto_023_PtSeouLo/lib_agnostic_baker/accuser_commands_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_agnostic_baker/accuser_commands_helpers.ml rename to src/proto_023_PtSeouLo/lib_agnostic_baker/accuser_commands_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_agnostic_baker/agnostic_baker_plugin.ml b/src/proto_023_PtSeouLo/lib_agnostic_baker/agnostic_baker_plugin.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_agnostic_baker/agnostic_baker_plugin.ml rename to src/proto_023_PtSeouLo/lib_agnostic_baker/agnostic_baker_plugin.ml diff --git a/src/proto_023_PtSEouLo/lib_agnostic_baker/baker_commands_helpers.ml b/src/proto_023_PtSeouLo/lib_agnostic_baker/baker_commands_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_agnostic_baker/baker_commands_helpers.ml rename to src/proto_023_PtSeouLo/lib_agnostic_baker/baker_commands_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_agnostic_baker/baker_commands_helpers.mli b/src/proto_023_PtSeouLo/lib_agnostic_baker/baker_commands_helpers.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_agnostic_baker/baker_commands_helpers.mli rename to src/proto_023_PtSeouLo/lib_agnostic_baker/baker_commands_helpers.mli diff --git a/src/proto_023_PtSEouLo/lib_agnostic_baker/dune b/src/proto_023_PtSeouLo/lib_agnostic_baker/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_agnostic_baker/dune rename to src/proto_023_PtSeouLo/lib_agnostic_baker/dune diff --git a/src/proto_023_PtSEouLo/lib_benchmark/README.md b/src/proto_023_PtSeouLo/lib_benchmark/README.md similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/README.md rename to src/proto_023_PtSeouLo/lib_benchmark/README.md diff --git a/src/proto_023_PtSEouLo/lib_benchmark/autocomp.ml b/src/proto_023_PtSeouLo/lib_benchmark/autocomp.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/autocomp.ml rename to src/proto_023_PtSeouLo/lib_benchmark/autocomp.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/dune b/src/proto_023_PtSeouLo/lib_benchmark/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/dune rename to src/proto_023_PtSeouLo/lib_benchmark/dune diff --git a/src/proto_023_PtSEouLo/lib_benchmark/execution_context.ml b/src/proto_023_PtSeouLo/lib_benchmark/execution_context.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/execution_context.ml rename to src/proto_023_PtSeouLo/lib_benchmark/execution_context.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/kernel.ml b/src/proto_023_PtSeouLo/lib_benchmark/kernel.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/kernel.ml rename to src/proto_023_PtSeouLo/lib_benchmark/kernel.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/dune b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/dune rename to src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/dune diff --git a/src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/inference.ml b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/inference.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/inference.ml rename to src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/inference.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/inference.mli b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/inference.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/inference.mli rename to src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/inference.mli diff --git a/src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/int_map.ml b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/int_map.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/int_map.ml rename to src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/int_map.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/mikhailsky.ml b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/mikhailsky.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/mikhailsky.ml rename to src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/mikhailsky.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/mikhailsky.mli b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/mikhailsky.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/mikhailsky.mli rename to src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/mikhailsky.mli diff --git a/src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/mikhailsky_prim.ml b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/mikhailsky_prim.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/mikhailsky_prim.ml rename to src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/mikhailsky_prim.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/monads.ml b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/monads.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/monads.ml rename to src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/monads.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/stores.ml b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/stores.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/stores.ml rename to src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/stores.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/test/dune b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/test/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/test/dune rename to src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/test/dune diff --git a/src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/test/test_inference.ml b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/test/test_inference.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/test/test_inference.ml rename to src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/test/test_inference.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/test/test_uf.ml b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/test/test_uf.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/test/test_uf.ml rename to src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/test/test_uf.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/type.ml b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/type.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/type.ml rename to src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/type.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/type.mli b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/type.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/type.mli rename to src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/type.mli diff --git a/src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/uf.ml b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/uf.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/uf.ml rename to src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/uf.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/micheline_sampler.ml b/src/proto_023_PtSeouLo/lib_benchmark/micheline_sampler.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/micheline_sampler.ml rename to src/proto_023_PtSeouLo/lib_benchmark/micheline_sampler.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/micheline_sampler.mli b/src/proto_023_PtSeouLo/lib_benchmark/micheline_sampler.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/micheline_sampler.mli rename to src/proto_023_PtSeouLo/lib_benchmark/micheline_sampler.mli diff --git a/src/proto_023_PtSEouLo/lib_benchmark/michelson_mcmc_samplers.ml b/src/proto_023_PtSeouLo/lib_benchmark/michelson_mcmc_samplers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/michelson_mcmc_samplers.ml rename to src/proto_023_PtSeouLo/lib_benchmark/michelson_mcmc_samplers.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/michelson_mcmc_samplers.mli b/src/proto_023_PtSeouLo/lib_benchmark/michelson_mcmc_samplers.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/michelson_mcmc_samplers.mli rename to src/proto_023_PtSeouLo/lib_benchmark/michelson_mcmc_samplers.mli diff --git a/src/proto_023_PtSEouLo/lib_benchmark/michelson_samplers.ml b/src/proto_023_PtSeouLo/lib_benchmark/michelson_samplers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/michelson_samplers.ml rename to src/proto_023_PtSeouLo/lib_benchmark/michelson_samplers.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/michelson_samplers.mli b/src/proto_023_PtSeouLo/lib_benchmark/michelson_samplers.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/michelson_samplers.mli rename to src/proto_023_PtSeouLo/lib_benchmark/michelson_samplers.mli diff --git a/src/proto_023_PtSEouLo/lib_benchmark/michelson_samplers_base.ml b/src/proto_023_PtSeouLo/lib_benchmark/michelson_samplers_base.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/michelson_samplers_base.ml rename to src/proto_023_PtSeouLo/lib_benchmark/michelson_samplers_base.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/michelson_samplers_base.mli b/src/proto_023_PtSeouLo/lib_benchmark/michelson_samplers_base.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/michelson_samplers_base.mli rename to src/proto_023_PtSeouLo/lib_benchmark/michelson_samplers_base.mli diff --git a/src/proto_023_PtSEouLo/lib_benchmark/mikhailsky_to_michelson.ml b/src/proto_023_PtSeouLo/lib_benchmark/mikhailsky_to_michelson.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/mikhailsky_to_michelson.ml rename to src/proto_023_PtSeouLo/lib_benchmark/mikhailsky_to_michelson.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/rules.ml b/src/proto_023_PtSeouLo/lib_benchmark/rules.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/rules.ml rename to src/proto_023_PtSeouLo/lib_benchmark/rules.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/sampling_helpers.ml b/src/proto_023_PtSeouLo/lib_benchmark/sampling_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/sampling_helpers.ml rename to src/proto_023_PtSeouLo/lib_benchmark/sampling_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/state_space.ml b/src/proto_023_PtSeouLo/lib_benchmark/state_space.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/state_space.ml rename to src/proto_023_PtSeouLo/lib_benchmark/state_space.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/test/dune b/src/proto_023_PtSeouLo/lib_benchmark/test/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/test/dune rename to src/proto_023_PtSeouLo/lib_benchmark/test/dune diff --git a/src/proto_023_PtSEouLo/lib_benchmark/test/test_autocompletion.ml b/src/proto_023_PtSeouLo/lib_benchmark/test/test_autocompletion.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/test/test_autocompletion.ml rename to src/proto_023_PtSeouLo/lib_benchmark/test/test_autocompletion.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/test/test_distribution.ml b/src/proto_023_PtSeouLo/lib_benchmark/test/test_distribution.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/test/test_distribution.ml rename to src/proto_023_PtSeouLo/lib_benchmark/test/test_distribution.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/test/test_helpers.ml b/src/proto_023_PtSeouLo/lib_benchmark/test/test_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/test/test_helpers.ml rename to src/proto_023_PtSeouLo/lib_benchmark/test/test_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/test/test_sampling_code.ml b/src/proto_023_PtSeouLo/lib_benchmark/test/test_sampling_code.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/test/test_sampling_code.ml rename to src/proto_023_PtSeouLo/lib_benchmark/test/test_sampling_code.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/test/test_sampling_data.ml b/src/proto_023_PtSeouLo/lib_benchmark/test/test_sampling_data.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/test/test_sampling_data.ml rename to src/proto_023_PtSeouLo/lib_benchmark/test/test_sampling_data.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/type_helpers.ml b/src/proto_023_PtSeouLo/lib_benchmark/type_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/type_helpers.ml rename to src/proto_023_PtSeouLo/lib_benchmark/type_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmark/type_helpers.mli b/src/proto_023_PtSeouLo/lib_benchmark/type_helpers.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmark/type_helpers.mli rename to src/proto_023_PtSeouLo/lib_benchmark/type_helpers.mli diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/apply_benchmarks.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/apply_benchmarks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/apply_benchmarks.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/apply_benchmarks.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/benchmarks_proto.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/benchmarks_proto.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/benchmarks_proto.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/benchmarks_proto.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/benchmarks_proto.mli b/src/proto_023_PtSeouLo/lib_benchmarks_proto/benchmarks_proto.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/benchmarks_proto.mli rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/benchmarks_proto.mli diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/cache_benchmarks.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/cache_benchmarks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/cache_benchmarks.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/cache_benchmarks.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/carbonated_map_benchmarks.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/carbonated_map_benchmarks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/carbonated_map_benchmarks.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/carbonated_map_benchmarks.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/dal_benchmarks.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/dal_benchmarks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/dal_benchmarks.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/dal_benchmarks.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/dune b/src/proto_023_PtSeouLo/lib_benchmarks_proto/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/dune rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/dune diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/encodings_benchmarks.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/encodings_benchmarks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/encodings_benchmarks.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/encodings_benchmarks.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/gas_helpers.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/gas_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/gas_helpers.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/gas_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/global_constants_storage_benchmarks.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/global_constants_storage_benchmarks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/global_constants_storage_benchmarks.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/global_constants_storage_benchmarks.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/interpreter_benchmarks.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/interpreter_benchmarks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/interpreter_benchmarks.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/interpreter_benchmarks.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/interpreter_model.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/interpreter_model.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/interpreter_model.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/interpreter_model.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/interpreter_workload.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/interpreter_workload.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/interpreter_workload.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/interpreter_workload.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/michelson_commands.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/michelson_commands.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/michelson_commands.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/michelson_commands.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/michelson_generation.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/michelson_generation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/michelson_generation.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/michelson_generation.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/michelson_generation.mli b/src/proto_023_PtSeouLo/lib_benchmarks_proto/michelson_generation.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/michelson_generation.mli rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/michelson_generation.mli diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/michelson_types.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/michelson_types.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/michelson_types.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/michelson_types.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/registration_helpers.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/registration_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/registration_helpers.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/registration_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/sapling_benchmarks.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/sapling_benchmarks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/sapling_benchmarks.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/sapling_benchmarks.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/sapling_commands.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/sapling_commands.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/sapling_commands.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/sapling_commands.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/sapling_generation.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/sapling_generation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/sapling_generation.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/sapling_generation.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/sc_rollup_benchmarks.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/sc_rollup_benchmarks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/sc_rollup_benchmarks.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/sc_rollup_benchmarks.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/script_repr_benchmarks.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/script_repr_benchmarks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/script_repr_benchmarks.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/script_repr_benchmarks.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/script_typed_ir_size_benchmarks.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/script_typed_ir_size_benchmarks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/script_typed_ir_size_benchmarks.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/script_typed_ir_size_benchmarks.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/skip_list_benchmarks.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/skip_list_benchmarks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/skip_list_benchmarks.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/skip_list_benchmarks.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/storage_benchmarks.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/storage_benchmarks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/storage_benchmarks.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/storage_benchmarks.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/tags.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/tags.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/tags.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/tags.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/ticket_benchmarks.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/ticket_benchmarks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/ticket_benchmarks.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/ticket_benchmarks.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/translator_benchmarks.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/translator_benchmarks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/translator_benchmarks.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/translator_benchmarks.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/translator_model.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/translator_model.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/translator_model.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/translator_model.ml diff --git a/src/proto_023_PtSEouLo/lib_benchmarks_proto/translator_workload.ml b/src/proto_023_PtSeouLo/lib_benchmarks_proto/translator_workload.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_benchmarks_proto/translator_workload.ml rename to src/proto_023_PtSeouLo/lib_benchmarks_proto/translator_workload.ml diff --git a/src/proto_023_PtSEouLo/lib_client/annotated_manager_operation.ml b/src/proto_023_PtSeouLo/lib_client/annotated_manager_operation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/annotated_manager_operation.ml rename to src/proto_023_PtSeouLo/lib_client/annotated_manager_operation.ml diff --git a/src/proto_023_PtSEouLo/lib_client/annotated_manager_operation.mli b/src/proto_023_PtSeouLo/lib_client/annotated_manager_operation.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/annotated_manager_operation.mli rename to src/proto_023_PtSeouLo/lib_client/annotated_manager_operation.mli diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_args.ml b/src/proto_023_PtSeouLo/lib_client/client_proto_args.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_args.ml rename to src/proto_023_PtSeouLo/lib_client/client_proto_args.ml diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_args.mli b/src/proto_023_PtSeouLo/lib_client/client_proto_args.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_args.mli rename to src/proto_023_PtSeouLo/lib_client/client_proto_args.mli diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_context.ml b/src/proto_023_PtSeouLo/lib_client/client_proto_context.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_context.ml rename to src/proto_023_PtSeouLo/lib_client/client_proto_context.ml diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_context.mli b/src/proto_023_PtSeouLo/lib_client/client_proto_context.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_context.mli rename to src/proto_023_PtSeouLo/lib_client/client_proto_context.mli diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_contracts.ml b/src/proto_023_PtSeouLo/lib_client/client_proto_contracts.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_contracts.ml rename to src/proto_023_PtSeouLo/lib_client/client_proto_contracts.ml diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_contracts.mli b/src/proto_023_PtSeouLo/lib_client/client_proto_contracts.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_contracts.mli rename to src/proto_023_PtSeouLo/lib_client/client_proto_contracts.mli diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_fa12.ml b/src/proto_023_PtSeouLo/lib_client/client_proto_fa12.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_fa12.ml rename to src/proto_023_PtSeouLo/lib_client/client_proto_fa12.ml diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_fa12.mli b/src/proto_023_PtSeouLo/lib_client/client_proto_fa12.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_fa12.mli rename to src/proto_023_PtSeouLo/lib_client/client_proto_fa12.mli diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_multisig.ml b/src/proto_023_PtSeouLo/lib_client/client_proto_multisig.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_multisig.ml rename to src/proto_023_PtSeouLo/lib_client/client_proto_multisig.ml diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_multisig.mli b/src/proto_023_PtSeouLo/lib_client/client_proto_multisig.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_multisig.mli rename to src/proto_023_PtSeouLo/lib_client/client_proto_multisig.mli diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_programs.ml b/src/proto_023_PtSeouLo/lib_client/client_proto_programs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_programs.ml rename to src/proto_023_PtSeouLo/lib_client/client_proto_programs.ml diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_programs.mli b/src/proto_023_PtSeouLo/lib_client/client_proto_programs.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_programs.mli rename to src/proto_023_PtSeouLo/lib_client/client_proto_programs.mli diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_rollups.ml b/src/proto_023_PtSeouLo/lib_client/client_proto_rollups.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_rollups.ml rename to src/proto_023_PtSeouLo/lib_client/client_proto_rollups.ml diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_rollups.mli b/src/proto_023_PtSeouLo/lib_client/client_proto_rollups.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_rollups.mli rename to src/proto_023_PtSeouLo/lib_client/client_proto_rollups.mli diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_tzt.ml b/src/proto_023_PtSeouLo/lib_client/client_proto_tzt.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_tzt.ml rename to src/proto_023_PtSeouLo/lib_client/client_proto_tzt.ml diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_tzt.mli b/src/proto_023_PtSeouLo/lib_client/client_proto_tzt.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_tzt.mli rename to src/proto_023_PtSeouLo/lib_client/client_proto_tzt.mli diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_utils.ml b/src/proto_023_PtSeouLo/lib_client/client_proto_utils.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_utils.ml rename to src/proto_023_PtSeouLo/lib_client/client_proto_utils.ml diff --git a/src/proto_023_PtSEouLo/lib_client/client_proto_utils.mli b/src/proto_023_PtSeouLo/lib_client/client_proto_utils.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/client_proto_utils.mli rename to src/proto_023_PtSeouLo/lib_client/client_proto_utils.mli diff --git a/src/proto_023_PtSEouLo/lib_client/dune b/src/proto_023_PtSeouLo/lib_client/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/dune rename to src/proto_023_PtSeouLo/lib_client/dune diff --git a/src/proto_023_PtSEouLo/lib_client/injection.ml b/src/proto_023_PtSeouLo/lib_client/injection.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/injection.ml rename to src/proto_023_PtSeouLo/lib_client/injection.ml diff --git a/src/proto_023_PtSEouLo/lib_client/injection.mli b/src/proto_023_PtSeouLo/lib_client/injection.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/injection.mli rename to src/proto_023_PtSeouLo/lib_client/injection.mli diff --git a/src/proto_023_PtSEouLo/lib_client/light.ml b/src/proto_023_PtSeouLo/lib_client/light.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/light.ml rename to src/proto_023_PtSeouLo/lib_client/light.ml diff --git a/src/proto_023_PtSEouLo/lib_client/limit.ml b/src/proto_023_PtSeouLo/lib_client/limit.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/limit.ml rename to src/proto_023_PtSeouLo/lib_client/limit.ml diff --git a/src/proto_023_PtSEouLo/lib_client/limit.mli b/src/proto_023_PtSeouLo/lib_client/limit.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/limit.mli rename to src/proto_023_PtSeouLo/lib_client/limit.mli diff --git a/src/proto_023_PtSEouLo/lib_client/managed_contract.ml b/src/proto_023_PtSeouLo/lib_client/managed_contract.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/managed_contract.ml rename to src/proto_023_PtSeouLo/lib_client/managed_contract.ml diff --git a/src/proto_023_PtSEouLo/lib_client/managed_contract.mli b/src/proto_023_PtSeouLo/lib_client/managed_contract.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/managed_contract.mli rename to src/proto_023_PtSeouLo/lib_client/managed_contract.mli diff --git a/src/proto_023_PtSEouLo/lib_client/michelson_v1_emacs.ml b/src/proto_023_PtSeouLo/lib_client/michelson_v1_emacs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/michelson_v1_emacs.ml rename to src/proto_023_PtSeouLo/lib_client/michelson_v1_emacs.ml diff --git a/src/proto_023_PtSEouLo/lib_client/michelson_v1_emacs.mli b/src/proto_023_PtSeouLo/lib_client/michelson_v1_emacs.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/michelson_v1_emacs.mli rename to src/proto_023_PtSeouLo/lib_client/michelson_v1_emacs.mli diff --git a/src/proto_023_PtSEouLo/lib_client/michelson_v1_entrypoints.ml b/src/proto_023_PtSeouLo/lib_client/michelson_v1_entrypoints.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/michelson_v1_entrypoints.ml rename to src/proto_023_PtSeouLo/lib_client/michelson_v1_entrypoints.ml diff --git a/src/proto_023_PtSEouLo/lib_client/michelson_v1_entrypoints.mli b/src/proto_023_PtSeouLo/lib_client/michelson_v1_entrypoints.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/michelson_v1_entrypoints.mli rename to src/proto_023_PtSeouLo/lib_client/michelson_v1_entrypoints.mli diff --git a/src/proto_023_PtSEouLo/lib_client/michelson_v1_error_reporter.ml b/src/proto_023_PtSeouLo/lib_client/michelson_v1_error_reporter.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/michelson_v1_error_reporter.ml rename to src/proto_023_PtSeouLo/lib_client/michelson_v1_error_reporter.ml diff --git a/src/proto_023_PtSEouLo/lib_client/michelson_v1_error_reporter.mli b/src/proto_023_PtSeouLo/lib_client/michelson_v1_error_reporter.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/michelson_v1_error_reporter.mli rename to src/proto_023_PtSeouLo/lib_client/michelson_v1_error_reporter.mli diff --git a/src/proto_023_PtSEouLo/lib_client/michelson_v1_helpers.ml b/src/proto_023_PtSeouLo/lib_client/michelson_v1_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/michelson_v1_helpers.ml rename to src/proto_023_PtSeouLo/lib_client/michelson_v1_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_client/michelson_v1_macros.ml b/src/proto_023_PtSeouLo/lib_client/michelson_v1_macros.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/michelson_v1_macros.ml rename to src/proto_023_PtSeouLo/lib_client/michelson_v1_macros.ml diff --git a/src/proto_023_PtSEouLo/lib_client/michelson_v1_macros.mli b/src/proto_023_PtSeouLo/lib_client/michelson_v1_macros.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/michelson_v1_macros.mli rename to src/proto_023_PtSeouLo/lib_client/michelson_v1_macros.mli diff --git a/src/proto_023_PtSEouLo/lib_client/michelson_v1_parser.ml b/src/proto_023_PtSeouLo/lib_client/michelson_v1_parser.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/michelson_v1_parser.ml rename to src/proto_023_PtSeouLo/lib_client/michelson_v1_parser.ml diff --git a/src/proto_023_PtSEouLo/lib_client/michelson_v1_parser.mli b/src/proto_023_PtSeouLo/lib_client/michelson_v1_parser.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/michelson_v1_parser.mli rename to src/proto_023_PtSeouLo/lib_client/michelson_v1_parser.mli diff --git a/src/proto_023_PtSEouLo/lib_client/michelson_v1_printer.ml b/src/proto_023_PtSeouLo/lib_client/michelson_v1_printer.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/michelson_v1_printer.ml rename to src/proto_023_PtSeouLo/lib_client/michelson_v1_printer.ml diff --git a/src/proto_023_PtSEouLo/lib_client/michelson_v1_printer.mli b/src/proto_023_PtSeouLo/lib_client/michelson_v1_printer.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/michelson_v1_printer.mli rename to src/proto_023_PtSeouLo/lib_client/michelson_v1_printer.mli diff --git a/src/proto_023_PtSEouLo/lib_client/michelson_v1_stack.ml b/src/proto_023_PtSeouLo/lib_client/michelson_v1_stack.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/michelson_v1_stack.ml rename to src/proto_023_PtSeouLo/lib_client/michelson_v1_stack.ml diff --git a/src/proto_023_PtSEouLo/lib_client/michelson_v1_stack.mli b/src/proto_023_PtSeouLo/lib_client/michelson_v1_stack.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/michelson_v1_stack.mli rename to src/proto_023_PtSeouLo/lib_client/michelson_v1_stack.mli diff --git a/src/proto_023_PtSEouLo/lib_client/mockup.ml b/src/proto_023_PtSeouLo/lib_client/mockup.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/mockup.ml rename to src/proto_023_PtSeouLo/lib_client/mockup.ml diff --git a/src/proto_023_PtSEouLo/lib_client/operation_result.ml b/src/proto_023_PtSeouLo/lib_client/operation_result.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/operation_result.ml rename to src/proto_023_PtSeouLo/lib_client/operation_result.ml diff --git a/src/proto_023_PtSEouLo/lib_client/operation_result.mli b/src/proto_023_PtSeouLo/lib_client/operation_result.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/operation_result.mli rename to src/proto_023_PtSeouLo/lib_client/operation_result.mli diff --git a/src/proto_023_PtSEouLo/lib_client/protocol_client_context.ml b/src/proto_023_PtSeouLo/lib_client/protocol_client_context.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/protocol_client_context.ml rename to src/proto_023_PtSeouLo/lib_client/protocol_client_context.ml diff --git a/src/proto_023_PtSEouLo/lib_client/proxy.ml b/src/proto_023_PtSeouLo/lib_client/proxy.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/proxy.ml rename to src/proto_023_PtSeouLo/lib_client/proxy.ml diff --git a/src/proto_023_PtSEouLo/lib_client/test/dune b/src/proto_023_PtSeouLo/lib_client/test/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/test/dune rename to src/proto_023_PtSeouLo/lib_client/test/dune diff --git a/src/proto_023_PtSEouLo/lib_client/test/test_client_proto_context.ml b/src/proto_023_PtSeouLo/lib_client/test/test_client_proto_context.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/test/test_client_proto_context.ml rename to src/proto_023_PtSeouLo/lib_client/test/test_client_proto_context.ml diff --git a/src/proto_023_PtSEouLo/lib_client/test/test_client_proto_contracts.ml b/src/proto_023_PtSeouLo/lib_client/test/test_client_proto_contracts.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/test/test_client_proto_contracts.ml rename to src/proto_023_PtSeouLo/lib_client/test/test_client_proto_contracts.ml diff --git a/src/proto_023_PtSEouLo/lib_client/test/test_michelson_v1_macros.ml b/src/proto_023_PtSeouLo/lib_client/test/test_michelson_v1_macros.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/test/test_michelson_v1_macros.ml rename to src/proto_023_PtSeouLo/lib_client/test/test_michelson_v1_macros.ml diff --git a/src/proto_023_PtSEouLo/lib_client/test/test_proxy.ml b/src/proto_023_PtSeouLo/lib_client/test/test_proxy.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client/test/test_proxy.ml rename to src/proto_023_PtSeouLo/lib_client/test/test_proxy.ml diff --git a/src/proto_023_PtSEouLo/lib_client_commands/alpha_commands_registration.ml b/src/proto_023_PtSeouLo/lib_client_commands/alpha_commands_registration.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/alpha_commands_registration.ml rename to src/proto_023_PtSeouLo/lib_client_commands/alpha_commands_registration.ml diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_bls_commands.ml b/src/proto_023_PtSeouLo/lib_client_commands/client_bls_commands.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_bls_commands.ml rename to src/proto_023_PtSeouLo/lib_client_commands/client_bls_commands.ml diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_bls_commands.mli b/src/proto_023_PtSeouLo/lib_client_commands/client_bls_commands.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_bls_commands.mli rename to src/proto_023_PtSeouLo/lib_client_commands/client_bls_commands.mli diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_proto_context_commands.ml b/src/proto_023_PtSeouLo/lib_client_commands/client_proto_context_commands.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_proto_context_commands.ml rename to src/proto_023_PtSeouLo/lib_client_commands/client_proto_context_commands.ml diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_proto_contracts_commands.ml b/src/proto_023_PtSeouLo/lib_client_commands/client_proto_contracts_commands.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_proto_contracts_commands.ml rename to src/proto_023_PtSeouLo/lib_client_commands/client_proto_contracts_commands.ml diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_proto_fa12_commands.ml b/src/proto_023_PtSeouLo/lib_client_commands/client_proto_fa12_commands.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_proto_fa12_commands.ml rename to src/proto_023_PtSeouLo/lib_client_commands/client_proto_fa12_commands.ml diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_proto_mockup_commands.ml b/src/proto_023_PtSeouLo/lib_client_commands/client_proto_mockup_commands.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_proto_mockup_commands.ml rename to src/proto_023_PtSeouLo/lib_client_commands/client_proto_mockup_commands.ml diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_proto_mockup_commands.mli b/src/proto_023_PtSeouLo/lib_client_commands/client_proto_mockup_commands.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_proto_mockup_commands.mli rename to src/proto_023_PtSeouLo/lib_client_commands/client_proto_mockup_commands.mli diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_proto_multisig_commands.ml b/src/proto_023_PtSeouLo/lib_client_commands/client_proto_multisig_commands.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_proto_multisig_commands.ml rename to src/proto_023_PtSeouLo/lib_client_commands/client_proto_multisig_commands.ml diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_proto_multisig_commands.mli b/src/proto_023_PtSeouLo/lib_client_commands/client_proto_multisig_commands.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_proto_multisig_commands.mli rename to src/proto_023_PtSeouLo/lib_client_commands/client_proto_multisig_commands.mli diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_proto_programs_commands.ml b/src/proto_023_PtSeouLo/lib_client_commands/client_proto_programs_commands.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_proto_programs_commands.ml rename to src/proto_023_PtSeouLo/lib_client_commands/client_proto_programs_commands.ml diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_proto_programs_commands.mli b/src/proto_023_PtSeouLo/lib_client_commands/client_proto_programs_commands.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_proto_programs_commands.mli rename to src/proto_023_PtSeouLo/lib_client_commands/client_proto_programs_commands.mli diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_proto_stresstest_commands.ml b/src/proto_023_PtSeouLo/lib_client_commands/client_proto_stresstest_commands.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_proto_stresstest_commands.ml rename to src/proto_023_PtSeouLo/lib_client_commands/client_proto_stresstest_commands.ml diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_proto_stresstest_commands.mli b/src/proto_023_PtSeouLo/lib_client_commands/client_proto_stresstest_commands.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_proto_stresstest_commands.mli rename to src/proto_023_PtSeouLo/lib_client_commands/client_proto_stresstest_commands.mli diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_proto_stresstest_contracts.ml b/src/proto_023_PtSeouLo/lib_client_commands/client_proto_stresstest_contracts.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_proto_stresstest_contracts.ml rename to src/proto_023_PtSeouLo/lib_client_commands/client_proto_stresstest_contracts.ml diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_proto_stresstest_contracts.mli b/src/proto_023_PtSeouLo/lib_client_commands/client_proto_stresstest_contracts.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_proto_stresstest_contracts.mli rename to src/proto_023_PtSeouLo/lib_client_commands/client_proto_stresstest_contracts.mli diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_proto_utils_commands.ml b/src/proto_023_PtSeouLo/lib_client_commands/client_proto_utils_commands.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_proto_utils_commands.ml rename to src/proto_023_PtSeouLo/lib_client_commands/client_proto_utils_commands.ml diff --git a/src/proto_023_PtSEouLo/lib_client_commands/client_proto_utils_commands.mli b/src/proto_023_PtSeouLo/lib_client_commands/client_proto_utils_commands.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/client_proto_utils_commands.mli rename to src/proto_023_PtSeouLo/lib_client_commands/client_proto_utils_commands.mli diff --git a/src/proto_023_PtSEouLo/lib_client_commands/dune b/src/proto_023_PtSeouLo/lib_client_commands/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_commands/dune rename to src/proto_023_PtSeouLo/lib_client_commands/dune diff --git a/src/proto_023_PtSEouLo/lib_client_sapling/client_sapling_commands.ml b/src/proto_023_PtSeouLo/lib_client_sapling/client_sapling_commands.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_sapling/client_sapling_commands.ml rename to src/proto_023_PtSeouLo/lib_client_sapling/client_sapling_commands.ml diff --git a/src/proto_023_PtSEouLo/lib_client_sapling/client_sapling_commands.mli b/src/proto_023_PtSeouLo/lib_client_sapling/client_sapling_commands.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_sapling/client_sapling_commands.mli rename to src/proto_023_PtSeouLo/lib_client_sapling/client_sapling_commands.mli diff --git a/src/proto_023_PtSEouLo/lib_client_sapling/context.ml b/src/proto_023_PtSeouLo/lib_client_sapling/context.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_sapling/context.ml rename to src/proto_023_PtSeouLo/lib_client_sapling/context.ml diff --git a/src/proto_023_PtSEouLo/lib_client_sapling/context.mli b/src/proto_023_PtSeouLo/lib_client_sapling/context.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_sapling/context.mli rename to src/proto_023_PtSeouLo/lib_client_sapling/context.mli diff --git a/src/proto_023_PtSEouLo/lib_client_sapling/dune b/src/proto_023_PtSeouLo/lib_client_sapling/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_sapling/dune rename to src/proto_023_PtSeouLo/lib_client_sapling/dune diff --git a/src/proto_023_PtSEouLo/lib_client_sapling/wallet.ml b/src/proto_023_PtSeouLo/lib_client_sapling/wallet.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_sapling/wallet.ml rename to src/proto_023_PtSeouLo/lib_client_sapling/wallet.ml diff --git a/src/proto_023_PtSEouLo/lib_client_sapling/wallet.mli b/src/proto_023_PtSeouLo/lib_client_sapling/wallet.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_client_sapling/wallet.mli rename to src/proto_023_PtSeouLo/lib_client_sapling/wallet.mli diff --git a/src/proto_023_PtSEouLo/lib_dal/RPC_directory.ml b/src/proto_023_PtSeouLo/lib_dal/RPC_directory.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_dal/RPC_directory.ml rename to src/proto_023_PtSeouLo/lib_dal/RPC_directory.ml diff --git a/src/proto_023_PtSEouLo/lib_dal/RPC_directory.mli b/src/proto_023_PtSeouLo/lib_dal/RPC_directory.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_dal/RPC_directory.mli rename to src/proto_023_PtSeouLo/lib_dal/RPC_directory.mli diff --git a/src/proto_023_PtSEouLo/lib_dal/dal_plugin_registration.ml b/src/proto_023_PtSeouLo/lib_dal/dal_plugin_registration.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_dal/dal_plugin_registration.ml rename to src/proto_023_PtSeouLo/lib_dal/dal_plugin_registration.ml diff --git a/src/proto_023_PtSEouLo/lib_dal/dal_proto_client.ml b/src/proto_023_PtSeouLo/lib_dal/dal_proto_client.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_dal/dal_proto_client.ml rename to src/proto_023_PtSeouLo/lib_dal/dal_proto_client.ml diff --git a/src/proto_023_PtSEouLo/lib_dal/dal_proto_client.mli b/src/proto_023_PtSeouLo/lib_dal/dal_proto_client.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_dal/dal_proto_client.mli rename to src/proto_023_PtSeouLo/lib_dal/dal_proto_client.mli diff --git a/src/proto_023_PtSEouLo/lib_dal/dal_services.ml b/src/proto_023_PtSeouLo/lib_dal/dal_services.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_dal/dal_services.ml rename to src/proto_023_PtSeouLo/lib_dal/dal_services.ml diff --git a/src/proto_023_PtSEouLo/lib_dal/dal_services.mli b/src/proto_023_PtSeouLo/lib_dal/dal_services.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_dal/dal_services.mli rename to src/proto_023_PtSeouLo/lib_dal/dal_services.mli diff --git a/src/proto_023_PtSEouLo/lib_dal/dal_slot_frame_encoding.ml b/src/proto_023_PtSeouLo/lib_dal/dal_slot_frame_encoding.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_dal/dal_slot_frame_encoding.ml rename to src/proto_023_PtSeouLo/lib_dal/dal_slot_frame_encoding.ml diff --git a/src/proto_023_PtSEouLo/lib_dal/dal_slot_frame_encoding.mli b/src/proto_023_PtSeouLo/lib_dal/dal_slot_frame_encoding.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_dal/dal_slot_frame_encoding.mli rename to src/proto_023_PtSeouLo/lib_dal/dal_slot_frame_encoding.mli diff --git a/src/proto_023_PtSEouLo/lib_dal/dune b/src/proto_023_PtSeouLo/lib_dal/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_dal/dune rename to src/proto_023_PtSeouLo/lib_dal/dune diff --git a/src/proto_023_PtSEouLo/lib_dal/test/dune b/src/proto_023_PtSeouLo/lib_dal/test/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_dal/test/dune rename to src/proto_023_PtSeouLo/lib_dal/test/dune diff --git a/src/proto_023_PtSEouLo/lib_dal/test/test_dal_slot_frame_encoding.ml b/src/proto_023_PtSeouLo/lib_dal/test/test_dal_slot_frame_encoding.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_dal/test/test_dal_slot_frame_encoding.ml rename to src/proto_023_PtSeouLo/lib_dal/test/test_dal_slot_frame_encoding.ml diff --git a/src/proto_023_PtSEouLo/lib_dal/test/test_helpers.ml b/src/proto_023_PtSeouLo/lib_dal/test/test_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_dal/test/test_helpers.ml rename to src/proto_023_PtSeouLo/lib_dal/test/test_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/abstract_context_index.ml b/src/proto_023_PtSeouLo/lib_delegate/abstract_context_index.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/abstract_context_index.ml rename to src/proto_023_PtSeouLo/lib_delegate/abstract_context_index.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/abstract_context_index.mli b/src/proto_023_PtSeouLo/lib_delegate/abstract_context_index.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/abstract_context_index.mli rename to src/proto_023_PtSeouLo/lib_delegate/abstract_context_index.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_actions.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_actions.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_actions.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_actions.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_actions.mli b/src/proto_023_PtSeouLo/lib_delegate/baking_actions.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_actions.mli rename to src/proto_023_PtSeouLo/lib_delegate/baking_actions.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_cache.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_cache.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_cache.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_cache.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_commands.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_commands.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_commands.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_commands.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_commands.mli b/src/proto_023_PtSeouLo/lib_delegate/baking_commands.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_commands.mli rename to src/proto_023_PtSeouLo/lib_delegate/baking_commands.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_commands_registration.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_commands_registration.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_commands_registration.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_commands_registration.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_configuration.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_configuration.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_configuration.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_configuration.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_configuration.mli b/src/proto_023_PtSeouLo/lib_delegate/baking_configuration.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_configuration.mli rename to src/proto_023_PtSeouLo/lib_delegate/baking_configuration.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_errors.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_errors.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_errors.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_errors.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_events.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_events.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_events.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_events.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_files.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_files.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_files.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_files.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_files.mli b/src/proto_023_PtSeouLo/lib_delegate/baking_files.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_files.mli rename to src/proto_023_PtSeouLo/lib_delegate/baking_files.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_highwatermarks.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_highwatermarks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_highwatermarks.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_highwatermarks.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_highwatermarks.mli b/src/proto_023_PtSeouLo/lib_delegate/baking_highwatermarks.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_highwatermarks.mli rename to src/proto_023_PtSeouLo/lib_delegate/baking_highwatermarks.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_lib.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_lib.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_lib.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_lib.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_lib.mli b/src/proto_023_PtSeouLo/lib_delegate/baking_lib.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_lib.mli rename to src/proto_023_PtSeouLo/lib_delegate/baking_lib.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_nonces.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_nonces.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_nonces.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_nonces.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_nonces.mli b/src/proto_023_PtSeouLo/lib_delegate/baking_nonces.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_nonces.mli rename to src/proto_023_PtSeouLo/lib_delegate/baking_nonces.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_pow.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_pow.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_pow.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_pow.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_pow.mli b/src/proto_023_PtSeouLo/lib_delegate/baking_pow.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_pow.mli rename to src/proto_023_PtSeouLo/lib_delegate/baking_pow.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_profiler.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_profiler.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_profiler.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_profiler.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_scheduling.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_scheduling.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_scheduling.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_scheduling.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_scheduling.mli b/src/proto_023_PtSeouLo/lib_delegate/baking_scheduling.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_scheduling.mli rename to src/proto_023_PtSeouLo/lib_delegate/baking_scheduling.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_simulator.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_simulator.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_simulator.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_simulator.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_simulator.mli b/src/proto_023_PtSeouLo/lib_delegate/baking_simulator.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_simulator.mli rename to src/proto_023_PtSeouLo/lib_delegate/baking_simulator.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_state.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_state.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_state.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_state.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_state.mli b/src/proto_023_PtSeouLo/lib_delegate/baking_state.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_state.mli rename to src/proto_023_PtSeouLo/lib_delegate/baking_state.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_state_types.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_state_types.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_state_types.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_state_types.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_state_types.mli b/src/proto_023_PtSeouLo/lib_delegate/baking_state_types.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_state_types.mli rename to src/proto_023_PtSeouLo/lib_delegate/baking_state_types.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_vdf.ml b/src/proto_023_PtSeouLo/lib_delegate/baking_vdf.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_vdf.ml rename to src/proto_023_PtSeouLo/lib_delegate/baking_vdf.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/baking_vdf.mli b/src/proto_023_PtSeouLo/lib_delegate/baking_vdf.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/baking_vdf.mli rename to src/proto_023_PtSeouLo/lib_delegate/baking_vdf.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/block_forge.ml b/src/proto_023_PtSeouLo/lib_delegate/block_forge.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/block_forge.ml rename to src/proto_023_PtSeouLo/lib_delegate/block_forge.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/block_forge.mli b/src/proto_023_PtSeouLo/lib_delegate/block_forge.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/block_forge.mli rename to src/proto_023_PtSeouLo/lib_delegate/block_forge.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/client_baking_blocks.ml b/src/proto_023_PtSeouLo/lib_delegate/client_baking_blocks.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/client_baking_blocks.ml rename to src/proto_023_PtSeouLo/lib_delegate/client_baking_blocks.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/client_baking_blocks.mli b/src/proto_023_PtSeouLo/lib_delegate/client_baking_blocks.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/client_baking_blocks.mli rename to src/proto_023_PtSeouLo/lib_delegate/client_baking_blocks.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/client_baking_denunciation.ml b/src/proto_023_PtSeouLo/lib_delegate/client_baking_denunciation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/client_baking_denunciation.ml rename to src/proto_023_PtSeouLo/lib_delegate/client_baking_denunciation.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/client_baking_denunciation.mli b/src/proto_023_PtSeouLo/lib_delegate/client_baking_denunciation.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/client_baking_denunciation.mli rename to src/proto_023_PtSeouLo/lib_delegate/client_baking_denunciation.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/client_baking_scheduling.ml b/src/proto_023_PtSeouLo/lib_delegate/client_baking_scheduling.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/client_baking_scheduling.ml rename to src/proto_023_PtSeouLo/lib_delegate/client_baking_scheduling.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/client_baking_scheduling.mli b/src/proto_023_PtSeouLo/lib_delegate/client_baking_scheduling.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/client_baking_scheduling.mli rename to src/proto_023_PtSeouLo/lib_delegate/client_baking_scheduling.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/client_daemon.ml b/src/proto_023_PtSeouLo/lib_delegate/client_daemon.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/client_daemon.ml rename to src/proto_023_PtSeouLo/lib_delegate/client_daemon.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/client_daemon.mli b/src/proto_023_PtSeouLo/lib_delegate/client_daemon.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/client_daemon.mli rename to src/proto_023_PtSeouLo/lib_delegate/client_daemon.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/delegate_events.ml b/src/proto_023_PtSeouLo/lib_delegate/delegate_events.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/delegate_events.ml rename to src/proto_023_PtSeouLo/lib_delegate/delegate_events.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/dune b/src/proto_023_PtSeouLo/lib_delegate/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/dune rename to src/proto_023_PtSeouLo/lib_delegate/dune diff --git a/src/proto_023_PtSEouLo/lib_delegate/forge_worker.ml b/src/proto_023_PtSeouLo/lib_delegate/forge_worker.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/forge_worker.ml rename to src/proto_023_PtSeouLo/lib_delegate/forge_worker.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/forge_worker.mli b/src/proto_023_PtSeouLo/lib_delegate/forge_worker.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/forge_worker.mli rename to src/proto_023_PtSeouLo/lib_delegate/forge_worker.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/node_rpc.ml b/src/proto_023_PtSeouLo/lib_delegate/node_rpc.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/node_rpc.ml rename to src/proto_023_PtSeouLo/lib_delegate/node_rpc.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/node_rpc.mli b/src/proto_023_PtSeouLo/lib_delegate/node_rpc.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/node_rpc.mli rename to src/proto_023_PtSeouLo/lib_delegate/node_rpc.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/operation_pool.ml b/src/proto_023_PtSeouLo/lib_delegate/operation_pool.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/operation_pool.ml rename to src/proto_023_PtSeouLo/lib_delegate/operation_pool.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/operation_pool.mli b/src/proto_023_PtSeouLo/lib_delegate/operation_pool.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/operation_pool.mli rename to src/proto_023_PtSeouLo/lib_delegate/operation_pool.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/operation_selection.ml b/src/proto_023_PtSeouLo/lib_delegate/operation_selection.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/operation_selection.ml rename to src/proto_023_PtSeouLo/lib_delegate/operation_selection.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/operation_selection.mli b/src/proto_023_PtSeouLo/lib_delegate/operation_selection.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/operation_selection.mli rename to src/proto_023_PtSeouLo/lib_delegate/operation_selection.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/operation_worker.ml b/src/proto_023_PtSeouLo/lib_delegate/operation_worker.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/operation_worker.ml rename to src/proto_023_PtSeouLo/lib_delegate/operation_worker.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/operation_worker.mli b/src/proto_023_PtSeouLo/lib_delegate/operation_worker.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/operation_worker.mli rename to src/proto_023_PtSeouLo/lib_delegate/operation_worker.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/state_transitions.ml b/src/proto_023_PtSeouLo/lib_delegate/state_transitions.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/state_transitions.ml rename to src/proto_023_PtSeouLo/lib_delegate/state_transitions.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/state_transitions.mli b/src/proto_023_PtSeouLo/lib_delegate/state_transitions.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/state_transitions.mli rename to src/proto_023_PtSeouLo/lib_delegate/state_transitions.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/test/README.md b/src/proto_023_PtSeouLo/lib_delegate/test/README.md similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/test/README.md rename to src/proto_023_PtSeouLo/lib_delegate/test/README.md diff --git a/src/proto_023_PtSEouLo/lib_delegate/test/dune b/src/proto_023_PtSeouLo/lib_delegate/test/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/test/dune rename to src/proto_023_PtSeouLo/lib_delegate/test/dune diff --git a/src/proto_023_PtSEouLo/lib_delegate/test/mockup_simulator/broadcast_services.ml b/src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/broadcast_services.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/test/mockup_simulator/broadcast_services.ml rename to src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/broadcast_services.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/test/mockup_simulator/dune b/src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/test/mockup_simulator/dune rename to src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/dune diff --git a/src/proto_023_PtSEouLo/lib_delegate/test/mockup_simulator/faked_client_context.ml b/src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/faked_client_context.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/test/mockup_simulator/faked_client_context.ml rename to src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/faked_client_context.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/test/mockup_simulator/faked_daemon.ml b/src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/faked_daemon.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/test/mockup_simulator/faked_daemon.ml rename to src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/faked_daemon.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/test/mockup_simulator/faked_services.ml b/src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/faked_services.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/test/mockup_simulator/faked_services.ml rename to src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/faked_services.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/test/mockup_simulator/mockup_simulator.ml b/src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/mockup_simulator.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/test/mockup_simulator/mockup_simulator.ml rename to src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/mockup_simulator.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/test/mockup_simulator/mockup_simulator.mli b/src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/mockup_simulator.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/test/mockup_simulator/mockup_simulator.mli rename to src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/mockup_simulator.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/test/tenderbrute/dune b/src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/test/tenderbrute/dune rename to src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/dune diff --git a/src/proto_023_PtSEouLo/lib_delegate/test/tenderbrute/lib/dune b/src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/lib/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/test/tenderbrute/lib/dune rename to src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/lib/dune diff --git a/src/proto_023_PtSEouLo/lib_delegate/test/tenderbrute/lib/tenderbrute.ml b/src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/lib/tenderbrute.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/test/tenderbrute/lib/tenderbrute.ml rename to src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/lib/tenderbrute.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/test/tenderbrute/lib/tenderbrute.mli b/src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/lib/tenderbrute.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/test/tenderbrute/lib/tenderbrute.mli rename to src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/lib/tenderbrute.mli diff --git a/src/proto_023_PtSEouLo/lib_delegate/test/tenderbrute/tenderbrute_main.ml b/src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/tenderbrute_main.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/test/tenderbrute/tenderbrute_main.ml rename to src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/tenderbrute_main.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/test/test_scenario.ml b/src/proto_023_PtSeouLo/lib_delegate/test/test_scenario.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/test/test_scenario.ml rename to src/proto_023_PtSeouLo/lib_delegate/test/test_scenario.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/vdf_helpers.ml b/src/proto_023_PtSeouLo/lib_delegate/vdf_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/vdf_helpers.ml rename to src/proto_023_PtSeouLo/lib_delegate/vdf_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_delegate/vdf_helpers.mli b/src/proto_023_PtSeouLo/lib_delegate/vdf_helpers.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_delegate/vdf_helpers.mli rename to src/proto_023_PtSeouLo/lib_delegate/vdf_helpers.mli diff --git a/src/proto_023_PtSEouLo/lib_injector/dune b/src/proto_023_PtSeouLo/lib_injector/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_injector/dune rename to src/proto_023_PtSeouLo/lib_injector/dune diff --git a/src/proto_023_PtSEouLo/lib_injector/injector_plugin.ml b/src/proto_023_PtSeouLo/lib_injector/injector_plugin.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_injector/injector_plugin.ml rename to src/proto_023_PtSeouLo/lib_injector/injector_plugin.ml diff --git a/src/proto_023_PtSEouLo/lib_layer2_utils/dune b/src/proto_023_PtSeouLo/lib_layer2_utils/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_layer2_utils/dune rename to src/proto_023_PtSeouLo/lib_layer2_utils/dune diff --git a/src/proto_023_PtSEouLo/lib_layer2_utils/layer1_services.ml b/src/proto_023_PtSeouLo/lib_layer2_utils/layer1_services.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_layer2_utils/layer1_services.ml rename to src/proto_023_PtSeouLo/lib_layer2_utils/layer1_services.ml diff --git a/src/proto_023_PtSEouLo/lib_layer2_utils/layer1_services.mli b/src/proto_023_PtSeouLo/lib_layer2_utils/layer1_services.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_layer2_utils/layer1_services.mli rename to src/proto_023_PtSeouLo/lib_layer2_utils/layer1_services.mli diff --git a/src/proto_023_PtSEouLo/lib_parameters/default_parameters.ml b/src/proto_023_PtSeouLo/lib_parameters/default_parameters.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_parameters/default_parameters.ml rename to src/proto_023_PtSeouLo/lib_parameters/default_parameters.ml diff --git a/src/proto_023_PtSEouLo/lib_parameters/default_parameters.mli b/src/proto_023_PtSeouLo/lib_parameters/default_parameters.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_parameters/default_parameters.mli rename to src/proto_023_PtSeouLo/lib_parameters/default_parameters.mli diff --git a/src/proto_023_PtSEouLo/lib_parameters/dune b/src/proto_023_PtSeouLo/lib_parameters/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_parameters/dune rename to src/proto_023_PtSeouLo/lib_parameters/dune diff --git a/src/proto_023_PtSEouLo/lib_parameters/gen.ml b/src/proto_023_PtSeouLo/lib_parameters/gen.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_parameters/gen.ml rename to src/proto_023_PtSeouLo/lib_parameters/gen.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/RPC.ml b/src/proto_023_PtSeouLo/lib_plugin/RPC.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/RPC.ml rename to src/proto_023_PtSeouLo/lib_plugin/RPC.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/adaptive_issuance_services.ml b/src/proto_023_PtSeouLo/lib_plugin/adaptive_issuance_services.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/adaptive_issuance_services.ml rename to src/proto_023_PtSeouLo/lib_plugin/adaptive_issuance_services.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/adaptive_issuance_services.mli b/src/proto_023_PtSeouLo/lib_plugin/adaptive_issuance_services.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/adaptive_issuance_services.mli rename to src/proto_023_PtSeouLo/lib_plugin/adaptive_issuance_services.mli diff --git a/src/proto_023_PtSEouLo/lib_plugin/alpha_services.ml b/src/proto_023_PtSeouLo/lib_plugin/alpha_services.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/alpha_services.ml rename to src/proto_023_PtSeouLo/lib_plugin/alpha_services.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/alpha_services.mli b/src/proto_023_PtSeouLo/lib_plugin/alpha_services.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/alpha_services.mli rename to src/proto_023_PtSeouLo/lib_plugin/alpha_services.mli diff --git a/src/proto_023_PtSEouLo/lib_plugin/constants_services.ml b/src/proto_023_PtSeouLo/lib_plugin/constants_services.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/constants_services.ml rename to src/proto_023_PtSeouLo/lib_plugin/constants_services.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/constants_services.mli b/src/proto_023_PtSeouLo/lib_plugin/constants_services.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/constants_services.mli rename to src/proto_023_PtSeouLo/lib_plugin/constants_services.mli diff --git a/src/proto_023_PtSEouLo/lib_plugin/contract_services.ml b/src/proto_023_PtSeouLo/lib_plugin/contract_services.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/contract_services.ml rename to src/proto_023_PtSeouLo/lib_plugin/contract_services.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/contract_services.mli b/src/proto_023_PtSeouLo/lib_plugin/contract_services.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/contract_services.mli rename to src/proto_023_PtSeouLo/lib_plugin/contract_services.mli diff --git a/src/proto_023_PtSEouLo/lib_plugin/dal_services.ml b/src/proto_023_PtSeouLo/lib_plugin/dal_services.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/dal_services.ml rename to src/proto_023_PtSeouLo/lib_plugin/dal_services.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/dal_services.mli b/src/proto_023_PtSeouLo/lib_plugin/dal_services.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/dal_services.mli rename to src/proto_023_PtSeouLo/lib_plugin/dal_services.mli diff --git a/src/proto_023_PtSEouLo/lib_plugin/delegate_services.ml b/src/proto_023_PtSeouLo/lib_plugin/delegate_services.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/delegate_services.ml rename to src/proto_023_PtSeouLo/lib_plugin/delegate_services.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/delegate_services.mli b/src/proto_023_PtSeouLo/lib_plugin/delegate_services.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/delegate_services.mli rename to src/proto_023_PtSeouLo/lib_plugin/delegate_services.mli diff --git a/src/proto_023_PtSEouLo/lib_plugin/delegators_contribution.ml b/src/proto_023_PtSeouLo/lib_plugin/delegators_contribution.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/delegators_contribution.ml rename to src/proto_023_PtSeouLo/lib_plugin/delegators_contribution.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/delegators_contribution.mli b/src/proto_023_PtSeouLo/lib_plugin/delegators_contribution.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/delegators_contribution.mli rename to src/proto_023_PtSeouLo/lib_plugin/delegators_contribution.mli diff --git a/src/proto_023_PtSEouLo/lib_plugin/dune b/src/proto_023_PtSeouLo/lib_plugin/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/dune rename to src/proto_023_PtSeouLo/lib_plugin/dune diff --git a/src/proto_023_PtSEouLo/lib_plugin/http_cache_headers.ml b/src/proto_023_PtSeouLo/lib_plugin/http_cache_headers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/http_cache_headers.ml rename to src/proto_023_PtSeouLo/lib_plugin/http_cache_headers.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/http_cache_headers.mli b/src/proto_023_PtSeouLo/lib_plugin/http_cache_headers.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/http_cache_headers.mli rename to src/proto_023_PtSeouLo/lib_plugin/http_cache_headers.mli diff --git a/src/proto_023_PtSEouLo/lib_plugin/index.mld b/src/proto_023_PtSeouLo/lib_plugin/index.mld similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/index.mld rename to src/proto_023_PtSeouLo/lib_plugin/index.mld diff --git a/src/proto_023_PtSEouLo/lib_plugin/mempool.ml b/src/proto_023_PtSeouLo/lib_plugin/mempool.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/mempool.ml rename to src/proto_023_PtSeouLo/lib_plugin/mempool.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/mempool.mli b/src/proto_023_PtSeouLo/lib_plugin/mempool.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/mempool.mli rename to src/proto_023_PtSeouLo/lib_plugin/mempool.mli diff --git a/src/proto_023_PtSEouLo/lib_plugin/metrics_plugin.ml b/src/proto_023_PtSeouLo/lib_plugin/metrics_plugin.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/metrics_plugin.ml rename to src/proto_023_PtSeouLo/lib_plugin/metrics_plugin.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/plugin.ml b/src/proto_023_PtSeouLo/lib_plugin/plugin.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/plugin.ml rename to src/proto_023_PtSeouLo/lib_plugin/plugin.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/plugin_errors.ml b/src/proto_023_PtSeouLo/lib_plugin/plugin_errors.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/plugin_errors.ml rename to src/proto_023_PtSeouLo/lib_plugin/plugin_errors.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/plugin_registerer.ml b/src/proto_023_PtSeouLo/lib_plugin/plugin_registerer.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/plugin_registerer.ml rename to src/proto_023_PtSeouLo/lib_plugin/plugin_registerer.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/sapling_services.ml b/src/proto_023_PtSeouLo/lib_plugin/sapling_services.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/sapling_services.ml rename to src/proto_023_PtSeouLo/lib_plugin/sapling_services.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/script_interpreter_logging.ml b/src/proto_023_PtSeouLo/lib_plugin/script_interpreter_logging.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/script_interpreter_logging.ml rename to src/proto_023_PtSeouLo/lib_plugin/script_interpreter_logging.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/script_interpreter_logging.mli b/src/proto_023_PtSeouLo/lib_plugin/script_interpreter_logging.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/script_interpreter_logging.mli rename to src/proto_023_PtSeouLo/lib_plugin/script_interpreter_logging.mli diff --git a/src/proto_023_PtSEouLo/lib_plugin/services_registration.ml b/src/proto_023_PtSeouLo/lib_plugin/services_registration.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/services_registration.ml rename to src/proto_023_PtSeouLo/lib_plugin/services_registration.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/services_registration.mli b/src/proto_023_PtSeouLo/lib_plugin/services_registration.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/services_registration.mli rename to src/proto_023_PtSeouLo/lib_plugin/services_registration.mli diff --git a/src/proto_023_PtSEouLo/lib_plugin/services_registration_plugin.ml b/src/proto_023_PtSeouLo/lib_plugin/services_registration_plugin.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/services_registration_plugin.ml rename to src/proto_023_PtSeouLo/lib_plugin/services_registration_plugin.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/shell_helpers.ml b/src/proto_023_PtSeouLo/lib_plugin/shell_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/shell_helpers.ml rename to src/proto_023_PtSeouLo/lib_plugin/shell_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/test/dune b/src/proto_023_PtSeouLo/lib_plugin/test/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/test/dune rename to src/proto_023_PtSeouLo/lib_plugin/test/dune diff --git a/src/proto_023_PtSEouLo/lib_plugin/test/helpers.ml b/src/proto_023_PtSeouLo/lib_plugin/test/helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/test/helpers.ml rename to src/proto_023_PtSeouLo/lib_plugin/test/helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/test/test_conflict_handler.ml b/src/proto_023_PtSeouLo/lib_plugin/test/test_conflict_handler.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/test/test_conflict_handler.ml rename to src/proto_023_PtSeouLo/lib_plugin/test/test_conflict_handler.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/test/test_consensus_filter.ml b/src/proto_023_PtSeouLo/lib_plugin/test/test_consensus_filter.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/test/test_consensus_filter.ml rename to src/proto_023_PtSeouLo/lib_plugin/test/test_consensus_filter.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/test/test_fee_needed_to_overtake.ml b/src/proto_023_PtSeouLo/lib_plugin/test/test_fee_needed_to_overtake.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/test/test_fee_needed_to_overtake.ml rename to src/proto_023_PtSeouLo/lib_plugin/test/test_fee_needed_to_overtake.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/test/test_fee_needed_to_replace_by_fee.ml b/src/proto_023_PtSeouLo/lib_plugin/test/test_fee_needed_to_replace_by_fee.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/test/test_fee_needed_to_replace_by_fee.ml rename to src/proto_023_PtSeouLo/lib_plugin/test/test_fee_needed_to_replace_by_fee.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/view_helpers.ml b/src/proto_023_PtSeouLo/lib_plugin/view_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/view_helpers.ml rename to src/proto_023_PtSeouLo/lib_plugin/view_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/voting_services.ml b/src/proto_023_PtSeouLo/lib_plugin/voting_services.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/voting_services.ml rename to src/proto_023_PtSeouLo/lib_plugin/voting_services.ml diff --git a/src/proto_023_PtSEouLo/lib_plugin/voting_services.mli b/src/proto_023_PtSeouLo/lib_plugin/voting_services.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_plugin/voting_services.mli rename to src/proto_023_PtSeouLo/lib_plugin/voting_services.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/.ocamlformat-ignore b/src/proto_023_PtSeouLo/lib_protocol/.ocamlformat-ignore similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/.ocamlformat-ignore rename to src/proto_023_PtSeouLo/lib_protocol/.ocamlformat-ignore diff --git a/src/proto_023_PtSEouLo/lib_protocol/TEZOS_PROTOCOL b/src/proto_023_PtSeouLo/lib_protocol/TEZOS_PROTOCOL similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/TEZOS_PROTOCOL rename to src/proto_023_PtSeouLo/lib_protocol/TEZOS_PROTOCOL diff --git a/src/proto_023_PtSEouLo/lib_protocol/adaptive_issuance_costs.ml b/src/proto_023_PtSeouLo/lib_protocol/adaptive_issuance_costs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/adaptive_issuance_costs.ml rename to src/proto_023_PtSeouLo/lib_protocol/adaptive_issuance_costs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/adaptive_issuance_costs.mli b/src/proto_023_PtSeouLo/lib_protocol/adaptive_issuance_costs.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/adaptive_issuance_costs.mli rename to src/proto_023_PtSeouLo/lib_protocol/adaptive_issuance_costs.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/adaptive_issuance_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/adaptive_issuance_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/adaptive_issuance_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/adaptive_issuance_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/adaptive_issuance_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/adaptive_issuance_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/adaptive_issuance_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/adaptive_issuance_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/alpha_context.ml b/src/proto_023_PtSeouLo/lib_protocol/alpha_context.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/alpha_context.ml rename to src/proto_023_PtSeouLo/lib_protocol/alpha_context.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/alpha_context.mli b/src/proto_023_PtSeouLo/lib_protocol/alpha_context.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/alpha_context.mli rename to src/proto_023_PtSeouLo/lib_protocol/alpha_context.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/already_denounced_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/already_denounced_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/already_denounced_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/already_denounced_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/already_denounced_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/already_denounced_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/already_denounced_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/already_denounced_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/amendment.ml b/src/proto_023_PtSeouLo/lib_protocol/amendment.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/amendment.ml rename to src/proto_023_PtSeouLo/lib_protocol/amendment.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/amendment.mli b/src/proto_023_PtSeouLo/lib_protocol/amendment.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/amendment.mli rename to src/proto_023_PtSeouLo/lib_protocol/amendment.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/apply.ml b/src/proto_023_PtSeouLo/lib_protocol/apply.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/apply.ml rename to src/proto_023_PtSeouLo/lib_protocol/apply.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/apply.mli b/src/proto_023_PtSeouLo/lib_protocol/apply.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/apply.mli rename to src/proto_023_PtSeouLo/lib_protocol/apply.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/apply_internal_results.ml b/src/proto_023_PtSeouLo/lib_protocol/apply_internal_results.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/apply_internal_results.ml rename to src/proto_023_PtSeouLo/lib_protocol/apply_internal_results.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/apply_internal_results.mli b/src/proto_023_PtSeouLo/lib_protocol/apply_internal_results.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/apply_internal_results.mli rename to src/proto_023_PtSeouLo/lib_protocol/apply_internal_results.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/apply_operation_result.ml b/src/proto_023_PtSeouLo/lib_protocol/apply_operation_result.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/apply_operation_result.ml rename to src/proto_023_PtSeouLo/lib_protocol/apply_operation_result.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/apply_operation_result.mli b/src/proto_023_PtSeouLo/lib_protocol/apply_operation_result.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/apply_operation_result.mli rename to src/proto_023_PtSeouLo/lib_protocol/apply_operation_result.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/apply_results.ml b/src/proto_023_PtSeouLo/lib_protocol/apply_results.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/apply_results.ml rename to src/proto_023_PtSeouLo/lib_protocol/apply_results.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/apply_results.mli b/src/proto_023_PtSeouLo/lib_protocol/apply_results.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/apply_results.mli rename to src/proto_023_PtSeouLo/lib_protocol/apply_results.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/baking.ml b/src/proto_023_PtSeouLo/lib_protocol/baking.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/baking.ml rename to src/proto_023_PtSeouLo/lib_protocol/baking.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/baking.mli b/src/proto_023_PtSeouLo/lib_protocol/baking.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/baking.mli rename to src/proto_023_PtSeouLo/lib_protocol/baking.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/blinded_public_key_hash.ml b/src/proto_023_PtSeouLo/lib_protocol/blinded_public_key_hash.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/blinded_public_key_hash.ml rename to src/proto_023_PtSeouLo/lib_protocol/blinded_public_key_hash.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/blinded_public_key_hash.mli b/src/proto_023_PtSeouLo/lib_protocol/blinded_public_key_hash.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/blinded_public_key_hash.mli rename to src/proto_023_PtSeouLo/lib_protocol/blinded_public_key_hash.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/block_header_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/block_header_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/block_header_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/block_header_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/block_header_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/block_header_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/block_header_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/block_header_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/block_payload_hash.ml b/src/proto_023_PtSeouLo/lib_protocol/block_payload_hash.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/block_payload_hash.ml rename to src/proto_023_PtSeouLo/lib_protocol/block_payload_hash.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/block_payload_hash.mli b/src/proto_023_PtSeouLo/lib_protocol/block_payload_hash.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/block_payload_hash.mli rename to src/proto_023_PtSeouLo/lib_protocol/block_payload_hash.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/block_payload_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/block_payload_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/block_payload_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/block_payload_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/block_payload_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/block_payload_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/block_payload_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/block_payload_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/bond_id_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/bond_id_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/bond_id_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/bond_id_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/bond_id_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/bond_id_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/bond_id_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/bond_id_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/bootstrap_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/bootstrap_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/bootstrap_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/bootstrap_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/bootstrap_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/bootstrap_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/bootstrap_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/bootstrap_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/bounded_history_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/bounded_history_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/bounded_history_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/bounded_history_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/bounded_history_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/bounded_history_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/bounded_history_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/bounded_history_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/cache_memory_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/cache_memory_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/cache_memory_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/cache_memory_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/cache_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/cache_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/cache_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/cache_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/cache_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/cache_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/cache_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/cache_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/cache_repr_costs.ml b/src/proto_023_PtSeouLo/lib_protocol/cache_repr_costs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/cache_repr_costs.ml rename to src/proto_023_PtSeouLo/lib_protocol/cache_repr_costs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/cache_repr_costs_generated.ml b/src/proto_023_PtSeouLo/lib_protocol/cache_repr_costs_generated.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/cache_repr_costs_generated.ml rename to src/proto_023_PtSeouLo/lib_protocol/cache_repr_costs_generated.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/carbonated_map.ml b/src/proto_023_PtSeouLo/lib_protocol/carbonated_map.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/carbonated_map.ml rename to src/proto_023_PtSeouLo/lib_protocol/carbonated_map.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/carbonated_map.mli b/src/proto_023_PtSeouLo/lib_protocol/carbonated_map.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/carbonated_map.mli rename to src/proto_023_PtSeouLo/lib_protocol/carbonated_map.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/carbonated_map_costs.ml b/src/proto_023_PtSeouLo/lib_protocol/carbonated_map_costs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/carbonated_map_costs.ml rename to src/proto_023_PtSeouLo/lib_protocol/carbonated_map_costs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/carbonated_map_costs.mli b/src/proto_023_PtSeouLo/lib_protocol/carbonated_map_costs.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/carbonated_map_costs.mli rename to src/proto_023_PtSeouLo/lib_protocol/carbonated_map_costs.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/carbonated_map_costs_generated.ml b/src/proto_023_PtSeouLo/lib_protocol/carbonated_map_costs_generated.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/carbonated_map_costs_generated.ml rename to src/proto_023_PtSeouLo/lib_protocol/carbonated_map_costs_generated.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/commitment_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/commitment_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/commitment_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/commitment_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/commitment_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/commitment_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/commitment_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/commitment_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/commitment_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/commitment_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/commitment_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/commitment_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/commitment_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/commitment_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/commitment_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/commitment_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/constants_parametric_previous_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/constants_parametric_previous_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/constants_parametric_previous_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/constants_parametric_previous_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/constants_parametric_previous_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/constants_parametric_previous_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/constants_parametric_previous_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/constants_parametric_previous_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/constants_parametric_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/constants_parametric_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/constants_parametric_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/constants_parametric_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/constants_parametric_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/constants_parametric_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/constants_parametric_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/constants_parametric_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/constants_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/constants_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/constants_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/constants_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/constants_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/constants_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/constants_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/constants_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/constants_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/constants_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/constants_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/constants_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/constants_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/constants_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/constants_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/constants_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/context_binary_proof.ml b/src/proto_023_PtSeouLo/lib_protocol/context_binary_proof.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/context_binary_proof.ml rename to src/proto_023_PtSeouLo/lib_protocol/context_binary_proof.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/context_binary_proof.mli b/src/proto_023_PtSeouLo/lib_protocol/context_binary_proof.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/context_binary_proof.mli rename to src/proto_023_PtSeouLo/lib_protocol/context_binary_proof.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/contract_delegate_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/contract_delegate_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contract_delegate_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/contract_delegate_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/contract_delegate_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/contract_delegate_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contract_delegate_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/contract_delegate_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/contract_hash.ml b/src/proto_023_PtSeouLo/lib_protocol/contract_hash.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contract_hash.ml rename to src/proto_023_PtSeouLo/lib_protocol/contract_hash.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/contract_hash.mli b/src/proto_023_PtSeouLo/lib_protocol/contract_hash.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contract_hash.mli rename to src/proto_023_PtSeouLo/lib_protocol/contract_hash.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/contract_manager_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/contract_manager_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contract_manager_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/contract_manager_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/contract_manager_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/contract_manager_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contract_manager_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/contract_manager_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/contract_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/contract_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contract_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/contract_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/contract_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/contract_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contract_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/contract_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/contract_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/contract_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contract_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/contract_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/contract_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/contract_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contract_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/contract_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/contracts/cpmm.bin b/src/proto_023_PtSeouLo/lib_protocol/contracts/cpmm.bin similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contracts/cpmm.bin rename to src/proto_023_PtSeouLo/lib_protocol/contracts/cpmm.bin diff --git a/src/proto_023_PtSEouLo/lib_protocol/contracts/cpmm.mligo b/src/proto_023_PtSeouLo/lib_protocol/contracts/cpmm.mligo similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contracts/cpmm.mligo rename to src/proto_023_PtSeouLo/lib_protocol/contracts/cpmm.mligo diff --git a/src/proto_023_PtSEouLo/lib_protocol/contracts/cpmm.tz b/src/proto_023_PtSeouLo/lib_protocol/contracts/cpmm.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contracts/cpmm.tz rename to src/proto_023_PtSeouLo/lib_protocol/contracts/cpmm.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/contracts/lqt.bin b/src/proto_023_PtSeouLo/lib_protocol/contracts/lqt.bin similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contracts/lqt.bin rename to src/proto_023_PtSeouLo/lib_protocol/contracts/lqt.bin diff --git a/src/proto_023_PtSEouLo/lib_protocol/contracts/lqt.mligo b/src/proto_023_PtSeouLo/lib_protocol/contracts/lqt.mligo similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contracts/lqt.mligo rename to src/proto_023_PtSeouLo/lib_protocol/contracts/lqt.mligo diff --git a/src/proto_023_PtSEouLo/lib_protocol/contracts/lqt.tz b/src/proto_023_PtSeouLo/lib_protocol/contracts/lqt.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contracts/lqt.tz rename to src/proto_023_PtSeouLo/lib_protocol/contracts/lqt.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/contracts/timelock_flip.tz b/src/proto_023_PtSeouLo/lib_protocol/contracts/timelock_flip.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/contracts/timelock_flip.tz rename to src/proto_023_PtSeouLo/lib_protocol/contracts/timelock_flip.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/cycle_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/cycle_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/cycle_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/cycle_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/cycle_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/cycle_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/cycle_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/cycle_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/cycle_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/cycle_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/cycle_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/cycle_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/cycle_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/cycle_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/cycle_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/cycle_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_already_denounced_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/dal_already_denounced_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_already_denounced_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/dal_already_denounced_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_already_denounced_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/dal_already_denounced_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_already_denounced_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/dal_already_denounced_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_apply.ml b/src/proto_023_PtSeouLo/lib_protocol/dal_apply.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_apply.ml rename to src/proto_023_PtSeouLo/lib_protocol/dal_apply.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_apply.mli b/src/proto_023_PtSeouLo/lib_protocol/dal_apply.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_apply.mli rename to src/proto_023_PtSeouLo/lib_protocol/dal_apply.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_attestation_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/dal_attestation_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_attestation_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/dal_attestation_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_attestation_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/dal_attestation_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_attestation_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/dal_attestation_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_costs.ml b/src/proto_023_PtSeouLo/lib_protocol/dal_costs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_costs.ml rename to src/proto_023_PtSeouLo/lib_protocol/dal_costs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_costs_generated.ml b/src/proto_023_PtSeouLo/lib_protocol/dal_costs_generated.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_costs_generated.ml rename to src/proto_023_PtSeouLo/lib_protocol/dal_costs_generated.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_costs_generated.mli b/src/proto_023_PtSeouLo/lib_protocol/dal_costs_generated.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_costs_generated.mli rename to src/proto_023_PtSeouLo/lib_protocol/dal_costs_generated.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_errors_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/dal_errors_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_errors_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/dal_errors_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_operations_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/dal_operations_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_operations_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/dal_operations_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_operations_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/dal_operations_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_operations_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/dal_operations_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_slot_index_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/dal_slot_index_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_slot_index_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/dal_slot_index_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_slot_index_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/dal_slot_index_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_slot_index_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/dal_slot_index_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_slot_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/dal_slot_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_slot_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/dal_slot_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_slot_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/dal_slot_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_slot_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/dal_slot_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_slot_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/dal_slot_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_slot_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/dal_slot_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/dal_slot_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/dal_slot_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dal_slot_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/dal_slot_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_activation_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/delegate_activation_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_activation_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/delegate_activation_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_activation_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/delegate_activation_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_activation_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/delegate_activation_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_consensus_key.ml b/src/proto_023_PtSeouLo/lib_protocol/delegate_consensus_key.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_consensus_key.ml rename to src/proto_023_PtSeouLo/lib_protocol/delegate_consensus_key.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_consensus_key.mli b/src/proto_023_PtSeouLo/lib_protocol/delegate_consensus_key.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_consensus_key.mli rename to src/proto_023_PtSeouLo/lib_protocol/delegate_consensus_key.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_cycles.ml b/src/proto_023_PtSeouLo/lib_protocol/delegate_cycles.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_cycles.ml rename to src/proto_023_PtSeouLo/lib_protocol/delegate_cycles.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_cycles.mli b/src/proto_023_PtSeouLo/lib_protocol/delegate_cycles.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_cycles.mli rename to src/proto_023_PtSeouLo/lib_protocol/delegate_cycles.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_missed_attestations_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/delegate_missed_attestations_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_missed_attestations_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/delegate_missed_attestations_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_missed_attestations_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/delegate_missed_attestations_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_missed_attestations_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/delegate_missed_attestations_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_rewards.ml b/src/proto_023_PtSeouLo/lib_protocol/delegate_rewards.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_rewards.ml rename to src/proto_023_PtSeouLo/lib_protocol/delegate_rewards.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_rewards.mli b/src/proto_023_PtSeouLo/lib_protocol/delegate_rewards.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_rewards.mli rename to src/proto_023_PtSeouLo/lib_protocol/delegate_rewards.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_sampler.ml b/src/proto_023_PtSeouLo/lib_protocol/delegate_sampler.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_sampler.ml rename to src/proto_023_PtSeouLo/lib_protocol/delegate_sampler.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_sampler.mli b/src/proto_023_PtSeouLo/lib_protocol/delegate_sampler.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_sampler.mli rename to src/proto_023_PtSeouLo/lib_protocol/delegate_sampler.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_slashed_deposits_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/delegate_slashed_deposits_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_slashed_deposits_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/delegate_slashed_deposits_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_slashed_deposits_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/delegate_slashed_deposits_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_slashed_deposits_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/delegate_slashed_deposits_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_staking_parameters.ml b/src/proto_023_PtSeouLo/lib_protocol/delegate_staking_parameters.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_staking_parameters.ml rename to src/proto_023_PtSeouLo/lib_protocol/delegate_staking_parameters.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_staking_parameters.mli b/src/proto_023_PtSeouLo/lib_protocol/delegate_staking_parameters.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_staking_parameters.mli rename to src/proto_023_PtSeouLo/lib_protocol/delegate_staking_parameters.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/delegate_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/delegate_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/delegate_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/delegate_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/delegate_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/delegate_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/denunciations_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/denunciations_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/denunciations_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/denunciations_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/denunciations_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/denunciations_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/denunciations_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/denunciations_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/dependent_bool.ml b/src/proto_023_PtSeouLo/lib_protocol/dependent_bool.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dependent_bool.ml rename to src/proto_023_PtSeouLo/lib_protocol/dependent_bool.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/dependent_bool.mli b/src/proto_023_PtSeouLo/lib_protocol/dependent_bool.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dependent_bool.mli rename to src/proto_023_PtSeouLo/lib_protocol/dependent_bool.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/deposits_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/deposits_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/deposits_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/deposits_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/deposits_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/deposits_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/deposits_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/deposits_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/destination_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/destination_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/destination_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/destination_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/destination_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/destination_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/destination_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/destination_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/destination_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/destination_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/destination_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/destination_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/destination_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/destination_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/destination_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/destination_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/dune b/src/proto_023_PtSeouLo/lib_protocol/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/dune rename to src/proto_023_PtSeouLo/lib_protocol/dune diff --git a/src/proto_023_PtSEouLo/lib_protocol/entrypoint_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/entrypoint_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/entrypoint_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/entrypoint_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/entrypoint_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/entrypoint_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/entrypoint_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/entrypoint_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/fees_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/fees_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/fees_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/fees_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/fees_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/fees_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/fees_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/fees_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/fitness_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/fitness_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/fitness_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/fitness_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/fitness_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/fitness_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/fitness_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/fitness_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/fixed_point_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/fixed_point_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/fixed_point_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/fixed_point_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/fixed_point_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/fixed_point_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/fixed_point_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/fixed_point_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/forbidden_delegates_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/forbidden_delegates_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/forbidden_delegates_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/forbidden_delegates_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/forbidden_delegates_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/forbidden_delegates_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/forbidden_delegates_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/forbidden_delegates_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/frozen_staker_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/frozen_staker_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/frozen_staker_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/frozen_staker_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/frozen_staker_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/frozen_staker_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/frozen_staker_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/frozen_staker_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/full_staking_balance_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/full_staking_balance_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/full_staking_balance_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/full_staking_balance_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/full_staking_balance_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/full_staking_balance_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/full_staking_balance_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/full_staking_balance_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/gas_comparable_input_size.ml b/src/proto_023_PtSeouLo/lib_protocol/gas_comparable_input_size.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/gas_comparable_input_size.ml rename to src/proto_023_PtSeouLo/lib_protocol/gas_comparable_input_size.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/gas_comparable_input_size.mli b/src/proto_023_PtSeouLo/lib_protocol/gas_comparable_input_size.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/gas_comparable_input_size.mli rename to src/proto_023_PtSeouLo/lib_protocol/gas_comparable_input_size.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/gas_input_size.ml b/src/proto_023_PtSeouLo/lib_protocol/gas_input_size.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/gas_input_size.ml rename to src/proto_023_PtSeouLo/lib_protocol/gas_input_size.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/gas_input_size.mli b/src/proto_023_PtSeouLo/lib_protocol/gas_input_size.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/gas_input_size.mli rename to src/proto_023_PtSeouLo/lib_protocol/gas_input_size.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/gas_limit_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/gas_limit_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/gas_limit_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/gas_limit_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/gas_limit_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/gas_limit_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/gas_limit_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/gas_limit_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/gas_monad.ml b/src/proto_023_PtSeouLo/lib_protocol/gas_monad.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/gas_monad.ml rename to src/proto_023_PtSeouLo/lib_protocol/gas_monad.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/gas_monad.mli b/src/proto_023_PtSeouLo/lib_protocol/gas_monad.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/gas_monad.mli rename to src/proto_023_PtSeouLo/lib_protocol/gas_monad.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/gas_parameters.json b/src/proto_023_PtSeouLo/lib_protocol/gas_parameters.json similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/gas_parameters.json rename to src/proto_023_PtSeouLo/lib_protocol/gas_parameters.json diff --git a/src/proto_023_PtSEouLo/lib_protocol/global_constants_costs.ml b/src/proto_023_PtSeouLo/lib_protocol/global_constants_costs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/global_constants_costs.ml rename to src/proto_023_PtSeouLo/lib_protocol/global_constants_costs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/global_constants_costs.mli b/src/proto_023_PtSeouLo/lib_protocol/global_constants_costs.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/global_constants_costs.mli rename to src/proto_023_PtSeouLo/lib_protocol/global_constants_costs.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/global_constants_costs_generated.ml b/src/proto_023_PtSeouLo/lib_protocol/global_constants_costs_generated.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/global_constants_costs_generated.ml rename to src/proto_023_PtSeouLo/lib_protocol/global_constants_costs_generated.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/global_constants_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/global_constants_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/global_constants_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/global_constants_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/global_constants_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/global_constants_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/global_constants_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/global_constants_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/indexable.ml b/src/proto_023_PtSeouLo/lib_protocol/indexable.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/indexable.ml rename to src/proto_023_PtSeouLo/lib_protocol/indexable.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/indexable.mli b/src/proto_023_PtSeouLo/lib_protocol/indexable.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/indexable.mli rename to src/proto_023_PtSeouLo/lib_protocol/indexable.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/init_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/init_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/init_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/init_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/init_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/init_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/init_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/init_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/issuance_bonus_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/issuance_bonus_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/issuance_bonus_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/issuance_bonus_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/issuance_bonus_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/issuance_bonus_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/issuance_bonus_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/issuance_bonus_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/lazy_storage_diff.ml b/src/proto_023_PtSeouLo/lib_protocol/lazy_storage_diff.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/lazy_storage_diff.ml rename to src/proto_023_PtSeouLo/lib_protocol/lazy_storage_diff.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/lazy_storage_diff.mli b/src/proto_023_PtSeouLo/lib_protocol/lazy_storage_diff.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/lazy_storage_diff.mli rename to src/proto_023_PtSeouLo/lib_protocol/lazy_storage_diff.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/lazy_storage_kind.ml b/src/proto_023_PtSeouLo/lib_protocol/lazy_storage_kind.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/lazy_storage_kind.ml rename to src/proto_023_PtSeouLo/lib_protocol/lazy_storage_kind.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/lazy_storage_kind.mli b/src/proto_023_PtSeouLo/lib_protocol/lazy_storage_kind.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/lazy_storage_kind.mli rename to src/proto_023_PtSeouLo/lib_protocol/lazy_storage_kind.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/legacy_script_patches.ml b/src/proto_023_PtSeouLo/lib_protocol/legacy_script_patches.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/legacy_script_patches.ml rename to src/proto_023_PtSeouLo/lib_protocol/legacy_script_patches.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/level_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/level_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/level_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/level_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/level_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/level_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/level_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/level_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/level_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/level_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/level_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/level_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/level_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/level_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/level_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/level_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/liquidity_baking_cpmm.ml b/src/proto_023_PtSeouLo/lib_protocol/liquidity_baking_cpmm.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/liquidity_baking_cpmm.ml rename to src/proto_023_PtSeouLo/lib_protocol/liquidity_baking_cpmm.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/liquidity_baking_lqt.ml b/src/proto_023_PtSeouLo/lib_protocol/liquidity_baking_lqt.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/liquidity_baking_lqt.ml rename to src/proto_023_PtSeouLo/lib_protocol/liquidity_baking_lqt.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/liquidity_baking_migration.ml b/src/proto_023_PtSeouLo/lib_protocol/liquidity_baking_migration.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/liquidity_baking_migration.ml rename to src/proto_023_PtSeouLo/lib_protocol/liquidity_baking_migration.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/liquidity_baking_migration.mli b/src/proto_023_PtSeouLo/lib_protocol/liquidity_baking_migration.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/liquidity_baking_migration.mli rename to src/proto_023_PtSeouLo/lib_protocol/liquidity_baking_migration.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/liquidity_baking_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/liquidity_baking_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/liquidity_baking_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/liquidity_baking_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/liquidity_baking_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/liquidity_baking_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/liquidity_baking_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/liquidity_baking_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/local_gas_counter.ml b/src/proto_023_PtSeouLo/lib_protocol/local_gas_counter.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/local_gas_counter.ml rename to src/proto_023_PtSeouLo/lib_protocol/local_gas_counter.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/local_gas_counter.mli b/src/proto_023_PtSeouLo/lib_protocol/local_gas_counter.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/local_gas_counter.mli rename to src/proto_023_PtSeouLo/lib_protocol/local_gas_counter.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/main.ml b/src/proto_023_PtSeouLo/lib_protocol/main.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/main.ml rename to src/proto_023_PtSeouLo/lib_protocol/main.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/main.mli b/src/proto_023_PtSeouLo/lib_protocol/main.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/main.mli rename to src/proto_023_PtSeouLo/lib_protocol/main.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/manager_counter_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/manager_counter_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/manager_counter_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/manager_counter_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/manager_counter_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/manager_counter_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/manager_counter_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/manager_counter_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/manager_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/manager_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/manager_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/manager_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/manager_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/manager_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/manager_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/manager_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/mempool_validation.ml b/src/proto_023_PtSeouLo/lib_protocol/mempool_validation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/mempool_validation.ml rename to src/proto_023_PtSeouLo/lib_protocol/mempool_validation.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/mempool_validation.mli b/src/proto_023_PtSeouLo/lib_protocol/mempool_validation.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/mempool_validation.mli rename to src/proto_023_PtSeouLo/lib_protocol/mempool_validation.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/merkle_list.ml b/src/proto_023_PtSeouLo/lib_protocol/merkle_list.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/merkle_list.ml rename to src/proto_023_PtSeouLo/lib_protocol/merkle_list.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/merkle_list.mli b/src/proto_023_PtSeouLo/lib_protocol/merkle_list.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/merkle_list.mli rename to src/proto_023_PtSeouLo/lib_protocol/merkle_list.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/michelson_v1_gas.ml b/src/proto_023_PtSeouLo/lib_protocol/michelson_v1_gas.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/michelson_v1_gas.ml rename to src/proto_023_PtSeouLo/lib_protocol/michelson_v1_gas.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/michelson_v1_gas.mli b/src/proto_023_PtSeouLo/lib_protocol/michelson_v1_gas.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/michelson_v1_gas.mli rename to src/proto_023_PtSeouLo/lib_protocol/michelson_v1_gas.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/michelson_v1_gas_costs.ml b/src/proto_023_PtSeouLo/lib_protocol/michelson_v1_gas_costs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/michelson_v1_gas_costs.ml rename to src/proto_023_PtSeouLo/lib_protocol/michelson_v1_gas_costs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/michelson_v1_gas_costs_generated.ml b/src/proto_023_PtSeouLo/lib_protocol/michelson_v1_gas_costs_generated.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/michelson_v1_gas_costs_generated.ml rename to src/proto_023_PtSeouLo/lib_protocol/michelson_v1_gas_costs_generated.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/michelson_v1_primitives.ml b/src/proto_023_PtSeouLo/lib_protocol/michelson_v1_primitives.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/michelson_v1_primitives.ml rename to src/proto_023_PtSeouLo/lib_protocol/michelson_v1_primitives.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/michelson_v1_primitives.mli b/src/proto_023_PtSeouLo/lib_protocol/michelson_v1_primitives.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/michelson_v1_primitives.mli rename to src/proto_023_PtSeouLo/lib_protocol/michelson_v1_primitives.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/migration_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/migration_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/migration_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/migration_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/migration_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/migration_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/migration_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/migration_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/misbehaviour_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/misbehaviour_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/misbehaviour_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/misbehaviour_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/misbehaviour_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/misbehaviour_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/misbehaviour_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/misbehaviour_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/misc.ml b/src/proto_023_PtSeouLo/lib_protocol/misc.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/misc.ml rename to src/proto_023_PtSeouLo/lib_protocol/misc.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/misc.mli b/src/proto_023_PtSeouLo/lib_protocol/misc.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/misc.mli rename to src/proto_023_PtSeouLo/lib_protocol/misc.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/non_empty_string.ml b/src/proto_023_PtSeouLo/lib_protocol/non_empty_string.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/non_empty_string.ml rename to src/proto_023_PtSeouLo/lib_protocol/non_empty_string.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/non_empty_string.mli b/src/proto_023_PtSeouLo/lib_protocol/non_empty_string.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/non_empty_string.mli rename to src/proto_023_PtSeouLo/lib_protocol/non_empty_string.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/nonce_hash.ml b/src/proto_023_PtSeouLo/lib_protocol/nonce_hash.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/nonce_hash.ml rename to src/proto_023_PtSeouLo/lib_protocol/nonce_hash.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/nonce_hash.mli b/src/proto_023_PtSeouLo/lib_protocol/nonce_hash.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/nonce_hash.mli rename to src/proto_023_PtSeouLo/lib_protocol/nonce_hash.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/nonce_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/nonce_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/nonce_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/nonce_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/nonce_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/nonce_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/nonce_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/nonce_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/operation_costs.ml b/src/proto_023_PtSeouLo/lib_protocol/operation_costs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/operation_costs.ml rename to src/proto_023_PtSeouLo/lib_protocol/operation_costs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/operation_costs.mli b/src/proto_023_PtSeouLo/lib_protocol/operation_costs.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/operation_costs.mli rename to src/proto_023_PtSeouLo/lib_protocol/operation_costs.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/operation_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/operation_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/operation_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/operation_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/operation_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/operation_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/operation_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/operation_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/origination_nonce.ml b/src/proto_023_PtSeouLo/lib_protocol/origination_nonce.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/origination_nonce.ml rename to src/proto_023_PtSeouLo/lib_protocol/origination_nonce.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/origination_nonce.mli b/src/proto_023_PtSeouLo/lib_protocol/origination_nonce.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/origination_nonce.mli rename to src/proto_023_PtSeouLo/lib_protocol/origination_nonce.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/parameters_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/parameters_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/parameters_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/parameters_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/parameters_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/parameters_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/parameters_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/parameters_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/path_encoding.ml b/src/proto_023_PtSeouLo/lib_protocol/path_encoding.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/path_encoding.ml rename to src/proto_023_PtSeouLo/lib_protocol/path_encoding.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/path_encoding.mli b/src/proto_023_PtSeouLo/lib_protocol/path_encoding.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/path_encoding.mli rename to src/proto_023_PtSeouLo/lib_protocol/path_encoding.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/pending_denunciations_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/pending_denunciations_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/pending_denunciations_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/pending_denunciations_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/pending_denunciations_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/pending_denunciations_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/pending_denunciations_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/pending_denunciations_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/per_block_votes_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/per_block_votes_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/per_block_votes_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/per_block_votes_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/per_block_votes_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/per_block_votes_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/per_block_votes_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/per_block_votes_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/percentage.ml b/src/proto_023_PtSeouLo/lib_protocol/percentage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/percentage.ml rename to src/proto_023_PtSeouLo/lib_protocol/percentage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/percentage.mli b/src/proto_023_PtSeouLo/lib_protocol/percentage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/percentage.mli rename to src/proto_023_PtSeouLo/lib_protocol/percentage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/period_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/period_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/period_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/period_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/period_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/period_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/period_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/period_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/ratio_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/ratio_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ratio_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/ratio_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ratio_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/ratio_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ratio_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/ratio_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/raw_context.ml b/src/proto_023_PtSeouLo/lib_protocol/raw_context.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/raw_context.ml rename to src/proto_023_PtSeouLo/lib_protocol/raw_context.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/raw_context.mli b/src/proto_023_PtSeouLo/lib_protocol/raw_context.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/raw_context.mli rename to src/proto_023_PtSeouLo/lib_protocol/raw_context.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/raw_context_intf.ml b/src/proto_023_PtSeouLo/lib_protocol/raw_context_intf.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/raw_context_intf.ml rename to src/proto_023_PtSeouLo/lib_protocol/raw_context_intf.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/raw_level_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/raw_level_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/raw_level_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/raw_level_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/raw_level_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/raw_level_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/raw_level_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/raw_level_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/receipt_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/receipt_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/receipt_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/receipt_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/receipt_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/receipt_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/receipt_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/receipt_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/round_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/round_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/round_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/round_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/round_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/round_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/round_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/round_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sampler.ml b/src/proto_023_PtSeouLo/lib_protocol/sampler.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sampler.ml rename to src/proto_023_PtSeouLo/lib_protocol/sampler.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sampler.mli b/src/proto_023_PtSeouLo/lib_protocol/sampler.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sampler.mli rename to src/proto_023_PtSeouLo/lib_protocol/sampler.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sapling_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/sapling_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sapling_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/sapling_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sapling_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/sapling_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sapling_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/sapling_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sapling_storage_costs.ml b/src/proto_023_PtSeouLo/lib_protocol/sapling_storage_costs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sapling_storage_costs.ml rename to src/proto_023_PtSeouLo/lib_protocol/sapling_storage_costs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sapling_storage_costs_generated.ml b/src/proto_023_PtSeouLo/lib_protocol/sapling_storage_costs_generated.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sapling_storage_costs_generated.ml rename to src/proto_023_PtSeouLo/lib_protocol/sapling_storage_costs_generated.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sapling_validator.ml b/src/proto_023_PtSeouLo/lib_protocol/sapling_validator.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sapling_validator.ml rename to src/proto_023_PtSeouLo/lib_protocol/sapling_validator.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/saturation_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/saturation_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/saturation_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/saturation_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/saturation_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/saturation_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/saturation_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/saturation_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_PVM_sig.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_PVM_sig.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_PVM_sig.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_PVM_sig.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_arith.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_arith.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_arith.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_arith.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_arith.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_arith.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_arith.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_arith.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_commitment_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_commitment_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_commitment_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_commitment_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_commitment_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_commitment_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_commitment_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_commitment_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_commitment_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_commitment_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_commitment_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_commitment_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_commitment_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_commitment_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_commitment_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_commitment_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_costs.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_costs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_costs.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_costs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_costs.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_costs.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_costs.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_costs.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_costs_generated.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_costs_generated.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_costs_generated.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_costs_generated.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_dal_parameters_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_dal_parameters_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_dal_parameters_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_dal_parameters_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_dal_parameters_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_dal_parameters_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_dal_parameters_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_dal_parameters_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_data_version_sig.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_data_version_sig.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_data_version_sig.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_data_version_sig.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_dissection_chunk_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_dissection_chunk_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_dissection_chunk_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_dissection_chunk_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_dissection_chunk_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_dissection_chunk_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_dissection_chunk_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_dissection_chunk_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_errors.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_errors.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_errors.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_errors.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_game_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_game_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_game_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_game_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_game_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_game_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_game_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_game_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_inbox_merkelized_payload_hashes_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_inbox_merkelized_payload_hashes_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_inbox_merkelized_payload_hashes_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_inbox_merkelized_payload_hashes_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_inbox_merkelized_payload_hashes_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_inbox_merkelized_payload_hashes_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_inbox_merkelized_payload_hashes_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_inbox_merkelized_payload_hashes_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_inbox_message_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_inbox_message_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_inbox_message_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_inbox_message_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_inbox_message_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_inbox_message_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_inbox_message_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_inbox_message_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_inbox_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_inbox_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_inbox_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_inbox_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_inbox_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_inbox_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_inbox_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_inbox_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_inbox_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_inbox_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_inbox_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_inbox_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_inbox_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_inbox_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_inbox_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_inbox_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_management_protocol.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_management_protocol.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_management_protocol.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_management_protocol.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_management_protocol.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_management_protocol.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_management_protocol.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_management_protocol.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_metadata_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_metadata_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_metadata_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_metadata_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_metadata_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_metadata_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_metadata_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_metadata_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_operations.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_operations.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_operations.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_operations.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_operations.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_operations.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_operations.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_operations.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_origination_machine.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_origination_machine.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_origination_machine.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_origination_machine.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_origination_machine.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_origination_machine.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_origination_machine.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_origination_machine.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_outbox_message_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_outbox_message_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_outbox_message_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_outbox_message_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_outbox_message_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_outbox_message_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_outbox_message_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_outbox_message_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_outbox_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_outbox_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_outbox_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_outbox_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_outbox_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_outbox_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_outbox_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_outbox_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_proof_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_proof_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_proof_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_proof_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_proof_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_proof_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_proof_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_proof_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_refutation_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_refutation_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_refutation_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_refutation_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_refutation_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_refutation_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_refutation_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_refutation_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_reveal_hash.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_reveal_hash.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_reveal_hash.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_reveal_hash.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_reveal_hash.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_reveal_hash.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_reveal_hash.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_reveal_hash.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_riscv.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_riscv.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_riscv.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_riscv.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_riscv.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_riscv.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_riscv.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_riscv.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_stake_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_stake_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_stake_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_stake_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_stake_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_stake_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_stake_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_stake_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_staker_index_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_staker_index_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_staker_index_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_staker_index_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_staker_index_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_staker_index_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_staker_index_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_staker_index_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_staker_index_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_staker_index_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_staker_index_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_staker_index_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_staker_index_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_staker_index_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_staker_index_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_staker_index_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_tick_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_tick_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_tick_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_tick_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_tick_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_tick_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_tick_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_tick_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_wasm.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_wasm.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_wasm.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_wasm.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_wasm.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_wasm.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_wasm.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_wasm.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_whitelist_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_whitelist_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_whitelist_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_whitelist_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_whitelist_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_whitelist_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_whitelist_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_whitelist_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_whitelist_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_whitelist_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_whitelist_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_whitelist_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollup_whitelist_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollup_whitelist_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollup_whitelist_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollup_whitelist_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollups.ml b/src/proto_023_PtSeouLo/lib_protocol/sc_rollups.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollups.ml rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollups.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/sc_rollups.mli b/src/proto_023_PtSeouLo/lib_protocol/sc_rollups.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/sc_rollups.mli rename to src/proto_023_PtSeouLo/lib_protocol/sc_rollups.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_big_map.ml b/src/proto_023_PtSeouLo/lib_protocol/script_big_map.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_big_map.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_big_map.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_big_map.mli b/src/proto_023_PtSeouLo/lib_protocol/script_big_map.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_big_map.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_big_map.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_bytes.ml b/src/proto_023_PtSeouLo/lib_protocol/script_bytes.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_bytes.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_bytes.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_bytes.mli b/src/proto_023_PtSeouLo/lib_protocol/script_bytes.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_bytes.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_bytes.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_cache.ml b/src/proto_023_PtSeouLo/lib_protocol/script_cache.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_cache.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_cache.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_cache.mli b/src/proto_023_PtSeouLo/lib_protocol/script_cache.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_cache.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_cache.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_comparable.ml b/src/proto_023_PtSeouLo/lib_protocol/script_comparable.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_comparable.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_comparable.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_comparable.mli b/src/proto_023_PtSeouLo/lib_protocol/script_comparable.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_comparable.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_comparable.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_expr_hash.ml b/src/proto_023_PtSeouLo/lib_protocol/script_expr_hash.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_expr_hash.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_expr_hash.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_expr_hash.mli b/src/proto_023_PtSeouLo/lib_protocol/script_expr_hash.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_expr_hash.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_expr_hash.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_int.ml b/src/proto_023_PtSeouLo/lib_protocol/script_int.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_int.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_int.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_int.mli b/src/proto_023_PtSeouLo/lib_protocol/script_int.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_int.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_int.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_interpreter.ml b/src/proto_023_PtSeouLo/lib_protocol/script_interpreter.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_interpreter.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_interpreter.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_interpreter.mli b/src/proto_023_PtSeouLo/lib_protocol/script_interpreter.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_interpreter.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_interpreter.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_interpreter_defs.ml b/src/proto_023_PtSeouLo/lib_protocol/script_interpreter_defs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_interpreter_defs.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_interpreter_defs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_ir_annot.ml b/src/proto_023_PtSeouLo/lib_protocol/script_ir_annot.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_ir_annot.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_ir_annot.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_ir_annot.mli b/src/proto_023_PtSeouLo/lib_protocol/script_ir_annot.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_ir_annot.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_ir_annot.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_ir_translator.ml b/src/proto_023_PtSeouLo/lib_protocol/script_ir_translator.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_ir_translator.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_ir_translator.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_ir_translator.mli b/src/proto_023_PtSeouLo/lib_protocol/script_ir_translator.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_ir_translator.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_ir_translator.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_ir_translator_config.ml b/src/proto_023_PtSeouLo/lib_protocol/script_ir_translator_config.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_ir_translator_config.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_ir_translator_config.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_ir_unparser.ml b/src/proto_023_PtSeouLo/lib_protocol/script_ir_unparser.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_ir_unparser.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_ir_unparser.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_ir_unparser.mli b/src/proto_023_PtSeouLo/lib_protocol/script_ir_unparser.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_ir_unparser.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_ir_unparser.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_list.ml b/src/proto_023_PtSeouLo/lib_protocol/script_list.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_list.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_list.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_list.mli b/src/proto_023_PtSeouLo/lib_protocol/script_list.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_list.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_list.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_map.ml b/src/proto_023_PtSeouLo/lib_protocol/script_map.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_map.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_map.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_map.mli b/src/proto_023_PtSeouLo/lib_protocol/script_map.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_map.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_map.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/script_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/script_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_repr_costs.ml b/src/proto_023_PtSeouLo/lib_protocol/script_repr_costs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_repr_costs.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_repr_costs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_repr_costs_generated.ml b/src/proto_023_PtSeouLo/lib_protocol/script_repr_costs_generated.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_repr_costs_generated.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_repr_costs_generated.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_set.ml b/src/proto_023_PtSeouLo/lib_protocol/script_set.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_set.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_set.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_set.mli b/src/proto_023_PtSeouLo/lib_protocol/script_set.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_set.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_set.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_string.ml b/src/proto_023_PtSeouLo/lib_protocol/script_string.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_string.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_string.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_string.mli b/src/proto_023_PtSeouLo/lib_protocol/script_string.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_string.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_string.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_tc_context.ml b/src/proto_023_PtSeouLo/lib_protocol/script_tc_context.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_tc_context.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_tc_context.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_tc_context.mli b/src/proto_023_PtSeouLo/lib_protocol/script_tc_context.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_tc_context.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_tc_context.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_tc_errors.ml b/src/proto_023_PtSeouLo/lib_protocol/script_tc_errors.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_tc_errors.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_tc_errors.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_tc_errors_registration.ml b/src/proto_023_PtSeouLo/lib_protocol/script_tc_errors_registration.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_tc_errors_registration.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_tc_errors_registration.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_tc_errors_registration.mli b/src/proto_023_PtSeouLo/lib_protocol/script_tc_errors_registration.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_tc_errors_registration.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_tc_errors_registration.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_timestamp.ml b/src/proto_023_PtSeouLo/lib_protocol/script_timestamp.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_timestamp.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_timestamp.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_timestamp.mli b/src/proto_023_PtSeouLo/lib_protocol/script_timestamp.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_timestamp.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_timestamp.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_typed_ir.ml b/src/proto_023_PtSeouLo/lib_protocol/script_typed_ir.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_typed_ir.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_typed_ir.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_typed_ir.mli b/src/proto_023_PtSeouLo/lib_protocol/script_typed_ir.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_typed_ir.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_typed_ir.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_typed_ir_size.ml b/src/proto_023_PtSeouLo/lib_protocol/script_typed_ir_size.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_typed_ir_size.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_typed_ir_size.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_typed_ir_size.mli b/src/proto_023_PtSeouLo/lib_protocol/script_typed_ir_size.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_typed_ir_size.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_typed_ir_size.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_typed_ir_size_costs.ml b/src/proto_023_PtSeouLo/lib_protocol/script_typed_ir_size_costs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_typed_ir_size_costs.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_typed_ir_size_costs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_typed_ir_size_costs.mli b/src/proto_023_PtSeouLo/lib_protocol/script_typed_ir_size_costs.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_typed_ir_size_costs.mli rename to src/proto_023_PtSeouLo/lib_protocol/script_typed_ir_size_costs.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/script_typed_ir_size_costs_generated.ml b/src/proto_023_PtSeouLo/lib_protocol/script_typed_ir_size_costs_generated.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/script_typed_ir_size_costs_generated.ml rename to src/proto_023_PtSeouLo/lib_protocol/script_typed_ir_size_costs_generated.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/seed_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/seed_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/seed_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/seed_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/seed_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/seed_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/seed_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/seed_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/seed_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/seed_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/seed_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/seed_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/seed_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/seed_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/seed_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/seed_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/shared_stake.ml b/src/proto_023_PtSeouLo/lib_protocol/shared_stake.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/shared_stake.ml rename to src/proto_023_PtSeouLo/lib_protocol/shared_stake.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/shared_stake.mli b/src/proto_023_PtSeouLo/lib_protocol/shared_stake.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/shared_stake.mli rename to src/proto_023_PtSeouLo/lib_protocol/shared_stake.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/skip_list_costs.ml b/src/proto_023_PtSeouLo/lib_protocol/skip_list_costs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/skip_list_costs.ml rename to src/proto_023_PtSeouLo/lib_protocol/skip_list_costs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/skip_list_costs.mli b/src/proto_023_PtSeouLo/lib_protocol/skip_list_costs.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/skip_list_costs.mli rename to src/proto_023_PtSeouLo/lib_protocol/skip_list_costs.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/skip_list_costs_generated.ml b/src/proto_023_PtSeouLo/lib_protocol/skip_list_costs_generated.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/skip_list_costs_generated.ml rename to src/proto_023_PtSeouLo/lib_protocol/skip_list_costs_generated.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/slash_percentage.ml b/src/proto_023_PtSeouLo/lib_protocol/slash_percentage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/slash_percentage.ml rename to src/proto_023_PtSeouLo/lib_protocol/slash_percentage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/slash_percentage.mli b/src/proto_023_PtSeouLo/lib_protocol/slash_percentage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/slash_percentage.mli rename to src/proto_023_PtSeouLo/lib_protocol/slash_percentage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/slot_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/slot_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/slot_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/slot_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/slot_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/slot_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/slot_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/slot_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/stake_context.ml b/src/proto_023_PtSeouLo/lib_protocol/stake_context.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/stake_context.ml rename to src/proto_023_PtSeouLo/lib_protocol/stake_context.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/stake_context.mli b/src/proto_023_PtSeouLo/lib_protocol/stake_context.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/stake_context.mli rename to src/proto_023_PtSeouLo/lib_protocol/stake_context.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/stake_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/stake_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/stake_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/stake_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/stake_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/stake_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/stake_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/stake_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/stake_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/stake_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/stake_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/stake_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/stake_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/stake_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/stake_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/stake_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/staking.ml b/src/proto_023_PtSeouLo/lib_protocol/staking.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/staking.ml rename to src/proto_023_PtSeouLo/lib_protocol/staking.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/staking.mli b/src/proto_023_PtSeouLo/lib_protocol/staking.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/staking.mli rename to src/proto_023_PtSeouLo/lib_protocol/staking.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/staking_parameters_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/staking_parameters_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/staking_parameters_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/staking_parameters_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/staking_parameters_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/staking_parameters_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/staking_parameters_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/staking_parameters_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/staking_pseudotoken_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/staking_pseudotoken_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/staking_pseudotoken_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/staking_pseudotoken_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/staking_pseudotoken_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/staking_pseudotoken_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/staking_pseudotoken_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/staking_pseudotoken_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/staking_pseudotokens_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/staking_pseudotokens_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/staking_pseudotokens_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/staking_pseudotokens_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/staking_pseudotokens_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/staking_pseudotokens_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/staking_pseudotokens_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/staking_pseudotokens_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/state_hash.ml b/src/proto_023_PtSeouLo/lib_protocol/state_hash.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/state_hash.ml rename to src/proto_023_PtSeouLo/lib_protocol/state_hash.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/state_hash.mli b/src/proto_023_PtSeouLo/lib_protocol/state_hash.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/state_hash.mli rename to src/proto_023_PtSeouLo/lib_protocol/state_hash.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/storage.ml b/src/proto_023_PtSeouLo/lib_protocol/storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/storage.mli b/src/proto_023_PtSeouLo/lib_protocol/storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/storage_costs.ml b/src/proto_023_PtSeouLo/lib_protocol/storage_costs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/storage_costs.ml rename to src/proto_023_PtSeouLo/lib_protocol/storage_costs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/storage_costs.mli b/src/proto_023_PtSeouLo/lib_protocol/storage_costs.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/storage_costs.mli rename to src/proto_023_PtSeouLo/lib_protocol/storage_costs.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/storage_costs_generated.ml b/src/proto_023_PtSeouLo/lib_protocol/storage_costs_generated.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/storage_costs_generated.ml rename to src/proto_023_PtSeouLo/lib_protocol/storage_costs_generated.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/storage_description.ml b/src/proto_023_PtSeouLo/lib_protocol/storage_description.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/storage_description.ml rename to src/proto_023_PtSeouLo/lib_protocol/storage_description.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/storage_description.mli b/src/proto_023_PtSeouLo/lib_protocol/storage_description.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/storage_description.mli rename to src/proto_023_PtSeouLo/lib_protocol/storage_description.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/storage_functors.ml b/src/proto_023_PtSeouLo/lib_protocol/storage_functors.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/storage_functors.ml rename to src/proto_023_PtSeouLo/lib_protocol/storage_functors.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/storage_functors.mli b/src/proto_023_PtSeouLo/lib_protocol/storage_functors.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/storage_functors.mli rename to src/proto_023_PtSeouLo/lib_protocol/storage_functors.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/storage_sigs.ml b/src/proto_023_PtSeouLo/lib_protocol/storage_sigs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/storage_sigs.ml rename to src/proto_023_PtSeouLo/lib_protocol/storage_sigs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/README.md b/src/proto_023_PtSeouLo/lib_protocol/test/README.md similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/README.md rename to src/proto_023_PtSeouLo/lib_protocol/test/README.md diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/README.md b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/README.md similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/README.md rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/README.md diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/account.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/account.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/account.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/account.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/account.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/account.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/account.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/account.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/account_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/account_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/account_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/account_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/adaptive_issuance_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/adaptive_issuance_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/adaptive_issuance_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/adaptive_issuance_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/assert.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/assert.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/assert.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/assert.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/big_map_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/big_map_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/big_map_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/big_map_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/big_map_helpers.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/big_map_helpers.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/big_map_helpers.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/big_map_helpers.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/block.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/block.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/block.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/block.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/block.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/block.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/block.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/block.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/consensus_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/consensus_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/consensus_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/consensus_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/constants_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/constants_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/constants_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/constants_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/context.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/context.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/context.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/context.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/context.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/context.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/context.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/context.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/contract_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/contract_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/contract_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/contract_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/cpmm_logic.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/cpmm_logic.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/cpmm_logic.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/cpmm_logic.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/cpmm_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/cpmm_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/cpmm_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/cpmm_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/dal_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/dal_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/dal_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/dal_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/dal_helpers.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/dal_helpers.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/dal_helpers.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/dal_helpers.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/dummy_zk_rollup.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/dummy_zk_rollup.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/dummy_zk_rollup.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/dummy_zk_rollup.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/dune b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/dune rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/dune diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/error_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/error_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/error_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/error_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/expr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/expr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/expr.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/expr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/expr_common.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/expr_common.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/expr_common.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/expr_common.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/incremental.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/incremental.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/incremental.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/incremental.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/incremental.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/incremental.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/incremental.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/incremental.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/liquidity_baking_generator.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/liquidity_baking_generator.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/liquidity_baking_generator.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/liquidity_baking_generator.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/liquidity_baking_generator.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/liquidity_baking_generator.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/liquidity_baking_generator.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/liquidity_baking_generator.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/liquidity_baking_machine.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/liquidity_baking_machine.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/liquidity_baking_machine.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/liquidity_baking_machine.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/liquidity_baking_machine.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/liquidity_baking_machine.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/liquidity_baking_machine.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/liquidity_baking_machine.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/log_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/log_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/log_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/log_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/lqt_fa12_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/lqt_fa12_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/lqt_fa12_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/lqt_fa12_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/lwt_result_wrap_syntax.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/lwt_result_wrap_syntax.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/lwt_result_wrap_syntax.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/lwt_result_wrap_syntax.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/lwt_result_wrap_syntax.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/lwt_result_wrap_syntax.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/lwt_result_wrap_syntax.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/lwt_result_wrap_syntax.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/merkle_list_helper.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/merkle_list_helper.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/merkle_list_helper.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/merkle_list_helper.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/nonce.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/nonce.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/nonce.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/nonce.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/nonce.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/nonce.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/nonce.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/nonce.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/op.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/op.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/op.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/op.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/op.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/operation_generator.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/operation_generator.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/operation_generator.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/operation_generator.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/result_wrap_syntax.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/result_wrap_syntax.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/result_wrap_syntax.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/result_wrap_syntax.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/result_wrap_syntax.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/result_wrap_syntax.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/result_wrap_syntax.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/result_wrap_syntax.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/rewards.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/rewards.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/rewards.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/rewards.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/sapling_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/sapling_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/sapling_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/sapling_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/sc_rollup_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/sc_rollup_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/sc_rollup_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/sc_rollup_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/scenario.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/scenario.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/scenario_bake.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario_bake.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/scenario_bake.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario_bake.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/scenario_base.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario_base.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/scenario_base.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario_base.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/scenario_begin.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario_begin.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/scenario_begin.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario_begin.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/scenario_constants.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario_constants.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/scenario_constants.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario_constants.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/scenario_dsl.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario_dsl.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/scenario_dsl.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario_dsl.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/scenario_op.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario_op.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/scenario_op.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario_op.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/script_big_map.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/script_big_map.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/script_big_map.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/script_big_map.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/script_big_map.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/script_big_map.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/script_big_map.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/script_big_map.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/script_map.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/script_map.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/script_map.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/script_map.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/script_map.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/script_map.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/script_map.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/script_map.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/script_set.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/script_set.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/script_set.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/script_set.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/script_set.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/script_set.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/script_set.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/script_set.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/slashing_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/slashing_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/slashing_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/slashing_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/slashing_helpers.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/slashing_helpers.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/slashing_helpers.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/slashing_helpers.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/state.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/state.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/state.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/state.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/state_account.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/state_account.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/state_account.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/state_account.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/test_global_constants.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/test_global_constants.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/test_global_constants.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/test_global_constants.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/testable.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/testable.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/testable.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/testable.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/tez_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/tez_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/tez_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/tez_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/tez_helpers.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/tez_helpers.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/tez_helpers.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/tez_helpers.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/tez_staking_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/tez_staking_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/tez_staking_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/tez_staking_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/tezt_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/tezt_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/tezt_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/tezt_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/ticket_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/ticket_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/ticket_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/ticket_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/transfers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/transfers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/transfers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/transfers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/transfers.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/transfers.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/transfers.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/transfers.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/helpers/zk_rollup_l2_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/zk_rollup_l2_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/helpers/zk_rollup_l2_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/helpers/zk_rollup_l2_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/dune rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/dune diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_aggregate.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_aggregate.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_aggregate.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_aggregate.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_attestation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_attestation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_attestation.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_attestation.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_baking.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_baking.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_baking.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_baking.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_companion_key.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_companion_key.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_companion_key.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_companion_key.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_consensus_key.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_consensus_key.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_consensus_key.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_consensus_key.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_dal_entrapment.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_dal_entrapment.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_dal_entrapment.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_dal_entrapment.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_deactivation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_deactivation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_deactivation.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_deactivation.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_delegation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_delegation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_delegation.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_delegation.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_double_attestation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_attestation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_double_attestation.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_attestation.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_double_baking.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_baking.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_double_baking.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_baking.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_double_preattestation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_preattestation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_double_preattestation.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_preattestation.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_frozen_deposits.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_frozen_deposits.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_frozen_deposits.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_frozen_deposits.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_helpers_rpcs.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_helpers_rpcs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_helpers_rpcs.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_helpers_rpcs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_participation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_participation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_participation.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_participation.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_preattestation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_preattestation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_preattestation.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_preattestation.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_preattestation_functor.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_preattestation_functor.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_preattestation_functor.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_preattestation_functor.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_seed.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_seed.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/test_seed.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_seed.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/dune rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/dune diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/gas/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/gas/dune rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/dune diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/gas/test_gas_costs.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/test_gas_costs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/gas/test_gas_costs.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/test_gas_costs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/gas/test_gas_levels.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/test_gas_levels.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/gas/test_gas_levels.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/test_gas_levels.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/big_interpreter_stack.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/big_interpreter_stack.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/big_interpreter_stack.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/big_interpreter_stack.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/emit.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/emit.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/emit.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/emit.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/fail_rec.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/fail_rec.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/fail_rec.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/fail_rec.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_CREATE_CONTRACT.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_CREATE_CONTRACT.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_CREATE_CONTRACT.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_CREATE_CONTRACT.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_SELF.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_SELF.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_SELF.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_SELF.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_SET_DELEGATE.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_SET_DELEGATE.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_SET_DELEGATE.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_SET_DELEGATE.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_TRANSFER_TOKENS.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_TRANSFER_TOKENS.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_TRANSFER_TOKENS.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/forbidden_op_in_view_TRANSFER_TOKENS.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/int-store.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/int-store.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/int-store.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/int-store.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/omega.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/omega.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/omega.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/omega.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/rec_fact.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/rec_fact.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/rec_fact.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/rec_fact.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/rec_fact_apply.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/rec_fact_apply.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/rec_fact_apply.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/rec_fact_apply.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/rec_fact_apply_store.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/rec_fact_apply_store.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/rec_fact_apply_store.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/rec_fact_apply_store.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/rec_fact_store.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/rec_fact_store.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/rec_fact_store.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/rec_fact_store.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract_double.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract_double.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract_double.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract_double.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract_drop.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract_drop.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract_drop.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract_drop.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract_send.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract_send.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract_send.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract_send.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract_state_as_arg.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract_state_as_arg.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract_state_as_arg.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract_state_as_arg.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/sapling_push_sapling_state.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/sapling_push_sapling_state.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/sapling_push_sapling_state.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/sapling_push_sapling_state.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/sapling_use_existing_state.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/sapling_use_existing_state.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/sapling_use_existing_state.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/sapling_use_existing_state.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/temp_big_maps.tz b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/temp_big_maps.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/temp_big_maps.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/temp_big_maps.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/dune rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/dune diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_annotations.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_annotations.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_annotations.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_annotations.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_block_time_instructions.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_block_time_instructions.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_block_time_instructions.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_block_time_instructions.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_contract_event.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_contract_event.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_contract_event.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_contract_event.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_global_constants_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_global_constants_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_global_constants_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_global_constants_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_interpretation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_interpretation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_interpretation.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_interpretation.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_lambda_normalization.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_lambda_normalization.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_lambda_normalization.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_lambda_normalization.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_lazy_storage_diff.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_lazy_storage_diff.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_lazy_storage_diff.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_lazy_storage_diff.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_patched_contracts.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_patched_contracts.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_patched_contracts.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_patched_contracts.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_sapling.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_sapling.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_sapling.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_sapling.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_script_cache.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_script_cache.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_script_cache.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_script_cache.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_script_typed_ir_size.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_script_typed_ir_size.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_script_typed_ir_size.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_script_typed_ir_size.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_temp_big_maps.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_temp_big_maps.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_temp_big_maps.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_temp_big_maps.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_accounting.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_accounting.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_accounting.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_accounting.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_balance.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_balance.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_balance.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_balance.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_balance_key.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_balance_key.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_balance_key.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_balance_key.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_lazy_storage_diff.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_lazy_storage_diff.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_lazy_storage_diff.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_lazy_storage_diff.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_manager.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_manager.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_manager.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_manager.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_operations_diff.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_operations_diff.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_operations_diff.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_operations_diff.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_scanner.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_scanner.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_scanner.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_scanner.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_ticket_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_typechecking.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_typechecking.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/test_typechecking.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_typechecking.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/dune rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/dune diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_activation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_activation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_activation.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_activation.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_combined_operations.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_combined_operations.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_combined_operations.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_combined_operations.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_failing_noop.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_failing_noop.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_failing_noop.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_failing_noop.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_origination.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_origination.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_origination.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_origination.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_paid_storage_increase.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_paid_storage_increase.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_paid_storage_increase.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_paid_storage_increase.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_reveal.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_reveal.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_reveal.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_reveal.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_sc_rollup.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_sc_rollup.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_sc_rollup.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_sc_rollup.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_transfer.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_transfer.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_transfer.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_transfer.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_transfer_ticket.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_transfer_ticket.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_transfer_ticket.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_transfer_ticket.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_voting.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_voting.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_voting.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_voting.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_zk_rollup.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_zk_rollup.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/test_zk_rollup.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_zk_rollup.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/test_constants.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_constants.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/test_constants.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/test_constants.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/test_frozen_bonds.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_frozen_bonds.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/test_frozen_bonds.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/test_frozen_bonds.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/test_liquidity_baking.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_liquidity_baking.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/test_liquidity_baking.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/test_liquidity_baking.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/test_scenario_base.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_base.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/test_scenario_base.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_base.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/test_scenario_deactivation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_deactivation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/test_scenario_deactivation.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_deactivation.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/test_scenario_rewards.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_rewards.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/test_scenario_rewards.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_rewards.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/test_scenario_slashing.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_slashing.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/test_scenario_slashing.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_slashing.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/test_scenario_slashing_stakers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_slashing_stakers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/test_scenario_slashing_stakers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_slashing_stakers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/test_scenario_stake.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_stake.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/test_scenario_stake.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_stake.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/test_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/test_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/test_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/test_storage_functions.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_storage_functions.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/test_storage_functions.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/test_storage_functions.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/test_token.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_token.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/test_token.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/test_token.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/dune rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/dune diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/generator_descriptors.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/generator_descriptors.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/generator_descriptors.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/generator_descriptors.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/generator_descriptors.mli b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/generator_descriptors.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/generator_descriptors.mli rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/generator_descriptors.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/generators.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/generators.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/generators.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/generators.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/manager_operation_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/manager_operation_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/manager_operation_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/manager_operation_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/test_1m_restriction.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_1m_restriction.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/test_1m_restriction.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_1m_restriction.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/test_covalidity.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_covalidity.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/test_covalidity.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_covalidity.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/test_manager_operation_validation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_manager_operation_validation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/test_manager_operation_validation.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_manager_operation_validation.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/test_mempool.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_mempool.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/test_mempool.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_mempool.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/test_sanity.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_sanity.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/test_sanity.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_sanity.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/test_validation_batch.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_validation_batch.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/test_validation_batch.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_validation_batch.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/valid_operations_generators.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/valid_operations_generators.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/valid_operations_generators.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/valid_operations_generators.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/validate_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/validate_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/validate_helpers.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/validate_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/wasm_kernel/README.md b/src/proto_023_PtSeouLo/lib_protocol/test/integration/wasm_kernel/README.md similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/wasm_kernel/README.md rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/wasm_kernel/README.md diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/wasm_kernel/computation.wasm b/src/proto_023_PtSeouLo/lib_protocol/test/integration/wasm_kernel/computation.wasm similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/wasm_kernel/computation.wasm rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/wasm_kernel/computation.wasm diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/wasm_kernel/echo.wasm b/src/proto_023_PtSeouLo/lib_protocol/test/integration/wasm_kernel/echo.wasm similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/wasm_kernel/echo.wasm rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/wasm_kernel/echo.wasm diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/wasm_kernel/echo.wast b/src/proto_023_PtSeouLo/lib_protocol/test/integration/wasm_kernel/echo.wast similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/wasm_kernel/echo.wast rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/wasm_kernel/echo.wast diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/wasm_kernel/no_parse_bad_fingerprint.wasm b/src/proto_023_PtSeouLo/lib_protocol/test/integration/wasm_kernel/no_parse_bad_fingerprint.wasm similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/wasm_kernel/no_parse_bad_fingerprint.wasm rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/wasm_kernel/no_parse_bad_fingerprint.wasm diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/wasm_kernel/no_parse_random.wasm b/src/proto_023_PtSeouLo/lib_protocol/test/integration/wasm_kernel/no_parse_random.wasm similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/wasm_kernel/no_parse_random.wasm rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/wasm_kernel/no_parse_random.wasm diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/integration/wasm_kernel/tx-kernel.wasm b/src/proto_023_PtSeouLo/lib_protocol/test/integration/wasm_kernel/tx-kernel.wasm similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/integration/wasm_kernel/tx-kernel.wasm rename to src/proto_023_PtSeouLo/lib_protocol/test/integration/wasm_kernel/tx-kernel.wasm diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/dune b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/dune rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/dune diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/liquidity_baking_pbt.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/liquidity_baking_pbt.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/liquidity_baking_pbt.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/liquidity_baking_pbt.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/saturation_fuzzing.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/saturation_fuzzing.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/saturation_fuzzing.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/saturation_fuzzing.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_balance_updates_encoding.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_balance_updates_encoding.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_balance_updates_encoding.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_balance_updates_encoding.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_bytes_conversion.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_bytes_conversion.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_bytes_conversion.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_bytes_conversion.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_carbonated_map.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_carbonated_map.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_carbonated_map.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_carbonated_map.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_compare_operations.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_compare_operations.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_compare_operations.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_compare_operations.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_dal_slot_proof.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_dal_slot_proof.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_dal_slot_proof.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_dal_slot_proof.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_gas_properties.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_gas_properties.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_gas_properties.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_gas_properties.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_merkle_list.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_merkle_list.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_merkle_list.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_merkle_list.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_operation_encoding.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_operation_encoding.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_operation_encoding.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_operation_encoding.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_refutation_game.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_refutation_game.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_refutation_game.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_refutation_game.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_sampler.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sampler.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_sampler.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sampler.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_sc_rollup_encoding.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_encoding.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_sc_rollup_encoding.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_encoding.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_sc_rollup_inbox.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_inbox.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_sc_rollup_inbox.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_inbox.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_sc_rollup_tick_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_tick_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_sc_rollup_tick_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_tick_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_script_comparison.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_script_comparison.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_script_comparison.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_script_comparison.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_script_roundtrip.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_script_roundtrip.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_script_roundtrip.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_script_roundtrip.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_tez_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_tez_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_tez_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_tez_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_zk_rollup_encoding.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_zk_rollup_encoding.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/pbt/test_zk_rollup_encoding.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_zk_rollup_encoding.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/accounts.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/accounts.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/accounts.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/accounts.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/append.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/append.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/append.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/append.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/auction.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/auction.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/auction.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/auction.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/big_map_union.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/big_map_union.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/big_map_union.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/big_map_union.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/check_signature.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/check_signature.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/check_signature.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/check_signature.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/comb-get.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/comb-get.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/comb-get.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/comb-get.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/comb-set.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/comb-set.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/comb-set.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/comb-set.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/concat.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/concat.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/concat.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/concat.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/conditionals.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/conditionals.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/conditionals.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/conditionals.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/cps_fact.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/cps_fact.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/cps_fact.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/cps_fact.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/dign.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/dign.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/dign.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/dign.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/dipn.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/dipn.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/dipn.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/dipn.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/dugn.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/dugn.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/dugn.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/dugn.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/ediv.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/ediv.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/ediv.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/ediv.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/faucet.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/faucet.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/faucet.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/faucet.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/get_and_update_map.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/get_and_update_map.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/get_and_update_map.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/get_and_update_map.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/if.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/if.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/if.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/if.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/insertion_sort.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/insertion_sort.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/insertion_sort.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/insertion_sort.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/list_map_block.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/list_map_block.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/list_map_block.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/list_map_block.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/loop_left.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/loop_left.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/loop_left.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/loop_left.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/opt_map.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/opt_map.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/opt_map.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/opt_map.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/packunpack.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/packunpack.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/packunpack.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/packunpack.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/pexec.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/pexec.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/pexec.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/pexec.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/rec_id_unit.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/rec_id_unit.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/rec_id_unit.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/rec_id_unit.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/reverse_loop.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/reverse_loop.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/reverse_loop.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/reverse_loop.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/set_delegate.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/set_delegate.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/set_delegate.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/set_delegate.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/shifts.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/shifts.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/shifts.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/shifts.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/spawn_identities.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/spawn_identities.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/spawn_identities.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/spawn_identities.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/ticket_join.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/ticket_join.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/ticket_join.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/ticket_join.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/ticket_split.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/ticket_split.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/ticket_split.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/ticket_split.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/view_fib.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/view_fib.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/view_fib.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/view_fib.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/view_toplevel_lib.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/view_toplevel_lib.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/view_toplevel_lib.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/view_toplevel_lib.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/xor.tz b/src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/xor.tz similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/contracts/xor.tz rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/contracts/xor.tz diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/dune b/src/proto_023_PtSeouLo/lib_protocol/test/regression/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/dune rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/dune diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/accounts.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/accounts.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/accounts.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/accounts.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/append.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/append.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/append.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/append.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/auction.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/auction.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/auction.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/auction.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/big_map_union.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/big_map_union.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/big_map_union.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/big_map_union.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/check_signature.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/check_signature.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/check_signature.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/check_signature.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/comb-get.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/comb-get.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/comb-get.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/comb-get.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/comb-set.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/comb-set.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/comb-set.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/comb-set.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/concat.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/concat.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/concat.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/concat.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/conditionals.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/conditionals.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/conditionals.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/conditionals.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/cps_fact.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/cps_fact.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/cps_fact.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/cps_fact.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/dign.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/dign.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/dign.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/dign.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/dipn.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/dipn.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/dipn.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/dipn.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/dugn.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/dugn.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/dugn.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/dugn.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/ediv.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/ediv.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/ediv.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/ediv.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/faucet.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/faucet.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/faucet.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/faucet.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/get_and_update_map.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/get_and_update_map.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/get_and_update_map.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/get_and_update_map.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/if.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/if.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/if.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/if.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/insertion_sort.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/insertion_sort.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/insertion_sort.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/insertion_sort.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/list_map_block.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/list_map_block.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/list_map_block.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/list_map_block.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/loop_left.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/loop_left.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/loop_left.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/loop_left.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/opt_map.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/opt_map.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/opt_map.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/opt_map.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/packunpack.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/packunpack.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/packunpack.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/packunpack.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/pexec.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/pexec.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/pexec.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/pexec.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/rec_id_unit.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/rec_id_unit.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/rec_id_unit.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/rec_id_unit.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/reverse_loop.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/reverse_loop.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/reverse_loop.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/reverse_loop.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/set_delegate.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/set_delegate.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/set_delegate.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/set_delegate.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/shifts.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/shifts.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/shifts.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/shifts.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/spawn_identities.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/spawn_identities.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/spawn_identities.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/spawn_identities.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/ticket_join.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/ticket_join.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/ticket_join.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/ticket_join.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/ticket_split.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/ticket_split.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/ticket_split.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/ticket_split.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/view_fib.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/view_fib.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/view_fib.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/view_fib.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/view_toplevel_lib.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/view_toplevel_lib.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/view_toplevel_lib.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/view_toplevel_lib.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/xor.out b/src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/xor.out similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/expected/test_logging.ml/xor.out rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/expected/test_logging.ml/xor.out diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/regression/test_logging.ml b/src/proto_023_PtSeouLo/lib_protocol/test/regression/test_logging.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/regression/test_logging.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/regression/test_logging.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/dune b/src/proto_023_PtSeouLo/lib_protocol/test/unit/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/dune rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/dune diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_adaptive_issuance.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_adaptive_issuance.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_adaptive_issuance.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_adaptive_issuance.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_adaptive_issuance_ema.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_adaptive_issuance_ema.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_adaptive_issuance_ema.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_adaptive_issuance_ema.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_alpha_context.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_alpha_context.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_alpha_context.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_alpha_context.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_bond_id_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_bond_id_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_bond_id_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_bond_id_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_consecutive_round_zero.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_consecutive_round_zero.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_consecutive_round_zero.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_consecutive_round_zero.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_consensus_key.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_consensus_key.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_consensus_key.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_consensus_key.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_contract_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_contract_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_contract_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_contract_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_dal_slot_proof.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_dal_slot_proof.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_dal_slot_proof.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_dal_slot_proof.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_destination_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_destination_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_destination_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_destination_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_fitness.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_fitness.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_fitness.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_fitness.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_fixed_point.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_fixed_point.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_fixed_point.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_fixed_point.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_full_staking_balance_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_full_staking_balance_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_full_staking_balance_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_full_staking_balance_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_gas_monad.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_gas_monad.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_gas_monad.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_gas_monad.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_global_constants_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_global_constants_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_global_constants_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_global_constants_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_level_module.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_level_module.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_level_module.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_level_module.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_liquidity_baking_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_liquidity_baking_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_liquidity_baking_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_liquidity_baking_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_local_contexts.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_local_contexts.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_local_contexts.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_local_contexts.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_merkle_list.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_merkle_list.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_merkle_list.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_merkle_list.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_operation_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_operation_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_operation_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_operation_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_percentage.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_percentage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_percentage.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_percentage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_qty.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_qty.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_qty.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_qty.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_raw_level_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_raw_level_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_raw_level_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_raw_level_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_receipt.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_receipt.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_receipt.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_receipt.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_round_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_round_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_round_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_round_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_saturation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_saturation.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_saturation.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_saturation.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_sc_rollup_arith.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_arith.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_sc_rollup_arith.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_arith.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_sc_rollup_game.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_game.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_sc_rollup_game.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_game.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_sc_rollup_inbox.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_inbox.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_sc_rollup_inbox.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_inbox.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_sc_rollup_inbox_legacy.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_inbox_legacy.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_sc_rollup_inbox_legacy.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_inbox_legacy.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_sc_rollup_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_sc_rollup_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_sc_rollup_wasm.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_wasm.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_sc_rollup_wasm.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_wasm.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_skip_list_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_skip_list_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_skip_list_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_skip_list_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_slashing_percentage.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_slashing_percentage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_slashing_percentage.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_slashing_percentage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_staking_operations.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_staking_operations.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_staking_operations.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_staking_operations.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_tez_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_tez_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_tez_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_tez_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_time_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_time_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_time_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_time_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/test/unit/test_zk_rollup_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_zk_rollup_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/test/unit/test_zk_rollup_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/test/unit/test_zk_rollup_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/tez_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/tez_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/tez_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/tez_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/tez_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/tez_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/tez_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/tez_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_accounting.ml b/src/proto_023_PtSeouLo/lib_protocol/ticket_accounting.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_accounting.ml rename to src/proto_023_PtSeouLo/lib_protocol/ticket_accounting.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_accounting.mli b/src/proto_023_PtSeouLo/lib_protocol/ticket_accounting.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_accounting.mli rename to src/proto_023_PtSeouLo/lib_protocol/ticket_accounting.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_amount.ml b/src/proto_023_PtSeouLo/lib_protocol/ticket_amount.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_amount.ml rename to src/proto_023_PtSeouLo/lib_protocol/ticket_amount.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_amount.mli b/src/proto_023_PtSeouLo/lib_protocol/ticket_amount.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_amount.mli rename to src/proto_023_PtSeouLo/lib_protocol/ticket_amount.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_balance_key.ml b/src/proto_023_PtSeouLo/lib_protocol/ticket_balance_key.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_balance_key.ml rename to src/proto_023_PtSeouLo/lib_protocol/ticket_balance_key.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_balance_key.mli b/src/proto_023_PtSeouLo/lib_protocol/ticket_balance_key.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_balance_key.mli rename to src/proto_023_PtSeouLo/lib_protocol/ticket_balance_key.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_costs.ml b/src/proto_023_PtSeouLo/lib_protocol/ticket_costs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_costs.ml rename to src/proto_023_PtSeouLo/lib_protocol/ticket_costs.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_costs.mli b/src/proto_023_PtSeouLo/lib_protocol/ticket_costs.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_costs.mli rename to src/proto_023_PtSeouLo/lib_protocol/ticket_costs.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_costs_generated.ml b/src/proto_023_PtSeouLo/lib_protocol/ticket_costs_generated.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_costs_generated.ml rename to src/proto_023_PtSeouLo/lib_protocol/ticket_costs_generated.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_hash_builder.ml b/src/proto_023_PtSeouLo/lib_protocol/ticket_hash_builder.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_hash_builder.ml rename to src/proto_023_PtSeouLo/lib_protocol/ticket_hash_builder.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_hash_builder.mli b/src/proto_023_PtSeouLo/lib_protocol/ticket_hash_builder.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_hash_builder.mli rename to src/proto_023_PtSeouLo/lib_protocol/ticket_hash_builder.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_hash_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/ticket_hash_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_hash_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/ticket_hash_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_hash_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/ticket_hash_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_hash_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/ticket_hash_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_lazy_storage_diff.ml b/src/proto_023_PtSeouLo/lib_protocol/ticket_lazy_storage_diff.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_lazy_storage_diff.ml rename to src/proto_023_PtSeouLo/lib_protocol/ticket_lazy_storage_diff.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_lazy_storage_diff.mli b/src/proto_023_PtSeouLo/lib_protocol/ticket_lazy_storage_diff.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_lazy_storage_diff.mli rename to src/proto_023_PtSeouLo/lib_protocol/ticket_lazy_storage_diff.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_operations_diff.ml b/src/proto_023_PtSeouLo/lib_protocol/ticket_operations_diff.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_operations_diff.ml rename to src/proto_023_PtSeouLo/lib_protocol/ticket_operations_diff.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_operations_diff.mli b/src/proto_023_PtSeouLo/lib_protocol/ticket_operations_diff.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_operations_diff.mli rename to src/proto_023_PtSeouLo/lib_protocol/ticket_operations_diff.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_receipt.ml b/src/proto_023_PtSeouLo/lib_protocol/ticket_receipt.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_receipt.ml rename to src/proto_023_PtSeouLo/lib_protocol/ticket_receipt.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_receipt.mli b/src/proto_023_PtSeouLo/lib_protocol/ticket_receipt.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_receipt.mli rename to src/proto_023_PtSeouLo/lib_protocol/ticket_receipt.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_scanner.ml b/src/proto_023_PtSeouLo/lib_protocol/ticket_scanner.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_scanner.ml rename to src/proto_023_PtSeouLo/lib_protocol/ticket_scanner.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_scanner.mli b/src/proto_023_PtSeouLo/lib_protocol/ticket_scanner.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_scanner.mli rename to src/proto_023_PtSeouLo/lib_protocol/ticket_scanner.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/ticket_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/ticket_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/ticket_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/ticket_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_token.ml b/src/proto_023_PtSeouLo/lib_protocol/ticket_token.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_token.ml rename to src/proto_023_PtSeouLo/lib_protocol/ticket_token.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_token.mli b/src/proto_023_PtSeouLo/lib_protocol/ticket_token.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_token.mli rename to src/proto_023_PtSeouLo/lib_protocol/ticket_token.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_token_map.ml b/src/proto_023_PtSeouLo/lib_protocol/ticket_token_map.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_token_map.ml rename to src/proto_023_PtSeouLo/lib_protocol/ticket_token_map.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_token_map.mli b/src/proto_023_PtSeouLo/lib_protocol/ticket_token_map.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_token_map.mli rename to src/proto_023_PtSeouLo/lib_protocol/ticket_token_map.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_token_unparser.ml b/src/proto_023_PtSeouLo/lib_protocol/ticket_token_unparser.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_token_unparser.ml rename to src/proto_023_PtSeouLo/lib_protocol/ticket_token_unparser.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_token_unparser.mli b/src/proto_023_PtSeouLo/lib_protocol/ticket_token_unparser.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_token_unparser.mli rename to src/proto_023_PtSeouLo/lib_protocol/ticket_token_unparser.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_transfer.ml b/src/proto_023_PtSeouLo/lib_protocol/ticket_transfer.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_transfer.ml rename to src/proto_023_PtSeouLo/lib_protocol/ticket_transfer.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/ticket_transfer.mli b/src/proto_023_PtSeouLo/lib_protocol/ticket_transfer.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/ticket_transfer.mli rename to src/proto_023_PtSeouLo/lib_protocol/ticket_transfer.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/time_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/time_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/time_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/time_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/time_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/time_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/time_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/time_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/token.ml b/src/proto_023_PtSeouLo/lib_protocol/token.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/token.ml rename to src/proto_023_PtSeouLo/lib_protocol/token.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/token.mli b/src/proto_023_PtSeouLo/lib_protocol/token.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/token.mli rename to src/proto_023_PtSeouLo/lib_protocol/token.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/tx_rollup_l2_address.ml b/src/proto_023_PtSeouLo/lib_protocol/tx_rollup_l2_address.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/tx_rollup_l2_address.ml rename to src/proto_023_PtSeouLo/lib_protocol/tx_rollup_l2_address.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/tx_rollup_l2_address.mli b/src/proto_023_PtSeouLo/lib_protocol/tx_rollup_l2_address.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/tx_rollup_l2_address.mli rename to src/proto_023_PtSeouLo/lib_protocol/tx_rollup_l2_address.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/unstake_requests_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/unstake_requests_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/unstake_requests_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/unstake_requests_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/unstake_requests_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/unstake_requests_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/unstake_requests_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/unstake_requests_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/unstaked_frozen_deposits_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/unstaked_frozen_deposits_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/unstaked_frozen_deposits_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/unstaked_frozen_deposits_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/unstaked_frozen_deposits_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/unstaked_frozen_deposits_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/unstaked_frozen_deposits_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/unstaked_frozen_deposits_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/unstaked_frozen_deposits_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/unstaked_frozen_deposits_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/unstaked_frozen_deposits_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/unstaked_frozen_deposits_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/unstaked_frozen_deposits_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/unstaked_frozen_deposits_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/unstaked_frozen_deposits_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/unstaked_frozen_deposits_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/unstaked_frozen_staker_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/unstaked_frozen_staker_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/unstaked_frozen_staker_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/unstaked_frozen_staker_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/unstaked_frozen_staker_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/unstaked_frozen_staker_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/unstaked_frozen_staker_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/unstaked_frozen_staker_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/validate.ml b/src/proto_023_PtSeouLo/lib_protocol/validate.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/validate.ml rename to src/proto_023_PtSeouLo/lib_protocol/validate.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/validate.mli b/src/proto_023_PtSeouLo/lib_protocol/validate.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/validate.mli rename to src/proto_023_PtSeouLo/lib_protocol/validate.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/validate_errors.ml b/src/proto_023_PtSeouLo/lib_protocol/validate_errors.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/validate_errors.ml rename to src/proto_023_PtSeouLo/lib_protocol/validate_errors.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/validate_errors.mli b/src/proto_023_PtSeouLo/lib_protocol/validate_errors.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/validate_errors.mli rename to src/proto_023_PtSeouLo/lib_protocol/validate_errors.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/vote_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/vote_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/vote_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/vote_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/vote_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/vote_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/vote_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/vote_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/vote_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/vote_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/vote_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/vote_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/vote_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/vote_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/vote_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/vote_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/votes_EMA_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/votes_EMA_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/votes_EMA_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/votes_EMA_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/votes_EMA_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/votes_EMA_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/votes_EMA_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/votes_EMA_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/voting_period_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/voting_period_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/voting_period_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/voting_period_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/voting_period_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/voting_period_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/voting_period_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/voting_period_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/voting_period_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/voting_period_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/voting_period_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/voting_period_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/voting_period_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/voting_period_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/voting_period_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/voting_period_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_account_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_account_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_account_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_account_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_account_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_account_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_account_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_account_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_apply.ml b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_apply.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_apply.ml rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_apply.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_apply.mli b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_apply.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_apply.mli rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_apply.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_circuit_public_inputs_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_circuit_public_inputs_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_circuit_public_inputs_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_circuit_public_inputs_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_circuit_public_inputs_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_circuit_public_inputs_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_circuit_public_inputs_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_circuit_public_inputs_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_errors.ml b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_errors.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_errors.ml rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_errors.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_operation_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_operation_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_operation_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_operation_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_operation_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_operation_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_operation_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_operation_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_parameters.ml b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_parameters.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_parameters.ml rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_parameters.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_parameters.mli b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_parameters.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_parameters.mli rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_parameters.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_scalar.ml b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_scalar.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_scalar.ml rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_scalar.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_scalar.mli b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_scalar.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_scalar.mli rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_scalar.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_state_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_state_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_state_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_state_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_state_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_state_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_state_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_state_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_storage.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_storage.ml rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_storage.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_storage.mli b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_storage.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_storage.mli rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_storage.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_ticket_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_ticket_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_ticket_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_ticket_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_ticket_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_ticket_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_ticket_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_ticket_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_update_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_update_repr.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_update_repr.ml rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_update_repr.ml diff --git a/src/proto_023_PtSEouLo/lib_protocol/zk_rollup_update_repr.mli b/src/proto_023_PtSeouLo/lib_protocol/zk_rollup_update_repr.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_protocol/zk_rollup_update_repr.mli rename to src/proto_023_PtSeouLo/lib_protocol/zk_rollup_update_repr.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup/README.md b/src/proto_023_PtSeouLo/lib_sc_rollup/README.md similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup/README.md rename to src/proto_023_PtSeouLo/lib_sc_rollup/README.md diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup/context_helpers.ml b/src/proto_023_PtSeouLo/lib_sc_rollup/context_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup/context_helpers.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup/context_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup/context_helpers.mli b/src/proto_023_PtSeouLo/lib_sc_rollup/context_helpers.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup/context_helpers.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup/context_helpers.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup/dune b/src/proto_023_PtSeouLo/lib_sc_rollup/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup/dune rename to src/proto_023_PtSeouLo/lib_sc_rollup/dune diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup/game_helpers.ml b/src/proto_023_PtSeouLo/lib_sc_rollup/game_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup/game_helpers.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup/game_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup/game_helpers.mli b/src/proto_023_PtSeouLo/lib_sc_rollup/game_helpers.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup/game_helpers.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup/game_helpers.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup/pvm_in_memory.ml b/src/proto_023_PtSeouLo/lib_sc_rollup/pvm_in_memory.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup/pvm_in_memory.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup/pvm_in_memory.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup/pvm_in_memory.mli b/src/proto_023_PtSeouLo/lib_sc_rollup/pvm_in_memory.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup/pvm_in_memory.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup/pvm_in_memory.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_layer2/README.md b/src/proto_023_PtSeouLo/lib_sc_rollup_layer2/README.md similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_layer2/README.md rename to src/proto_023_PtSeouLo/lib_sc_rollup_layer2/README.md diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_layer2/dune b/src/proto_023_PtSeouLo/lib_sc_rollup_layer2/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_layer2/dune rename to src/proto_023_PtSeouLo/lib_sc_rollup_layer2/dune diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_layer2/sc_rollup_proto_types.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_layer2/sc_rollup_proto_types.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_layer2/sc_rollup_proto_types.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_layer2/sc_rollup_proto_types.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_layer2/sc_rollup_proto_types.mli b/src/proto_023_PtSeouLo/lib_sc_rollup_layer2/sc_rollup_proto_types.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_layer2/sc_rollup_proto_types.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup_layer2/sc_rollup_proto_types.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_layer2/sc_rollup_services.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_layer2/sc_rollup_services.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_layer2/sc_rollup_services.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_layer2/sc_rollup_services.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/RPC_directory.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/RPC_directory.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/RPC_directory.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/RPC_directory.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/RPC_directory.mli b/src/proto_023_PtSeouLo/lib_sc_rollup_node/RPC_directory.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/RPC_directory.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/RPC_directory.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/arith_pvm.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/arith_pvm.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/arith_pvm.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/arith_pvm.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/batcher_constants.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/batcher_constants.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/batcher_constants.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/batcher_constants.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/batcher_constants.mli b/src/proto_023_PtSeouLo/lib_sc_rollup_node/batcher_constants.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/batcher_constants.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/batcher_constants.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/context_wrapper.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/context_wrapper.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/context_wrapper.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/context_wrapper.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/context_wrapper.mli b/src/proto_023_PtSeouLo/lib_sc_rollup_node/context_wrapper.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/context_wrapper.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/context_wrapper.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/daemon_helpers.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/daemon_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/daemon_helpers.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/daemon_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/daemon_helpers.mli b/src/proto_023_PtSeouLo/lib_sc_rollup_node/daemon_helpers.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/daemon_helpers.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/daemon_helpers.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/dal_pages_request.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/dal_pages_request.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/dal_pages_request.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/dal_pages_request.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/dal_pages_request.mli b/src/proto_023_PtSeouLo/lib_sc_rollup_node/dal_pages_request.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/dal_pages_request.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/dal_pages_request.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/dal_slots_tracker.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/dal_slots_tracker.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/dal_slots_tracker.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/dal_slots_tracker.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/dal_slots_tracker.mli b/src/proto_023_PtSeouLo/lib_sc_rollup_node/dal_slots_tracker.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/dal_slots_tracker.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/dal_slots_tracker.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/dal_slots_tracker_event.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/dal_slots_tracker_event.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/dal_slots_tracker_event.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/dal_slots_tracker_event.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/dune b/src/proto_023_PtSeouLo/lib_sc_rollup_node/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/dune rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/dune diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/fueled_pvm.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/fueled_pvm.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/fueled_pvm.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/fueled_pvm.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/inbox.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/inbox.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/inbox.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/inbox.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/inbox.mli b/src/proto_023_PtSeouLo/lib_sc_rollup_node/inbox.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/inbox.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/inbox.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/inbox_event.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/inbox_event.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/inbox_event.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/inbox_event.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/inbox_event.mli b/src/proto_023_PtSeouLo/lib_sc_rollup_node/inbox_event.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/inbox_event.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/inbox_event.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/layer1_helpers.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/layer1_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/layer1_helpers.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/layer1_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/layer1_helpers.mli b/src/proto_023_PtSeouLo/lib_sc_rollup_node/layer1_helpers.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/layer1_helpers.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/layer1_helpers.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/outbox.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/outbox.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/outbox.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/outbox.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/outbox.mli b/src/proto_023_PtSeouLo/lib_sc_rollup_node/outbox.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/outbox.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/outbox.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/pvm.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/pvm.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/pvm.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/pvm.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/pvm_plugin.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/pvm_plugin.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/pvm_plugin.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/pvm_plugin.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/pvm_plugin.mli b/src/proto_023_PtSeouLo/lib_sc_rollup_node/pvm_plugin.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/pvm_plugin.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/pvm_plugin.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/pvm_rpc.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/pvm_rpc.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/pvm_rpc.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/pvm_rpc.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/pvm_sig.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/pvm_sig.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/pvm_sig.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/pvm_sig.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/refutation_game_helpers.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/refutation_game_helpers.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/refutation_game_helpers.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/refutation_game_helpers.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/refutation_game_helpers.mli b/src/proto_023_PtSeouLo/lib_sc_rollup_node/refutation_game_helpers.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/refutation_game_helpers.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/refutation_game_helpers.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/reveals.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/reveals.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/reveals.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/reveals.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/reveals.mli b/src/proto_023_PtSeouLo/lib_sc_rollup_node/reveals.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/reveals.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/reveals.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/riscv_pvm.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/riscv_pvm.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/riscv_pvm.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/riscv_pvm.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/rollup_node_plugin.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/rollup_node_plugin.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/rollup_node_plugin.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/rollup_node_plugin.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/sc_rollup_injector.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/sc_rollup_injector.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/sc_rollup_injector.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/sc_rollup_injector.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/sc_rollup_injector.mli b/src/proto_023_PtSeouLo/lib_sc_rollup_node/sc_rollup_injector.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/sc_rollup_injector.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/sc_rollup_injector.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/sc_rollup_node_errors.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/sc_rollup_node_errors.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/sc_rollup_node_errors.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/sc_rollup_node_errors.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/test/dune b/src/proto_023_PtSeouLo/lib_sc_rollup_node/test/dune similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/test/dune rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/test/dune diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/test/serialized_proofs.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/test/serialized_proofs.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/test/serialized_proofs.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/test/serialized_proofs.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/test/serialized_proofs.mli b/src/proto_023_PtSeouLo/lib_sc_rollup_node/test/serialized_proofs.mli similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/test/serialized_proofs.mli rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/test/serialized_proofs.mli diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/test/test_octez_conversions.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/test/test_octez_conversions.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/test/test_octez_conversions.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/test/test_octez_conversions.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/wasm_2_0_0_pvm.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/wasm_2_0_0_pvm.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/wasm_2_0_0_pvm.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/wasm_2_0_0_pvm.ml diff --git a/src/proto_023_PtSEouLo/lib_sc_rollup_node/wasm_2_0_0_rpc.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/wasm_2_0_0_rpc.ml similarity index 100% rename from src/proto_023_PtSEouLo/lib_sc_rollup_node/wasm_2_0_0_rpc.ml rename to src/proto_023_PtSeouLo/lib_sc_rollup_node/wasm_2_0_0_rpc.ml diff --git a/src/proto_023_PtSEouLo/parameters/dune b/src/proto_023_PtSeouLo/parameters/dune similarity index 100% rename from src/proto_023_PtSEouLo/parameters/dune rename to src/proto_023_PtSeouLo/parameters/dune -- GitLab From 1839df0ccc5fe9c1ed1893ad6afcfd0bf2b0f591 Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:34:04 +0200 Subject: [PATCH 11/31] S023/src: rename binaries main_*.ml{,i} files --- ...{main_accuser_023_PtSEouLo.ml => main_accuser_023_PtSeouLo.ml} | 0 .../{main_baker_023_PtSEouLo.ml => main_baker_023_PtSeouLo.ml} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename src/proto_023_PtSeouLo/bin_accuser/{main_accuser_023_PtSEouLo.ml => main_accuser_023_PtSeouLo.ml} (100%) rename src/proto_023_PtSeouLo/bin_baker/{main_baker_023_PtSEouLo.ml => main_baker_023_PtSeouLo.ml} (100%) diff --git a/src/proto_023_PtSeouLo/bin_accuser/main_accuser_023_PtSEouLo.ml b/src/proto_023_PtSeouLo/bin_accuser/main_accuser_023_PtSeouLo.ml similarity index 100% rename from src/proto_023_PtSeouLo/bin_accuser/main_accuser_023_PtSEouLo.ml rename to src/proto_023_PtSeouLo/bin_accuser/main_accuser_023_PtSeouLo.ml diff --git a/src/proto_023_PtSeouLo/bin_baker/main_baker_023_PtSEouLo.ml b/src/proto_023_PtSeouLo/bin_baker/main_baker_023_PtSeouLo.ml similarity index 100% rename from src/proto_023_PtSeouLo/bin_baker/main_baker_023_PtSEouLo.ml rename to src/proto_023_PtSeouLo/bin_baker/main_baker_023_PtSeouLo.ml -- GitLab From 57ab90f1e78d04a6dfecc75bd2d80afb28a88ce9 Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:34:15 +0200 Subject: [PATCH 12/31] S023/src: replace protocol_023_PtSEouLo with protocol_023_PtSeouLo --- src/proto_023_PtSeouLo/lib_protocol/dune | 38 +++++++++---------- .../lib_protocol/test/helpers/block.ml | 12 +++--- .../lib_protocol/test/helpers/context.ml | 6 +-- .../lib_protocol/test/helpers/dune | 16 ++++---- .../test/helpers/scenario_bake.ml | 2 +- .../test/helpers/slashing_helpers.mli | 2 +- .../test/integration/consensus/dune | 14 +++---- .../integration/consensus/test_aggregate.ml | 10 ++--- .../integration/consensus/test_attestation.ml | 2 +- .../lib_protocol/test/integration/dune | 16 ++++---- .../lib_protocol/test/integration/gas/dune | 8 ++-- .../test/integration/michelson/dune | 14 +++---- .../michelson/test_block_time_instructions.ml | 2 +- .../integration/michelson/test_sapling.ml | 2 +- .../michelson/test_script_cache.ml | 2 +- .../michelson/test_ticket_direct_spending.ml | 2 +- .../test/integration/operations/dune | 12 +++--- .../test/integration/test_constants.ml | 2 +- .../test/integration/validate/dune | 16 ++++---- .../validate/manager_operation_helpers.ml | 2 +- .../validate/valid_operations_generators.ml | 2 +- .../integration/validate/validate_helpers.ml | 2 +- .../lib_protocol/test/pbt/dune | 16 ++++---- .../test/pbt/test_dal_slot_proof.ml | 2 +- .../test/pbt/test_refutation_game.ml | 6 +-- .../test/pbt/test_sc_rollup_encoding.ml | 2 +- .../lib_protocol/test/regression/dune | 12 +++--- .../lib_protocol/test/unit/dune | 14 +++---- .../test/unit/test_dal_slot_proof.ml | 2 +- 29 files changed, 119 insertions(+), 119 deletions(-) diff --git a/src/proto_023_PtSeouLo/lib_protocol/dune b/src/proto_023_PtSeouLo/lib_protocol/dune index 200191d330eb..b723a5813e98 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/dune @@ -3,7 +3,7 @@ (library (name tezos_protocol_environment_023_PtSEouLo) - (public_name tezos-protocol-023-PtSEouLo.protocol.environment) + (public_name tezos-protocol-023-PtSeouLo.protocol.environment) (instrumentation (backend bisect_ppx)) (libraries octez-proto-libs.protocol-environment) @@ -18,11 +18,11 @@ "module Name = struct let name = \"023-PtSEouLo\" end\ninclude Tezos_protocol_environment.V15.Make(Name)()\n"))) (library - (name tezos_raw_protocol_023_PtSEouLo) - (public_name tezos-protocol-023-PtSEouLo.protocol.raw) + (name tezos_raw_protocol_023_PtSeouLo) + (public_name tezos-protocol-023-PtSeouLo.protocol.raw) (instrumentation (backend bisect_ppx)) (libraries - tezos-protocol-023-PtSEouLo.protocol.environment) + tezos-protocol-023-PtSeouLo.protocol.environment) (library_flags (:standard -linkall)) (flags (:standard) @@ -286,20 +286,20 @@ Main)) (library - (name tezos_protocol_023_PtSEouLo) - (public_name tezos-protocol-023-PtSEouLo.protocol) + (name tezos_protocol_023_PtSeouLo) + (public_name tezos-protocol-023-PtSeouLo.protocol) (instrumentation (backend bisect_ppx)) (libraries octez-proto-libs.protocol-environment octez-proto-libs.protocol-environment.sigs - tezos-protocol-023-PtSEouLo.protocol.raw) + tezos-protocol-023-PtSeouLo.protocol.raw) (flags (:standard) -nopervasives) - (modules Protocol Tezos_protocol_023_PtSEouLo)) + (modules Protocol Tezos_protocol_023_PtSeouLo)) (install - (package tezos-protocol-023-PtSEouLo) + (package tezos-protocol-023-PtSeouLo) (section lib) (files (TEZOS_PROTOCOL as protocol/raw/TEZOS_PROTOCOL))) @@ -308,10 +308,10 @@ (action (write-file %{targets} - "\nlet hash = Tezos_crypto.Hashed.Protocol_hash.of_b58check_exn \"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY\"\nlet name = Tezos_protocol_environment_023_PtSEouLo.Name.name\ninclude Tezos_raw_protocol_023_PtSEouLo\ninclude Tezos_raw_protocol_023_PtSEouLo.Main\n"))) + "\nlet hash = Tezos_crypto.Hashed.Protocol_hash.of_b58check_exn \"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY\"\nlet name = Tezos_protocol_environment_023_PtSEouLo.Name.name\ninclude Tezos_raw_protocol_023_PtSeouLo\ninclude Tezos_raw_protocol_023_PtSEouLo.Main\n"))) (rule - (targets tezos_protocol_023_PtSEouLo.ml) + (targets tezos_protocol_023_PtSeouLo.ml) (action (write-file %{targets} @@ -580,17 +580,17 @@ (action (run %{bin:octez-protocol-compiler} -warn-error +a .))) (library - (name tezos_protocol_023_PtSEouLo_lifted) - (public_name tezos-protocol-023-PtSEouLo.protocol.lifted) + (name tezos_protocol_023_PtSeouLo_lifted) + (public_name tezos-protocol-023-PtSeouLo.protocol.lifted) (instrumentation (backend bisect_ppx)) (libraries octez-proto-libs.protocol-environment octez-proto-libs.protocol-environment.sigs - tezos-protocol-023-PtSEouLo.protocol) + tezos-protocol-023-PtSeouLo.protocol) (flags (:standard) -nopervasives - -open Tezos_protocol_023_PtSEouLo) + -open Tezos_protocol_023_PtSeouLo) (modules Lifted_protocol)) (rule @@ -601,7 +601,7 @@ "\ninclude Environment.Lift (Protocol)\nlet hash = Protocol.hash\n"))) (library - (name tezos_protocol_023_PtSEouLo_functor) + (name tezos_protocol_023_PtSeouLo_functor) (libraries octez-proto-libs.protocol-environment octez-proto-libs.protocol-environment.sigs) @@ -877,11 +877,11 @@ (run %{bin:octez-protocol-compiler.octez-protocol-packer} %{src_dir}))))) (library - (name tezos_embedded_protocol_023_PtSEouLo) - (public_name tezos-protocol-023-PtSEouLo.embedded-protocol) + (name tezos_embedded_protocol_023_PtSeouLo) + (public_name tezos-protocol-023-PtSeouLo.embedded-protocol) (instrumentation (backend bisect_ppx)) (libraries - tezos-protocol-023-PtSEouLo.protocol + tezos-protocol-023-PtSeouLo.protocol octez-shell-libs.protocol-updater octez-proto-libs.protocol-environment) (library_flags (:standard -linkall)) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/helpers/block.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/block.ml index 6d6864b4209a..e5bd1d9f025d 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/helpers/block.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/block.ml @@ -223,7 +223,7 @@ module Forge = struct let make_contents ?(proof_of_work_threshold = - Tezos_protocol_023_PtSEouLo_parameters.Default_parameters.constants_test + Tezos_protocol_023_PtSeouLo_parameters.Default_parameters.constants_test .proof_of_work_threshold) ~payload_hash ~payload_round ?(liquidity_baking_toggle_vote = Per_block_votes.Per_block_vote_pass) ?(adaptive_issuance_vote = Per_block_votes.Per_block_vote_pass) @@ -260,7 +260,7 @@ module Forge = struct let set_seed_nonce_hash ?(proof_of_work_threshold = - Tezos_protocol_023_PtSEouLo_parameters.Default_parameters.constants_test + Tezos_protocol_023_PtSeouLo_parameters.Default_parameters.constants_test .proof_of_work_threshold) seed_nonce_hash {baker; consensus_key; shell; contents} = let open Lwt_result_syntax in @@ -370,7 +370,7 @@ module Forge = struct (* compatibility only, needed by incremental *) let contents ?(proof_of_work_threshold = - Tezos_protocol_023_PtSEouLo_parameters.Default_parameters.constants_test + Tezos_protocol_023_PtSeouLo_parameters.Default_parameters.constants_test .proof_of_work_threshold) ?seed_nonce_hash ?(liquidity_baking_toggle_vote = Per_block_votes.Per_block_vote_pass) ?(adaptive_issuance_vote = Per_block_votes.Per_block_vote_pass) @@ -416,7 +416,7 @@ let check_constants_consistency constants = let prepare_main_init_params ?bootstrap_contracts commitments constants bootstrap_accounts = let open Lwt_syntax in - let open Tezos_protocol_023_PtSEouLo_parameters in + let open Tezos_protocol_023_PtSeouLo_parameters in let parameters = Default_parameters.parameters_of_constants ~bootstrap_accounts @@ -531,7 +531,7 @@ let genesis_with_parameters parameters = ~seed_nonce_hash:None shell in - let open Tezos_protocol_023_PtSEouLo_parameters in + let open Tezos_protocol_023_PtSeouLo_parameters in let json = Default_parameters.json_of_parameters parameters in let proto_params = Data_encoding.Binary.to_bytes_exn Data_encoding.json json @@ -583,7 +583,7 @@ let prepare_initial_context_params ?consensus_committee_size ?nonce_revelation_threshold ?dal ?adaptive_issuance ?consensus_rights_delay ?allow_tz4_delegate_enable ?aggregate_attestation () = let open Lwt_result_syntax in - let open Tezos_protocol_023_PtSEouLo_parameters in + let open Tezos_protocol_023_PtSeouLo_parameters in let constants = Default_parameters.constants_test in let min_proposal_quorum = Option.value ~default:constants.min_proposal_quorum min_proposal_quorum diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/helpers/context.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/context.ml index abe360ae2211..c5f1b93d78bf 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/helpers/context.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/context.ml @@ -244,7 +244,7 @@ let get_seed_computation ctxt = let get_constants ctxt = Alpha_services.Constants.all rpc_ctxt ctxt let default_test_constants = - Tezos_protocol_023_PtSEouLo_parameters.Default_parameters.constants_test + Tezos_protocol_023_PtSeouLo_parameters.Default_parameters.constants_test let get_issuance_per_minute ctxt = Adaptive_issuance_services.current_issuance_per_minute rpc_ctxt ctxt @@ -778,7 +778,7 @@ let init_with_constants_gen ?algo tup constants = let n = tup_n tup in let*? bootstrap_accounts, contracts = create_bootstrap_accounts ?algo n in let parameters = - Tezos_protocol_023_PtSEouLo_parameters.Default_parameters + Tezos_protocol_023_PtSeouLo_parameters.Default_parameters .parameters_of_constants ~bootstrap_accounts constants @@ -809,7 +809,7 @@ let init_with_parameters2 = init_with_parameters_gen T2 let raw_context_from_constants constants = let open Lwt_result_wrap_syntax in - let open Tezos_protocol_023_PtSEouLo_parameters in + let open Tezos_protocol_023_PtSeouLo_parameters in let initial_account = Account.new_account () in let bootstrap_accounts = Account.make_bootstrap_account diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/helpers/dune b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/dune index 488852a91e79..81bb2236d7ff 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/helpers/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/dune @@ -3,7 +3,7 @@ (library (name tezos_023_PtSEouLo_test_helpers) - (public_name octez-protocol-023-PtSEouLo-libs.test-helpers) + (public_name octez-protocol-023-PtSeouLo-libs.test-helpers) (instrumentation (backend bisect_ppx)) (libraries tezt.core @@ -14,15 +14,15 @@ octez-libs.base octez-libs.micheline octez-libs.stdlib-unix - tezos-protocol-023-PtSEouLo.protocol - octez-protocol-023-PtSEouLo-libs.client - tezos-protocol-023-PtSEouLo.parameters + tezos-protocol-023-PtSeouLo.protocol + octez-protocol-023-PtSeouLo-libs.client + tezos-protocol-023-PtSeouLo.parameters octez-proto-libs.protocol-environment - octez-protocol-023-PtSEouLo-libs.plugin + octez-protocol-023-PtSeouLo-libs.plugin octez-shell-libs.shell-services octez-libs.plompiler octez-libs.crypto-dal - octez-protocol-023-PtSEouLo-libs.smart-rollup) + octez-protocol-023-PtSeouLo-libs.smart-rollup) (flags (:standard) -open Tezt_core @@ -30,9 +30,9 @@ -open Tezos_base.TzPervasives -open Tezos_micheline -open Tezos_stdlib_unix - -open Tezos_protocol_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo -open Tezos_client_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo_parameters + -open Tezos_protocol_023_PtSeouLo_parameters -open Tezos_protocol_plugin_023_PtSEouLo -open Tezos_shell_services -open Tezos_crypto_dal diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario_bake.ml b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario_bake.ml index 42d0ca64d8fb..fd25cc076cfa 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario_bake.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/scenario_bake.ml @@ -362,7 +362,7 @@ let bake ?baker : t -> t tzresult Lwt.t = (Block.current_cycle block) in let* attesters = - let open Tezos_raw_protocol_023_PtSEouLo.Alpha_context in + let open Tezos_raw_protocol_023_PtSeouLo.Alpha_context in let* ctxt = Context.get_alpha_ctxt (B previous_block) in List.filter_map_es (fun op -> diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/helpers/slashing_helpers.mli b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/slashing_helpers.mli index 07e8ca7a683c..17c41a56f087 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/helpers/slashing_helpers.mli +++ b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/slashing_helpers.mli @@ -42,7 +42,7 @@ module Misbehaviour_repr : sig event involving [duplicate_op]. *) val check_from_duplicate_operation : loc:string -> - Tezos_raw_protocol_023_PtSEouLo.Misbehaviour_repr.t -> + Tezos_raw_protocol_023_PtSeouLo.Misbehaviour_repr.t -> 'kind Protocol.Alpha_context.Kind.consensus Protocol.Alpha_context.operation -> unit tzresult Lwt.t diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/dune index 6677072a62fa..d55983c7057a 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/dune @@ -10,11 +10,11 @@ bls12-381.archive octez-alcotezt octez-libs.base - tezos-protocol-023-PtSEouLo.protocol - octez-protocol-023-PtSEouLo-libs.test-helpers + tezos-protocol-023-PtSeouLo.protocol + octez-protocol-023-PtSeouLo-libs.test-helpers octez-libs.base-test-helpers - tezos-protocol-023-PtSEouLo.parameters - octez-protocol-023-PtSEouLo-libs.plugin) + tezos-protocol-023-PtSeouLo.parameters + octez-protocol-023-PtSeouLo-libs.plugin) (library_flags (:standard -linkall)) (flags (:standard) @@ -22,10 +22,10 @@ -open Tezt_core.Base -open Octez_alcotezt -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo -open Tezos_023_PtSEouLo_test_helpers -open Tezos_base_test_helpers - -open Tezos_protocol_023_PtSEouLo_parameters + -open Tezos_protocol_023_PtSeouLo_parameters -open Tezos_protocol_plugin_023_PtSEouLo) (modules test_baking @@ -60,7 +60,7 @@ (rule (alias runtest) - (package tezos-protocol-023-PtSEouLo-tests) + (package tezos-protocol-023-PtSeouLo-tests) (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe} /flaky /ci_disabled))) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_aggregate.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_aggregate.ml index 98f465950e46..17e7cc176f27 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_aggregate.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_aggregate.ml @@ -76,7 +76,7 @@ let find_preattestations_aggregate_result receipt = let result_opt = List.find_map (function - | Tezos_protocol_023_PtSEouLo__Protocol.Apply_results.Operation_metadata + | Tezos_protocol_023_PtSeouLo__Protocol.Apply_results.Operation_metadata { contents = Single_result (Preattestations_aggregate_result _ as result); @@ -93,7 +93,7 @@ let find_attestations_aggregate_result receipt = let result_opt = List.find_map (function - | Tezos_protocol_023_PtSEouLo__Protocol.Apply_results.Operation_metadata + | Tezos_protocol_023_PtSeouLo__Protocol.Apply_results.Operation_metadata { contents = Single_result (Attestations_aggregate_result _ as result); @@ -112,7 +112,7 @@ type 'kind aggregate = let check_aggregate_result (type kind) (kind : kind aggregate) ~committee (result : - kind Tezos_protocol_023_PtSEouLo__Protocol.Apply_results.contents_result) + kind Tezos_protocol_023_PtSeouLo__Protocol.Apply_results.contents_result) = let open Lwt_result_syntax in match (kind, result) with @@ -192,7 +192,7 @@ let check_aggregate_result (type kind) (kind : kind aggregate) ~committee let check_preattestations_aggregate_result ~committee (result : Alpha_context.Kind.preattestations_aggregate - Tezos_protocol_023_PtSEouLo__Protocol.Apply_results.contents_result) = + Tezos_protocol_023_PtSeouLo__Protocol.Apply_results.contents_result) = check_aggregate_result Preattestation ~committee result (* [check_attestations_aggregate_result ~committee result] verifies that @@ -203,7 +203,7 @@ let check_preattestations_aggregate_result ~committee let check_attestations_aggregate_result ~committee (result : Alpha_context.Kind.attestations_aggregate - Tezos_protocol_023_PtSEouLo__Protocol.Apply_results.contents_result) = + Tezos_protocol_023_PtSeouLo__Protocol.Apply_results.contents_result) = check_aggregate_result Attestation ~committee result (* [find_attester_with_bls_key attesters] returns the first attester with a BLS diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_attestation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_attestation.ml index 6f8b38628b46..a707f5c0bb57 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_attestation.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_attestation.ml @@ -665,7 +665,7 @@ let test_attester_with_no_assigned_shards () = let n = 10 in let bootstrap_balances = bal_low :: Stdlib.List.init n (fun _ -> bal_high) in let dal = - Tezos_protocol_023_PtSEouLo_parameters.Default_parameters.constants_sandbox + Tezos_protocol_023_PtSeouLo_parameters.Default_parameters.constants_sandbox .dal in let dal = diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/dune index 1f5f3e84ffb9..d9ef3e957e48 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/dune @@ -9,12 +9,12 @@ bls12-381.archive tezt octez-libs.base - octez-protocol-023-PtSEouLo-libs.client - tezos-protocol-023-PtSEouLo.protocol - tezos-protocol-023-PtSEouLo.parameters - octez-protocol-023-PtSEouLo-libs.test-helpers + octez-protocol-023-PtSeouLo-libs.client + tezos-protocol-023-PtSeouLo.protocol + tezos-protocol-023-PtSeouLo.parameters + octez-protocol-023-PtSeouLo-libs.test-helpers octez-libs.base-test-helpers - octez-protocol-023-PtSEouLo-libs.plugin) + octez-protocol-023-PtSeouLo-libs.plugin) (library_flags (:standard -linkall)) (flags (:standard) @@ -22,8 +22,8 @@ -open Tezt_core.Base -open Tezos_base.TzPervasives -open Tezos_client_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo_parameters + -open Tezos_protocol_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo_parameters -open Tezos_023_PtSEouLo_test_helpers -open Tezos_base_test_helpers -open Tezos_protocol_plugin_023_PtSEouLo) @@ -55,7 +55,7 @@ (rule (alias runtest) - (package tezos-protocol-023-PtSEouLo-tests) + (package tezos-protocol-023-PtSeouLo-tests) (deps (glob_files wasm_kernel/*.wasm)) (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe} /flaky /ci_disabled))) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/dune index 00746f17e961..a6f38f81cb00 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/dune @@ -9,8 +9,8 @@ bls12-381.archive octez-alcotezt octez-libs.base - tezos-protocol-023-PtSEouLo.protocol - octez-protocol-023-PtSEouLo-libs.test-helpers + tezos-protocol-023-PtSeouLo.protocol + octez-protocol-023-PtSeouLo-libs.test-helpers octez-libs.base-test-helpers) (library_flags (:standard -linkall)) (flags @@ -19,7 +19,7 @@ -open Tezt_core.Base -open Octez_alcotezt -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo -open Tezos_023_PtSEouLo_test_helpers -open Tezos_base_test_helpers) (modules test_gas_costs test_gas_levels)) @@ -38,7 +38,7 @@ (rule (alias runtest) - (package tezos-protocol-023-PtSEouLo-tests) + (package tezos-protocol-023-PtSeouLo-tests) (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe} /flaky /ci_disabled))) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/dune index de6f0349d055..3100841a4900 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/dune @@ -10,16 +10,16 @@ bls12-381.archive octez-alcotezt octez-libs.base - tezos-protocol-023-PtSEouLo.protocol - octez-protocol-023-PtSEouLo-libs.test-helpers + tezos-protocol-023-PtSeouLo.protocol + octez-protocol-023-PtSeouLo-libs.test-helpers octez-libs.base-test-helpers - octez-protocol-023-PtSEouLo-libs.client + octez-protocol-023-PtSeouLo-libs.client tezos-benchmark octez-libs.micheline tezos-benchmark-023-PtSEouLo tezos-benchmark-type-inference-023-PtSEouLo - octez-protocol-023-PtSEouLo-libs.plugin - tezos-protocol-023-PtSEouLo.parameters) + octez-protocol-023-PtSeouLo-libs.plugin + tezos-protocol-023-PtSeouLo.parameters) (library_flags (:standard -linkall)) (flags (:standard) @@ -27,7 +27,7 @@ -open Tezt_core.Base -open Octez_alcotezt -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo -open Tezos_023_PtSEouLo_test_helpers -open Tezos_base_test_helpers -open Tezos_client_023_PtSEouLo @@ -73,7 +73,7 @@ (rule (alias runtest) - (package tezos-protocol-023-PtSEouLo-tests) + (package tezos-protocol-023-PtSeouLo-tests) (deps (glob_files contracts/*) (glob_files patched_contracts/*) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_block_time_instructions.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_block_time_instructions.ml index da27ff32a2b0..2b444ee55afd 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_block_time_instructions.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_block_time_instructions.ml @@ -31,7 +31,7 @@ Subject: This module tests that Michelson instructions related to block time are correct. *) -open Tezos_protocol_023_PtSEouLo_parameters +open Tezos_protocol_023_PtSeouLo_parameters open Protocol open Alpha_context diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_sapling.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_sapling.ml index 592e4481f9c2..42e765cb861b 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_sapling.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_sapling.ml @@ -925,7 +925,7 @@ module Interpreter_tests = struct List.exists (function | Environment.Ecoproto_error - (Tezos_protocol_023_PtSEouLo.Protocol.Script_tc_errors + (Tezos_protocol_023_PtSeouLo.Protocol.Script_tc_errors .Unexpected_forged_value _) -> true | _ -> false) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_script_cache.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_script_cache.ml index 0d3ef6c35e67..aa77cfec33a9 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_script_cache.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_script_cache.ml @@ -351,7 +351,7 @@ let test_size_adds_entries_sizes () = *) let defined_size_limit = - Tezos_protocol_023_PtSEouLo_parameters.Default_parameters.constants_mainnet + Tezos_protocol_023_PtSeouLo_parameters.Default_parameters.constants_mainnet .cache_script_size let test_size_limit_is_in_constants_repr () = diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml index c9ad651f84aa..1905428beb31 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml @@ -103,7 +103,7 @@ let test_spending ~direct_ticket_spending_enable ~constructor () = let open Lwt_result_syntax in let constants = let default_constants = - Tezos_protocol_023_PtSEouLo_parameters.Default_parameters.constants_test + Tezos_protocol_023_PtSeouLo_parameters.Default_parameters.constants_test in { default_constants with diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/dune index 149e3f357a0a..50c45f489a50 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/dune @@ -10,11 +10,11 @@ bls12-381.archive octez-alcotezt octez-libs.base - tezos-protocol-023-PtSEouLo.protocol - octez-protocol-023-PtSEouLo-libs.client - octez-protocol-023-PtSEouLo-libs.test-helpers + tezos-protocol-023-PtSeouLo.protocol + octez-protocol-023-PtSeouLo-libs.client + octez-protocol-023-PtSeouLo-libs.test-helpers octez-libs.base-test-helpers - octez-protocol-023-PtSEouLo-libs.plugin) + octez-protocol-023-PtSeouLo-libs.plugin) (library_flags (:standard -linkall)) (flags (:standard) @@ -22,7 +22,7 @@ -open Tezt_core.Base -open Octez_alcotezt -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo -open Tezos_client_023_PtSEouLo -open Tezos_023_PtSEouLo_test_helpers -open Tezos_base_test_helpers @@ -55,7 +55,7 @@ (rule (alias runtest) - (package tezos-protocol-023-PtSEouLo-tests) + (package tezos-protocol-023-PtSeouLo-tests) (deps (glob_files contracts/*)) (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe} /flaky /ci_disabled))) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_constants.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_constants.ml index 07b261355862..933b7eb0807e 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_constants.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_constants.ml @@ -206,7 +206,7 @@ let () = (* For the rational of VDF related constants, see the description of [vdf_difficulty] in - {!val:Tezos_protocol_023_PtSEouLo_parameters.Default_parameters.constants_mainnet}. *) + {!val:Tezos_protocol_023_PtSeouLo_parameters.Default_parameters.constants_mainnet}. *) (* Security factor ensures that even with the most powerful CPU in the market, you cannot compute the VDF result within the time granted for nonce diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/dune index 08279ec4e2ca..dd48e38acc65 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/dune @@ -8,26 +8,26 @@ tezt.core bls12-381.archive octez-libs.base - tezos-protocol-023-PtSEouLo.protocol + tezos-protocol-023-PtSeouLo.protocol qcheck-alcotest - octez-protocol-023-PtSEouLo-libs.client + octez-protocol-023-PtSeouLo-libs.client octez-libs.test-helpers - octez-protocol-023-PtSEouLo-libs.test-helpers + octez-protocol-023-PtSeouLo-libs.test-helpers octez-libs.base-test-helpers - tezos-protocol-023-PtSEouLo.parameters - octez-protocol-023-PtSEouLo-libs.plugin) + tezos-protocol-023-PtSeouLo.parameters + octez-protocol-023-PtSeouLo-libs.plugin) (library_flags (:standard -linkall)) (flags (:standard) -open Tezt_core -open Tezt_core.Base -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo -open Tezos_client_023_PtSEouLo -open Tezos_test_helpers -open Tezos_023_PtSEouLo_test_helpers -open Tezos_base_test_helpers - -open Tezos_protocol_023_PtSEouLo_parameters + -open Tezos_protocol_023_PtSeouLo_parameters -open Tezos_protocol_plugin_023_PtSEouLo) (modules generator_descriptors @@ -56,7 +56,7 @@ (rule (alias runtest) - (package tezos-protocol-023-PtSEouLo-tests) + (package tezos-protocol-023-PtSeouLo-tests) (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe} /flaky /ci_disabled))) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/manager_operation_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/manager_operation_helpers.ml index eba2c42eb171..9a741b38706e 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/manager_operation_helpers.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/manager_operation_helpers.ml @@ -401,7 +401,7 @@ let manager_parameters : Parameters.t -> ctxt_req -> Parameters.t = let init_ctxt_only ctxtreq = let open Lwt_result_syntax in let initial_params = - Tezos_protocol_023_PtSEouLo_parameters.Default_parameters + Tezos_protocol_023_PtSeouLo_parameters.Default_parameters .parameters_of_constants {Context.default_test_constants with consensus_threshold_size = 0} in diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/valid_operations_generators.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/valid_operations_generators.ml index ee5df137047f..d6b1b4ffb0e1 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/valid_operations_generators.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/valid_operations_generators.ml @@ -101,7 +101,7 @@ let compose_preludes nb_cycles descrs = let initiated_params descrs nb_accounts = let consensus_committee_size = nb_accounts in let initial_params = - Tezos_protocol_023_PtSEouLo_parameters.Default_parameters + Tezos_protocol_023_PtSeouLo_parameters.Default_parameters .parameters_of_constants { Context.default_test_constants with diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/validate_helpers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/validate_helpers.ml index 2d4c6f5e6d32..bcf19871b566 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/validate_helpers.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/validate_helpers.ml @@ -374,7 +374,7 @@ let pick_addr_attester ctxt = match attesters with a :: _ -> return a.V.consensus_key | _ -> assert false let init_params = - Tezos_protocol_023_PtSEouLo_parameters.Default_parameters + Tezos_protocol_023_PtSeouLo_parameters.Default_parameters .parameters_of_constants {Context.default_test_constants with consensus_threshold_size = 0} diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/dune b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/dune index d36db7d84ca2..a3368fe9a0a7 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/dune @@ -9,20 +9,20 @@ bls12-381.archive octez-libs.base octez-libs.micheline - octez-protocol-023-PtSEouLo-libs.client - tezos-protocol-023-PtSEouLo.protocol + octez-protocol-023-PtSeouLo-libs.client + tezos-protocol-023-PtSeouLo.protocol octez-libs.tezos-context.merkle_proof_encoding octez-libs.test-helpers - octez-protocol-023-PtSEouLo-libs.test-helpers + octez-protocol-023-PtSeouLo-libs.test-helpers octez-alcotezt qcheck-alcotest tezos-benchmark tezos-benchmark-023-PtSEouLo tezos-benchmark-type-inference-023-PtSEouLo - octez-protocol-023-PtSEouLo-libs.smart-rollup + octez-protocol-023-PtSeouLo-libs.smart-rollup octez-libs.crypto-dal octez-libs.base-test-helpers - tezos-protocol-023-PtSEouLo.parameters) + tezos-protocol-023-PtSeouLo.parameters) (library_flags (:standard -linkall)) (flags (:standard) @@ -31,7 +31,7 @@ -open Tezos_base.TzPervasives -open Tezos_micheline -open Tezos_client_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo -open Tezos_test_helpers -open Tezos_023_PtSEouLo_test_helpers -open Octez_alcotezt @@ -40,7 +40,7 @@ -open Tezos_smart_rollup_023_PtSEouLo -open Tezos_crypto_dal -open Tezos_base_test_helpers - -open Tezos_protocol_023_PtSEouLo_parameters) + -open Tezos_protocol_023_PtSeouLo_parameters) (modules liquidity_baking_pbt saturation_fuzzing @@ -76,7 +76,7 @@ (rule (alias runtest) - (package tezos-protocol-023-PtSEouLo-tests) + (package tezos-protocol-023-PtSeouLo-tests) (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe} /flaky /ci_disabled))) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_dal_slot_proof.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_dal_slot_proof.ml index f133f1ce4226..866e0459c223 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_dal_slot_proof.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_dal_slot_proof.ml @@ -273,7 +273,7 @@ struct end let () = - let open Tezos_protocol_023_PtSEouLo_parameters.Default_parameters in + let open Tezos_protocol_023_PtSeouLo_parameters.Default_parameters in let module Test = Make (struct let name = "test" diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_refutation_game.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_refutation_game.ml index 3988d6ee601d..bf84d6d4b28f 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_refutation_game.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_refutation_game.ml @@ -262,7 +262,7 @@ let gen_random_hash = (** Generate the number of sections in the dissection. *) let gen_num_sections = - let open Tezos_protocol_023_PtSEouLo_parameters.Default_parameters in + let open Tezos_protocol_023_PtSeouLo_parameters.Default_parameters in let testnet = constants_test.sc_rollup.number_of_sections_in_dissection in let mainnet = constants_mainnet.sc_rollup.number_of_sections_in_dissection in let sandbox = constants_sandbox.sc_rollup.number_of_sections_in_dissection in @@ -751,7 +751,7 @@ module Dissection = struct (* The test is not general enough to support all kind of number of sections. *) let number_of_sections = - Tezos_protocol_023_PtSEouLo_parameters.Default_parameters + Tezos_protocol_023_PtSeouLo_parameters.Default_parameters .constants_mainnet .sc_rollup .number_of_sections_in_dissection @@ -1302,7 +1302,7 @@ let gen_game ~p1_strategy ~p2_strategy = (* Create a context with a rollup originated. *) let commitment_period = - Tezos_protocol_023_PtSEouLo_parameters.Default_parameters.constants_mainnet + Tezos_protocol_023_PtSeouLo_parameters.Default_parameters.constants_mainnet .sc_rollup .commitment_period_in_blocks in diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_encoding.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_encoding.ml index c31bb6fd51fc..cb394ef8666d 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_encoding.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_encoding.ml @@ -168,7 +168,7 @@ let gen_dal_slots_history () = let open Gen in let open Dal_slot_repr in let constants : Alpha_context.Constants.Parametric.t = - Tezos_protocol_023_PtSEouLo_parameters.Default_parameters.constants_test + Tezos_protocol_023_PtSeouLo_parameters.Default_parameters.constants_test in let number_of_slots = constants.dal.number_of_slots in (* Generate a list of (level * confirmed slot ID * public key hash * diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/regression/dune b/src/proto_023_PtSeouLo/lib_protocol/test/regression/dune index 6edf88c503a7..19513651cc94 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/regression/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/regression/dune @@ -9,10 +9,10 @@ bls12-381.archive octez-libs.base tezt-tezos - tezos-protocol-023-PtSEouLo.protocol - octez-protocol-023-PtSEouLo-libs.client - octez-protocol-023-PtSEouLo-libs.plugin - octez-protocol-023-PtSEouLo-libs.test-helpers + tezos-protocol-023-PtSeouLo.protocol + octez-protocol-023-PtSeouLo-libs.client + octez-protocol-023-PtSeouLo-libs.plugin + octez-protocol-023-PtSeouLo-libs.test-helpers octez-libs.micheline) (library_flags (:standard -linkall)) (flags @@ -21,7 +21,7 @@ -open Tezt_core.Base -open Tezos_base.TzPervasives -open Tezt_tezos - -open Tezos_protocol_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo -open Tezos_client_023_PtSEouLo -open Tezos_protocol_plugin_023_PtSEouLo -open Tezos_023_PtSEouLo_test_helpers @@ -42,7 +42,7 @@ (rule (alias runtest) - (package tezos-protocol-023-PtSEouLo-tests) + (package tezos-protocol-023-PtSeouLo-tests) (deps (glob_files contracts/*.tz) (glob_files expected/test_logging.ml/*.out)) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/dune b/src/proto_023_PtSeouLo/lib_protocol/test/unit/dune index 0f785365c934..1da2703a419e 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/dune @@ -10,14 +10,14 @@ octez-libs.base octez-libs.base-test-helpers octez-libs.micheline - octez-protocol-023-PtSEouLo-libs.client + octez-protocol-023-PtSeouLo-libs.client octez-shell-libs.client-base - tezos-protocol-023-PtSEouLo.parameters + tezos-protocol-023-PtSeouLo.parameters octez-proto-libs.protocol-environment octez-libs.stdlib-unix - tezos-protocol-023-PtSEouLo.protocol + tezos-protocol-023-PtSeouLo.protocol octez-libs.test-helpers - octez-protocol-023-PtSEouLo-libs.test-helpers + octez-protocol-023-PtSeouLo-libs.test-helpers octez-alcotezt octez-l2-libs.scoru-wasm-helpers octez-libs.stdlib @@ -33,8 +33,8 @@ -open Tezos_base_test_helpers -open Tezos_micheline -open Tezos_client_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo_parameters - -open Tezos_protocol_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo_parameters + -open Tezos_protocol_023_PtSeouLo -open Tezos_test_helpers -open Tezos_023_PtSEouLo_test_helpers -open Octez_alcotezt @@ -94,7 +94,7 @@ (rule (alias runtest) - (package tezos-protocol-023-PtSEouLo-tests) + (package tezos-protocol-023-PtSeouLo-tests) (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe} /flaky /ci_disabled))) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_dal_slot_proof.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_dal_slot_proof.ml index ad76340921b6..1ea2c7f82f8f 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_dal_slot_proof.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_dal_slot_proof.ml @@ -452,7 +452,7 @@ struct end let tests = - let open Tezos_protocol_023_PtSEouLo_parameters.Default_parameters in + let open Tezos_protocol_023_PtSeouLo_parameters.Default_parameters in let module Test = Make (struct let name = "test" -- GitLab From d1cce9b1a672197c3f74a9901436a2a25df799e7 Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:34:15 +0200 Subject: [PATCH 13/31] S023/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 fc9593feac80..16daf36fa4a8 100644 --- a/src/lib_protocol_compiler/final_protocol_versions +++ b/src/lib_protocol_compiler/final_protocol_versions @@ -23,4 +23,4 @@ PtParisBxoLz5gzMmn3d9WBQNoPSZakgnkMC2VNuQ3KXfUtUQeZ PsParisCZo7KAh1Z1smVd9ZMZ1HHn5gkzbM94V3PLCpknFWhUAi PsQuebecnLByd3JwTiGadoG4nGWi3HYiLXUjkibeFV8dCFeVMUg PsRiotumaAMotcRoDWW1bysEhQy2n1M5fy8JgRp8jjRfHGmfeA7 -PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY +PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh -- GitLab From 9b60d3aeaf75c35b5b3555618c1ce5482d58208f Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:34:15 +0200 Subject: [PATCH 14/31] S023/manifest: link protocol in the node, client and codec --- manifest/product_octez.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest/product_octez.ml b/manifest/product_octez.ml index cbcaab9bf307..dc0ec3f49afa 100644 --- a/manifest/product_octez.ml +++ b/manifest/product_octez.ml @@ -8025,7 +8025,7 @@ let hash = Protocol.hash let _022_PsRiotum = active (Name.v "PsRiotum" 022) - let _023_PtSEouLo = active (Name.v "PtSEouLo" 023) + let _023_PtSeouLo = active (Name.v "PtSeouLo" 023) let alpha = active (Name.dev "alpha") -- GitLab From aeb9eba37e33b6d6cf2ef3844280d62b0b48301f Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:34:18 +0200 Subject: [PATCH 15/31] S023/manifest: make manifest --- client-libs/bin_codec_kaitai/dune | 8 +-- contrib/octez_injector_server/dune | 8 +-- devtools/get_contracts/dune | 4 +- ...EouLo.ml => get_contracts_023_PtSeouLo.ml} | 4 +- devtools/testnet_experiment_tools/dune | 10 ++-- ...l_023_PtSEouLo.ml => tool_023_PtSeouLo.ml} | 8 +-- devtools/yes_wallet/dune | 2 +- ...EouLo.ml => get_delegates_023_PtSeouLo.ml} | 2 +- docs/doc_gen/dune | 4 +- dune-project | 20 +++---- ...EouLo.opam => octez-accuser-PtSeouLo.opam} | 4 +- opam/octez-accuser.opam | 2 +- ...tSEouLo.opam => octez-baker-PtSeouLo.opam} | 4 +- opam/octez-baker.opam | 2 +- opam/octez-client.opam | 2 +- opam/octez-codec-kaitai.opam | 2 +- opam/octez-codec.opam | 4 +- opam/octez-dal-node.opam | 2 +- opam/octez-injector-server.opam | 4 +- opam/octez-node.opam | 4 +- ... => octez-protocol-023-PtSeouLo-libs.opam} | 4 +- ... => octez-smart-rollup-node-PtSeouLo.opam} | 6 +- opam/octez-smart-rollup-node.opam | 2 +- opam/octez-teztale.opam | 2 +- ...opam => tezos-benchmark-023-PtSeouLo.opam} | 6 +- ...enchmark-type-inference-023-PtSeouLo.opam} | 4 +- ... tezos-benchmarks-proto-023-PtSeouLo.opam} | 8 +-- ....opam => tezos-injector-023-PtSeouLo.opam} | 4 +- ...=> tezos-protocol-023-PtSeouLo-tests.opam} | 8 +-- ....opam => tezos-protocol-023-PtSeouLo.opam} | 2 +- opam/tezos-sc-rollup-node-test.opam | 6 +- opam/tezos-smart-rollup-node-lib-test.opam | 2 +- script-inputs/active_protocol_versions | 2 +- .../active_protocol_versions_without_number | 2 +- script-inputs/ci-opam-package-tests | 10 ++-- script-inputs/octez-released-executables | 4 +- script-inputs/released-executables | 4 +- src/bin_agnostic_accuser/dune | 2 +- src/bin_agnostic_baker/dune | 4 +- src/bin_client/dune | 6 +- src/bin_codec/dune | 8 +-- src/bin_dal_node/dune | 2 +- src/bin_node/dune | 4 +- src/bin_smart_rollup_node/dune | 2 +- src/lib_smart_rollup_node/test/helpers/dune | 2 +- src/proto_023_PtSeouLo/bin_accuser/dune | 18 +++--- src/proto_023_PtSeouLo/bin_baker/dune | 18 +++--- .../lib_agnostic_baker/dune | 20 +++---- src/proto_023_PtSeouLo/lib_benchmark/dune | 18 +++--- .../lib_benchmark_type_inference/dune | 8 +-- .../lib_benchmark_type_inference/test/dune | 12 ++-- .../lib_benchmark/test/dune | 16 ++--- .../lib_benchmarks_proto/dune | 34 +++++------ src/proto_023_PtSeouLo/lib_client/dune | 24 ++++---- src/proto_023_PtSeouLo/lib_client/test/dune | 14 ++--- .../lib_client_commands/dune | 48 +++++++-------- .../lib_client_sapling/dune | 20 +++---- src/proto_023_PtSeouLo/lib_dal/dune | 24 ++++---- src/proto_023_PtSeouLo/lib_dal/test/dune | 18 +++--- src/proto_023_PtSeouLo/lib_delegate/dune | 60 +++++++++---------- src/proto_023_PtSeouLo/lib_delegate/test/dune | 24 ++++---- .../lib_delegate/test/mockup_simulator/dune | 26 ++++---- .../lib_delegate/test/tenderbrute/dune | 12 ++-- .../lib_delegate/test/tenderbrute/lib/dune | 12 ++-- src/proto_023_PtSeouLo/lib_injector/dune | 16 ++--- src/proto_023_PtSeouLo/lib_layer2_utils/dune | 12 ++-- src/proto_023_PtSeouLo/lib_parameters/dune | 18 +++--- src/proto_023_PtSeouLo/lib_plugin/dune | 26 ++++---- src/proto_023_PtSeouLo/lib_plugin/index.mld | 26 ++++---- src/proto_023_PtSeouLo/lib_plugin/test/dune | 24 ++++---- src/proto_023_PtSeouLo/lib_protocol/dune | 20 +++---- .../lib_protocol/test/helpers/dune | 8 +-- .../test/integration/consensus/dune | 8 +-- .../lib_protocol/test/integration/dune | 10 ++-- .../lib_protocol/test/integration/gas/dune | 6 +- .../test/integration/michelson/dune | 18 +++--- .../test/integration/operations/dune | 10 ++-- .../test/integration/validate/dune | 10 ++-- .../lib_protocol/test/pbt/dune | 18 +++--- .../lib_protocol/test/regression/dune | 10 ++-- .../lib_protocol/test/unit/dune | 8 +-- src/proto_023_PtSeouLo/lib_sc_rollup/dune | 8 +-- .../lib_sc_rollup_layer2/dune | 8 +-- .../lib_sc_rollup_node/dune | 36 +++++------ .../lib_sc_rollup_node/test/dune | 16 ++--- tezt/tests/dune | 28 ++++----- teztale/bin_teztale_archiver/dune | 20 +++---- tobi/config | 22 +++---- 88 files changed, 509 insertions(+), 509 deletions(-) rename devtools/get_contracts/{get_contracts_023_PtSEouLo.ml => get_contracts_023_PtSeouLo.ml} (99%) rename devtools/testnet_experiment_tools/{tool_023_PtSEouLo.ml => tool_023_PtSeouLo.ml} (99%) rename devtools/yes_wallet/{get_delegates_023_PtSEouLo.ml => get_delegates_023_PtSeouLo.ml} (99%) rename opam/{octez-accuser-PtSEouLo.opam => octez-accuser-PtSeouLo.opam} (88%) rename opam/{octez-baker-PtSEouLo.opam => octez-baker-PtSeouLo.opam} (88%) rename opam/{octez-protocol-023-PtSEouLo-libs.opam => octez-protocol-023-PtSeouLo-libs.opam} (93%) rename opam/{octez-smart-rollup-node-PtSEouLo.opam => octez-smart-rollup-node-PtSeouLo.opam} (86%) rename opam/{tezos-benchmark-023-PtSEouLo.opam => tezos-benchmark-023-PtSeouLo.opam} (84%) rename opam/{tezos-benchmark-type-inference-023-PtSEouLo.opam => tezos-benchmark-type-inference-023-PtSeouLo.opam} (87%) rename opam/{tezos-benchmarks-proto-023-PtSEouLo.opam => tezos-benchmarks-proto-023-PtSeouLo.opam} (78%) rename opam/{tezos-injector-023-PtSEouLo.opam => tezos-injector-023-PtSeouLo.opam} (88%) rename opam/{tezos-protocol-023-PtSEouLo-tests.opam => tezos-protocol-023-PtSeouLo-tests.opam} (83%) rename opam/{tezos-protocol-023-PtSEouLo.opam => tezos-protocol-023-PtSeouLo.opam} (93%) diff --git a/client-libs/bin_codec_kaitai/dune b/client-libs/bin_codec_kaitai/dune index 7deff7464b72..e984f48d95d1 100644 --- a/client-libs/bin_codec_kaitai/dune +++ b/client-libs/bin_codec_kaitai/dune @@ -75,9 +75,9 @@ (select void_for_linking-octez-protocol-022-PsRiotum-libs-client from (octez-protocol-022-PsRiotum-libs.client -> void_for_linking-octez-protocol-022-PsRiotum-libs-client.empty) (-> void_for_linking-octez-protocol-022-PsRiotum-libs-client.empty)) - (select void_for_linking-octez-protocol-023-PtSEouLo-libs-client from - (octez-protocol-023-PtSEouLo-libs.client -> void_for_linking-octez-protocol-023-PtSEouLo-libs-client.empty) - (-> void_for_linking-octez-protocol-023-PtSEouLo-libs-client.empty)) + (select void_for_linking-octez-protocol-023-PtSeouLo-libs-client from + (octez-protocol-023-PtSeouLo-libs.client -> void_for_linking-octez-protocol-023-PtSeouLo-libs-client.empty) + (-> void_for_linking-octez-protocol-023-PtSeouLo-libs-client.empty)) (select void_for_linking-octez-protocol-alpha-libs-client from (octez-protocol-alpha-libs.client -> void_for_linking-octez-protocol-alpha-libs-client.empty) (-> void_for_linking-octez-protocol-alpha-libs-client.empty))) @@ -116,7 +116,7 @@ (write-file void_for_linking-octez-protocol-020-PsParisC-libs-client.empty "") (write-file void_for_linking-octez-protocol-021-PsQuebec-libs-client.empty "") (write-file void_for_linking-octez-protocol-022-PsRiotum-libs-client.empty "") - (write-file void_for_linking-octez-protocol-023-PtSEouLo-libs-client.empty "") + (write-file void_for_linking-octez-protocol-023-PtSeouLo-libs-client.empty "") (write-file void_for_linking-octez-protocol-alpha-libs-client.empty "")))) (cram (deps codec.exe) (package octez-codec-kaitai)) diff --git a/contrib/octez_injector_server/dune b/contrib/octez_injector_server/dune index 7741479c78d8..a254c2fc9fef 100644 --- a/contrib/octez_injector_server/dune +++ b/contrib/octez_injector_server/dune @@ -20,9 +20,9 @@ (select void_for_linking-octez_injector_PsRiotum from (octez_injector_PsRiotum -> void_for_linking-octez_injector_PsRiotum.empty) (-> void_for_linking-octez_injector_PsRiotum.empty)) - (select void_for_linking-octez_injector_PtSEouLo from - (octez_injector_PtSEouLo -> void_for_linking-octez_injector_PtSEouLo.empty) - (-> void_for_linking-octez_injector_PtSEouLo.empty)) + (select void_for_linking-octez_injector_PtSeouLo from + (octez_injector_PtSeouLo -> void_for_linking-octez_injector_PtSeouLo.empty) + (-> void_for_linking-octez_injector_PtSeouLo.empty)) (select void_for_linking-octez_injector_alpha from (octez_injector_alpha -> void_for_linking-octez_injector_alpha.empty) (-> void_for_linking-octez_injector_alpha.empty))) @@ -45,5 +45,5 @@ (action (progn (write-file void_for_linking-octez_injector_PsRiotum.empty "") - (write-file void_for_linking-octez_injector_PtSEouLo.empty "") + (write-file void_for_linking-octez_injector_PtSeouLo.empty "") (write-file void_for_linking-octez_injector_alpha.empty "")))) diff --git a/devtools/get_contracts/dune b/devtools/get_contracts/dune index ca55b02ed346..2ac1f13b1b5a 100644 --- a/devtools/get_contracts/dune +++ b/devtools/get_contracts/dune @@ -9,8 +9,8 @@ octez-shell-libs.store tezos-protocol-022-PsRiotum.protocol octez-protocol-022-PsRiotum-libs.client - tezos-protocol-023-PtSEouLo.protocol - octez-protocol-023-PtSEouLo-libs.client + tezos-protocol-023-PtSeouLo.protocol + octez-protocol-023-PtSeouLo-libs.client tezos-protocol-alpha.protocol octez-protocol-alpha-libs.client) (library_flags (:standard -linkall)) diff --git a/devtools/get_contracts/get_contracts_023_PtSEouLo.ml b/devtools/get_contracts/get_contracts_023_PtSeouLo.ml similarity index 99% rename from devtools/get_contracts/get_contracts_023_PtSEouLo.ml rename to devtools/get_contracts/get_contracts_023_PtSeouLo.ml index 5053db07a859..be078af86d4e 100644 --- a/devtools/get_contracts/get_contracts_023_PtSEouLo.ml +++ b/devtools/get_contracts/get_contracts_023_PtSeouLo.ml @@ -22,8 +22,8 @@ (* DEALINGS IN THE SOFTWARE. *) (* *) (*****************************************************************************) -open Tezos_protocol_023_PtSEouLo -open Tezos_client_023_PtSEouLo +open Tezos_protocol_023_PtSeouLo +open Tezos_client_023_PtSeouLo open Protocol module Proto = struct diff --git a/devtools/testnet_experiment_tools/dune b/devtools/testnet_experiment_tools/dune index d53b41dc822c..60fd4e2c8f0b 100644 --- a/devtools/testnet_experiment_tools/dune +++ b/devtools/testnet_experiment_tools/dune @@ -44,10 +44,10 @@ octez-protocol-022-PsRiotum-libs.client octez-protocol-022-PsRiotum-libs.client.commands tezos-protocol-022-PsRiotum.protocol - octez-protocol-023-PtSEouLo-libs.baking - octez-protocol-023-PtSEouLo-libs.client - octez-protocol-023-PtSEouLo-libs.client.commands - tezos-protocol-023-PtSEouLo.protocol + octez-protocol-023-PtSeouLo-libs.baking + octez-protocol-023-PtSeouLo-libs.client + octez-protocol-023-PtSeouLo-libs.client.commands + tezos-protocol-023-PtSeouLo.protocol octez-protocol-alpha-libs.baking octez-protocol-alpha-libs.client octez-protocol-alpha-libs.client.commands @@ -63,7 +63,7 @@ -open Tezos_store -open Tezos_store_shared -open Tezos_context_ops) - (modules sigs tool_022_PsRiotum tool_023_PtSEouLo tool_alpha)) + (modules sigs tool_022_PsRiotum tool_023_PtSeouLo tool_alpha)) (executable (name simulation_scenario) diff --git a/devtools/testnet_experiment_tools/tool_023_PtSEouLo.ml b/devtools/testnet_experiment_tools/tool_023_PtSeouLo.ml similarity index 99% rename from devtools/testnet_experiment_tools/tool_023_PtSEouLo.ml rename to devtools/testnet_experiment_tools/tool_023_PtSeouLo.ml index 14a15d42f745..6249f3c50bb7 100644 --- a/devtools/testnet_experiment_tools/tool_023_PtSEouLo.ml +++ b/devtools/testnet_experiment_tools/tool_023_PtSeouLo.ml @@ -25,13 +25,13 @@ open Lwt_result_syntax open Tezos_shell_services -open Tezos_client_023_PtSEouLo -open Tezos_baking_023_PtSEouLo -open Tezos_protocol_023_PtSEouLo +open Tezos_client_023_PtSeouLo +open Tezos_baking_023_PtSeouLo +open Tezos_protocol_023_PtSeouLo open Protocol open Alpha_context -module Alpha_services = Tezos_protocol_plugin_023_PtSEouLo.Plugin.Alpha_services +module Alpha_services = Tezos_protocol_plugin_023_PtSeouLo.Plugin.Alpha_services (** Sync node *) diff --git a/devtools/yes_wallet/dune b/devtools/yes_wallet/dune index 7ba3a97a4136..5bbe6e8747d9 100644 --- a/devtools/yes_wallet/dune +++ b/devtools/yes_wallet/dune @@ -11,7 +11,7 @@ octez-node-config octez-shell-libs.store tezos-protocol-022-PsRiotum.protocol - tezos-protocol-023-PtSEouLo.protocol + tezos-protocol-023-PtSeouLo.protocol tezos-protocol-alpha.protocol) (library_flags (:standard -linkall)) (flags diff --git a/devtools/yes_wallet/get_delegates_023_PtSEouLo.ml b/devtools/yes_wallet/get_delegates_023_PtSeouLo.ml similarity index 99% rename from devtools/yes_wallet/get_delegates_023_PtSEouLo.ml rename to devtools/yes_wallet/get_delegates_023_PtSeouLo.ml index ef7933fc0fc8..2e1a567f286b 100644 --- a/devtools/yes_wallet/get_delegates_023_PtSEouLo.ml +++ b/devtools/yes_wallet/get_delegates_023_PtSeouLo.ml @@ -24,7 +24,7 @@ (*****************************************************************************) module Get_delegates = struct - open Tezos_protocol_023_PtSEouLo + open Tezos_protocol_023_PtSeouLo open Protocol type context = Alpha_context.t diff --git a/docs/doc_gen/dune b/docs/doc_gen/dune index 6c90fa63e04f..e2b0a7a892fb 100644 --- a/docs/doc_gen/dune +++ b/docs/doc_gen/dune @@ -18,10 +18,10 @@ re tezos-protocol-genesis.embedded-protocol tezos-protocol-022-PsRiotum.embedded-protocol - tezos-protocol-023-PtSEouLo.embedded-protocol + tezos-protocol-023-PtSeouLo.embedded-protocol tezos-protocol-alpha.embedded-protocol octez-protocol-022-PsRiotum-libs.plugin-registerer - octez-protocol-023-PtSEouLo-libs.plugin-registerer + octez-protocol-023-PtSeouLo-libs.plugin-registerer octez-protocol-alpha-libs.plugin-registerer) (link_flags (:standard) diff --git a/dune-project b/dune-project index 53c34f996f9b..8e74d58e8487 100644 --- a/dune-project +++ b/dune-project @@ -19,12 +19,12 @@ (package (name kaitai-of-data-encoding)) (package (name octez-accuser)) (package (name octez-accuser-PsRiotum)) -(package (name octez-accuser-PtSEouLo)) +(package (name octez-accuser-PtSeouLo)) (package (name octez-accuser-alpha)) (package (name octez-alcotezt)) (package (name octez-baker)) (package (name octez-baker-PsRiotum)) -(package (name octez-baker-PtSEouLo)) +(package (name octez-baker-PtSeouLo)) (package (name octez-baker-alpha)) (package (name octez-baker-lib)) (package (name octez-client)) @@ -73,7 +73,7 @@ (package (name octez-protocol-020-PsParisC-libs)) (package (name octez-protocol-021-PsQuebec-libs)) (package (name octez-protocol-022-PsRiotum-libs)) -(package (name octez-protocol-023-PtSEouLo-libs)) +(package (name octez-protocol-023-PtSeouLo-libs)) (package (name octez-protocol-alpha-libs)) (package (name octez-protocol-compiler)) (package (name octez-protocol-compiler-compat)) @@ -94,7 +94,7 @@ (package (name octez-smart-rollup-node-PsRiotum)(allow_empty)) (package (name octez-smart-rollup-node-PtNairob)(allow_empty)) (package (name octez-smart-rollup-node-PtParisB)(allow_empty)) -(package (name octez-smart-rollup-node-PtSEouLo)(allow_empty)) +(package (name octez-smart-rollup-node-PtSeouLo)(allow_empty)) (package (name octez-smart-rollup-node-alpha)(allow_empty)) (package (name octez-smart-rollup-node-lib)) (package (name octez-smart-rollup-wasm-debugger)) @@ -109,22 +109,22 @@ (package (name proto-manager)) (package (name tezos-benchmark)) (package (name tezos-benchmark-022-PsRiotum)) -(package (name tezos-benchmark-023-PtSEouLo)) +(package (name tezos-benchmark-023-PtSeouLo)) (package (name tezos-benchmark-alpha)) (package (name tezos-benchmark-examples)) (package (name tezos-benchmark-tests)(allow_empty)) (package (name tezos-benchmark-type-inference-022-PsRiotum)) -(package (name tezos-benchmark-type-inference-023-PtSEouLo)) +(package (name tezos-benchmark-type-inference-023-PtSeouLo)) (package (name tezos-benchmark-type-inference-alpha)) (package (name tezos-benchmarks-proto-022-PsRiotum)) -(package (name tezos-benchmarks-proto-023-PtSEouLo)) +(package (name tezos-benchmarks-proto-023-PtSeouLo)) (package (name tezos-benchmarks-proto-alpha)) (package (name tezos-client-demo-counter)) (package (name tezos-client-genesis)) (package (name tezos-dal-node-lib)) (package (name tezos-dal-node-services)) (package (name tezos-injector-022-PsRiotum)(allow_empty)) -(package (name tezos-injector-023-PtSEouLo)(allow_empty)) +(package (name tezos-injector-023-PtSeouLo)(allow_empty)) (package (name tezos-injector-alpha)(allow_empty)) (package (name tezos-lazy-containers-tests)(allow_empty)) (package (name tezos-micheline-rewriting)) @@ -155,8 +155,8 @@ (package (name tezos-protocol-021-PsQuebec)) (package (name tezos-protocol-022-PsRiotum)) (package (name tezos-protocol-022-PsRiotum-tests)(allow_empty)) -(package (name tezos-protocol-023-PtSEouLo)) -(package (name tezos-protocol-023-PtSEouLo-tests)(allow_empty)) +(package (name tezos-protocol-023-PtSeouLo)) +(package (name tezos-protocol-023-PtSeouLo-tests)(allow_empty)) (package (name tezos-protocol-alpha)) (package (name tezos-protocol-alpha-tests)(allow_empty)) (package (name tezos-protocol-demo-counter)) diff --git a/opam/octez-accuser-PtSEouLo.opam b/opam/octez-accuser-PtSeouLo.opam similarity index 88% rename from opam/octez-accuser-PtSEouLo.opam rename to opam/octez-accuser-PtSeouLo.opam index 6d346305579e..a480084842e1 100644 --- a/opam/octez-accuser-PtSEouLo.opam +++ b/opam/octez-accuser-PtSeouLo.opam @@ -13,8 +13,8 @@ depends: [ "octez-rust-deps" { = version } "bls12-381" { = version } "octez-libs" { = version } - "tezos-protocol-023-PtSEouLo" { = version } - "octez-protocol-023-PtSEouLo-libs" { = version } + "tezos-protocol-023-PtSeouLo" { = version } + "octez-protocol-023-PtSeouLo-libs" { = version } "octez-shell-libs" { = version } ] build: [ diff --git a/opam/octez-accuser.opam b/opam/octez-accuser.opam index b07d17fbd4d7..cda5fc642bb0 100644 --- a/opam/octez-accuser.opam +++ b/opam/octez-accuser.opam @@ -16,7 +16,7 @@ depends: [ "octez-shell-libs" { = version } "octez-baker-lib" { = version } "octez-protocol-022-PsRiotum-libs" { = version } - "octez-protocol-023-PtSEouLo-libs" { = version } + "octez-protocol-023-PtSeouLo-libs" { = version } ] depopts: [ "octez-protocol-alpha-libs" diff --git a/opam/octez-baker-PtSEouLo.opam b/opam/octez-baker-PtSeouLo.opam similarity index 88% rename from opam/octez-baker-PtSEouLo.opam rename to opam/octez-baker-PtSeouLo.opam index 792717c68335..84867080e63e 100644 --- a/opam/octez-baker-PtSEouLo.opam +++ b/opam/octez-baker-PtSeouLo.opam @@ -13,8 +13,8 @@ depends: [ "octez-rust-deps" { = version } "bls12-381" { = version } "octez-libs" { = version } - "tezos-protocol-023-PtSEouLo" { = version } - "octez-protocol-023-PtSEouLo-libs" { = version } + "tezos-protocol-023-PtSeouLo" { = version } + "octez-protocol-023-PtSeouLo-libs" { = version } "octez-shell-libs" { = version } ] build: [ diff --git a/opam/octez-baker.opam b/opam/octez-baker.opam index 2baada5b4fc7..0fd393e7446e 100644 --- a/opam/octez-baker.opam +++ b/opam/octez-baker.opam @@ -16,7 +16,7 @@ depends: [ "octez-shell-libs" { = version } "octez-baker-lib" { = version } "octez-protocol-022-PsRiotum-libs" { = version } - "octez-protocol-023-PtSEouLo-libs" { = version } + "octez-protocol-023-PtSeouLo-libs" { = version } ] depopts: [ "octez-protocol-021-PsQuebec-libs" diff --git a/opam/octez-client.opam b/opam/octez-client.opam index dbe0aae0a973..8193e249c444 100644 --- a/opam/octez-client.opam +++ b/opam/octez-client.opam @@ -16,7 +16,7 @@ depends: [ "octez-shell-libs" { = version } "uri" { >= "3.1.0" } "octez-protocol-022-PsRiotum-libs" { = version } - "octez-protocol-023-PtSEouLo-libs" { = version } + "octez-protocol-023-PtSeouLo-libs" { = version } ] depopts: [ "tezos-client-genesis" diff --git a/opam/octez-codec-kaitai.opam b/opam/octez-codec-kaitai.opam index 590410a5bae3..dacbc11f3825 100644 --- a/opam/octez-codec-kaitai.opam +++ b/opam/octez-codec-kaitai.opam @@ -37,7 +37,7 @@ depopts: [ "octez-protocol-020-PsParisC-libs" "octez-protocol-021-PsQuebec-libs" "octez-protocol-022-PsRiotum-libs" - "octez-protocol-023-PtSEouLo-libs" + "octez-protocol-023-PtSeouLo-libs" "octez-protocol-alpha-libs" ] build: [ diff --git a/opam/octez-codec.opam b/opam/octez-codec.opam index f4cd4bddae53..e6cbd9105faa 100644 --- a/opam/octez-codec.opam +++ b/opam/octez-codec.opam @@ -37,7 +37,7 @@ depopts: [ "octez-protocol-020-PsParisC-libs" "octez-protocol-021-PsQuebec-libs" "octez-protocol-022-PsRiotum-libs" - "octez-protocol-023-PtSEouLo-libs" + "octez-protocol-023-PtSeouLo-libs" "octez-protocol-alpha-libs" ] conflicts: [ @@ -59,7 +59,7 @@ conflicts: [ "octez-protocol-020-PsParisC-libs" { != version } "octez-protocol-021-PsQuebec-libs" { != version } "octez-protocol-022-PsRiotum-libs" { != version } - "octez-protocol-023-PtSEouLo-libs" { != version } + "octez-protocol-023-PtSeouLo-libs" { != version } "octez-protocol-alpha-libs" { != version } ] build: [ diff --git a/opam/octez-dal-node.opam b/opam/octez-dal-node.opam index 87511fd8120a..f86cce118ffc 100644 --- a/opam/octez-dal-node.opam +++ b/opam/octez-dal-node.opam @@ -16,7 +16,7 @@ depends: [ "tezos-dal-node-lib" { = version } "memtrace" "octez-protocol-022-PsRiotum-libs" { = version } - "octez-protocol-023-PtSEouLo-libs" { = version } + "octez-protocol-023-PtSeouLo-libs" { = version } ] depopts: [ "octez-protocol-021-PsQuebec-libs" diff --git a/opam/octez-injector-server.opam b/opam/octez-injector-server.opam index 51699a43e022..27246a8a50fb 100644 --- a/opam/octez-injector-server.opam +++ b/opam/octez-injector-server.opam @@ -18,12 +18,12 @@ depends: [ ] depopts: [ "tezos-injector-022-PsRiotum" - "tezos-injector-023-PtSEouLo" + "tezos-injector-023-PtSeouLo" "tezos-injector-alpha" ] conflicts: [ "tezos-injector-022-PsRiotum" { != version } - "tezos-injector-023-PtSEouLo" { != version } + "tezos-injector-023-PtSeouLo" { != version } "tezos-injector-alpha" { != version } ] build: [ diff --git a/opam/octez-node.opam b/opam/octez-node.opam index db4012745d66..b43ec8b10e05 100644 --- a/opam/octez-node.opam +++ b/opam/octez-node.opam @@ -28,8 +28,8 @@ depends: [ "tezos-protocol-000-Ps9mPmXa" { = version } "tezos-protocol-022-PsRiotum" { = version } "octez-protocol-022-PsRiotum-libs" { = version } - "tezos-protocol-023-PtSEouLo" { = version } - "octez-protocol-023-PtSEouLo-libs" { = version } + "tezos-protocol-023-PtSeouLo" { = version } + "octez-protocol-023-PtSeouLo-libs" { = version } ] depopts: [ "tezos-protocol-genesis" diff --git a/opam/octez-protocol-023-PtSEouLo-libs.opam b/opam/octez-protocol-023-PtSeouLo-libs.opam similarity index 93% rename from opam/octez-protocol-023-PtSEouLo-libs.opam rename to opam/octez-protocol-023-PtSeouLo-libs.opam index 75cd8473fd57..0d231e82429d 100644 --- a/opam/octez-protocol-023-PtSEouLo-libs.opam +++ b/opam/octez-protocol-023-PtSeouLo-libs.opam @@ -12,7 +12,7 @@ depends: [ "ocaml" { >= "4.14" } "ppx_expect" "octez-libs" { = version } - "tezos-protocol-023-PtSEouLo" { = version } + "tezos-protocol-023-PtSeouLo" { = version } "bls12-381" { with-test & = version } "octez-rust-deps" { with-test & = version } "octez-shell-libs" { = version } @@ -40,4 +40,4 @@ build: [ ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] available: os-family != "windows" -synopsis: "Octez protocol 023-PtSEouLo libraries" +synopsis: "Octez protocol 023-PtSeouLo libraries" diff --git a/opam/octez-smart-rollup-node-PtSEouLo.opam b/opam/octez-smart-rollup-node-PtSeouLo.opam similarity index 86% rename from opam/octez-smart-rollup-node-PtSEouLo.opam rename to opam/octez-smart-rollup-node-PtSeouLo.opam index 6a9fd77fc341..402dee0b1a22 100644 --- a/opam/octez-smart-rollup-node-PtSEouLo.opam +++ b/opam/octez-smart-rollup-node-PtSeouLo.opam @@ -12,8 +12,8 @@ depends: [ "ocaml" { >= "4.14" } "octez-libs" { = version } "octez-shell-libs" { = version } - "octez-protocol-023-PtSEouLo-libs" { = version } - "tezos-protocol-023-PtSEouLo" { = version } + "octez-protocol-023-PtSeouLo-libs" { = version } + "tezos-protocol-023-PtSeouLo" { = version } "tezos-dal-node-services" { = version } "tezos-dal-node-lib" { = version } "octez-l2-libs" { = version } @@ -35,4 +35,4 @@ build: [ ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] available: os-family != "windows" -synopsis: "Protocol specific (for 023-PtSEouLo) library for smart rollup node" +synopsis: "Protocol specific (for 023-PtSeouLo) library for smart rollup node" diff --git a/opam/octez-smart-rollup-node.opam b/opam/octez-smart-rollup-node.opam index b3ebec053442..f8c3ce6bb6ee 100644 --- a/opam/octez-smart-rollup-node.opam +++ b/opam/octez-smart-rollup-node.opam @@ -17,7 +17,7 @@ depends: [ "octez-l2-libs" { = version } "octez-smart-rollup-node-lib" { = version } "octez-smart-rollup-node-PsRiotum" { = version } - "octez-smart-rollup-node-PtSEouLo" { = version } + "octez-smart-rollup-node-PtSeouLo" { = version } ] depopts: [ "octez-smart-rollup-node-PtNairob" diff --git a/opam/octez-teztale.opam b/opam/octez-teztale.opam index bcc642ad1777..c758a617c5d9 100644 --- a/opam/octez-teztale.opam +++ b/opam/octez-teztale.opam @@ -50,7 +50,7 @@ depopts: [ "octez-protocol-020-PsParisC-libs" "octez-protocol-021-PsQuebec-libs" "octez-protocol-022-PsRiotum-libs" - "octez-protocol-023-PtSEouLo-libs" + "octez-protocol-023-PtSeouLo-libs" "octez-protocol-alpha-libs" ] build: [ diff --git a/opam/tezos-benchmark-023-PtSEouLo.opam b/opam/tezos-benchmark-023-PtSeouLo.opam similarity index 84% rename from opam/tezos-benchmark-023-PtSEouLo.opam rename to opam/tezos-benchmark-023-PtSeouLo.opam index 4e577b8c48f1..81b6df5572b1 100644 --- a/opam/tezos-benchmark-023-PtSEouLo.opam +++ b/opam/tezos-benchmark-023-PtSeouLo.opam @@ -13,10 +13,10 @@ depends: [ "octez-libs" { = version } "tezos-micheline-rewriting" { = version } "tezos-benchmark" { = version } - "tezos-benchmark-type-inference-023-PtSEouLo" { = version } - "tezos-protocol-023-PtSEouLo" { = version } + "tezos-benchmark-type-inference-023-PtSeouLo" { = version } + "tezos-protocol-023-PtSeouLo" { = version } "hashcons" - "octez-protocol-023-PtSEouLo-libs" { = version } + "octez-protocol-023-PtSeouLo-libs" { = version } "prbnmcn-stats" { = "0.0.6" } "octez-rust-deps" { with-test & = version } "bls12-381" { with-test & = version } diff --git a/opam/tezos-benchmark-type-inference-023-PtSEouLo.opam b/opam/tezos-benchmark-type-inference-023-PtSeouLo.opam similarity index 87% rename from opam/tezos-benchmark-type-inference-023-PtSEouLo.opam rename to opam/tezos-benchmark-type-inference-023-PtSeouLo.opam index 7de09b748889..96f686fdc2a2 100644 --- a/opam/tezos-benchmark-type-inference-023-PtSEouLo.opam +++ b/opam/tezos-benchmark-type-inference-023-PtSeouLo.opam @@ -12,11 +12,11 @@ depends: [ "ocaml" { >= "4.14" } "octez-libs" { = version } "tezos-micheline-rewriting" { = version } - "tezos-protocol-023-PtSEouLo" { = version } + "tezos-protocol-023-PtSeouLo" { = version } "hashcons" "octez-rust-deps" { with-test & = version } "bls12-381" { with-test & = version } - "octez-protocol-023-PtSEouLo-libs" { with-test & = version } + "octez-protocol-023-PtSeouLo-libs" { with-test & = version } ] build: [ ["rm" "-r" "vendors" "contrib"] diff --git a/opam/tezos-benchmarks-proto-023-PtSEouLo.opam b/opam/tezos-benchmarks-proto-023-PtSeouLo.opam similarity index 78% rename from opam/tezos-benchmarks-proto-023-PtSEouLo.opam rename to opam/tezos-benchmarks-proto-023-PtSeouLo.opam index 257fe807feea..67f525be2cfa 100644 --- a/opam/tezos-benchmarks-proto-023-PtSEouLo.opam +++ b/opam/tezos-benchmarks-proto-023-PtSeouLo.opam @@ -11,12 +11,12 @@ depends: [ "dune" { >= "3.11.1" } "ocaml" { >= "4.14" } "octez-libs" { = version } - "tezos-protocol-023-PtSEouLo" { = version } + "tezos-protocol-023-PtSeouLo" { = version } "tezos-benchmark" { = version } - "tezos-benchmark-023-PtSEouLo" { = version } - "tezos-benchmark-type-inference-023-PtSEouLo" { = version } + "tezos-benchmark-023-PtSeouLo" { = version } + "tezos-benchmark-type-inference-023-PtSeouLo" { = version } "octez-shell-libs" { = version } - "octez-protocol-023-PtSEouLo-libs" { = version } + "octez-protocol-023-PtSeouLo-libs" { = version } "octez-proto-libs" { = version } ] build: [ diff --git a/opam/tezos-injector-023-PtSEouLo.opam b/opam/tezos-injector-023-PtSeouLo.opam similarity index 88% rename from opam/tezos-injector-023-PtSEouLo.opam rename to opam/tezos-injector-023-PtSeouLo.opam index 5f7f0487a847..b934a16c6f9c 100644 --- a/opam/tezos-injector-023-PtSEouLo.opam +++ b/opam/tezos-injector-023-PtSeouLo.opam @@ -11,9 +11,9 @@ depends: [ "dune" { >= "3.11.1" } "ocaml" { >= "4.14" } "octez-libs" { = version } - "tezos-protocol-023-PtSEouLo" { = version } + "tezos-protocol-023-PtSeouLo" { = version } "octez-injector" { = version } - "octez-protocol-023-PtSEouLo-libs" { = version } + "octez-protocol-023-PtSeouLo-libs" { = version } "octez-shell-libs" { = version } ] build: [ diff --git a/opam/tezos-protocol-023-PtSEouLo-tests.opam b/opam/tezos-protocol-023-PtSeouLo-tests.opam similarity index 83% rename from opam/tezos-protocol-023-PtSEouLo-tests.opam rename to opam/tezos-protocol-023-PtSeouLo-tests.opam index 0bc95c02eaf7..a54b722d3e03 100644 --- a/opam/tezos-protocol-023-PtSEouLo-tests.opam +++ b/opam/tezos-protocol-023-PtSeouLo-tests.opam @@ -14,12 +14,12 @@ depends: [ "tezt" { with-test & >= "4.1.0" & < "5.0.0" } "bls12-381" {with-test} "octez-libs" {with-test} - "octez-protocol-023-PtSEouLo-libs" {with-test} - "tezos-protocol-023-PtSEouLo" {with-test} + "octez-protocol-023-PtSeouLo-libs" {with-test} + "tezos-protocol-023-PtSeouLo" {with-test} "octez-alcotezt" {with-test} "tezos-benchmark" {with-test} - "tezos-benchmark-023-PtSEouLo" {with-test} - "tezos-benchmark-type-inference-023-PtSEouLo" {with-test} + "tezos-benchmark-023-PtSeouLo" {with-test} + "tezos-benchmark-type-inference-023-PtSeouLo" {with-test} "qcheck-alcotest" { with-test & >= "0.20" } "tezt-tezos" {with-test} "octez-shell-libs" {with-test} diff --git a/opam/tezos-protocol-023-PtSEouLo.opam b/opam/tezos-protocol-023-PtSeouLo.opam similarity index 93% rename from opam/tezos-protocol-023-PtSEouLo.opam rename to opam/tezos-protocol-023-PtSeouLo.opam index 5dc9d7660778..e11897e676cd 100644 --- a/opam/tezos-protocol-023-PtSEouLo.opam +++ b/opam/tezos-protocol-023-PtSeouLo.opam @@ -22,4 +22,4 @@ build: [ ["dune" "runtest" "-p" name "-j" jobs] {with-test} ] available: os-family != "windows" -synopsis: "Tezos protocol 023-PtSEouLo package" +synopsis: "Tezos protocol 023-PtSeouLo package" diff --git a/opam/tezos-sc-rollup-node-test.opam b/opam/tezos-sc-rollup-node-test.opam index 25a290ed4788..423b67c3dbc5 100644 --- a/opam/tezos-sc-rollup-node-test.opam +++ b/opam/tezos-sc-rollup-node-test.opam @@ -18,9 +18,9 @@ depends: [ "octez-protocol-022-PsRiotum-libs" {with-test} "octez-smart-rollup-node-PsRiotum" {with-test} "octez-alcotezt" {with-test} - "tezos-protocol-023-PtSEouLo" {with-test} - "octez-protocol-023-PtSEouLo-libs" {with-test} - "octez-smart-rollup-node-PtSEouLo" {with-test} + "tezos-protocol-023-PtSeouLo" {with-test} + "octez-protocol-023-PtSeouLo-libs" {with-test} + "octez-smart-rollup-node-PtSeouLo" {with-test} "tezos-protocol-alpha" {with-test} "octez-protocol-alpha-libs" {with-test} "octez-smart-rollup-node-alpha" {with-test} diff --git a/opam/tezos-smart-rollup-node-lib-test.opam b/opam/tezos-smart-rollup-node-lib-test.opam index 44ca195fac73..de6cd04d2a19 100644 --- a/opam/tezos-smart-rollup-node-lib-test.opam +++ b/opam/tezos-smart-rollup-node-lib-test.opam @@ -22,7 +22,7 @@ depends: [ "octez-alcotezt" {with-test} "octez-shell-libs" {with-test} "octez-smart-rollup-node-PsRiotum" {with-test} - "octez-smart-rollup-node-PtSEouLo" {with-test} + "octez-smart-rollup-node-PtSeouLo" {with-test} ] depopts: [ "octez-smart-rollup-node-PtNairob" {with-test} diff --git a/script-inputs/active_protocol_versions b/script-inputs/active_protocol_versions index add3cad85c21..5581f7014623 100644 --- a/script-inputs/active_protocol_versions +++ b/script-inputs/active_protocol_versions @@ -1,3 +1,3 @@ 022-PsRiotum -023-PtSEouLo +023-PtSeouLo alpha diff --git a/script-inputs/active_protocol_versions_without_number b/script-inputs/active_protocol_versions_without_number index a32b62d4b3e9..77c742e542cf 100644 --- a/script-inputs/active_protocol_versions_without_number +++ b/script-inputs/active_protocol_versions_without_number @@ -1,3 +1,3 @@ PsRiotum -PtSEouLo +PtSeouLo alpha diff --git a/script-inputs/ci-opam-package-tests b/script-inputs/ci-opam-package-tests index 5840f8e55db6..100da34b9ed5 100644 --- a/script-inputs/ci-opam-package-tests +++ b/script-inputs/ci-opam-package-tests @@ -3,11 +3,11 @@ dal_node_migrations all 6 efunc_core all 6 octez-accuser exec 1 octez-accuser-PsRiotum exec 1 -octez-accuser-PtSEouLo exec 1 +octez-accuser-PtSeouLo exec 1 octez-alcotezt all 7 octez-baker exec 1 octez-baker-PsRiotum exec 1 -octez-baker-PtSEouLo exec 1 +octez-baker-PtSeouLo exec 1 octez-baker-lib all 2 octez-client exec 1 octez-codec exec 1 @@ -49,7 +49,7 @@ octez-protocol-019-PtParisB-libs all 2 octez-protocol-020-PsParisC-libs all 2 octez-protocol-021-PsQuebec-libs all 2 octez-protocol-022-PsRiotum-libs all 1 -octez-protocol-023-PtSEouLo-libs all 1 +octez-protocol-023-PtSeouLo-libs all 1 octez-protocol-alpha-libs all 2 octez-protocol-compiler exec 6 octez-protocol-compiler-compat all 7 @@ -67,7 +67,7 @@ octez-smart-rollup-node-PsQuebec all 2 octez-smart-rollup-node-PsRiotum all 1 octez-smart-rollup-node-PtNairob all 2 octez-smart-rollup-node-PtParisB all 2 -octez-smart-rollup-node-PtSEouLo all 1 +octez-smart-rollup-node-PtSeouLo all 1 octez-smart-rollup-node-alpha all 1 octez-smart-rollup-node-lib all 2 octez-version exec 6 @@ -102,7 +102,7 @@ tezos-protocol-019-PtParisB all 5 tezos-protocol-020-PsParisC all 5 tezos-protocol-021-PsQuebec all 5 tezos-protocol-022-PsRiotum all 5 -tezos-protocol-023-PtSEouLo all 5 +tezos-protocol-023-PtSeouLo all 5 tezos-protocol-alpha all 6 tezos-protocol-demo-counter all 6 tezos-protocol-demo-noops all 6 diff --git a/script-inputs/octez-released-executables b/script-inputs/octez-released-executables index dc305e57674a..62d7fb63346f 100644 --- a/script-inputs/octez-released-executables +++ b/script-inputs/octez-released-executables @@ -7,7 +7,7 @@ octez-admin-client octez-accuser octez-baker octez-node -octez-accuser-PtSEouLo -octez-baker-PtSEouLo +octez-accuser-PtSeouLo +octez-baker-PtSeouLo octez-accuser-PsRiotum octez-baker-PsRiotum diff --git a/script-inputs/released-executables b/script-inputs/released-executables index dc305e57674a..62d7fb63346f 100644 --- a/script-inputs/released-executables +++ b/script-inputs/released-executables @@ -7,7 +7,7 @@ octez-admin-client octez-accuser octez-baker octez-node -octez-accuser-PtSEouLo -octez-baker-PtSEouLo +octez-accuser-PtSeouLo +octez-baker-PtSeouLo octez-accuser-PsRiotum octez-baker-PsRiotum diff --git a/src/bin_agnostic_accuser/dune b/src/bin_agnostic_accuser/dune index b5a8c8eed437..24858340dc70 100644 --- a/src/bin_agnostic_accuser/dune +++ b/src/bin_agnostic_accuser/dune @@ -14,7 +14,7 @@ octez-shell-libs.client-base-unix octez-baker-lib octez-protocol-022-PsRiotum-libs.agnostic-baker - octez-protocol-023-PtSEouLo-libs.agnostic-baker + octez-protocol-023-PtSeouLo-libs.agnostic-baker (select void_for_linking-octez-protocol-alpha-libs-agnostic-baker from (octez-protocol-alpha-libs.agnostic-baker -> void_for_linking-octez-protocol-alpha-libs-agnostic-baker.empty) (-> void_for_linking-octez-protocol-alpha-libs-agnostic-baker.empty))) diff --git a/src/bin_agnostic_baker/dune b/src/bin_agnostic_baker/dune index 9ca39cd9048c..fab3e6451688 100644 --- a/src/bin_agnostic_baker/dune +++ b/src/bin_agnostic_baker/dune @@ -19,8 +19,8 @@ (-> void_for_linking-octez-protocol-021-PsQuebec-libs-dal.empty)) octez-protocol-022-PsRiotum-libs.agnostic-baker octez-protocol-022-PsRiotum-libs.dal - octez-protocol-023-PtSEouLo-libs.agnostic-baker - octez-protocol-023-PtSEouLo-libs.dal + octez-protocol-023-PtSeouLo-libs.agnostic-baker + octez-protocol-023-PtSeouLo-libs.dal (select void_for_linking-octez-protocol-alpha-libs-agnostic-baker from (octez-protocol-alpha-libs.agnostic-baker -> void_for_linking-octez-protocol-alpha-libs-agnostic-baker.empty) (-> void_for_linking-octez-protocol-alpha-libs-agnostic-baker.empty)) diff --git a/src/bin_client/dune b/src/bin_client/dune index 5fd8895e5f5b..36038f6b3308 100644 --- a/src/bin_client/dune +++ b/src/bin_client/dune @@ -142,9 +142,9 @@ octez-protocol-022-PsRiotum-libs.client.commands-registration octez-protocol-022-PsRiotum-libs.baking-commands.registration octez-protocol-022-PsRiotum-libs.plugin - octez-protocol-023-PtSEouLo-libs.client.commands-registration - octez-protocol-023-PtSEouLo-libs.baking-commands.registration - octez-protocol-023-PtSEouLo-libs.plugin + octez-protocol-023-PtSeouLo-libs.client.commands-registration + octez-protocol-023-PtSeouLo-libs.baking-commands.registration + octez-protocol-023-PtSeouLo-libs.plugin (select void_for_linking-octez-protocol-alpha-libs-client-commands-registration from (octez-protocol-alpha-libs.client.commands-registration -> void_for_linking-octez-protocol-alpha-libs-client-commands-registration.empty) (-> void_for_linking-octez-protocol-alpha-libs-client-commands-registration.empty)) diff --git a/src/bin_codec/dune b/src/bin_codec/dune index f9d7dd30d4ea..e7d301003f68 100644 --- a/src/bin_codec/dune +++ b/src/bin_codec/dune @@ -75,9 +75,9 @@ (select void_for_linking-octez-protocol-022-PsRiotum-libs-client from (octez-protocol-022-PsRiotum-libs.client -> void_for_linking-octez-protocol-022-PsRiotum-libs-client.empty) (-> void_for_linking-octez-protocol-022-PsRiotum-libs-client.empty)) - (select void_for_linking-octez-protocol-023-PtSEouLo-libs-client from - (octez-protocol-023-PtSEouLo-libs.client -> void_for_linking-octez-protocol-023-PtSEouLo-libs-client.empty) - (-> void_for_linking-octez-protocol-023-PtSEouLo-libs-client.empty)) + (select void_for_linking-octez-protocol-023-PtSeouLo-libs-client from + (octez-protocol-023-PtSeouLo-libs.client -> void_for_linking-octez-protocol-023-PtSeouLo-libs-client.empty) + (-> void_for_linking-octez-protocol-023-PtSeouLo-libs-client.empty)) (select void_for_linking-octez-protocol-alpha-libs-client from (octez-protocol-alpha-libs.client -> void_for_linking-octez-protocol-alpha-libs-client.empty) (-> void_for_linking-octez-protocol-alpha-libs-client.empty))) @@ -116,5 +116,5 @@ (write-file void_for_linking-octez-protocol-020-PsParisC-libs-client.empty "") (write-file void_for_linking-octez-protocol-021-PsQuebec-libs-client.empty "") (write-file void_for_linking-octez-protocol-022-PsRiotum-libs-client.empty "") - (write-file void_for_linking-octez-protocol-023-PtSEouLo-libs-client.empty "") + (write-file void_for_linking-octez-protocol-023-PtSeouLo-libs-client.empty "") (write-file void_for_linking-octez-protocol-alpha-libs-client.empty "")))) diff --git a/src/bin_dal_node/dune b/src/bin_dal_node/dune index 7d8de2c9c4d1..aca83e7732e2 100644 --- a/src/bin_dal_node/dune +++ b/src/bin_dal_node/dune @@ -19,7 +19,7 @@ (octez-protocol-021-PsQuebec-libs.dal -> void_for_linking-octez-protocol-021-PsQuebec-libs-dal.empty) (-> void_for_linking-octez-protocol-021-PsQuebec-libs-dal.empty)) octez-protocol-022-PsRiotum-libs.dal - octez-protocol-023-PtSEouLo-libs.dal + octez-protocol-023-PtSeouLo-libs.dal (select void_for_linking-octez-protocol-alpha-libs-dal from (octez-protocol-alpha-libs.dal -> void_for_linking-octez-protocol-alpha-libs-dal.empty) (-> void_for_linking-octez-protocol-alpha-libs-dal.empty))) diff --git a/src/bin_node/dune b/src/bin_node/dune index 3ee088ef997a..8db784aec1f7 100644 --- a/src/bin_node/dune +++ b/src/bin_node/dune @@ -167,8 +167,8 @@ (-> void_for_linking-octez-protocol-021-PsQuebec-libs-plugin-registerer.empty)) tezos-protocol-022-PsRiotum.embedded-protocol octez-protocol-022-PsRiotum-libs.plugin-registerer - tezos-protocol-023-PtSEouLo.embedded-protocol - octez-protocol-023-PtSEouLo-libs.plugin-registerer + tezos-protocol-023-PtSeouLo.embedded-protocol + octez-protocol-023-PtSeouLo-libs.plugin-registerer (select void_for_linking-tezos-protocol-alpha-embedded-protocol from (tezos-protocol-alpha.embedded-protocol -> void_for_linking-tezos-protocol-alpha-embedded-protocol.empty) (-> void_for_linking-tezos-protocol-alpha-embedded-protocol.empty)) diff --git a/src/bin_smart_rollup_node/dune b/src/bin_smart_rollup_node/dune index e335b924dc96..a3fdf44486fd 100644 --- a/src/bin_smart_rollup_node/dune +++ b/src/bin_smart_rollup_node/dune @@ -33,7 +33,7 @@ (octez_smart_rollup_node_PsQuebec -> void_for_linking-octez_smart_rollup_node_PsQuebec.empty) (-> void_for_linking-octez_smart_rollup_node_PsQuebec.empty)) octez_smart_rollup_node_PsRiotum - octez_smart_rollup_node_PtSEouLo + octez_smart_rollup_node_PtSeouLo (select void_for_linking-octez_smart_rollup_node_alpha from (octez_smart_rollup_node_alpha -> void_for_linking-octez_smart_rollup_node_alpha.empty) (-> void_for_linking-octez_smart_rollup_node_alpha.empty))) diff --git a/src/lib_smart_rollup_node/test/helpers/dune b/src/lib_smart_rollup_node/test/helpers/dune index 8470b0e66f14..c528c21e7e0f 100644 --- a/src/lib_smart_rollup_node/test/helpers/dune +++ b/src/lib_smart_rollup_node/test/helpers/dune @@ -32,7 +32,7 @@ (octez_smart_rollup_node_PsQuebec -> void_for_linking-octez_smart_rollup_node_PsQuebec.empty) (-> void_for_linking-octez_smart_rollup_node_PsQuebec.empty)) octez_smart_rollup_node_PsRiotum - octez_smart_rollup_node_PtSEouLo + octez_smart_rollup_node_PtSeouLo (select void_for_linking-octez_smart_rollup_node_alpha from (octez_smart_rollup_node_alpha -> void_for_linking-octez_smart_rollup_node_alpha.empty) (-> void_for_linking-octez_smart_rollup_node_alpha.empty))) diff --git a/src/proto_023_PtSeouLo/bin_accuser/dune b/src/proto_023_PtSeouLo/bin_accuser/dune index d63d684b0a0a..bbde19487ae6 100644 --- a/src/proto_023_PtSeouLo/bin_accuser/dune +++ b/src/proto_023_PtSeouLo/bin_accuser/dune @@ -2,19 +2,19 @@ ; Edit file manifest/main.ml instead. (executable - (name main_accuser_023_PtSEouLo) - (public_name octez-accuser-PtSEouLo) - (package octez-accuser-PtSEouLo) + (name main_accuser_023_PtSeouLo) + (public_name octez-accuser-PtSeouLo) + (package octez-accuser-PtSeouLo) (instrumentation (backend bisect_ppx)) (libraries octez-rust-deps bls12-381.archive octez-libs.base octez-libs.clic - tezos-protocol-023-PtSEouLo.protocol - octez-protocol-023-PtSEouLo-libs.client + tezos-protocol-023-PtSeouLo.protocol + octez-protocol-023-PtSeouLo-libs.client octez-shell-libs.client-commands - octez-protocol-023-PtSEouLo-libs.baking-commands + octez-protocol-023-PtSeouLo-libs.baking-commands octez-libs.stdlib-unix octez-shell-libs.client-base-unix octez-libs.octez-profiler.backends) @@ -25,10 +25,10 @@ (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo - -open Tezos_client_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo + -open Tezos_client_023_PtSeouLo -open Tezos_client_commands - -open Tezos_baking_023_PtSEouLo_commands + -open Tezos_baking_023_PtSeouLo_commands -open Tezos_stdlib_unix -open Tezos_client_base_unix -open Tezos_profiler_backends)) diff --git a/src/proto_023_PtSeouLo/bin_baker/dune b/src/proto_023_PtSeouLo/bin_baker/dune index e8cd8fb1ce05..ec6adc7e9284 100644 --- a/src/proto_023_PtSeouLo/bin_baker/dune +++ b/src/proto_023_PtSeouLo/bin_baker/dune @@ -2,19 +2,19 @@ ; Edit file manifest/main.ml instead. (executable - (name main_baker_023_PtSEouLo) - (public_name octez-baker-PtSEouLo) - (package octez-baker-PtSEouLo) + (name main_baker_023_PtSeouLo) + (public_name octez-baker-PtSeouLo) + (package octez-baker-PtSeouLo) (instrumentation (backend bisect_ppx)) (libraries octez-rust-deps bls12-381.archive octez-libs.base octez-libs.clic - tezos-protocol-023-PtSEouLo.protocol - octez-protocol-023-PtSEouLo-libs.client + tezos-protocol-023-PtSeouLo.protocol + octez-protocol-023-PtSeouLo-libs.client octez-shell-libs.client-commands - octez-protocol-023-PtSEouLo-libs.baking-commands + octez-protocol-023-PtSeouLo-libs.baking-commands octez-libs.stdlib-unix octez-shell-libs.client-base-unix octez-libs.octez-profiler.backends) @@ -25,10 +25,10 @@ (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo - -open Tezos_client_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo + -open Tezos_client_023_PtSeouLo -open Tezos_client_commands - -open Tezos_baking_023_PtSEouLo_commands + -open Tezos_baking_023_PtSeouLo_commands -open Tezos_stdlib_unix -open Tezos_client_base_unix -open Tezos_profiler_backends)) diff --git a/src/proto_023_PtSeouLo/lib_agnostic_baker/dune b/src/proto_023_PtSeouLo/lib_agnostic_baker/dune index 148d436a000e..64ca7ef68818 100644 --- a/src/proto_023_PtSeouLo/lib_agnostic_baker/dune +++ b/src/proto_023_PtSeouLo/lib_agnostic_baker/dune @@ -2,22 +2,22 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_agnostic_baker_023_PtSEouLo) - (public_name octez-protocol-023-PtSEouLo-libs.agnostic-baker) + (name tezos_agnostic_baker_023_PtSeouLo) + (public_name octez-protocol-023-PtSeouLo-libs.agnostic-baker) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base - octez-protocol-023-PtSEouLo-libs.client - tezos-protocol-023-PtSEouLo.protocol - octez-protocol-023-PtSEouLo-libs.baking - octez-protocol-023-PtSEouLo-libs.baking-commands + octez-protocol-023-PtSeouLo-libs.client + tezos-protocol-023-PtSeouLo.protocol + octez-protocol-023-PtSeouLo-libs.baking + octez-protocol-023-PtSeouLo-libs.baking-commands octez-baker-lib) (library_flags (:standard -linkall)) (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_client_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo - -open Tezos_baking_023_PtSEouLo - -open Tezos_baking_023_PtSEouLo_commands + -open Tezos_client_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo + -open Tezos_baking_023_PtSeouLo + -open Tezos_baking_023_PtSeouLo_commands -open Octez_agnostic_baker)) diff --git a/src/proto_023_PtSeouLo/lib_benchmark/dune b/src/proto_023_PtSeouLo/lib_benchmark/dune index f55c068fc81e..8ae20c33e6ab 100644 --- a/src/proto_023_PtSeouLo/lib_benchmark/dune +++ b/src/proto_023_PtSeouLo/lib_benchmark/dune @@ -2,8 +2,8 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_benchmark_023_PtSEouLo) - (public_name tezos-benchmark-023-PtSEouLo) + (name tezos_benchmark_023_PtSeouLo) + (public_name tezos-benchmark-023-PtSeouLo) (libraries octez-libs.stdlib octez-libs.base @@ -11,12 +11,12 @@ octez-libs.micheline tezos-micheline-rewriting tezos-benchmark - tezos-benchmark-type-inference-023-PtSEouLo - tezos-protocol-023-PtSEouLo.protocol + tezos-benchmark-type-inference-023-PtSeouLo + tezos-protocol-023-PtSeouLo.protocol octez-libs.crypto - tezos-protocol-023-PtSEouLo.parameters + tezos-protocol-023-PtSeouLo.parameters hashcons - octez-protocol-023-PtSEouLo-libs.test-helpers + octez-protocol-023-PtSeouLo-libs.test-helpers prbnmcn-stats) (library_flags (:standard -linkall)) (flags @@ -27,9 +27,9 @@ -open Tezos_micheline -open Tezos_micheline_rewriting -open Tezos_benchmark - -open Tezos_benchmark_type_inference_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo - -open Tezos_023_PtSEouLo_test_helpers) + -open Tezos_benchmark_type_inference_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo + -open Tezos_023_PtSeouLo_test_helpers) (private_modules kernel rules state_space)) (rule diff --git a/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/dune b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/dune index 451ec6740f5f..1c1d81a4c25e 100644 --- a/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/dune +++ b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/dune @@ -2,8 +2,8 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_benchmark_type_inference_023_PtSEouLo) - (public_name tezos-benchmark-type-inference-023-PtSEouLo) + (name tezos_benchmark_type_inference_023_PtSeouLo) + (public_name tezos-benchmark-type-inference-023-PtSeouLo) (instrumentation (backend bisect_ppx)) (libraries octez-libs.stdlib @@ -11,7 +11,7 @@ octez-libs.crypto octez-libs.micheline tezos-micheline-rewriting - tezos-protocol-023-PtSEouLo.protocol + tezos-protocol-023-PtSeouLo.protocol hashcons) (flags (:standard) @@ -20,4 +20,4 @@ -open Tezos_crypto -open Tezos_micheline -open Tezos_micheline_rewriting - -open Tezos_protocol_023_PtSEouLo)) + -open Tezos_protocol_023_PtSeouLo)) diff --git a/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/test/dune b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/test/dune index b03cb695106a..adc92b04e4eb 100644 --- a/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/test/dune +++ b/src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/test/dune @@ -8,24 +8,24 @@ bls12-381.archive octez-libs.micheline tezos-micheline-rewriting - tezos-benchmark-type-inference-023-PtSEouLo - tezos-protocol-023-PtSEouLo.protocol + tezos-benchmark-type-inference-023-PtSeouLo + tezos-protocol-023-PtSeouLo.protocol octez-libs.error-monad - octez-protocol-023-PtSEouLo-libs.client) + octez-protocol-023-PtSeouLo-libs.client) (link_flags (:standard) (:include %{workspace_root}/macos-link-flags.sexp)) (flags (:standard) -open Tezos_micheline - -open Tezos_benchmark_type_inference_023_PtSEouLo)) + -open Tezos_benchmark_type_inference_023_PtSeouLo)) (rule (alias runtest) - (package tezos-benchmark-type-inference-023-PtSEouLo) + (package tezos-benchmark-type-inference-023-PtSeouLo) (action (run %{dep:./test_uf.exe}))) (rule (alias runtest) - (package tezos-benchmark-type-inference-023-PtSEouLo) + (package tezos-benchmark-type-inference-023-PtSeouLo) (action (run %{dep:./test_inference.exe}))) diff --git a/src/proto_023_PtSeouLo/lib_benchmark/test/dune b/src/proto_023_PtSeouLo/lib_benchmark/test/dune index ab5447d202a3..1a6ac40de916 100644 --- a/src/proto_023_PtSeouLo/lib_benchmark/test/dune +++ b/src/proto_023_PtSeouLo/lib_benchmark/test/dune @@ -13,11 +13,11 @@ octez-libs.base octez-libs.micheline tezos-micheline-rewriting - tezos-protocol-023-PtSEouLo.protocol + tezos-protocol-023-PtSeouLo.protocol tezos-benchmark - tezos-benchmark-type-inference-023-PtSEouLo - tezos-benchmark-023-PtSEouLo - octez-protocol-023-PtSEouLo-libs.test-helpers + tezos-benchmark-type-inference-023-PtSeouLo + tezos-benchmark-023-PtSeouLo + octez-protocol-023-PtSeouLo-libs.test-helpers octez-libs.error-monad prbnmcn-stats) (link_flags @@ -26,11 +26,11 @@ (flags (:standard) -open Tezos_micheline - -open Tezos_protocol_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo -open Tezos_benchmark - -open Tezos_benchmark_type_inference_023_PtSEouLo - -open Tezos_benchmark_023_PtSEouLo - -open Tezos_023_PtSEouLo_test_helpers)) + -open Tezos_benchmark_type_inference_023_PtSeouLo + -open Tezos_benchmark_023_PtSeouLo + -open Tezos_023_PtSeouLo_test_helpers)) (rule (alias runtest_micheline_rewriting_data) diff --git a/src/proto_023_PtSeouLo/lib_benchmarks_proto/dune b/src/proto_023_PtSeouLo/lib_benchmarks_proto/dune index cd19370baf51..3833d1b74166 100644 --- a/src/proto_023_PtSeouLo/lib_benchmarks_proto/dune +++ b/src/proto_023_PtSeouLo/lib_benchmarks_proto/dune @@ -2,27 +2,27 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_benchmarks_proto_023_PtSEouLo) - (public_name tezos-benchmarks-proto-023-PtSEouLo) + (name tezos_benchmarks_proto_023_PtSeouLo) + (public_name tezos-benchmarks-proto-023-PtSeouLo) (instrumentation (backend bisect_ppx)) (libraries str octez-libs.stdlib octez-libs.base octez-libs.error-monad - tezos-protocol-023-PtSEouLo.parameters + tezos-protocol-023-PtSeouLo.parameters octez-libs.lazy-containers tezos-benchmark - tezos-benchmark-023-PtSEouLo - tezos-benchmark-type-inference-023-PtSEouLo - tezos-protocol-023-PtSEouLo.protocol + tezos-benchmark-023-PtSeouLo + tezos-benchmark-type-inference-023-PtSeouLo + tezos-protocol-023-PtSeouLo.protocol octez-libs.crypto octez-shell-libs.shell-benchmarks octez-libs.micheline - octez-protocol-023-PtSEouLo-libs.test-helpers + octez-protocol-023-PtSeouLo-libs.test-helpers octez-libs.tezos-sapling - octez-protocol-023-PtSEouLo-libs.client - octez-protocol-023-PtSEouLo-libs.plugin + octez-protocol-023-PtSeouLo-libs.client + octez-protocol-023-PtSeouLo-libs.plugin octez-proto-libs.protocol-environment) (library_flags (:standard -linkall)) (flags @@ -31,17 +31,17 @@ -open Tezos_base -open Tezos_base.TzPervasives -open Tezos_error_monad - -open Tezos_protocol_023_PtSEouLo_parameters + -open Tezos_protocol_023_PtSeouLo_parameters -open Tezos_lazy_containers -open Tezos_benchmark - -open Tezos_benchmark_023_PtSEouLo - -open Tezos_benchmark_type_inference_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo.Protocol + -open Tezos_benchmark_023_PtSeouLo + -open Tezos_benchmark_type_inference_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo.Protocol -open Tezos_micheline - -open Tezos_023_PtSEouLo_test_helpers - -open Tezos_client_023_PtSEouLo - -open Tezos_protocol_plugin_023_PtSEouLo)) + -open Tezos_023_PtSeouLo_test_helpers + -open Tezos_client_023_PtSeouLo + -open Tezos_protocol_plugin_023_PtSeouLo)) (rule (targets signature.ml) diff --git a/src/proto_023_PtSeouLo/lib_client/dune b/src/proto_023_PtSeouLo/lib_client/dune index ccdaacb5be6e..f454f64a0458 100644 --- a/src/proto_023_PtSeouLo/lib_client/dune +++ b/src/proto_023_PtSeouLo/lib_client/dune @@ -2,23 +2,23 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_client_023_PtSEouLo) - (public_name octez-protocol-023-PtSEouLo-libs.client) + (name tezos_client_023_PtSeouLo) + (public_name octez-protocol-023-PtSeouLo-libs.client) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base octez-libs.clic octez-shell-libs.shell-services octez-shell-libs.client-base - tezos-protocol-023-PtSEouLo.protocol - tezos-protocol-023-PtSEouLo.protocol.lifted + tezos-protocol-023-PtSeouLo.protocol + tezos-protocol-023-PtSeouLo.protocol.lifted octez-shell-libs.mockup-registration octez-shell-libs.proxy octez-shell-libs.signer-backends - octez-protocol-023-PtSEouLo-libs.plugin - tezos-protocol-023-PtSEouLo.parameters + octez-protocol-023-PtSeouLo-libs.plugin + tezos-protocol-023-PtSeouLo.parameters octez-libs.rpc - octez-protocol-023-PtSEouLo-libs.smart-rollup + octez-protocol-023-PtSeouLo-libs.smart-rollup uri) (inline_tests (flags -verbose) @@ -32,11 +32,11 @@ -open Tezos_base.TzPervasives -open Tezos_shell_services -open Tezos_client_base - -open Tezos_protocol_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo_lifted - -open Tezos_protocol_plugin_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo_parameters - -open Tezos_smart_rollup_023_PtSEouLo)) + -open Tezos_protocol_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo_lifted + -open Tezos_protocol_plugin_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo_parameters + -open Tezos_smart_rollup_023_PtSeouLo)) (rule (targets client_keys.ml) diff --git a/src/proto_023_PtSeouLo/lib_client/test/dune b/src/proto_023_PtSeouLo/lib_client/test/dune index b6cab8803dbc..dfb691f27df6 100644 --- a/src/proto_023_PtSeouLo/lib_client/test/dune +++ b/src/proto_023_PtSeouLo/lib_client/test/dune @@ -2,15 +2,15 @@ ; Edit file manifest/main.ml instead. (library - (name src_proto_023_PtSEouLo_lib_client_test_tezt_lib) + (name src_proto_023_PtSeouLo_lib_client_test_tezt_lib) (instrumentation (backend bisect_ppx)) (libraries tezt.core bls12-381.archive octez-libs.base octez-libs.micheline - octez-protocol-023-PtSEouLo-libs.client - tezos-protocol-023-PtSEouLo.protocol + octez-protocol-023-PtSeouLo-libs.client + tezos-protocol-023-PtSeouLo.protocol octez-libs.base-test-helpers octez-libs.test-helpers octez-alcotezt @@ -22,8 +22,8 @@ -open Tezt_core.Base -open Tezos_base.TzPervasives -open Tezos_micheline - -open Tezos_client_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo + -open Tezos_client_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo -open Tezos_base_test_helpers -open Tezos_test_helpers -open Octez_alcotezt) @@ -38,7 +38,7 @@ (instrumentation (backend bisect_ppx --bisect-sigterm)) (libraries octez-rust-deps - src_proto_023_PtSEouLo_lib_client_test_tezt_lib + src_proto_023_PtSeouLo_lib_client_test_tezt_lib tezt) (link_flags (:standard) @@ -47,7 +47,7 @@ (rule (alias runtest) - (package octez-protocol-023-PtSEouLo-libs) + (package octez-protocol-023-PtSeouLo-libs) (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe} /flaky /ci_disabled))) diff --git a/src/proto_023_PtSeouLo/lib_client_commands/dune b/src/proto_023_PtSeouLo/lib_client_commands/dune index c131b9e9451f..6bab8fe68aa5 100644 --- a/src/proto_023_PtSeouLo/lib_client_commands/dune +++ b/src/proto_023_PtSeouLo/lib_client_commands/dune @@ -2,14 +2,14 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_client_023_PtSEouLo_commands) - (public_name octez-protocol-023-PtSEouLo-libs.client.commands) + (name tezos_client_023_PtSeouLo_commands) + (public_name octez-protocol-023-PtSeouLo-libs.client.commands) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base octez-libs.clic - tezos-protocol-023-PtSEouLo.protocol - tezos-protocol-023-PtSEouLo.parameters + tezos-protocol-023-PtSeouLo.protocol + tezos-protocol-023-PtSeouLo.parameters octez-libs.stdlib-unix octez-proto-libs.protocol-environment octez-shell-libs.shell-services @@ -17,25 +17,25 @@ octez-shell-libs.mockup-registration octez-shell-libs.mockup-commands octez-shell-libs.client-base - octez-protocol-023-PtSEouLo-libs.client + octez-protocol-023-PtSeouLo-libs.client octez-shell-libs.client-commands octez-libs.rpc octez-shell-libs.client-base-unix - octez-protocol-023-PtSEouLo-libs.plugin + octez-protocol-023-PtSeouLo-libs.plugin uri) (library_flags (:standard -linkall)) (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo_parameters + -open Tezos_protocol_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo_parameters -open Tezos_stdlib_unix -open Tezos_shell_services -open Tezos_client_base - -open Tezos_client_023_PtSEouLo + -open Tezos_client_023_PtSeouLo -open Tezos_client_commands -open Tezos_client_base_unix - -open Tezos_protocol_plugin_023_PtSEouLo) + -open Tezos_protocol_plugin_023_PtSeouLo) (modules (:standard \ alpha_commands_registration))) (rule @@ -50,34 +50,34 @@ (action (write-file %{targets} "include Tezos_client_base.Client_keys_v2"))) (library - (name tezos_client_023_PtSEouLo_commands_registration) - (public_name octez-protocol-023-PtSEouLo-libs.client.commands-registration) + (name tezos_client_023_PtSeouLo_commands_registration) + (public_name octez-protocol-023-PtSeouLo-libs.client.commands-registration) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base octez-libs.clic - tezos-protocol-023-PtSEouLo.protocol - tezos-protocol-023-PtSEouLo.parameters + tezos-protocol-023-PtSeouLo.protocol + tezos-protocol-023-PtSeouLo.parameters octez-proto-libs.protocol-environment octez-shell-libs.shell-services octez-shell-libs.client-base - octez-protocol-023-PtSEouLo-libs.client + octez-protocol-023-PtSeouLo-libs.client octez-shell-libs.client-commands - octez-protocol-023-PtSEouLo-libs.client.commands - octez-protocol-023-PtSEouLo-libs.client.sapling + octez-protocol-023-PtSeouLo-libs.client.commands + octez-protocol-023-PtSeouLo-libs.client.sapling octez-libs.rpc - octez-protocol-023-PtSEouLo-libs.plugin) + octez-protocol-023-PtSeouLo-libs.plugin) (library_flags (:standard -linkall)) (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo_parameters + -open Tezos_protocol_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo_parameters -open Tezos_shell_services -open Tezos_client_base - -open Tezos_client_023_PtSEouLo + -open Tezos_client_023_PtSeouLo -open Tezos_client_commands - -open Tezos_client_023_PtSEouLo_commands - -open Tezos_client_sapling_023_PtSEouLo - -open Tezos_protocol_plugin_023_PtSEouLo) + -open Tezos_client_023_PtSeouLo_commands + -open Tezos_client_sapling_023_PtSeouLo + -open Tezos_protocol_plugin_023_PtSeouLo) (modules alpha_commands_registration)) diff --git a/src/proto_023_PtSeouLo/lib_client_sapling/dune b/src/proto_023_PtSeouLo/lib_client_sapling/dune index 7303346ebcf5..5c185225aca1 100644 --- a/src/proto_023_PtSeouLo/lib_client_sapling/dune +++ b/src/proto_023_PtSeouLo/lib_client_sapling/dune @@ -2,8 +2,8 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_client_sapling_023_PtSEouLo) - (public_name octez-protocol-023-PtSEouLo-libs.client.sapling) + (name tezos_client_sapling_023_PtSeouLo) + (public_name octez-protocol-023-PtSeouLo-libs.client.sapling) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base @@ -12,17 +12,17 @@ octez-libs.stdlib-unix octez-shell-libs.client-base octez-shell-libs.signer-backends - octez-protocol-023-PtSEouLo-libs.client - octez-protocol-023-PtSEouLo-libs.client.commands - tezos-protocol-023-PtSEouLo.protocol - octez-protocol-023-PtSEouLo-libs.plugin) + octez-protocol-023-PtSeouLo-libs.client + octez-protocol-023-PtSeouLo-libs.client.commands + tezos-protocol-023-PtSeouLo.protocol + octez-protocol-023-PtSeouLo-libs.plugin) (library_flags (:standard -linkall)) (flags (:standard) -open Tezos_base.TzPervasives -open Tezos_stdlib_unix -open Tezos_client_base - -open Tezos_client_023_PtSEouLo - -open Tezos_client_023_PtSEouLo_commands - -open Tezos_protocol_023_PtSEouLo - -open Tezos_protocol_plugin_023_PtSEouLo)) + -open Tezos_client_023_PtSeouLo + -open Tezos_client_023_PtSeouLo_commands + -open Tezos_protocol_023_PtSeouLo + -open Tezos_protocol_plugin_023_PtSeouLo)) diff --git a/src/proto_023_PtSeouLo/lib_dal/dune b/src/proto_023_PtSeouLo/lib_dal/dune index 2b144601ca21..2a8d7ad30d38 100644 --- a/src/proto_023_PtSeouLo/lib_dal/dune +++ b/src/proto_023_PtSeouLo/lib_dal/dune @@ -2,8 +2,8 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_dal_023_PtSEouLo) - (public_name octez-protocol-023-PtSEouLo-libs.dal) + (name tezos_dal_023_PtSeouLo) + (public_name octez-protocol-023-PtSeouLo-libs.dal) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base @@ -11,11 +11,11 @@ octez-libs.stdlib-unix octez-shell-libs.shell-services tezos-dal-node-lib - octez-protocol-023-PtSEouLo-libs.client - octez-protocol-023-PtSEouLo-libs.plugin - tezos-protocol-023-PtSEouLo.embedded-protocol - octez-protocol-023-PtSEouLo-libs.layer2-utils - tezos-protocol-023-PtSEouLo.protocol) + octez-protocol-023-PtSeouLo-libs.client + octez-protocol-023-PtSeouLo-libs.plugin + tezos-protocol-023-PtSeouLo.embedded-protocol + octez-protocol-023-PtSeouLo-libs.layer2-utils + tezos-protocol-023-PtSeouLo.protocol) (inline_tests (flags -verbose) (modes native) @@ -30,11 +30,11 @@ -open Tezos_stdlib_unix -open Tezos_shell_services -open Tezos_dal_node_lib - -open Tezos_client_023_PtSEouLo - -open Tezos_protocol_plugin_023_PtSEouLo - -open Tezos_embedded_protocol_023_PtSEouLo - -open Tezos_layer2_utils_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo)) + -open Tezos_client_023_PtSeouLo + -open Tezos_protocol_plugin_023_PtSeouLo + -open Tezos_embedded_protocol_023_PtSeouLo + -open Tezos_layer2_utils_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo)) (rule (targets signature.ml) diff --git a/src/proto_023_PtSeouLo/lib_dal/test/dune b/src/proto_023_PtSeouLo/lib_dal/test/dune index 96d178702617..8a55dca158fa 100644 --- a/src/proto_023_PtSeouLo/lib_dal/test/dune +++ b/src/proto_023_PtSeouLo/lib_dal/test/dune @@ -2,16 +2,16 @@ ; Edit file manifest/main.ml instead. (library - (name src_proto_023_PtSEouLo_lib_dal_test_tezt_lib) + (name src_proto_023_PtSeouLo_lib_dal_test_tezt_lib) (instrumentation (backend bisect_ppx)) (libraries tezt.core bls12-381.archive octez-libs.base - octez-protocol-023-PtSEouLo-libs.dal - tezos-protocol-023-PtSEouLo.protocol + octez-protocol-023-PtSeouLo-libs.dal + tezos-protocol-023-PtSeouLo.protocol octez-libs.base-test-helpers - octez-protocol-023-PtSEouLo-libs.test-helpers + octez-protocol-023-PtSeouLo-libs.test-helpers octez-alcotezt) (library_flags (:standard -linkall)) (flags @@ -19,10 +19,10 @@ -open Tezt_core -open Tezt_core.Base -open Tezos_base.TzPervasives - -open Tezos_dal_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo + -open Tezos_dal_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo -open Tezos_base_test_helpers - -open Tezos_023_PtSEouLo_test_helpers + -open Tezos_023_PtSeouLo_test_helpers -open Octez_alcotezt) (modules test_dal_slot_frame_encoding test_helpers)) @@ -31,7 +31,7 @@ (instrumentation (backend bisect_ppx --bisect-sigterm)) (libraries octez-rust-deps - src_proto_023_PtSEouLo_lib_dal_test_tezt_lib + src_proto_023_PtSeouLo_lib_dal_test_tezt_lib tezt) (link_flags (:standard) @@ -40,7 +40,7 @@ (rule (alias runtest) - (package octez-protocol-023-PtSEouLo-libs) + (package octez-protocol-023-PtSeouLo-libs) (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe} /flaky /ci_disabled))) diff --git a/src/proto_023_PtSeouLo/lib_delegate/dune b/src/proto_023_PtSeouLo/lib_delegate/dune index ec7483c3f245..20483cedd539 100644 --- a/src/proto_023_PtSeouLo/lib_delegate/dune +++ b/src/proto_023_PtSeouLo/lib_delegate/dune @@ -2,21 +2,21 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_baking_023_PtSEouLo) - (public_name octez-protocol-023-PtSEouLo-libs.baking) + (name tezos_baking_023_PtSeouLo) + (public_name octez-protocol-023-PtSeouLo-libs.baking) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base octez-libs.clic octez-version.value - tezos-protocol-023-PtSEouLo.protocol - tezos-protocol-023-PtSEouLo.protocol.lifted - octez-protocol-023-PtSEouLo-libs.plugin + tezos-protocol-023-PtSeouLo.protocol + tezos-protocol-023-PtSeouLo.protocol.lifted + octez-protocol-023-PtSeouLo-libs.plugin octez-proto-libs.protocol-environment octez-shell-libs.shell-services octez-node-config octez-shell-libs.client-base - octez-protocol-023-PtSEouLo-libs.client + octez-protocol-023-PtSeouLo-libs.client octez-shell-libs.client-commands octez-libs.stdlib octez-libs.stdlib-unix @@ -39,12 +39,12 @@ (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo_lifted - -open Tezos_protocol_plugin_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo_lifted + -open Tezos_protocol_plugin_023_PtSeouLo -open Tezos_shell_services -open Tezos_client_base - -open Tezos_client_023_PtSEouLo + -open Tezos_client_023_PtSeouLo -open Tezos_client_commands -open Tezos_stdlib -open Tezos_stdlib_unix @@ -68,60 +68,60 @@ (action (write-file %{targets} "include Tezos_client_base.Client_keys_v2"))) (library - (name tezos_baking_023_PtSEouLo_commands) - (public_name octez-protocol-023-PtSEouLo-libs.baking-commands) + (name tezos_baking_023_PtSeouLo_commands) + (public_name octez-protocol-023-PtSeouLo-libs.baking-commands) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base - tezos-protocol-023-PtSEouLo.protocol - tezos-protocol-023-PtSEouLo.parameters + tezos-protocol-023-PtSeouLo.protocol + tezos-protocol-023-PtSeouLo.parameters octez-libs.stdlib-unix octez-proto-libs.protocol-environment octez-shell-libs.shell-services octez-shell-libs.client-base - octez-protocol-023-PtSEouLo-libs.client + octez-protocol-023-PtSeouLo-libs.client octez-shell-libs.client-commands - octez-protocol-023-PtSEouLo-libs.baking + octez-protocol-023-PtSeouLo-libs.baking octez-libs.rpc uri) (library_flags (:standard -linkall)) (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo_parameters + -open Tezos_protocol_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo_parameters -open Tezos_stdlib_unix -open Tezos_shell_services -open Tezos_client_base - -open Tezos_client_023_PtSEouLo + -open Tezos_client_023_PtSeouLo -open Tezos_client_commands - -open Tezos_baking_023_PtSEouLo) + -open Tezos_baking_023_PtSeouLo) (modules Baking_commands)) (library - (name tezos_baking_023_PtSEouLo_commands_registration) - (public_name octez-protocol-023-PtSEouLo-libs.baking-commands.registration) + (name tezos_baking_023_PtSeouLo_commands_registration) + (public_name octez-protocol-023-PtSeouLo-libs.baking-commands.registration) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base - tezos-protocol-023-PtSEouLo.protocol + tezos-protocol-023-PtSeouLo.protocol octez-proto-libs.protocol-environment octez-shell-libs.shell-services octez-shell-libs.client-base - octez-protocol-023-PtSEouLo-libs.client + octez-protocol-023-PtSeouLo-libs.client octez-shell-libs.client-commands - octez-protocol-023-PtSEouLo-libs.baking - octez-protocol-023-PtSEouLo-libs.baking-commands + octez-protocol-023-PtSeouLo-libs.baking + octez-protocol-023-PtSeouLo-libs.baking-commands octez-libs.rpc) (library_flags (:standard -linkall)) (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo -open Tezos_shell_services -open Tezos_client_base - -open Tezos_client_023_PtSEouLo + -open Tezos_client_023_PtSeouLo -open Tezos_client_commands - -open Tezos_baking_023_PtSEouLo - -open Tezos_baking_023_PtSEouLo_commands) + -open Tezos_baking_023_PtSeouLo + -open Tezos_baking_023_PtSeouLo_commands) (modules Baking_commands_registration)) diff --git a/src/proto_023_PtSeouLo/lib_delegate/test/dune b/src/proto_023_PtSeouLo/lib_delegate/test/dune index 09197378c044..b07a012ec81e 100644 --- a/src/proto_023_PtSeouLo/lib_delegate/test/dune +++ b/src/proto_023_PtSeouLo/lib_delegate/test/dune @@ -2,7 +2,7 @@ ; Edit file manifest/main.ml instead. (library - (name src_proto_023_PtSEouLo_lib_delegate_test_tezt_lib) + (name src_proto_023_PtSeouLo_lib_delegate_test_tezt_lib) (instrumentation (backend bisect_ppx)) (libraries tezt.core @@ -10,12 +10,12 @@ octez-libs.base octez-libs.test-helpers octez-libs.micheline - octez-protocol-023-PtSEouLo-libs.client - tezos-protocol-023-PtSEouLo.protocol + octez-protocol-023-PtSeouLo-libs.client + tezos-protocol-023-PtSeouLo.protocol octez-libs.base-test-helpers - octez-protocol-023-PtSEouLo-libs.bakings.mockup-simulator - octez-protocol-023-PtSEouLo-libs.baking - tezos-protocol-023-PtSEouLo.parameters + octez-protocol-023-PtSeouLo-libs.bakings.mockup-simulator + octez-protocol-023-PtSeouLo-libs.baking + tezos-protocol-023-PtSeouLo.parameters octez-libs.crypto octez-libs.event-logging-test-helpers uri) @@ -27,11 +27,11 @@ -open Tezos_base.TzPervasives -open Tezos_test_helpers -open Tezos_micheline - -open Tezos_client_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo + -open Tezos_client_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo -open Tezos_base_test_helpers - -open Tezos_023_PtSEouLo_mockup_simulator - -open Tezos_baking_023_PtSEouLo + -open Tezos_023_PtSeouLo_mockup_simulator + -open Tezos_baking_023_PtSeouLo -open Tezos_event_logging_test_helpers) (modules test_scenario)) @@ -40,7 +40,7 @@ (instrumentation (backend bisect_ppx --bisect-sigterm)) (libraries octez-rust-deps - src_proto_023_PtSEouLo_lib_delegate_test_tezt_lib + src_proto_023_PtSeouLo_lib_delegate_test_tezt_lib tezt) (link_flags (:standard) @@ -49,7 +49,7 @@ (rule (alias runtest) - (package octez-protocol-023-PtSEouLo-libs) + (package octez-protocol-023-PtSeouLo-libs) (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe} /flaky /ci_disabled))) diff --git a/src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/dune b/src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/dune index 85778634dbe5..c2d75c574e37 100644 --- a/src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/dune +++ b/src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator/dune @@ -2,34 +2,34 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_023_PtSEouLo_mockup_simulator) - (public_name octez-protocol-023-PtSEouLo-libs.bakings.mockup-simulator) + (name tezos_023_PtSeouLo_mockup_simulator) + (public_name octez-protocol-023-PtSeouLo-libs.bakings.mockup-simulator) (libraries octez-libs.base - tezos-protocol-023-PtSEouLo.protocol - octez-protocol-023-PtSEouLo-libs.client + tezos-protocol-023-PtSeouLo.protocol + octez-protocol-023-PtSeouLo-libs.client octez-shell-libs.client-commands - octez-protocol-023-PtSEouLo-libs.baking + octez-protocol-023-PtSeouLo-libs.baking octez-libs.stdlib-unix octez-shell-libs.client-base-unix - tezos-protocol-023-PtSEouLo.parameters + tezos-protocol-023-PtSeouLo.parameters octez-shell-libs.mockup octez-shell-libs.mockup-proxy octez-shell-libs.mockup-commands - octez-protocol-023-PtSEouLo-libs.baking.tenderbrute + octez-protocol-023-PtSeouLo-libs.baking.tenderbrute tezt.core) (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo.Protocol - -open Tezos_client_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo.Protocol + -open Tezos_client_023_PtSeouLo -open Tezos_client_commands - -open Tezos_baking_023_PtSEouLo + -open Tezos_baking_023_PtSeouLo -open Tezos_stdlib_unix -open Tezos_client_base_unix - -open Tezos_protocol_023_PtSEouLo_parameters - -open Tenderbrute_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo_parameters + -open Tenderbrute_023_PtSeouLo -open Tezt_core)) (rule diff --git a/src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/dune b/src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/dune index e258bb88363a..efa4db43113f 100644 --- a/src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/dune +++ b/src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/dune @@ -8,9 +8,9 @@ bls12-381.archive octez-libs.base octez-shell-libs.client-base - octez-protocol-023-PtSEouLo-libs.client - tezos-protocol-023-PtSEouLo.protocol - octez-protocol-023-PtSEouLo-libs.baking.tenderbrute) + octez-protocol-023-PtSeouLo-libs.client + tezos-protocol-023-PtSeouLo.protocol + octez-protocol-023-PtSeouLo-libs.baking.tenderbrute) (link_flags (:standard) (:include %{workspace_root}/macos-link-flags.sexp) @@ -20,6 +20,6 @@ -open Tezos_base.TzPervasives -open Tezos_base -open Tezos_client_base - -open Tezos_client_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo - -open Tenderbrute_023_PtSEouLo)) + -open Tezos_client_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo + -open Tenderbrute_023_PtSeouLo)) diff --git a/src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/lib/dune b/src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/lib/dune index 42c10f434716..1c39bf1c7891 100644 --- a/src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/lib/dune +++ b/src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/lib/dune @@ -2,23 +2,23 @@ ; Edit file manifest/main.ml instead. (library - (name tenderbrute_023_PtSEouLo) - (public_name octez-protocol-023-PtSEouLo-libs.baking.tenderbrute) + (name tenderbrute_023_PtSeouLo) + (public_name octez-protocol-023-PtSeouLo-libs.baking.tenderbrute) (libraries octez-libs.data-encoding octez-libs.base octez-libs.base.unix - tezos-protocol-023-PtSEouLo.protocol + tezos-protocol-023-PtSeouLo.protocol octez-shell-libs.client-base - octez-protocol-023-PtSEouLo-libs.client) + octez-protocol-023-PtSeouLo-libs.client) (flags (:standard) -open Data_encoding -open Tezos_base.TzPervasives -open Tezos_base - -open Tezos_protocol_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo -open Tezos_client_base - -open Tezos_client_023_PtSEouLo)) + -open Tezos_client_023_PtSeouLo)) (rule (targets signature.ml) diff --git a/src/proto_023_PtSeouLo/lib_injector/dune b/src/proto_023_PtSeouLo/lib_injector/dune index 3dbd920368ed..c51e3f786821 100644 --- a/src/proto_023_PtSeouLo/lib_injector/dune +++ b/src/proto_023_PtSeouLo/lib_injector/dune @@ -2,25 +2,25 @@ ; Edit file manifest/main.ml instead. (library - (name octez_injector_PtSEouLo) - (package tezos-injector-023-PtSEouLo) + (name octez_injector_PtSeouLo) + (package tezos-injector-023-PtSeouLo) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base - tezos-protocol-023-PtSEouLo.protocol + tezos-protocol-023-PtSeouLo.protocol octez-injector - octez-protocol-023-PtSEouLo-libs.client + octez-protocol-023-PtSeouLo-libs.client octez-shell-libs.client-base - octez-protocol-023-PtSEouLo-libs.plugin) + octez-protocol-023-PtSeouLo-libs.plugin) (library_flags (:standard -linkall)) (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo -open Octez_injector - -open Tezos_client_023_PtSEouLo + -open Tezos_client_023_PtSeouLo -open Tezos_client_base - -open Tezos_protocol_plugin_023_PtSEouLo)) + -open Tezos_protocol_plugin_023_PtSeouLo)) (rule (targets client_keys.ml) diff --git a/src/proto_023_PtSeouLo/lib_layer2_utils/dune b/src/proto_023_PtSeouLo/lib_layer2_utils/dune index c861cacfc810..a66979ada1bd 100644 --- a/src/proto_023_PtSeouLo/lib_layer2_utils/dune +++ b/src/proto_023_PtSeouLo/lib_layer2_utils/dune @@ -2,13 +2,13 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_layer2_utils_023_PtSEouLo) - (public_name octez-protocol-023-PtSEouLo-libs.layer2-utils) + (name tezos_layer2_utils_023_PtSeouLo) + (public_name octez-protocol-023-PtSeouLo-libs.layer2-utils) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base - tezos-protocol-023-PtSEouLo.protocol - octez-protocol-023-PtSEouLo-libs.client) + tezos-protocol-023-PtSeouLo.protocol + octez-protocol-023-PtSeouLo-libs.client) (inline_tests (flags -verbose) (modes native) @@ -19,5 +19,5 @@ (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo - -open Tezos_client_023_PtSEouLo)) + -open Tezos_protocol_023_PtSeouLo + -open Tezos_client_023_PtSeouLo)) diff --git a/src/proto_023_PtSeouLo/lib_parameters/dune b/src/proto_023_PtSeouLo/lib_parameters/dune index 2e77f8d5ea9d..8aa4bc74dbe2 100644 --- a/src/proto_023_PtSeouLo/lib_parameters/dune +++ b/src/proto_023_PtSeouLo/lib_parameters/dune @@ -2,18 +2,18 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_protocol_023_PtSEouLo_parameters) - (public_name tezos-protocol-023-PtSEouLo.parameters) + (name tezos_protocol_023_PtSeouLo_parameters) + (public_name tezos-protocol-023-PtSeouLo.parameters) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base octez-proto-libs.protocol-environment - tezos-protocol-023-PtSEouLo.protocol) + tezos-protocol-023-PtSeouLo.protocol) (library_flags (:standard -linkall)) (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo) + -open Tezos_protocol_023_PtSeouLo) (modules (:standard \ gen))) (rule @@ -29,8 +29,8 @@ octez-rust-deps bls12-381.archive octez-libs.base - tezos-protocol-023-PtSEouLo.parameters - tezos-protocol-023-PtSEouLo.protocol) + tezos-protocol-023-PtSeouLo.parameters + tezos-protocol-023-PtSeouLo.protocol) (link_flags (:standard) (:include %{workspace_root}/macos-link-flags.sexp) @@ -38,8 +38,8 @@ (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo_parameters - -open Tezos_protocol_023_PtSEouLo) + -open Tezos_protocol_023_PtSeouLo_parameters + -open Tezos_protocol_023_PtSeouLo) (modules gen)) (rule @@ -63,7 +63,7 @@ (action (run %{deps} --mainnet-with-chain-id))) (install - (package tezos-protocol-023-PtSEouLo) + (package tezos-protocol-023-PtSeouLo) (section lib) (files sandbox-parameters.json test-parameters.json mainnet-parameters.json diff --git a/src/proto_023_PtSeouLo/lib_plugin/dune b/src/proto_023_PtSeouLo/lib_plugin/dune index 8f1dc22f923b..142a741e0c42 100644 --- a/src/proto_023_PtSeouLo/lib_plugin/dune +++ b/src/proto_023_PtSeouLo/lib_plugin/dune @@ -2,21 +2,21 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_protocol_plugin_023_PtSEouLo) - (public_name octez-protocol-023-PtSEouLo-libs.plugin) + (name tezos_protocol_plugin_023_PtSeouLo) + (public_name octez-protocol-023-PtSeouLo-libs.plugin) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base - tezos-protocol-023-PtSEouLo.protocol - octez-protocol-023-PtSEouLo-libs.smart-rollup) + tezos-protocol-023-PtSeouLo.protocol + octez-protocol-023-PtSeouLo-libs.smart-rollup) (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo - -open Tezos_smart_rollup_023_PtSEouLo) + -open Tezos_protocol_023_PtSeouLo + -open Tezos_smart_rollup_023_PtSeouLo) (modules (:standard \ Plugin_registerer))) -(documentation (package octez-protocol-023-PtSEouLo-libs)) +(documentation (package octez-protocol-023-PtSeouLo-libs)) (rule (targets signature.ml) @@ -26,18 +26,18 @@ " module Bls = Tezos_crypto.Signature.Bls\n module Ed25519 = Tezos_crypto.Signature.Ed25519\n module P256 = Tezos_crypto.Signature.P256\n module Secp256k1 = Tezos_crypto.Signature.Secp256k1\n include Tezos_crypto.Signature.V2"))) (library - (name tezos_protocol_plugin_023_PtSEouLo_registerer) - (public_name octez-protocol-023-PtSEouLo-libs.plugin-registerer) + (name tezos_protocol_plugin_023_PtSeouLo_registerer) + (public_name octez-protocol-023-PtSeouLo-libs.plugin-registerer) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base - tezos-protocol-023-PtSEouLo.embedded-protocol - octez-protocol-023-PtSEouLo-libs.plugin + tezos-protocol-023-PtSeouLo.embedded-protocol + octez-protocol-023-PtSeouLo-libs.plugin octez-shell-libs.validation) (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_embedded_protocol_023_PtSEouLo - -open Tezos_protocol_plugin_023_PtSEouLo + -open Tezos_embedded_protocol_023_PtSeouLo + -open Tezos_protocol_plugin_023_PtSeouLo -open Tezos_validation) (modules Plugin_registerer)) diff --git a/src/proto_023_PtSeouLo/lib_plugin/index.mld b/src/proto_023_PtSeouLo/lib_plugin/index.mld index 218d28362d47..0412b5647c41 100644 --- a/src/proto_023_PtSeouLo/lib_plugin/index.mld +++ b/src/proto_023_PtSeouLo/lib_plugin/index.mld @@ -1,17 +1,17 @@ -{0 Octez-protocol-023-PtSEouLo-libs: octez protocol 023-PtSEouLo libraries} +{0 Octez-protocol-023-PtSeouLo-libs: octez protocol 023-PtSeouLo libraries} -This is a package containing some libraries related to the Tezos 023-PtSEouLo protocol. +This is a package containing some libraries related to the Tezos 023-PtSeouLo protocol. It contains the following libraries: -- {{!module-Tezos_023_PtSEouLo_test_helpers}Tezos_023_PtSEouLo_test_helpers}: Protocol testing framework -- {{!module-Tezos_agnostic_baker_023_PtSEouLo}Tezos_agnostic_baker_023_PtSEouLo}: Protocol specific library for the Agnostic Baker -- {{!module-Tezos_baking_023_PtSEouLo}Tezos_baking_023_PtSEouLo}: Base library for `tezos-baker/accuser` -- {{!module-Tezos_baking_023_PtSEouLo_commands}Tezos_baking_023_PtSEouLo_commands}: Protocol-specific commands for baking -- {{!module-Tezos_client_023_PtSEouLo}Tezos_client_023_PtSEouLo}: Protocol specific library for `octez-client` -- {{!module-Tezos_dal_023_PtSEouLo}Tezos_dal_023_PtSEouLo}: Protocol specific library for the Data availability Layer -- {{!module-Tezos_layer2_utils_023_PtSEouLo}Tezos_layer2_utils_023_PtSEouLo}: Protocol specific library for Layer 2 utils -- {{!module-Tezos_protocol_plugin_023_PtSEouLo}Tezos_protocol_plugin_023_PtSEouLo}: Protocol plugin -- {{!module-Tezos_protocol_plugin_023_PtSEouLo_registerer}Tezos_protocol_plugin_023_PtSEouLo_registerer}: Protocol plugin registerer -- {{!module-Tezos_smart_rollup_023_PtSEouLo}Tezos_smart_rollup_023_PtSEouLo}: Protocol specific library of helpers for `tezos-smart-rollup` -- {{!module-Tezos_smart_rollup_layer2_023_PtSEouLo}Tezos_smart_rollup_layer2_023_PtSEouLo}: Protocol specific library for `tezos-smart-rollup` +- {{!module-Tezos_023_PtSeouLo_test_helpers}Tezos_023_PtSeouLo_test_helpers}: Protocol testing framework +- {{!module-Tezos_agnostic_baker_023_PtSeouLo}Tezos_agnostic_baker_023_PtSeouLo}: Protocol specific library for the Agnostic Baker +- {{!module-Tezos_baking_023_PtSeouLo}Tezos_baking_023_PtSeouLo}: Base library for `tezos-baker/accuser` +- {{!module-Tezos_baking_023_PtSeouLo_commands}Tezos_baking_023_PtSeouLo_commands}: Protocol-specific commands for baking +- {{!module-Tezos_client_023_PtSeouLo}Tezos_client_023_PtSeouLo}: Protocol specific library for `octez-client` +- {{!module-Tezos_dal_023_PtSeouLo}Tezos_dal_023_PtSeouLo}: Protocol specific library for the Data availability Layer +- {{!module-Tezos_layer2_utils_023_PtSeouLo}Tezos_layer2_utils_023_PtSeouLo}: Protocol specific library for Layer 2 utils +- {{!module-Tezos_protocol_plugin_023_PtSeouLo}Tezos_protocol_plugin_023_PtSeouLo}: Protocol plugin +- {{!module-Tezos_protocol_plugin_023_PtSeouLo_registerer}Tezos_protocol_plugin_023_PtSeouLo_registerer}: Protocol plugin registerer +- {{!module-Tezos_smart_rollup_023_PtSeouLo}Tezos_smart_rollup_023_PtSeouLo}: Protocol specific library of helpers for `tezos-smart-rollup` +- {{!module-Tezos_smart_rollup_layer2_023_PtSeouLo}Tezos_smart_rollup_layer2_023_PtSeouLo}: Protocol specific library for `tezos-smart-rollup` diff --git a/src/proto_023_PtSeouLo/lib_plugin/test/dune b/src/proto_023_PtSeouLo/lib_plugin/test/dune index 37390a53f40f..92b8d37a5289 100644 --- a/src/proto_023_PtSeouLo/lib_plugin/test/dune +++ b/src/proto_023_PtSeouLo/lib_plugin/test/dune @@ -2,7 +2,7 @@ ; Edit file manifest/main.ml instead. (library - (name src_proto_023_PtSEouLo_lib_plugin_test_tezt_lib) + (name src_proto_023_PtSeouLo_lib_plugin_test_tezt_lib) (instrumentation (backend bisect_ppx)) (libraries tezt.core @@ -15,10 +15,10 @@ qcheck-alcotest octez-libs.stdlib-unix octez-libs.micheline - octez-protocol-023-PtSEouLo-libs.plugin - tezos-protocol-023-PtSEouLo.protocol - tezos-protocol-023-PtSEouLo.parameters - octez-protocol-023-PtSEouLo-libs.test-helpers) + octez-protocol-023-PtSeouLo-libs.plugin + tezos-protocol-023-PtSeouLo.protocol + tezos-protocol-023-PtSeouLo.parameters + octez-protocol-023-PtSeouLo-libs.test-helpers) (library_flags (:standard -linkall)) (flags (:standard) @@ -29,11 +29,11 @@ -open Octez_alcotezt -open Tezos_test_helpers -open Tezos_micheline - -open Tezos_protocol_plugin_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo.Protocol - -open Tezos_protocol_023_PtSEouLo_parameters - -open Tezos_023_PtSEouLo_test_helpers) + -open Tezos_protocol_plugin_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo.Protocol + -open Tezos_protocol_023_PtSeouLo_parameters + -open Tezos_023_PtSeouLo_test_helpers) (modules helpers test_conflict_handler @@ -46,7 +46,7 @@ (instrumentation (backend bisect_ppx --bisect-sigterm)) (libraries octez-rust-deps - src_proto_023_PtSEouLo_lib_plugin_test_tezt_lib + src_proto_023_PtSeouLo_lib_plugin_test_tezt_lib tezt) (link_flags (:standard) @@ -55,7 +55,7 @@ (rule (alias runtest) - (package octez-protocol-023-PtSEouLo-libs) + (package octez-protocol-023-PtSeouLo-libs) (enabled_if (<> false %{env:RUNTEZTALIAS=true})) (action (run %{dep:./main.exe} /flaky /ci_disabled))) diff --git a/src/proto_023_PtSeouLo/lib_protocol/dune b/src/proto_023_PtSeouLo/lib_protocol/dune index b723a5813e98..edf7596fe246 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/dune @@ -2,20 +2,20 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_protocol_environment_023_PtSEouLo) + (name tezos_protocol_environment_023_PtSeouLo) (public_name tezos-protocol-023-PtSeouLo.protocol.environment) (instrumentation (backend bisect_ppx)) (libraries octez-proto-libs.protocol-environment) (library_flags (:standard -linkall)) - (modules Tezos_protocol_environment_023_PtSEouLo)) + (modules Tezos_protocol_environment_023_PtSeouLo)) (rule - (targets tezos_protocol_environment_023_PtSEouLo.ml) + (targets tezos_protocol_environment_023_PtSeouLo.ml) (action (write-file %{targets} - "module Name = struct let name = \"023-PtSEouLo\" end\ninclude Tezos_protocol_environment.V15.Make(Name)()\n"))) + "module Name = struct let name = \"023-PtSeouLo\" end\ninclude Tezos_protocol_environment.V15.Make(Name)()\n"))) (library (name tezos_raw_protocol_023_PtSeouLo) @@ -28,9 +28,9 @@ (:standard) -nostdlib -nopervasives - -open Tezos_protocol_environment_023_PtSEouLo - -open Tezos_protocol_environment_023_PtSEouLo.Pervasives - -open Tezos_protocol_environment_023_PtSEouLo.Error_monad) + -open Tezos_protocol_environment_023_PtSeouLo + -open Tezos_protocol_environment_023_PtSeouLo.Pervasives + -open Tezos_protocol_environment_023_PtSeouLo.Error_monad) (modules Misc Non_empty_string @@ -308,14 +308,14 @@ (action (write-file %{targets} - "\nlet hash = Tezos_crypto.Hashed.Protocol_hash.of_b58check_exn \"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY\"\nlet name = Tezos_protocol_environment_023_PtSEouLo.Name.name\ninclude Tezos_raw_protocol_023_PtSeouLo\ninclude Tezos_raw_protocol_023_PtSEouLo.Main\n"))) + "\nlet hash = Tezos_crypto.Hashed.Protocol_hash.of_b58check_exn \"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh\"\nlet name = Tezos_protocol_environment_023_PtSeouLo.Name.name\ninclude Tezos_raw_protocol_023_PtSeouLo\ninclude Tezos_raw_protocol_023_PtSeouLo.Main\n"))) (rule (targets tezos_protocol_023_PtSeouLo.ml) (action (write-file %{targets} - "\nmodule Environment = Tezos_protocol_environment_023_PtSEouLo\nmodule Protocol = Protocol\n"))) + "\nmodule Environment = Tezos_protocol_environment_023_PtSeouLo\nmodule Protocol = Protocol\n"))) (rule (alias runtest_compile_protocol) @@ -1151,4 +1151,4 @@ %{targets} (chdir %{workspace_root} - (run %{bin:octez-embedded-protocol-packer} %{src_dir} 023_PtSEouLo))))) + (run %{bin:octez-embedded-protocol-packer} %{src_dir} 023_PtSeouLo))))) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/helpers/dune b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/dune index 81bb2236d7ff..7a20b73b516f 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/helpers/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/helpers/dune @@ -2,7 +2,7 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_023_PtSEouLo_test_helpers) + (name tezos_023_PtSeouLo_test_helpers) (public_name octez-protocol-023-PtSeouLo-libs.test-helpers) (instrumentation (backend bisect_ppx)) (libraries @@ -31,12 +31,12 @@ -open Tezos_micheline -open Tezos_stdlib_unix -open Tezos_protocol_023_PtSeouLo - -open Tezos_client_023_PtSEouLo + -open Tezos_client_023_PtSeouLo -open Tezos_protocol_023_PtSeouLo_parameters - -open Tezos_protocol_plugin_023_PtSEouLo + -open Tezos_protocol_plugin_023_PtSeouLo -open Tezos_shell_services -open Tezos_crypto_dal - -open Tezos_smart_rollup_023_PtSEouLo)) + -open Tezos_smart_rollup_023_PtSeouLo)) (rule (targets signature.ml) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/dune index d55983c7057a..df92d667828b 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/dune @@ -3,7 +3,7 @@ (library (name - src_proto_023_PtSEouLo_lib_protocol_test_integration_consensus_tezt_lib) + src_proto_023_PtSeouLo_lib_protocol_test_integration_consensus_tezt_lib) (instrumentation (backend bisect_ppx)) (libraries tezt.core @@ -23,10 +23,10 @@ -open Octez_alcotezt -open Tezos_base.TzPervasives -open Tezos_protocol_023_PtSeouLo - -open Tezos_023_PtSEouLo_test_helpers + -open Tezos_023_PtSeouLo_test_helpers -open Tezos_base_test_helpers -open Tezos_protocol_023_PtSeouLo_parameters - -open Tezos_protocol_plugin_023_PtSEouLo) + -open Tezos_protocol_plugin_023_PtSeouLo) (modules test_baking test_consensus_key @@ -51,7 +51,7 @@ (instrumentation (backend bisect_ppx --bisect-sigterm)) (libraries octez-rust-deps - src_proto_023_PtSEouLo_lib_protocol_test_integration_consensus_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_integration_consensus_tezt_lib tezt) (link_flags (:standard) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/dune index d9ef3e957e48..680d7fbbc7f5 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/dune @@ -2,7 +2,7 @@ ; Edit file manifest/main.ml instead. (library - (name src_proto_023_PtSEouLo_lib_protocol_test_integration_tezt_lib) + (name src_proto_023_PtSeouLo_lib_protocol_test_integration_tezt_lib) (instrumentation (backend bisect_ppx)) (libraries tezt.core @@ -21,12 +21,12 @@ -open Tezt_core -open Tezt_core.Base -open Tezos_base.TzPervasives - -open Tezos_client_023_PtSEouLo + -open Tezos_client_023_PtSeouLo -open Tezos_protocol_023_PtSeouLo -open Tezos_protocol_023_PtSeouLo_parameters - -open Tezos_023_PtSEouLo_test_helpers + -open Tezos_023_PtSeouLo_test_helpers -open Tezos_base_test_helpers - -open Tezos_protocol_plugin_023_PtSEouLo) + -open Tezos_protocol_plugin_023_PtSeouLo) (modules test_constants test_frozen_bonds @@ -46,7 +46,7 @@ (instrumentation (backend bisect_ppx --bisect-sigterm)) (libraries octez-rust-deps - src_proto_023_PtSEouLo_lib_protocol_test_integration_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_integration_tezt_lib tezt) (link_flags (:standard) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/dune index a6f38f81cb00..0b99564dcfdb 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/dune @@ -2,7 +2,7 @@ ; Edit file manifest/main.ml instead. (library - (name src_proto_023_PtSEouLo_lib_protocol_test_integration_gas_tezt_lib) + (name src_proto_023_PtSeouLo_lib_protocol_test_integration_gas_tezt_lib) (instrumentation (backend bisect_ppx)) (libraries tezt.core @@ -20,7 +20,7 @@ -open Octez_alcotezt -open Tezos_base.TzPervasives -open Tezos_protocol_023_PtSeouLo - -open Tezos_023_PtSEouLo_test_helpers + -open Tezos_023_PtSeouLo_test_helpers -open Tezos_base_test_helpers) (modules test_gas_costs test_gas_levels)) @@ -29,7 +29,7 @@ (instrumentation (backend bisect_ppx --bisect-sigterm)) (libraries octez-rust-deps - src_proto_023_PtSEouLo_lib_protocol_test_integration_gas_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_integration_gas_tezt_lib tezt) (link_flags (:standard) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/dune index 3100841a4900..d0b932402020 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/dune @@ -3,7 +3,7 @@ (library (name - src_proto_023_PtSEouLo_lib_protocol_test_integration_michelson_tezt_lib) + src_proto_023_PtSeouLo_lib_protocol_test_integration_michelson_tezt_lib) (instrumentation (backend bisect_ppx)) (libraries tezt.core @@ -16,8 +16,8 @@ octez-protocol-023-PtSeouLo-libs.client tezos-benchmark octez-libs.micheline - tezos-benchmark-023-PtSEouLo - tezos-benchmark-type-inference-023-PtSEouLo + tezos-benchmark-023-PtSeouLo + tezos-benchmark-type-inference-023-PtSeouLo octez-protocol-023-PtSeouLo-libs.plugin tezos-protocol-023-PtSeouLo.parameters) (library_flags (:standard -linkall)) @@ -28,13 +28,13 @@ -open Octez_alcotezt -open Tezos_base.TzPervasives -open Tezos_protocol_023_PtSeouLo - -open Tezos_023_PtSEouLo_test_helpers + -open Tezos_023_PtSeouLo_test_helpers -open Tezos_base_test_helpers - -open Tezos_client_023_PtSEouLo + -open Tezos_client_023_PtSeouLo -open Tezos_micheline - -open Tezos_benchmark_023_PtSEouLo - -open Tezos_benchmark_type_inference_023_PtSEouLo - -open Tezos_protocol_plugin_023_PtSEouLo) + -open Tezos_benchmark_023_PtSeouLo + -open Tezos_benchmark_type_inference_023_PtSeouLo + -open Tezos_protocol_plugin_023_PtSeouLo) (modules test_annotations test_block_time_instructions @@ -64,7 +64,7 @@ (instrumentation (backend bisect_ppx --bisect-sigterm)) (libraries octez-rust-deps - src_proto_023_PtSEouLo_lib_protocol_test_integration_michelson_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_integration_michelson_tezt_lib tezt) (link_flags (:standard) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/dune index 50c45f489a50..51eb5f43aff9 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/dune @@ -3,7 +3,7 @@ (library (name - src_proto_023_PtSEouLo_lib_protocol_test_integration_operations_tezt_lib) + src_proto_023_PtSeouLo_lib_protocol_test_integration_operations_tezt_lib) (instrumentation (backend bisect_ppx)) (libraries tezt.core @@ -23,10 +23,10 @@ -open Octez_alcotezt -open Tezos_base.TzPervasives -open Tezos_protocol_023_PtSeouLo - -open Tezos_client_023_PtSEouLo - -open Tezos_023_PtSEouLo_test_helpers + -open Tezos_client_023_PtSeouLo + -open Tezos_023_PtSeouLo_test_helpers -open Tezos_base_test_helpers - -open Tezos_protocol_plugin_023_PtSEouLo) + -open Tezos_protocol_plugin_023_PtSeouLo) (modules test_activation test_combined_operations @@ -46,7 +46,7 @@ (instrumentation (backend bisect_ppx --bisect-sigterm)) (libraries octez-rust-deps - src_proto_023_PtSEouLo_lib_protocol_test_integration_operations_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_integration_operations_tezt_lib tezt) (link_flags (:standard) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/dune b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/dune index dd48e38acc65..5948afee6611 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/dune @@ -2,7 +2,7 @@ ; Edit file manifest/main.ml instead. (library - (name src_proto_023_PtSEouLo_lib_protocol_test_integration_validate_tezt_lib) + (name src_proto_023_PtSeouLo_lib_protocol_test_integration_validate_tezt_lib) (instrumentation (backend bisect_ppx)) (libraries tezt.core @@ -23,12 +23,12 @@ -open Tezt_core.Base -open Tezos_base.TzPervasives -open Tezos_protocol_023_PtSeouLo - -open Tezos_client_023_PtSEouLo + -open Tezos_client_023_PtSeouLo -open Tezos_test_helpers - -open Tezos_023_PtSEouLo_test_helpers + -open Tezos_023_PtSeouLo_test_helpers -open Tezos_base_test_helpers -open Tezos_protocol_023_PtSeouLo_parameters - -open Tezos_protocol_plugin_023_PtSEouLo) + -open Tezos_protocol_plugin_023_PtSeouLo) (modules generator_descriptors generators @@ -47,7 +47,7 @@ (instrumentation (backend bisect_ppx --bisect-sigterm)) (libraries octez-rust-deps - src_proto_023_PtSEouLo_lib_protocol_test_integration_validate_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_integration_validate_tezt_lib tezt) (link_flags (:standard) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/dune b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/dune index a3368fe9a0a7..2b93faacfbf3 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/dune @@ -2,7 +2,7 @@ ; Edit file manifest/main.ml instead. (library - (name src_proto_023_PtSEouLo_lib_protocol_test_pbt_tezt_lib) + (name src_proto_023_PtSeouLo_lib_protocol_test_pbt_tezt_lib) (instrumentation (backend bisect_ppx)) (libraries tezt.core @@ -17,8 +17,8 @@ octez-alcotezt qcheck-alcotest tezos-benchmark - tezos-benchmark-023-PtSEouLo - tezos-benchmark-type-inference-023-PtSEouLo + tezos-benchmark-023-PtSeouLo + tezos-benchmark-type-inference-023-PtSeouLo octez-protocol-023-PtSeouLo-libs.smart-rollup octez-libs.crypto-dal octez-libs.base-test-helpers @@ -30,14 +30,14 @@ -open Tezt_core.Base -open Tezos_base.TzPervasives -open Tezos_micheline - -open Tezos_client_023_PtSEouLo + -open Tezos_client_023_PtSeouLo -open Tezos_protocol_023_PtSeouLo -open Tezos_test_helpers - -open Tezos_023_PtSEouLo_test_helpers + -open Tezos_023_PtSeouLo_test_helpers -open Octez_alcotezt - -open Tezos_benchmark_023_PtSEouLo - -open Tezos_benchmark_type_inference_023_PtSEouLo - -open Tezos_smart_rollup_023_PtSEouLo + -open Tezos_benchmark_023_PtSeouLo + -open Tezos_benchmark_type_inference_023_PtSeouLo + -open Tezos_smart_rollup_023_PtSeouLo -open Tezos_crypto_dal -open Tezos_base_test_helpers -open Tezos_protocol_023_PtSeouLo_parameters) @@ -67,7 +67,7 @@ (instrumentation (backend bisect_ppx --bisect-sigterm)) (libraries octez-rust-deps - src_proto_023_PtSEouLo_lib_protocol_test_pbt_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_pbt_tezt_lib tezt) (link_flags (:standard) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/regression/dune b/src/proto_023_PtSeouLo/lib_protocol/test/regression/dune index 19513651cc94..f34bda76bc7d 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/regression/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/regression/dune @@ -2,7 +2,7 @@ ; Edit file manifest/main.ml instead. (library - (name src_proto_023_PtSEouLo_lib_protocol_test_regression_tezt_lib) + (name src_proto_023_PtSeouLo_lib_protocol_test_regression_tezt_lib) (instrumentation (backend bisect_ppx)) (libraries tezt.core @@ -22,9 +22,9 @@ -open Tezos_base.TzPervasives -open Tezt_tezos -open Tezos_protocol_023_PtSeouLo - -open Tezos_client_023_PtSEouLo - -open Tezos_protocol_plugin_023_PtSEouLo - -open Tezos_023_PtSEouLo_test_helpers + -open Tezos_client_023_PtSeouLo + -open Tezos_protocol_plugin_023_PtSeouLo + -open Tezos_023_PtSeouLo_test_helpers -open Tezos_micheline) (modules test_logging)) @@ -33,7 +33,7 @@ (instrumentation (backend bisect_ppx --bisect-sigterm)) (libraries octez-rust-deps - src_proto_023_PtSEouLo_lib_protocol_test_regression_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_regression_tezt_lib tezt) (link_flags (:standard) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/dune b/src/proto_023_PtSeouLo/lib_protocol/test/unit/dune index 1da2703a419e..14f56544a5cd 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/dune +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/dune @@ -2,7 +2,7 @@ ; Edit file manifest/main.ml instead. (library - (name src_proto_023_PtSEouLo_lib_protocol_test_unit_tezt_lib) + (name src_proto_023_PtSeouLo_lib_protocol_test_unit_tezt_lib) (instrumentation (backend bisect_ppx)) (libraries tezt.core @@ -32,11 +32,11 @@ -open Tezos_base.TzPervasives -open Tezos_base_test_helpers -open Tezos_micheline - -open Tezos_client_023_PtSEouLo + -open Tezos_client_023_PtSeouLo -open Tezos_protocol_023_PtSeouLo_parameters -open Tezos_protocol_023_PtSeouLo -open Tezos_test_helpers - -open Tezos_023_PtSEouLo_test_helpers + -open Tezos_023_PtSeouLo_test_helpers -open Octez_alcotezt -open Tezos_scoru_wasm_helpers -open Tezos_stdlib @@ -85,7 +85,7 @@ (instrumentation (backend bisect_ppx --bisect-sigterm)) (libraries octez-rust-deps - src_proto_023_PtSEouLo_lib_protocol_test_unit_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_unit_tezt_lib tezt) (link_flags (:standard) diff --git a/src/proto_023_PtSeouLo/lib_sc_rollup/dune b/src/proto_023_PtSeouLo/lib_sc_rollup/dune index 6616b5d181d8..7788411d8293 100644 --- a/src/proto_023_PtSeouLo/lib_sc_rollup/dune +++ b/src/proto_023_PtSeouLo/lib_sc_rollup/dune @@ -2,12 +2,12 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_smart_rollup_023_PtSEouLo) - (public_name octez-protocol-023-PtSEouLo-libs.smart-rollup) + (name tezos_smart_rollup_023_PtSeouLo) + (public_name octez-protocol-023-PtSeouLo-libs.smart-rollup) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base - tezos-protocol-023-PtSEouLo.protocol) + tezos-protocol-023-PtSeouLo.protocol) (inline_tests (flags -verbose) (modes native) @@ -18,4 +18,4 @@ (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo)) + -open Tezos_protocol_023_PtSeouLo)) diff --git a/src/proto_023_PtSeouLo/lib_sc_rollup_layer2/dune b/src/proto_023_PtSeouLo/lib_sc_rollup_layer2/dune index bb04e23abec2..4579cba36f4d 100644 --- a/src/proto_023_PtSeouLo/lib_sc_rollup_layer2/dune +++ b/src/proto_023_PtSeouLo/lib_sc_rollup_layer2/dune @@ -2,12 +2,12 @@ ; Edit file manifest/main.ml instead. (library - (name tezos_smart_rollup_layer2_023_PtSEouLo) - (public_name octez-protocol-023-PtSEouLo-libs.smart-rollup-layer2) + (name tezos_smart_rollup_layer2_023_PtSeouLo) + (public_name octez-protocol-023-PtSeouLo-libs.smart-rollup-layer2) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base - tezos-protocol-023-PtSEouLo.protocol + tezos-protocol-023-PtSeouLo.protocol octez-injector octez-l2-libs.smart-rollup) (inline_tests @@ -20,6 +20,6 @@ (flags (:standard) -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo -open Octez_injector -open Octez_smart_rollup)) diff --git a/src/proto_023_PtSeouLo/lib_sc_rollup_node/dune b/src/proto_023_PtSeouLo/lib_sc_rollup_node/dune index 8d2128ae59ac..d4de10399a31 100644 --- a/src/proto_023_PtSeouLo/lib_sc_rollup_node/dune +++ b/src/proto_023_PtSeouLo/lib_sc_rollup_node/dune @@ -2,21 +2,21 @@ ; Edit file manifest/main.ml instead. (library - (name octez_smart_rollup_node_PtSEouLo) - (package octez-smart-rollup-node-PtSEouLo) + (name octez_smart_rollup_node_PtSeouLo) + (package octez-smart-rollup-node-PtSeouLo) (instrumentation (backend bisect_ppx)) (libraries octez-libs.base octez-libs.stdlib-unix octez-shell-libs.client-base octez-shell-libs.client-base-unix - octez-protocol-023-PtSEouLo-libs.client - octez-protocol-023-PtSEouLo-libs.dal + octez-protocol-023-PtSeouLo-libs.client + octez-protocol-023-PtSeouLo-libs.dal octez-libs.tezos-context.encoding octez-libs.tezos-context.helpers - tezos-protocol-023-PtSEouLo.protocol - octez-protocol-023-PtSEouLo-libs.plugin - tezos-protocol-023-PtSEouLo.parameters + tezos-protocol-023-PtSeouLo.protocol + octez-protocol-023-PtSeouLo-libs.plugin + tezos-protocol-023-PtSeouLo.parameters octez-libs.rpc octez-libs.rpc-http octez-libs.rpc-http-server @@ -25,9 +25,9 @@ tezos-dal-node-lib octez-shell-libs.shell-services octez-l2-libs.smart-rollup - octez-protocol-023-PtSEouLo-libs.smart-rollup - octez-protocol-023-PtSEouLo-libs.smart-rollup-layer2 - octez-protocol-023-PtSEouLo-libs.layer2-utils + octez-protocol-023-PtSeouLo-libs.smart-rollup + octez-protocol-023-PtSeouLo-libs.smart-rollup-layer2 + octez-protocol-023-PtSeouLo-libs.layer2-utils octez-l2-libs.layer2_store octez-l2-libs.riscv_context octez-l2-libs.irmin_context @@ -54,18 +54,18 @@ -open Tezos_stdlib_unix -open Tezos_client_base -open Tezos_client_base_unix - -open Tezos_client_023_PtSEouLo - -open Tezos_dal_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo - -open Tezos_protocol_plugin_023_PtSEouLo - -open Tezos_protocol_023_PtSEouLo_parameters + -open Tezos_client_023_PtSeouLo + -open Tezos_dal_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo + -open Tezos_protocol_plugin_023_PtSeouLo + -open Tezos_protocol_023_PtSeouLo_parameters -open Tezos_workers -open Tezos_dal_node_lib -open Tezos_shell_services -open Octez_smart_rollup - -open Tezos_smart_rollup_023_PtSEouLo - -open Tezos_smart_rollup_layer2_023_PtSEouLo - -open Tezos_layer2_utils_023_PtSEouLo + -open Tezos_smart_rollup_023_PtSeouLo + -open Tezos_smart_rollup_layer2_023_PtSeouLo + -open Tezos_layer2_utils_023_PtSeouLo -open Tezos_layer2_store -open Tezos_layer2_riscv_context -open Tezos_layer2_irmin_context diff --git a/src/proto_023_PtSeouLo/lib_sc_rollup_node/test/dune b/src/proto_023_PtSeouLo/lib_sc_rollup_node/test/dune index 25db0691689d..fb55dc512c18 100644 --- a/src/proto_023_PtSeouLo/lib_sc_rollup_node/test/dune +++ b/src/proto_023_PtSeouLo/lib_sc_rollup_node/test/dune @@ -2,16 +2,16 @@ ; Edit file manifest/main.ml instead. (library - (name src_proto_023_PtSEouLo_lib_sc_rollup_node_test_tezt_lib) + (name src_proto_023_PtSeouLo_lib_sc_rollup_node_test_tezt_lib) (instrumentation (backend bisect_ppx)) (libraries tezt.core bls12-381.archive octez-libs.base - tezos-protocol-023-PtSEouLo.protocol + tezos-protocol-023-PtSeouLo.protocol octez-libs.test-helpers - octez-protocol-023-PtSEouLo-libs.smart-rollup-layer2 - octez_smart_rollup_node_PtSEouLo + octez-protocol-023-PtSeouLo-libs.smart-rollup-layer2 + octez_smart_rollup_node_PtSeouLo octez-alcotezt) (library_flags (:standard -linkall)) (flags @@ -19,10 +19,10 @@ -open Tezt_core -open Tezt_core.Base -open Tezos_base.TzPervasives - -open Tezos_protocol_023_PtSEouLo + -open Tezos_protocol_023_PtSeouLo -open Tezos_test_helpers - -open Tezos_smart_rollup_layer2_023_PtSEouLo - -open Octez_smart_rollup_node_PtSEouLo + -open Tezos_smart_rollup_layer2_023_PtSeouLo + -open Octez_smart_rollup_node_PtSeouLo -open Octez_alcotezt) (modules serialized_proofs test_octez_conversions)) @@ -31,7 +31,7 @@ (instrumentation (backend bisect_ppx --bisect-sigterm)) (libraries octez-rust-deps - src_proto_023_PtSEouLo_lib_sc_rollup_node_test_tezt_lib + src_proto_023_PtSeouLo_lib_sc_rollup_node_test_tezt_lib tezt) (link_flags (:standard) diff --git a/tezt/tests/dune b/tezt/tests/dune index 72e9387e8ff6..a753cbe20e13 100644 --- a/tezt/tests/dune +++ b/tezt/tests/dune @@ -35,20 +35,20 @@ src_proto_alpha_lib_delegate_test_tezt_lib src_proto_alpha_lib_dal_test_tezt_lib src_proto_alpha_lib_client_test_tezt_lib - src_proto_023_PtSEouLo_lib_sc_rollup_node_test_tezt_lib - src_proto_023_PtSEouLo_lib_protocol_test_unit_tezt_lib - src_proto_023_PtSEouLo_lib_protocol_test_regression_tezt_lib - src_proto_023_PtSEouLo_lib_protocol_test_pbt_tezt_lib - src_proto_023_PtSEouLo_lib_protocol_test_integration_validate_tezt_lib - src_proto_023_PtSEouLo_lib_protocol_test_integration_operations_tezt_lib - src_proto_023_PtSEouLo_lib_protocol_test_integration_michelson_tezt_lib - src_proto_023_PtSEouLo_lib_protocol_test_integration_gas_tezt_lib - src_proto_023_PtSEouLo_lib_protocol_test_integration_consensus_tezt_lib - src_proto_023_PtSEouLo_lib_protocol_test_integration_tezt_lib - src_proto_023_PtSEouLo_lib_plugin_test_tezt_lib - src_proto_023_PtSEouLo_lib_delegate_test_tezt_lib - src_proto_023_PtSEouLo_lib_dal_test_tezt_lib - src_proto_023_PtSEouLo_lib_client_test_tezt_lib + src_proto_023_PtSeouLo_lib_sc_rollup_node_test_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_unit_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_regression_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_pbt_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_integration_validate_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_integration_operations_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_integration_michelson_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_integration_gas_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_integration_consensus_tezt_lib + src_proto_023_PtSeouLo_lib_protocol_test_integration_tezt_lib + src_proto_023_PtSeouLo_lib_plugin_test_tezt_lib + src_proto_023_PtSeouLo_lib_delegate_test_tezt_lib + src_proto_023_PtSeouLo_lib_dal_test_tezt_lib + src_proto_023_PtSeouLo_lib_client_test_tezt_lib src_proto_022_PsRiotum_lib_sc_rollup_node_test_tezt_lib src_proto_022_PsRiotum_lib_protocol_test_unit_tezt_lib src_proto_022_PsRiotum_lib_protocol_test_regression_tezt_lib diff --git a/teztale/bin_teztale_archiver/dune b/teztale/bin_teztale_archiver/dune index af1909a2f56e..34b28a952c7f 100644 --- a/teztale/bin_teztale_archiver/dune +++ b/teztale/bin_teztale_archiver/dune @@ -87,9 +87,9 @@ (select PsRiotum_machine.ml from (octez-protocol-022-PsRiotum-libs.client -> PsRiotum_machine.real.ml) (-> PsRiotum_machine.no.ml)) - (select PtSEouLo_machine.ml from - (octez-protocol-023-PtSEouLo-libs.client -> PtSEouLo_machine.real.ml) - (-> PtSEouLo_machine.no.ml)) + (select PtSeouLo_machine.ml from + (octez-protocol-023-PtSeouLo-libs.client -> PtSeouLo_machine.real.ml) + (-> PtSeouLo_machine.no.ml)) (select alpha_machine.ml from (octez-protocol-alpha-libs.client -> alpha_machine.real.ml) (-> alpha_machine.no.ml))) @@ -109,18 +109,18 @@ -open Lib_teztale_base)) (rule - (target PtSEouLo_machine.real.ml) + (target PtSeouLo_machine.real.ml) (mode fallback) (deps next_machine.real.ml) (action (progn - (copy next_machine.real.ml PtSEouLo_machine.real.ml) + (copy next_machine.real.ml PtSeouLo_machine.real.ml) (run sed - -i.bak -e s/Tezos_client_next/Tezos_client_PtSEouLo/g -e - s/Tezos_protocol_next/Tezos_protocol_PtSEouLo/g -e - s/Tezos_protocol_plugin_next/Tezos_protocol_plugin_PtSEouLo/g - PtSEouLo_machine.real.ml)))) + -i.bak -e s/Tezos_client_next/Tezos_client_PtSeouLo/g -e + s/Tezos_protocol_next/Tezos_protocol_PtSeouLo/g -e + s/Tezos_protocol_plugin_next/Tezos_protocol_plugin_PtSeouLo/g + PtSeouLo_machine.real.ml)))) (rule (target PsRiotum_machine.real.ml) @@ -152,7 +152,7 @@ (rule (action (write-file alpha_machine.no.ml "module M = struct end"))) -(rule (action (write-file PtSEouLo_machine.no.ml "module M = struct end"))) +(rule (action (write-file PtSeouLo_machine.no.ml "module M = struct end"))) (rule (action (write-file PsRiotum_machine.no.ml "module M = struct end"))) diff --git a/tobi/config b/tobi/config index 18db270bf390..7dfcc02cac68 100644 --- a/tobi/config +++ b/tobi/config @@ -50,12 +50,12 @@ kaitai: client-libs/kaitai-ocaml/src, client-libs/kaitai-ocaml/test kaitai-of-data-encoding: client-libs/lib_kaitai_of_data_encoding, client-libs/lib_kaitai_of_data_encoding/test octez-accuser: src/bin_agnostic_accuser octez-accuser-PsRiotum: src/proto_022_PsRiotum/bin_accuser -octez-accuser-PtSEouLo: src/proto_023_PtSEouLo/bin_accuser +octez-accuser-PtSeouLo: src/proto_023_PtSeouLo/bin_accuser octez-accuser-alpha: src/proto_alpha/bin_accuser octez-alcotezt: tezt/lib_alcotezt octez-baker: src/bin_agnostic_baker octez-baker-PsRiotum: src/proto_022_PsRiotum/bin_baker -octez-baker-PtSEouLo: src/proto_023_PtSEouLo/bin_baker +octez-baker-PtSeouLo: src/proto_023_PtSeouLo/bin_baker octez-baker-alpha: src/proto_alpha/bin_baker octez-baker-lib: src/lib_agnostic_baker octez-client: src/bin_client @@ -104,7 +104,7 @@ octez-protocol-019-PtParisB-libs: src/proto_019_PtParisB/lib_client, src/proto_0 octez-protocol-020-PsParisC-libs: src/proto_020_PsParisC/lib_client, src/proto_020_PsParisC/lib_client_commands, src/proto_020_PsParisC/lib_client_sapling, src/proto_020_PsParisC/lib_layer2_utils, src/proto_020_PsParisC/lib_plugin, src/proto_020_PsParisC/lib_sc_rollup, src/proto_020_PsParisC/lib_sc_rollup_layer2 octez-protocol-021-PsQuebec-libs: src/proto_021_PsQuebec/lib_client, src/proto_021_PsQuebec/lib_client_commands, src/proto_021_PsQuebec/lib_client_sapling, src/proto_021_PsQuebec/lib_dal, src/proto_021_PsQuebec/lib_layer2_utils, src/proto_021_PsQuebec/lib_plugin, src/proto_021_PsQuebec/lib_sc_rollup, src/proto_021_PsQuebec/lib_sc_rollup_layer2 octez-protocol-022-PsRiotum-libs: src/proto_022_PsRiotum/lib_agnostic_baker, src/proto_022_PsRiotum/lib_client, src/proto_022_PsRiotum/lib_client/test, src/proto_022_PsRiotum/lib_client_commands, src/proto_022_PsRiotum/lib_client_sapling, src/proto_022_PsRiotum/lib_dal, src/proto_022_PsRiotum/lib_dal/test, src/proto_022_PsRiotum/lib_delegate, src/proto_022_PsRiotum/lib_delegate/test, src/proto_022_PsRiotum/lib_delegate/test/mockup_simulator, src/proto_022_PsRiotum/lib_delegate/test/tenderbrute, src/proto_022_PsRiotum/lib_delegate/test/tenderbrute/lib, src/proto_022_PsRiotum/lib_layer2_utils, src/proto_022_PsRiotum/lib_plugin, src/proto_022_PsRiotum/lib_plugin/test, src/proto_022_PsRiotum/lib_protocol/test/helpers, src/proto_022_PsRiotum/lib_sc_rollup, src/proto_022_PsRiotum/lib_sc_rollup_layer2 -octez-protocol-023-PtSEouLo-libs: src/proto_023_PtSEouLo/lib_agnostic_baker, src/proto_023_PtSEouLo/lib_client, src/proto_023_PtSEouLo/lib_client/test, src/proto_023_PtSEouLo/lib_client_commands, src/proto_023_PtSEouLo/lib_client_sapling, src/proto_023_PtSEouLo/lib_dal, src/proto_023_PtSEouLo/lib_dal/test, src/proto_023_PtSEouLo/lib_delegate, src/proto_023_PtSEouLo/lib_delegate/test, src/proto_023_PtSEouLo/lib_delegate/test/mockup_simulator, src/proto_023_PtSEouLo/lib_delegate/test/tenderbrute, src/proto_023_PtSEouLo/lib_delegate/test/tenderbrute/lib, src/proto_023_PtSEouLo/lib_layer2_utils, src/proto_023_PtSEouLo/lib_plugin, src/proto_023_PtSEouLo/lib_plugin/test, src/proto_023_PtSEouLo/lib_protocol/test/helpers, src/proto_023_PtSEouLo/lib_sc_rollup, src/proto_023_PtSEouLo/lib_sc_rollup_layer2 +octez-protocol-023-PtSeouLo-libs: src/proto_023_PtSeouLo/lib_agnostic_baker, src/proto_023_PtSeouLo/lib_client, src/proto_023_PtSeouLo/lib_client/test, src/proto_023_PtSeouLo/lib_client_commands, src/proto_023_PtSeouLo/lib_client_sapling, src/proto_023_PtSeouLo/lib_dal, src/proto_023_PtSeouLo/lib_dal/test, src/proto_023_PtSeouLo/lib_delegate, src/proto_023_PtSeouLo/lib_delegate/test, src/proto_023_PtSeouLo/lib_delegate/test/mockup_simulator, src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute, src/proto_023_PtSeouLo/lib_delegate/test/tenderbrute/lib, src/proto_023_PtSeouLo/lib_layer2_utils, src/proto_023_PtSeouLo/lib_plugin, src/proto_023_PtSeouLo/lib_plugin/test, src/proto_023_PtSeouLo/lib_protocol/test/helpers, src/proto_023_PtSeouLo/lib_sc_rollup, src/proto_023_PtSeouLo/lib_sc_rollup_layer2 octez-protocol-alpha-libs: src/proto_alpha/lib_agnostic_baker, src/proto_alpha/lib_client, src/proto_alpha/lib_client/test, src/proto_alpha/lib_client_commands, src/proto_alpha/lib_client_sapling, src/proto_alpha/lib_dal, src/proto_alpha/lib_dal/test, src/proto_alpha/lib_delegate, src/proto_alpha/lib_delegate/test, src/proto_alpha/lib_delegate/test/mockup_simulator, src/proto_alpha/lib_delegate/test/tenderbrute, src/proto_alpha/lib_delegate/test/tenderbrute/lib, src/proto_alpha/lib_layer2_utils, src/proto_alpha/lib_plugin, src/proto_alpha/lib_plugin/test, src/proto_alpha/lib_protocol/test/helpers, src/proto_alpha/lib_sc_rollup, src/proto_alpha/lib_sc_rollup_layer2 octez-protocol-compiler: src/lib_protocol_compiler, src/lib_protocol_compiler/bin, src/lib_protocol_compiler/hashes, src/lib_protocol_compiler/registerer octez-protocol-compiler-compat: src/lib_protocol_compiler/compat @@ -125,7 +125,7 @@ octez-smart-rollup-node-PsQuebec: src/proto_021_PsQuebec/lib_sc_rollup_node octez-smart-rollup-node-PsRiotum: src/proto_022_PsRiotum/lib_sc_rollup_node octez-smart-rollup-node-PtNairob: src/proto_017_PtNairob/lib_sc_rollup_node octez-smart-rollup-node-PtParisB: src/proto_019_PtParisB/lib_sc_rollup_node -octez-smart-rollup-node-PtSEouLo: src/proto_023_PtSEouLo/lib_sc_rollup_node +octez-smart-rollup-node-PtSeouLo: src/proto_023_PtSeouLo/lib_sc_rollup_node octez-smart-rollup-node-alpha: src/proto_alpha/lib_sc_rollup_node octez-smart-rollup-node-lib: src/lib_smart_rollup_node octez-smart-rollup-wasm-debugger: src/bin_wasm_debugger @@ -140,22 +140,22 @@ octogram: src/bin_octogram, src/lib_octogram proto-manager: devtools/proto_manager tezos-benchmark: src/lib_benchmark tezos-benchmark-022-PsRiotum: src/proto_022_PsRiotum/lib_benchmark, src/proto_022_PsRiotum/lib_benchmark/test -tezos-benchmark-023-PtSEouLo: src/proto_023_PtSEouLo/lib_benchmark, src/proto_023_PtSEouLo/lib_benchmark/test +tezos-benchmark-023-PtSeouLo: src/proto_023_PtSeouLo/lib_benchmark, src/proto_023_PtSeouLo/lib_benchmark/test tezos-benchmark-alpha: src/proto_alpha/lib_benchmark, src/proto_alpha/lib_benchmark/test tezos-benchmark-examples: src/lib_benchmark/example tezos-benchmark-tests: src/lib_benchmark/test tezos-benchmark-type-inference-022-PsRiotum: src/proto_022_PsRiotum/lib_benchmark/lib_benchmark_type_inference, src/proto_022_PsRiotum/lib_benchmark/lib_benchmark_type_inference/test -tezos-benchmark-type-inference-023-PtSEouLo: src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference, src/proto_023_PtSEouLo/lib_benchmark/lib_benchmark_type_inference/test +tezos-benchmark-type-inference-023-PtSeouLo: src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference, src/proto_023_PtSeouLo/lib_benchmark/lib_benchmark_type_inference/test tezos-benchmark-type-inference-alpha: src/proto_alpha/lib_benchmark/lib_benchmark_type_inference, src/proto_alpha/lib_benchmark/lib_benchmark_type_inference/test tezos-benchmarks-proto-022-PsRiotum: src/proto_022_PsRiotum/lib_benchmarks_proto -tezos-benchmarks-proto-023-PtSEouLo: src/proto_023_PtSEouLo/lib_benchmarks_proto +tezos-benchmarks-proto-023-PtSeouLo: src/proto_023_PtSeouLo/lib_benchmarks_proto tezos-benchmarks-proto-alpha: src/proto_alpha/lib_benchmarks_proto tezos-client-demo-counter: src/proto_demo_counter/lib_client tezos-client-genesis: src/proto_genesis/lib_client tezos-dal-node-lib: src/lib_dal_node, src/lib_dal_node/gossipsub, src/lib_dal_node/test/ tezos-dal-node-services: src/lib_dal_node_services tezos-injector-022-PsRiotum: src/proto_022_PsRiotum/lib_injector -tezos-injector-023-PtSEouLo: src/proto_023_PtSEouLo/lib_injector +tezos-injector-023-PtSeouLo: src/proto_023_PtSeouLo/lib_injector tezos-injector-alpha: src/proto_alpha/lib_injector tezos-lazy-containers-tests: src/lib_lazy_containers/test tezos-micheline-rewriting: src/lib_benchmark/lib_micheline_rewriting, src/lib_benchmark/lib_micheline_rewriting/test @@ -186,14 +186,14 @@ tezos-protocol-020-PsParisC: src/proto_020_PsParisC/lib_parameters, src/proto_02 tezos-protocol-021-PsQuebec: src/proto_021_PsQuebec/lib_parameters, src/proto_021_PsQuebec/lib_protocol tezos-protocol-022-PsRiotum: src/proto_022_PsRiotum/lib_parameters, src/proto_022_PsRiotum/lib_protocol tezos-protocol-022-PsRiotum-tests: src/proto_022_PsRiotum/lib_protocol/test/integration, src/proto_022_PsRiotum/lib_protocol/test/integration/consensus, src/proto_022_PsRiotum/lib_protocol/test/integration/gas, src/proto_022_PsRiotum/lib_protocol/test/integration/michelson, src/proto_022_PsRiotum/lib_protocol/test/integration/operations, src/proto_022_PsRiotum/lib_protocol/test/integration/validate, src/proto_022_PsRiotum/lib_protocol/test/pbt, src/proto_022_PsRiotum/lib_protocol/test/regression, src/proto_022_PsRiotum/lib_protocol/test/unit -tezos-protocol-023-PtSEouLo: src/proto_023_PtSEouLo/lib_parameters, src/proto_023_PtSEouLo/lib_protocol -tezos-protocol-023-PtSEouLo-tests: src/proto_023_PtSEouLo/lib_protocol/test/integration, src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus, src/proto_023_PtSEouLo/lib_protocol/test/integration/gas, src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson, src/proto_023_PtSEouLo/lib_protocol/test/integration/operations, src/proto_023_PtSEouLo/lib_protocol/test/integration/validate, src/proto_023_PtSEouLo/lib_protocol/test/pbt, src/proto_023_PtSEouLo/lib_protocol/test/regression, src/proto_023_PtSEouLo/lib_protocol/test/unit +tezos-protocol-023-PtSeouLo: src/proto_023_PtSeouLo/lib_parameters, src/proto_023_PtSeouLo/lib_protocol +tezos-protocol-023-PtSeouLo-tests: src/proto_023_PtSeouLo/lib_protocol/test/integration, src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus, src/proto_023_PtSeouLo/lib_protocol/test/integration/gas, src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson, src/proto_023_PtSeouLo/lib_protocol/test/integration/operations, src/proto_023_PtSeouLo/lib_protocol/test/integration/validate, src/proto_023_PtSeouLo/lib_protocol/test/pbt, src/proto_023_PtSeouLo/lib_protocol/test/regression, src/proto_023_PtSeouLo/lib_protocol/test/unit tezos-protocol-alpha: src/proto_alpha/lib_parameters, src/proto_alpha/lib_protocol tezos-protocol-alpha-tests: src/proto_alpha/lib_protocol/test/integration, src/proto_alpha/lib_protocol/test/integration/consensus, src/proto_alpha/lib_protocol/test/integration/gas, src/proto_alpha/lib_protocol/test/integration/michelson, src/proto_alpha/lib_protocol/test/integration/operations, src/proto_alpha/lib_protocol/test/integration/validate, src/proto_alpha/lib_protocol/test/pbt, src/proto_alpha/lib_protocol/test/regression, src/proto_alpha/lib_protocol/test/unit tezos-protocol-demo-counter: src/proto_demo_counter/lib_protocol tezos-protocol-demo-noops: src/proto_demo_noops/lib_protocol tezos-protocol-genesis: src/proto_genesis/lib_protocol -tezos-sc-rollup-node-test: src/proto_022_PsRiotum/lib_sc_rollup_node/test, src/proto_023_PtSEouLo/lib_sc_rollup_node/test, src/proto_alpha/lib_sc_rollup_node/test +tezos-sc-rollup-node-test: src/proto_022_PsRiotum/lib_sc_rollup_node/test, src/proto_023_PtSeouLo/lib_sc_rollup_node/test, src/proto_alpha/lib_sc_rollup_node/test tezos-scoru-wasm-regressions: src/lib_scoru_wasm/regressions tezos-smart-rollup-node-lib-test: src/lib_smart_rollup_node/test/ tezos-tooling: devtools/benchmarks-tools/occupy_memory, devtools/benchmarks-tools/purge_disk_cache, devtools/gas_parameter_diff/bin, devtools/git-gas-diff/bin, src/tooling -- GitLab From 14cb8b96d16625c583667f1793fb4449bb63d8b6 Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:34:18 +0200 Subject: [PATCH 16/31] S023/tests: fix test invocation headers --- .../lib_client/test/test_client_proto_context.ml | 2 +- .../lib_client/test/test_client_proto_contracts.ml | 2 +- .../lib_client/test/test_michelson_v1_macros.ml | 2 +- src/proto_023_PtSeouLo/lib_client/test/test_proxy.ml | 2 +- .../lib_dal/test/test_dal_slot_frame_encoding.ml | 2 +- src/proto_023_PtSeouLo/lib_delegate/test/test_scenario.ml | 2 +- src/proto_023_PtSeouLo/lib_plugin/test/test_conflict_handler.ml | 2 +- src/proto_023_PtSeouLo/lib_plugin/test/test_consensus_filter.ml | 2 +- .../lib_plugin/test/test_fee_needed_to_overtake.ml | 2 +- .../lib_plugin/test/test_fee_needed_to_replace_by_fee.ml | 2 +- .../lib_protocol/test/integration/consensus/test_aggregate.ml | 2 +- .../lib_protocol/test/integration/consensus/test_attestation.ml | 2 +- .../lib_protocol/test/integration/consensus/test_baking.ml | 2 +- .../test/integration/consensus/test_companion_key.ml | 2 +- .../test/integration/consensus/test_consensus_key.ml | 2 +- .../test/integration/consensus/test_dal_entrapment.ml | 2 +- .../test/integration/consensus/test_deactivation.ml | 2 +- .../lib_protocol/test/integration/consensus/test_delegation.ml | 2 +- .../test/integration/consensus/test_double_attestation.ml | 2 +- .../test/integration/consensus/test_double_baking.ml | 2 +- .../test/integration/consensus/test_double_preattestation.ml | 2 +- .../test/integration/consensus/test_frozen_deposits.ml | 2 +- .../test/integration/consensus/test_helpers_rpcs.ml | 2 +- .../test/integration/consensus/test_participation.ml | 2 +- .../test/integration/consensus/test_preattestation.ml | 2 +- .../lib_protocol/test/integration/consensus/test_seed.ml | 2 +- .../lib_protocol/test/integration/gas/test_gas_costs.ml | 2 +- .../lib_protocol/test/integration/gas/test_gas_levels.ml | 2 +- .../lib_protocol/test/integration/michelson/test_annotations.ml | 2 +- .../test/integration/michelson/test_block_time_instructions.ml | 2 +- .../test/integration/michelson/test_contract_event.ml | 2 +- .../test/integration/michelson/test_global_constants_storage.ml | 2 +- .../test/integration/michelson/test_interpretation.ml | 2 +- .../test/integration/michelson/test_lambda_normalization.ml | 2 +- .../test/integration/michelson/test_lazy_storage_diff.ml | 2 +- .../test/integration/michelson/test_patched_contracts.ml | 2 +- .../lib_protocol/test/integration/michelson/test_sapling.ml | 2 +- .../test/integration/michelson/test_script_cache.ml | 2 +- .../test/integration/michelson/test_script_typed_ir_size.ml | 2 +- .../test/integration/michelson/test_temp_big_maps.ml | 2 +- .../test/integration/michelson/test_ticket_accounting.ml | 2 +- .../test/integration/michelson/test_ticket_balance.ml | 2 +- .../test/integration/michelson/test_ticket_balance_key.ml | 2 +- .../test/integration/michelson/test_ticket_direct_spending.ml | 2 +- .../test/integration/michelson/test_ticket_lazy_storage_diff.ml | 2 +- .../test/integration/michelson/test_ticket_manager.ml | 2 +- .../test/integration/michelson/test_ticket_operations_diff.ml | 2 +- .../test/integration/michelson/test_ticket_scanner.ml | 2 +- .../test/integration/michelson/test_ticket_storage.ml | 2 +- .../test/integration/michelson/test_typechecking.ml | 2 +- .../lib_protocol/test/integration/operations/test_activation.ml | 2 +- .../test/integration/operations/test_combined_operations.ml | 2 +- .../test/integration/operations/test_failing_noop.ml | 2 +- .../test/integration/operations/test_origination.ml | 2 +- .../test/integration/operations/test_paid_storage_increase.ml | 2 +- .../lib_protocol/test/integration/operations/test_reveal.ml | 2 +- .../lib_protocol/test/integration/operations/test_sc_rollup.ml | 2 +- .../test/integration/operations/test_sc_rollup_transfer.ml | 2 +- .../lib_protocol/test/integration/operations/test_transfer.ml | 2 +- .../test/integration/operations/test_transfer_ticket.ml | 2 +- .../lib_protocol/test/integration/operations/test_voting.ml | 2 +- .../lib_protocol/test/integration/operations/test_zk_rollup.ml | 2 +- .../lib_protocol/test/integration/test_constants.ml | 2 +- .../lib_protocol/test/integration/test_frozen_bonds.ml | 2 +- .../lib_protocol/test/integration/test_liquidity_baking.ml | 2 +- .../lib_protocol/test/integration/test_scenario_base.ml | 2 +- .../lib_protocol/test/integration/test_scenario_deactivation.ml | 2 +- .../lib_protocol/test/integration/test_scenario_rewards.ml | 2 +- .../lib_protocol/test/integration/test_scenario_slashing.ml | 2 +- .../test/integration/test_scenario_slashing_stakers.ml | 2 +- .../lib_protocol/test/integration/test_scenario_stake.ml | 2 +- .../lib_protocol/test/integration/test_storage.ml | 2 +- .../lib_protocol/test/integration/test_storage_functions.ml | 2 +- .../lib_protocol/test/integration/test_token.ml | 2 +- .../test/integration/validate/test_1m_restriction.ml | 2 +- .../lib_protocol/test/integration/validate/test_covalidity.ml | 2 +- .../integration/validate/test_manager_operation_validation.ml | 2 +- .../lib_protocol/test/integration/validate/test_mempool.ml | 2 +- .../lib_protocol/test/integration/validate/test_sanity.ml | 2 +- .../test/integration/validate/test_validation_batch.ml | 2 +- .../lib_protocol/test/pbt/liquidity_baking_pbt.ml | 2 +- .../lib_protocol/test/pbt/saturation_fuzzing.ml | 2 +- .../lib_protocol/test/pbt/test_balance_updates_encoding.ml | 2 +- .../lib_protocol/test/pbt/test_bytes_conversion.ml | 2 +- .../lib_protocol/test/pbt/test_carbonated_map.ml | 2 +- .../lib_protocol/test/pbt/test_compare_operations.ml | 2 +- .../lib_protocol/test/pbt/test_dal_slot_proof.ml | 2 +- .../lib_protocol/test/pbt/test_gas_properties.ml | 2 +- .../lib_protocol/test/pbt/test_merkle_list.ml | 2 +- .../lib_protocol/test/pbt/test_operation_encoding.ml | 2 +- .../lib_protocol/test/pbt/test_refutation_game.ml | 2 +- src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sampler.ml | 2 +- .../lib_protocol/test/pbt/test_sc_rollup_encoding.ml | 2 +- .../lib_protocol/test/pbt/test_sc_rollup_inbox.ml | 2 +- .../lib_protocol/test/pbt/test_sc_rollup_tick_repr.ml | 2 +- .../lib_protocol/test/pbt/test_script_comparison.ml | 2 +- .../lib_protocol/test/pbt/test_script_roundtrip.ml | 2 +- src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_tez_repr.ml | 2 +- .../lib_protocol/test/pbt/test_zk_rollup_encoding.ml | 2 +- .../lib_protocol/test/regression/test_logging.ml | 2 +- .../lib_protocol/test/unit/test_adaptive_issuance.ml | 2 +- .../lib_protocol/test/unit/test_adaptive_issuance_ema.ml | 2 +- .../lib_protocol/test/unit/test_alpha_context.ml | 2 +- .../lib_protocol/test/unit/test_bond_id_repr.ml | 2 +- .../lib_protocol/test/unit/test_consecutive_round_zero.ml | 2 +- .../lib_protocol/test/unit/test_consensus_key.ml | 2 +- .../lib_protocol/test/unit/test_contract_repr.ml | 2 +- .../lib_protocol/test/unit/test_dal_slot_proof.ml | 2 +- .../lib_protocol/test/unit/test_destination_repr.ml | 2 +- src/proto_023_PtSeouLo/lib_protocol/test/unit/test_fitness.ml | 2 +- .../lib_protocol/test/unit/test_fixed_point.ml | 2 +- .../lib_protocol/test/unit/test_full_staking_balance_repr.ml | 2 +- src/proto_023_PtSeouLo/lib_protocol/test/unit/test_gas_monad.ml | 2 +- .../lib_protocol/test/unit/test_global_constants_storage.ml | 2 +- .../lib_protocol/test/unit/test_level_module.ml | 2 +- .../lib_protocol/test/unit/test_liquidity_baking_repr.ml | 2 +- .../lib_protocol/test/unit/test_local_contexts.ml | 2 +- .../lib_protocol/test/unit/test_merkle_list.ml | 2 +- .../lib_protocol/test/unit/test_operation_repr.ml | 2 +- .../lib_protocol/test/unit/test_percentage.ml | 2 +- src/proto_023_PtSeouLo/lib_protocol/test/unit/test_qty.ml | 2 +- .../lib_protocol/test/unit/test_raw_level_repr.ml | 2 +- src/proto_023_PtSeouLo/lib_protocol/test/unit/test_receipt.ml | 2 +- .../lib_protocol/test/unit/test_round_repr.ml | 2 +- .../lib_protocol/test/unit/test_saturation.ml | 2 +- .../lib_protocol/test/unit/test_sc_rollup_arith.ml | 2 +- .../lib_protocol/test/unit/test_sc_rollup_game.ml | 2 +- .../lib_protocol/test/unit/test_sc_rollup_inbox.ml | 2 +- .../lib_protocol/test/unit/test_sc_rollup_inbox_legacy.ml | 2 +- .../test/unit/test_sc_rollup_management_protocol.ml | 2 +- .../lib_protocol/test/unit/test_sc_rollup_storage.ml | 2 +- .../lib_protocol/test/unit/test_sc_rollup_wasm.ml | 2 +- .../lib_protocol/test/unit/test_skip_list_repr.ml | 2 +- .../lib_protocol/test/unit/test_slashing_percentage.ml | 2 +- .../lib_protocol/test/unit/test_staking_operations.ml | 2 +- src/proto_023_PtSeouLo/lib_protocol/test/unit/test_tez_repr.ml | 2 +- src/proto_023_PtSeouLo/lib_protocol/test/unit/test_time_repr.ml | 2 +- .../lib_protocol/test/unit/test_zk_rollup_storage.ml | 2 +- .../lib_sc_rollup_node/test/test_octez_conversions.ml | 2 +- 139 files changed, 139 insertions(+), 139 deletions(-) diff --git a/src/proto_023_PtSeouLo/lib_client/test/test_client_proto_context.ml b/src/proto_023_PtSeouLo/lib_client/test/test_client_proto_context.ml index 5ad88648e4f1..e121db1596ef 100644 --- a/src/proto_023_PtSeouLo/lib_client/test/test_client_proto_context.ml +++ b/src/proto_023_PtSeouLo/lib_client/test/test_client_proto_context.ml @@ -26,7 +26,7 @@ (* Testing ------- Component: Client - Invocation: dune exec src/proto_023_PtSEouLo/lib_client/test/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_client/test/main.exe \ -- --file test_client_proto_context.ml Subject: Tests roundtrips of batch_transfer_operation_encoding *) diff --git a/src/proto_023_PtSeouLo/lib_client/test/test_client_proto_contracts.ml b/src/proto_023_PtSeouLo/lib_client/test/test_client_proto_contracts.ml index be27713a983d..ce161df98474 100644 --- a/src/proto_023_PtSeouLo/lib_client/test/test_client_proto_contracts.ml +++ b/src/proto_023_PtSeouLo/lib_client/test/test_client_proto_contracts.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Client - Invocation: dune exec src/proto_023_PtSEouLo/lib_client/test/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_client/test/main.exe \ -- --file test_client_proto_contracts.ml Subject: Unit tests for Client_proto_contracts *) diff --git a/src/proto_023_PtSeouLo/lib_client/test/test_michelson_v1_macros.ml b/src/proto_023_PtSeouLo/lib_client/test/test_michelson_v1_macros.ml index c2fa46a72985..b94b72ff7663 100644 --- a/src/proto_023_PtSeouLo/lib_client/test/test_michelson_v1_macros.ml +++ b/src/proto_023_PtSeouLo/lib_client/test/test_michelson_v1_macros.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Client - Invocation: dune exec src/proto_023_PtSEouLo/lib_client/test/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_client/test/main.exe \ -- --file test_michelson_v1_macros.ml Dependencies: src/proto_alpha/lib_client/test/assert.ml Subject: Expansion and unexpansion of Micheline terms. diff --git a/src/proto_023_PtSeouLo/lib_client/test/test_proxy.ml b/src/proto_023_PtSeouLo/lib_client/test/test_proxy.ml index d49bcdd40123..b67d479226d0 100644 --- a/src/proto_023_PtSeouLo/lib_client/test/test_proxy.ml +++ b/src/proto_023_PtSeouLo/lib_client/test/test_proxy.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Client - Invocation: dune exec src/proto_023_PtSEouLo/lib_client/test/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_client/test/main.exe \ -- --file test_proxy.ml Subject: Test of --mode proxy heuristic *) diff --git a/src/proto_023_PtSeouLo/lib_dal/test/test_dal_slot_frame_encoding.ml b/src/proto_023_PtSeouLo/lib_dal/test/test_dal_slot_frame_encoding.ml index 8a5eddbc6586..4acf80ceca21 100644 --- a/src/proto_023_PtSeouLo/lib_dal/test/test_dal_slot_frame_encoding.ml +++ b/src/proto_023_PtSeouLo/lib_dal/test/test_dal_slot_frame_encoding.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Dal_node Slot_frame_encoding - Invocation: dune exec src/proto_023_PtSEouLo/lib_dal/test/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_dal/test/main.exe \ -- --file test_dal_slot_frame_encoding.ml Subject: Tests for the SCORU storage module *) diff --git a/src/proto_023_PtSeouLo/lib_delegate/test/test_scenario.ml b/src/proto_023_PtSeouLo/lib_delegate/test/test_scenario.ml index 3bb8c6e8f65a..522320089d88 100644 --- a/src/proto_023_PtSeouLo/lib_delegate/test/test_scenario.ml +++ b/src/proto_023_PtSeouLo/lib_delegate/test/test_scenario.ml @@ -8,7 +8,7 @@ (* Testing ------- Component: Protocol, delegate - Invocation: dune exec src/proto_023_PtSEouLo/lib_delegate/test/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_delegate/test/main.exe \ -- --file test_scenario.ml Subject: Test different scenario for delegate *) diff --git a/src/proto_023_PtSeouLo/lib_plugin/test/test_conflict_handler.ml b/src/proto_023_PtSeouLo/lib_plugin/test/test_conflict_handler.ml index dc6354122126..5799e1fae91a 100644 --- a/src/proto_023_PtSeouLo/lib_plugin/test/test_conflict_handler.ml +++ b/src/proto_023_PtSeouLo/lib_plugin/test/test_conflict_handler.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Plugin.Mempool - Invocation: dune exec src/proto_023_PtSEouLo/lib_plugin/test/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_plugin/test/main.exe \ -- --file test_conflict_handler.ml Subject: Unit tests the Mempool.conflict_handler function of the plugin *) diff --git a/src/proto_023_PtSeouLo/lib_plugin/test/test_consensus_filter.ml b/src/proto_023_PtSeouLo/lib_plugin/test/test_consensus_filter.ml index 8d33926ccf07..019627a03211 100644 --- a/src/proto_023_PtSeouLo/lib_plugin/test/test_consensus_filter.ml +++ b/src/proto_023_PtSeouLo/lib_plugin/test/test_consensus_filter.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Plugin.Mempool - Invocation: dune exec src/proto_023_PtSEouLo/lib_plugin/test/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_plugin/test/main.exe \ -- --file test_consensus_filter.ml Subject: Unit tests the Mempool consensus filter *) diff --git a/src/proto_023_PtSeouLo/lib_plugin/test/test_fee_needed_to_overtake.ml b/src/proto_023_PtSeouLo/lib_plugin/test/test_fee_needed_to_overtake.ml index 93b5e59847a0..de618693cfdb 100644 --- a/src/proto_023_PtSeouLo/lib_plugin/test/test_fee_needed_to_overtake.ml +++ b/src/proto_023_PtSeouLo/lib_plugin/test/test_fee_needed_to_overtake.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Plugin.Mempool - Invocation: dune exec src/proto_023_PtSEouLo/lib_plugin/test/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_plugin/test/main.exe \ -- --file test_fee_needed_to_overtake.ml Subject: Unit tests the Mempool.fee_needed_to_overtake function of the plugin diff --git a/src/proto_023_PtSeouLo/lib_plugin/test/test_fee_needed_to_replace_by_fee.ml b/src/proto_023_PtSeouLo/lib_plugin/test/test_fee_needed_to_replace_by_fee.ml index 83301508a323..f95de3c495b0 100644 --- a/src/proto_023_PtSeouLo/lib_plugin/test/test_fee_needed_to_replace_by_fee.ml +++ b/src/proto_023_PtSeouLo/lib_plugin/test/test_fee_needed_to_replace_by_fee.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Plugin.Mempool - Invocation: dune exec src/proto_023_PtSEouLo/lib_plugin/test/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_plugin/test/main.exe \ -- --file test_fee_needed_to_replace_by_fee.ml Subject: Unit tests the fee_needed_to_replace_by_fee function of the mempool plugin diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_aggregate.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_aggregate.ml index 17e7cc176f27..fdd812ba0f11 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_aggregate.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_aggregate.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Protocol (aggregate) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/main.exe \ -- --file test_aggregate.ml *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_attestation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_attestation.ml index a707f5c0bb57..d6e745493a62 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_attestation.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_attestation.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (attestation) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/main.exe \ -- --file test_attestation.ml Subject: Attesting a block adds an extra layer of confidence to the Tezos' PoS algorithm. The block attesting diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_baking.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_baking.ml index e00653c73682..9bc5d164e164 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_baking.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_baking.ml @@ -28,7 +28,7 @@ (** Testing ------- Component: Protocol (baking) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/main.exe \ -- --file test_baking.ml Subject: Bakers and baking/voting power-related tests, based on RPCs. Note that more detailed tests on baking rewards can be found diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_companion_key.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_companion_key.ml index d12fd8cb9099..5106de6c55ee 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_companion_key.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_companion_key.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (delegate_storage) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/main.exe \ -- --file test_companion_key.ml Subject: Companion key test: registration, usage, etc *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_consensus_key.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_consensus_key.ml index 2a3c9fbfef1b..7e9fcdf580e7 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_consensus_key.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_consensus_key.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (delegate_storage) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/main.exe \ -- --file test_consensus_key.ml Subject: consistency of the [Drain_delegate] operation *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_dal_entrapment.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_dal_entrapment.ml index b35136fbd19b..63b659c1f999 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_dal_entrapment.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_dal_entrapment.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Protocol (double baking) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/main.exe \ -- --file test_dal_entrapment.ml Subject: A DAL entrapment operation may be injected when it has been observed that diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_deactivation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_deactivation.ml index e8c3e8097a07..d369b161aa9e 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_deactivation.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_deactivation.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/main.exe \ -- --file test_deactivation.ml Subject: After a given number of cycles during which a delegate has not made use of its baking and attesting rights, its account will diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_delegation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_delegation.ml index cce8ce7c1de4..f70fb650ff09 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_delegation.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_delegation.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (delegation) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/main.exe \ -- --file test_delegation.ml Subject: - Properties on bootstrap contracts (self-delegation, cannot delete/change their delegate (as opposed to contracts diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_attestation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_attestation.ml index ca2cdb3e51b7..6b7de5ae18dc 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_attestation.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_attestation.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (double attestation) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/main.exe \ -- --file test_double_attestation.ml Subject: Double attestation evidence operation may happen when an attester attested two different blocks on the same level. diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_baking.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_baking.ml index 74ae9667dbc1..f53b86a110bf 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_baking.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_baking.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (double baking) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/main.exe \ -- --file test_double_baking.ml Subject: A double baking evidence operation may be injected when it has been observed that a baker baked two different blocks at the diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_preattestation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_preattestation.ml index 22fb696c9512..30f50193066e 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_preattestation.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_double_preattestation.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (double preattestation) in Full_construction & Application modes - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/main.exe \ -- --file test_double_preattestation.ml Subject: These tests target different cases for double preattestation *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_frozen_deposits.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_frozen_deposits.ml index 06ffccd2605e..ebc314886157 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_frozen_deposits.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_frozen_deposits.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (frozen_deposits) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/main.exe \ -- --file test_frozen_deposits.ml Subject: consistency of frozen deposits and the [set_deposits_limit] operation *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_helpers_rpcs.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_helpers_rpcs.ml index fab89f66e74c..daeae0f04e48 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_helpers_rpcs.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_helpers_rpcs.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (Helpers RPCs) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/main.exe \ -- --file test_helpers_rpcs.ml Subject: On RPCs. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_participation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_participation.ml index 88e34b70df12..a156cc546b9f 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_participation.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_participation.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (participation monitoring) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/main.exe \ -- --file test_participation.ml Subject: Participation monitoring in Tenderbake *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_preattestation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_preattestation.ml index b570c5493598..882ede9a1b97 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_preattestation.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_preattestation.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (preattestation) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/main.exe \ -- --file test_preattestation.ml *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_seed.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_seed.ml index 14e22af19533..21ee2d9eb8e1 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_seed.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/test_seed.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (seed) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/consensus/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/consensus/main.exe \ -- --file test_seed.ml Subject: - seed_nonce_hash included in some blocks - revelation operation of seed_nonce that should correspond diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/test_gas_costs.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/test_gas_costs.ml index e99d138ad1d5..253be246c4c5 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/test_gas_costs.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/test_gas_costs.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (gas costs) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/gas/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/main.exe \ -- --file test_gas_costs.ml Subject: Gas costs Current limitations: for maps, sets & compare, we only test diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/test_gas_levels.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/test_gas_levels.ml index 15975444a514..e35b94ee4098 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/test_gas_levels.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/test_gas_levels.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (Gas levels) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/gas/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/gas/main.exe \ -- --file test_gas_levels.ml Subject: On gas consumption and exhaustion. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_annotations.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_annotations.ml index f166554d7641..414ab2c6739f 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_annotations.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_annotations.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (Michelson annotations) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_annotations.ml Subject: This module tests that Michelson annotations are properly handled. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_block_time_instructions.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_block_time_instructions.ml index 2b444ee55afd..7092e61e4a83 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_block_time_instructions.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_block_time_instructions.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (Michelson block-time instructions) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_block_time_instructions.ml Subject: This module tests that Michelson instructions related to block time are correct. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_contract_event.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_contract_event.ml index 04f4c4cfa87f..923980513a72 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_contract_event.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_contract_event.ml @@ -29,7 +29,7 @@ open Alpha_context (** Testing ------- Component: Protocol (event logging) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_contract_event.ml Subject: This module tests that the event logs can be written to the receipt in correct order and expected format. diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_global_constants_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_global_constants_storage.ml index ba42f2a3b081..2a454f8f17c4 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_global_constants_storage.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_global_constants_storage.ml @@ -29,7 +29,7 @@ open Transfers (** Testing ------- Component: Protocol (global table of constants) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_global_constants_storage.ml Subject: This module tests that the global table of constants can be written to and read from across blocks. diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_interpretation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_interpretation.ml index e6d2a6a81c43..0e25dfdc7321 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_interpretation.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_interpretation.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (interpretation) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_interpretation.ml Subject: Interpretation of Michelson scripts *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_lambda_normalization.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_lambda_normalization.ml index da60c9cfa213..98f85f5f5fbb 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_lambda_normalization.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_lambda_normalization.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (Michelson) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_lambda_normalization.ml Subject: Test that lambdas are normalized to optimized format at elaboration *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_lazy_storage_diff.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_lazy_storage_diff.ml index 504ec18a38ec..16b8ae486fd0 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_lazy_storage_diff.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_lazy_storage_diff.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (Michelson) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_lazy_storage_diff.ml Subject: Test lazy storage *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_patched_contracts.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_patched_contracts.ml index 5d511f3e9fc1..70366412deac 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_patched_contracts.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_patched_contracts.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol Migration (patched scripts) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_patched_contracts.ml Subject: Migration *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_sapling.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_sapling.ml index 42e765cb861b..8bdd713f250e 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_sapling.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_sapling.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (Sapling) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_sapling.ml Subject: On the privacy-preserving library Sapling *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_script_cache.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_script_cache.ml index aa77cfec33a9..a569ee5fdb0a 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_script_cache.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_script_cache.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (cache) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_script_cache.ml Subject: These unit tests check basic behavior of script cache *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_script_typed_ir_size.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_script_typed_ir_size.ml index b63867d1ff09..2b7d72440741 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_script_typed_ir_size.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_script_typed_ir_size.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (script typed IR size) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_script_typed_ir_size.ml Subject: Script_typed_ir computes good approximation of values' sizes *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_temp_big_maps.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_temp_big_maps.ml index f99281be4a54..99399556d47c 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_temp_big_maps.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_temp_big_maps.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (temporary big maps) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_temp_big_maps.ml Subject: On temporary big maps. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_accounting.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_accounting.ml index 01e8d8eea035..6ac5db98d901 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_accounting.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_accounting.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (Ticket_scanner) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_ticket_accounting.ml Subject: Ticket scanner tests *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_balance.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_balance.ml index e6c236fba773..8e7883fed27e 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_balance.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_balance.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (Ticket_balance_key) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_ticket_balance.ml Subject: Ticket balance key hashing *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_balance_key.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_balance_key.ml index 140dd81009fa..a3e3d362cb2f 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_balance_key.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_balance_key.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (Ticket_balance_key) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_ticket_balance_key.ml Subject: Ticket balance key hashing *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml index 1905428beb31..9fd82d6db3f7 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_direct_spending.ml @@ -9,7 +9,7 @@ (** Testing ------- Component: Tickets, direct spending from implicit accounts - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_ticket_direct_spending.ml Subject: Test direct spending of tickets from implicit accounts *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_lazy_storage_diff.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_lazy_storage_diff.ml index 59e5a7ffda3b..bfb2996cd8d3 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_lazy_storage_diff.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_lazy_storage_diff.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Protocol (Ticket_scanner) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_ticket_lazy_storage_diff.ml Subject: Ticket scanner tests *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_manager.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_manager.ml index dd418efdc574..a78c22852a8f 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_manager.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_manager.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (Ticket_balance_key) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_ticket_manager.ml Subject: Tests that compare the ticket-balance table against tickets in the contract storages. The tests include a lot of operations that diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_operations_diff.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_operations_diff.ml index 5b8fb47dda4e..b0e5e9a1a8df 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_operations_diff.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_operations_diff.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (Ticket_scanner) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_ticket_operations_diff.ml Subject: Ticket scanner tests *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_scanner.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_scanner.ml index dacd4e51486b..19761bb55e2d 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_scanner.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_scanner.ml @@ -28,7 +28,7 @@ (** Testing ------- Component: Protocol (Ticket_scanner) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_ticket_scanner.ml Subject: Ticket scanner tests *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_storage.ml index 3d1987bc3959..d829f1dabf92 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_storage.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_ticket_storage.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (Alpha_context.Ticket_balance) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_ticket_storage.ml Subject: Ticket storage functions tested using the Ticket_balance module in Alpha_context. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_typechecking.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_typechecking.ml index 70755d2d8f92..269f8a9112b3 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_typechecking.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/test_typechecking.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (type-checking) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/main.exe \ -- --file test_typechecking.ml Subject: Type-checking *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_activation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_activation.ml index 663c0b06e790..8ffab16b7a46 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_activation.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_activation.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (activation) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/main.exe \ -- --file test_activation.ml Subject: The activation operation creates an implicit contract from a registered commitment present in the context. It is diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_combined_operations.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_combined_operations.ml index cdd3f6b72906..4f71d8251894 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_combined_operations.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_combined_operations.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (combined operations) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/main.exe \ -- --file test_combined_operations.ml Subject: Multiple manager operations can be grouped in one diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_failing_noop.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_failing_noop.ml index cdda2aeec345..302a670a0c3b 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_failing_noop.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_failing_noop.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/main.exe \ -- --file test_failing_noop.ml Subject: The Failing_noop operation was added bearing in mind the possibility for the end user to sign arbitrary bytes, diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_origination.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_origination.ml index 3fce6dc72f08..50d7f01905c0 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_origination.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_origination.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (origination) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/main.exe \ -- --file test_origination.ml Subject: On originating contracts. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_paid_storage_increase.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_paid_storage_increase.ml index 051127f95111..7b6fd194011e 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_paid_storage_increase.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_paid_storage_increase.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (increase_paid_storage) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/main.exe \ -- --file test_paid_storage_increase.ml Subject: On increasing a paid amount of contract storage. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_reveal.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_reveal.ml index 3bf6fcfd21b9..267589feb94b 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_reveal.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_reveal.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (revelation) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/main.exe \ -- --file test_reveal.ml Subject: On the reveal operation. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_sc_rollup.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_sc_rollup.ml index 724deeb67558..7c63506e38bd 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_sc_rollup.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_sc_rollup.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Rollup layer 1 logic - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/main.exe \ -- --file test_sc_rollup.ml Subject: Test smart contract rollup *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml index 528d6030e10f..2737d934624b 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_sc_rollup_transfer.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Sc rollup L1/L2 communication - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/main.exe \ -- --file test_sc_rollup_transfer.ml Subject: Test transfers from Michelson to smart contract rollups *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_transfer.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_transfer.ml index 08182514be3c..a5b64ba4ea2d 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_transfer.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_transfer.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (transfer) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/main.exe \ -- --file test_transfer.ml Subject: Quantities transfer between contracts. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_transfer_ticket.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_transfer_ticket.ml index 9b01c992873a..8091f334afd5 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_transfer_ticket.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_transfer_ticket.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Transfer_ticket logic - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/main.exe \ -- --file test_transfer_ticket.ml Subject: Test ticket transfers *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_voting.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_voting.ml index f35cc463e54f..f67939b1e620 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_voting.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_voting.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Protocol (voting) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/main.exe \ -- --file test_voting.ml Subject: On the voting process. diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_zk_rollup.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_zk_rollup.ml index 111259948b1d..25e2ed6b51e9 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_zk_rollup.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/test_zk_rollup.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Rollup layer 1 logic - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/operations/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/operations/main.exe \ -- --file test_zk_rollup.ml Subject: Test zk rollup *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_constants.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_constants.ml index 933b7eb0807e..134da5b2b35c 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_constants.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_constants.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Protocol (baking) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/main.exe \ -- --file test_constants.ml Subject: the consistency of parametric constants *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_frozen_bonds.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_frozen_bonds.ml index ccafa5021618..2ad8691b4992 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_frozen_bonds.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_frozen_bonds.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Protocol (token) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/main.exe \ -- --file test_frozen_bonds.ml Subject: Frozen bonds applicable to contracts and part of their stake. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_liquidity_baking.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_liquidity_baking.ml index 8c3f49b1beca..c6fe3a6d5890 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_liquidity_baking.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_liquidity_baking.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: liquidity baking - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/main.exe \ -- --file test_liquidity_baking.ml Subject: Test liquidity baking subsidies, CPMM storage updates, and toggle vote. diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_base.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_base.ml index df5a607704fd..a02e9ddec910 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_base.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_base.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Scenario, State - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/main.exe \ -- --file test_scenario_base.ml Subject: Test basic functionality of the scenario framework. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_deactivation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_deactivation.ml index 4b01c9cb7386..3630a8f4a2c4 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_deactivation.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_deactivation.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Protocol, Consensus, Deactivation - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/main.exe \ -- --file test_scenario_deactivation.ml Subject: Test deactivation in the protocol. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_rewards.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_rewards.ml index a287bc2a939d..4bd28698b1ad 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_rewards.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_rewards.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Adaptive Issuance, Rewards - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/main.exe \ -- --file test_scenario_rewards.ml Subject: Test rewards issuance in the protocol. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_slashing.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_slashing.ml index 2704a0812d94..70c4181b17c4 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_slashing.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_slashing.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Adaptive Issuance, Slashing - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/main.exe \ -- --file test_scenario_slashing.ml Subject: Test slashing scenarios in the protocol. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_slashing_stakers.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_slashing_stakers.ml index 7b619ff8499a..e3cf10f76f75 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_slashing_stakers.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_slashing_stakers.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Adaptive Issuance, Slashing with Stakers - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/main.exe \ -- --file test_scenario_slashing_stakers.ml Subject: Test slashing scenarios in the protocol with stakers. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_stake.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_stake.ml index ce3a0805a7e8..92db50385144 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_stake.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_scenario_stake.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Adaptive Issuance, Staking - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/main.exe \ -- --file test_scenario_stake.ml Subject: Test staking operations in the protocol. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_storage.ml index c731a2a8e60f..460dd6088847 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_storage.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_storage.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Context Storage - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/main.exe \ -- --file test_storage.ml Subject: Test the correctnesss of debug message from storage_functor *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_storage_functions.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_storage_functions.ml index 8895d919975a..48f7b23dd39f 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_storage_functions.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_storage_functions.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Context Storage - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/main.exe \ -- --file test_storage_functions.ml Subject: Test storage functions. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_token.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_token.ml index 0f2080ae74b7..42b6286406e2 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_token.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/test_token.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (token) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/main.exe \ -- --file test_token.ml Subject: Token movements in the protocol. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_1m_restriction.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_1m_restriction.ml index 3ee916088360..f91a06fc6482 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_1m_restriction.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_1m_restriction.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Protocol (validate manager) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/main.exe \ -- --file test_1m_restriction.ml Subject: 1M restriction in validation of manager operation. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_covalidity.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_covalidity.ml index 9848c4de92f1..44447d980240 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_covalidity.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_covalidity.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Protocol (validate manager) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/main.exe \ -- --file test_covalidity.ml Subject: Validation of operation. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_manager_operation_validation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_manager_operation_validation.ml index feb57150ea0b..8bb389aa3faa 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_manager_operation_validation.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_manager_operation_validation.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Protocol (validate manager) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/main.exe \ -- --file test_manager_operation_validation.ml Subject: Validation of manager operation. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_mempool.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_mempool.ml index be1f84468247..ea0f574d2dd9 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_mempool.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_mempool.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/main.exe \ -- --file test_mempool.ml Subject: Integration > Validate > Mempool mode *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_sanity.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_sanity.ml index cd6ae990d5af..9cbaa3ec0f33 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_sanity.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_sanity.ml @@ -9,7 +9,7 @@ (** Testing ------- Component: Protocol (validate manager) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/main.exe \ -- --file test_sanity.ml Subject: Validation of operation. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_validation_batch.ml b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_validation_batch.ml index a671aec422f2..cee102d2d4a8 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_validation_batch.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/test_validation_batch.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Protocol (validate manager) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/integration/validate/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/integration/validate/main.exe \ -- --file test_validation_batch.ml Subject: Validation of batched manager operation. diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/liquidity_baking_pbt.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/liquidity_baking_pbt.ml index ea32e65b9ea5..e386a6120150 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/liquidity_baking_pbt.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/liquidity_baking_pbt.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: pbt for liquidity baking - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file liquidity_baking_pbt.ml Subject: Test liquidity baking contracts using randomly generated inputs. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/saturation_fuzzing.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/saturation_fuzzing.ml index c3bc4452073d..3392e7e35983 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/saturation_fuzzing.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/saturation_fuzzing.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol Library - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file saturation_fuzzing.ml Subject: Operations in Saturation_repr *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_balance_updates_encoding.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_balance_updates_encoding.ml index 040773c47345..fde79ff12034 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_balance_updates_encoding.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_balance_updates_encoding.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol Library - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_balance_updates_encoding.ml Subject: Encoding for balance_updates *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_bytes_conversion.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_bytes_conversion.ml index 42281df2a45b..43409fef18b2 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_bytes_conversion.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_bytes_conversion.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: pbt for bytes <=> nat/int conversions - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_bytes_conversion.ml Subject: Test the conversions between bytes and int/nat *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_carbonated_map.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_carbonated_map.ml index 33d149458741..5afa8bbb5865 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_carbonated_map.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_carbonated_map.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol Library - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_carbonated_map.ml Subject: Operations in Carbonated_map *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_compare_operations.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_compare_operations.ml index d83c5c763a34..222cd06d6c6e 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_compare_operations.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_compare_operations.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (Operation compare) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_compare_operations.ml Subject: Valid operations Comparison *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_dal_slot_proof.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_dal_slot_proof.ml index 866e0459c223..22670907df8d 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_dal_slot_proof.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_dal_slot_proof.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: PBT for refutation proofs of Dal - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_dal_slot_proof.ml Subject: Refutation proof-related functions of Dal *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_gas_properties.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_gas_properties.ml index 6c1b5512a6c9..7accfc927bba 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_gas_properties.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_gas_properties.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (gas properties) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_gas_properties.ml Subject: Arithmetic properties around gas. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_merkle_list.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_merkle_list.ml index 5d3c8ac0f6b0..f4f47f04bb2a 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_merkle_list.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_merkle_list.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol Library - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_merkle_list.ml Subject: Tx rollup l2 encoding *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_operation_encoding.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_operation_encoding.ml index d376938e14c0..4b7f5111a831 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_operation_encoding.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_operation_encoding.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol Library - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_operation_encoding.ml Subject: Encoding for operations *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_refutation_game.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_refutation_game.ml index bf84d6d4b28f..7f9ff5069d12 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_refutation_game.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_refutation_game.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: PBT for the SCORU refutation game - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_refutation_game.ml Subject: SCORU refutation game *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sampler.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sampler.ml index 221e157c009e..afb39272e5f5 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sampler.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sampler.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol Library - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_sampler.ml Subject: Operations in Saturation_repr *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_encoding.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_encoding.ml index cb394ef8666d..1e9750bc5773 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_encoding.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_encoding.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol Library - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_sc_rollup_encoding.ml Subject: SC rollup encoding *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_inbox.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_inbox.ml index 76a98bbd0b3d..cffff92dc839 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_inbox.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_inbox.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol Library - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_sc_rollup_inbox.ml Subject: Smart rollup inbox *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_tick_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_tick_repr.ml index 42759d43caee..4b3544f60e20 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_tick_repr.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_sc_rollup_tick_repr.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol Library - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_sc_rollup_tick_repr.ml Subject: Operations in Tick_repr *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_script_comparison.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_script_comparison.ml index b090379e9eaf..fcdee4f42d35 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_script_comparison.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_script_comparison.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Script_comparison - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_script_comparison.ml Subject: PBT of the Script_comparable.compare_comparable function. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_script_roundtrip.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_script_roundtrip.ml index 2f39aa1b5b34..2a7b598e5a9e 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_script_roundtrip.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_script_roundtrip.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Michelson translator and ir_size - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_script_roundtrip.ml Subject: PBT of the roundrip property of Michelson storages. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_tez_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_tez_repr.ml index 31cf1f2bdd0f..509633762cf8 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_tez_repr.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_tez_repr.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol Library - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_tez_repr.ml Subject: Operations in Tez_repr *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_zk_rollup_encoding.ml b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_zk_rollup_encoding.ml index f0ea8338736d..e9790eca6eb0 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_zk_rollup_encoding.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/pbt/test_zk_rollup_encoding.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol Library - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/pbt/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/pbt/main.exe \ -- --file test_zk_rollup_encoding.ml Subject: Zk rollup encodings *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/regression/test_logging.ml b/src/proto_023_PtSeouLo/lib_protocol/test/regression/test_logging.ml index e2a93bfa10f2..dac2bcc356be 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/regression/test_logging.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/regression/test_logging.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (type-checking) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/regression/main.exe + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/regression/main.exe Subject: Type-checking *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_adaptive_issuance.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_adaptive_issuance.ml index 171dcf8d0585..7d4908bcea48 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_adaptive_issuance.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_adaptive_issuance.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (rewards) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_adaptive_issuance.ml Subject: Test reward values under adaptive issuance *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_adaptive_issuance_ema.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_adaptive_issuance_ema.ml index 9be75b14584a..319b06544650 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_adaptive_issuance_ema.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_adaptive_issuance_ema.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol, Adaptive Issuance - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_adaptive_issuance_ema.ml Subject: Tests for the update functions of the EMA of the launch vote of Adaptive Issuance diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_alpha_context.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_alpha_context.ml index cd9351339969..6c9f57b5cdbc 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_alpha_context.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_alpha_context.ml @@ -29,7 +29,7 @@ open Alpha_context (** Testing ------- Component: Alpha_context - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_alpha_context.ml Dependencies: helpers/block.ml Subject: To test the modules (including the top-level) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_bond_id_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_bond_id_repr.ml index 4dcb5fabdc80..2d2cd1249f6e 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_bond_id_repr.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_bond_id_repr.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Bond_id_repr - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_bond_id_repr.ml Dependencies: -- Subject: Test bond id representations for RPC definitions. diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_consecutive_round_zero.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_consecutive_round_zero.ml index ddda88557a97..29a66ac2a8b2 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_consecutive_round_zero.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_consecutive_round_zero.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: protocol - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_consecutive_round_zero.ml Subject: test consecutive_round_zero which corresponds to the number of blocks consecutively baked at round zero. diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_consensus_key.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_consensus_key.ml index 0a5cc6fef0bc..45cb37e93ba4 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_consensus_key.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_consensus_key.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (delegate_consensus_key) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_consensus_key.ml Subject: Functions from the module `Delegate_consensus_key` *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_contract_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_contract_repr.ml index 129ce671c5e1..98ccb9d0df75 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_contract_repr.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_contract_repr.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Contract_repr - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_contract_repr.ml Dependencies: contract_hash.ml Subject: To test the modules (including the top-level) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_dal_slot_proof.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_dal_slot_proof.ml index 1ea2c7f82f8f..deeb7f199e5a 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_dal_slot_proof.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_dal_slot_proof.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (dal slot proof) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_dal_slot_proof.ml Subject: These unit tests check proof-related functions of Dal slots. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_destination_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_destination_repr.ml index ac98cdc9dac3..c751280c557c 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_destination_repr.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_destination_repr.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Destination_repr - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_destination_repr.ml Subject: To test the encoding of [Destination_repr] and assert it is compatible with [Contract_repr.encoding]. diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_fitness.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_fitness.ml index d37428df32b8..a4977db30bc7 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_fitness.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_fitness.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (committee selection) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_fitness.ml Subject: test the fitness module *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_fixed_point.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_fixed_point.ml index 9ab0969671ee..73d84ba50119 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_fixed_point.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_fixed_point.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (fixed-point decimals) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_fixed_point.ml Subject: On fixed-point decimal numbers. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_full_staking_balance_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_full_staking_balance_repr.ml index d1662612e5fa..4ecf85628156 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_full_staking_balance_repr.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_full_staking_balance_repr.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: protocol - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_full_staking_balance_repr.ml Subject: test the Full_staking_balance_repr module *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_gas_monad.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_gas_monad.ml index 0e5f68b003ae..c60ec152435c 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_gas_monad.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_gas_monad.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol Gas_monad - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_gas_monad.ml Subject: Tests for the gas monad module *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_global_constants_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_global_constants_storage.ml index 654b2f701e94..b5e0fa6d078a 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_global_constants_storage.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_global_constants_storage.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Global table of constants - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_global_constants_storage.ml Dependencies: contract_hash.ml Subject: Test the global table of constants diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_level_module.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_level_module.ml index ce309db748b0..437e1b99532a 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_level_module.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_level_module.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (baking) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_level_module.ml Subject: some functions in the Level module *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_liquidity_baking_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_liquidity_baking_repr.ml index 995cae8dbbb1..a07641ec3a2d 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_liquidity_baking_repr.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_liquidity_baking_repr.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol Liquidity_baking_repr module - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_liquidity_baking_repr.ml Subject: Tests for the Liquidity_baking_repr module *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_local_contexts.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_local_contexts.ml index c534adb9e155..68f26a20eee4 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_local_contexts.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_local_contexts.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Local context storages by functors - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_local_contexts.ml Dependencies: helpers/block.ml Subject: Tests for local contexts diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_merkle_list.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_merkle_list.ml index ad2eb9d202f0..571d29c8d2bf 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_merkle_list.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_merkle_list.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (Merkle list) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_merkle_list.ml Subject: test the ad-hoc merkle tree structure implemented to encode lists *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_operation_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_operation_repr.ml index 7f3a3083251e..d83a5ed741f0 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_operation_repr.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_operation_repr.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Operation_repr - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_operation_repr.ml Dependencies: -- Subject: To test the modules (including the top-level) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_percentage.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_percentage.ml index e996a6203e2a..ab0652444625 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_percentage.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_percentage.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Protocol (quantities) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_percentage.ml Subject: On percentages. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_qty.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_qty.ml index 7fd995418418..c9a53bf8a55f 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_qty.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_qty.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (quantities) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_qty.ml Subject: On tez quantities. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_raw_level_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_raw_level_repr.ml index ac59ab92dcb1..916097486be7 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_raw_level_repr.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_raw_level_repr.ml @@ -29,7 +29,7 @@ open Tztest (** Testing ------- Component: Raw_level_repr - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_raw_level_repr.ml Dependencies: -- Subject: To test the modules (including the top-level) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_receipt.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_receipt.ml index 0dfbad8592e0..f0d98a8cd530 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_receipt.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_receipt.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (token) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_receipt.ml Subject: Test receipt endocings. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_round_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_round_repr.ml index 3e93d888cdd5..52b2c2b40a26 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_round_repr.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_round_repr.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: protocol - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_round_repr.ml Subject: test the Round_repr module *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_saturation.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_saturation.ml index 8d0f76a1dd5a..58878fe01af6 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_saturation.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_saturation.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (saturated arithmetic) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_saturation.ml Subject: The gas is represented using saturated arithmetic. These unit tests check that saturated arithmetic operations diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_arith.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_arith.ml index cd17936fea59..adf570c58344 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_arith.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_arith.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (saturated arithmetic) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_sc_rollup_arith.ml Subject: Basic testing of the arithmetic rollup example *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_game.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_game.ml index 70654f38ae75..30cfcc64af63 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_game.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_game.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Protocol Sc_rollup_refutation_storage - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_sc_rollup_game.ml Subject: Tests for the SCORU refutation game *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_inbox.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_inbox.ml index c23bdca41a61..a89e7d0461f7 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_inbox.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_inbox.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (smart contract rollup inbox) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_sc_rollup_inbox.ml Subject: These unit tests check the off-line inbox implementation for smart contract rollups diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_inbox_legacy.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_inbox_legacy.ml index 8925ad601074..b1edf3c528f1 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_inbox_legacy.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_inbox_legacy.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (smart contract rollup inbox) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe Subject: These unit tests check the off-line inbox implementation for smart contract rollups *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml index 4937c5c27dc0..382024905eb0 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_management_protocol.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (Rollup Management Protocol) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_sc_rollup_management_protocol.ml Subject: Sanity checks for the Rollup Management Protocol module. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_storage.ml index 3c631ddd3c8c..c05263631aed 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_storage.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_storage.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Protocol Sc_rollup_storage - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_sc_rollup_storage.ml Subject: Tests for the SCORU storage module *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_wasm.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_wasm.ml index 6166d2d01cf5..837b0b339364 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_wasm.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_sc_rollup_wasm.ml @@ -27,7 +27,7 @@ (** Testing ------- Component: Rollup layer 1 logic - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_sc_rollup_wasm.ml Subject: Unit test for the Wasm PVM *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_skip_list_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_skip_list_repr.ml index 1822ceb4f32c..24e67a55d30e 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_skip_list_repr.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_skip_list_repr.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Protocol (skip lists) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_skip_list_repr.ml Subject: Test skip list implementation *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_slashing_percentage.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_slashing_percentage.ml index 1f79d5b01afe..c4c0cbb26ce5 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_slashing_percentage.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_slashing_percentage.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Protocol (quantities) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_slashing_percentage.ml Subject: On slashing double attestations. *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_staking_operations.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_staking_operations.ml index 4e0ebb3b13a0..3dc506668683 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_staking_operations.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_staking_operations.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: protocol - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_staking_operations.ml Subject: test staking operations *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_tez_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_tez_repr.ml index 4794087aa2bf..8d869a49e435 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_tez_repr.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_tez_repr.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Tez_repr - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_tez_repr.ml Dependencies: -- Subject: To test the modules (including the top-level) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_time_repr.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_time_repr.ml index 409b19321dea..23cf199f5a9f 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_time_repr.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_time_repr.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Protocol (time repr) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_time_repr.ml Subject: Error handling of time operations *) diff --git a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_zk_rollup_storage.ml b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_zk_rollup_storage.ml index 899f3d57c4f9..97a4389c5b4e 100644 --- a/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_zk_rollup_storage.ml +++ b/src/proto_023_PtSeouLo/lib_protocol/test/unit/test_zk_rollup_storage.ml @@ -8,7 +8,7 @@ (** Testing ------- Component: Protocol (Zk_rollup) - Invocation: dune exec src/proto_023_PtSEouLo/lib_protocol/test/unit/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_protocol/test/unit/main.exe \ -- --file test_zk_rollup_storage.ml Subject: On ZK Rollup storage *) diff --git a/src/proto_023_PtSeouLo/lib_sc_rollup_node/test/test_octez_conversions.ml b/src/proto_023_PtSeouLo/lib_sc_rollup_node/test/test_octez_conversions.ml index b8509281ebac..5366ad90df5e 100644 --- a/src/proto_023_PtSeouLo/lib_sc_rollup_node/test/test_octez_conversions.ml +++ b/src/proto_023_PtSeouLo/lib_sc_rollup_node/test/test_octez_conversions.ml @@ -26,7 +26,7 @@ (** Testing ------- Component: Smart rollup node library, type conversions - Invocation: dune exec src/proto_023_PtSEouLo/lib_sc_rollup_node/test/main.exe \ + Invocation: dune exec src/proto_023_PtSeouLo/lib_sc_rollup_node/test/main.exe \ -- -f test_octez_conversions.ml Subject: Ensure conversions between octez smart rollup structures and protocol ones are bijective. -- GitLab From 3ca5d2b09d5d8d774768c655e5c849dc7fb7d9f3 Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:34:21 +0200 Subject: [PATCH 17/31] S023/teztale: update teztale_archiver_main.ml --- ...SEouLo_machine.real.ml => PtSeouLo_machine.real.ml} | 10 +++++----- teztale/bin_teztale_archiver/teztale_archiver_main.ml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) rename teztale/bin_teztale_archiver/{PtSEouLo_machine.real.ml => PtSeouLo_machine.real.ml} (97%) diff --git a/teztale/bin_teztale_archiver/PtSEouLo_machine.real.ml b/teztale/bin_teztale_archiver/PtSeouLo_machine.real.ml similarity index 97% rename from teztale/bin_teztale_archiver/PtSEouLo_machine.real.ml rename to teztale/bin_teztale_archiver/PtSeouLo_machine.real.ml index aab594f34757..3fbfb9a989d3 100644 --- a/teztale/bin_teztale_archiver/PtSEouLo_machine.real.ml +++ b/teztale/bin_teztale_archiver/PtSeouLo_machine.real.ml @@ -6,19 +6,19 @@ (*****************************************************************************) module Block_services = - Tezos_client_023_PtSEouLo.Protocol_client_context.Alpha_block_services + Tezos_client_023_PtSeouLo.Protocol_client_context.Alpha_block_services open Lwt_result_syntax -open Tezos_protocol_023_PtSEouLo -open Tezos_protocol_plugin_023_PtSEouLo +open Tezos_protocol_023_PtSeouLo +open Tezos_protocol_plugin_023_PtSeouLo module Services : Protocol_machinery.PROTOCOL_SERVICES = struct let hash = Protocol.hash - type wrap_full = Tezos_client_023_PtSEouLo.Protocol_client_context.wrap_full + type wrap_full = Tezos_client_023_PtSeouLo.Protocol_client_context.wrap_full let wrap_full cctxt = - new Tezos_client_023_PtSEouLo.Protocol_client_context.wrap_full cctxt + new Tezos_client_023_PtSeouLo.Protocol_client_context.wrap_full cctxt let slot_to_int x = (* YES this is Fun.x ! *) diff --git a/teztale/bin_teztale_archiver/teztale_archiver_main.ml b/teztale/bin_teztale_archiver/teztale_archiver_main.ml index c9efec622f35..b3161fc6305e 100644 --- a/teztale/bin_teztale_archiver/teztale_archiver_main.ml +++ b/teztale/bin_teztale_archiver/teztale_archiver_main.ml @@ -270,7 +270,7 @@ module M018 = Proxford_machine.M module M019 = PtParisB_machine.M module M020 = PsParisC_machine.M module M022 = PsRiotum_machine.M -module M023 = PtSEouLo_machine.M +module M023 = PtSeouLo_machine.M module Malpha = Alpha_machine.M module M021 = PsQuebec_machine.M -- GitLab From 22e94a493f7e894cb590d16ee3924d241203d3cb Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:34:22 +0200 Subject: [PATCH 18/31] S023/tezt: update protocol tag in alcotezt --- tezt/lib_alcotezt/alcotezt_utils.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tezt/lib_alcotezt/alcotezt_utils.ml b/tezt/lib_alcotezt/alcotezt_utils.ml index 97fb54732523..aaeb93023675 100644 --- a/tezt/lib_alcotezt/alcotezt_utils.ml +++ b/tezt/lib_alcotezt/alcotezt_utils.ml @@ -37,5 +37,5 @@ let is_proto_test file = | Some "020_PsParisC" -> ["parisc"] | Some "021_PsQuebec" -> ["quebec"] | Some "022_PsRiotum" -> ["r022"] - | Some "023_PtSEouLo" -> ["s023"] + | Some "023_PtSeouLo" -> ["s023"] | Some _ -> assert false -- GitLab From 5f6a5e4a31bc941479968c34c3c0ae4322aeffdf Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:34:22 +0200 Subject: [PATCH 19/31] S023/tezt: adapt lib_tezos/protocol.ml --- tezt/lib_tezos/protocol.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tezt/lib_tezos/protocol.ml b/tezt/lib_tezos/protocol.ml index 7c04516a50af..e5cc9c6e8c30 100644 --- a/tezt/lib_tezos/protocol.ml +++ b/tezt/lib_tezos/protocol.ml @@ -51,7 +51,7 @@ let number = function R022 -> 022 | S023 -> 023 | Alpha -> 024 let directory = function | R022 -> "proto_022_PsRiotum" | Alpha -> "proto_alpha" - | S023 -> "proto_023_PtSEouLo" + | S023 -> "proto_023_PtSeouLo" (* Test tags must be lowercase. *) let tag protocol = String.lowercase_ascii (name protocol) @@ -59,7 +59,7 @@ let tag protocol = String.lowercase_ascii (name protocol) let hash = function | Alpha -> "ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK" | R022 -> "PsRiotumaAMotcRoDWW1bysEhQy2n1M5fy8JgRp8jjRfHGmfeA7" - | S023 -> "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY" + | S023 -> "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh" (* DO NOT REMOVE, AUTOMATICALLY ADD STABILISED PROTOCOL HASH HERE *) let short_hash protocol_hash = -- GitLab From c299579401489d3029a592cfc7b2c3d8e1d6f37b Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:34:23 +0200 Subject: [PATCH 20/31] S023/tezt: replace baker in constant.ml --- tezt/lib_tezos/constant.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tezt/lib_tezos/constant.ml b/tezt/lib_tezos/constant.ml index 5b547dde0cd6..4430fe62b2d3 100644 --- a/tezt/lib_tezos/constant.ml +++ b/tezt/lib_tezos/constant.ml @@ -98,7 +98,7 @@ let octez_baker_rio = Uses.make ~tag:"baker_psriotum" ~path:"./octez-baker-PsRiotum" () let octez_baker_seoul = - Uses.make ~tag:"baker_ptseoulo" ~path:"./octez-baker-PtSEouLo" () + Uses.make ~tag:"baker_ptseoulo" ~path:"./octez-baker-PtSeouLo" () let octez_baker_alpha = Uses.make ~tag:"baker_alpha" ~path:"./octez-baker-alpha" () -- GitLab From 18e8fbfbebd0bf47f3fa02b19396aeea7556b87a Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:34:29 +0200 Subject: [PATCH 21/31] S023/tezt: move 023_PtSEouLo regression files --- ... client) RPC regression tests- mempool.out | 58 +++++++------- ...e proxy) RPC regression tests- mempool.out | 58 +++++++------- .../baker_test.ml/S023-- 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 +- ...ount--storage921624073--input32460203-.out | 2 +- ...unt--storage921624073--input643709811-.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 +- .../S023-- Tc scripts.out | 2 +- ... integration (Use all available slots).out | 6 +- ...encoding regression test- block_header.out | 4 +- ...ding regression test- block_header.raw.out | 4 +- ...regression test- block_header.unsigned.out | 4 +- ...col encoding regression test- contract.out | 8 +- ...otocol encoding regression test- cycle.out | 8 +- ...ocol encoding regression test- fitness.out | 4 +- ...col encoding regression test- gas.cost.out | 8 +- ...protocol encoding regression test- gas.out | 12 +-- ...otocol encoding regression test- level.out | 4 +- ...otocol encoding regression test- nonce.out | 4 +- ...sion test- operation.bls_mode_unsigned.out | 8 +- ...ng regression test- operation.internal.out | 20 ++--- ...ol encoding regression test- operation.out | 76 +++++++++--------- ...ncoding regression test- operation.raw.out | 4 +- ...ng regression test- operation.unsigned.out | 80 +++++++++---------- ...tocol encoding regression test- period.out | 8 +- ...ol encoding regression test- raw_level.out | 8 +- ...rotocol encoding regression test- seed.out | 4 +- ...protocol encoding regression test- tez.out | 8 +- ...ol encoding regression test- timestamp.out | 4 +- ... encoding regression test- vote.ballot.out | 12 +-- ...encoding regression test- vote.ballots.out | 4 +- ...ncoding regression test- vote.listings.out | 4 +- ...ng regression test- voting_period.kind.out | 16 ++-- ...ncoding regression test- voting_period.out | 8 +- .../tzt_regression.ml/S023-- Run TZT.out | 2 +- 368 files changed, 564 insertions(+), 564 deletions(-) diff --git a/tezt/tests/expected/RPC_test.ml/S023-- (mode client) RPC regression tests- mempool.out b/tezt/tests/expected/RPC_test.ml/S023-- (mode client) RPC regression tests- mempool.out index 0271f8d1e93f..2ab3e59dc0b1 100644 --- a/tezt/tests/expected/RPC_test.ml/S023-- (mode client) RPC regression tests- mempool.out +++ b/tezt/tests/expected/RPC_test.ml/S023-- (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":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.023-PtSEouLo.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]}] -[{"hash":"[OPERATION_HASH]","protocol":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.023-PtSEouLo.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] -[{"hash":"[OPERATION_HASH]","protocol":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] -[{"hash":"[OPERATION_HASH]","protocol":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] +[{"hash":"[OPERATION_HASH]","protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.023-PtSeouLo.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]}] +[{"hash":"[OPERATION_HASH]","protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.023-PtSeouLo.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] +[{"hash":"[OPERATION_HASH]","protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] +[{"hash":"[OPERATION_HASH]","protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"3040","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": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -32,11 +32,11 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "permanent", - "id": "proto.023-PtSEouLo.prefilter.fees_too_low" } ] } ], + "id": "proto.023-PtSeouLo.prefilter.fees_too_low" } ] } ], "outdated": [], "branch_refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -48,12 +48,12 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "branch", - "id": "proto.023-PtSEouLo.contract.counter_in_the_past", + "id": "proto.023-PtSeouLo.contract.counter_in_the_past", "contract": "[PUBLIC_KEY_HASH]", "expected": "2", "found": "1" } ] } ], "branch_delayed": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -65,7 +65,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "temporary", - "id": "proto.023-PtSEouLo.contract.counter_in_the_future", + "id": "proto.023-PtSeouLo.contract.counter_in_the_future", "contract": "[PUBLIC_KEY_HASH]", "expected": "1", "found": "5" } ] } ], "unprocessed": [] } @@ -87,7 +87,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]" } ], "refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -99,11 +99,11 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "permanent", - "id": "proto.023-PtSEouLo.prefilter.fees_too_low" } ] } ], + "id": "proto.023-PtSeouLo.prefilter.fees_too_low" } ] } ], "outdated": [], "branch_refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -115,12 +115,12 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "branch", - "id": "proto.023-PtSEouLo.contract.counter_in_the_past", + "id": "proto.023-PtSeouLo.contract.counter_in_the_past", "contract": "[PUBLIC_KEY_HASH]", "expected": "2", "found": "1" } ] } ], "branch_delayed": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -132,7 +132,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "temporary", - "id": "proto.023-PtSEouLo.contract.counter_in_the_future", + "id": "proto.023-PtSeouLo.contract.counter_in_the_future", "contract": "[PUBLIC_KEY_HASH]", "expected": "1", "found": "5" } ] } ], "unprocessed": [] } @@ -150,7 +150,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]" } ], "refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -162,11 +162,11 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "permanent", - "id": "proto.023-PtSEouLo.prefilter.fees_too_low" } ] } ], + "id": "proto.023-PtSeouLo.prefilter.fees_too_low" } ] } ], "outdated": [], "branch_refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -178,12 +178,12 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "branch", - "id": "proto.023-PtSEouLo.contract.counter_in_the_past", + "id": "proto.023-PtSeouLo.contract.counter_in_the_past", "contract": "[PUBLIC_KEY_HASH]", "expected": "2", "found": "1" } ] } ], "branch_delayed": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -195,7 +195,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "temporary", - "id": "proto.023-PtSEouLo.contract.counter_in_the_future", + "id": "proto.023-PtSeouLo.contract.counter_in_the_future", "contract": "[PUBLIC_KEY_HASH]", "expected": "1", "found": "5" } ] } ], "unprocessed": [] } @@ -222,7 +222,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t { "validated": [], "refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -234,7 +234,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "permanent", - "id": "proto.023-PtSEouLo.prefilter.fees_too_low" } ] } ], + "id": "proto.023-PtSeouLo.prefilter.fees_too_low" } ] } ], "outdated": [], "branch_refused": [], "branch_delayed": [], "unprocessed": [] } @@ -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": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -254,7 +254,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "temporary", - "id": "proto.023-PtSEouLo.contract.counter_in_the_future", + "id": "proto.023-PtSeouLo.contract.counter_in_the_future", "contract": "[PUBLIC_KEY_HASH]", "expected": "1", "found": "5" } ] } ], "unprocessed": [] } @@ -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": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -274,7 +274,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "branch", - "id": "proto.023-PtSEouLo.contract.counter_in_the_past", + "id": "proto.023-PtSeouLo.contract.counter_in_the_past", "contract": "[PUBLIC_KEY_HASH]", "expected": "2", "found": "1" } ] } ], "branch_delayed": [], "unprocessed": [] } @@ -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":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"},{"hash":"[OPERATION_HASH]","protocol":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"permanent","id":"proto.023-PtSEouLo.prefilter.fees_too_low"}]},{"hash":"[OPERATION_HASH]","protocol":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.023-PtSEouLo.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]},{"hash":"[OPERATION_HASH]","protocol":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.023-PtSEouLo.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] +[{"hash":"[OPERATION_HASH]","protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"},{"hash":"[OPERATION_HASH]","protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"permanent","id":"proto.023-PtSeouLo.prefilter.fees_too_low"}]},{"hash":"[OPERATION_HASH]","protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.023-PtSeouLo.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]},{"hash":"[OPERATION_HASH]","protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.023-PtSeouLo.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/S023-- (mode proxy) RPC regression tests- mempool.out b/tezt/tests/expected/RPC_test.ml/S023-- (mode proxy) RPC regression tests- mempool.out index be625ff9de23..ede37c4f3b7e 100644 --- a/tezt/tests/expected/RPC_test.ml/S023-- (mode proxy) RPC regression tests- mempool.out +++ b/tezt/tests/expected/RPC_test.ml/S023-- (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":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.023-PtSEouLo.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]}] -[{"hash":"[OPERATION_HASH]","protocol":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.023-PtSEouLo.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] -[{"hash":"[OPERATION_HASH]","protocol":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] -[{"hash":"[OPERATION_HASH]","protocol":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] +[{"hash":"[OPERATION_HASH]","protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.023-PtSeouLo.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]}] +[{"hash":"[OPERATION_HASH]","protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.023-PtSeouLo.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] +[{"hash":"[OPERATION_HASH]","protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"}] +[{"hash":"[OPERATION_HASH]","protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"3040","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": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -32,11 +32,11 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "permanent", - "id": "proto.023-PtSEouLo.prefilter.fees_too_low" } ] } ], + "id": "proto.023-PtSeouLo.prefilter.fees_too_low" } ] } ], "outdated": [], "branch_refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -48,12 +48,12 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "branch", - "id": "proto.023-PtSEouLo.contract.counter_in_the_past", + "id": "proto.023-PtSeouLo.contract.counter_in_the_past", "contract": "[PUBLIC_KEY_HASH]", "expected": "2", "found": "1" } ] } ], "branch_delayed": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -65,7 +65,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "temporary", - "id": "proto.023-PtSEouLo.contract.counter_in_the_future", + "id": "proto.023-PtSeouLo.contract.counter_in_the_future", "contract": "[PUBLIC_KEY_HASH]", "expected": "1", "found": "5" } ] } ], "unprocessed": [] } @@ -87,7 +87,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]" } ], "refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -99,11 +99,11 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "permanent", - "id": "proto.023-PtSEouLo.prefilter.fees_too_low" } ] } ], + "id": "proto.023-PtSeouLo.prefilter.fees_too_low" } ] } ], "outdated": [], "branch_refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -115,12 +115,12 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "branch", - "id": "proto.023-PtSEouLo.contract.counter_in_the_past", + "id": "proto.023-PtSeouLo.contract.counter_in_the_past", "contract": "[PUBLIC_KEY_HASH]", "expected": "2", "found": "1" } ] } ], "branch_delayed": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -132,7 +132,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "temporary", - "id": "proto.023-PtSEouLo.contract.counter_in_the_future", + "id": "proto.023-PtSeouLo.contract.counter_in_the_future", "contract": "[PUBLIC_KEY_HASH]", "expected": "1", "found": "5" } ] } ], "unprocessed": [] } @@ -150,7 +150,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]" } ], "refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -162,11 +162,11 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "permanent", - "id": "proto.023-PtSEouLo.prefilter.fees_too_low" } ] } ], + "id": "proto.023-PtSeouLo.prefilter.fees_too_low" } ] } ], "outdated": [], "branch_refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -178,12 +178,12 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "branch", - "id": "proto.023-PtSEouLo.contract.counter_in_the_past", + "id": "proto.023-PtSeouLo.contract.counter_in_the_past", "contract": "[PUBLIC_KEY_HASH]", "expected": "2", "found": "1" } ] } ], "branch_delayed": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -195,7 +195,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "temporary", - "id": "proto.023-PtSEouLo.contract.counter_in_the_future", + "id": "proto.023-PtSeouLo.contract.counter_in_the_future", "contract": "[PUBLIC_KEY_HASH]", "expected": "1", "found": "5" } ] } ], "unprocessed": [] } @@ -222,7 +222,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t { "validated": [], "refused": [ { "hash": "[OPERATION_HASH]", - "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -234,7 +234,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "permanent", - "id": "proto.023-PtSEouLo.prefilter.fees_too_low" } ] } ], + "id": "proto.023-PtSeouLo.prefilter.fees_too_low" } ] } ], "outdated": [], "branch_refused": [], "branch_delayed": [], "unprocessed": [] } @@ -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": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -254,7 +254,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "temporary", - "id": "proto.023-PtSEouLo.contract.counter_in_the_future", + "id": "proto.023-PtSeouLo.contract.counter_in_the_future", "contract": "[PUBLIC_KEY_HASH]", "expected": "1", "found": "5" } ] } ], "unprocessed": [] } @@ -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": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "branch": "[BRANCH_HASH]", "contents": [ { "kind": "transaction", @@ -274,7 +274,7 @@ curl -s 'http://[HOST]:[PORT]/chains/main/mempool/monitor_operations?validated=t "[SIGNATURE]", "error": [ { "kind": "branch", - "id": "proto.023-PtSEouLo.contract.counter_in_the_past", + "id": "proto.023-PtSeouLo.contract.counter_in_the_past", "contract": "[PUBLIC_KEY_HASH]", "expected": "2", "found": "1" } ] } ], "branch_delayed": [], "unprocessed": [] } @@ -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":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"},{"hash":"[OPERATION_HASH]","protocol":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"permanent","id":"proto.023-PtSEouLo.prefilter.fees_too_low"}]},{"hash":"[OPERATION_HASH]","protocol":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.023-PtSEouLo.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]},{"hash":"[OPERATION_HASH]","protocol":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.023-PtSEouLo.contract.counter_in_the_future","contract":"[PUBLIC_KEY_HASH]","expected":"1","found":"5"}]}] +[{"hash":"[OPERATION_HASH]","protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]"},{"hash":"[OPERATION_HASH]","protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"0","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"permanent","id":"proto.023-PtSeouLo.prefilter.fees_too_low"}]},{"hash":"[OPERATION_HASH]","protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"1","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"branch","id":"proto.023-PtSeouLo.contract.counter_in_the_past","contract":"[PUBLIC_KEY_HASH]","expected":"2","found":"1"}]},{"hash":"[OPERATION_HASH]","protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","branch":"[BRANCH_HASH]","contents":[{"kind":"transaction","source":"[PUBLIC_KEY_HASH]","fee":"1000","counter":"5","gas_limit":"3040","storage_limit":"257","amount":"1000000","destination":"[PUBLIC_KEY_HASH]"}],"signature":"[SIGNATURE]","error":[{"kind":"temporary","id":"proto.023-PtSeouLo.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/S023-- Baker rewards.out b/tezt/tests/expected/baker_test.ml/S023-- Baker rewards.out index 30c33f6f45e5..1e1fc73bcc5d 100644 --- a/tezt/tests/expected/baker_test.ml/S023-- Baker rewards.out +++ b/tezt/tests/expected/baker_test.ml/S023-- Baker rewards.out @@ -1,7 +1,7 @@ ./octez-client rpc get /chains/main/blocks/head/metadata -{ "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", - "next_protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", +{ "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", + "next_protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "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/S023-- opcodes -abs--storage125992234--input254251340-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -abs--storage125992234--input254251340-.out index b46bc6201f83..1908ccb241bb 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -abs--storage125992234--input254251340-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -abs--storage125992234--input254251340-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -abs--storage125992234--input420401245-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -abs--storage125992234--input420401245-.out index f604e76a9121..efdfd931f70f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -abs--storage125992234--input420401245-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -abs--storage125992234--input420401245-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -abs--storage125992234--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -abs--storage125992234--input680650890-.out index 0fdf702f9aef..a837127bf574 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -abs--storage125992234--input680650890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -abs--storage125992234--input680650890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -add--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add--storage125992234--input125992234-.out index 0d48b3014fca..ec1072f5b30c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -add_bls12_381_fr--storage921624073--input322109491-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_bls12_381_fr--storage921624073--input322109491-.out index 57d9b43d2398..ee4a48a2e750 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_bls12_381_fr--storage921624073--input322109491-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_bls12_381_fr--storage921624073--input322109491-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -add_bls12_381_fr--storage921624073--input461261325-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_bls12_381_fr--storage921624073--input461261325-.out index f1f69d1d6d10..e35ca8242f62 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_bls12_381_fr--storage921624073--input461261325-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_bls12_381_fr--storage921624073--input461261325-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -add_bls12_381_fr--storage921624073--input530006774-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_bls12_381_fr--storage921624073--input530006774-.out index 37e501f65d69..f7164eba4144 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_bls12_381_fr--storage921624073--input530006774-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_bls12_381_fr--storage921624073--input530006774-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -add_bls12_381_fr--storage921624073--input712570300-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_bls12_381_fr--storage921624073--input712570300-.out index 49eade2cbe59..cb0665d3849d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_bls12_381_fr--storage921624073--input712570300-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_bls12_381_fr--storage921624073--input712570300-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -add_delta_timestamp--storage921624073--input249636002-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_delta_timestamp--storage921624073--input249636002-.out index c38f218519c8..2d49055094c9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_delta_timestamp--storage921624073--input249636002-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_delta_timestamp--storage921624073--input249636002-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -add_delta_timestamp--storage921624073--input267363182-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_delta_timestamp--storage921624073--input267363182-.out index b81cf72a5ab3..b40b4f3411c2 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_delta_timestamp--storage921624073--input267363182-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_delta_timestamp--storage921624073--input267363182-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -add_delta_timestamp--storage921624073--input438561129-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_delta_timestamp--storage921624073--input438561129-.out index 81020bac6380..175576c9e046 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_delta_timestamp--storage921624073--input438561129-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_delta_timestamp--storage921624073--input438561129-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -add_timestamp_delta--storage921624073--input249636002-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_timestamp_delta--storage921624073--input249636002-.out index 878f5b202e5e..a90d9063f236 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_timestamp_delta--storage921624073--input249636002-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_timestamp_delta--storage921624073--input249636002-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -add_timestamp_delta--storage921624073--input307538219-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_timestamp_delta--storage921624073--input307538219-.out index 147352f7a249..8f77019668f7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_timestamp_delta--storage921624073--input307538219-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_timestamp_delta--storage921624073--input307538219-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -add_timestamp_delta--storage921624073--input373737581-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_timestamp_delta--storage921624073--input373737581-.out index a6ce24689004..cb660427e536 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_timestamp_delta--storage921624073--input373737581-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -add_timestamp_delta--storage921624073--input373737581-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -address--storage921624073--input117475800-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -address--storage921624073--input117475800-.out index 9af083480c79..e6d0105fe23b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -address--storage921624073--input117475800-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -address--storage921624073--input117475800-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -and--storage921624073--input106930123-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and--storage921624073--input106930123-.out index 3fb4799593ba..61d5aae6879c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and--storage921624073--input106930123-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and--storage921624073--input106930123-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -and--storage921624073--input181204719-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and--storage921624073--input181204719-.out index d3689fc4a702..f601633d6ee8 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and--storage921624073--input181204719-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and--storage921624073--input181204719-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -and--storage921624073--input223774825-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and--storage921624073--input223774825-.out index ca5e1f253609..0a37b4f63cc1 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and--storage921624073--input223774825-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and--storage921624073--input223774825-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -and--storage921624073--input908807505-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and--storage921624073--input908807505-.out index e1bfa373782f..ad21df90f40d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and--storage921624073--input908807505-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and--storage921624073--input908807505-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -and_binary--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_binary--storage125992234--input125992234-.out index 5c01efb894bb..76811e0f07ad 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_binary--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_binary--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -and_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_bytes--storage125992234--input125992234-.out index d3549ecc9748..5b5ab6d72c2d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_bytes--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -and_logical_1--storage570553153--input106930123-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_logical_1--storage570553153--input106930123-.out index ec688c5db91f..e56e39f03752 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_logical_1--storage570553153--input106930123-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_logical_1--storage570553153--input106930123-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -and_logical_1--storage570553153--input181204719-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_logical_1--storage570553153--input181204719-.out index c815a5784447..47d1b584656c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_logical_1--storage570553153--input181204719-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_logical_1--storage570553153--input181204719-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -and_logical_1--storage570553153--input223774825-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_logical_1--storage570553153--input223774825-.out index fd5b464e902c..2d84020a8c41 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_logical_1--storage570553153--input223774825-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_logical_1--storage570553153--input223774825-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -and_logical_1--storage570553153--input908807505-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_logical_1--storage570553153--input908807505-.out index 3f9f80af6f39..67fe5b882985 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_logical_1--storage570553153--input908807505-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -and_logical_1--storage570553153--input908807505-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -balance--storage492856247--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -balance--storage492856247--input125992234-.out index 485bf527f600..f5c6fe9947a6 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -balance--storage492856247--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -balance--storage492856247--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -big_map_mem_nat--storage495706788--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage495706788--input453441034-.out index 99c3618f192e..5a21c3cde996 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage495706788--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage495706788--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -big_map_mem_nat--storage56274299--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage56274299--input453441034-.out index c838043a1acf..ae1f39ac43d9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage56274299--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage56274299--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -big_map_mem_nat--storage56274299--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage56274299--input564400327-.out index efb42e1bdec2..a3c9efc22362 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage56274299--input564400327-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage56274299--input564400327-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -big_map_mem_nat--storage56274299--input654274102-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage56274299--input654274102-.out index e426e2330e82..7fc880644a75 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage56274299--input654274102-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage56274299--input654274102-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -big_map_mem_nat--storage690637660--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage690637660--input453441034-.out index ad9f95bef4a4..caec8ed2fd4d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage690637660--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage690637660--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -big_map_mem_nat--storage806237530--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage806237530--input453441034-.out index e17ba29c0e07..3bd76b569931 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage806237530--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_nat--storage806237530--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -big_map_mem_string--storage109689253--input1071610051-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage109689253--input1071610051-.out index d409887400fa..424474bdff87 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage109689253--input1071610051-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage109689253--input1071610051-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -big_map_mem_string--storage109689253--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage109689253--input700475845-.out index 3532c10d1339..2f63cfa14b15 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage109689253--input700475845-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage109689253--input700475845-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -big_map_mem_string--storage109689253--input905318451-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage109689253--input905318451-.out index 94336c02acfe..54d95ad5e907 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage109689253--input905318451-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage109689253--input905318451-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -big_map_mem_string--storage495706788--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage495706788--input700475845-.out index 43e4f80df42f..785230aadcf0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage495706788--input700475845-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage495706788--input700475845-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -big_map_mem_string--storage915708427--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage915708427--input700475845-.out index 797566ebbfd9..25826a3fb16e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage915708427--input700475845-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage915708427--input700475845-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -big_map_mem_string--storage936682951--input905318451-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage936682951--input905318451-.out index 0af1d8426b65..13f11c29d9da 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage936682951--input905318451-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -big_map_mem_string--storage936682951--input905318451-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_push_bytes_not_padded--storage921624073--input12599.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_push_bytes_not_padded--storage921624073--input12599.out index 77cd53e3dfe2..5e2e0b5fc09d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_push_bytes_not_padded--storage921624073--input12599.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_push_bytes_not_padded--storage921624073--input12599.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_push_nat--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_push_nat--storage921624073--input125992234-.out index 081665c8ab98..5f23e718569f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_push_nat--storage921624073--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_push_nat--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_to_int--storage680650890--input1043734173-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_to_int--storage680650890--input1043734173-.out index 9932cf02c94a..16ef3e1ed832 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_to_int--storage680650890--input1043734173-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_to_int--storage680650890--input1043734173-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_to_int--storage680650890--input151303925-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_to_int--storage680650890--input151303925-.out index 6a961b4c04d3..d2ed5ce6d18c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_to_int--storage680650890--input151303925-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_to_int--storage680650890--input151303925-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_to_int--storage680650890--input520610122-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_to_int--storage680650890--input520610122-.out index a604ea88b818..0097ee4c6f10 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_to_int--storage680650890--input520610122-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_to_int--storage680650890--input520610122-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_to_int--storage680650890--input558805129-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_to_int--storage680650890--input558805129-.out index 8ff39f721196..c044f894406b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_to_int--storage680650890--input558805129-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_to_int--storage680650890--input558805129-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out index c65f42167628..e045302595af 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_int--storage287336412--input1019409032-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage287336412--input1019409032-.out index 9d1e62709236..c057a9d9d5a2 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage287336412--input1019409032-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_int--storage698210250--input949526473-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage698210250--input949526473-.out index a7ad537cf738..75e396803a3d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage698210250--input949526473-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_int--storage739946440--input166435292-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage739946440--input166435292-.out index acc706f20d3b..3e39c753fbe9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage739946440--input166435292-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_int--storage739946440--input583291483-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage739946440--input583291483-.out index 25f1466151f6..0acd401dca41 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage739946440--input583291483-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input1055524890-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input1055524890-.out index 6c274de02c82..941e8096ce5f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input1055524890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input453441034-.out index 7cea461c0ff5..b1d2c14adb90 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input564400327-.out index 57ceba7f4a85..0255ac44e5d7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input564400327-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input585234482-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input585234482-.out index ddd8bea08736..5428ed41291a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input585234482-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input585234482-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input680650890-.out index eb806eb32ef2..c88f7c69cfba 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input680650890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input701858804-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input701858804-.out index 2e81f40a263b..bc1f1eee7828 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input701858804-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_int--storage994282947--input701858804-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_nat--storage287336412--input1019409032-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage287336412--input1019409032-.out index 65c5d90dd3c5..060467442abe 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage287336412--input1019409032-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_nat--storage698210250--input949526473-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage698210250--input949526473-.out index 9af79c6e4154..2a6ddd974077 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage698210250--input949526473-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_nat--storage739946440--input166435292-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage739946440--input166435292-.out index 21856593a3b8..4a6da626c560 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage739946440--input166435292-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_nat--storage739946440--input583291483-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage739946440--input583291483-.out index 5dfd7049bf09..b4d3399de639 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage739946440--input583291483-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_nat--storage994282947--input1055524890-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage994282947--input1055524890-.out index 589cd7cd22fc..6709b83198d7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage994282947--input1055524890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_nat--storage994282947--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage994282947--input453441034-.out index 85bbf87864cd..0c7939a1b37f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage994282947--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_nat--storage994282947--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage994282947--input564400327-.out index 2fb2f66d9ed9..bdf1e37da3ca 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage994282947--input564400327-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_fr_z_nat--storage994282947--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage994282947--input680650890-.out index 00c99079b3e7..07ad0e953afc 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage994282947--input680650890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_fr_z_nat--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_int--storage287336412--input1019409032-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage287336412--input1019409032-.out index 5c141dccc228..a8f702fb6b9b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage287336412--input1019409032-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_int--storage698210250--input949526473-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage698210250--input949526473-.out index bc550c968f56..53b433507ea9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage698210250--input949526473-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_int--storage739946440--input166435292-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage739946440--input166435292-.out index 130c470e9537..2be43b63bbf8 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage739946440--input166435292-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_int--storage739946440--input583291483-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage739946440--input583291483-.out index cfdd029aea1b..299976219eed 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage739946440--input583291483-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input1055524890-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input1055524890-.out index bef2b5ef80a7..61850491fefe 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input1055524890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input453441034-.out index 0d82ac1dd84d..d3b4978b2166 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input564400327-.out index 0ed4ee664bf5..dfdb5d21866d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input564400327-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input585234482-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input585234482-.out index 2d64a4e6a27b..cc8b643904d6 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input585234482-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input585234482-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input680650890-.out index e744dc2d2fad..9196d1cbd0db 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input680650890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input701858804-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input701858804-.out index c2c18beb4128..58f7e5aa558b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input701858804-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_int--storage994282947--input701858804-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_nat--storage287336412--input1019409032-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage287336412--input1019409032-.out index 2680f8902276..3a81fa7540a9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage287336412--input1019409032-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage287336412--input1019409032-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_nat--storage698210250--input949526473-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage698210250--input949526473-.out index 09776f90d3da..9c4429abbd89 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage698210250--input949526473-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage698210250--input949526473-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_nat--storage739946440--input166435292-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage739946440--input166435292-.out index 3bb832ac553e..38cfd3938283 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage739946440--input166435292-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage739946440--input166435292-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_nat--storage739946440--input583291483-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage739946440--input583291483-.out index babe9f0e316f..254ecaf4bbdf 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage739946440--input583291483-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage739946440--input583291483-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_nat--storage994282947--input1055524890-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage994282947--input1055524890-.out index 264ad797a8e0..0d1f72546207 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage994282947--input1055524890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage994282947--input1055524890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_nat--storage994282947--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage994282947--input453441034-.out index b5236f460ddf..5ce9d92c5213 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage994282947--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage994282947--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_nat--storage994282947--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage994282947--input564400327-.out index 3a9bb097c54f..6f623b049bc7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage994282947--input564400327-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage994282947--input564400327-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bls12_381_z_fr_nat--storage994282947--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage994282947--input680650890-.out index 4b256e13e97d..0262259fe0c4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage994282947--input680650890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bls12_381_z_fr_nat--storage994282947--input680650890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bytes_of_int--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bytes_of_int--storage125992234--input125992234-.out index dc944eab7345..ea1662bbd3f7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bytes_of_int--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bytes_of_int--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -bytes_of_nat--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bytes_of_nat--storage125992234--input125992234-.out index 56ec7840b699..8da171280e03 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bytes_of_nat--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -bytes_of_nat--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -car--storage680650890--input783124233-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -car--storage680650890--input783124233-.out index 8918a5435bff..c636515d896e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -car--storage680650890--input783124233-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -car--storage680650890--input783124233-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -cdr--storage680650890--input783124233-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -cdr--storage680650890--input783124233-.out index ef78ea800967..a09ecf91affb 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -cdr--storage680650890--input783124233-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -cdr--storage680650890--input783124233-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -chain_id_store--storage109160754--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -chain_id_store--storage109160754--input125992234-.out index 2a8d738d74e1..fbefab54791a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -chain_id_store--storage109160754--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -chain_id_store--storage109160754--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -chain_id_store--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -chain_id_store--storage921624073--input125992234-.out index b16cc68cafb7..662f4784925b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -chain_id_store--storage921624073--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -chain_id_store--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -chain_id_store--storage981066851--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -chain_id_store--storage981066851--input125992234-.out index ab8e5a4b38a1..27715d20ec40 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -chain_id_store--storage981066851--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -chain_id_store--storage981066851--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -comb--storage950292965--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -comb--storage950292965--input125992234-.out index 4a1a1c0dcd54..6e1a9fabe65e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -comb--storage950292965--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -comb--storage950292965--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -comb-get--storage125992234--input186507116-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -comb-get--storage125992234--input186507116-.out index 3df3be0c2793..36e2c0c9c9f6 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -comb-get--storage125992234--input186507116-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -comb-get--storage125992234--input186507116-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -comb-set--storage186507116--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -comb-set--storage186507116--input125992234-.out index e673a30722c1..51e614898f0e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -comb-set--storage186507116--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -comb-set--storage186507116--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -comb-set-2--storage921624073--input186507116-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -comb-set-2--storage921624073--input186507116-.out index dd354b6b403e..1f6344bcca38 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -comb-set-2--storage921624073--input186507116-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -comb-set-2--storage921624073--input186507116-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -compare--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -compare--storage125992234--input125992234-.out index fb784de859a5..c5aa3700857a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -compare--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -compare--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -comparisons--storage457300675--input281780712-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -comparisons--storage457300675--input281780712-.out index 0e477905e356..3629c1ad69a9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -comparisons--storage457300675--input281780712-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -comparisons--storage457300675--input281780712-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -concat_hello--storage457300675--input392583650-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello--storage457300675--input392583650-.out index 12491a1c461b..2c75adf3d9de 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello--storage457300675--input392583650-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello--storage457300675--input392583650-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -concat_hello--storage457300675--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello--storage457300675--input457300675-.out index ae606e73d8a3..5e5f462b5752 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello--storage457300675--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello--storage457300675--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -concat_hello--storage457300675--input640104625-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello--storage457300675--input640104625-.out index fe9045ae6bde..061ad400086c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello--storage457300675--input640104625-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello--storage457300675--input640104625-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -concat_hello_bytes--storage457300675--input354091714-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello_bytes--storage457300675--input354091714-.out index e6d7b0836cdb..26ace48535f4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello_bytes--storage457300675--input354091714-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello_bytes--storage457300675--input354091714-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -concat_hello_bytes--storage457300675--input441061063-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello_bytes--storage457300675--input441061063-.out index 0bfb766903da..55ea1d8544c1 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello_bytes--storage457300675--input441061063-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello_bytes--storage457300675--input441061063-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -concat_hello_bytes--storage457300675--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello_bytes--storage457300675--input457300675-.out index 304cd077bae1..c56437c08eb3 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello_bytes--storage457300675--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_hello_bytes--storage457300675--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -concat_list--storage79230375--input264787654-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_list--storage79230375--input264787654-.out index 58f45535003a..c27fa84d859e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_list--storage79230375--input264787654-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_list--storage79230375--input264787654-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -concat_list--storage79230375--input316676251-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_list--storage79230375--input316676251-.out index fc1f4b31cd64..2d839b797d6b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_list--storage79230375--input316676251-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_list--storage79230375--input316676251-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -concat_list--storage79230375--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_list--storage79230375--input457300675-.out index 9a69b1800cdd..25072da8bd5e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_list--storage79230375--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -concat_list--storage79230375--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -cons--storage457300675--input798141440-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -cons--storage457300675--input798141440-.out index 8721128270ac..b7aa0917d501 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -cons--storage457300675--input798141440-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -cons--storage457300675--input798141440-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -cons--storage581876226--input166122047-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -cons--storage581876226--input166122047-.out index 09184d5b9aec..162479c73b71 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -cons--storage581876226--input166122047-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -cons--storage581876226--input166122047-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -cons--storage793461282--input781487591-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -cons--storage793461282--input781487591-.out index b788ddc04f57..79dd75db497d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -cons--storage793461282--input781487591-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -cons--storage793461282--input781487591-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -contains_all--storage921624073--input315650912-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input315650912-.out index 724150f13c15..50d86988e554 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input315650912-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input315650912-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -contains_all--storage921624073--input51111414-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input51111414-.out index 7e052caa9a9e..9abe354873fa 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input51111414-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input51111414-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -contains_all--storage921624073--input545734274-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input545734274-.out index c17e53043b7b..9d894e8ba89b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input545734274-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input545734274-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -contains_all--storage921624073--input772794967-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input772794967-.out index 9bb77625f313..976d6f2b9bef 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input772794967-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input772794967-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -contains_all--storage921624073--input917967660-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input917967660-.out index aeafc59a2092..1cc9265f5774 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input917967660-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input917967660-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -contains_all--storage921624073--input964818218-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input964818218-.out index bd1d7fc58132..3047ce520fbe 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input964818218-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contains_all--storage921624073--input964818218-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -contract--storage125992234--input117475800-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contract--storage125992234--input117475800-.out index 0b2b89ba572e..144cd841db42 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contract--storage125992234--input117475800-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -contract--storage125992234--input117475800-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -create_contract--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -create_contract--storage921624073--input125992234-.out index 26c6fa7fc74d..12d5871d0bd5 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -create_contract--storage921624073--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -create_contract--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -diff_timestamps--storage492856247--input1011138251-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -diff_timestamps--storage492856247--input1011138251-.out index 44474b6c9db0..5a3a74dc31eb 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -diff_timestamps--storage492856247--input1011138251-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -diff_timestamps--storage492856247--input1011138251-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -diff_timestamps--storage492856247--input1018564342-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -diff_timestamps--storage492856247--input1018564342-.out index c31078a33603..ac2e32131216 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -diff_timestamps--storage492856247--input1018564342-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -diff_timestamps--storage492856247--input1018564342-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -diff_timestamps--storage492856247--input1031049988-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -diff_timestamps--storage492856247--input1031049988-.out index 755477df0cca..bd0256ab4795 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -diff_timestamps--storage492856247--input1031049988-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -diff_timestamps--storage492856247--input1031049988-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -diff_timestamps--storage492856247--input685590443-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -diff_timestamps--storage492856247--input685590443-.out index 8f63f19b3c2e..16e1c107c67d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -diff_timestamps--storage492856247--input685590443-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -diff_timestamps--storage492856247--input685590443-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -dig_eq--storage125992234--input246866101-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dig_eq--storage125992234--input246866101-.out index 7eecbcf3fc91..0226ee22cfdc 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dig_eq--storage125992234--input246866101-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dig_eq--storage125992234--input246866101-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -dig_eq--storage125992234--input26856104-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dig_eq--storage125992234--input26856104-.out index ee273e05398c..26cafcc77db1 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dig_eq--storage125992234--input26856104-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dig_eq--storage125992234--input26856104-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -dign--storage680650890--input529388602-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dign--storage680650890--input529388602-.out index 4cdc36b5d0d1..a1d4c15eedfa 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dign--storage680650890--input529388602-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dign--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -dip--storage1011138251--input590117173-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dip--storage1011138251--input590117173-.out index 48a7b3a106a8..96d09b8e4e7d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dip--storage1011138251--input590117173-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dip--storage1011138251--input590117173-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -dip--storage1011138251--input850887554-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dip--storage1011138251--input850887554-.out index 6d66515bc1cc..81725655faf4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dip--storage1011138251--input850887554-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dip--storage1011138251--input850887554-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -dipn--storage680650890--input529388602-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dipn--storage680650890--input529388602-.out index d66d9a923c8c..117323f0206c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dipn--storage680650890--input529388602-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dipn--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -dropn--storage680650890--input529388602-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dropn--storage680650890--input529388602-.out index 576e0dfa1da2..bf0b3c05ed16 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dropn--storage680650890--input529388602-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dropn--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -dugn--storage680650890--input529388602-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dugn--storage680650890--input529388602-.out index cc22801b8425..5e46b96bce64 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dugn--storage680650890--input529388602-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dugn--storage680650890--input529388602-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -dup-n--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dup-n--storage125992234--input125992234-.out index f4380a737584..dbaef4338b8a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dup-n--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -dup-n--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -ediv--storage994417987--input247451205-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv--storage994417987--input247451205-.out index 005d43fdca0a..c1cc9d47e97c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv--storage994417987--input247451205-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv--storage994417987--input247451205-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -ediv--storage994417987--input250545589-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv--storage994417987--input250545589-.out index 172a0bee7140..418a9967b44e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv--storage994417987--input250545589-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv--storage994417987--input250545589-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -ediv--storage994417987--input79625541-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv--storage994417987--input79625541-.out index e5dc4d3c2cd0..9402f09fa401 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv--storage994417987--input79625541-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv--storage994417987--input79625541-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -ediv_mutez--storage977883604--input147133089-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input147133089-.out index 8cb2c9767dc5..51c655d6e3f6 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input147133089-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input147133089-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -ediv_mutez--storage977883604--input215785357-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input215785357-.out index f2342d5ceebe..ab54e19d82cf 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input215785357-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input215785357-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -ediv_mutez--storage977883604--input389351431-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input389351431-.out index 5b9dbc9daa6e..92b0ed97cc0f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input389351431-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input389351431-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -ediv_mutez--storage977883604--input44513000-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input44513000-.out index b9b5e9de0096..9c3178727bbb 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input44513000-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input44513000-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -ediv_mutez--storage977883604--input635398196-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input635398196-.out index 91cd76125de3..7d57a578656c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input635398196-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input635398196-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -ediv_mutez--storage977883604--input734264738-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input734264738-.out index 5ae215f4efa9..4f81b7f2230d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input734264738-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input734264738-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -ediv_mutez--storage977883604--input993071382-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input993071382-.out index e0babf0b3cc1..bb538d0162e3 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input993071382-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ediv_mutez--storage977883604--input993071382-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -emit--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -emit--storage125992234--input125992234-.out index b9faa49959bf..3de3d697a1d0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -emit--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -emit--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -empty_map--storage457300675--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -empty_map--storage457300675--input125992234-.out index 6fbd5467f547..43dfade23ee0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -empty_map--storage457300675--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -empty_map--storage457300675--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -exec_concat--storage398998998--input246262487-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -exec_concat--storage398998998--input246262487-.out index 70b06f6f9abd..33adef94ebd3 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -exec_concat--storage398998998--input246262487-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -exec_concat--storage398998998--input246262487-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -exec_concat--storage398998998--input79230375-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -exec_concat--storage398998998--input79230375-.out index c9780d47df0d..f30cbbfe0557 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -exec_concat--storage398998998--input79230375-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -exec_concat--storage398998998--input79230375-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -first--storage492856247--input478406404-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -first--storage492856247--input478406404-.out index 9795aa0b3114..99a0d52d11d7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -first--storage492856247--input478406404-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -first--storage492856247--input478406404-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -first--storage492856247--input962874972-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -first--storage492856247--input962874972-.out index 7c78c1cf15a8..c2c7ff6dd24c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -first--storage492856247--input962874972-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -first--storage492856247--input962874972-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -get_and_update_map--storage1026405794--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage1026405794--input329240220-.out index 0509ef40ef78..7b5656d93927 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage1026405794--input329240220-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage1026405794--input329240220-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -get_and_update_map--storage382368661--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage382368661--input329240220-.out index 7fb17dcca5c2..d268dbbaa819 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage382368661--input329240220-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage382368661--input329240220-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -get_and_update_map--storage496578814--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage496578814--input329240220-.out index 4dd2fc2e54bf..aef6f768bd7f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage496578814--input329240220-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage496578814--input329240220-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -get_and_update_map--storage496578814--input507231566-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage496578814--input507231566-.out index 096965a4d883..8dda30d03f23 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage496578814--input507231566-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage496578814--input507231566-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -get_and_update_map--storage547821324--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage547821324--input329240220-.out index 84efc1db80ed..86367509b593 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage547821324--input329240220-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage547821324--input329240220-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -get_and_update_map--storage796012494--input156280093-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage796012494--input156280093-.out index 0ee99a2dd45b..b9b955f0bb92 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage796012494--input156280093-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage796012494--input156280093-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -get_and_update_map--storage796012494--input228164856-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage796012494--input228164856-.out index 140381b9c3f4..e43c4b83cab2 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage796012494--input228164856-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_and_update_map--storage796012494--input228164856-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -get_map_value--storage139236239--input329240220-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_map_value--storage139236239--input329240220-.out index 0deeb7d096b2..bbcd5393dabc 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_map_value--storage139236239--input329240220-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_map_value--storage139236239--input329240220-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -get_map_value--storage139236239--input79230375-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_map_value--storage139236239--input79230375-.out index d3d2fdb013dd..cbca99f9c309 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_map_value--storage139236239--input79230375-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_map_value--storage139236239--input79230375-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -get_map_value--storage329396864--input156280093-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_map_value--storage329396864--input156280093-.out index 7cdeb52f4e67..6c76b995857e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_map_value--storage329396864--input156280093-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -get_map_value--storage329396864--input156280093-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -hash_key--storage921624073--input1040351577-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -hash_key--storage921624073--input1040351577-.out index ba956a89b822..49e4a7d51321 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -hash_key--storage921624073--input1040351577-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -hash_key--storage921624073--input1040351577-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -hash_key--storage921624073--input153350004-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -hash_key--storage921624073--input153350004-.out index 0549163976e0..dfc2a188aa9a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -hash_key--storage921624073--input153350004-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -hash_key--storage921624073--input153350004-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -hash_string--storage151303925--input3431716-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -hash_string--storage151303925--input3431716-.out index c05429772908..fc0a7a86587f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -hash_string--storage151303925--input3431716-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -hash_string--storage151303925--input3431716-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -hash_string--storage151303925--input535018041-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -hash_string--storage151303925--input535018041-.out index 74dfcdea728b..800e417821b6 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -hash_string--storage151303925--input535018041-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -hash_string--storage151303925--input535018041-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -if--storage921624073--input570553153-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -if--storage921624073--input570553153-.out index 21ed76890755..d9455a5037e9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -if--storage921624073--input570553153-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -if--storage921624073--input570553153-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -if--storage921624073--input954397288-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -if--storage921624073--input954397288-.out index aaf55040dfce..c32bdbff6187 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -if--storage921624073--input954397288-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -if--storage921624073--input954397288-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -if_some--storage398998998--input288201633-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -if_some--storage398998998--input288201633-.out index bd5710fdbfab..facc1deff2a4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -if_some--storage398998998--input288201633-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -if_some--storage398998998--input288201633-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -if_some--storage398998998--input921624073-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -if_some--storage398998998--input921624073-.out index f78092f0e291..7c4bc771256b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -if_some--storage398998998--input921624073-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -if_some--storage398998998--input921624073-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -int--storage921624073--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -int--storage921624073--input453441034-.out index a0ec7b8d7211..b0718d35332e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -int--storage921624073--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -int--storage921624073--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -int--storage921624073--input535454136-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -int--storage921624073--input535454136-.out index 363c4b458130..d18595ecf3e0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -int--storage921624073--input535454136-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -int--storage921624073--input535454136-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -int--storage921624073--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -int--storage921624073--input680650890-.out index 0a16c43d1136..dcf3fe78e6f3 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -int--storage921624073--input680650890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -int--storage921624073--input680650890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -is_implicit_account--storage921624073--input32460203-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -is_implicit_account--storage921624073--input32460203-.out index e4910d13511a..fdd9926e7bce 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -is_implicit_account--storage921624073--input32460203-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -is_implicit_account--storage921624073--input32460203-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/is_implicit_account_023.tz on storage None and input '"tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx"' --level 1 --trace-stack +./octez-client --protocol PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/is_implicit_account_023.tz on storage None and input '"tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx"' --level 1 --trace-stack storage (Some "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx") emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -is_implicit_account--storage921624073--input643709811-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -is_implicit_account--storage921624073--input643709811-.out index 02eaefb1afb4..5a7d25783559 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -is_implicit_account--storage921624073--input643709811-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -is_implicit_account--storage921624073--input643709811-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/is_implicit_account_023.tz on storage None and input '"KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5"' --level 1 --trace-stack +./octez-client --protocol PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --mode mockup --no-base-dir-warnings run script michelson_test_scripts/opcodes/is_implicit_account_023.tz on storage None and input '"KT1TxqZ8QtKvLu3V3JH7Gx58n7Co8pgtpQU5"' --level 1 --trace-stack storage None emitted operations diff --git a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -keccak--storage921624073--input1008262038-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -keccak--storage921624073--input1008262038-.out index 0d45bfd99c94..6b951e696ad0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -keccak--storage921624073--input1008262038-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -keccak--storage921624073--input1008262038-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -left_right--storage4177631--input202098045-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -left_right--storage4177631--input202098045-.out index d61b4a4e38d8..eb8e7be765df 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -left_right--storage4177631--input202098045-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -left_right--storage4177631--input202098045-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -left_right--storage4177631--input44576556-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -left_right--storage4177631--input44576556-.out index adbf02ce65a4..b4c2582f73ca 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -left_right--storage4177631--input44576556-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -left_right--storage4177631--input44576556-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -level--storage492856247--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -level--storage492856247--input125992234-.out index 28131e06e5d8..c7d2c47a03ed 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -level--storage492856247--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -level--storage492856247--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_concat--storage717096222--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat--storage717096222--input457300675-.out index e8f378b6bf32..9be49652fd48 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat--storage717096222--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat--storage717096222--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_concat--storage717096222--input546523343-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat--storage717096222--input546523343-.out index fe2657d70427..03d4fb1988e5 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat--storage717096222--input546523343-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat--storage717096222--input546523343-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_concat_bytes--storage149262694--input220724351-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat_bytes--storage149262694--input220724351-.out index 3a5175d7a739..0f26f3bb4c3b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat_bytes--storage149262694--input220724351-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat_bytes--storage149262694--input220724351-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_concat_bytes--storage149262694--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat_bytes--storage149262694--input457300675-.out index 4f955c397892..ebfebae3281a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat_bytes--storage149262694--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat_bytes--storage149262694--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_concat_bytes--storage65410082--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat_bytes--storage65410082--input457300675-.out index 118af88323be..89706d284a83 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat_bytes--storage65410082--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat_bytes--storage65410082--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_concat_bytes--storage726220441--input972761363-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat_bytes--storage726220441--input972761363-.out index 0eaa8bed977e..6630eb6c3eb4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat_bytes--storage726220441--input972761363-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_concat_bytes--storage726220441--input972761363-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_id--storage528921618--input264787654-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id--storage528921618--input264787654-.out index c80c03f225a8..db48827de296 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id--storage528921618--input264787654-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id--storage528921618--input264787654-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_id--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id--storage528921618--input457300675-.out index f4a4c3553744..ac91b99043ab 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id--storage528921618--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_id--storage528921618--input656499821-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id--storage528921618--input656499821-.out index 77e3fc88c747..ce19069bab62 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id--storage528921618--input656499821-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id--storage528921618--input656499821-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_id_map--storage528921618--input264787654-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id_map--storage528921618--input264787654-.out index 3baecbb9bc6c..6d549c528ff2 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id_map--storage528921618--input264787654-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id_map--storage528921618--input264787654-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_id_map--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id_map--storage528921618--input457300675-.out index 4137ddac9578..9350ca7e71ca 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id_map--storage528921618--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id_map--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_id_map--storage528921618--input656499821-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id_map--storage528921618--input656499821-.out index a3216c437fc2..3051e4418439 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id_map--storage528921618--input656499821-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_id_map--storage528921618--input656499821-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_iter--storage680650890--input568817463-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_iter--storage680650890--input568817463-.out index 892619168e76..ad2b05499e30 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_iter--storage680650890--input568817463-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_iter--storage680650890--input568817463-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_iter--storage680650890--input737923774-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_iter--storage680650890--input737923774-.out index 2efb948e3d2f..7060b702cf88 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_iter--storage680650890--input737923774-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_iter--storage680650890--input737923774-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_map_block--storage907453363--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_map_block--storage907453363--input457300675-.out index 6af888b93402..23cc65fbb1a9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_map_block--storage907453363--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_map_block--storage907453363--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_map_block--storage907453363--input648737279-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_map_block--storage907453363--input648737279-.out index c25dcc04f679..fd9605c85bf4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_map_block--storage907453363--input648737279-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_map_block--storage907453363--input648737279-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_map_block--storage907453363--input908379154-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_map_block--storage907453363--input908379154-.out index f04e352aea58..004fddde42ec 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_map_block--storage907453363--input908379154-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_map_block--storage907453363--input908379154-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_size--storage492856247--input403499055-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_size--storage492856247--input403499055-.out index f7bb10b3f658..dc45ac01d4b7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_size--storage492856247--input403499055-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_size--storage492856247--input403499055-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_size--storage492856247--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_size--storage492856247--input457300675-.out index d67fd27ff942..7f595d9d0b9c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_size--storage492856247--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_size--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_size--storage492856247--input469078912-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_size--storage492856247--input469078912-.out index 00bb0f6410b8..647b081d01dd 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_size--storage492856247--input469078912-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_size--storage492856247--input469078912-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -list_size--storage492856247--input802622031-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_size--storage492856247--input802622031-.out index a796989c445a..612c00d9e561 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_size--storage492856247--input802622031-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -list_size--storage492856247--input802622031-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -loop_left--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -loop_left--storage528921618--input457300675-.out index a8fcdacda389..fa8e78a5ee54 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -loop_left--storage528921618--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -loop_left--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -loop_left--storage528921618--input851203613-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -loop_left--storage528921618--input851203613-.out index 86949651a41b..495d35e92bd8 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -loop_left--storage528921618--input851203613-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -loop_left--storage528921618--input851203613-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -lsl_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -lsl_bytes--storage125992234--input125992234-.out index d89f249f4d0c..a22d5a500410 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -lsl_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -lsl_bytes--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -lsr_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -lsr_bytes--storage125992234--input125992234-.out index 119565c61437..3aa3ca4d2389 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -lsr_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -lsr_bytes--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_id--storage457300675--input1027566226-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_id--storage457300675--input1027566226-.out index 243a89f52b41..daf828f3ef35 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_id--storage457300675--input1027566226-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_id--storage457300675--input1027566226-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_id--storage457300675--input276660554-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_id--storage457300675--input276660554-.out index 6b86d1ab0ccf..fab48d9bd530 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_id--storage457300675--input276660554-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_id--storage457300675--input276660554-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_id--storage457300675--input599923743-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_id--storage457300675--input599923743-.out index f9fed44541b2..deca6b99838a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_id--storage457300675--input599923743-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_id--storage457300675--input599923743-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_iter--storage1011138251--input403579222-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_iter--storage1011138251--input403579222-.out index c5aa5592d70e..38b4a9b8e05a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_iter--storage1011138251--input403579222-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_iter--storage1011138251--input403579222-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_iter--storage1011138251--input532072758-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_iter--storage1011138251--input532072758-.out index bc53f6cc6fbc..c3d2d1f9208b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_iter--storage1011138251--input532072758-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_iter--storage1011138251--input532072758-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_map--storage457300675--input798141440-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_map--storage457300675--input798141440-.out index ccd896339627..018b41ae9184 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_map--storage457300675--input798141440-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_map--storage457300675--input798141440-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_map--storage794999348--input152441147-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_map--storage794999348--input152441147-.out index 7d52870b5454..3a4b20ef65c6 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_map--storage794999348--input152441147-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_map--storage794999348--input152441147-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_map--storage88008216--input798141440-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_map--storage88008216--input798141440-.out index 564fe070d00a..c64bf02e4f2e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_map--storage88008216--input798141440-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_map--storage88008216--input798141440-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_mem_nat--storage495706788--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage495706788--input453441034-.out index 9506d3d6893d..99e39d1f2d94 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage495706788--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage495706788--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_mem_nat--storage56274299--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage56274299--input453441034-.out index 9c307e703100..22e59c7f1e5d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage56274299--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage56274299--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_mem_nat--storage56274299--input564400327-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage56274299--input564400327-.out index c86dcdc0d034..ad0d1e4a2469 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage56274299--input564400327-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage56274299--input564400327-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_mem_nat--storage56274299--input654274102-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage56274299--input654274102-.out index 8c65a6b68664..a76cca38a86b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage56274299--input654274102-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage56274299--input654274102-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_mem_nat--storage690637660--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage690637660--input453441034-.out index 4e4657d5e82e..bd2cca7658d8 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage690637660--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage690637660--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_mem_nat--storage806237530--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage806237530--input453441034-.out index 4ad9f10f6e8b..c52c0cb90448 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage806237530--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_nat--storage806237530--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_mem_string--storage109689253--input1071610051-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage109689253--input1071610051-.out index d2555ac841d8..0c819f92ae4d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage109689253--input1071610051-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage109689253--input1071610051-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_mem_string--storage109689253--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage109689253--input700475845-.out index c43b4bf11c14..1182bf52932b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage109689253--input700475845-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage109689253--input700475845-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_mem_string--storage109689253--input905318451-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage109689253--input905318451-.out index d26b7f3d1a31..2564facf76e7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage109689253--input905318451-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage109689253--input905318451-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_mem_string--storage495706788--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage495706788--input700475845-.out index 13665636075e..ecd8e90a8ddf 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage495706788--input700475845-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage495706788--input700475845-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_mem_string--storage915708427--input700475845-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage915708427--input700475845-.out index c31197c6a823..b30731eb7309 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage915708427--input700475845-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage915708427--input700475845-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_mem_string--storage936682951--input905318451-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage936682951--input905318451-.out index c13b39f55df3..36785872e8e5 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage936682951--input905318451-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_mem_string--storage936682951--input905318451-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_size--storage492856247--input15265129-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_size--storage492856247--input15265129-.out index 3ab3e935287c..099512ee874a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_size--storage492856247--input15265129-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_size--storage492856247--input15265129-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_size--storage492856247--input158311065-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_size--storage492856247--input158311065-.out index 53f7f772ebc2..9c83026d96de 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_size--storage492856247--input158311065-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_size--storage492856247--input158311065-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_size--storage492856247--input456982702-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_size--storage492856247--input456982702-.out index 85b23bbb28d6..447ff105f6b3 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_size--storage492856247--input456982702-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_size--storage492856247--input456982702-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -map_size--storage492856247--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_size--storage492856247--input457300675-.out index 1e18eca5c40d..8dc461a82dce 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_size--storage492856247--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -map_size--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -mul--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -mul--storage125992234--input125992234-.out index e4094ce55502..63635c97e13a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -mul--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -mul--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out index e353f59e81e9..cdf151dc561c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out index 3e2b6449556d..ed979e3153bf 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -neg--storage680650890--input1067298059-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -neg--storage680650890--input1067298059-.out index 5531334170ac..84f7a984aec1 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -neg--storage680650890--input1067298059-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -neg--storage680650890--input1067298059-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -neg--storage680650890--input380029349-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -neg--storage680650890--input380029349-.out index d032ba4a1eac..3d6ee2a06445 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -neg--storage680650890--input380029349-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -neg--storage680650890--input380029349-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -neg--storage680650890--input563503226-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -neg--storage680650890--input563503226-.out index e688442dd266..e871eb6dcd3f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -neg--storage680650890--input563503226-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -neg--storage680650890--input563503226-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -neg--storage680650890--input788662499-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -neg--storage680650890--input788662499-.out index 500f639fa0ae..9f70af41dd38 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -neg--storage680650890--input788662499-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -neg--storage680650890--input788662499-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -neg--storage680650890--input972832189-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -neg--storage680650890--input972832189-.out index 6e31b6ae4d6a..bd5a783b6bbf 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -neg--storage680650890--input972832189-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -neg--storage680650890--input972832189-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -none--storage11179311--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -none--storage11179311--input125992234-.out index 17419583d797..2f1c194a7d9d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -none--storage11179311--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -none--storage11179311--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -not--storage921624073--input570553153-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not--storage921624073--input570553153-.out index 3cac3be03a74..a620c71fe2c6 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not--storage921624073--input570553153-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not--storage921624073--input570553153-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -not--storage921624073--input954397288-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not--storage921624073--input954397288-.out index 713d7edd7556..950ddefa4727 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not--storage921624073--input954397288-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not--storage921624073--input954397288-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -not_binary--storage921624073--input1051197453-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input1051197453-.out index 6bf0a94f1cf6..f13e3d1c072c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input1051197453-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input1051197453-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -not_binary--storage921624073--input123939249-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input123939249-.out index 8e592350753e..4ade79a2d675 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input123939249-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input123939249-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -not_binary--storage921624073--input24243730-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input24243730-.out index 8b96515e5310..002c1e3f4411 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input24243730-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input24243730-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -not_binary--storage921624073--input518945720-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input518945720-.out index ceb93eab07da..cd0cebabacc3 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input518945720-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input518945720-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -not_binary--storage921624073--input788662499-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input788662499-.out index d537cbeda683..d7d5f9622b07 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input788662499-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input788662499-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -not_binary--storage921624073--input906118781-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input906118781-.out index 17e9a7b5a5da..3047fb9dc104 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input906118781-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input906118781-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -not_binary--storage921624073--input921874253-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input921874253-.out index 3c99c91d77fe..52e169f2a41c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input921874253-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input921874253-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -not_binary--storage921624073--input972832189-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input972832189-.out index d1a8d87a2f79..da8e7e6d6a96 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input972832189-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_binary--storage921624073--input972832189-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -not_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_bytes--storage125992234--input125992234-.out index 607d65c6d5ae..570f800f6b14 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -not_bytes--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -or--storage921624073--input106930123-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or--storage921624073--input106930123-.out index 3cd5e8bd2fdc..144d8f07c3c3 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or--storage921624073--input106930123-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or--storage921624073--input106930123-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -or--storage921624073--input181204719-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or--storage921624073--input181204719-.out index 5aa3abc5d684..175fe132a30c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or--storage921624073--input181204719-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or--storage921624073--input181204719-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -or--storage921624073--input223774825-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or--storage921624073--input223774825-.out index 4cee59547f2d..ea530699c36c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or--storage921624073--input223774825-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or--storage921624073--input223774825-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -or--storage921624073--input908807505-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or--storage921624073--input908807505-.out index 189e09dbf0e5..9cee42582170 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or--storage921624073--input908807505-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or--storage921624073--input908807505-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -or_binary--storage921624073--input1056991424-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input1056991424-.out index 9e3d4ff21dea..7573ade47940 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input1056991424-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input1056991424-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -or_binary--storage921624073--input375993021-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input375993021-.out index 5efbf0fcace5..b68eb2560466 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input375993021-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input375993021-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -or_binary--storage921624073--input673240563-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input673240563-.out index 9d847f5922db..2c7def3967ff 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input673240563-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input673240563-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -or_binary--storage921624073--input747448890-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input747448890-.out index 17c6af2ade6f..305b68c24657 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input747448890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input747448890-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -or_binary--storage921624073--input832403787-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input832403787-.out index 905444a7a73e..5361d1582f76 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input832403787-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input832403787-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -or_binary--storage921624073--input858098961-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input858098961-.out index 9a0965e573a5..9555308a293b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input858098961-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_binary--storage921624073--input858098961-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -or_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_bytes--storage125992234--input125992234-.out index dcc1588b303e..18ade7690c42 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -or_bytes--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -packunpack_rev--storage125992234--input305844558-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -packunpack_rev--storage125992234--input305844558-.out index a67ff0659c28..c2ef6f372c22 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -packunpack_rev--storage125992234--input305844558-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -packunpack_rev--storage125992234--input305844558-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -packunpack_rev--storage125992234--input646365167-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -packunpack_rev--storage125992234--input646365167-.out index 69422bdfaa06..7ebadfe3a538 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -packunpack_rev--storage125992234--input646365167-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -packunpack_rev--storage125992234--input646365167-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out index be8d8eb287ea..6d70c8fd376c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out index 5bd71540f3f5..0b083ab6b1f9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -pair_id--storage921624073--input106930123-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pair_id--storage921624073--input106930123-.out index d806f35976eb..c6d2bcce8cab 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pair_id--storage921624073--input106930123-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pair_id--storage921624073--input106930123-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -pair_id--storage921624073--input181204719-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pair_id--storage921624073--input181204719-.out index f4fcea18a80e..4527158c06e0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pair_id--storage921624073--input181204719-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pair_id--storage921624073--input181204719-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -pair_id--storage921624073--input223774825-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pair_id--storage921624073--input223774825-.out index c46642a085d0..030c32f96a16 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pair_id--storage921624073--input223774825-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pair_id--storage921624073--input223774825-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -pair_id--storage921624073--input908807505-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pair_id--storage921624073--input908807505-.out index 0e96d3d2f978..11f125cc2c1a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pair_id--storage921624073--input908807505-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pair_id--storage921624073--input908807505-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -pexec--storage256947135--input1050356042-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pexec--storage256947135--input1050356042-.out index f21b88c6ba77..5baab7937fa8 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pexec--storage256947135--input1050356042-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pexec--storage256947135--input1050356042-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -pexec_2--storage197120858--input179371027-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pexec_2--storage197120858--input179371027-.out index 6f168b81ae68..0cf176d76fe8 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pexec_2--storage197120858--input179371027-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -pexec_2--storage197120858--input179371027-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -ret_int--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ret_int--storage921624073--input125992234-.out index e1c0a6f6ecf6..0db936442fbf 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ret_int--storage921624073--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -ret_int--storage921624073--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -reverse--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -reverse--storage528921618--input457300675-.out index 7da3b8224a6e..434ec061530c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -reverse--storage528921618--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -reverse--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -reverse--storage528921618--input851203613-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -reverse--storage528921618--input851203613-.out index 1484798330b1..0ffd3eac19a8 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -reverse--storage528921618--input851203613-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -reverse--storage528921618--input851203613-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -reverse_loop--storage528921618--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -reverse_loop--storage528921618--input457300675-.out index 972f92235d2a..0e25c49cfef8 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -reverse_loop--storage528921618--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -reverse_loop--storage528921618--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -reverse_loop--storage528921618--input851203613-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -reverse_loop--storage528921618--input851203613-.out index f4b50dbacd75..80bb485b4277 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -reverse_loop--storage528921618--input851203613-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -reverse_loop--storage528921618--input851203613-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -sapling_empty_state--storage457300675--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -sapling_empty_state--storage457300675--input125992234-.out index c26e3d14fc7a..59dc69e98204 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -sapling_empty_state--storage457300675--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -sapling_empty_state--storage457300675--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -self_address--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -self_address--storage125992234--input125992234-.out index c29fa1744e1e..d66d487d1353 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -self_address--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -self_address--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -self_with_default_entrypoint--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -self_with_default_entrypoint--storage125992234--input125992234-.out index 88c02b50354e..cfbb098bcd54 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -self_with_default_entrypoint--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -self_with_default_entrypoint--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -self_with_entrypoint--storage125992234--input289072903-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -self_with_entrypoint--storage125992234--input289072903-.out index 9ebf194533a5..872be70eca8e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -self_with_entrypoint--storage125992234--input289072903-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -self_with_entrypoint--storage125992234--input289072903-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_car--storage224747103--input620760059-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_car--storage224747103--input620760059-.out index 1e8d2702339f..79d7e00ce3be 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_car--storage224747103--input620760059-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_car--storage224747103--input620760059-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_car--storage224747103--input717096222-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_car--storage224747103--input717096222-.out index 7082ded2715c..729cf15c54fe 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_car--storage224747103--input717096222-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_car--storage224747103--input717096222-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_car--storage224747103--input79230375-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_car--storage224747103--input79230375-.out index 38fddad37a77..9dff53a4012a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_car--storage224747103--input79230375-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_car--storage224747103--input79230375-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_cdr--storage205576101--input654274102-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_cdr--storage205576101--input654274102-.out index 8b8e3abe8476..f7786674b503 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_cdr--storage205576101--input654274102-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_cdr--storage205576101--input654274102-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_cdr--storage224747103--input453441034-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_cdr--storage224747103--input453441034-.out index dd510e9c7587..46b4b503b494 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_cdr--storage224747103--input453441034-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_cdr--storage224747103--input453441034-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_cdr--storage611418174--input967284912-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_cdr--storage611418174--input967284912-.out index 39bfcec2a709..a9d8b20b8a70 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_cdr--storage611418174--input967284912-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_cdr--storage611418174--input967284912-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_id--storage457300675--input264787654-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_id--storage457300675--input264787654-.out index 91041e12ea98..0ae451f77f4a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_id--storage457300675--input264787654-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_id--storage457300675--input264787654-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_id--storage457300675--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_id--storage457300675--input457300675-.out index 0e66ba10d73c..22152ecaeaed 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_id--storage457300675--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_id--storage457300675--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_id--storage457300675--input989507347-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_id--storage457300675--input989507347-.out index 9692b3dd2242..018e3002f3da 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_id--storage457300675--input989507347-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_id--storage457300675--input989507347-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_iter--storage492856247--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_iter--storage492856247--input457300675-.out index a193b771847c..13c469b31722 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_iter--storage492856247--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_iter--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_iter--storage492856247--input701684511-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_iter--storage492856247--input701684511-.out index 7cc4380e67be..e76f6e45350e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_iter--storage492856247--input701684511-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_iter--storage492856247--input701684511-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_iter--storage492856247--input802622031-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_iter--storage492856247--input802622031-.out index 988e25b054fc..fe9795654e95 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_iter--storage492856247--input802622031-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_iter--storage492856247--input802622031-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_member--storage495706788--input33757838-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_member--storage495706788--input33757838-.out index d8404bdfdbcc..77d809e4a990 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_member--storage495706788--input33757838-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_member--storage495706788--input33757838-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_member--storage550087893--input79230375-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_member--storage550087893--input79230375-.out index 0d5cfbf0a72b..87b0b3f1d5b2 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_member--storage550087893--input79230375-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_member--storage550087893--input79230375-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_member--storage605111220--input33757838-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_member--storage605111220--input33757838-.out index 9082148bb59b..8c7611f2774e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_member--storage605111220--input33757838-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_member--storage605111220--input33757838-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_size--storage492856247--input403499055-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_size--storage492856247--input403499055-.out index c41ad5cee640..0d94f7d2d769 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_size--storage492856247--input403499055-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_size--storage492856247--input403499055-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_size--storage492856247--input457300675-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_size--storage492856247--input457300675-.out index bee154167d4e..9593a1a6264e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_size--storage492856247--input457300675-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_size--storage492856247--input457300675-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_size--storage492856247--input469078912-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_size--storage492856247--input469078912-.out index b1f4fdec9648..525f5b5c4afe 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_size--storage492856247--input469078912-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_size--storage492856247--input469078912-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -set_size--storage492856247--input802622031-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_size--storage492856247--input802622031-.out index eb92a41fc4ec..eab89bd7babb 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_size--storage492856247--input802622031-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -set_size--storage492856247--input802622031-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -sha3--storage921624073--input1008262038-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -sha3--storage921624073--input1008262038-.out index 1eea3fab94ff..73fb47657c65 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -sha3--storage921624073--input1008262038-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -sha3--storage921624073--input1008262038-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -shifts--storage921624073--input115382786-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input115382786-.out index 3806b92e3e3a..c0040b3ae137 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input115382786-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input115382786-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -shifts--storage921624073--input271566295-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input271566295-.out index 4af88fd9c4ca..6c1ccdb686ee 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input271566295-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input271566295-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -shifts--storage921624073--input340971987-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input340971987-.out index a8ff879559cb..5797256d9f73 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input340971987-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input340971987-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -shifts--storage921624073--input374168553-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input374168553-.out index f2278af83496..6fbff30db1b5 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input374168553-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input374168553-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -shifts--storage921624073--input413621582-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input413621582-.out index 934d247e53a6..d101f272c1a1 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input413621582-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input413621582-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -shifts--storage921624073--input424849461-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input424849461-.out index fe9282b8c702..536ae7dc2b63 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input424849461-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input424849461-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -shifts--storage921624073--input485030042-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input485030042-.out index 997097196011..bb3eb247651c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input485030042-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input485030042-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -shifts--storage921624073--input705767726-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input705767726-.out index a6fa4bf3a4d0..04a348ac63b1 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input705767726-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input705767726-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -shifts--storage921624073--input769385932-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input769385932-.out index e72659871060..03a33026a785 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input769385932-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input769385932-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -shifts--storage921624073--input913715337-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input913715337-.out index 52d2433efa2c..e179f305d4a1 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input913715337-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -shifts--storage921624073--input913715337-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice--storage351480851--input65907686-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage351480851--input65907686-.out index 6e53f6d8b286..b53b67a45e6c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage351480851--input65907686-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage351480851--input65907686-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice--storage364922380--input198821575-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input198821575-.out index 30d1378ce40b..ef1dea584e81 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input198821575-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input198821575-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice--storage364922380--input359592843-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input359592843-.out index ee21a47eca74..4b5f1f6ef2f4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input359592843-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input359592843-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice--storage364922380--input551316239-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input551316239-.out index 220b6462af53..d095fbf0a3a0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input551316239-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input551316239-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice--storage364922380--input722749044-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input722749044-.out index 0c6917d393ff..a975165513fc 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input722749044-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input722749044-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice--storage364922380--input839234860-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input839234860-.out index c63a48694353..5331139c0153 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input839234860-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input839234860-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice--storage364922380--input919180079-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input919180079-.out index 66f24609c621..f439d377e98c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input919180079-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage364922380--input919180079-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice--storage921624073--input551316239-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage921624073--input551316239-.out index bc2cd520e17a..895462e4347b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage921624073--input551316239-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice--storage921624073--input551316239-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice_bytes--storage229749865--input198821575-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input198821575-.out index b217e5b51df0..832de1f80d71 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input198821575-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input198821575-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice_bytes--storage229749865--input462551352-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input462551352-.out index 102a34c52dbe..abcab57ed860 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input462551352-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input462551352-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice_bytes--storage229749865--input489157380-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input489157380-.out index f11dfa1f3115..3a88432e2e77 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input489157380-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input489157380-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice_bytes--storage229749865--input551316239-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input551316239-.out index 6436bc37c59a..cd657f37bb2a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input551316239-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input551316239-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice_bytes--storage229749865--input669330759-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input669330759-.out index e0426a81387c..0b0663141bb0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input669330759-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input669330759-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice_bytes--storage229749865--input743596105-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input743596105-.out index d9c3461c4192..e202669f95ee 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input743596105-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input743596105-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice_bytes--storage229749865--input839234860-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input839234860-.out index eef5ddb86404..068eb9546cc0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input839234860-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage229749865--input839234860-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice_bytes--storage504917929--input65907686-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage504917929--input65907686-.out index be878be75593..df700bb997aa 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage504917929--input65907686-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage504917929--input65907686-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -slice_bytes--storage921624073--input462551352-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage921624073--input462551352-.out index 6664a2506908..bb6e73573f03 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage921624073--input462551352-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -slice_bytes--storage921624073--input462551352-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -str_id--storage921624073--input1016369050-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -str_id--storage921624073--input1016369050-.out index 6adb20097ae2..676daac99fce 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -str_id--storage921624073--input1016369050-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -str_id--storage921624073--input1016369050-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -str_id--storage921624073--input93477117-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -str_id--storage921624073--input93477117-.out index 5623bbb9aa8f..39234c95747f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -str_id--storage921624073--input93477117-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -str_id--storage921624073--input93477117-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -sub_timestamp_delta--storage492856247--input249636002-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -sub_timestamp_delta--storage492856247--input249636002-.out index c110a24d0446..8c3f91733655 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -sub_timestamp_delta--storage492856247--input249636002-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -sub_timestamp_delta--storage492856247--input249636002-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -sub_timestamp_delta--storage492856247--input307538219-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -sub_timestamp_delta--storage492856247--input307538219-.out index f237de2d534c..614ec7fbea61 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -sub_timestamp_delta--storage492856247--input307538219-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -sub_timestamp_delta--storage492856247--input307538219-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -sub_timestamp_delta--storage492856247--input831449542-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -sub_timestamp_delta--storage492856247--input831449542-.out index 4e5d2934d197..c44e194f6700 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -sub_timestamp_delta--storage492856247--input831449542-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -sub_timestamp_delta--storage492856247--input831449542-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -tez_add_sub--storage921624073--input706350605-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -tez_add_sub--storage921624073--input706350605-.out index e1975b24d357..fe1c6e86a6a9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -tez_add_sub--storage921624073--input706350605-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -tez_add_sub--storage921624073--input706350605-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -tez_add_sub--storage921624073--input856198194-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -tez_add_sub--storage921624073--input856198194-.out index 71f7afd545e1..f9c8f6187fd0 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -tez_add_sub--storage921624073--input856198194-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -tez_add_sub--storage921624073--input856198194-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -uncomb--storage680650890--input394061083-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -uncomb--storage680650890--input394061083-.out index 88f3e1e6eaec..e678b5e10fbe 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -uncomb--storage680650890--input394061083-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -uncomb--storage680650890--input394061083-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -unpair--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -unpair--storage125992234--input125992234-.out index 3d61feebb799..5988fdd076c4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -unpair--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -unpair--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -voting_power--storage1011138251--input1040351577-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -voting_power--storage1011138251--input1040351577-.out index 1e426b0400ba..039a732564b8 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -voting_power--storage1011138251--input1040351577-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -voting_power--storage1011138251--input1040351577-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -xor--storage921624073--input1058477720-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input1058477720-.out index 87b55568c14e..da5aad9199f9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input1058477720-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input1058477720-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -xor--storage921624073--input1073176155-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input1073176155-.out index 0514fa5ee1f3..18be1858560d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input1073176155-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input1073176155-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -xor--storage921624073--input246594902-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input246594902-.out index ba54fedb3704..1ae31f48fcb9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input246594902-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input246594902-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -xor--storage921624073--input506603577-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input506603577-.out index 394b141ed6d5..8afccbb81088 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input506603577-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input506603577-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -xor--storage921624073--input576248088-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input576248088-.out index 888254897ac3..8154cb3aae80 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input576248088-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input576248088-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -xor--storage921624073--input612012282-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input612012282-.out index 6a6fbf97ba67..dc1ec39f8e48 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input612012282-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input612012282-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -xor--storage921624073--input617591686-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input617591686-.out index 8d29ffc098be..149d673251b1 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input617591686-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input617591686-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -xor--storage921624073--input639311176-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input639311176-.out index 840c6c8295fe..7405ca59281a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input639311176-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input639311176-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -xor--storage921624073--input688315180-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input688315180-.out index e232816c8915..6e933f15743b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input688315180-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input688315180-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -xor--storage921624073--input967929605-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input967929605-.out index 3105cd05ff41..07784c68c72e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input967929605-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor--storage921624073--input967929605-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- opcodes -xor_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor_bytes--storage125992234--input125992234-.out index 91e3cd4a1616..41770872a0ae 100644 --- a/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/S023-- opcodes -xor_bytes--storage125992234--input125992234-.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/S023-- Tc scripts.out b/tezt/tests/expected/contract_typecheck_regression.ml/S023-- Tc scripts.out index efeecfafc567..ba1510b48a29 100644 --- a/tezt/tests/expected/contract_typecheck_regression.ml/S023-- Tc scripts.out +++ b/tezt/tests/expected/contract_typecheck_regression.ml/S023-- Tc scripts.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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/ticket_wrapped_tez.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/tixter.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/is_implicit_account_023.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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/ticket_wrapped_tez.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/tixter.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/is_implicit_account_023.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/S023-- Testing DAL L1 integration (Use all available slots).out b/tezt/tests/expected/dal.ml/S023-- Testing DAL L1 integration (Use all available slots).out index 9334bd4a0452..b6d5aa5f2b44 100644 --- a/tezt/tests/expected/dal.ml/S023-- Testing DAL L1 integration (Use all available slots).out +++ b/tezt/tests/expected/dal.ml/S023-- 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":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","next_protocol":"PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY","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":"-15001","origin":"block"},{"kind":"freezer","category":"deposits","staker":{"baker_own_stake":"[PUBLIC_KEY_HASH]"},"change":"15001","origin":"block"},{"kind":"minted","category":"baking rewards","change":"-285009","origin":"block"},{"kind":"contract","contract":"[PUBLIC_KEY_HASH]","change":"285009","origin":"block"},{"kind":"minted","category":"baking bonuses","change":"-14989","origin":"block"},{"kind":"freezer","category":"deposits","staker":{"baker_own_stake":"[PUBLIC_KEY_HASH]"},"change":"14989","origin":"block"},{"kind":"minted","category":"baking bonuses","change":"-284787","origin":"block"},{"kind":"contract","contract":"[PUBLIC_KEY_HASH]","change":"284787","origin":"block"}],"liquidity_baking_toggle_ema":0,"adaptive_issuance_vote_ema":0,"adaptive_issuance_activation_cycle":0,"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":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","next_protocol":"PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh","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":"-15001","origin":"block"},{"kind":"freezer","category":"deposits","staker":{"baker_own_stake":"[PUBLIC_KEY_HASH]"},"change":"15001","origin":"block"},{"kind":"minted","category":"baking rewards","change":"-285009","origin":"block"},{"kind":"contract","contract":"[PUBLIC_KEY_HASH]","change":"285009","origin":"block"},{"kind":"minted","category":"baking bonuses","change":"-14989","origin":"block"},{"kind":"freezer","category":"deposits","staker":{"baker_own_stake":"[PUBLIC_KEY_HASH]"},"change":"14989","origin":"block"},{"kind":"minted","category":"baking bonuses","change":"-284787","origin":"block"},{"kind":"contract","contract":"[PUBLIC_KEY_HASH]","change":"284787","origin":"block"}],"liquidity_baking_toggle_ema":0,"adaptive_issuance_vote_ema":0,"adaptive_issuance_activation_cycle":0,"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": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", - "next_protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY", + "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", + "next_protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh", "test_chain_status": { "status": "not_running" }, diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- block_header.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- block_header.out index 3c88ab022c71..bd8c0aaa45a5 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- block_header.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- block_header.out @@ -1,5 +1,5 @@ -./octez-codec encode 023-PtSEouLo.block_header from '{ +./octez-codec encode 023-PtSeouLo.block_header from '{ "level": 1331, "proto": 1, "predecessor": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", @@ -21,7 +21,7 @@ }' 00000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00242e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d5580166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.block_header from 00000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00242e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d5580166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.block_header from 00000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00242e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d5580166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "level": 1331, "proto": 1, "predecessor": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "timestamp": "2020-04-20T16:20:00Z", "validation_pass": 2, diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- block_header.raw.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- block_header.raw.out index 5c8e23ef75cb..9a60a6a034cc 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- block_header.raw.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- block_header.raw.out @@ -1,5 +1,5 @@ -./octez-codec encode 023-PtSEouLo.block_header.raw from '{ +./octez-codec encode 023-PtSeouLo.block_header.raw from '{ "level": 1331, "proto": 1, "predecessor": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", @@ -15,7 +15,7 @@ }' 00000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00242e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c521d101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d55866804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.block_header.raw from 00000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00242e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c521d101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d55866804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.block_header.raw from 00000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00242e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c521d101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d55866804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "level": 1331, "proto": 1, "predecessor": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "timestamp": "2020-04-20T16:20:00Z", "validation_pass": 2, diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- block_header.unsigned.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- block_header.unsigned.out index 852fc715b0eb..601af04584a6 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- block_header.unsigned.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- block_header.unsigned.out @@ -1,5 +1,5 @@ -./octez-codec encode 023-PtSEouLo.block_header.unsigned from '{ +./octez-codec encode 023-PtSeouLo.block_header.unsigned from '{ "level": 1331, "proto": 1, "predecessor": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", @@ -20,7 +20,7 @@ }' 00000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00242e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d55801 -./octez-codec decode 023-PtSEouLo.block_header.unsigned from 00000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00242e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d55801 +./octez-codec decode 023-PtSeouLo.block_header.unsigned from 00000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00242e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000ff043691f53c02ca1ac6f1a0c1586bf77973e04c2d9b618a8309e79651daf0d55801 { "level": 1331, "proto": 1, "predecessor": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "timestamp": "2020-04-20T16:20:00Z", "validation_pass": 2, diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- contract.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- contract.out index bd2bac8fd4f3..9e5ea85deb8f 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- contract.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- contract.out @@ -1,12 +1,12 @@ -./octez-codec encode 023-PtSEouLo.contract from '"tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx"' +./octez-codec encode 023-PtSeouLo.contract from '"tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx"' 000002298c03ed7d454a101eb7022bc95f7e5f41ac78 -./octez-codec decode 023-PtSEouLo.contract from 000002298c03ed7d454a101eb7022bc95f7e5f41ac78 +./octez-codec decode 023-PtSeouLo.contract from 000002298c03ed7d454a101eb7022bc95f7e5f41ac78 "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" -./octez-codec encode 023-PtSEouLo.contract from '"KT1DieU51jzXLerQx5AqMCiLC1SsCeM8yRat"' +./octez-codec encode 023-PtSeouLo.contract from '"KT1DieU51jzXLerQx5AqMCiLC1SsCeM8yRat"' 0138560805b4c8d7b7fbbafad5c59dbfa3878ca70500 -./octez-codec decode 023-PtSEouLo.contract from 0138560805b4c8d7b7fbbafad5c59dbfa3878ca70500 +./octez-codec decode 023-PtSeouLo.contract from 0138560805b4c8d7b7fbbafad5c59dbfa3878ca70500 "KT1DieU51jzXLerQx5AqMCiLC1SsCeM8yRat" diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- cycle.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- cycle.out index 76e6b85a8481..bf65822b8ea2 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- cycle.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- cycle.out @@ -1,12 +1,12 @@ -./octez-codec encode 023-PtSEouLo.cycle from 2147483647 +./octez-codec encode 023-PtSeouLo.cycle from 2147483647 7fffffff -./octez-codec decode 023-PtSEouLo.cycle from 7fffffff +./octez-codec decode 023-PtSeouLo.cycle from 7fffffff 2147483647 -./octez-codec encode 023-PtSEouLo.cycle from 0 +./octez-codec encode 023-PtSeouLo.cycle from 0 00000000 -./octez-codec decode 023-PtSEouLo.cycle from 00000000 +./octez-codec decode 023-PtSeouLo.cycle from 00000000 0 diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- fitness.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- fitness.out index 05aa93c3be09..f208fdf0d3e0 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- fitness.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- fitness.out @@ -1,5 +1,5 @@ -./octez-codec encode 023-PtSEouLo.fitness from '{ +./octez-codec encode 023-PtSeouLo.fitness from '{ "level": 1, "locked_round": 1, "predecessor_round": 1, @@ -7,5 +7,5 @@ }' 0000000101000000010000000100000002 -./octez-codec decode 023-PtSEouLo.fitness from 0000000101000000010000000100000002 +./octez-codec decode 023-PtSeouLo.fitness from 0000000101000000010000000100000002 { "level": 1, "locked_round": 1, "predecessor_round": 1, "round": 2 } diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- gas.cost.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- gas.cost.out index 55eb09f8cd09..577fead1c89e 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- gas.cost.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- gas.cost.out @@ -1,12 +1,12 @@ -./octez-codec encode 023-PtSEouLo.gas.cost from '"8920392083423078"' +./octez-codec encode 023-PtSeouLo.gas.cost from '"8920392083423078"' a6fd9d9694c3d81f -./octez-codec decode 023-PtSEouLo.gas.cost from a6fd9d9694c3d81f +./octez-codec decode 023-PtSeouLo.gas.cost from a6fd9d9694c3d81f "8920392083423078" -./octez-codec encode 023-PtSEouLo.gas.cost from '"0"' +./octez-codec encode 023-PtSeouLo.gas.cost from '"0"' 00 -./octez-codec decode 023-PtSEouLo.gas.cost from 00 +./octez-codec decode 023-PtSeouLo.gas.cost from 00 "0" diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- gas.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- gas.out index 798783c7211f..b9a548e31e0a 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- gas.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- gas.out @@ -1,18 +1,18 @@ -./octez-codec encode 023-PtSEouLo.gas from '"1238"' +./octez-codec encode 023-PtSeouLo.gas from '"1238"' 009613 -./octez-codec decode 023-PtSEouLo.gas from 009613 +./octez-codec decode 023-PtSeouLo.gas from 009613 "1238" -./octez-codec encode 023-PtSEouLo.gas from '"unaccounted"' +./octez-codec encode 023-PtSeouLo.gas from '"unaccounted"' 01 -./octez-codec decode 023-PtSEouLo.gas from 01 +./octez-codec decode 023-PtSeouLo.gas from 01 "unaccounted" -./octez-codec encode 023-PtSEouLo.gas from '"0"' +./octez-codec encode 023-PtSeouLo.gas from '"0"' 0000 -./octez-codec decode 023-PtSEouLo.gas from 0000 +./octez-codec decode 023-PtSeouLo.gas from 0000 "0" diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- level.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- level.out index 24ace012130f..e290c75bae6f 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- level.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- level.out @@ -1,5 +1,5 @@ -./octez-codec encode 023-PtSEouLo.level from '{ +./octez-codec encode 023-PtSeouLo.level from '{ "level": 1331, "level_position": 2147483647, "cycle": 300, @@ -8,6 +8,6 @@ }' 000005337fffffff0000012c00000258ff -./octez-codec decode 023-PtSEouLo.level from 000005337fffffff0000012c00000258ff +./octez-codec decode 023-PtSeouLo.level from 000005337fffffff0000012c00000258ff { "level": 1331, "level_position": 2147483647, "cycle": 300, "cycle_position": 600, "expected_commitment": true } diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- nonce.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- nonce.out index 1662aafdaf23..fa1b528cd859 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- nonce.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- nonce.out @@ -1,6 +1,6 @@ -./octez-codec encode 023-PtSEouLo.nonce from '"0000000000000000000000000000000000000000000000000000000000000000"' +./octez-codec encode 023-PtSeouLo.nonce from '"0000000000000000000000000000000000000000000000000000000000000000"' 0000000000000000000000000000000000000000000000000000000000000000 -./octez-codec decode 023-PtSEouLo.nonce from 0000000000000000000000000000000000000000000000000000000000000000 +./octez-codec decode 023-PtSeouLo.nonce from 0000000000000000000000000000000000000000000000000000000000000000 "0000000000000000000000000000000000000000000000000000000000000000" diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.bls_mode_unsigned.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.bls_mode_unsigned.out index b20b11d19c2d..62596c6bf7c0 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.bls_mode_unsigned.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.bls_mode_unsigned.out @@ -1,5 +1,5 @@ -./octez-codec encode 023-PtSEouLo.operation.bls_mode_unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.bls_mode_unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -12,14 +12,14 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a82900000533000000000000000000000000000000000000000000000000000000000000000000000000 -./octez-codec decode 023-PtSEouLo.operation.bls_mode_unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a82900000533000000000000000000000000000000000000000000000000000000000000000000000000 +./octez-codec decode 023-PtSeouLo.operation.bls_mode_unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a82900000533000000000000000000000000000000000000000000000000000000000000000000000000 { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "bls_mode_attestation", "level": 1331, "round": 0, "block_payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG" } ] } -./octez-codec encode 023-PtSEouLo.operation.bls_mode_unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.bls_mode_unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -32,7 +32,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a82800000533000000000000000000000000000000000000000000000000000000000000000000000000 -./octez-codec decode 023-PtSEouLo.operation.bls_mode_unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a82800000533000000000000000000000000000000000000000000000000000000000000000000000000 +./octez-codec decode 023-PtSeouLo.operation.bls_mode_unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a82800000533000000000000000000000000000000000000000000000000000000000000000000000000 { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "bls_mode_preattestation", "level": 1331, "round": 0, diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.internal.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.internal.out index 2f0a40b00078..d3cd297642e9 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.internal.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.internal.out @@ -1,16 +1,16 @@ -./octez-codec encode 023-PtSEouLo.operation.internal from '{ +./octez-codec encode 023-PtSeouLo.operation.internal from '{ "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "nonce": 0, "kind": "delegation" }' 000002298c03ed7d454a101eb7022bc95f7e5f41ac7800000300 -./octez-codec decode 023-PtSEouLo.operation.internal from 000002298c03ed7d454a101eb7022bc95f7e5f41ac7800000300 +./octez-codec decode 023-PtSeouLo.operation.internal from 000002298c03ed7d454a101eb7022bc95f7e5f41ac7800000300 { "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "nonce": 0, "kind": "delegation" } -./octez-codec encode 023-PtSEouLo.operation.internal from '{ +./octez-codec encode 023-PtSeouLo.operation.internal from '{ "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "nonce": 0, "kind": "delegation", @@ -18,11 +18,11 @@ }' 000002298c03ed7d454a101eb7022bc95f7e5f41ac78000003ff0002298c03ed7d454a101eb7022bc95f7e5f41ac78 -./octez-codec decode 023-PtSEouLo.operation.internal from 000002298c03ed7d454a101eb7022bc95f7e5f41ac78000003ff0002298c03ed7d454a101eb7022bc95f7e5f41ac78 +./octez-codec decode 023-PtSeouLo.operation.internal from 000002298c03ed7d454a101eb7022bc95f7e5f41ac78000003ff0002298c03ed7d454a101eb7022bc95f7e5f41ac78 { "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "nonce": 0, "kind": "delegation", "delegate": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" } -./octez-codec encode 023-PtSEouLo.operation.internal from '{ +./octez-codec encode 023-PtSeouLo.operation.internal from '{ "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "nonce": 0, "kind": "origination", @@ -85,7 +85,7 @@ }' 000002298c03ed7d454a101eb7022bc95f7e5f41ac78000002af9105ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7800000020020000001b050003680501056303680502020000000a03160346053d036d03420000000e0200000009010000000474657374 -./octez-codec decode 023-PtSEouLo.operation.internal from 000002298c03ed7d454a101eb7022bc95f7e5f41ac78000002af9105ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7800000020020000001b050003680501056303680502020000000a03160346053d036d03420000000e0200000009010000000474657374 +./octez-codec decode 023-PtSeouLo.operation.internal from 000002298c03ed7d454a101eb7022bc95f7e5f41ac78000002af9105ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7800000020020000001b050003680501056303680502020000000a03160346053d036d03420000000e0200000009010000000474657374 { "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "nonce": 0, "kind": "origination", "balance": "84143", "delegate": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", @@ -102,7 +102,7 @@ { "prim": "PAIR" } ] ] } ], "storage": [ { "string": "test" } ] } } -./octez-codec encode 023-PtSEouLo.operation.internal from '{ +./octez-codec encode 023-PtSeouLo.operation.internal from '{ "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "nonce": 3, "kind": "transaction", @@ -111,12 +111,12 @@ }' 000002298c03ed7d454a101eb7022bc95f7e5f41ac780003019703000002298c03ed7d454a101eb7022bc95f7e5f41ac7800 -./octez-codec decode 023-PtSEouLo.operation.internal from 000002298c03ed7d454a101eb7022bc95f7e5f41ac780003019703000002298c03ed7d454a101eb7022bc95f7e5f41ac7800 +./octez-codec decode 023-PtSeouLo.operation.internal from 000002298c03ed7d454a101eb7022bc95f7e5f41ac780003019703000002298c03ed7d454a101eb7022bc95f7e5f41ac7800 { "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "nonce": 3, "kind": "transaction", "amount": "407", "destination": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" } -./octez-codec encode 023-PtSEouLo.operation.internal from '{ +./octez-codec encode 023-PtSeouLo.operation.internal from '{ "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "nonce": 0, "kind": "transaction", @@ -133,7 +133,7 @@ }' 000002298c03ed7d454a101eb7022bc95f7e5f41ac7800000197030138560805b4c8d7b7fbbafad5c59dbfa3878ca70500ffff06616374696f6e000000070200000002034f -./octez-codec decode 023-PtSEouLo.operation.internal from 000002298c03ed7d454a101eb7022bc95f7e5f41ac7800000197030138560805b4c8d7b7fbbafad5c59dbfa3878ca70500ffff06616374696f6e000000070200000002034f +./octez-codec decode 023-PtSeouLo.operation.internal from 000002298c03ed7d454a101eb7022bc95f7e5f41ac7800000197030138560805b4c8d7b7fbbafad5c59dbfa3878ca70500ffff06616374696f6e000000070200000002034f { "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "nonce": 0, "kind": "transaction", "amount": "407", "destination": "KT1DieU51jzXLerQx5AqMCiLC1SsCeM8yRat", diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.out index 574c99327b4d..dfc43dbab003 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.out @@ -1,5 +1,5 @@ -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -12,7 +12,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a804c55cf02dbeecc978d9c84625dcae72bb77ea4fbd41f98b15efc63fa893d61d7d6eee4a2ce9427ac466804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a804c55cf02dbeecc978d9c84625dcae72bb77ea4fbd41f98b15efc63fa893d61d7d6eee4a2ce9427ac466804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a804c55cf02dbeecc978d9c84625dcae72bb77ea4fbd41f98b15efc63fa893d61d7d6eee4a2ce9427ac466804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "activate_account", @@ -21,7 +21,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -37,7 +37,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a817000000000533000000000000000000000000000000000000000000000000000000000000000000000000802066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a817000000000533000000000000000000000000000000000000000000000000000000000000000000000000802066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a817000000000533000000000000000000000000000000000000000000000000000000000000000000000000802066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "attestation_with_dal", "slot": 0, "level": 1331, "round": 0, @@ -47,7 +47,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -62,7 +62,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "attestation", "slot": 0, "level": 1331, "round": 0, @@ -71,7 +71,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -104,7 +104,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81f00000533000000000000000000000000000000000000000000000000000000000000000000000000000000100000000017ff80200033ff00037dff01ff03aa9d7b7d96832a1d687a1be9a330ed89ba3fcb293de1dbbede4d9f69a22555f2e2c661f68ed427c4cafc7568554207ce0e2d6daa5abb0a07031ed7e5ee3d5c9c17cf827b1824a4b03afd7f13cdde07e37d8c38b053fd928815e462bdf9eb062d -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81f00000533000000000000000000000000000000000000000000000000000000000000000000000000000000100000000017ff80200033ff00037dff01ff03aa9d7b7d96832a1d687a1be9a330ed89ba3fcb293de1dbbede4d9f69a22555f2e2c661f68ed427c4cafc7568554207ce0e2d6daa5abb0a07031ed7e5ee3d5c9c17cf827b1824a4b03afd7f13cdde07e37d8c38b053fd928815e462bdf9eb062d +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81f00000533000000000000000000000000000000000000000000000000000000000000000000000000000000100000000017ff80200033ff00037dff01ff03aa9d7b7d96832a1d687a1be9a330ed89ba3fcb293de1dbbede4d9f69a22555f2e2c661f68ed427c4cafc7568554207ce0e2d6daa5abb0a07031ed7e5ee3d5c9c17cf827b1824a4b03afd7f13cdde07e37d8c38b053fd928815e462bdf9eb062d { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "attestations_aggregate", @@ -119,7 +119,7 @@ "signature": "BLsigBANTUiNcB2UB7VMj1yTn4SgX9NZabdSY3cHBZgDvFoDcJWrtYZZZshA8LEjY46wqxoWM7PvDTatLiDoiCTmc4p2LVdsXLC9CPtDmZYe7mr33uPgLyVutVSqMmrxRF1ej9Ce7p7nRH" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -134,7 +134,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8060002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c0066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8060002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c0066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8060002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c0066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "ballot", "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", @@ -144,7 +144,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -160,7 +160,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d4010066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d4010066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d4010066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "delegation", @@ -170,7 +170,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -187,7 +187,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7866804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7866804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7866804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "delegation", @@ -198,7 +198,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -213,7 +213,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "attestation", "slot": 0, "level": 1331, "round": 0, @@ -222,7 +222,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -271,7 +271,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a803000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a803000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a803000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "double_baking_evidence", @@ -310,7 +310,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -344,7 +344,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80200000000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c0000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80200000000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c0000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80200000000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c0000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "double_consensus_operation_evidence", "slot": 0, @@ -369,7 +369,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -441,7 +441,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86d0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401af9105ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7800000020020000001b050003680501056303680502020000000a03160346053d036d03420000000e020000000901000000047465737466804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86d0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401af9105ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7800000020020000001b050003680501056303680502020000000a03160346053d036d03420000000e020000000901000000047465737466804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86d0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401af9105ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7800000020020000001b050003680501056303680502020000000a03160346053d036d03420000000e020000000901000000047465737466804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "origination", @@ -465,7 +465,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -480,7 +480,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "preattestation", "slot": 0, "level": 1331, "round": 0, @@ -489,7 +489,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -506,7 +506,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8050002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf000000407663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8050002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf000000407663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8050002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf000000407663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "proposals", @@ -517,7 +517,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -534,7 +534,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86b0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f0066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86b0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f0066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86b0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f0066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "reveal", "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", @@ -545,7 +545,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -558,7 +558,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80100000533000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80100000533000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80100000533000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "seed_nonce_revelation", "level": 1331, @@ -567,7 +567,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -585,7 +585,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d4019703000002298c03ed7d454a101eb7022bc95f7e5f41ac780066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d4019703000002298c03ed7d454a101eb7022bc95f7e5f41ac780066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d4019703000002298c03ed7d454a101eb7022bc95f7e5f41ac780066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "transaction", @@ -596,7 +596,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -622,7 +622,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d40197030138560805b4c8d7b7fbbafad5c59dbfa3878ca70500ffff06616374696f6e000000070200000002034f66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d40197030138560805b4c8d7b7fbbafad5c59dbfa3878ca70500ffff06616374696f6e000000070200000002034f66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d40197030138560805b4c8d7b7fbbafad5c59dbfa3878ca70500ffff06616374696f6e000000070200000002034f66804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "transaction", @@ -635,7 +635,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -653,7 +653,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a87303fad261084d3e363c48b61d2ad617de8b798841ff21dc05edecc004adcacdb7d40103b1835898e501798f26d7ee20cb772fedc4e4e0e963f6ef47a7925ac9cfb61d5100bde3ee7f1e9e37175842b3d378776dff000000608ed0b1d82e17ce7e927ffd9470f8208ec5d8d32556135c2c670000815f20a81b9de3f2ac50919751b4872644be2f75cb041108a9fbf9b550b6c5f90b5626d5a99f7784b11194561768220cff18e9a142a4246d279311f46de4ba9727740c6438ff03992e5281475b5634a6d9f0637d2da0e7d75a2b49d43893c68dcffdfa4d2e45c8d119d7a253e2e981ed1c788d3854d0020ffc9091e355c3287eda37d2163d0a56f3ef36268fcc176f063715a1fe97c746cbedf1f8cd76ee73e1e48c0d9c23ea0c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a87303fad261084d3e363c48b61d2ad617de8b798841ff21dc05edecc004adcacdb7d40103b1835898e501798f26d7ee20cb772fedc4e4e0e963f6ef47a7925ac9cfb61d5100bde3ee7f1e9e37175842b3d378776dff000000608ed0b1d82e17ce7e927ffd9470f8208ec5d8d32556135c2c670000815f20a81b9de3f2ac50919751b4872644be2f75cb041108a9fbf9b550b6c5f90b5626d5a99f7784b11194561768220cff18e9a142a4246d279311f46de4ba9727740c6438ff03992e5281475b5634a6d9f0637d2da0e7d75a2b49d43893c68dcffdfa4d2e45c8d119d7a253e2e981ed1c788d3854d0020ffc9091e355c3287eda37d2163d0a56f3ef36268fcc176f063715a1fe97c746cbedf1f8cd76ee73e1e48c0d9c23ea0c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a87303fad261084d3e363c48b61d2ad617de8b798841ff21dc05edecc004adcacdb7d40103b1835898e501798f26d7ee20cb772fedc4e4e0e963f6ef47a7925ac9cfb61d5100bde3ee7f1e9e37175842b3d378776dff000000608ed0b1d82e17ce7e927ffd9470f8208ec5d8d32556135c2c670000815f20a81b9de3f2ac50919751b4872644be2f75cb041108a9fbf9b550b6c5f90b5626d5a99f7784b11194561768220cff18e9a142a4246d279311f46de4ba9727740c6438ff03992e5281475b5634a6d9f0637d2da0e7d75a2b49d43893c68dcffdfa4d2e45c8d119d7a253e2e981ed1c788d3854d0020ffc9091e355c3287eda37d2163d0a56f3ef36268fcc176f063715a1fe97c746cbedf1f8cd76ee73e1e48c0d9c23ea0c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "update_companion_key", @@ -667,7 +667,7 @@ "signature": "BLsigAV587qg1S78p9hRyfmcqM6cVxsafJ9MVRWLLxfykmdB7LcpMWgLZjSQfhbuffvJovUsS9vJpesiwJm9xEhZPjW93DB5tjSUkUrXcQpTVGoJe4KsGR16BUdVEZQuXeW2XjUk9BqYSP" } -./octez-codec encode 023-PtSEouLo.operation from '{ +./octez-codec encode 023-PtSeouLo.operation from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -685,7 +685,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a87203fad261084d3e363c48b61d2ad617de8b798841ff21dc05edecc004adcacdb7d40103b1835898e501798f26d7ee20cb772fedc4e4e0e963f6ef47a7925ac9cfb61d5100bde3ee7f1e9e37175842b3d378776dff000000608ed0b1d82e17ce7e927ffd9470f8208ec5d8d32556135c2c670000815f20a81b9de3f2ac50919751b4872644be2f75cb041108a9fbf9b550b6c5f90b5626d5a99f7784b11194561768220cff18e9a142a4246d279311f46de4ba9727740c6438ff03992e5281475b5634a6d9f0637d2da0e7d75a2b49d43893c68dcffdfa4d2e45c8d119d7a253e2e981ed1c788d3854d0020ffc9091e355c3287eda37d2163d0a56f3ef36268fcc176f063715a1fe97c746cbedf1f8cd76ee73e1e48c0d9c23ea0c -./octez-codec decode 023-PtSEouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a87203fad261084d3e363c48b61d2ad617de8b798841ff21dc05edecc004adcacdb7d40103b1835898e501798f26d7ee20cb772fedc4e4e0e963f6ef47a7925ac9cfb61d5100bde3ee7f1e9e37175842b3d378776dff000000608ed0b1d82e17ce7e927ffd9470f8208ec5d8d32556135c2c670000815f20a81b9de3f2ac50919751b4872644be2f75cb041108a9fbf9b550b6c5f90b5626d5a99f7784b11194561768220cff18e9a142a4246d279311f46de4ba9727740c6438ff03992e5281475b5634a6d9f0637d2da0e7d75a2b49d43893c68dcffdfa4d2e45c8d119d7a253e2e981ed1c788d3854d0020ffc9091e355c3287eda37d2163d0a56f3ef36268fcc176f063715a1fe97c746cbedf1f8cd76ee73e1e48c0d9c23ea0c +./octez-codec decode 023-PtSeouLo.operation from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a87203fad261084d3e363c48b61d2ad617de8b798841ff21dc05edecc004adcacdb7d40103b1835898e501798f26d7ee20cb772fedc4e4e0e963f6ef47a7925ac9cfb61d5100bde3ee7f1e9e37175842b3d378776dff000000608ed0b1d82e17ce7e927ffd9470f8208ec5d8d32556135c2c670000815f20a81b9de3f2ac50919751b4872644be2f75cb041108a9fbf9b550b6c5f90b5626d5a99f7784b11194561768220cff18e9a142a4246d279311f46de4ba9727740c6438ff03992e5281475b5634a6d9f0637d2da0e7d75a2b49d43893c68dcffdfa4d2e45c8d119d7a253e2e981ed1c788d3854d0020ffc9091e355c3287eda37d2163d0a56f3ef36268fcc176f063715a1fe97c746cbedf1f8cd76ee73e1e48c0d9c23ea0c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "update_consensus_key", diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.raw.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.raw.out index 4adf68cbf1ba..79d1b0f82f47 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.raw.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.raw.out @@ -1,11 +1,11 @@ -./octez-codec encode 023-PtSEouLo.operation.raw from '{ +./octez-codec encode 023-PtSeouLo.operation.raw from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "data": "000000053366804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c" }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000053366804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation.raw from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000053366804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation.raw from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000053366804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "data": "000000053366804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c" } diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.unsigned.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.unsigned.out index fcaa3226adeb..25853d4ba4bc 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.unsigned.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- operation.unsigned.out @@ -1,5 +1,5 @@ -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -11,14 +11,14 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a804c55cf02dbeecc978d9c84625dcae72bb77ea4fbd41f98b15efc63fa893d61d7d6eee4a2ce9427ac4 -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a804c55cf02dbeecc978d9c84625dcae72bb77ea4fbd41f98b15efc63fa893d61d7d6eee4a2ce9427ac4 +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a804c55cf02dbeecc978d9c84625dcae72bb77ea4fbd41f98b15efc63fa893d61d7d6eee4a2ce9427ac4 { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "activate_account", "pkh": "tz1ddb9NMYHZi5UzPdzTZMYQQZoMub195zgv", "secret": "41f98b15efc63fa893d61d7d6eee4a2ce9427ac4" } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -33,7 +33,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8170000000005330000000000000000000000000000000000000000000000000000000000000000000000008020 -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8170000000005330000000000000000000000000000000000000000000000000000000000000000000000008020 +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8170000000005330000000000000000000000000000000000000000000000000000000000000000000000008020 { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "attestation_with_dal", "slot": 0, "level": 1331, "round": 0, @@ -41,7 +41,7 @@ "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG", "dal_attestation": "2048" } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -55,14 +55,14 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a815000000000533000000000000000000000000000000000000000000000000000000000000000000000000 -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a815000000000533000000000000000000000000000000000000000000000000000000000000000000000000 +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a815000000000533000000000000000000000000000000000000000000000000000000000000000000000000 { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "attestation", "slot": 0, "level": 1331, "round": 0, "block_payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG" } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -94,7 +94,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81f00000533000000000000000000000000000000000000000000000000000000000000000000000000000000100000000017ff80200033ff00037dff01 -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81f00000533000000000000000000000000000000000000000000000000000000000000000000000000000000100000000017ff80200033ff00037dff01 +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81f00000533000000000000000000000000000000000000000000000000000000000000000000000000000000100000000017ff80200033ff00037dff01 { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "attestations_aggregate", @@ -107,7 +107,7 @@ { "slot": 51, "dal_attestation": "0" }, { "slot": 893, "dal_attestation": "1" } ] } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -121,7 +121,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8060002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c00 -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8060002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c00 +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8060002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c00 { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "ballot", "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", @@ -129,7 +129,7 @@ "proposal": "PscqRYywd243M2eZspXZEJGsRmNchp4ZKfKmoyEZTRHeLQvVGjp", "ballot": "yay" } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -144,7 +144,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d40100 -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d40100 +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d40100 { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "delegation", @@ -152,7 +152,7 @@ "counter": "732", "gas_limit": "9451117", "storage_limit": "57024931117" } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -168,7 +168,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401ff0002298c03ed7d454a101eb7022bc95f7e5f41ac78 -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401ff0002298c03ed7d454a101eb7022bc95f7e5f41ac78 +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86e0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401ff0002298c03ed7d454a101eb7022bc95f7e5f41ac78 { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "delegation", @@ -177,7 +177,7 @@ "storage_limit": "57024931117", "delegate": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -210,7 +210,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80200000000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c0000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80200000000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c0000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80200000000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c0000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "double_consensus_operation_evidence", "slot": 0, @@ -231,7 +231,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -279,7 +279,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a803000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a803000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a803000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c000000f100000533010e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8000000005e9dcbb00442e9bc4583d4f9fa6ba422733f45d3a44397141a953d2237bf8df62e5046eef700000011000000010100000008000000000000000a4c7319284b55068bb7c4e0b9f8585729db7fb27ab4ca9cff2038a1fc324f650c000000000000000000000000000000000000000000000000000000000000000000000000101895ca00000000000166804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "double_baking_evidence", @@ -316,7 +316,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -349,7 +349,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80200000000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c0000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80200000000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c0000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80200000000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81500000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c0000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "double_consensus_operation_evidence", "slot": 0, @@ -371,7 +371,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -404,7 +404,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80200000000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c0000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80200000000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c0000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a80200000000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c0000008b0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a81400000000053300000000000000000000000000000000000000000000000000000000000000000000000066804fe735e06e97e26da8236b6341b91c625d5e82b3524ec0a88cc982365e70f8a5b9bc65df2ea6d21ee244cc3a96fb33031c394c78b1179ff1b8a44237740c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "double_consensus_operation_evidence", "slot": 0, @@ -427,7 +427,7 @@ "signature": "sigbQ5ZNvkjvGssJgoAnUAfY4Wvvg3QZqawBYB1j1VDBNTMBAALnCzRHWzer34bnfmzgHg3EvwdzQKdxgSghB897cono6gbQ" } } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -498,7 +498,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86d0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401af9105ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7800000020020000001b050003680501056303680502020000000a03160346053d036d03420000000e0200000009010000000474657374 -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86d0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401af9105ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7800000020020000001b050003680501056303680502020000000a03160346053d036d03420000000e0200000009010000000474657374 +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86d0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401af9105ff0002298c03ed7d454a101eb7022bc95f7e5f41ac7800000020020000001b050003680501056303680502020000000a03160346053d036d03420000000e0200000009010000000474657374 { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "origination", @@ -520,7 +520,7 @@ { "prim": "PAIR" } ] ] } ], "storage": [ { "string": "test" } ] } } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -534,14 +534,14 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a814000000000533000000000000000000000000000000000000000000000000000000000000000000000000 -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a814000000000533000000000000000000000000000000000000000000000000000000000000000000000000 +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a814000000000533000000000000000000000000000000000000000000000000000000000000000000000000 { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "preattestation", "slot": 0, "level": 1331, "round": 0, "block_payload_hash": "vh1g87ZG6scSYxKhspAUzprQVuLAyoa5qMBKcUfjgnQGnFb3dJcG" } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -557,7 +557,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8050002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf000000407663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8050002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf000000407663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8050002298c03ed7d454a101eb7022bc95f7e5f41ac78000002cf000000407663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c7663cf120f3dc8189d5dc7d4d7a0483bcc53f3f18e700f5a2f5076aa8b9dc55c { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "proposals", @@ -566,7 +566,7 @@ [ "PscqRYywd243M2eZspXZEJGsRmNchp4ZKfKmoyEZTRHeLQvVGjp", "PscqRYywd243M2eZspXZEJGsRmNchp4ZKfKmoyEZTRHeLQvVGjp" ] } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -582,7 +582,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86b0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f00 -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86b0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f00 +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86b0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d401004798d2cc98473d7e250c898885718afd2e4efbcb1a1595ab9730761ed830de0f00 { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "reveal", "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", @@ -591,7 +591,7 @@ "public_key": "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -603,14 +603,14 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a801000005330000000000000000000000000000000000000000000000000000000000000000 -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a801000005330000000000000000000000000000000000000000000000000000000000000000 +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a801000005330000000000000000000000000000000000000000000000000000000000000000 { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "seed_nonce_revelation", "level": 1331, "nonce": "0000000000000000000000000000000000000000000000000000000000000000" } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -627,7 +627,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d4019703000002298c03ed7d454a101eb7022bc95f7e5f41ac7800 -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d4019703000002298c03ed7d454a101eb7022bc95f7e5f41ac7800 +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d4019703000002298c03ed7d454a101eb7022bc95f7e5f41ac7800 { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "transaction", @@ -636,7 +636,7 @@ "storage_limit": "57024931117", "amount": "407", "destination": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx" } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -661,7 +661,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d40197030138560805b4c8d7b7fbbafad5c59dbfa3878ca70500ffff06616374696f6e000000070200000002034f -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d40197030138560805b4c8d7b7fbbafad5c59dbfa3878ca70500ffff06616374696f6e000000070200000002034f +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a86c0002298c03ed7d454a101eb7022bc95f7e5f41ac7821dc05edecc004adcacdb7d40197030138560805b4c8d7b7fbbafad5c59dbfa3878ca70500ffff06616374696f6e000000070200000002034f { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "transaction", @@ -672,7 +672,7 @@ "parameters": { "entrypoint": "action", "value": [ { "prim": "UNIT" } ] } } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -689,7 +689,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a87303fad261084d3e363c48b61d2ad617de8b798841ff21dc05edecc004adcacdb7d40103b1835898e501798f26d7ee20cb772fedc4e4e0e963f6ef47a7925ac9cfb61d5100bde3ee7f1e9e37175842b3d378776dff000000608ed0b1d82e17ce7e927ffd9470f8208ec5d8d32556135c2c670000815f20a81b9de3f2ac50919751b4872644be2f75cb041108a9fbf9b550b6c5f90b5626d5a99f7784b11194561768220cff18e9a142a4246d279311f46de4ba9727740c6438 -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a87303fad261084d3e363c48b61d2ad617de8b798841ff21dc05edecc004adcacdb7d40103b1835898e501798f26d7ee20cb772fedc4e4e0e963f6ef47a7925ac9cfb61d5100bde3ee7f1e9e37175842b3d378776dff000000608ed0b1d82e17ce7e927ffd9470f8208ec5d8d32556135c2c670000815f20a81b9de3f2ac50919751b4872644be2f75cb041108a9fbf9b550b6c5f90b5626d5a99f7784b11194561768220cff18e9a142a4246d279311f46de4ba9727740c6438 +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a87303fad261084d3e363c48b61d2ad617de8b798841ff21dc05edecc004adcacdb7d40103b1835898e501798f26d7ee20cb772fedc4e4e0e963f6ef47a7925ac9cfb61d5100bde3ee7f1e9e37175842b3d378776dff000000608ed0b1d82e17ce7e927ffd9470f8208ec5d8d32556135c2c670000815f20a81b9de3f2ac50919751b4872644be2f75cb041108a9fbf9b550b6c5f90b5626d5a99f7784b11194561768220cff18e9a142a4246d279311f46de4ba9727740c6438 { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "update_companion_key", @@ -701,7 +701,7 @@ "proof": "BLsigA5hv9bjFDmrbvVfam6CaXM87xZv1GYhFmn3uaR4LTXahHpADaNk9LcEcQb2EF1w9b72AutNqPxzVT5EhRFQN1Ue43XA3HkMfmCYTCHa3WiLsJYLmuQvchTwoMy8zx8EibsZAJ3Dug" } ] } -./octez-codec encode 023-PtSEouLo.operation.unsigned from '{ +./octez-codec encode 023-PtSeouLo.operation.unsigned from '{ "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { @@ -718,7 +718,7 @@ }' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a87203fad261084d3e363c48b61d2ad617de8b798841ff21dc05edecc004adcacdb7d40103b1835898e501798f26d7ee20cb772fedc4e4e0e963f6ef47a7925ac9cfb61d5100bde3ee7f1e9e37175842b3d378776dff000000608ed0b1d82e17ce7e927ffd9470f8208ec5d8d32556135c2c670000815f20a81b9de3f2ac50919751b4872644be2f75cb041108a9fbf9b550b6c5f90b5626d5a99f7784b11194561768220cff18e9a142a4246d279311f46de4ba9727740c6438 -./octez-codec decode 023-PtSEouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a87203fad261084d3e363c48b61d2ad617de8b798841ff21dc05edecc004adcacdb7d40103b1835898e501798f26d7ee20cb772fedc4e4e0e963f6ef47a7925ac9cfb61d5100bde3ee7f1e9e37175842b3d378776dff000000608ed0b1d82e17ce7e927ffd9470f8208ec5d8d32556135c2c670000815f20a81b9de3f2ac50919751b4872644be2f75cb041108a9fbf9b550b6c5f90b5626d5a99f7784b11194561768220cff18e9a142a4246d279311f46de4ba9727740c6438 +./octez-codec decode 023-PtSeouLo.operation.unsigned from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a87203fad261084d3e363c48b61d2ad617de8b798841ff21dc05edecc004adcacdb7d40103b1835898e501798f26d7ee20cb772fedc4e4e0e963f6ef47a7925ac9cfb61d5100bde3ee7f1e9e37175842b3d378776dff000000608ed0b1d82e17ce7e927ffd9470f8208ec5d8d32556135c2c670000815f20a81b9de3f2ac50919751b4872644be2f75cb041108a9fbf9b550b6c5f90b5626d5a99f7784b11194561768220cff18e9a142a4246d279311f46de4ba9727740c6438 { "branch": "BKpbfCvh777DQHnXjU2sqHvVUNZ7dBAdqEfKkdw8EGSkD9LSYXb", "contents": [ { "kind": "update_consensus_key", diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- period.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- period.out index 639fca6282de..3506f160a101 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- period.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- period.out @@ -1,12 +1,12 @@ -./octez-codec encode 023-PtSEouLo.period from '"2789"' +./octez-codec encode 023-PtSeouLo.period from '"2789"' 0000000000000ae5 -./octez-codec decode 023-PtSEouLo.period from 0000000000000ae5 +./octez-codec decode 023-PtSeouLo.period from 0000000000000ae5 "2789" -./octez-codec encode 023-PtSEouLo.period from '"0"' +./octez-codec encode 023-PtSeouLo.period from '"0"' 0000000000000000 -./octez-codec decode 023-PtSEouLo.period from 0000000000000000 +./octez-codec decode 023-PtSeouLo.period from 0000000000000000 "0" diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- raw_level.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- raw_level.out index e36238118856..f04c8a621da2 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- raw_level.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- raw_level.out @@ -1,12 +1,12 @@ -./octez-codec encode 023-PtSEouLo.raw_level from 2147483647 +./octez-codec encode 023-PtSeouLo.raw_level from 2147483647 7fffffff -./octez-codec decode 023-PtSEouLo.raw_level from 7fffffff +./octez-codec decode 023-PtSeouLo.raw_level from 7fffffff 2147483647 -./octez-codec encode 023-PtSEouLo.raw_level from 0 +./octez-codec encode 023-PtSeouLo.raw_level from 0 00000000 -./octez-codec decode 023-PtSEouLo.raw_level from 00000000 +./octez-codec decode 023-PtSeouLo.raw_level from 00000000 0 diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- seed.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- seed.out index 632b82975bb9..f3a6378aa6c8 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- seed.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- seed.out @@ -1,6 +1,6 @@ -./octez-codec encode 023-PtSEouLo.seed from '"0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8"' +./octez-codec encode 023-PtSeouLo.seed from '"0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8"' 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8 -./octez-codec decode 023-PtSEouLo.seed from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8 +./octez-codec decode 023-PtSeouLo.seed from 0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8 "0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8" diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- tez.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- tez.out index 67190f8d97f1..2feb034606d3 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- tez.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- tez.out @@ -1,12 +1,12 @@ -./octez-codec encode 023-PtSEouLo.tez from '"7322135"' +./octez-codec encode 023-PtSeouLo.tez from '"7322135"' 97f4be03 -./octez-codec decode 023-PtSEouLo.tez from 97f4be03 +./octez-codec decode 023-PtSeouLo.tez from 97f4be03 "7322135" -./octez-codec encode 023-PtSEouLo.tez from '"0"' +./octez-codec encode 023-PtSeouLo.tez from '"0"' 00 -./octez-codec decode 023-PtSEouLo.tez from 00 +./octez-codec decode 023-PtSeouLo.tez from 00 "0" diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- timestamp.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- timestamp.out index 0f9b043b096d..bfeb66a49978 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- timestamp.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- timestamp.out @@ -1,6 +1,6 @@ -./octez-codec encode 023-PtSEouLo.timestamp from '"2020-04-20T16:19:59Z"' +./octez-codec encode 023-PtSeouLo.timestamp from '"2020-04-20T16:19:59Z"' 000000005e9dcbaf -./octez-codec decode 023-PtSEouLo.timestamp from 000000005e9dcbaf +./octez-codec decode 023-PtSeouLo.timestamp from 000000005e9dcbaf "2020-04-20T16:19:59Z" diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- vote.ballot.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- vote.ballot.out index 710b935e3f06..ab808fcb8256 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- vote.ballot.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- vote.ballot.out @@ -1,18 +1,18 @@ -./octez-codec encode 023-PtSEouLo.vote.ballot from '"nay"' +./octez-codec encode 023-PtSeouLo.vote.ballot from '"nay"' 01 -./octez-codec decode 023-PtSEouLo.vote.ballot from 01 +./octez-codec decode 023-PtSeouLo.vote.ballot from 01 "nay" -./octez-codec encode 023-PtSEouLo.vote.ballot from '"pass"' +./octez-codec encode 023-PtSeouLo.vote.ballot from '"pass"' 02 -./octez-codec decode 023-PtSEouLo.vote.ballot from 02 +./octez-codec decode 023-PtSeouLo.vote.ballot from 02 "pass" -./octez-codec encode 023-PtSEouLo.vote.ballot from '"yay"' +./octez-codec encode 023-PtSeouLo.vote.ballot from '"yay"' 00 -./octez-codec decode 023-PtSEouLo.vote.ballot from 00 +./octez-codec decode 023-PtSeouLo.vote.ballot from 00 "yay" diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- vote.ballots.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- vote.ballots.out index c9da3eb71379..0f2cabf281f3 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- vote.ballots.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- vote.ballots.out @@ -1,10 +1,10 @@ -./octez-codec encode 023-PtSEouLo.vote.ballots from '{ +./octez-codec encode 023-PtSeouLo.vote.ballots from '{ "yay": "2147483647", "nay": "0", "pass": "455" }' 000000007fffffff000000000000000000000000000001c7 -./octez-codec decode 023-PtSEouLo.vote.ballots from 000000007fffffff000000000000000000000000000001c7 +./octez-codec decode 023-PtSeouLo.vote.ballots from 000000007fffffff000000000000000000000000000001c7 { "yay": "2147483647", "nay": "0", "pass": "455" } diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- vote.listings.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- vote.listings.out index ba0918ca0476..cd07710bb93d 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- vote.listings.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- vote.listings.out @@ -1,5 +1,5 @@ -./octez-codec encode 023-PtSEouLo.vote.listings from '[ +./octez-codec encode 023-PtSeouLo.vote.listings from '[ { "pkh": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "voting_power": "20115" @@ -11,6 +11,6 @@ ]' 0000003a0002298c03ed7d454a101eb7022bc95f7e5f41ac780000000000004e9300e7670f32038107a59a2b9cfefae36ea21f5aa63c0000000000002328 -./octez-codec decode 023-PtSEouLo.vote.listings from 0000003a0002298c03ed7d454a101eb7022bc95f7e5f41ac780000000000004e9300e7670f32038107a59a2b9cfefae36ea21f5aa63c0000000000002328 +./octez-codec decode 023-PtSeouLo.vote.listings from 0000003a0002298c03ed7d454a101eb7022bc95f7e5f41ac780000000000004e9300e7670f32038107a59a2b9cfefae36ea21f5aa63c0000000000002328 [ { "pkh": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx", "voting_power": "20115" }, { "pkh": "tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN", "voting_power": "9000" } ] diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- voting_period.kind.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- voting_period.kind.out index d1c7db7ff882..6a6111795bc8 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- voting_period.kind.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- voting_period.kind.out @@ -1,24 +1,24 @@ -./octez-codec encode 023-PtSEouLo.voting_period.kind from '"promotion"' +./octez-codec encode 023-PtSeouLo.voting_period.kind from '"promotion"' 03 -./octez-codec decode 023-PtSEouLo.voting_period.kind from 03 +./octez-codec decode 023-PtSeouLo.voting_period.kind from 03 "promotion" -./octez-codec encode 023-PtSEouLo.voting_period.kind from '"proposal"' +./octez-codec encode 023-PtSeouLo.voting_period.kind from '"proposal"' 00 -./octez-codec decode 023-PtSEouLo.voting_period.kind from 00 +./octez-codec decode 023-PtSeouLo.voting_period.kind from 00 "proposal" -./octez-codec encode 023-PtSEouLo.voting_period.kind from '"exploration"' +./octez-codec encode 023-PtSeouLo.voting_period.kind from '"exploration"' 01 -./octez-codec decode 023-PtSEouLo.voting_period.kind from 01 +./octez-codec decode 023-PtSeouLo.voting_period.kind from 01 "exploration" -./octez-codec encode 023-PtSEouLo.voting_period.kind from '"cooldown"' +./octez-codec encode 023-PtSeouLo.voting_period.kind from '"cooldown"' 02 -./octez-codec decode 023-PtSEouLo.voting_period.kind from 02 +./octez-codec decode 023-PtSeouLo.voting_period.kind from 02 "cooldown" diff --git a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- voting_period.out b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- voting_period.out index af96fb981900..722027b6b4f8 100644 --- a/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- voting_period.out +++ b/tezt/tests/expected/encoding.ml/S023-- protocol encoding regression test- voting_period.out @@ -1,20 +1,20 @@ -./octez-codec encode 023-PtSEouLo.voting_period from '{ +./octez-codec encode 023-PtSeouLo.voting_period from '{ "start_position": 1159026, "kind": "proposal", "index": 0 }' 00000000000011af72 -./octez-codec decode 023-PtSEouLo.voting_period from 00000000000011af72 +./octez-codec decode 023-PtSeouLo.voting_period from 00000000000011af72 { "index": 0, "kind": "proposal", "start_position": 1159026 } -./octez-codec encode 023-PtSEouLo.voting_period from '{ +./octez-codec encode 023-PtSeouLo.voting_period from '{ "start_position": 0, "kind": "proposal", "index": 0 }' 000000000000000000 -./octez-codec decode 023-PtSEouLo.voting_period from 000000000000000000 +./octez-codec decode 023-PtSeouLo.voting_period from 000000000000000000 { "index": 0, "kind": "proposal", "start_position": 0 } diff --git a/tezt/tests/expected/tzt_regression.ml/S023-- Run TZT.out b/tezt/tests/expected/tzt_regression.ml/S023-- Run TZT.out index 55fa931e15fa..268ccdfa7ecf 100644 --- a/tezt/tests/expected/tzt_regression.ml/S023-- Run TZT.out +++ b/tezt/tests/expected/tzt_regression.ml/S023-- Run TZT.out @@ -1,5 +1,5 @@ -./octez-client --protocol PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY --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/is_implicit_account_00.tzt tzt_reference_test_suite/is_implicit_account_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/now_01.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 PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh --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/is_implicit_account_00.tzt tzt_reference_test_suite/is_implicit_account_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/now_01.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 000fd147f2e39bf801fcc2b00e03eef1b6bd383e Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:35:26 +0200 Subject: [PATCH 22/31] S023/tezt: reset runtime dependencies regressions --- .../expected/tezt_wrapper.ml/runtime-dependency-tags.out | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tezt/lib_wrapper/expected/tezt_wrapper.ml/runtime-dependency-tags.out b/tezt/lib_wrapper/expected/tezt_wrapper.ml/runtime-dependency-tags.out index e64f4e8c9244..286edf2100cf 100644 --- a/tezt/lib_wrapper/expected/tezt_wrapper.ml/runtime-dependency-tags.out +++ b/tezt/lib_wrapper/expected/tezt_wrapper.ml/runtime-dependency-tags.out @@ -9,13 +9,13 @@ mainnet_kernel: etherlink/kernel_latest/kernel/tests/resources/mainnet_kernel.wa evm_kernel: evm_kernel.wasm accuser: octez-accuser accuser_psriotum: octez-accuser-PsRiotum -accuser_ptseoulo: octez-accuser-PtSEouLo +accuser_ptseoulo: octez-accuser-PtSeouLo accuser_alpha: octez-accuser-alpha admin_client: octez-admin-client agnostic_baker: octez-baker baker_psquebec: octez-baker-PsQuebec baker_psriotum: octez-baker-PsRiotum -baker_ptseoulo: octez-baker-PtSEouLo +baker_ptseoulo: octez-baker-PtSeouLo baker_alpha: octez-baker-alpha client: octez-client codec: octez-codec -- GitLab From 9f0118824f206f4723e541d83cd8c6f32ff2e87b Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:36:20 +0200 Subject: [PATCH 23/31] S023/kaitai: update structs --- .../files/id_023__ptseoulo__block_header.ksy | 2 +- .../files/id_023__ptseoulo__block_header__contents.ksy | 2 +- .../files/id_023__ptseoulo__block_header__protocol_data.ksy | 2 +- .../files/id_023__ptseoulo__block_header__raw.ksy | 2 +- .../files/id_023__ptseoulo__block_header__shell_header.ksy | 2 +- .../files/id_023__ptseoulo__block_header__unsigned.ksy | 2 +- .../kaitai-struct-files/files/id_023__ptseoulo__constants.ksy | 2 +- .../files/id_023__ptseoulo__constants__fixed.ksy | 2 +- .../files/id_023__ptseoulo__constants__parametric.ksy | 2 +- .../kaitai-struct-files/files/id_023__ptseoulo__contract.ksy | 2 +- .../kaitai-struct-files/files/id_023__ptseoulo__cycle.ksy | 2 +- .../kaitai-struct-files/files/id_023__ptseoulo__errors.ksy | 2 +- .../files/id_023__ptseoulo__fa1__2__token_transfer.ksy | 2 +- .../kaitai-struct-files/files/id_023__ptseoulo__fitness.ksy | 2 +- .../files/id_023__ptseoulo__frozen_staker.ksy | 2 +- client-libs/kaitai-struct-files/files/id_023__ptseoulo__gas.ksy | 2 +- .../kaitai-struct-files/files/id_023__ptseoulo__gas__cost.ksy | 2 +- .../files/id_023__ptseoulo__lazy_storage_diff.ksy | 2 +- .../kaitai-struct-files/files/id_023__ptseoulo__level.ksy | 2 +- .../kaitai-struct-files/files/id_023__ptseoulo__nonce.ksy | 2 +- .../kaitai-struct-files/files/id_023__ptseoulo__operation.ksy | 2 +- .../files/id_023__ptseoulo__operation__bls_mode_unsigned.ksy | 2 +- .../files/id_023__ptseoulo__operation__contents.ksy | 2 +- .../files/id_023__ptseoulo__operation__contents_list.ksy | 2 +- .../files/id_023__ptseoulo__operation__internal.ksy | 2 +- .../files/id_023__ptseoulo__operation__protocol_data.ksy | 2 +- .../files/id_023__ptseoulo__operation__raw.ksy | 2 +- .../files/id_023__ptseoulo__operation__unsigned.ksy | 2 +- .../kaitai-struct-files/files/id_023__ptseoulo__parameters.ksy | 2 +- .../kaitai-struct-files/files/id_023__ptseoulo__period.ksy | 2 +- .../kaitai-struct-files/files/id_023__ptseoulo__raw_level.ksy | 2 +- .../files/id_023__ptseoulo__receipt__balance_updates.ksy | 2 +- .../kaitai-struct-files/files/id_023__ptseoulo__script.ksy | 2 +- .../files/id_023__ptseoulo__script__expr.ksy | 2 +- .../files/id_023__ptseoulo__script__lazy_expr.ksy | 2 +- .../kaitai-struct-files/files/id_023__ptseoulo__script__loc.ksy | 2 +- .../files/id_023__ptseoulo__script__prim.ksy | 2 +- .../kaitai-struct-files/files/id_023__ptseoulo__seed.ksy | 2 +- .../files/id_023__ptseoulo__smart_rollup__address.ksy | 2 +- .../files/id_023__ptseoulo__smart_rollup__commmitment.ksy | 2 +- .../files/id_023__ptseoulo__smart_rollup__game.ksy | 2 +- .../files/id_023__ptseoulo__smart_rollup__inbox.ksy | 2 +- .../files/id_023__ptseoulo__smart_rollup__inbox__message.ksy | 2 +- .../files/id_023__ptseoulo__smart_rollup__kind.ksy | 2 +- .../files/id_023__ptseoulo__smart_rollup__metadata.ksy | 2 +- .../files/id_023__ptseoulo__smart_rollup__outbox__message.ksy | 2 +- .../files/id_023__ptseoulo__smart_rollup__output.ksy | 2 +- .../files/id_023__ptseoulo__smart_rollup__proof.ksy | 2 +- .../files/id_023__ptseoulo__smart_rollup__reveal.ksy | 2 +- ...d_023__ptseoulo__smart_rollup__wasm_2_0_0__output__proof.ksy | 2 +- .../files/id_023__ptseoulo__smart_rollup__whitelist.ksy | 2 +- client-libs/kaitai-struct-files/files/id_023__ptseoulo__tez.ksy | 2 +- .../kaitai-struct-files/files/id_023__ptseoulo__timestamp.ksy | 2 +- .../files/id_023__ptseoulo__unstaked_frozen_staker.ksy | 2 +- .../files/id_023__ptseoulo__vote__ballot.ksy | 2 +- .../files/id_023__ptseoulo__vote__ballots.ksy | 2 +- .../files/id_023__ptseoulo__vote__listings.ksy | 2 +- .../files/id_023__ptseoulo__voting_period.ksy | 2 +- .../files/id_023__ptseoulo__voting_period__kind.ksy | 2 +- 59 files changed, 59 insertions(+), 59 deletions(-) diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header.ksy index 34d51d44230a..1905ae8dbd63 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header.ksy @@ -3,7 +3,7 @@ meta: endian: be imports: - block_header__shell -doc: ! 'Encoding id: 023-PtSEouLo.block_header' +doc: ! 'Encoding id: 023-PtSeouLo.block_header' types: id_023__ptseoulo__block_header__alpha__full_header: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__contents.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__contents.ksy index 4d4564c837ce..1628058fdb43 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__contents.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__contents.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__block_header__contents endian: be -doc: ! 'Encoding id: 023-PtSEouLo.block_header.contents' +doc: ! 'Encoding id: 023-PtSeouLo.block_header.contents' types: id_023__ptseoulo__block_header__alpha__unsigned_contents: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__protocol_data.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__protocol_data.ksy index e307103525c3..fe747b38024e 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__protocol_data.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__protocol_data.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__block_header__protocol_data endian: be -doc: ! 'Encoding id: 023-PtSEouLo.block_header.protocol_data' +doc: ! 'Encoding id: 023-PtSeouLo.block_header.protocol_data' types: id_023__ptseoulo__block_header__alpha__signed_contents: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__raw.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__raw.ksy index 8d9b06e9cb77..1b35939f91a0 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__raw.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__raw.ksy @@ -3,7 +3,7 @@ meta: endian: be imports: - block_header -doc: ! 'Encoding id: 023-PtSEouLo.block_header.raw' +doc: ! 'Encoding id: 023-PtSeouLo.block_header.raw' seq: - id: id_023__ptseoulo__block_header__raw type: block_header diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__shell_header.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__shell_header.ksy index 0eb4bc6a9207..44ff27bdd406 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__shell_header.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__shell_header.ksy @@ -3,7 +3,7 @@ meta: endian: be imports: - block_header__shell -doc: ! 'Encoding id: 023-PtSEouLo.block_header.shell_header' +doc: ! 'Encoding id: 023-PtSeouLo.block_header.shell_header' seq: - id: id_023__ptseoulo__block_header__shell_header type: block_header__shell diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__unsigned.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__unsigned.ksy index 0fb7690a4668..28f008402125 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__unsigned.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__block_header__unsigned.ksy @@ -3,7 +3,7 @@ meta: endian: be imports: - block_header__shell -doc: ! 'Encoding id: 023-PtSEouLo.block_header.unsigned' +doc: ! 'Encoding id: 023-PtSeouLo.block_header.unsigned' types: id_023__ptseoulo__block_header__alpha__unsigned_contents: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__constants.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__constants.ksy index 1fba239a5b29..94142e371a84 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__constants.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__constants.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__constants endian: be -doc: ! 'Encoding id: 023-PtSEouLo.constants' +doc: ! 'Encoding id: 023-PtSeouLo.constants' types: adaptive_rewards_params: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__constants__fixed.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__constants__fixed.ksy index 1602c2330ecd..4689f154fd8c 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__constants__fixed.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__constants__fixed.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__constants__fixed endian: be -doc: ! 'Encoding id: 023-PtSEouLo.constants.fixed' +doc: ! 'Encoding id: 023-PtSeouLo.constants.fixed' types: int31: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__constants__parametric.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__constants__parametric.ksy index d2d929db03bd..cd21efb35073 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__constants__parametric.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__constants__parametric.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__constants__parametric endian: be -doc: ! 'Encoding id: 023-PtSEouLo.constants.parametric' +doc: ! 'Encoding id: 023-PtSeouLo.constants.parametric' types: adaptive_rewards_params: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__contract.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__contract.ksy index e3c2c100e722..6193e2381b67 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__contract.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__contract.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__contract endian: be -doc: ! 'Encoding id: 023-PtSEouLo.contract' +doc: ! 'Encoding id: 023-PtSeouLo.contract' types: id_023__ptseoulo__contract_id: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__cycle.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__cycle.ksy index 3917ff751245..6a3451cfd4b8 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__cycle.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__cycle.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__cycle endian: be -doc: ! 'Encoding id: 023-PtSEouLo.cycle' +doc: ! 'Encoding id: 023-PtSeouLo.cycle' seq: - id: id_023__ptseoulo__cycle type: s4be diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__errors.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__errors.ksy index a98f8a7054f2..dc43e3ca44c7 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__errors.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__errors.ksy @@ -2,7 +2,7 @@ meta: id: id_023__ptseoulo__errors endian: be doc: ! >- - Encoding id: 023-PtSEouLo.errors + Encoding id: 023-PtSeouLo.errors Description: The full list of RPC errors would be too long to include. It is diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__fa1__2__token_transfer.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__fa1__2__token_transfer.ksy index 741365c55efd..5ea3e063d7cf 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__fa1__2__token_transfer.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__fa1__2__token_transfer.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__fa1__2__token_transfer endian: be -doc: ! 'Encoding id: 023-PtSEouLo.fa1.2.token_transfer' +doc: ! 'Encoding id: 023-PtSeouLo.fa1.2.token_transfer' types: bytes_dyn_uint30: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__fitness.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__fitness.ksy index 4f4e4d6a12a3..7492ea6c0f67 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__fitness.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__fitness.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__fitness endian: be -doc: ! 'Encoding id: 023-PtSEouLo.fitness' +doc: ! 'Encoding id: 023-PtSeouLo.fitness' types: locked_round: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__frozen_staker.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__frozen_staker.ksy index 3cefc600cfb8..102265229fbc 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__frozen_staker.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__frozen_staker.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__frozen_staker endian: be -doc: ! 'Encoding id: 023-PtSEouLo.frozen_staker' +doc: ! 'Encoding id: 023-PtSeouLo.frozen_staker' types: id_023__ptseoulo__contract_id: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__gas.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__gas.ksy index 5c8cbc817538..ffe5eb9b1e08 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__gas.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__gas.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__gas endian: be -doc: ! 'Encoding id: 023-PtSEouLo.gas' +doc: ! 'Encoding id: 023-PtSeouLo.gas' types: n_chunk: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__gas__cost.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__gas__cost.ksy index 9b1a88f4601e..293e0afb4bec 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__gas__cost.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__gas__cost.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__gas__cost endian: be -doc: ! 'Encoding id: 023-PtSEouLo.gas.cost' +doc: ! 'Encoding id: 023-PtSeouLo.gas.cost' types: n_chunk: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__lazy_storage_diff.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__lazy_storage_diff.ksy index 2d4c0dc4029b..2d13495b500d 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__lazy_storage_diff.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__lazy_storage_diff.ksy @@ -5,7 +5,7 @@ meta: - sapling__transaction__ciphertext - sapling__transaction__commitment - sapling__transaction__nullifier -doc: ! 'Encoding id: 023-PtSEouLo.lazy_storage_diff' +doc: ! 'Encoding id: 023-PtSeouLo.lazy_storage_diff' types: alloc: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__level.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__level.ksy index 1c1b35c49803..ad3ba5a610b2 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__level.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__level.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__level endian: be -doc: ! 'Encoding id: 023-PtSEouLo.level' +doc: ! 'Encoding id: 023-PtSeouLo.level' enums: bool: 0: false diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__nonce.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__nonce.ksy index 3fe149598c78..5909cd5cce7b 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__nonce.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__nonce.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__nonce endian: be -doc: ! 'Encoding id: 023-PtSEouLo.nonce' +doc: ! 'Encoding id: 023-PtSeouLo.nonce' seq: - id: id_023__ptseoulo__nonce size: 32 diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation.ksy index 2489098200a4..8ad0ee176c09 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation.ksy @@ -4,7 +4,7 @@ meta: imports: - block_header__shell - operation__shell_header -doc: ! 'Encoding id: 023-PtSEouLo.operation' +doc: ! 'Encoding id: 023-PtSeouLo.operation' types: activate_account: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__bls_mode_unsigned.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__bls_mode_unsigned.ksy index b9824877c888..d64d331820b1 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__bls_mode_unsigned.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__bls_mode_unsigned.ksy @@ -4,7 +4,7 @@ meta: imports: - block_header__shell - operation__shell_header -doc: ! 'Encoding id: 023-PtSEouLo.operation.bls_mode_unsigned' +doc: ! 'Encoding id: 023-PtSeouLo.operation.bls_mode_unsigned' types: activate_account: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__contents.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__contents.ksy index 3503c5223d28..2eefc92e0daa 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__contents.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__contents.ksy @@ -4,7 +4,7 @@ meta: imports: - block_header__shell - operation__shell_header -doc: ! 'Encoding id: 023-PtSEouLo.operation.contents' +doc: ! 'Encoding id: 023-PtSeouLo.operation.contents' types: activate_account: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__contents_list.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__contents_list.ksy index 5efcddfc92ff..3d7c61900677 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__contents_list.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__contents_list.ksy @@ -4,7 +4,7 @@ meta: imports: - block_header__shell - operation__shell_header -doc: ! 'Encoding id: 023-PtSEouLo.operation.contents_list' +doc: ! 'Encoding id: 023-PtSeouLo.operation.contents_list' types: activate_account: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__internal.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__internal.ksy index e4efc14757d9..764cc572f83f 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__internal.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__internal.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__operation__internal endian: be -doc: ! 'Encoding id: 023-PtSEouLo.operation.internal' +doc: ! 'Encoding id: 023-PtSeouLo.operation.internal' types: args: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__protocol_data.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__protocol_data.ksy index ea5fd81c2bd3..2639cf521319 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__protocol_data.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__protocol_data.ksy @@ -4,7 +4,7 @@ meta: imports: - block_header__shell - operation__shell_header -doc: ! 'Encoding id: 023-PtSEouLo.operation.protocol_data' +doc: ! 'Encoding id: 023-PtSeouLo.operation.protocol_data' types: activate_account: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__raw.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__raw.ksy index 8cdf4ceee94f..25f5385504d2 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__raw.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__raw.ksy @@ -3,7 +3,7 @@ meta: endian: be imports: - operation -doc: ! 'Encoding id: 023-PtSEouLo.operation.raw' +doc: ! 'Encoding id: 023-PtSeouLo.operation.raw' seq: - id: id_023__ptseoulo__operation__raw type: operation diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__unsigned.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__unsigned.ksy index e6b2c0cef5cb..7c0f286a53bc 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__unsigned.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__operation__unsigned.ksy @@ -4,7 +4,7 @@ meta: imports: - block_header__shell - operation__shell_header -doc: ! 'Encoding id: 023-PtSEouLo.operation.unsigned' +doc: ! 'Encoding id: 023-PtSeouLo.operation.unsigned' types: activate_account: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__parameters.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__parameters.ksy index 9d6e70d7f9e0..1b78e1b446c9 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__parameters.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__parameters.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__parameters endian: be -doc: ! 'Encoding id: 023-PtSEouLo.parameters' +doc: ! 'Encoding id: 023-PtSeouLo.parameters' types: adaptive_rewards_params: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__period.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__period.ksy index 711283aecd35..428a8b766c6a 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__period.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__period.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__period endian: be -doc: ! 'Encoding id: 023-PtSEouLo.period' +doc: ! 'Encoding id: 023-PtSeouLo.period' seq: - id: id_023__ptseoulo__period type: s8be diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__raw_level.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__raw_level.ksy index ad1e327862e9..925c272de95d 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__raw_level.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__raw_level.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__raw_level endian: be -doc: ! 'Encoding id: 023-PtSEouLo.raw_level' +doc: ! 'Encoding id: 023-PtSeouLo.raw_level' seq: - id: id_023__ptseoulo__raw_level type: s4be diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__receipt__balance_updates.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__receipt__balance_updates.ksy index 27a1ccac4d4a..d66c67683b02 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__receipt__balance_updates.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__receipt__balance_updates.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__receipt__balance_updates endian: be -doc: ! 'Encoding id: 023-PtSEouLo.receipt.balance_updates' +doc: ! 'Encoding id: 023-PtSeouLo.receipt.balance_updates' types: commitments: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script.ksy index e0124b363c58..0b17e87687b5 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__script endian: be -doc: ! 'Encoding id: 023-PtSEouLo.script' +doc: ! 'Encoding id: 023-PtSeouLo.script' types: bytes_dyn_uint30: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script__expr.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script__expr.ksy index b51bfe7c7ea6..79d47ebe75e0 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script__expr.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script__expr.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__script__expr endian: be -doc: ! 'Encoding id: 023-PtSEouLo.script.expr' +doc: ! 'Encoding id: 023-PtSeouLo.script.expr' types: args: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script__lazy_expr.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script__lazy_expr.ksy index 85d35bdc74bf..027f28b989f0 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script__lazy_expr.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script__lazy_expr.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__script__lazy_expr endian: be -doc: ! 'Encoding id: 023-PtSEouLo.script.lazy_expr' +doc: ! 'Encoding id: 023-PtSeouLo.script.lazy_expr' types: bytes_dyn_uint30: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script__loc.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script__loc.ksy index 35bdf530a067..76c10a8407c3 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script__loc.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script__loc.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__script__loc endian: be -doc: ! 'Encoding id: 023-PtSEouLo.script.loc' +doc: ! 'Encoding id: 023-PtSeouLo.script.loc' types: int31: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script__prim.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script__prim.ksy index 22192cfb8969..ff648e933791 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script__prim.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__script__prim.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__script__prim endian: be -doc: ! 'Encoding id: 023-PtSEouLo.script.prim' +doc: ! 'Encoding id: 023-PtSeouLo.script.prim' types: id_023__ptseoulo__michelson__v1__primitives: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__seed.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__seed.ksy index fdcd760c9666..81b37cac8a39 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__seed.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__seed.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__seed endian: be -doc: ! 'Encoding id: 023-PtSEouLo.seed' +doc: ! 'Encoding id: 023-PtSeouLo.seed' seq: - id: id_023__ptseoulo__seed size: 32 diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__address.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__address.ksy index 839da51e8323..9f9f55c38a99 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__address.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__address.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__smart_rollup__address endian: be -doc: ! 'Encoding id: 023-PtSEouLo.smart_rollup.address' +doc: ! 'Encoding id: 023-PtSeouLo.smart_rollup.address' seq: - id: smart_rollup_address size: 20 diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__commmitment.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__commmitment.ksy index f63b7db86f49..51bc8111c763 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__commmitment.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__commmitment.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__smart_rollup__commmitment endian: be -doc: ! 'Encoding id: 023-PtSEouLo.smart_rollup.commmitment' +doc: ! 'Encoding id: 023-PtSeouLo.smart_rollup.commmitment' seq: - id: compressed_state size: 32 diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__game.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__game.ksy index 5339077a5828..c62e3f2c6920 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__game.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__game.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__smart_rollup__game endian: be -doc: ! 'Encoding id: 023-PtSEouLo.smart_rollup.game' +doc: ! 'Encoding id: 023-PtSeouLo.smart_rollup.game' types: agreed_start_chunk: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__inbox.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__inbox.ksy index a4d8d0baa0eb..39f74fcffeff 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__inbox.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__inbox.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__smart_rollup__inbox endian: be -doc: ! 'Encoding id: 023-PtSEouLo.smart_rollup.inbox' +doc: ! 'Encoding id: 023-PtSeouLo.smart_rollup.inbox' types: back_pointers: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__inbox__message.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__inbox__message.ksy index 01debabbe49e..6baa48f3713a 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__inbox__message.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__inbox__message.ksy @@ -3,7 +3,7 @@ meta: endian: be imports: - timestamp__protocol -doc: ! 'Encoding id: 023-PtSEouLo.smart_rollup.inbox.message' +doc: ! 'Encoding id: 023-PtSeouLo.smart_rollup.inbox.message' types: args: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__kind.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__kind.ksy index db62fa6634d1..194c0a9234b6 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__kind.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__kind.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__smart_rollup__kind endian: be -doc: ! 'Encoding id: 023-PtSEouLo.smart_rollup.kind' +doc: ! 'Encoding id: 023-PtSeouLo.smart_rollup.kind' enums: id_023__ptseoulo__smart_rollup__kind: 0: arith diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__metadata.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__metadata.ksy index 89630f4e0379..3874eb1d7758 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__metadata.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__metadata.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__smart_rollup__metadata endian: be -doc: ! 'Encoding id: 023-PtSEouLo.smart_rollup.metadata' +doc: ! 'Encoding id: 023-PtSeouLo.smart_rollup.metadata' seq: - id: address size: 20 diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__outbox__message.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__outbox__message.ksy index abd082b3b4d3..a390ef36a774 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__outbox__message.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__outbox__message.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__smart_rollup__outbox__message endian: be -doc: ! 'Encoding id: 023-PtSEouLo.smart_rollup.outbox.message' +doc: ! 'Encoding id: 023-PtSeouLo.smart_rollup.outbox.message' types: args: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__output.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__output.ksy index 787486df8fd0..2e9b3d7f917c 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__output.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__output.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__smart_rollup__output endian: be -doc: ! 'Encoding id: 023-PtSEouLo.smart_rollup.output' +doc: ! 'Encoding id: 023-PtSeouLo.smart_rollup.output' types: args: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__proof.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__proof.ksy index 8c76f9582b3e..1f65f6fe54c5 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__proof.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__proof.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__smart_rollup__proof endian: be -doc: ! 'Encoding id: 023-PtSEouLo.smart_rollup.proof' +doc: ! 'Encoding id: 023-PtSeouLo.smart_rollup.proof' types: bytes_dyn_uint30: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__reveal.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__reveal.ksy index 09cfec4d9b83..79c56946d517 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__reveal.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__reveal.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__smart_rollup__reveal endian: be -doc: ! 'Encoding id: 023-PtSEouLo.smart_rollup.reveal' +doc: ! 'Encoding id: 023-PtSeouLo.smart_rollup.reveal' types: id_023__ptseoulo__contract_id: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__wasm_2_0_0__output__proof.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__wasm_2_0_0__output__proof.ksy index 42e62852b048..6aa3f7719edc 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__wasm_2_0_0__output__proof.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__wasm_2_0_0__output__proof.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__smart_rollup__wasm_2_0_0__output__proof endian: be -doc: ! 'Encoding id: 023-PtSEouLo.smart_rollup.wasm_2_0_0.output.proof' +doc: ! 'Encoding id: 023-PtSeouLo.smart_rollup.wasm_2_0_0.output.proof' types: args: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__whitelist.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__whitelist.ksy index 54bdc12f58b6..a241869532dd 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__whitelist.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__smart_rollup__whitelist.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__smart_rollup__whitelist endian: be -doc: ! 'Encoding id: 023-PtSEouLo.smart_rollup.whitelist' +doc: ! 'Encoding id: 023-PtSeouLo.smart_rollup.whitelist' types: id_023__ptseoulo__smart_rollup__whitelist: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__tez.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__tez.ksy index 1a7d07b39009..d7afbb754e19 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__tez.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__tez.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__tez endian: be -doc: ! 'Encoding id: 023-PtSEouLo.tez' +doc: ! 'Encoding id: 023-PtSeouLo.tez' types: id_023__ptseoulo__mutez: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__timestamp.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__timestamp.ksy index 82fde1541a23..e8a684cf613c 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__timestamp.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__timestamp.ksy @@ -3,7 +3,7 @@ meta: endian: be imports: - timestamp__protocol -doc: ! 'Encoding id: 023-PtSEouLo.timestamp' +doc: ! 'Encoding id: 023-PtSeouLo.timestamp' seq: - id: id_023__ptseoulo__timestamp type: timestamp__protocol diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__unstaked_frozen_staker.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__unstaked_frozen_staker.ksy index 8c406e7a1e4b..109dcb24b442 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__unstaked_frozen_staker.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__unstaked_frozen_staker.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__unstaked_frozen_staker endian: be -doc: ! 'Encoding id: 023-PtSEouLo.unstaked_frozen_staker' +doc: ! 'Encoding id: 023-PtSeouLo.unstaked_frozen_staker' types: id_023__ptseoulo__contract_id: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__vote__ballot.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__vote__ballot.ksy index 91e0c5817f3a..e1752f042b15 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__vote__ballot.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__vote__ballot.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__vote__ballot endian: be -doc: ! 'Encoding id: 023-PtSEouLo.vote.ballot' +doc: ! 'Encoding id: 023-PtSeouLo.vote.ballot' seq: - id: id_023__ptseoulo__vote__ballot type: s1 diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__vote__ballots.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__vote__ballots.ksy index 62e7aaccfcfd..4996fa2a1ed5 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__vote__ballots.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__vote__ballots.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__vote__ballots endian: be -doc: ! 'Encoding id: 023-PtSEouLo.vote.ballots' +doc: ! 'Encoding id: 023-PtSeouLo.vote.ballots' seq: - id: yay type: s8be diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__vote__listings.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__vote__listings.ksy index 46454be2c834..919f00e8c357 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__vote__listings.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__vote__listings.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__vote__listings endian: be -doc: ! 'Encoding id: 023-PtSEouLo.vote.listings' +doc: ! 'Encoding id: 023-PtSeouLo.vote.listings' types: id_023__ptseoulo__vote__listings: seq: diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__voting_period.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__voting_period.ksy index 866ac422fb92..5e1b22d2ad29 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__voting_period.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__voting_period.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__voting_period endian: be -doc: ! 'Encoding id: 023-PtSEouLo.voting_period' +doc: ! 'Encoding id: 023-PtSeouLo.voting_period' enums: kind_tag: 0: proposal diff --git a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__voting_period__kind.ksy b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__voting_period__kind.ksy index cd266ad85152..7637fb6f9f37 100644 --- a/client-libs/kaitai-struct-files/files/id_023__ptseoulo__voting_period__kind.ksy +++ b/client-libs/kaitai-struct-files/files/id_023__ptseoulo__voting_period__kind.ksy @@ -1,7 +1,7 @@ meta: id: id_023__ptseoulo__voting_period__kind endian: be -doc: ! 'Encoding id: 023-PtSEouLo.voting_period.kind' +doc: ! 'Encoding id: 023-PtSeouLo.voting_period.kind' enums: id_023__ptseoulo__voting_period__kind_tag: 0: proposal -- GitLab From 792a9bc704fe4d5d164f7006d5dc23d8c4834b75 Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:36:21 +0200 Subject: [PATCH 24/31] S023/devtools: update testnet_experiment_tools --- devtools/testnet_experiment_tools/testnet_experiment_tools.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/testnet_experiment_tools/testnet_experiment_tools.ml b/devtools/testnet_experiment_tools/testnet_experiment_tools.ml index 0209a9313706..71022014ff3a 100644 --- a/devtools/testnet_experiment_tools/testnet_experiment_tools.ml +++ b/devtools/testnet_experiment_tools/testnet_experiment_tools.ml @@ -104,7 +104,7 @@ let network_activation_parameters_templates protocol_hash = Some (Filename.concat network_parameters_templates_dir - "proto_023_PtSEouLo_mainnet.json") + "proto_023_PtSeouLo_mainnet.json") | Tezt_tezos.Protocol.Alpha -> (* Fetching the network parameters from the src/proto_alpha directory, to be sure that we are in synch with current protocl parameters. *) -- GitLab From 675aa58e7e2bc8e02cc36344ef8bba33434009ab Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:36:24 +0200 Subject: [PATCH 25/31] S023/scripts: lint --- src/proto_023_PtLfTLJC/lib_protocol/.ocamlformat-ignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/proto_023_PtLfTLJC/lib_protocol/.ocamlformat-ignore diff --git a/src/proto_023_PtLfTLJC/lib_protocol/.ocamlformat-ignore b/src/proto_023_PtLfTLJC/lib_protocol/.ocamlformat-ignore new file mode 100644 index 000000000000..e69de29bb2d1 -- GitLab From 1158d6e40f0fff74a1f07ba3beebf0964a7274c7 Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:36:26 +0200 Subject: [PATCH 26/31] S023/ci: regenerate ci --- .gitlab/ci/pipelines/schedule_extended_test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab/ci/pipelines/schedule_extended_test.yml b/.gitlab/ci/pipelines/schedule_extended_test.yml index 57cd3d3c6885..0f8552208194 100644 --- a/.gitlab/ci/pipelines/schedule_extended_test.yml +++ b/.gitlab/ci/pipelines/schedule_extended_test.yml @@ -1391,9 +1391,9 @@ opam:all_1: matrix: - package: - octez-smart-rollup-node-alpha - - octez-smart-rollup-node-PtSEouLo + - octez-smart-rollup-node-PtSeouLo - octez-smart-rollup-node-PsRiotum - - octez-protocol-023-PtSEouLo-libs + - octez-protocol-023-PtSeouLo-libs - octez-protocol-022-PsRiotum-libs opam:all_3: @@ -1652,10 +1652,10 @@ opam:exec_1: - octez-dal-node - octez-codec - octez-client - - octez-baker-PtSEouLo + - octez-baker-PtSeouLo - octez-baker-PsRiotum - octez-baker - - octez-accuser-PtSEouLo + - octez-accuser-PtSeouLo - octez-accuser-PsRiotum - octez-accuser @@ -1713,7 +1713,7 @@ opam:all_5: parallel: matrix: - package: - - tezos-protocol-023-PtSEouLo + - tezos-protocol-023-PtSeouLo - tezos-protocol-022-PsRiotum - tezos-protocol-021-PsQuebec - tezos-protocol-020-PsParisC -- GitLab From 57ce54837b2983252313f7f9d9c395b1ccf8676e Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:36:27 +0200 Subject: [PATCH 27/31] S023/docs: fix versioned links --- docs/s023/blocks_ops.rst | 6 +++--- docs/s023/mempool.rst | 2 +- docs/s023/plugins.rst | 2 +- docs/s023/protocol_overview.rst | 6 +++--- docs/s023/sapling.rst | 4 ++-- docs/s023/timelock.rst | 2 +- docs/s023/token_management.rst | 2 +- docs/s023/validation.rst | 2 +- docs/s023/voting.rst | 4 ++-- 9 files changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/s023/blocks_ops.rst b/docs/s023/blocks_ops.rst index dc7f805d8b83..7f3a899dc8ad 100644 --- a/docs/s023/blocks_ops.rst +++ b/docs/s023/blocks_ops.rst @@ -39,7 +39,7 @@ those available to end-users on Tezos Mainnet. The complete list of operations, including those corresponding to features in development or available only on test networks, is given in the :package-api:`OCaml Documentation -`. +`. .. _validation_passes_s023: @@ -151,10 +151,10 @@ conflicting :ref:`consensus operations`: preattested, or respectively attested, two different block candidates, at the same level and at the same round. The bulk of the evidence, the two arguments provided, consists of the two offending preattestations, respectively attestations. - + Beside the two offending operations, there is a ``slot`` field containing the delegate's slot used in the offending operations. More precisely, each offending operation may be either a standalone operation for this slot, or an :ref:`aggregate operation` containing this slot in its committee. - + In protocols older than S, there were two operations, ``Double_preattestation_evidence`` and ``Double_attestation_evidence``, instead of ``Double_consensus_operation_evidence``, which did not exist. - The ``Double_baking_evidence`` allows for accusing a delegate of diff --git a/docs/s023/mempool.rst b/docs/s023/mempool.rst index a103ce8d1d91..02385e11a8c8 100644 --- a/docs/s023/mempool.rst +++ b/docs/s023/mempool.rst @@ -2,7 +2,7 @@ Mempool ======= The economic protocol provides a :package-api:`protocol-side mempool -module` +module` data structure intended for use by the shell prevalidator (see :doc:`../shell/prevalidation`) and by ``octez-baker`` to incrementally accumulate operations that can be safely used to bake a new block. diff --git a/docs/s023/plugins.rst b/docs/s023/plugins.rst index 9ec6bb679942..6e85c917d962 100644 --- a/docs/s023/plugins.rst +++ b/docs/s023/plugins.rst @@ -12,7 +12,7 @@ code base, so this is not subject to on-chain governance (see :doc:`voting procedure `), but it is still protocol-dependent, which means that it may vary with different protocols. For instance, the plugin code for protocol Alpha is located in file -:src:`src/proto_023_PtSEouLo/lib_plugin/plugin.ml`. Thus, a specific version +:src:`src/proto_023_PtSeouLo/lib_plugin/plugin.ml`. Thus, a specific version is included in the Octez node for each protocol version (recall that a new release of Octez is usually delivered for each new protocol proposal, see :doc:`../releases/releases`) diff --git a/docs/s023/protocol_overview.rst b/docs/s023/protocol_overview.rst index 1aaacbd6a75e..c201d934688d 100644 --- a/docs/s023/protocol_overview.rst +++ b/docs/s023/protocol_overview.rst @@ -128,14 +128,14 @@ The *list* of protocol constants can be found in the OCaml APIs: - fixed protocol constants are defined in the module :package-api:`Constants_repr - ` + ` - parametric constants are defined in the module :package-api:`Constants_parametric_repr - ` + ` - derived constants are defined in the module :package-api:`Constants_repr.Derived - ` + ` The *values* of protocol constants in any given protocol can be found using specific RPC calls: diff --git a/docs/s023/sapling.rst b/docs/s023/sapling.rst index f96afdd7cba0..29ea24657649 100644 --- a/docs/s023/sapling.rst +++ b/docs/s023/sapling.rst @@ -271,7 +271,7 @@ Shielded tez ^^^^^^^^^^^^ An example contract implementing a shielded pool of tokens with a 1 to 1 conversion rate to mutez is available in the tests of the protocol at -:src:`src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract.tz`. +:src:`src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract.tz`. Simple Voting Contract ^^^^^^^^^^^^^^^^^^^^^^ @@ -490,7 +490,7 @@ unshielding. # bake a block to include it. # { } represents an empty Sapling state. octez-client originate contract shielded-tez transferring 0 from bootstrap1 \ - running src/proto_023_PtSEouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract.tz \ + running src/proto_023_PtSeouLo/lib_protocol/test/integration/michelson/contracts/sapling_contract.tz \ --init '{ }' --burn-cap 3 & octez-client bake for bootstrap1 diff --git a/docs/s023/timelock.rst b/docs/s023/timelock.rst index 446e384a4fab..4a919bb8c331 100644 --- a/docs/s023/timelock.rst +++ b/docs/s023/timelock.rst @@ -58,4 +58,4 @@ For more information on the client commands, see :doc:`cli-commands` gives an example of using time-lock. Beware this contract is for educational purpose only and is not secure. +The built-in :src:`coin flip contract ` gives an example of using time-lock. Beware this contract is for educational purpose only and is not secure. diff --git a/docs/s023/token_management.rst b/docs/s023/token_management.rst index dcd6633e43a0..6b69e3a7c7e1 100644 --- a/docs/s023/token_management.rst +++ b/docs/s023/token_management.rst @@ -6,7 +6,7 @@ This page describes the reporting of tokens transfers in block metadata, as a se Overview ~~~~~~~~ -Minting, transferring or burning tokens is handled by the :package-api:`Token ` module. +Minting, transferring or burning tokens is handled by the :package-api:`Token ` module. The module provides functions (``Token.transfer`` and ``Token.transfer_n``) to transfer tokens from one, respectively from more accounts, to another account. Balance updates found in block metadata are generated by these functions as a trace of the token movements having taken place. diff --git a/docs/s023/validation.rst b/docs/s023/validation.rst index c33b9a41641d..d8e925ebb5c5 100644 --- a/docs/s023/validation.rst +++ b/docs/s023/validation.rst @@ -71,7 +71,7 @@ specified by the :package-api:`Protocol module in the :doc:`protocol environment<../shell/protocol_environment>` ``V15``, and it is implemented by this protocol in the -:package-api:`Main` +:package-api:`Main` module. The rest of this document is organized as follows: we first describe diff --git a/docs/s023/voting.rst b/docs/s023/voting.rst index 8c79452d19c6..f4f738f6e5f7 100644 --- a/docs/s023/voting.rst +++ b/docs/s023/voting.rst @@ -166,7 +166,7 @@ Note that Pass ballots do not count towards or against the super-majority; they still counts towards participation and quorum. More details can be found in the file -:src:`src/proto_023_PtSEouLo/lib_protocol/amendment.ml`. +:src:`src/proto_023_PtSeouLo/lib_protocol/amendment.ml`. The Hash and the Protocol @@ -264,7 +264,7 @@ above, the quorum is adaptive and that low participation would lower the quorum of the next vote. More details on the operations can be found in -:src:`src/proto_023_PtSEouLo/lib_protocol/operation_repr.ml`. +:src:`src/proto_023_PtSeouLo/lib_protocol/operation_repr.ml`. The binary format is described by ``octez-client describe unsigned operation``. -- GitLab From ff380a6430c789f27482bc8a761e3050649e669a Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:36:28 +0200 Subject: [PATCH 28/31] S023/docs: fix docs/protocols/023_s023.rst --- docs/protocols/023_s023.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/protocols/023_s023.rst b/docs/protocols/023_s023.rst index cef288a34182..378d1d98d4f7 100644 --- a/docs/protocols/023_s023.rst +++ b/docs/protocols/023_s023.rst @@ -8,7 +8,7 @@ For the list of changes brought by Rio with respect to Quebec, see :doc:`../prot For a higher-level overview of the most salient new features see the `announcement blog `__. -The code can be found in directory :src:`src/proto_023_PtSEouLo` of the ``master`` +The code can be found in directory :src:`src/proto_023_PtSeouLo` of the ``master`` branch of Octez and the full documentation in :doc:`this page <../s023/index>`. Environment Version -- GitLab From 6e91beab4f02848e37bae87e6a8339eb390344c2 Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:36:28 +0200 Subject: [PATCH 29/31] S023/docs: update docs Makefile --- docs/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Makefile b/docs/Makefile index f954b0f62d79..6519364b7fa5 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -22,11 +22,11 @@ PROTOCOLS = $(NAMED_PROTOS) alpha # The following variables names are lowercase, so their names can be computed # from the names of the corresponding protocol directories rio_long = PsRiotumaAMotcRoDWW1bysEhQy2n1M5fy8JgRp8jjRfHGmfeA7 -s023_long = PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY +s023_long = PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh alpha_long = ProtoALphaALphaALphaALphaALphaALphaALphaALphaDdp3zK rio_short = PsRiotum -s023_short = PtSEouLo +s023_short = PtSeouLo alpha_short = alpha SCRIPTSDIR = scripts -- GitLab From 26e097df45dbfa676b3ba22530e2ebc0346dcbfc Mon Sep 17 00:00:00 2001 From: mbourgoin Date: Wed, 25 Jun 2025 16:36:45 +0200 Subject: [PATCH 30/31] S023/docs: generate s023/rpc.rst --- docs/s023/rpc.rst | 13920 ++++++++++++++++++++++---------------------- 1 file changed, 6974 insertions(+), 6946 deletions(-) diff --git a/docs/s023/rpc.rst b/docs/s023/rpc.rst index a9ba9d53bbf9..dbcbf89d778c 100644 --- a/docs/s023/rpc.rst +++ b/docs/s023/rpc.rst @@ -551,54 +551,54 @@ Full description
     { /* block_info_encoding_v1 */
-      "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY",
+      "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh",
       "chain_id": $Chain_id,
       "hash": $block_hash,
       "header": $raw_block_header,
       "metadata"?: $block_header_metadata,
       "operations": [ [ $operation ... ] ... ] }
-    $023-PtSEouLo.adaptive_issuance_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.apply_internal_results.alpha.operation_result:
+    $023-PtSeouLo.adaptive_issuance_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.apply_internal_results.alpha.operation_result:
       { /* transaction */
         "kind": "transaction",
-        "source": $023-PtSEouLo.transaction_destination,
+        "source": $023-PtSeouLo.transaction_destination,
         "nonce": integer ∈ [0, 2^16-1],
-        "amount": $023-PtSEouLo.mutez,
-        "destination": $023-PtSEouLo.transaction_destination,
-        "parameters"?: { "entrypoint": $023-PtSEouLo.entrypoint,
+        "amount": $023-PtSeouLo.mutez,
+        "destination": $023-PtSeouLo.transaction_destination,
+        "parameters"?: { "entrypoint": $023-PtSeouLo.entrypoint,
                          "value": any },
         "result":
-          $023-PtSEouLo.operation.alpha.internal_operation_result.transaction }
+          $023-PtSeouLo.operation.alpha.internal_operation_result.transaction }
       || { /* origination */
            "kind": "origination",
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts,
+           "script": $023-PtSeouLo.scripted.contracts,
            "result":
-             $023-PtSEouLo.operation.alpha.internal_operation_result.origination }
+             $023-PtSeouLo.operation.alpha.internal_operation_result.origination }
       || { /* delegation */
            "kind": "delegation",
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
            "delegate"?: $Signature.Public_key_hash,
            "result":
-             $023-PtSEouLo.operation.alpha.internal_operation_result.delegation }
+             $023-PtSeouLo.operation.alpha.internal_operation_result.delegation }
       || { /* event */
            "kind": "event",
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
-           "type": $micheline.023-PtSEouLo.michelson_v1.expression,
-           "tag"?: $023-PtSEouLo.entrypoint,
-           "payload"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+           "type": $micheline.023-PtSeouLo.michelson_v1.expression,
+           "tag"?: $023-PtSeouLo.entrypoint,
+           "payload"?: $micheline.023-PtSeouLo.michelson_v1.expression,
            "result":
-             $023-PtSEouLo.operation.alpha.internal_operation_result.event }
-    $023-PtSEouLo.big_map_id:
+             $023-PtSeouLo.operation.alpha.internal_operation_result.event }
+    $023-PtSeouLo.big_map_id:
       /* Big map identifier
          A big map identifier */
       $bignum
-    $023-PtSEouLo.block_header.alpha.full_header:
+    $023-PtSeouLo.block_header.alpha.full_header:
       /* Shell header
          Block header's shell-related content. It contains information such as
          the block level, its predecessor and timestamp. */
@@ -614,23 +614,23 @@ Full description
         "payload_round": integer ∈ [-2^31-1, 2^31],
         "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
         "seed_nonce_hash"?: $cycle_nonce,
-        "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-        "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+        "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+        "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
         "signature": $Signature.V2 }
-    $023-PtSEouLo.bond_id:
+    $023-PtSeouLo.bond_id:
       { /* Smart_rollup_bond_id */
         "smart_rollup": $smart_rollup_address }
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.entrypoint:
+    $023-PtSeouLo.entrypoint:
       /* entrypoint
          Named entrypoint to a Michelson smart contract */
       "default"
@@ -645,19 +645,19 @@ Full description
       || "set_delegate_parameters"
       || $unistring
       /* named */
-    $023-PtSEouLo.error:
+    $023-PtSeouLo.error:
       /* The full list of RPC errors would be too long to include.
          It is available at RPC `/errors` (GET).
          Errors specific to protocol Alpha have an id that starts with
          `proto.alpha`. */
       any
-    $023-PtSEouLo.frozen_staker:
+    $023-PtSeouLo.frozen_staker:
       /* frozen_staker
          Abstract notion of staker used in operation receipts for frozen
          deposits, either a single staker or all the stakers delegating to some
          delegate. */
       { /* Single */
-        "contract": $023-PtSEouLo.contract_id,
+        "contract": $023-PtSeouLo.contract_id,
         "delegate": $Signature.Public_key_hash }
       || { /* Shared */
            "delegate": $Signature.Public_key_hash }
@@ -665,12 +665,12 @@ Full description
            "baker_own_stake": $Signature.Public_key_hash }
       || { /* Baker_edge */
            "baker_edge": $Signature.Public_key_hash }
-    $023-PtSEouLo.inlined.consensus_operation:
+    $023-PtSeouLo.inlined.consensus_operation:
       /* An operation's shell header. */
       { "branch": $block_hash,
-        "operations": $023-PtSEouLo.inlined.consensus_operation.contents,
+        "operations": $023-PtSeouLo.inlined.consensus_operation.contents,
         "signature"?: $Signature.V2 }
-    $023-PtSEouLo.inlined.consensus_operation.contents:
+    $023-PtSeouLo.inlined.consensus_operation.contents:
       { /* Preattestation */
         "kind": "preattestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -706,39 +706,39 @@ Full description
            "committee":
              [ { "slot": integer ∈ [0, 2^16-1],
                  "dal_attestation"?: $bignum } ... ] }
-    $023-PtSEouLo.lazy_storage_diff:
+    $023-PtSeouLo.lazy_storage_diff:
       [ { /* big_map */
           "kind": "big_map",
-          "id": $023-PtSEouLo.big_map_id,
+          "id": $023-PtSeouLo.big_map_id,
           "diff":
             { /* update */
               "action": "update",
               "updates":
                 [ { "key_hash": $script_expr,
-                    "key": $micheline.023-PtSEouLo.michelson_v1.expression,
-                    "value"?: $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
+                    "key": $micheline.023-PtSeouLo.michelson_v1.expression,
+                    "value"?: $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
             || { /* remove */
                  "action": "remove" }
             || { /* copy */
                  "action": "copy",
-                 "source": $023-PtSEouLo.big_map_id,
+                 "source": $023-PtSeouLo.big_map_id,
                  "updates":
                    [ { "key_hash": $script_expr,
-                       "key": $micheline.023-PtSEouLo.michelson_v1.expression,
+                       "key": $micheline.023-PtSeouLo.michelson_v1.expression,
                        "value"?:
-                         $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
+                         $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
             || { /* alloc */
                  "action": "alloc",
                  "updates":
                    [ { "key_hash": $script_expr,
-                       "key": $micheline.023-PtSEouLo.michelson_v1.expression,
+                       "key": $micheline.023-PtSeouLo.michelson_v1.expression,
                        "value"?:
-                         $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
-                 "key_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-                 "value_type": $micheline.023-PtSEouLo.michelson_v1.expression } }
+                         $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
+                 "key_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+                 "value_type": $micheline.023-PtSeouLo.michelson_v1.expression } }
         || { /* sapling_state */
              "kind": "sapling_state",
-             "id": $023-PtSEouLo.sapling_state_id,
+             "id": $023-PtSeouLo.sapling_state_id,
              "diff":
                { /* update */
                  "action": "update",
@@ -751,7 +751,7 @@ Full description
                     "action": "remove" }
                || { /* copy */
                     "action": "copy",
-                    "source": $023-PtSEouLo.sapling_state_id,
+                    "source": $023-PtSeouLo.sapling_state_id,
                     "updates":
                       { "commitments_and_ciphertexts":
                           [ [ $sapling.transaction.commitment,
@@ -765,8 +765,8 @@ Full description
                               $sapling.transaction.ciphertext ] ... ],
                         "nullifiers": [ $sapling.transaction.nullifier ... ] },
                     "memo_size": integer ∈ [0, 2^16-1] } } ... ]
-    $023-PtSEouLo.liquidity_baking_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.liquidity_baking_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -926,8 +926,8 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
-    $023-PtSEouLo.operation.alpha.contents:
+    $023-PtSeouLo.mutez: $positive_bignum
+    $023-PtSeouLo.operation.alpha.contents:
       { /* Attestation */
         "kind": "attestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -966,8 +966,8 @@ Full description
       || { /* Double_consensus_operation_evidence */
            "kind": "double_consensus_operation_evidence",
            "slot": integer ∈ [0, 2^16-1],
-           "op1": $023-PtSEouLo.inlined.consensus_operation,
-           "op2": $023-PtSEouLo.inlined.consensus_operation }
+           "op1": $023-PtSeouLo.inlined.consensus_operation,
+           "op2": $023-PtSeouLo.inlined.consensus_operation }
       || { /* Seed_nonce_revelation */
            "kind": "seed_nonce_revelation",
            "level": integer ∈ [0, 2^31],
@@ -978,11 +978,11 @@ Full description
              [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/, /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ] }
       || { /* Double_baking_evidence */
            "kind": "double_baking_evidence",
-           "bh1": $023-PtSEouLo.block_header.alpha.full_header,
-           "bh2": $023-PtSEouLo.block_header.alpha.full_header }
+           "bh1": $023-PtSeouLo.block_header.alpha.full_header,
+           "bh2": $023-PtSeouLo.block_header.alpha.full_header }
       || { /* Dal_entrapment_evidence */
            "kind": "dal_entrapment_evidence",
-           "attestation": $023-PtSEouLo.inlined.consensus_operation,
+           "attestation": $023-PtSeouLo.inlined.consensus_operation,
            "consensus_slot": integer ∈ [0, 2^16-1],
            "slot_index": integer ∈ [0, 255],
            "shard_with_proof":
@@ -1008,7 +1008,7 @@ Full description
       || { /* Reveal */
            "kind": "reveal",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1017,29 +1017,29 @@ Full description
       || { /* Transaction */
            "kind": "transaction",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "amount": $023-PtSEouLo.mutez,
-           "destination": $023-PtSEouLo.contract_id,
+           "amount": $023-PtSeouLo.mutez,
+           "destination": $023-PtSeouLo.contract_id,
            "parameters"?:
-             { "entrypoint": $023-PtSEouLo.entrypoint,
+             { "entrypoint": $023-PtSeouLo.entrypoint,
                "value": any } }
       || { /* Origination */
            "kind": "origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts }
+           "script": $023-PtSeouLo.scripted.contracts }
       || { /* Delegation */
            "kind": "delegation",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1047,24 +1047,24 @@ Full description
       || { /* Set_deposits_limit */
            "kind": "set_deposits_limit",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "limit"?: $023-PtSEouLo.mutez }
+           "limit"?: $023-PtSeouLo.mutez }
       || { /* Increase_paid_storage */
            "kind": "increase_paid_storage",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "amount": $bignum,
-           "destination": $023-PtSEouLo.contract_id.originated }
+           "destination": $023-PtSeouLo.contract_id.originated }
       || { /* Update_consensus_key */
            "kind": "update_consensus_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1073,7 +1073,7 @@ Full description
       || { /* Update_companion_key */
            "kind": "update_companion_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1090,7 +1090,7 @@ Full description
       || { /* Register_global_constant */
            "kind": "register_global_constant",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1098,20 +1098,20 @@ Full description
       || { /* Transfer_ticket */
            "kind": "transfer_ticket",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "ticket_contents": any,
            "ticket_ty": any,
-           "ticket_ticketer": $023-PtSEouLo.contract_id,
+           "ticket_ticketer": $023-PtSeouLo.contract_id,
            "ticket_amount": $positive_bignum,
-           "destination": $023-PtSEouLo.contract_id,
+           "destination": $023-PtSeouLo.contract_id,
            "entrypoint": $unistring }
       || { /* Dal_publish_commitment */
            "kind": "dal_publish_commitment",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1122,7 +1122,7 @@ Full description
       || { /* Smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1133,7 +1133,7 @@ Full description
       || { /* Smart_rollup_add_messages */
            "kind": "smart_rollup_add_messages",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1141,7 +1141,7 @@ Full description
       || { /* Smart_rollup_cement */
            "kind": "smart_rollup_cement",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1149,7 +1149,7 @@ Full description
       || { /* Smart_rollup_publish */
            "kind": "smart_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1162,7 +1162,7 @@ Full description
       || { /* Smart_rollup_refute */
            "kind": "smart_rollup_refute",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1214,7 +1214,7 @@ Full description
       || { /* Smart_rollup_timeout */
            "kind": "smart_rollup_timeout",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1225,7 +1225,7 @@ Full description
       || { /* Smart_rollup_execute_outbox_message */
            "kind": "smart_rollup_execute_outbox_message",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1235,7 +1235,7 @@ Full description
       || { /* Smart_rollup_recover_bond */
            "kind": "smart_rollup_recover_bond",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1244,7 +1244,7 @@ Full description
       || { /* Zk_rollup_origination */
            "kind": "zk_rollup_origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1262,7 +1262,7 @@ Full description
       || { /* Zk_rollup_publish */
            "kind": "zk_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1275,15 +1275,15 @@ Full description
                    "rollup_id": $Zk_rollup_hash,
                    "payload": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                  { /* Some */
-                   "contents": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ty": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ticketer": $023-PtSEouLo.contract_id }
+                   "contents": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ty": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ticketer": $023-PtSeouLo.contract_id }
                  || null
                  /* None */ ] ... ] }
       || { /* Zk_rollup_update */
            "kind": "zk_rollup_update",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1300,140 +1300,140 @@ Full description
                        "fee": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } ] ... ],
                "fee_pi": { "new_state": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                "proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } }
-    $023-PtSEouLo.operation.alpha.contents_and_signature:
-      { "contents": [ $023-PtSEouLo.operation.alpha.contents ... ],
+    $023-PtSeouLo.operation.alpha.contents_and_signature:
+      { "contents": [ $023-PtSeouLo.operation.alpha.contents ... ],
         "signature"?: $Signature.V2 }
-    $023-PtSEouLo.operation.alpha.internal_operation_result.delegation:
+    $023-PtSeouLo.operation.alpha.internal_operation_result.delegation:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.internal_operation_result.event:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.internal_operation_result.event:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.internal_operation_result.origination:
+    $023-PtSeouLo.operation.alpha.internal_operation_result.origination:
       { /* Applied */
         "status": "applied",
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "originated_contracts"?:
-             [ $023-PtSEouLo.contract_id.originated ... ],
+             [ $023-PtSeouLo.contract_id.originated ... ],
            "consumed_milligas"?: $positive_bignum,
            "storage_size"?: $bignum,
            "paid_storage_size_diff"?: $bignum,
-           "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
-    $023-PtSEouLo.operation.alpha.internal_operation_result.transaction:
+           "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
+    $023-PtSeouLo.operation.alpha.internal_operation_result.transaction:
       /* Applied */
       { /* To_contract */
         "status": "applied",
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_receipt"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "status": "applied",
            "consumed_milligas"?: $positive_bignum,
            "ticket_receipt":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || /* Backtracked */
       { /* To_contract */
         "status": "backtracked",
-        "errors"?: [ $023-PtSEouLo.error ... ],
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "errors"?: [ $023-PtSeouLo.error ... ],
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_receipt"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "ticket_receipt":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
-    $023-PtSEouLo.operation.alpha.operation_contents_and_result:
+    $023-PtSeouLo.operation.alpha.operation_contents_and_result:
       { /* Attestation */
         "kind": "attestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -1442,7 +1442,7 @@ Full description
         "block_payload_hash": $value_hash,
         "metadata":
           { "balance_updates"?:
-              $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+              $023-PtSeouLo.operation_metadata.alpha.balance_updates,
             "delegate": $Signature.Public_key_hash,
             "consensus_power": integer ∈ [-2^30, 2^30],
             "consensus_key": $Signature.Public_key_hash } }
@@ -1455,7 +1455,7 @@ Full description
            "dal_attestation": $bignum,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "delegate": $Signature.Public_key_hash,
                "consensus_power": integer ∈ [-2^30, 2^30],
                "consensus_key": $Signature.Public_key_hash } }
@@ -1467,7 +1467,7 @@ Full description
            "block_payload_hash": $value_hash,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "delegate": $Signature.Public_key_hash,
                "consensus_power": integer ∈ [-2^30, 2^30],
                "consensus_key": $Signature.Public_key_hash } }
@@ -1482,11 +1482,12 @@ Full description
                  "dal_attestation"?: $bignum } ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "committee":
                  [ { "delegate": $Signature.Public_key_hash,
-                     "consensus_pkh": $Signature.Public_key_hash } ... ],
-               "consensus_power": integer ∈ [-2^30, 2^30] } }
+                     "consensus_pkh": $Signature.Public_key_hash,
+                     "consensus_power": integer ∈ [-2^30, 2^30] } ... ],
+               "total_consensus_power": integer ∈ [-2^30, 2^30] } }
       || { /* Preattestations_aggregate */
            "kind": "preattestations_aggregate",
            "consensus_content":
@@ -1496,16 +1497,17 @@ Full description
            "committee": [ integer ∈ [0, 2^16-1] ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "committee":
                  [ { "delegate": $Signature.Public_key_hash,
-                     "consensus_pkh": $Signature.Public_key_hash } ... ],
-               "consensus_power": integer ∈ [-2^30, 2^30] } }
+                     "consensus_pkh": $Signature.Public_key_hash,
+                     "consensus_power": integer ∈ [-2^30, 2^30] } ... ],
+               "total_consensus_power": integer ∈ [-2^30, 2^30] } }
       || { /* Double_consensus_operation_evidence */
            "kind": "double_consensus_operation_evidence",
            "slot": integer ∈ [0, 2^16-1],
-           "op1": $023-PtSEouLo.inlined.consensus_operation,
-           "op2": $023-PtSEouLo.inlined.consensus_operation,
+           "op1": $023-PtSeouLo.inlined.consensus_operation,
+           "op2": $023-PtSeouLo.inlined.consensus_operation,
            "metadata":
              { "punished_delegate": $Signature.Public_key_hash,
                "rewarded_delegate": $Signature.Public_key_hash,
@@ -1515,7 +1517,7 @@ Full description
                    "kind": "attestation" | "block" | "preattestation" } } }
       || { /* Dal_entrapment_evidence */
            "kind": "dal_entrapment_evidence",
-           "attestation": $023-PtSEouLo.inlined.consensus_operation,
+           "attestation": $023-PtSeouLo.inlined.consensus_operation,
            "consensus_slot": integer ∈ [0, 2^16-1],
            "slot_index": integer ∈ [0, 255],
            "shard_with_proof":
@@ -1525,25 +1527,25 @@ Full description
                "proof": $DAL_commitment },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates } }
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates } }
       || { /* Seed_nonce_revelation */
            "kind": "seed_nonce_revelation",
            "level": integer ∈ [0, 2^31],
            "nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates } }
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates } }
       || { /* Vdf_revelation */
            "kind": "vdf_revelation",
            "solution":
              [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/, /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates } }
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates } }
       || { /* Double_baking_evidence */
            "kind": "double_baking_evidence",
-           "bh1": $023-PtSEouLo.block_header.alpha.full_header,
-           "bh2": $023-PtSEouLo.block_header.alpha.full_header,
+           "bh1": $023-PtSeouLo.block_header.alpha.full_header,
+           "bh2": $023-PtSeouLo.block_header.alpha.full_header,
            "metadata":
              { "punished_delegate": $Signature.Public_key_hash,
                "rewarded_delegate": $Signature.Public_key_hash,
@@ -1557,7 +1559,7 @@ Full description
            "secret": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates } }
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates } }
       || { /* Proposals */
            "kind": "proposals",
            "source": $Signature.Public_key_hash,
@@ -1578,12 +1580,12 @@ Full description
            "destination": $Signature.Public_key_hash,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "allocated_destination_contract"?: boolean } }
       || { /* Reveal */
            "kind": "reveal",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1591,112 +1593,112 @@ Full description
            "proof"?: $Bls12_381_signature,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.reveal,
+                 $023-PtSeouLo.operation.alpha.operation_result.reveal,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Transaction */
            "kind": "transaction",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "amount": $023-PtSEouLo.mutez,
-           "destination": $023-PtSEouLo.contract_id,
+           "amount": $023-PtSeouLo.mutez,
+           "destination": $023-PtSeouLo.contract_id,
            "parameters"?:
-             { "entrypoint": $023-PtSEouLo.entrypoint,
+             { "entrypoint": $023-PtSeouLo.entrypoint,
                "value": any },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.transaction,
+                 $023-PtSeouLo.operation.alpha.operation_result.transaction,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Origination */
            "kind": "origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts,
+           "script": $023-PtSeouLo.scripted.contracts,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.origination,
+                 $023-PtSeouLo.operation.alpha.operation_result.origination,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Delegation */
            "kind": "delegation",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "delegate"?: $Signature.Public_key_hash,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.delegation,
+                 $023-PtSeouLo.operation.alpha.operation_result.delegation,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Register_global_constant */
            "kind": "register_global_constant",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "value": any,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.register_global_constant,
+                 $023-PtSeouLo.operation.alpha.operation_result.register_global_constant,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Set_deposits_limit */
            "kind": "set_deposits_limit",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "limit"?: $023-PtSEouLo.mutez,
+           "limit"?: $023-PtSeouLo.mutez,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.set_deposits_limit,
+                 $023-PtSeouLo.operation.alpha.operation_result.set_deposits_limit,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Increase_paid_storage */
            "kind": "increase_paid_storage",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "amount": $bignum,
-           "destination": $023-PtSEouLo.contract_id.originated,
+           "destination": $023-PtSeouLo.contract_id.originated,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.increase_paid_storage,
+                 $023-PtSeouLo.operation.alpha.operation_result.increase_paid_storage,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Update_consensus_key */
            "kind": "update_consensus_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1704,15 +1706,15 @@ Full description
            "proof"?: $Bls12_381_signature,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.update_consensus_key,
+                 $023-PtSeouLo.operation.alpha.operation_result.update_consensus_key,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Update_companion_key */
            "kind": "update_companion_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1720,35 +1722,35 @@ Full description
            "proof"?: $Bls12_381_signature,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.update_consensus_key,
+                 $023-PtSeouLo.operation.alpha.operation_result.update_consensus_key,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Transfer_ticket */
            "kind": "transfer_ticket",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "ticket_contents": any,
            "ticket_ty": any,
-           "ticket_ticketer": $023-PtSEouLo.contract_id,
+           "ticket_ticketer": $023-PtSeouLo.contract_id,
            "ticket_amount": $positive_bignum,
-           "destination": $023-PtSEouLo.contract_id,
+           "destination": $023-PtSeouLo.contract_id,
            "entrypoint": $unistring,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.transfer_ticket,
+                 $023-PtSeouLo.operation.alpha.operation_result.transfer_ticket,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Dal_publish_commitment */
            "kind": "dal_publish_commitment",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1758,15 +1760,15 @@ Full description
                "commitment_proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.dal_publish_commitment,
+                 $023-PtSeouLo.operation.alpha.operation_result.dal_publish_commitment,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1776,45 +1778,45 @@ Full description
            "whitelist"?: [ $Signature.Public_key_hash ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_originate,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_originate,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_add_messages */
            "kind": "smart_rollup_add_messages",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "message": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_add_messages,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_add_messages,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_cement */
            "kind": "smart_rollup_cement",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "rollup": $smart_rollup_address,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_cement,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_cement,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_publish */
            "kind": "smart_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1826,15 +1828,15 @@ Full description
                "number_of_ticks": $int64 },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_publish,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_publish,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_refute */
            "kind": "smart_rollup_refute",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1885,15 +1887,15 @@ Full description
                                 "input_proof_kind": "first_input" } } },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_refute,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_refute,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_timeout */
            "kind": "smart_rollup_timeout",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1903,15 +1905,15 @@ Full description
                "bob": $Signature.Public_key_hash },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_timeout,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_timeout,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_execute_outbox_message */
            "kind": "smart_rollup_execute_outbox_message",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1920,15 +1922,15 @@ Full description
            "output_proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_recover_bond */
            "kind": "smart_rollup_recover_bond",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1936,15 +1938,15 @@ Full description
            "staker": $Signature.Public_key_hash,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_recover_bond,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_recover_bond,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Zk_rollup_origination */
            "kind": "zk_rollup_origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1961,15 +1963,15 @@ Full description
            "nb_ops": integer ∈ [-2^30, 2^30],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_origination,
+                 $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_origination,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Zk_rollup_publish */
            "kind": "zk_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -1982,22 +1984,22 @@ Full description
                    "rollup_id": $Zk_rollup_hash,
                    "payload": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                  { /* Some */
-                   "contents": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ty": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ticketer": $023-PtSEouLo.contract_id }
+                   "contents": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ty": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ticketer": $023-PtSeouLo.contract_id }
                  || null
                  /* None */ ] ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_publish,
+                 $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_publish,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Zk_rollup_update */
            "kind": "zk_rollup_update",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -2016,12 +2018,12 @@ Full description
                "proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_update,
+                 $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_update,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
-    $023-PtSEouLo.operation.alpha.operation_result.dal_publish_commitment:
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
+    $023-PtSeouLo.operation.alpha.operation_result.dal_publish_commitment:
       { /* Applied */
         "status": "applied",
         "slot_header":
@@ -2033,12 +2035,12 @@ Full description
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "slot_header":
              { /* v0 */
                "version": "0",
@@ -2046,127 +2048,127 @@ Full description
                "index": integer ∈ [0, 255],
                "commitment": $DAL_commitment },
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.delegation:
+    $023-PtSeouLo.operation.alpha.operation_result.delegation:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.operation_result.increase_paid_storage:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.operation_result.increase_paid_storage:
       { /* Applied */
         "status": "applied",
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.origination:
+    $023-PtSeouLo.operation.alpha.operation_result.origination:
       { /* Applied */
         "status": "applied",
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "originated_contracts"?:
-             [ $023-PtSEouLo.contract_id.originated ... ],
+             [ $023-PtSeouLo.contract_id.originated ... ],
            "consumed_milligas"?: $positive_bignum,
            "storage_size"?: $bignum,
            "paid_storage_size_diff"?: $bignum,
-           "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
-    $023-PtSEouLo.operation.alpha.operation_result.register_global_constant:
+           "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
+    $023-PtSeouLo.operation.alpha.operation_result.register_global_constant:
       { /* Applied */
         "status": "applied",
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "global_address": $script_expr }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum,
            "storage_size"?: $bignum,
            "global_address": $script_expr }
-    $023-PtSEouLo.operation.alpha.operation_result.reveal:
+    $023-PtSeouLo.operation.alpha.operation_result.reveal:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.set_deposits_limit:
+    $023-PtSeouLo.operation.alpha.operation_result.set_deposits_limit:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_add_messages:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_add_messages:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_cement:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_cement:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
@@ -2174,28 +2176,28 @@ Full description
         "commitment_hash": $smart_rollup_commitment_hash }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "inbox_level": integer ∈ [0, 2^31],
            "commitment_hash": $smart_rollup_commitment_hash }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates":
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
         "whitelist_update"?:
           { /* Public */
@@ -2207,22 +2209,22 @@ Full description
         "paid_storage_size_diff"?: $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ],
            "whitelist_update"?:
              { /* Public */
@@ -2232,68 +2234,68 @@ Full description
                   "whitelist": [ $Signature.Public_key_hash ... ] },
            "consumed_milligas"?: $positive_bignum,
            "paid_storage_size_diff"?: $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_originate:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_originate:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "address": $smart_rollup_address,
         "genesis_commitment_hash": $smart_rollup_commitment_hash,
         "consumed_milligas"?: $positive_bignum,
         "size": $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "address": $smart_rollup_address,
            "genesis_commitment_hash": $smart_rollup_commitment_hash,
            "consumed_milligas"?: $positive_bignum,
            "size": $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_publish:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_publish:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
         "staked_hash": $smart_rollup_commitment_hash,
         "published_at_level": integer ∈ [0, 2^31],
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "staked_hash": $smart_rollup_commitment_hash,
            "published_at_level": integer ∈ [0, 2^31],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_recover_bond:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_recover_bond:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_refute:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_refute:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
@@ -2308,15 +2310,15 @@ Full description
                  || { /* Draw */
                       "kind": "draw" } },
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "game_status":
              "ongoing"
@@ -2329,8 +2331,8 @@ Full description
                     || { /* Draw */
                          "kind": "draw" } },
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_timeout:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_timeout:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
@@ -2345,15 +2347,15 @@ Full description
                  || { /* Draw */
                       "kind": "draw" } },
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "game_status":
              "ongoing"
@@ -2366,252 +2368,252 @@ Full description
                     || { /* Draw */
                          "kind": "draw" } },
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.operation_result.transaction:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.operation_result.transaction:
       /* Applied */
       { /* To_contract */
         "status": "applied",
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "status": "applied",
            "consumed_milligas"?: $positive_bignum,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || /* Backtracked */
       { /* To_contract */
         "status": "backtracked",
-        "errors"?: [ $023-PtSEouLo.error ... ],
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "errors"?: [ $023-PtSeouLo.error ... ],
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
-    $023-PtSEouLo.operation.alpha.operation_result.transfer_ticket:
+    $023-PtSeouLo.operation.alpha.operation_result.transfer_ticket:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates":
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
         "consumed_milligas"?: $positive_bignum,
         "paid_storage_size_diff"?: $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ],
            "consumed_milligas"?: $positive_bignum,
            "paid_storage_size_diff"?: $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.update_consensus_key:
+    $023-PtSeouLo.operation.alpha.operation_result.update_consensus_key:
       { /* Applied */
         "status": "applied",
         "kind": boolean,
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "kind": boolean,
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_origination:
+    $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_origination:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "originated_zk_rollup": $Zk_rollup_hash,
         "consumed_milligas"?: $positive_bignum,
         "size": $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "originated_zk_rollup": $Zk_rollup_hash,
            "consumed_milligas"?: $positive_bignum,
            "size": $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_publish:
+    $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_publish:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum,
         "size": $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum,
            "size": $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_update:
+    $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_update:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum,
         "paid_storage_size_diff"?: $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum,
            "paid_storage_size_diff"?: $bignum }
-    $023-PtSEouLo.operation.alpha.operation_with_metadata:
+    $023-PtSeouLo.operation.alpha.operation_with_metadata:
       { /* Operation_with_metadata */
         "contents":
-          [ $023-PtSEouLo.operation.alpha.operation_contents_and_result ... ],
+          [ $023-PtSeouLo.operation.alpha.operation_contents_and_result ... ],
         "signature"?: $Signature.V2 }
       || { /* Operation_without_metadata */
-           "contents": [ $023-PtSEouLo.operation.alpha.contents ... ],
+           "contents": [ $023-PtSeouLo.operation.alpha.contents ... ],
            "signature"?: $Signature.V2 }
-    $023-PtSEouLo.operation.alpha.successful_manager_operation_result:
+    $023-PtSeouLo.operation.alpha.successful_manager_operation_result:
       { /* reveal */
         "kind": "reveal",
         "consumed_milligas"?: $positive_bignum }
       || /* transaction */
       { /* To_contract */
         "kind": "transaction",
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "kind": "transaction",
            "consumed_milligas"?: $positive_bignum,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
       || { /* origination */
            "kind": "origination",
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "originated_contracts"?:
-             [ $023-PtSEouLo.contract_id.originated ... ],
+             [ $023-PtSeouLo.contract_id.originated ... ],
            "consumed_milligas"?: $positive_bignum,
            "storage_size"?: $bignum,
            "paid_storage_size_diff"?: $bignum,
-           "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+           "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* delegation */
            "kind": "delegation",
            "consumed_milligas"?: $positive_bignum,
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* update_consensus_key */
            "kind": "update_consensus_key",
            "kind": boolean,
@@ -2622,40 +2624,40 @@ Full description
       || { /* increase_paid_storage */
            "kind": "increase_paid_storage",
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum }
       || { /* smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "address": $smart_rollup_address,
            "genesis_commitment_hash": $smart_rollup_commitment_hash,
            "consumed_milligas"?: $positive_bignum,
            "size": $bignum }
-    $023-PtSEouLo.operation_metadata.alpha.balance_updates:
+    $023-PtSeouLo.operation_metadata.alpha.balance_updates:
       [ { /* Contract */
           "kind": "contract",
-          "contract": $023-PtSEouLo.contract_id,
+          "contract": $023-PtSeouLo.contract_id,
           "change": $int64,
           "origin": "block" }
         || { /* Contract */
              "kind": "contract",
-             "contract": $023-PtSEouLo.contract_id,
+             "contract": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "migration" }
         || { /* Contract */
              "kind": "contract",
-             "contract": $023-PtSEouLo.contract_id,
+             "contract": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "subsidy" }
         || { /* Contract */
              "kind": "contract",
-             "contract": $023-PtSEouLo.contract_id,
+             "contract": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "simulation" }
         || { /* Contract */
              "kind": "contract",
-             "contract": $023-PtSEouLo.contract_id,
+             "contract": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash }
@@ -2688,31 +2690,31 @@ Full description
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "block" }
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "migration" }
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "subsidy" }
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "simulation" }
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash }
@@ -3103,36 +3105,36 @@ Full description
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "block" }
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "migration" }
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "subsidy" }
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "simulation" }
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash }
@@ -3191,35 +3193,35 @@ Full description
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "block" }
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "migration" }
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "subsidy" }
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "simulation" }
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "delayed_operation",
@@ -3227,31 +3229,31 @@ Full description
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "block" }
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "migration" }
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "subsidy" }
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "simulation" }
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash }
@@ -3343,23 +3345,23 @@ Full description
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash } ... ]
-    $023-PtSEouLo.sapling_state_id:
+    $023-PtSeouLo.sapling_state_id:
       /* Sapling state identifier
          A sapling state identifier */
       $bignum
-    $023-PtSEouLo.scripted.contracts: { "code": any,
+    $023-PtSeouLo.scripted.contracts: { "code": any,
                                         "storage": any }
-    $023-PtSEouLo.staker:
+    $023-PtSeouLo.staker:
       /* unstaked_frozen_staker
          Abstract notion of staker used in operation receipts for unstaked
          frozen deposits, either a single staker or all the stakers delegating
          to some delegate. */
       { /* Single */
-        "contract": $023-PtSEouLo.contract_id,
+        "contract": $023-PtSeouLo.contract_id,
         "delegate": $Signature.Public_key_hash }
       || { /* Shared */
            "delegate": $Signature.Public_key_hash }
-    $023-PtSEouLo.transaction_destination:
+    $023-PtSeouLo.transaction_destination:
       /* A destination of a transaction
          A destination notation compatible with the contract notation as given
          to an RPC or inside scripts. Can be a base58 implicit contract hash, a
@@ -3414,8 +3416,8 @@ Full description
       /* A block identifier (Base58Check-encoded) */
       $unistring
     $block_header_metadata:
-      { "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY",
-        "next_protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY",
+      { "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh",
+        "next_protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh",
         "test_chain_status": $test_chain_status,
         "max_operations_ttl": integer ∈ [-2^30, 2^30],
         "max_operation_data_length": integer ∈ [-2^30, 2^30],
@@ -3480,12 +3482,12 @@ Full description
         "nonce_hash": $cycle_nonce /* Some */ || null /* None */,
         "deactivated": [ $Signature.Public_key_hash ... ],
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "liquidity_baking_toggle_ema": integer ∈ [-2^31-1, 2^31],
         "adaptive_issuance_vote_ema": integer ∈ [-2^31-1, 2^31],
         "adaptive_issuance_activation_cycle"?: integer ∈ [-2^31-1, 2^31],
         "implicit_operations_results":
-          [ $023-PtSEouLo.operation.alpha.successful_manager_operation_result ... ],
+          [ $023-PtSeouLo.operation.alpha.successful_manager_operation_result ... ],
         "proposer_consensus_key": $Signature.Public_key_hash,
         "baker_consensus_key": $Signature.Public_key_hash,
         "consumed_milligas": $positive_bignum,
@@ -3504,51 +3506,51 @@ Full description
       /* 64 bit integers
          Decimal representation of 64 bit integers */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $operation:
       { /* An operation's shell header. */
-        "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY",
+        "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh",
         "chain_id": $Chain_id,
         "hash": $Operation_hash,
         "branch": $block_hash,
-        "contents": [ $023-PtSEouLo.operation.alpha.contents ... ],
+        "contents": [ $023-PtSeouLo.operation.alpha.contents ... ],
         "signature"?: $Signature.V2,
         "metadata": "too large" }
       || { /* An operation's shell header. */
-           "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY",
+           "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
-           "contents": [ $023-PtSEouLo.operation.alpha.contents ... ],
+           "contents": [ $023-PtSeouLo.operation.alpha.contents ... ],
            "signature"?: $Signature.V2 }
       || { /* An operation's shell header. */
-           "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY",
+           "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
            "contents":
-             [ $023-PtSEouLo.operation.alpha.operation_contents_and_result ... ],
+             [ $023-PtSeouLo.operation.alpha.operation_contents_and_result ... ],
            "signature"?: $Signature.V2 }
       || { /* An operation's shell header. */
-           "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY",
+           "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh",
            "chain_id": $Chain_id,
            "hash": $Operation_hash,
            "branch": $block_hash,
-           "contents": [ $023-PtSEouLo.operation.alpha.contents ... ],
+           "contents": [ $023-PtSeouLo.operation.alpha.contents ... ],
            "signature"?: $Signature.V2 }
     $positive_bignum:
       /* Positive big number
@@ -3570,8 +3572,8 @@ Full description
         "payload_round": integer ∈ [-2^31-1, 2^31],
         "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
         "seed_nonce_hash"?: $cycle_nonce,
-        "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-        "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+        "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+        "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
         "signature": $Signature.V2 }
     $sapling.DH.epk: /^([a-zA-Z0-9][a-zA-Z0-9])*$/
     $sapling.transaction.ciphertext:
@@ -3660,7 +3662,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.per_block_votes (1 byte, 8-bit tag)
+    023-PtSeouLo.per_block_votes (1 byte, 8-bit tag)
     ************************************************
 
     case_0 (tag 0)
@@ -3787,7 +3789,7 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | seed_nonce_hash                       | 32 bytes | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    | per_block_votes                       | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                       | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
@@ -4039,7 +4041,7 @@ Full description
     +-------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -4068,7 +4070,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.staker (Determined from data, 8-bit tag)
+    023-PtSeouLo.staker (Determined from data, 8-bit tag)
     *****************************************************
 
     Single (tag 0)
@@ -4079,7 +4081,7 @@ Full description
     +==========+==========+===========================+
     | Tag      | 1 byte   | unsigned 8-bit integer    |
     +----------+----------+---------------------------+
-    | contract | 22 bytes | $023-PtSEouLo.contract_id |
+    | contract | 22 bytes | $023-PtSeouLo.contract_id |
     +----------+----------+---------------------------+
     | delegate | 21 bytes | $public_key_hash          |
     +----------+----------+---------------------------+
@@ -4097,7 +4099,7 @@ Full description
     +----------+----------+------------------------+
 
 
-    023-PtSEouLo.bond_id (21 bytes, 8-bit tag)
+    023-PtSeouLo.bond_id (21 bytes, 8-bit tag)
     ******************************************
 
     Smart_rollup_bond_id (tag 1)
@@ -4112,7 +4114,7 @@ Full description
     +--------------+----------+------------------------+
 
 
-    023-PtSEouLo.frozen_staker (Determined from data, 8-bit tag)
+    023-PtSeouLo.frozen_staker (Determined from data, 8-bit tag)
     ************************************************************
 
     Single (tag 0)
@@ -4123,7 +4125,7 @@ Full description
     +==========+==========+===========================+
     | Tag      | 1 byte   | unsigned 8-bit integer    |
     +----------+----------+---------------------------+
-    | contract | 22 bytes | $023-PtSEouLo.contract_id |
+    | contract | 22 bytes | $023-PtSeouLo.contract_id |
     +----------+----------+---------------------------+
     | delegate | 21 bytes | $public_key_hash          |
     +----------+----------+---------------------------+
@@ -4176,7 +4178,7 @@ Full description
     +==========+==========+==================================+
     | Tag      | 1 byte   | unsigned 8-bit integer           |
     +----------+----------+----------------------------------+
-    | contract | 22 bytes | $023-PtSEouLo.contract_id        |
+    | contract | 22 bytes | $023-PtSeouLo.contract_id        |
     +----------+----------+----------------------------------+
     | change   | 8 bytes  | signed 64-bit big-endian integer |
     +----------+----------+----------------------------------+
@@ -4202,7 +4204,7 @@ Full description
     +========+======================+==================================+
     | Tag    | 1 byte               | unsigned 8-bit integer           |
     +--------+----------------------+----------------------------------+
-    | staker | Determined from data | $023-PtSEouLo.frozen_staker      |
+    | staker | Determined from data | $023-PtSeouLo.frozen_staker      |
     +--------+----------------------+----------------------------------+
     | change | 8 bytes              | signed 64-bit big-endian integer |
     +--------+----------------------+----------------------------------+
@@ -4392,9 +4394,9 @@ Full description
     +==========+==========+==================================+
     | Tag      | 1 byte   | unsigned 8-bit integer           |
     +----------+----------+----------------------------------+
-    | contract | 22 bytes | $023-PtSEouLo.contract_id        |
+    | contract | 22 bytes | $023-PtSeouLo.contract_id        |
     +----------+----------+----------------------------------+
-    | bond_id  | 21 bytes | $023-PtSEouLo.bond_id            |
+    | bond_id  | 21 bytes | $023-PtSeouLo.bond_id            |
     +----------+----------+----------------------------------+
     | change   | 8 bytes  | signed 64-bit big-endian integer |
     +----------+----------+----------------------------------+
@@ -4432,7 +4434,7 @@ Full description
     +========+======================+==================================+
     | Tag    | 1 byte               | unsigned 8-bit integer           |
     +--------+----------------------+----------------------------------+
-    | staker | Determined from data | $023-PtSEouLo.staker             |
+    | staker | Determined from data | $023-PtSeouLo.staker             |
     +--------+----------------------+----------------------------------+
     | cycle  | 4 bytes              | signed 32-bit big-endian integer |
     +--------+----------------------+----------------------------------+
@@ -4448,7 +4450,7 @@ Full description
     +===========+==========+==================================+
     | Tag       | 1 byte   | unsigned 8-bit integer           |
     +-----------+----------+----------------------------------+
-    | delegator | 22 bytes | $023-PtSEouLo.contract_id        |
+    | delegator | 22 bytes | $023-PtSeouLo.contract_id        |
     +-----------+----------+----------------------------------+
     | change    | 8 bytes  | signed 64-bit big-endian integer |
     +-----------+----------+----------------------------------+
@@ -4585,7 +4587,7 @@ Full description
     +------+----------------------+----------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -4705,7 +4707,7 @@ Full description
     +-----------+----------------------+------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -5031,7 +5033,7 @@ Full description
     +-------------+--------------------------------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -5070,7 +5072,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -5082,7 +5084,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -5094,7 +5096,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -5110,9 +5112,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -5124,9 +5126,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -5142,11 +5144,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -5158,11 +5160,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -5178,11 +5180,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -5212,11 +5214,11 @@ Full description
     +=============================+======================+=================================================+
     | key_hash                    | 32 bytes             | bytes                                           |
     +-----------------------------+----------------------+-------------------------------------------------+
-    | key                         | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key                         | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "value" | 1 byte               | boolean (0 for false, 255 for true)             |
     +-----------------------------+----------------------+-------------------------------------------------+
-    | value                       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | value                       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------------+----------------------+-------------------------------------------------+
 
 
@@ -5275,9 +5277,9 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------+
     | updates               | Variable             | sequence of $X_30                               |
     +-----------------------+----------------------+-------------------------------------------------+
-    | key_type              | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key_type              | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------------------+-------------------------------------------------+
-    | value_type            | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | value_type            | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------------------+-------------------------------------------------+
 
 
@@ -5312,7 +5314,7 @@ Full description
     +------+----------------------+------------------------+
 
 
-    023-PtSEouLo.lazy_storage_diff
+    023-PtSeouLo.lazy_storage_diff
     ******************************
 
     +-----------------------+----------+------------------------------------+
@@ -5330,15 +5332,15 @@ Full description
     +--------------+----------------------+-------------------------------------------------+
     | Name         | Size                 | Contents                                        |
     +==============+======================+=================================================+
-    | ticketer     | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer     | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +--------------+----------------------+-------------------------------------------------+
-    | content_type | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | content_type | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +--------------+----------------------+-------------------------------------------------+
-    | content      | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | content      | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +--------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.transaction_destination (22 bytes, 8-bit tag)
+    023-PtSeouLo.transaction_destination (22 bytes, 8-bit tag)
     **********************************************************
 
     Implicit (tag 0)
@@ -5401,7 +5403,7 @@ Full description
     +---------+----------------------+---------------------------------------+
     | Name    | Size                 | Contents                              |
     +=========+======================+=======================================+
-    | account | 22 bytes             | $023-PtSEouLo.transaction_destination |
+    | account | 22 bytes             | $023-PtSeouLo.transaction_destination |
     +---------+----------------------+---------------------------------------+
     | amount  | Determined from data | $Z.t                                  |
     +---------+----------------------+---------------------------------------+
@@ -5434,9 +5436,9 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "storage"                                            | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | storage                                                                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression  |
+    | storage                                                                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                 |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -5446,7 +5448,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -5458,7 +5460,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -5478,7 +5480,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.successful_manager_operation_result (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.successful_manager_operation_result (Determined from data, 8-bit tag)
     **************************************************************************************************
 
     reveal (tag 0)
@@ -5513,13 +5515,13 @@ Full description
     +==========================================================================+======================+==================================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer                           |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                 |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -5529,7 +5531,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -5543,7 +5545,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                               |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -5583,7 +5585,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -5599,7 +5601,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -5647,7 +5649,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------------+
     | deactivated                                                              | Variable             | sequence of $public_key_hash                                                  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                            |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                            |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------------+
@@ -5661,7 +5663,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                            |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------------+
-    | implicit_operations_results                                              | Variable             | sequence of $023-PtSEouLo.operation.alpha.successful_manager_operation_result |
+    | implicit_operations_results                                              | Variable             | sequence of $023-PtSeouLo.operation.alpha.successful_manager_operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------------+
     | proposer_consensus_key                                                   | 21 bytes             | $public_key_hash                                                              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------------+
@@ -5826,11 +5828,11 @@ Full description
     +==========+======================+=================================================+
     | Tag      | 1 byte               | unsigned 8-bit integer                          |
     +----------+----------------------+-------------------------------------------------+
-    | contents | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | contents | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ty       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | ty       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ticketer | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +----------+----------------------+-------------------------------------------------+
 
 
@@ -6212,7 +6214,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.scripted.contracts
+    023-PtSeouLo.scripted.contracts
     *******************************
 
     +-----------------------+----------+------------------------------------+
@@ -6228,7 +6230,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.entrypoint (Determined from data, 8-bit tag)
+    023-PtSeouLo.entrypoint (Determined from data, 8-bit tag)
     *********************************************************
 
     default (tag 0)
@@ -6351,7 +6353,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
-    | entrypoint            | Determined from data | $023-PtSEouLo.entrypoint           |
+    | entrypoint            | Determined from data | $023-PtSeouLo.entrypoint           |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -6387,7 +6389,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
     ***********************************************************************************
 
     Preattestation (tag 20)
@@ -6478,7 +6480,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation
+    023-PtSeouLo.inlined.consensus_operation
     ****************************************
 
     +------------+----------------------+----------------------------------------------------+
@@ -6486,7 +6488,7 @@ Full description
     +============+======================+====================================================+
     | branch     | 32 bytes             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
-    | operations | Determined from data | $023-PtSEouLo.inlined.consensus_operation.contents |
+    | operations | Determined from data | $023-PtSeouLo.inlined.consensus_operation.contents |
     +------------+----------------------+----------------------------------------------------+
     | signature  | Variable             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
@@ -6528,7 +6530,7 @@ Full description
     +-----------------+-----------+----------+
 
 
-    023-PtSEouLo.operation.alpha.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.contents (Determined from data, 8-bit tag)
     ***********************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -6557,11 +6559,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
 
 
@@ -6741,7 +6743,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------------------+-------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
@@ -6829,7 +6831,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -6861,7 +6863,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
 
 
@@ -6957,7 +6959,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
 
 
@@ -7039,11 +7041,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -7375,7 +7377,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.zk_rollup_update (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.zk_rollup_update (Determined from data, 8-bit tag)
     ************************************************************************************************
 
     Applied (tag 0)
@@ -7386,7 +7388,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -7432,7 +7434,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_140                              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -7442,7 +7444,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.internal_operation_result.event (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.internal_operation_result.event (Determined from data, 8-bit tag)
     **********************************************************************************************
 
     Applied (tag 0)
@@ -7497,7 +7499,7 @@ Full description
     +------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.internal_operation_result.delegation (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.internal_operation_result.delegation (Determined from data, 8-bit tag)
     ***************************************************************************************************
 
     Applied (tag 0)
@@ -7510,7 +7512,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                               |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -7554,13 +7556,13 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.internal_operation_result.origination (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.internal_operation_result.origination (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -7571,13 +7573,13 @@ Full description
     +==========================================================================+======================+==================================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer                           |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                 |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -7587,7 +7589,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -7627,13 +7629,13 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | errors                                                                   | Determined from data | $X_140                                           |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                 |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -7643,7 +7645,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -7660,9 +7662,9 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "storage"                                            | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | storage                                                                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression  |
+    | storage                                                                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                 |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -7672,7 +7674,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -7684,7 +7686,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -7704,7 +7706,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.internal_operation_result.transaction (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.internal_operation_result.transaction (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -7759,7 +7761,7 @@ Full description
     +------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.apply_internal_results.alpha.operation_result (Determined from data, 8-bit tag)
+    023-PtSeouLo.apply_internal_results.alpha.operation_result (Determined from data, 8-bit tag)
     ********************************************************************************************
 
     transaction (tag 1)
@@ -7770,19 +7772,19 @@ Full description
     +==================================+======================+=====================================================================+
     | Tag                              | 1 byte               | unsigned 8-bit integer                                              |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
-    | source                           | 22 bytes             | $023-PtSEouLo.transaction_destination                               |
+    | source                           | 22 bytes             | $023-PtSeouLo.transaction_destination                               |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
     | nonce                            | 2 bytes              | unsigned 16-bit big-endian integer                                  |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
     | amount                           | Determined from data | $N.t                                                                |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.transaction_destination                               |
+    | destination                      | 22 bytes             | $023-PtSeouLo.transaction_destination                               |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true)                                 |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
     | parameters                       | Determined from data | $X_110                                                              |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
-    | result                           | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.transaction |
+    | result                           | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.transaction |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
 
 
@@ -7794,7 +7796,7 @@ Full description
     +================================+======================+=====================================================================+
     | Tag                            | 1 byte               | unsigned 8-bit integer                                              |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
-    | source                         | 22 bytes             | $023-PtSEouLo.transaction_destination                               |
+    | source                         | 22 bytes             | $023-PtSeouLo.transaction_destination                               |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
     | nonce                          | 2 bytes              | unsigned 16-bit big-endian integer                                  |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
@@ -7804,9 +7806,9 @@ Full description
     +--------------------------------+----------------------+---------------------------------------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                                                    |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts                                    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts                                    |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
-    | result                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.origination |
+    | result                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.origination |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
 
 
@@ -7818,7 +7820,7 @@ Full description
     +================================+======================+====================================================================+
     | Tag                            | 1 byte               | unsigned 8-bit integer                                             |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
-    | source                         | 22 bytes             | $023-PtSEouLo.transaction_destination                              |
+    | source                         | 22 bytes             | $023-PtSeouLo.transaction_destination                              |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
     | nonce                          | 2 bytes              | unsigned 16-bit big-endian integer                                 |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
@@ -7826,7 +7828,7 @@ Full description
     +--------------------------------+----------------------+--------------------------------------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                                                   |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
-    | result                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.delegation |
+    | result                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.delegation |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
 
 
@@ -7838,21 +7840,21 @@ Full description
     +===============================+======================+===============================================================+
     | Tag                           | 1 byte               | unsigned 8-bit integer                                        |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | source                        | 22 bytes             | $023-PtSEouLo.transaction_destination                         |
+    | source                        | 22 bytes             | $023-PtSeouLo.transaction_destination                         |
     +-------------------------------+----------------------+---------------------------------------------------------------+
     | nonce                         | 2 bytes              | unsigned 16-bit big-endian integer                            |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | type                          | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression               |
+    | type                          | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression               |
     +-------------------------------+----------------------+---------------------------------------------------------------+
     | ? presence of field "tag"     | 1 byte               | boolean (0 for false, 255 for true)                           |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | tag                           | Determined from data | $023-PtSEouLo.entrypoint                                      |
+    | tag                           | Determined from data | $023-PtSeouLo.entrypoint                                      |
     +-------------------------------+----------------------+---------------------------------------------------------------+
     | ? presence of field "payload" | 1 byte               | boolean (0 for false, 255 for true)                           |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | payload                       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression               |
+    | payload                       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression               |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | result                        | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.event |
+    | result                        | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.event |
     +-------------------------------+----------------------+---------------------------------------------------------------+
 
 
@@ -7862,19 +7864,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_update         |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_update         |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.zk_rollup_publish (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.zk_rollup_publish (Determined from data, 8-bit tag)
     *************************************************************************************************
 
     Applied (tag 0)
@@ -7885,7 +7887,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -7931,7 +7933,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_140                              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -7947,19 +7949,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_publish        |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_publish        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.zk_rollup_origination (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.zk_rollup_origination (Determined from data, 8-bit tag)
     *****************************************************************************************************
 
     Applied (tag 0)
@@ -7970,7 +7972,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -8018,7 +8020,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_140                              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -8036,15 +8038,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_origination    |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_origination    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -8067,7 +8069,7 @@ Full description
     +------------+----------+----------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.dal_publish_commitment (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.dal_publish_commitment (Determined from data, 8-bit tag)
     ******************************************************************************************************
 
     Applied (tag 0)
@@ -8132,19 +8134,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.dal_publish_commitment   |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.dal_publish_commitment   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_recover_bond (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_recover_bond (Determined from data, 8-bit tag)
     *********************************************************************************************************
 
     Applied (tag 0)
@@ -8155,7 +8157,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -8199,7 +8201,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_140                              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -8213,15 +8215,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                 |
     +==========================================================================+======================+==========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                       |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                       |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                         |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_recover_bond |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_recover_bond |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                       |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result  |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
 
 
@@ -8250,7 +8252,7 @@ Full description
     +-----------+----------------------+------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message (Determined from data, 8-bit tag)
     *******************************************************************************************************************
 
     Applied (tag 0)
@@ -8261,7 +8263,7 @@ Full description
     +==========================================================================+======================+=====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -8315,7 +8317,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_140                              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -8339,15 +8341,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                           |
     +==========================================================================+======================+====================================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                                 |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                                 |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                                   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                                 |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result            |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result            |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
 
 
@@ -8426,7 +8428,7 @@ Full description
     +--------+----------------------+------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_timeout (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_timeout (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -8441,7 +8443,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | game_status                                                              | Determined from data | $X_1004                            |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -8487,7 +8489,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | game_status                                                              | Determined from data | $X_1004                             |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -8499,19 +8501,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_timeout     |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_timeout     |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_publish (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_publish (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -8528,7 +8530,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | published_at_level                                                       | 4 bytes              | signed 32-bit big-endian integer   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -8576,7 +8578,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | published_at_level                                                       | 4 bytes              | signed 32-bit big-endian integer    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -8588,19 +8590,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_publish     |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_publish     |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_cement (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_cement (Determined from data, 8-bit tag)
     ***************************************************************************************************
 
     Applied (tag 0)
@@ -8669,15 +8671,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_cement      |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_cement      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -8687,19 +8689,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.event           |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.event           |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_originate (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_originate (Determined from data, 8-bit tag)
     ******************************************************************************************************
 
     Applied (tag 0)
@@ -8710,7 +8712,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -8760,7 +8762,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_140                              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -8780,19 +8782,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_originate   |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_originate   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.transfer_ticket (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.transfer_ticket (Determined from data, 8-bit tag)
     ***********************************************************************************************
 
     Applied (tag 0)
@@ -8803,7 +8805,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -8853,7 +8855,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_140                              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -8873,19 +8875,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.transfer_ticket          |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.transfer_ticket          |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.update_consensus_key (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.update_consensus_key (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -8950,19 +8952,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.update_consensus_key     |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.update_consensus_key     |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.register_global_constant (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.register_global_constant (Determined from data, 8-bit tag)
     ********************************************************************************************************
 
     Applied (tag 0)
@@ -8973,7 +8975,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -9021,7 +9023,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_140                              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -9039,15 +9041,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.register_global_constant |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.register_global_constant |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -9057,15 +9059,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.delegation      |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.delegation      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -9075,19 +9077,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.origination     |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.origination     |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.transaction (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.transaction (Determined from data, 8-bit tag)
     *******************************************************************************************
 
     Applied (tag 0)
@@ -9148,28 +9150,30 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.transaction              |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.transaction              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
     X_3347
     ******
 
-    +---------------+----------+------------------+
-    | Name          | Size     | Contents         |
-    +===============+==========+==================+
-    | delegate      | 21 bytes | $public_key_hash |
-    +---------------+----------+------------------+
-    | consensus_pkh | 21 bytes | $public_key_hash |
-    +---------------+----------+------------------+
+    +-----------------+----------+-------------------------------------------------------------------------+
+    | Name            | Size     | Contents                                                                |
+    +=================+==========+=========================================================================+
+    | delegate        | 21 bytes | $public_key_hash                                                        |
+    +-----------------+----------+-------------------------------------------------------------------------+
+    | consensus_pkh   | 21 bytes | $public_key_hash                                                        |
+    +-----------------+----------+-------------------------------------------------------------------------+
+    | consensus_power | 4 bytes  | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 |
+    +-----------------+----------+-------------------------------------------------------------------------+
 
 
     X_3343
@@ -9178,7 +9182,7 @@ Full description
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | Name                                                                     | Size     | Contents                                                                |
     +==========================================================================+==========+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
@@ -9186,11 +9190,11 @@ Full description
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | committee                                                                | Variable | sequence of $X_3347                                                     |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
-    | consensus_power                                                          | 4 bytes  | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 |
+    | total_consensus_power                                                    | 4 bytes  | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation_metadata.alpha.balance_updates
+    023-PtSeouLo.operation_metadata.alpha.balance_updates
     *****************************************************
 
     +-----------------------+----------+------------------------------------+
@@ -9208,7 +9212,7 @@ Full description
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | Name                                                                     | Size     | Contents                                                                |
     +==========================================================================+==========+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable | sequence of $X_8                                                        |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
@@ -9226,7 +9230,7 @@ Full description
     +--------------------------------------------------------------------------+----------+-------------------------------------+
     | Name                                                                     | Size     | Contents                            |
     +==========================================================================+==========+=====================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------+-------------------------------------+
     | balance_updates                                                          | Variable | sequence of $X_8                    |
     +--------------------------------------------------------------------------+----------+-------------------------------------+
@@ -9276,7 +9280,7 @@ Full description
     +-------------------+----------+------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_contents_and_result (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_contents_and_result (Determined from data, 8-bit tag)
     ********************************************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -9291,7 +9295,7 @@ Full description
     +----------+----------------------+--------------------------------------------------------+
     | nonce    | 32 bytes             | bytes                                                  |
     +----------+----------------------+--------------------------------------------------------+
-    | metadata | Determined from data | $023-PtSEouLo.operation_metadata.alpha.balance_updates |
+    | metadata | Determined from data | $023-PtSeouLo.operation_metadata.alpha.balance_updates |
     +----------+----------------------+--------------------------------------------------------+
 
 
@@ -9307,11 +9311,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | metadata              | 51 bytes | $X_3386                                   |
     +-----------------------+----------+-------------------------------------------+
@@ -9349,7 +9353,7 @@ Full description
     +----------+----------------------+--------------------------------------------------------+
     | secret   | 20 bytes             | bytes                                                  |
     +----------+----------------------+--------------------------------------------------------+
-    | metadata | Determined from data | $023-PtSEouLo.operation_metadata.alpha.balance_updates |
+    | metadata | Determined from data | $023-PtSeouLo.operation_metadata.alpha.balance_updates |
     +----------+----------------------+--------------------------------------------------------+
 
 
@@ -9399,7 +9403,7 @@ Full description
     +----------+----------------------+--------------------------------------------------------+
     | solution | 200 bytes            | $X_121                                                 |
     +----------+----------------------+--------------------------------------------------------+
-    | metadata | Determined from data | $023-PtSEouLo.operation_metadata.alpha.balance_updates |
+    | metadata | Determined from data | $023-PtSeouLo.operation_metadata.alpha.balance_updates |
     +----------+----------------------+--------------------------------------------------------+
 
 
@@ -9493,7 +9497,7 @@ Full description
     +-----------------------+----------------------+--------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                     |
     +-----------------------+----------------------+--------------------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation              |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation              |
     +-----------------------+----------------------+--------------------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer                     |
     +-----------------------+----------------------+--------------------------------------------------------+
@@ -9501,7 +9505,7 @@ Full description
     +-----------------------+----------------------+--------------------------------------------------------+
     | shard_with_proof      | Determined from data | $X_118                                                 |
     +-----------------------+----------------------+--------------------------------------------------------+
-    | metadata              | Determined from data | $023-PtSEouLo.operation_metadata.alpha.balance_updates |
+    | metadata              | Determined from data | $023-PtSeouLo.operation_metadata.alpha.balance_updates |
     +-----------------------+----------------------+--------------------------------------------------------+
 
 
@@ -9589,7 +9593,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -9623,7 +9627,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
     | metadata                       | Determined from data | $X_2821                             |
     +--------------------------------+----------------------+-------------------------------------+
@@ -9727,7 +9731,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
     | metadata      | Determined from data | $X_702                               |
     +---------------+----------------------+--------------------------------------+
@@ -9815,11 +9819,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -10178,7 +10182,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                      |
     +-----------------------+----------+-------------------------------------------------------------------------+
-    | contents              | Variable | sequence of $023-PtSEouLo.operation.alpha.operation_contents_and_result |
+    | contents              | Variable | sequence of $023-PtSeouLo.operation.alpha.operation_contents_and_result |
     +-----------------------+----------+-------------------------------------------------------------------------+
     | signature             | Variable | bytes                                                                   |
     +-----------------------+----------+-------------------------------------------------------------------------+
@@ -10194,7 +10198,7 @@ Full description
     +-----------------------+----------+----------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                 |
     +-----------------------+----------+----------------------------------------------------+
-    | contents              | Variable | sequence of $023-PtSEouLo.operation.alpha.contents |
+    | contents              | Variable | sequence of $023-PtSeouLo.operation.alpha.contents |
     +-----------------------+----------+----------------------------------------------------+
     | signature             | Variable | bytes                                              |
     +-----------------------+----------+----------------------------------------------------+
@@ -10215,7 +10219,7 @@ Full description
     +-----------------+----------+------------------------+
 
 
-    023-PtSEouLo.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag)
     *******************************************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -10244,11 +10248,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
 
 
@@ -10428,7 +10432,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------------------+-------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
@@ -10516,7 +10520,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -10548,7 +10552,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
 
 
@@ -10644,7 +10648,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
 
 
@@ -10726,11 +10730,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -11073,7 +11077,7 @@ Full description
     +===============================+==========+========================================================================+
     | Tag                           | 1 byte   | unsigned 8-bit integer                                                 |
     +-------------------------------+----------+------------------------------------------------------------------------+
-    | contents_and_signature_prefix | Variable | sequence of $023-PtSEouLo.operation.alpha.contents_or_signature_prefix |
+    | contents_and_signature_prefix | Variable | sequence of $023-PtSeouLo.operation.alpha.contents_or_signature_prefix |
     +-------------------------------+----------+------------------------------------------------------------------------+
     | signature_suffix              | 64 bytes | bytes                                                                  |
     +-------------------------------+----------+------------------------------------------------------------------------+
@@ -11087,7 +11091,7 @@ Full description
     +===============================+==========+========================================================================+
     | Tag                           | 1 byte   | unsigned 8-bit integer                                                 |
     +-------------------------------+----------+------------------------------------------------------------------------+
-    | contents_and_signature_prefix | Variable | sequence of $023-PtSEouLo.operation.alpha.contents_or_signature_prefix |
+    | contents_and_signature_prefix | Variable | sequence of $023-PtSeouLo.operation.alpha.contents_or_signature_prefix |
     +-------------------------------+----------+------------------------------------------------------------------------+
     | signature_suffix              | 64 bytes | bytes                                                                  |
     +-------------------------------+----------+------------------------------------------------------------------------+
@@ -11212,8 +11216,8 @@ Full description
             
-    [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
-    $023-PtSEouLo.michelson.v1.primitives:
+    [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -11377,20 +11381,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -11405,11 +11409,11 @@ Full description
     +=======================+==========+=============================================================+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -11747,7 +11751,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -11786,7 +11790,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -11798,7 +11802,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -11810,7 +11814,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -11826,9 +11830,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -11840,9 +11844,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -11858,11 +11862,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -11874,11 +11878,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -11894,11 +11898,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -11938,8 +11942,8 @@ Full description
             
-    $micheline.023-PtSEouLo.michelson_v1.expression
-    $023-PtSEouLo.michelson.v1.primitives:
+    $micheline.023-PtSeouLo.michelson_v1.expression
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -12103,20 +12107,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -12129,11 +12133,11 @@ Full description
     +-----------------+----------------------+-------------------------------------------------+
     | Name            | Size                 | Contents                                        |
     +=================+======================+=================================================+
-    | Unnamed field 0 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -12471,7 +12475,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -12510,7 +12514,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -12522,7 +12526,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -12534,7 +12538,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -12550,9 +12554,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -12564,9 +12568,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -12582,11 +12586,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -12598,11 +12602,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -12618,11 +12622,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -12711,8 +12715,8 @@ Full description
     
-    $micheline.023-PtSEouLo.michelson_v1.expression
-    $023-PtSEouLo.michelson.v1.primitives:
+    $micheline.023-PtSeouLo.michelson_v1.expression
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -12876,20 +12880,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -12902,11 +12906,11 @@ Full description
     +-----------------+----------------------+-------------------------------------------------+
     | Name            | Size                 | Contents                                        |
     +=================+======================+=================================================+
-    | Unnamed field 0 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -13244,7 +13248,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -13283,7 +13287,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -13295,7 +13299,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -13307,7 +13311,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -13323,9 +13327,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -13337,9 +13341,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -13355,11 +13359,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -13371,11 +13375,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -13391,11 +13395,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -13672,24 +13676,24 @@ Full description
       "hard_gas_limit_per_operation": $bignum,
       "hard_gas_limit_per_block": $bignum,
       "proof_of_work_threshold": $int64,
-      "minimal_stake": $023-PtSEouLo.mutez,
-      "minimal_frozen_stake": $023-PtSEouLo.mutez,
+      "minimal_stake": $023-PtSeouLo.mutez,
+      "minimal_frozen_stake": $023-PtSeouLo.mutez,
       "vdf_difficulty": $int64,
       "origination_size": integer ∈ [-2^30, 2^30],
       "issuance_weights":
-        { "base_total_issued_per_minute": $023-PtSEouLo.mutez,
+        { "base_total_issued_per_minute": $023-PtSeouLo.mutez,
           "baking_reward_fixed_portion_weight": integer ∈ [-2^30, 2^30],
           "baking_reward_bonus_weight": integer ∈ [-2^30, 2^30],
           "attesting_reward_weight": integer ∈ [-2^30, 2^30],
           "seed_nonce_revelation_tip_weight": integer ∈ [-2^30, 2^30],
           "vdf_revelation_tip_weight": integer ∈ [-2^30, 2^30],
           "dal_rewards_weight": integer ∈ [-2^30, 2^30] },
-      "cost_per_byte": $023-PtSEouLo.mutez,
+      "cost_per_byte": $023-PtSeouLo.mutez,
       "hard_storage_limit_per_operation": $bignum,
       "quorum_min": integer ∈ [-2^31-1, 2^31],
       "quorum_max": integer ∈ [-2^31-1, 2^31],
       "min_proposal_quorum": integer ∈ [-2^31-1, 2^31],
-      "liquidity_baking_subsidy": $023-PtSEouLo.mutez,
+      "liquidity_baking_subsidy": $023-PtSeouLo.mutez,
       "liquidity_baking_toggle_ema_threshold": integer ∈ [-2^31-1, 2^31],
       "max_operations_time_to_live": integer ∈ [-2^15, 2^15-1],
       "minimal_block_delay": $int64,
@@ -13731,7 +13735,7 @@ Full description
       "smart_rollup_arith_pvm_enable": boolean,
       "smart_rollup_origination_size": integer ∈ [-2^30, 2^30],
       "smart_rollup_challenge_window_in_blocks": integer ∈ [-2^30, 2^30],
-      "smart_rollup_stake_amount": $023-PtSEouLo.mutez,
+      "smart_rollup_stake_amount": $023-PtSeouLo.mutez,
       "smart_rollup_commitment_period_in_blocks": integer ∈ [-2^30, 2^30],
       "smart_rollup_max_lookahead_in_blocks": integer ∈ [-2^31-1, 2^31],
       "smart_rollup_max_active_outbox_levels": integer ∈ [-2^31-1, 2^31],
@@ -13785,7 +13789,7 @@ Full description
       "issuance_modification_delay": integer ∈ [0, 255],
       "consensus_key_activation_delay": integer ∈ [0, 255],
       "unstake_finalization_delay": integer ∈ [0, 255] }
-    $023-PtSEouLo.mutez: $positive_bignum
+    $023-PtSeouLo.mutez: $positive_bignum
     $Signature.Public_key_hash:
       /* A Ed25519, Secp256k1, P256, or BLS public key hash
          (Base58Check-encoded) */
@@ -14274,24 +14278,24 @@ Full description
       "hard_gas_limit_per_operation": $bignum,
       "hard_gas_limit_per_block": $bignum,
       "proof_of_work_threshold": $int64,
-      "minimal_stake": $023-PtSEouLo.mutez,
-      "minimal_frozen_stake": $023-PtSEouLo.mutez,
+      "minimal_stake": $023-PtSeouLo.mutez,
+      "minimal_frozen_stake": $023-PtSeouLo.mutez,
       "vdf_difficulty": $int64,
       "origination_size": integer ∈ [-2^30, 2^30],
       "issuance_weights":
-        { "base_total_issued_per_minute": $023-PtSEouLo.mutez,
+        { "base_total_issued_per_minute": $023-PtSeouLo.mutez,
           "baking_reward_fixed_portion_weight": integer ∈ [-2^30, 2^30],
           "baking_reward_bonus_weight": integer ∈ [-2^30, 2^30],
           "attesting_reward_weight": integer ∈ [-2^30, 2^30],
           "seed_nonce_revelation_tip_weight": integer ∈ [-2^30, 2^30],
           "vdf_revelation_tip_weight": integer ∈ [-2^30, 2^30],
           "dal_rewards_weight": integer ∈ [-2^30, 2^30] },
-      "cost_per_byte": $023-PtSEouLo.mutez,
+      "cost_per_byte": $023-PtSeouLo.mutez,
       "hard_storage_limit_per_operation": $bignum,
       "quorum_min": integer ∈ [-2^31-1, 2^31],
       "quorum_max": integer ∈ [-2^31-1, 2^31],
       "min_proposal_quorum": integer ∈ [-2^31-1, 2^31],
-      "liquidity_baking_subsidy": $023-PtSEouLo.mutez,
+      "liquidity_baking_subsidy": $023-PtSeouLo.mutez,
       "liquidity_baking_toggle_ema_threshold": integer ∈ [-2^31-1, 2^31],
       "max_operations_time_to_live": integer ∈ [-2^15, 2^15-1],
       "minimal_block_delay": $int64,
@@ -14333,7 +14337,7 @@ Full description
       "smart_rollup_arith_pvm_enable": boolean,
       "smart_rollup_origination_size": integer ∈ [-2^30, 2^30],
       "smart_rollup_challenge_window_in_blocks": integer ∈ [-2^30, 2^30],
-      "smart_rollup_stake_amount": $023-PtSEouLo.mutez,
+      "smart_rollup_stake_amount": $023-PtSeouLo.mutez,
       "smart_rollup_commitment_period_in_blocks": integer ∈ [-2^30, 2^30],
       "smart_rollup_max_lookahead_in_blocks": integer ∈ [-2^31-1, 2^31],
       "smart_rollup_max_active_outbox_levels": integer ∈ [-2^31-1, 2^31],
@@ -14384,7 +14388,7 @@ Full description
       "allow_tz4_delegate_enable": boolean,
       "all_bakers_attest_activation_level":
         integer ∈ [0, 2^31] /* Some */ || null /* None */ }
-    $023-PtSEouLo.mutez: $positive_bignum
+    $023-PtSeouLo.mutez: $positive_bignum
     $Signature.Public_key_hash:
       /* A Ed25519, Secp256k1, P256, or BLS public key hash
          (Base58Check-encoded) */
@@ -14794,8 +14798,8 @@ Full description
             
-    [ $023-PtSEouLo.contract_id ... ]
-    $023-PtSEouLo.contract_id:
+    [ $023-PtSeouLo.contract_id ... ]
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
@@ -14813,7 +14817,7 @@ Full description
     +=======================+==========+=======================================+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer    |
     +-----------------------+----------+---------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $023-PtSEouLo.contract_id |
+    | Unnamed field 0       | Variable | sequence of $023-PtSeouLo.contract_id |
     +-----------------------+----------+---------------------------------------+
 
 
@@ -14868,7 +14872,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -14915,12 +14919,12 @@ Full description
             
-    { "balance": $023-PtSEouLo.mutez,
+    { "balance": $023-PtSeouLo.mutez,
       "delegate"?: $Signature.Public_key_hash,
-      "script"?: $023-PtSEouLo.scripted.contracts,
+      "script"?: $023-PtSeouLo.scripted.contracts,
       "counter"?: $positive_bignum }
-    $023-PtSEouLo.mutez: $positive_bignum
-    $023-PtSEouLo.scripted.contracts: { "code": any,
+    $023-PtSeouLo.mutez: $positive_bignum
+    $023-PtSeouLo.scripted.contracts: { "code": any,
                                         "storage": any }
     $Signature.Public_key_hash:
       /* A Ed25519, Secp256k1, P256, or BLS public key hash
@@ -14949,7 +14953,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | ? presence of field "script"   | 1 byte               | boolean (0 for false, 255 for true) |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
     | ? presence of field "counter"  | 1 byte               | boolean (0 for false, 255 for true) |
     +--------------------------------+----------------------+-------------------------------------+
@@ -15020,7 +15024,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.scripted.contracts
+    023-PtSeouLo.scripted.contracts
     *******************************
 
     +-----------------------+----------+------------------------------------+
@@ -15054,16 +15058,16 @@ Full description
             
-    [ { "ticketer": $023-PtSEouLo.contract_id,
-        "content_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-        "content": $micheline.023-PtSEouLo.michelson_v1.expression,
+    [ { "ticketer": $023-PtSeouLo.contract_id,
+        "content_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+        "content": $micheline.023-PtSeouLo.michelson_v1.expression,
         "amount": $positive_bignum } ... ]
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -15227,20 +15231,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $positive_bignum:
       /* Positive big number
@@ -15314,7 +15318,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -15343,7 +15347,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -15681,7 +15685,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -15720,7 +15724,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -15732,7 +15736,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -15744,7 +15748,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -15760,9 +15764,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -15774,9 +15778,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -15792,11 +15796,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -15808,11 +15812,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -15828,11 +15832,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -15872,11 +15876,11 @@ Full description
     +--------------+----------------------+-------------------------------------------------+
     | Name         | Size                 | Contents                                        |
     +==============+======================+=================================================+
-    | ticketer     | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer     | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +--------------+----------------------+-------------------------------------------------+
-    | content_type | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | content_type | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +--------------+----------------------+-------------------------------------------------+
-    | content      | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | content      | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +--------------+----------------------+-------------------------------------------------+
     | amount       | Determined from data | $N.t                                            |
     +--------------+----------------------+-------------------------------------------------+
@@ -15995,9 +15999,9 @@ Full description
             
-    { "key": $micheline.023-PtSEouLo.michelson_v1.expression,
-      "type": $micheline.023-PtSEouLo.michelson_v1.expression }
-    $023-PtSEouLo.michelson.v1.primitives:
+    { "key": $micheline.023-PtSeouLo.michelson_v1.expression,
+      "type": $micheline.023-PtSeouLo.michelson_v1.expression }
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -16161,20 +16165,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -16187,13 +16191,13 @@ Full description
     +------+----------------------+-------------------------------------------------+
     | Name | Size                 | Contents                                        |
     +======+======================+=================================================+
-    | key  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +------+----------------------+-------------------------------------------------+
-    | type | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -16531,7 +16535,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -16570,7 +16574,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -16582,7 +16586,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -16594,7 +16598,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -16610,9 +16614,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -16624,9 +16628,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -16642,11 +16646,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -16658,11 +16662,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -16678,11 +16682,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -16707,11 +16711,11 @@ Full description
     
-    $micheline.023-PtSEouLo.michelson_v1.expression
+    $micheline.023-PtSeouLo.michelson_v1.expression
     /* Some */
     || null
     /* None */
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -16875,20 +16879,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -16905,7 +16909,7 @@ Full description
     +-----------------+----------------------+----------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -17243,7 +17247,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -17282,7 +17286,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -17294,7 +17298,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -17306,7 +17310,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -17322,9 +17326,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -17336,9 +17340,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -17354,11 +17358,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -17370,11 +17374,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -17390,11 +17394,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -17437,7 +17441,7 @@ Full description
     +=================+======================+=================================================+
     | Tag             | 1 byte               | unsigned 8-bit integer                          |
     +-----------------+----------------------+-------------------------------------------------+
-    | Unnamed field 0 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------+----------------------+-------------------------------------------------+
 
     
@@ -17592,9 +17596,9 @@ Full description
     { "unreachable"?:
-        [ { "path": [ $023-PtSEouLo.michelson.v1.primitives ... ] } ... ],
-      "entrypoints": { *: $micheline.023-PtSEouLo.michelson_v1.expression } }
-    $023-PtSEouLo.michelson.v1.primitives:
+        [ { "path": [ $023-PtSeouLo.michelson.v1.primitives ... ] } ... ],
+      "entrypoints": { *: $micheline.023-PtSeouLo.michelson_v1.expression } }
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -17758,20 +17762,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -17794,7 +17798,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -18128,7 +18132,7 @@ Full description
     +=======================+==========+=======================================================================================================+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | Unnamed field 0       | Variable | sequence of unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------------------+
 
 
@@ -18156,7 +18160,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -18195,7 +18199,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -18207,7 +18211,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -18219,7 +18223,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -18235,9 +18239,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -18249,9 +18253,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -18267,11 +18271,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -18283,11 +18287,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -18303,11 +18307,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -18337,7 +18341,7 @@ Full description
     +=================+======================+=================================================+
     | Unnamed field 0 | Determined from data | $X_2                                            |
     +-----------------+----------------------+-------------------------------------------------+
-    | Unnamed field 1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------+----------------------+-------------------------------------------------+
 
     
@@ -18359,8 +18363,8 @@ Full description
-    $micheline.023-PtSEouLo.michelson_v1.expression
-    $023-PtSEouLo.michelson.v1.primitives:
+    $micheline.023-PtSeouLo.michelson_v1.expression
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -18524,20 +18528,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -18550,11 +18554,11 @@ Full description
     +-----------------+----------------------+-------------------------------------------------+
     | Name            | Size                 | Contents                                        |
     +=================+======================+=================================================+
-    | Unnamed field 0 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -18892,7 +18896,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -18931,7 +18935,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -18943,7 +18947,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -18955,7 +18959,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -18971,9 +18975,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -18985,9 +18989,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -19003,11 +19007,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -19019,11 +19023,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -19039,11 +19043,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -19425,8 +19429,8 @@ Full description
     
-    $023-PtSEouLo.scripted.contracts /* Some */ || null /* None */
-    $023-PtSEouLo.scripted.contracts: { "code": any,
+    $023-PtSeouLo.scripted.contracts /* Some */ || null /* None */
+    $023-PtSeouLo.scripted.contracts: { "code": any,
                                         "storage": any }
@@ -19667,8 +19671,8 @@ Full description
-    $023-PtSEouLo.mutez /* Some */ || null /* None */
-    $023-PtSEouLo.mutez: $positive_bignum
+    $023-PtSeouLo.mutez /* Some */ || null /* None */
+    $023-PtSeouLo.mutez: $positive_bignum
     $positive_bignum:
       /* Positive big number
          Decimal representation of a positive big number */
@@ -19785,8 +19789,8 @@ Full description
             
-    $micheline.023-PtSEouLo.michelson_v1.expression
-    $023-PtSEouLo.michelson.v1.primitives:
+    $micheline.023-PtSeouLo.michelson_v1.expression
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -19950,20 +19954,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -19976,11 +19980,11 @@ Full description
     +-----------------+----------------------+-------------------------------------------------+
     | Name            | Size                 | Contents                                        |
     +=================+======================+=================================================+
-    | Unnamed field 0 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -20318,7 +20322,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -20357,7 +20361,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -20369,7 +20373,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -20381,7 +20385,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -20397,9 +20401,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -20411,9 +20415,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -20429,11 +20433,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -20445,11 +20449,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -20465,11 +20469,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -20558,11 +20562,11 @@ Full description
     
-    $micheline.023-PtSEouLo.michelson_v1.expression
+    $micheline.023-PtSeouLo.michelson_v1.expression
     /* Some */
     || null
     /* None */
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -20726,20 +20730,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -20756,7 +20760,7 @@ Full description
     +-----------------+----------------------+----------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -21094,7 +21098,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -21133,7 +21137,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -21145,7 +21149,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -21157,7 +21161,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -21173,9 +21177,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -21187,9 +21191,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -21205,11 +21209,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -21221,11 +21225,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -21241,11 +21245,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -21288,7 +21292,7 @@ Full description
     +=================+======================+=================================================+
     | Tag             | 1 byte               | unsigned 8-bit integer                          |
     +-----------------+----------------------+-------------------------------------------------+
-    | Unnamed field 0 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------+----------------------+-------------------------------------------------+
 
     
@@ -21455,15 +21459,15 @@ Full description
-    { "ticketer": $023-PtSEouLo.contract_id,
-      "content_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-      "content": $micheline.023-PtSEouLo.michelson_v1.expression }
-    $023-PtSEouLo.contract_id:
+    { "ticketer": $023-PtSeouLo.contract_id,
+      "content_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+      "content": $micheline.023-PtSeouLo.michelson_v1.expression }
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -21627,20 +21631,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -21653,11 +21657,11 @@ Full description
     +--------------+----------------------+-------------------------------------------------+
     | Name         | Size                 | Contents                                        |
     +==============+======================+=================================================+
-    | ticketer     | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer     | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +--------------+----------------------+-------------------------------------------------+
-    | content_type | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | content_type | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +--------------+----------------------+-------------------------------------------------+
-    | content      | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | content      | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +--------------+----------------------+-------------------------------------------------+
 
 
@@ -21712,7 +21716,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -21741,7 +21745,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -22079,7 +22083,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -22118,7 +22122,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -22130,7 +22134,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -22142,7 +22146,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -22158,9 +22162,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -22172,9 +22176,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -22190,11 +22194,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -22206,11 +22210,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -22226,11 +22230,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -22303,15 +22307,15 @@ Full description
       "finalizable":
         [ { "delegate": $Signature.Public_key_hash,
             "cycle": integer ∈ [-2^31-1, 2^31],
-            "amount": $023-PtSEouLo.mutez } ... ],
+            "amount": $023-PtSeouLo.mutez } ... ],
       "unfinalizable":
         { "delegate": $Signature.Public_key_hash,
           "requests":
             [ { "cycle": integer ∈ [-2^31-1, 2^31],
-                "amount": $023-PtSEouLo.mutez } ... ] } }
+                "amount": $023-PtSeouLo.mutez } ... ] } }
     || null
     /* None */
-    $023-PtSEouLo.mutez: $positive_bignum
+    $023-PtSeouLo.mutez: $positive_bignum
     $Signature.Public_key_hash:
       /* A Ed25519, Secp256k1, P256, or BLS public key hash
          (Base58Check-encoded) */
@@ -22486,8 +22490,8 @@ Full description
             
-    $023-PtSEouLo.mutez /* Some */ || null /* None */
-    $023-PtSEouLo.mutez: $positive_bignum
+    $023-PtSeouLo.mutez /* Some */ || null /* None */
+    $023-PtSeouLo.mutez: $positive_bignum
     $positive_bignum:
       /* Positive big number
          Decimal representation of a positive big number */
@@ -22558,8 +22562,8 @@ Full description
             
-    $023-PtSEouLo.mutez /* Some */ || null /* None */
-    $023-PtSEouLo.mutez: $positive_bignum
+    $023-PtSeouLo.mutez /* Some */ || null /* None */
+    $023-PtSeouLo.mutez: $positive_bignum
     $positive_bignum:
       /* Positive big number
          Decimal representation of a positive big number */
@@ -22646,7 +22650,7 @@ Full description
                || /* published */
                { /* v0 */
                  "kind": "published",
-                 "publisher": $023-PtSEouLo.contract_id,
+                 "publisher": $023-PtSeouLo.contract_id,
                  "is_proto_attested": boolean,
                  "attested_shards": integer ∈ [0, 2^16-1],
                  "total_shards": integer ∈ [0, 2^16-1],
@@ -22657,7 +22661,7 @@ Full description
              "back_pointers": [ $dal_skip_list_pointer ... ] } }
     || null
     /* None */
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
@@ -22750,7 +22754,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -22823,7 +22827,7 @@ Full description
     +===================+==========+=====================================+
     | Tag               | 1 byte   | unsigned 8-bit integer              |
     +-------------------+----------+-------------------------------------+
-    | publisher         | 22 bytes | $023-PtSEouLo.contract_id           |
+    | publisher         | 22 bytes | $023-PtSeouLo.contract_id           |
     +-------------------+----------+-------------------------------------+
     | is_proto_attested | 1 byte   | boolean (0 for false, 255 for true) |
     +-------------------+----------+-------------------------------------+
@@ -23108,7 +23112,7 @@ Full description
                    || /* published */
                    { /* v0 */
                      "kind": "published",
-                     "publisher": $023-PtSEouLo.contract_id,
+                     "publisher": $023-PtSeouLo.contract_id,
                      "is_proto_attested": boolean,
                      "attested_shards": integer ∈ [0, 2^16-1],
                      "total_shards": integer ∈ [0, 2^16-1],
@@ -23117,7 +23121,7 @@ Full description
                      "index": integer ∈ [0, 255],
                      "commitment": $DAL_commitment },
                  "back_pointers": [ $dal_skip_list_pointer ... ] } } ] ... ]
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
@@ -23212,7 +23216,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -23285,7 +23289,7 @@ Full description
     +===================+==========+=====================================+
     | Tag               | 1 byte   | unsigned 8-bit integer              |
     +-------------------+----------+-------------------------------------+
-    | publisher         | 22 bytes | $023-PtSEouLo.contract_id           |
+    | publisher         | 22 bytes | $023-PtSeouLo.contract_id           |
     +-------------------+----------+-------------------------------------+
     | is_proto_attested | 1 byte   | boolean (0 for false, 255 for true) |
     +-------------------+----------+-------------------------------------+
@@ -23470,12 +23474,12 @@ Full description
           "missed_slots": integer ∈ [-2^30, 2^30],
           "missed_levels": integer ∈ [-2^30, 2^30],
           "remaining_allowed_missed_slots": integer ∈ [-2^30, 2^30],
-          "expected_attesting_rewards": $023-PtSEouLo.mutez },
+          "expected_attesting_rewards": $023-PtSeouLo.mutez },
       "dal_participation"?:
         { "expected_assigned_shards_per_slot": integer ∈ [-2^30, 2^30],
           "delegate_attested_dal_slots": integer ∈ [-2^30, 2^30],
           "delegate_attestable_dal_slots": integer ∈ [-2^30, 2^30],
-          "expected_dal_rewards": $023-PtSEouLo.mutez,
+          "expected_dal_rewards": $023-PtSeouLo.mutez,
           "sufficient_dal_participation": boolean,
           "denounced": boolean },
       "grace_period": integer ∈ [-2^31-1, 2^31],
@@ -23490,10 +23494,10 @@ Full description
                 "edge_of_baking_over_staking_billionth":
                   integer ∈ [-2^31-1, 2^31] } } ... ],
       "baking_power": $int64,
-      "total_staked": $023-PtSEouLo.mutez,
-      "total_delegated": $023-PtSEouLo.mutez,
+      "total_staked": $023-PtSeouLo.mutez,
+      "total_delegated": $023-PtSeouLo.mutez,
       "min_delegated_in_current_cycle":
-        { "amount": $023-PtSEouLo.mutez,
+        { "amount": $023-PtSeouLo.mutez,
           "level"?:
             { "level":
                 integer ∈ [0, 2^31]
@@ -23520,14 +23524,14 @@ Full description
                 boolean
                 /* Tells whether the baker of this block has to commit a seed
                    nonce hash. */ } },
-      "own_full_balance": $023-PtSEouLo.mutez,
-      "own_staked": $023-PtSEouLo.mutez,
-      "own_delegated": $023-PtSEouLo.mutez,
-      "external_staked": $023-PtSEouLo.mutez,
-      "external_delegated": $023-PtSEouLo.mutez,
+      "own_full_balance": $023-PtSeouLo.mutez,
+      "own_staked": $023-PtSeouLo.mutez,
+      "own_delegated": $023-PtSeouLo.mutez,
+      "external_staked": $023-PtSeouLo.mutez,
+      "external_delegated": $023-PtSeouLo.mutez,
       "total_unstaked_per_cycle":
         [ { "cycle": integer ∈ [-2^31-1, 2^31],
-            "deposit": $023-PtSEouLo.mutez } ... ],
+            "deposit": $023-PtSeouLo.mutez } ... ],
       "denunciations":
         [ { "operation_hash": $Operation_hash,
             "rewarded": $Signature.Public_key_hash,
@@ -23535,8 +23539,8 @@ Full description
               { "level": integer ∈ [0, 2^31],
                 "round": integer ∈ [-2^31-1, 2^31],
                 "kind": "attestation" | "block" | "preattestation" } } ... ],
-      "estimated_shared_pending_slashed_amount": $023-PtSEouLo.mutez,
-      "staking_denominator": $023-PtSEouLo.mutez,
+      "estimated_shared_pending_slashed_amount": $023-PtSeouLo.mutez,
+      "staking_denominator": $023-PtSeouLo.mutez,
       "current_voting_power": $int64,
       "voting_power": $int64,
       "voting_info":
@@ -23564,20 +23568,20 @@ Full description
                 "pkh": $Bls12_381.Public_key_hash,
                 "pk": $Bls12_381.Public_key } ... ] },
       "stakers":
-        [ { "staker": $023-PtSEouLo.contract_id.implicit,
-            "frozen_deposits": $023-PtSEouLo.mutez } ... ],
-      "delegators": [ $023-PtSEouLo.contract_id ... ] }
-    $023-PtSEouLo.contract_id:
+        [ { "staker": $023-PtSeouLo.contract_id.implicit,
+            "frozen_deposits": $023-PtSeouLo.mutez } ... ],
+      "delegators": [ $023-PtSeouLo.contract_id ... ] }
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.implicit:
+    $023-PtSeouLo.contract_id.implicit:
       /* A contract handle -- implicit account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash. */
       $unistring
-    $023-PtSEouLo.mutez: $positive_bignum
+    $023-PtSeouLo.mutez: $positive_bignum
     $Bls12_381.Public_key:
       /* A Bls12_381 public key (Base58Check-encoded) */
       $unistring
@@ -23680,7 +23684,7 @@ Full description
     +-----------------------------------------+----------------------+---------------------------------------+
     | # bytes in next field                   | 4 bytes              | unsigned 30-bit big-endian integer    |
     +-----------------------------------------+----------------------+---------------------------------------+
-    | delegators                              | Variable             | sequence of $023-PtSEouLo.contract_id |
+    | delegators                              | Variable             | sequence of $023-PtSeouLo.contract_id |
     +-----------------------------------------+----------------------+---------------------------------------+
 
 
@@ -24065,7 +24069,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id.implicit (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.implicit (22 bytes, 8-bit tag)
     *******************************************************
 
     Implicit (tag 0)
@@ -24086,13 +24090,13 @@ Full description
     +-----------------+----------------------+------------------------------------+
     | Name            | Size                 | Contents                           |
     +=================+======================+====================================+
-    | staker          | 22 bytes             | $023-PtSEouLo.contract_id.implicit |
+    | staker          | 22 bytes             | $023-PtSeouLo.contract_id.implicit |
     +-----------------+----------------------+------------------------------------+
     | frozen_deposits | Determined from data | $N.t                               |
     +-----------------+----------------------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -24596,10 +24600,10 @@ Full description
     { "expected_assigned_shards_per_slot": integer ∈ [-2^30, 2^30],
       "delegate_attested_dal_slots": integer ∈ [-2^30, 2^30],
       "delegate_attestable_dal_slots": integer ∈ [-2^30, 2^30],
-      "expected_dal_rewards": $023-PtSEouLo.mutez,
+      "expected_dal_rewards": $023-PtSeouLo.mutez,
       "sufficient_dal_participation": boolean,
       "denounced": boolean }
-    $023-PtSEouLo.mutez: $positive_bignum
+    $023-PtSeouLo.mutez: $positive_bignum
     $positive_bignum:
       /* Positive big number
          Decimal representation of a positive big number */
@@ -24732,8 +24736,8 @@ Full description
             
-    [ $023-PtSEouLo.contract_id ... ]
-    $023-PtSEouLo.contract_id:
+    [ $023-PtSeouLo.contract_id ... ]
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
@@ -24751,7 +24755,7 @@ Full description
     +=======================+==========+=======================================+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer    |
     +-----------------------+----------+---------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $023-PtSEouLo.contract_id |
+    | Unnamed field 0       | Variable | sequence of $023-PtSeouLo.contract_id |
     +-----------------------+----------+---------------------------------------+
 
 
@@ -24806,7 +24810,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -24854,8 +24858,8 @@ Full description
             
-    [ $023-PtSEouLo.contract_id ... ]
-    $023-PtSEouLo.contract_id:
+    [ $023-PtSeouLo.contract_id ... ]
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
@@ -24873,7 +24877,7 @@ Full description
     +=======================+==========+=======================================+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer    |
     +-----------------------+----------+---------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $023-PtSEouLo.contract_id |
+    | Unnamed field 0       | Variable | sequence of $023-PtSeouLo.contract_id |
     +-----------------------+----------+---------------------------------------+
 
 
@@ -24928,7 +24932,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -25302,8 +25306,8 @@ Full description
             
-    $023-PtSEouLo.mutez /* Some */ || null /* None */
-    $023-PtSEouLo.mutez: $positive_bignum
+    $023-PtSeouLo.mutez /* Some */ || null /* None */
+    $023-PtSeouLo.mutez: $positive_bignum
     $positive_bignum:
       /* Positive big number
          Decimal representation of a positive big number */
@@ -25482,7 +25486,7 @@ Full description
             
-    { "amount": $023-PtSEouLo.mutez,
+    { "amount": $023-PtSeouLo.mutez,
       "level"?:
         { "level":
             integer ∈ [0, 2^31]
@@ -25508,7 +25512,7 @@ Full description
             boolean
             /* Tells whether the baker of this block has to commit a seed nonce
                hash. */ } }
-    $023-PtSEouLo.mutez: $positive_bignum
+    $023-PtSeouLo.mutez: $positive_bignum
     $positive_bignum:
       /* Positive big number
          Decimal representation of a positive big number */
@@ -25719,8 +25723,8 @@ Full description
       "missed_slots": integer ∈ [-2^30, 2^30],
       "missed_levels": integer ∈ [-2^30, 2^30],
       "remaining_allowed_missed_slots": integer ∈ [-2^30, 2^30],
-      "expected_attesting_rewards": $023-PtSEouLo.mutez }
-    $023-PtSEouLo.mutez: $positive_bignum
+      "expected_attesting_rewards": $023-PtSeouLo.mutez }
+    $023-PtSeouLo.mutez: $positive_bignum
     $positive_bignum:
       /* Positive big number
          Decimal representation of a positive big number */
@@ -25837,14 +25841,14 @@ Full description
             
-    [ { "staker": $023-PtSEouLo.contract_id.implicit,
-        "frozen_deposits": $023-PtSEouLo.mutez } ... ]
-    $023-PtSEouLo.contract_id.implicit:
+    [ { "staker": $023-PtSeouLo.contract_id.implicit,
+        "frozen_deposits": $023-PtSeouLo.mutez } ... ]
+    $023-PtSeouLo.contract_id.implicit:
       /* A contract handle -- implicit account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash. */
       $unistring
-    $023-PtSEouLo.mutez: $positive_bignum
+    $023-PtSeouLo.mutez: $positive_bignum
     $positive_bignum:
       /* Positive big number
          Decimal representation of a positive big number */
@@ -25917,7 +25921,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id.implicit (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.implicit (22 bytes, 8-bit tag)
     *******************************************************
 
     Implicit (tag 0)
@@ -25950,7 +25954,7 @@ Full description
     +-----------------+----------------------+------------------------------------+
     | Name            | Size                 | Contents                           |
     +=================+======================+====================================+
-    | staker          | 22 bytes             | $023-PtSEouLo.contract_id.implicit |
+    | staker          | 22 bytes             | $023-PtSeouLo.contract_id.implicit |
     +-----------------+----------------------+------------------------------------+
     | frozen_deposits | Determined from data | $N.t                               |
     +-----------------+----------------------+------------------------------------+
@@ -26206,8 +26210,8 @@ Full description
   
     [ { "cycle": integer ∈ [-2^31-1, 2^31],
-        "deposit": $023-PtSEouLo.mutez } ... ]
-    $023-PtSEouLo.mutez: $positive_bignum
+        "deposit": $023-PtSeouLo.mutez } ... ]
+    $023-PtSeouLo.mutez: $positive_bignum
     $positive_bignum:
       /* Positive big number
          Decimal representation of a positive big number */
@@ -26268,8 +26272,8 @@ Full description
   
     [ { "cycle": integer ∈ [-2^31-1, 2^31],
-        "deposit": $023-PtSEouLo.mutez } ... ]
-    $023-PtSEouLo.mutez: $positive_bignum
+        "deposit": $023-PtSeouLo.mutez } ... ]
+    $023-PtSeouLo.mutez: $positive_bignum
     $positive_bignum:
       /* Positive big number
          Decimal representation of a positive big number */
@@ -26716,13 +26720,13 @@ Full description
   
     [ { "cycle": integer ∈ [-2^31-1, 2^31],
-        "baking_reward_fixed_portion": $023-PtSEouLo.mutez,
-        "baking_reward_bonus_per_slot": $023-PtSEouLo.mutez,
-        "attesting_reward_per_slot": $023-PtSEouLo.mutez,
-        "seed_nonce_revelation_tip": $023-PtSEouLo.mutez,
-        "vdf_revelation_tip": $023-PtSEouLo.mutez,
-        "dal_attesting_reward_per_shard": $023-PtSEouLo.mutez } ... ]
-    $023-PtSEouLo.mutez: $positive_bignum
+        "baking_reward_fixed_portion": $023-PtSeouLo.mutez,
+        "baking_reward_bonus_per_slot": $023-PtSeouLo.mutez,
+        "attesting_reward_per_slot": $023-PtSeouLo.mutez,
+        "seed_nonce_revelation_tip": $023-PtSeouLo.mutez,
+        "vdf_revelation_tip": $023-PtSeouLo.mutez,
+        "dal_attesting_reward_per_shard": $023-PtSeouLo.mutez } ... ]
+    $023-PtSeouLo.mutez: $positive_bignum
     $positive_bignum:
       /* Positive big number
          Decimal representation of a positive big number */
@@ -32187,7 +32191,7 @@ Full description
                          || /* published */
                          { /* v0 */
                            "kind": "published",
-                           "publisher": $023-PtSEouLo.contract_id,
+                           "publisher": $023-PtSeouLo.contract_id,
                            "is_proto_attested": boolean,
                            "attested_shards": integer ∈ [0, 2^16-1],
                            "total_shards": integer ∈ [0, 2^16-1],
@@ -32215,7 +32219,7 @@ Full description
                        "tick": $positive_bignum } } },
         "alice": $Signature.Public_key_hash,
         "bob": $Signature.Public_key_hash } ... ]
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
@@ -32375,7 +32379,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -32448,7 +32452,7 @@ Full description
     +===================+==========+=====================================+
     | Tag               | 1 byte   | unsigned 8-bit integer              |
     +-------------------+----------+-------------------------------------+
-    | publisher         | 22 bytes | $023-PtSEouLo.contract_id           |
+    | publisher         | 22 bytes | $023-PtSeouLo.contract_id           |
     +-------------------+----------+-------------------------------------+
     | is_proto_attested | 1 byte   | boolean (0 for false, 255 for true) |
     +-------------------+----------+-------------------------------------+
@@ -33063,15 +33067,15 @@ Full description
             
-    { "ticketer": $023-PtSEouLo.contract_id,
-      "content_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-      "content": $micheline.023-PtSEouLo.michelson_v1.expression }
-    $023-PtSEouLo.contract_id:
+    { "ticketer": $023-PtSeouLo.contract_id,
+      "content_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+      "content": $micheline.023-PtSeouLo.michelson_v1.expression }
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -33235,20 +33239,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -33261,11 +33265,11 @@ Full description
     +--------------+----------------------+-------------------------------------------------+
     | Name         | Size                 | Contents                                        |
     +==============+======================+=================================================+
-    | ticketer     | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer     | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +--------------+----------------------+-------------------------------------------------+
-    | content_type | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | content_type | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +--------------+----------------------+-------------------------------------------------+
-    | content      | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | content      | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +--------------+----------------------+-------------------------------------------------+
 
 
@@ -33320,7 +33324,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -33349,7 +33353,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -33687,7 +33691,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -33726,7 +33730,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -33738,7 +33742,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -33750,7 +33754,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -33766,9 +33770,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -33780,9 +33784,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -33798,11 +33802,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -33814,11 +33818,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -33834,11 +33838,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -34024,10 +34028,10 @@ Full description
             
-    { "delegates": $023-PtSEouLo.mutez,
-      "delegators": $023-PtSEouLo.mutez,
-      "overstaked": $023-PtSEouLo.mutez }
-    $023-PtSEouLo.mutez: $positive_bignum
+    { "delegates": $023-PtSeouLo.mutez,
+      "delegators": $023-PtSeouLo.mutez,
+      "overstaked": $023-PtSeouLo.mutez }
+    $023-PtSeouLo.mutez: $positive_bignum
     $positive_bignum:
       /* Positive big number
          Decimal representation of a positive big number */
@@ -34209,7 +34213,7 @@ Full description
     { /* Shell header
          Block header's shell-related content. It contains information such as
          the block level, its predecessor and timestamp. */
-      "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY",
+      "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh",
       "chain_id": $Chain_id,
       "hash": $block_hash,
       "level": integer ∈ [-2^31-1, 2^31],
@@ -34224,11 +34228,11 @@ Full description
       "payload_round": integer ∈ [-2^31-1, 2^31],
       "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
       "seed_nonce_hash"?: $cycle_nonce,
-      "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-      "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+      "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+      "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
       "signature": $Signature.V2 }
-    $023-PtSEouLo.adaptive_issuance_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.liquidity_baking_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.adaptive_issuance_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.liquidity_baking_vote: "on" || "off" || "pass"
     $Chain_id:
       /* Network identifier (Base58Check-encoded) */
       $unistring
@@ -34304,7 +34308,7 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | seed_nonce_hash                       | 32 bytes | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    | per_block_votes                       | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                       | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
@@ -34322,7 +34326,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.per_block_votes (1 byte, 8-bit tag)
+    023-PtSeouLo.per_block_votes (1 byte, 8-bit tag)
     ************************************************
 
     case_0 (tag 0)
@@ -34433,16 +34437,16 @@ Full description
             
-    { "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY",
+    { "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh",
       "payload_hash": $value_hash,
       "payload_round": integer ∈ [-2^31-1, 2^31],
       "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
       "seed_nonce_hash"?: $cycle_nonce,
-      "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-      "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+      "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+      "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
       "signature": $Signature.V2 }
-    $023-PtSEouLo.adaptive_issuance_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.liquidity_baking_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.adaptive_issuance_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.liquidity_baking_vote: "on" || "off" || "pass"
     $Signature.V2:
       /* A Ed25519, Secp256k1, P256 or BLS signature (Base58Check-encoded) */
       $unistring
@@ -34473,13 +34477,13 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | seed_nonce_hash                       | 32 bytes | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    | per_block_votes                       | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                       | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
 
 
-    023-PtSEouLo.per_block_votes (1 byte, 8-bit tag)
+    023-PtSeouLo.per_block_votes (1 byte, 8-bit tag)
     ************************************************
 
     case_0 (tag 0)
@@ -35158,9 +35162,9 @@ Full description
     
     { /* An operation's shell header. */
       "branch": $block_hash,
-      "contents": [ $023-PtSEouLo.operation.alpha.contents ... ] }
-    $023-PtSEouLo.adaptive_issuance_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.block_header.alpha.full_header:
+      "contents": [ $023-PtSeouLo.operation.alpha.contents ... ] }
+    $023-PtSeouLo.adaptive_issuance_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.block_header.alpha.full_header:
       /* Shell header
          Block header's shell-related content. It contains information such as
          the block level, its predecessor and timestamp. */
@@ -35176,20 +35180,20 @@ Full description
         "payload_round": integer ∈ [-2^31-1, 2^31],
         "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
         "seed_nonce_hash"?: $cycle_nonce,
-        "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-        "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+        "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+        "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
         "signature": $Signature.V2 }
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.entrypoint:
+    $023-PtSeouLo.entrypoint:
       /* entrypoint
          Named entrypoint to a Michelson smart contract */
       "default"
@@ -35204,12 +35208,12 @@ Full description
       || "set_delegate_parameters"
       || $unistring
       /* named */
-    $023-PtSEouLo.inlined.consensus_operation:
+    $023-PtSeouLo.inlined.consensus_operation:
       /* An operation's shell header. */
       { "branch": $block_hash,
-        "operations": $023-PtSEouLo.inlined.consensus_operation.contents,
+        "operations": $023-PtSeouLo.inlined.consensus_operation.contents,
         "signature"?: $Signature.V2 }
-    $023-PtSEouLo.inlined.consensus_operation.contents:
+    $023-PtSeouLo.inlined.consensus_operation.contents:
       { /* Preattestation */
         "kind": "preattestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -35245,8 +35249,8 @@ Full description
            "committee":
              [ { "slot": integer ∈ [0, 2^16-1],
                  "dal_attestation"?: $bignum } ... ] }
-    $023-PtSEouLo.liquidity_baking_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.liquidity_baking_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -35406,8 +35410,8 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
-    $023-PtSEouLo.operation.alpha.contents:
+    $023-PtSeouLo.mutez: $positive_bignum
+    $023-PtSeouLo.operation.alpha.contents:
       { /* Attestation */
         "kind": "attestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -35446,8 +35450,8 @@ Full description
       || { /* Double_consensus_operation_evidence */
            "kind": "double_consensus_operation_evidence",
            "slot": integer ∈ [0, 2^16-1],
-           "op1": $023-PtSEouLo.inlined.consensus_operation,
-           "op2": $023-PtSEouLo.inlined.consensus_operation }
+           "op1": $023-PtSeouLo.inlined.consensus_operation,
+           "op2": $023-PtSeouLo.inlined.consensus_operation }
       || { /* Seed_nonce_revelation */
            "kind": "seed_nonce_revelation",
            "level": integer ∈ [0, 2^31],
@@ -35458,11 +35462,11 @@ Full description
              [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/, /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ] }
       || { /* Double_baking_evidence */
            "kind": "double_baking_evidence",
-           "bh1": $023-PtSEouLo.block_header.alpha.full_header,
-           "bh2": $023-PtSEouLo.block_header.alpha.full_header }
+           "bh1": $023-PtSeouLo.block_header.alpha.full_header,
+           "bh2": $023-PtSeouLo.block_header.alpha.full_header }
       || { /* Dal_entrapment_evidence */
            "kind": "dal_entrapment_evidence",
-           "attestation": $023-PtSEouLo.inlined.consensus_operation,
+           "attestation": $023-PtSeouLo.inlined.consensus_operation,
            "consensus_slot": integer ∈ [0, 2^16-1],
            "slot_index": integer ∈ [0, 255],
            "shard_with_proof":
@@ -35488,7 +35492,7 @@ Full description
       || { /* Reveal */
            "kind": "reveal",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35497,29 +35501,29 @@ Full description
       || { /* Transaction */
            "kind": "transaction",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "amount": $023-PtSEouLo.mutez,
-           "destination": $023-PtSEouLo.contract_id,
+           "amount": $023-PtSeouLo.mutez,
+           "destination": $023-PtSeouLo.contract_id,
            "parameters"?:
-             { "entrypoint": $023-PtSEouLo.entrypoint,
+             { "entrypoint": $023-PtSeouLo.entrypoint,
                "value": any } }
       || { /* Origination */
            "kind": "origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts }
+           "script": $023-PtSeouLo.scripted.contracts }
       || { /* Delegation */
            "kind": "delegation",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35527,24 +35531,24 @@ Full description
       || { /* Set_deposits_limit */
            "kind": "set_deposits_limit",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "limit"?: $023-PtSEouLo.mutez }
+           "limit"?: $023-PtSeouLo.mutez }
       || { /* Increase_paid_storage */
            "kind": "increase_paid_storage",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "amount": $bignum,
-           "destination": $023-PtSEouLo.contract_id.originated }
+           "destination": $023-PtSeouLo.contract_id.originated }
       || { /* Update_consensus_key */
            "kind": "update_consensus_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35553,7 +35557,7 @@ Full description
       || { /* Update_companion_key */
            "kind": "update_companion_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35570,7 +35574,7 @@ Full description
       || { /* Register_global_constant */
            "kind": "register_global_constant",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35578,20 +35582,20 @@ Full description
       || { /* Transfer_ticket */
            "kind": "transfer_ticket",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "ticket_contents": any,
            "ticket_ty": any,
-           "ticket_ticketer": $023-PtSEouLo.contract_id,
+           "ticket_ticketer": $023-PtSeouLo.contract_id,
            "ticket_amount": $positive_bignum,
-           "destination": $023-PtSEouLo.contract_id,
+           "destination": $023-PtSeouLo.contract_id,
            "entrypoint": $unistring }
       || { /* Dal_publish_commitment */
            "kind": "dal_publish_commitment",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35602,7 +35606,7 @@ Full description
       || { /* Smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35613,7 +35617,7 @@ Full description
       || { /* Smart_rollup_add_messages */
            "kind": "smart_rollup_add_messages",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35621,7 +35625,7 @@ Full description
       || { /* Smart_rollup_cement */
            "kind": "smart_rollup_cement",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35629,7 +35633,7 @@ Full description
       || { /* Smart_rollup_publish */
            "kind": "smart_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35642,7 +35646,7 @@ Full description
       || { /* Smart_rollup_refute */
            "kind": "smart_rollup_refute",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35694,7 +35698,7 @@ Full description
       || { /* Smart_rollup_timeout */
            "kind": "smart_rollup_timeout",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35705,7 +35709,7 @@ Full description
       || { /* Smart_rollup_execute_outbox_message */
            "kind": "smart_rollup_execute_outbox_message",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35715,7 +35719,7 @@ Full description
       || { /* Smart_rollup_recover_bond */
            "kind": "smart_rollup_recover_bond",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35724,7 +35728,7 @@ Full description
       || { /* Zk_rollup_origination */
            "kind": "zk_rollup_origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35742,7 +35746,7 @@ Full description
       || { /* Zk_rollup_publish */
            "kind": "zk_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35755,15 +35759,15 @@ Full description
                    "rollup_id": $Zk_rollup_hash,
                    "payload": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                  { /* Some */
-                   "contents": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ty": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ticketer": $023-PtSEouLo.contract_id }
+                   "contents": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ty": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ticketer": $023-PtSeouLo.contract_id }
                  || null
                  /* None */ ] ... ] }
       || { /* Zk_rollup_update */
            "kind": "zk_rollup_update",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -35780,7 +35784,7 @@ Full description
                        "fee": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } ] ... ],
                "fee_pi": { "new_state": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                "proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } }
-    $023-PtSEouLo.scripted.contracts: { "code": any,
+    $023-PtSeouLo.scripted.contracts: { "code": any,
                                         "storage": any }
     $Bls12_381_signature:
       /* A Bls12_381 signature (Base58Check-encoded) */
@@ -35834,20 +35838,20 @@ Full description
       /* 64 bit integers
          Decimal representation of 64 bit integers */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $positive_bignum:
       /* Positive big number
@@ -35885,7 +35889,7 @@ Full description
     +==========+==========+====================================================+
     | branch   | 32 bytes | bytes                                              |
     +----------+----------+----------------------------------------------------+
-    | contents | Variable | sequence of $023-PtSEouLo.operation.alpha.contents |
+    | contents | Variable | sequence of $023-PtSeouLo.operation.alpha.contents |
     +----------+----------+----------------------------------------------------+
 
 
@@ -36096,7 +36100,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -36422,7 +36426,7 @@ Full description
     +-------------+--------------------------------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -36461,7 +36465,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -36473,7 +36477,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -36485,7 +36489,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -36501,9 +36505,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -36515,9 +36519,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -36533,11 +36537,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -36549,11 +36553,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -36569,11 +36573,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -36595,7 +36599,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -36645,11 +36649,11 @@ Full description
     +==========+======================+=================================================+
     | Tag      | 1 byte               | unsigned 8-bit integer                          |
     +----------+----------------------+-------------------------------------------------+
-    | contents | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | contents | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ty       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | ty       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ticketer | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +----------+----------------------+-------------------------------------------------+
 
 
@@ -37031,7 +37035,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -37048,7 +37052,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.scripted.contracts
+    023-PtSeouLo.scripted.contracts
     *******************************
 
     +-----------------------+----------+------------------------------------+
@@ -37064,7 +37068,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.entrypoint (Determined from data, 8-bit tag)
+    023-PtSeouLo.entrypoint (Determined from data, 8-bit tag)
     *********************************************************
 
     default (tag 0)
@@ -37187,7 +37191,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
-    | entrypoint            | Determined from data | $023-PtSEouLo.entrypoint           |
+    | entrypoint            | Determined from data | $023-PtSeouLo.entrypoint           |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -37223,7 +37227,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
     ***********************************************************************************
 
     Preattestation (tag 20)
@@ -37314,7 +37318,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation
+    023-PtSeouLo.inlined.consensus_operation
     ****************************************
 
     +------------+----------------------+----------------------------------------------------+
@@ -37322,7 +37326,7 @@ Full description
     +============+======================+====================================================+
     | branch     | 32 bytes             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
-    | operations | Determined from data | $023-PtSEouLo.inlined.consensus_operation.contents |
+    | operations | Determined from data | $023-PtSeouLo.inlined.consensus_operation.contents |
     +------------+----------------------+----------------------------------------------------+
     | signature  | Variable             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
@@ -37376,7 +37380,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.per_block_votes (1 byte, 8-bit tag)
+    023-PtSeouLo.per_block_votes (1 byte, 8-bit tag)
     ************************************************
 
     case_0 (tag 0)
@@ -37469,7 +37473,7 @@ Full description
     +------+--------+------------------------+
 
 
-    023-PtSEouLo.block_header.alpha.full_header
+    023-PtSeouLo.block_header.alpha.full_header
     *******************************************
 
     +---------------------------------------+----------+-------------------------------------+
@@ -37503,13 +37507,13 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | seed_nonce_hash                       | 32 bytes | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    | per_block_votes                       | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                       | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.contents (Determined from data, 8-bit tag)
     ***********************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -37538,11 +37542,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
 
 
@@ -37556,11 +37560,11 @@ Full description
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh1                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh1                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh2                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh2                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
 
 
@@ -37722,7 +37726,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------------------+-------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
@@ -37810,7 +37814,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -37842,7 +37846,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
 
 
@@ -37938,7 +37942,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
 
 
@@ -38020,11 +38024,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -38389,9 +38393,9 @@ Full description
     
     { /* An operation's shell header. */
       "branch": $block_hash,
-      "contents": [ $023-PtSEouLo.operation.alpha.contents ... ] }
-    $023-PtSEouLo.adaptive_issuance_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.block_header.alpha.full_header:
+      "contents": [ $023-PtSeouLo.operation.alpha.contents ... ] }
+    $023-PtSeouLo.adaptive_issuance_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.block_header.alpha.full_header:
       /* Shell header
          Block header's shell-related content. It contains information such as
          the block level, its predecessor and timestamp. */
@@ -38407,20 +38411,20 @@ Full description
         "payload_round": integer ∈ [-2^31-1, 2^31],
         "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
         "seed_nonce_hash"?: $cycle_nonce,
-        "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-        "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+        "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+        "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
         "signature": $Signature.V2 }
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.entrypoint:
+    $023-PtSeouLo.entrypoint:
       /* entrypoint
          Named entrypoint to a Michelson smart contract */
       "default"
@@ -38435,12 +38439,12 @@ Full description
       || "set_delegate_parameters"
       || $unistring
       /* named */
-    $023-PtSEouLo.inlined.consensus_operation:
+    $023-PtSeouLo.inlined.consensus_operation:
       /* An operation's shell header. */
       { "branch": $block_hash,
-        "operations": $023-PtSEouLo.inlined.consensus_operation.contents,
+        "operations": $023-PtSeouLo.inlined.consensus_operation.contents,
         "signature"?: $Signature.V2 }
-    $023-PtSEouLo.inlined.consensus_operation.contents:
+    $023-PtSeouLo.inlined.consensus_operation.contents:
       { /* Preattestation */
         "kind": "preattestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -38476,8 +38480,8 @@ Full description
            "committee":
              [ { "slot": integer ∈ [0, 2^16-1],
                  "dal_attestation"?: $bignum } ... ] }
-    $023-PtSEouLo.liquidity_baking_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.liquidity_baking_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -38637,8 +38641,8 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
-    $023-PtSEouLo.operation.alpha.contents:
+    $023-PtSeouLo.mutez: $positive_bignum
+    $023-PtSeouLo.operation.alpha.contents:
       { /* Attestation */
         "kind": "attestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -38677,8 +38681,8 @@ Full description
       || { /* Double_consensus_operation_evidence */
            "kind": "double_consensus_operation_evidence",
            "slot": integer ∈ [0, 2^16-1],
-           "op1": $023-PtSEouLo.inlined.consensus_operation,
-           "op2": $023-PtSEouLo.inlined.consensus_operation }
+           "op1": $023-PtSeouLo.inlined.consensus_operation,
+           "op2": $023-PtSeouLo.inlined.consensus_operation }
       || { /* Seed_nonce_revelation */
            "kind": "seed_nonce_revelation",
            "level": integer ∈ [0, 2^31],
@@ -38689,11 +38693,11 @@ Full description
              [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/, /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ] }
       || { /* Double_baking_evidence */
            "kind": "double_baking_evidence",
-           "bh1": $023-PtSEouLo.block_header.alpha.full_header,
-           "bh2": $023-PtSEouLo.block_header.alpha.full_header }
+           "bh1": $023-PtSeouLo.block_header.alpha.full_header,
+           "bh2": $023-PtSeouLo.block_header.alpha.full_header }
       || { /* Dal_entrapment_evidence */
            "kind": "dal_entrapment_evidence",
-           "attestation": $023-PtSEouLo.inlined.consensus_operation,
+           "attestation": $023-PtSeouLo.inlined.consensus_operation,
            "consensus_slot": integer ∈ [0, 2^16-1],
            "slot_index": integer ∈ [0, 255],
            "shard_with_proof":
@@ -38719,7 +38723,7 @@ Full description
       || { /* Reveal */
            "kind": "reveal",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -38728,29 +38732,29 @@ Full description
       || { /* Transaction */
            "kind": "transaction",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "amount": $023-PtSEouLo.mutez,
-           "destination": $023-PtSEouLo.contract_id,
+           "amount": $023-PtSeouLo.mutez,
+           "destination": $023-PtSeouLo.contract_id,
            "parameters"?:
-             { "entrypoint": $023-PtSEouLo.entrypoint,
+             { "entrypoint": $023-PtSeouLo.entrypoint,
                "value": any } }
       || { /* Origination */
            "kind": "origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts }
+           "script": $023-PtSeouLo.scripted.contracts }
       || { /* Delegation */
            "kind": "delegation",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -38758,24 +38762,24 @@ Full description
       || { /* Set_deposits_limit */
            "kind": "set_deposits_limit",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "limit"?: $023-PtSEouLo.mutez }
+           "limit"?: $023-PtSeouLo.mutez }
       || { /* Increase_paid_storage */
            "kind": "increase_paid_storage",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "amount": $bignum,
-           "destination": $023-PtSEouLo.contract_id.originated }
+           "destination": $023-PtSeouLo.contract_id.originated }
       || { /* Update_consensus_key */
            "kind": "update_consensus_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -38784,7 +38788,7 @@ Full description
       || { /* Update_companion_key */
            "kind": "update_companion_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -38801,7 +38805,7 @@ Full description
       || { /* Register_global_constant */
            "kind": "register_global_constant",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -38809,20 +38813,20 @@ Full description
       || { /* Transfer_ticket */
            "kind": "transfer_ticket",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "ticket_contents": any,
            "ticket_ty": any,
-           "ticket_ticketer": $023-PtSEouLo.contract_id,
+           "ticket_ticketer": $023-PtSeouLo.contract_id,
            "ticket_amount": $positive_bignum,
-           "destination": $023-PtSEouLo.contract_id,
+           "destination": $023-PtSeouLo.contract_id,
            "entrypoint": $unistring }
       || { /* Dal_publish_commitment */
            "kind": "dal_publish_commitment",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -38833,7 +38837,7 @@ Full description
       || { /* Smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -38844,7 +38848,7 @@ Full description
       || { /* Smart_rollup_add_messages */
            "kind": "smart_rollup_add_messages",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -38852,7 +38856,7 @@ Full description
       || { /* Smart_rollup_cement */
            "kind": "smart_rollup_cement",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -38860,7 +38864,7 @@ Full description
       || { /* Smart_rollup_publish */
            "kind": "smart_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -38873,7 +38877,7 @@ Full description
       || { /* Smart_rollup_refute */
            "kind": "smart_rollup_refute",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -38925,7 +38929,7 @@ Full description
       || { /* Smart_rollup_timeout */
            "kind": "smart_rollup_timeout",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -38936,7 +38940,7 @@ Full description
       || { /* Smart_rollup_execute_outbox_message */
            "kind": "smart_rollup_execute_outbox_message",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -38946,7 +38950,7 @@ Full description
       || { /* Smart_rollup_recover_bond */
            "kind": "smart_rollup_recover_bond",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -38955,7 +38959,7 @@ Full description
       || { /* Zk_rollup_origination */
            "kind": "zk_rollup_origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -38973,7 +38977,7 @@ Full description
       || { /* Zk_rollup_publish */
            "kind": "zk_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -38986,15 +38990,15 @@ Full description
                    "rollup_id": $Zk_rollup_hash,
                    "payload": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                  { /* Some */
-                   "contents": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ty": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ticketer": $023-PtSEouLo.contract_id }
+                   "contents": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ty": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ticketer": $023-PtSeouLo.contract_id }
                  || null
                  /* None */ ] ... ] }
       || { /* Zk_rollup_update */
            "kind": "zk_rollup_update",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -39011,7 +39015,7 @@ Full description
                        "fee": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } ] ... ],
                "fee_pi": { "new_state": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                "proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } }
-    $023-PtSEouLo.scripted.contracts: { "code": any,
+    $023-PtSeouLo.scripted.contracts: { "code": any,
                                         "storage": any }
     $Bls12_381_signature:
       /* A Bls12_381 signature (Base58Check-encoded) */
@@ -39065,20 +39069,20 @@ Full description
       /* 64 bit integers
          Decimal representation of 64 bit integers */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $positive_bignum:
       /* Positive big number
@@ -39116,7 +39120,7 @@ Full description
     +==========+==========+====================================================+
     | branch   | 32 bytes | bytes                                              |
     +----------+----------+----------------------------------------------------+
-    | contents | Variable | sequence of $023-PtSEouLo.operation.alpha.contents |
+    | contents | Variable | sequence of $023-PtSeouLo.operation.alpha.contents |
     +----------+----------+----------------------------------------------------+
 
 
@@ -39327,7 +39331,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -39653,7 +39657,7 @@ Full description
     +-------------+--------------------------------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -39692,7 +39696,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -39704,7 +39708,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -39716,7 +39720,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -39732,9 +39736,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -39746,9 +39750,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -39764,11 +39768,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -39780,11 +39784,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -39800,11 +39804,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -39826,7 +39830,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -39876,11 +39880,11 @@ Full description
     +==========+======================+=================================================+
     | Tag      | 1 byte               | unsigned 8-bit integer                          |
     +----------+----------------------+-------------------------------------------------+
-    | contents | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | contents | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ty       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | ty       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ticketer | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +----------+----------------------+-------------------------------------------------+
 
 
@@ -40262,7 +40266,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -40279,7 +40283,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.scripted.contracts
+    023-PtSeouLo.scripted.contracts
     *******************************
 
     +-----------------------+----------+------------------------------------+
@@ -40295,7 +40299,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.entrypoint (Determined from data, 8-bit tag)
+    023-PtSeouLo.entrypoint (Determined from data, 8-bit tag)
     *********************************************************
 
     default (tag 0)
@@ -40418,7 +40422,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
-    | entrypoint            | Determined from data | $023-PtSEouLo.entrypoint           |
+    | entrypoint            | Determined from data | $023-PtSeouLo.entrypoint           |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -40454,7 +40458,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
     ***********************************************************************************
 
     Preattestation (tag 20)
@@ -40545,7 +40549,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation
+    023-PtSeouLo.inlined.consensus_operation
     ****************************************
 
     +------------+----------------------+----------------------------------------------------+
@@ -40553,7 +40557,7 @@ Full description
     +============+======================+====================================================+
     | branch     | 32 bytes             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
-    | operations | Determined from data | $023-PtSEouLo.inlined.consensus_operation.contents |
+    | operations | Determined from data | $023-PtSeouLo.inlined.consensus_operation.contents |
     +------------+----------------------+----------------------------------------------------+
     | signature  | Variable             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
@@ -40607,7 +40611,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.per_block_votes (1 byte, 8-bit tag)
+    023-PtSeouLo.per_block_votes (1 byte, 8-bit tag)
     ************************************************
 
     case_0 (tag 0)
@@ -40700,7 +40704,7 @@ Full description
     +------+--------+------------------------+
 
 
-    023-PtSEouLo.block_header.alpha.full_header
+    023-PtSeouLo.block_header.alpha.full_header
     *******************************************
 
     +---------------------------------------+----------+-------------------------------------+
@@ -40734,13 +40738,13 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | seed_nonce_hash                       | 32 bytes | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    | per_block_votes                       | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                       | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.contents (Determined from data, 8-bit tag)
     ***********************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -40769,11 +40773,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
 
 
@@ -40787,11 +40791,11 @@ Full description
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh1                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh1                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh2                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh2                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
 
 
@@ -40953,7 +40957,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------------------+-------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
@@ -41041,7 +41045,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -41073,7 +41077,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
 
 
@@ -41169,7 +41173,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
 
 
@@ -41251,11 +41255,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -41617,8 +41621,8 @@ Full description
       "payload_round": integer ∈ [-2^31-1, 2^31],
       "nonce_hash"?: $cycle_nonce,
       "proof_of_work_nonce"?: /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
-      "per_block_votes"?: $023-PtSEouLo.per_block_votes }
-    $023-PtSEouLo.per_block_votes:
+      "per_block_votes"?: $023-PtSeouLo.per_block_votes }
+    $023-PtSeouLo.per_block_votes:
       { "liquidity_baking_vote": "on" || "off" || "pass",
         "adaptive_issuance_vote": "on" || "off" || "pass" }
     $cycle_nonce:
@@ -41648,11 +41652,11 @@ Full description
     +----------------------------------+----------+-------------------------------------+
     | proof_of_work_nonce              | 8 bytes  | bytes                               |
     +----------------------------------+----------+-------------------------------------+
-    | per_block_votes                  | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                  | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +----------------------------------+----------+-------------------------------------+
 
 
-    023-PtSEouLo.per_block_votes (1 byte, 8-bit tag)
+    023-PtSeouLo.per_block_votes (1 byte, 8-bit tag)
     ************************************************
 
     case_0 (tag 0)
@@ -41785,10 +41789,10 @@ Full description
     
     { /* An operation's shell header. */
       "branch": $block_hash,
-      "contents": [ $023-PtSEouLo.operation.alpha.contents ... ],
+      "contents": [ $023-PtSeouLo.operation.alpha.contents ... ],
       "signature"?: $Signature.V2 }
-    $023-PtSEouLo.adaptive_issuance_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.block_header.alpha.full_header:
+    $023-PtSeouLo.adaptive_issuance_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.block_header.alpha.full_header:
       /* Shell header
          Block header's shell-related content. It contains information such as
          the block level, its predecessor and timestamp. */
@@ -41804,20 +41808,20 @@ Full description
         "payload_round": integer ∈ [-2^31-1, 2^31],
         "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
         "seed_nonce_hash"?: $cycle_nonce,
-        "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-        "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+        "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+        "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
         "signature": $Signature.V2 }
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.entrypoint:
+    $023-PtSeouLo.entrypoint:
       /* entrypoint
          Named entrypoint to a Michelson smart contract */
       "default"
@@ -41832,12 +41836,12 @@ Full description
       || "set_delegate_parameters"
       || $unistring
       /* named */
-    $023-PtSEouLo.inlined.consensus_operation:
+    $023-PtSeouLo.inlined.consensus_operation:
       /* An operation's shell header. */
       { "branch": $block_hash,
-        "operations": $023-PtSEouLo.inlined.consensus_operation.contents,
+        "operations": $023-PtSeouLo.inlined.consensus_operation.contents,
         "signature"?: $Signature.V2 }
-    $023-PtSEouLo.inlined.consensus_operation.contents:
+    $023-PtSeouLo.inlined.consensus_operation.contents:
       { /* Preattestation */
         "kind": "preattestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -41873,8 +41877,8 @@ Full description
            "committee":
              [ { "slot": integer ∈ [0, 2^16-1],
                  "dal_attestation"?: $bignum } ... ] }
-    $023-PtSEouLo.liquidity_baking_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.liquidity_baking_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -42034,8 +42038,8 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
-    $023-PtSEouLo.operation.alpha.contents:
+    $023-PtSeouLo.mutez: $positive_bignum
+    $023-PtSeouLo.operation.alpha.contents:
       { /* Attestation */
         "kind": "attestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -42074,8 +42078,8 @@ Full description
       || { /* Double_consensus_operation_evidence */
            "kind": "double_consensus_operation_evidence",
            "slot": integer ∈ [0, 2^16-1],
-           "op1": $023-PtSEouLo.inlined.consensus_operation,
-           "op2": $023-PtSEouLo.inlined.consensus_operation }
+           "op1": $023-PtSeouLo.inlined.consensus_operation,
+           "op2": $023-PtSeouLo.inlined.consensus_operation }
       || { /* Seed_nonce_revelation */
            "kind": "seed_nonce_revelation",
            "level": integer ∈ [0, 2^31],
@@ -42086,11 +42090,11 @@ Full description
              [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/, /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ] }
       || { /* Double_baking_evidence */
            "kind": "double_baking_evidence",
-           "bh1": $023-PtSEouLo.block_header.alpha.full_header,
-           "bh2": $023-PtSEouLo.block_header.alpha.full_header }
+           "bh1": $023-PtSeouLo.block_header.alpha.full_header,
+           "bh2": $023-PtSeouLo.block_header.alpha.full_header }
       || { /* Dal_entrapment_evidence */
            "kind": "dal_entrapment_evidence",
-           "attestation": $023-PtSEouLo.inlined.consensus_operation,
+           "attestation": $023-PtSeouLo.inlined.consensus_operation,
            "consensus_slot": integer ∈ [0, 2^16-1],
            "slot_index": integer ∈ [0, 255],
            "shard_with_proof":
@@ -42116,7 +42120,7 @@ Full description
       || { /* Reveal */
            "kind": "reveal",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42125,29 +42129,29 @@ Full description
       || { /* Transaction */
            "kind": "transaction",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "amount": $023-PtSEouLo.mutez,
-           "destination": $023-PtSEouLo.contract_id,
+           "amount": $023-PtSeouLo.mutez,
+           "destination": $023-PtSeouLo.contract_id,
            "parameters"?:
-             { "entrypoint": $023-PtSEouLo.entrypoint,
+             { "entrypoint": $023-PtSeouLo.entrypoint,
                "value": any } }
       || { /* Origination */
            "kind": "origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts }
+           "script": $023-PtSeouLo.scripted.contracts }
       || { /* Delegation */
            "kind": "delegation",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42155,24 +42159,24 @@ Full description
       || { /* Set_deposits_limit */
            "kind": "set_deposits_limit",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "limit"?: $023-PtSEouLo.mutez }
+           "limit"?: $023-PtSeouLo.mutez }
       || { /* Increase_paid_storage */
            "kind": "increase_paid_storage",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "amount": $bignum,
-           "destination": $023-PtSEouLo.contract_id.originated }
+           "destination": $023-PtSeouLo.contract_id.originated }
       || { /* Update_consensus_key */
            "kind": "update_consensus_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42181,7 +42185,7 @@ Full description
       || { /* Update_companion_key */
            "kind": "update_companion_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42198,7 +42202,7 @@ Full description
       || { /* Register_global_constant */
            "kind": "register_global_constant",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42206,20 +42210,20 @@ Full description
       || { /* Transfer_ticket */
            "kind": "transfer_ticket",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "ticket_contents": any,
            "ticket_ty": any,
-           "ticket_ticketer": $023-PtSEouLo.contract_id,
+           "ticket_ticketer": $023-PtSeouLo.contract_id,
            "ticket_amount": $positive_bignum,
-           "destination": $023-PtSEouLo.contract_id,
+           "destination": $023-PtSeouLo.contract_id,
            "entrypoint": $unistring }
       || { /* Dal_publish_commitment */
            "kind": "dal_publish_commitment",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42230,7 +42234,7 @@ Full description
       || { /* Smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42241,7 +42245,7 @@ Full description
       || { /* Smart_rollup_add_messages */
            "kind": "smart_rollup_add_messages",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42249,7 +42253,7 @@ Full description
       || { /* Smart_rollup_cement */
            "kind": "smart_rollup_cement",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42257,7 +42261,7 @@ Full description
       || { /* Smart_rollup_publish */
            "kind": "smart_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42270,7 +42274,7 @@ Full description
       || { /* Smart_rollup_refute */
            "kind": "smart_rollup_refute",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42322,7 +42326,7 @@ Full description
       || { /* Smart_rollup_timeout */
            "kind": "smart_rollup_timeout",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42333,7 +42337,7 @@ Full description
       || { /* Smart_rollup_execute_outbox_message */
            "kind": "smart_rollup_execute_outbox_message",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42343,7 +42347,7 @@ Full description
       || { /* Smart_rollup_recover_bond */
            "kind": "smart_rollup_recover_bond",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42352,7 +42356,7 @@ Full description
       || { /* Zk_rollup_origination */
            "kind": "zk_rollup_origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42370,7 +42374,7 @@ Full description
       || { /* Zk_rollup_publish */
            "kind": "zk_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42383,15 +42387,15 @@ Full description
                    "rollup_id": $Zk_rollup_hash,
                    "payload": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                  { /* Some */
-                   "contents": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ty": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ticketer": $023-PtSEouLo.contract_id }
+                   "contents": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ty": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ticketer": $023-PtSeouLo.contract_id }
                  || null
                  /* None */ ] ... ] }
       || { /* Zk_rollup_update */
            "kind": "zk_rollup_update",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -42408,7 +42412,7 @@ Full description
                        "fee": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } ] ... ],
                "fee_pi": { "new_state": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                "proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } }
-    $023-PtSEouLo.scripted.contracts: { "code": any,
+    $023-PtSeouLo.scripted.contracts: { "code": any,
                                         "storage": any }
     $Bls12_381_signature:
       /* A Bls12_381 signature (Base58Check-encoded) */
@@ -42462,20 +42466,20 @@ Full description
       /* 64 bit integers
          Decimal representation of 64 bit integers */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $positive_bignum:
       /* Positive big number
@@ -42513,7 +42517,7 @@ Full description
     +===============================+==========+========================================================================+
     | branch                        | 32 bytes | bytes                                                                  |
     +-------------------------------+----------+------------------------------------------------------------------------+
-    | contents_and_signature_prefix | Variable | sequence of $023-PtSEouLo.operation.alpha.contents_or_signature_prefix |
+    | contents_and_signature_prefix | Variable | sequence of $023-PtSeouLo.operation.alpha.contents_or_signature_prefix |
     +-------------------------------+----------+------------------------------------------------------------------------+
     | signature_suffix              | 64 bytes | bytes                                                                  |
     +-------------------------------+----------+------------------------------------------------------------------------+
@@ -42741,7 +42745,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -43067,7 +43071,7 @@ Full description
     +-------------+--------------------------------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -43106,7 +43110,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -43118,7 +43122,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -43130,7 +43134,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -43146,9 +43150,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -43160,9 +43164,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -43178,11 +43182,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -43194,11 +43198,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -43214,11 +43218,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -43240,7 +43244,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -43290,11 +43294,11 @@ Full description
     +==========+======================+=================================================+
     | Tag      | 1 byte               | unsigned 8-bit integer                          |
     +----------+----------------------+-------------------------------------------------+
-    | contents | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | contents | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ty       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | ty       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ticketer | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +----------+----------------------+-------------------------------------------------+
 
 
@@ -43676,7 +43680,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -43693,7 +43697,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.scripted.contracts
+    023-PtSeouLo.scripted.contracts
     *******************************
 
     +-----------------------+----------+------------------------------------+
@@ -43709,7 +43713,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.entrypoint (Determined from data, 8-bit tag)
+    023-PtSeouLo.entrypoint (Determined from data, 8-bit tag)
     *********************************************************
 
     default (tag 0)
@@ -43832,7 +43836,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
-    | entrypoint            | Determined from data | $023-PtSEouLo.entrypoint           |
+    | entrypoint            | Determined from data | $023-PtSeouLo.entrypoint           |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -43868,7 +43872,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
     ***********************************************************************************
 
     Preattestation (tag 20)
@@ -43959,7 +43963,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation
+    023-PtSeouLo.inlined.consensus_operation
     ****************************************
 
     +------------+----------------------+----------------------------------------------------+
@@ -43967,7 +43971,7 @@ Full description
     +============+======================+====================================================+
     | branch     | 32 bytes             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
-    | operations | Determined from data | $023-PtSEouLo.inlined.consensus_operation.contents |
+    | operations | Determined from data | $023-PtSeouLo.inlined.consensus_operation.contents |
     +------------+----------------------+----------------------------------------------------+
     | signature  | Variable             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
@@ -44021,7 +44025,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.per_block_votes (1 byte, 8-bit tag)
+    023-PtSeouLo.per_block_votes (1 byte, 8-bit tag)
     ************************************************
 
     case_0 (tag 0)
@@ -44114,7 +44118,7 @@ Full description
     +------+--------+------------------------+
 
 
-    023-PtSEouLo.block_header.alpha.full_header
+    023-PtSeouLo.block_header.alpha.full_header
     *******************************************
 
     +---------------------------------------+----------+-------------------------------------+
@@ -44148,13 +44152,13 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | seed_nonce_hash                       | 32 bytes | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    | per_block_votes                       | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                       | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag)
     *******************************************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -44183,11 +44187,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
 
 
@@ -44201,11 +44205,11 @@ Full description
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh1                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh1                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh2                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh2                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
 
 
@@ -44367,7 +44371,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------------------+-------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
@@ -44455,7 +44459,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -44487,7 +44491,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
 
 
@@ -44583,7 +44587,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
 
 
@@ -44665,11 +44669,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -45270,11 +45274,11 @@ Full description
       "payload_round": integer ∈ [-2^31-1, 2^31],
       "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
       "seed_nonce_hash"?: $cycle_nonce,
-      "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-      "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+      "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+      "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
       "signature": $Signature.V2 }
-    $023-PtSEouLo.adaptive_issuance_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.liquidity_baking_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.adaptive_issuance_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.liquidity_baking_vote: "on" || "off" || "pass"
     $Signature.V2:
       /* A Ed25519, Secp256k1, P256 or BLS signature (Base58Check-encoded) */
       $unistring
@@ -45305,13 +45309,13 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | seed_nonce_hash                       | 32 bytes | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    | per_block_votes                       | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                       | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
 
 
-    023-PtSEouLo.per_block_votes (1 byte, 8-bit tag)
+    023-PtSeouLo.per_block_votes (1 byte, 8-bit tag)
     ************************************************
 
     case_0 (tag 0)
@@ -45476,10 +45480,10 @@ Full description
     
     [ { /* An operation's shell header. */
         "branch": $block_hash,
-        "contents": [ $023-PtSEouLo.operation.alpha.contents ... ],
+        "contents": [ $023-PtSeouLo.operation.alpha.contents ... ],
         "signature"?: $Signature.V2 } ... ]
-    $023-PtSEouLo.adaptive_issuance_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.block_header.alpha.full_header:
+    $023-PtSeouLo.adaptive_issuance_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.block_header.alpha.full_header:
       /* Shell header
          Block header's shell-related content. It contains information such as
          the block level, its predecessor and timestamp. */
@@ -45495,20 +45499,20 @@ Full description
         "payload_round": integer ∈ [-2^31-1, 2^31],
         "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
         "seed_nonce_hash"?: $cycle_nonce,
-        "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-        "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+        "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+        "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
         "signature": $Signature.V2 }
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.entrypoint:
+    $023-PtSeouLo.entrypoint:
       /* entrypoint
          Named entrypoint to a Michelson smart contract */
       "default"
@@ -45523,12 +45527,12 @@ Full description
       || "set_delegate_parameters"
       || $unistring
       /* named */
-    $023-PtSEouLo.inlined.consensus_operation:
+    $023-PtSeouLo.inlined.consensus_operation:
       /* An operation's shell header. */
       { "branch": $block_hash,
-        "operations": $023-PtSEouLo.inlined.consensus_operation.contents,
+        "operations": $023-PtSeouLo.inlined.consensus_operation.contents,
         "signature"?: $Signature.V2 }
-    $023-PtSEouLo.inlined.consensus_operation.contents:
+    $023-PtSeouLo.inlined.consensus_operation.contents:
       { /* Preattestation */
         "kind": "preattestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -45564,8 +45568,8 @@ Full description
            "committee":
              [ { "slot": integer ∈ [0, 2^16-1],
                  "dal_attestation"?: $bignum } ... ] }
-    $023-PtSEouLo.liquidity_baking_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.liquidity_baking_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -45725,8 +45729,8 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
-    $023-PtSEouLo.operation.alpha.contents:
+    $023-PtSeouLo.mutez: $positive_bignum
+    $023-PtSeouLo.operation.alpha.contents:
       { /* Attestation */
         "kind": "attestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -45765,8 +45769,8 @@ Full description
       || { /* Double_consensus_operation_evidence */
            "kind": "double_consensus_operation_evidence",
            "slot": integer ∈ [0, 2^16-1],
-           "op1": $023-PtSEouLo.inlined.consensus_operation,
-           "op2": $023-PtSEouLo.inlined.consensus_operation }
+           "op1": $023-PtSeouLo.inlined.consensus_operation,
+           "op2": $023-PtSeouLo.inlined.consensus_operation }
       || { /* Seed_nonce_revelation */
            "kind": "seed_nonce_revelation",
            "level": integer ∈ [0, 2^31],
@@ -45777,11 +45781,11 @@ Full description
              [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/, /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ] }
       || { /* Double_baking_evidence */
            "kind": "double_baking_evidence",
-           "bh1": $023-PtSEouLo.block_header.alpha.full_header,
-           "bh2": $023-PtSEouLo.block_header.alpha.full_header }
+           "bh1": $023-PtSeouLo.block_header.alpha.full_header,
+           "bh2": $023-PtSeouLo.block_header.alpha.full_header }
       || { /* Dal_entrapment_evidence */
            "kind": "dal_entrapment_evidence",
-           "attestation": $023-PtSEouLo.inlined.consensus_operation,
+           "attestation": $023-PtSeouLo.inlined.consensus_operation,
            "consensus_slot": integer ∈ [0, 2^16-1],
            "slot_index": integer ∈ [0, 255],
            "shard_with_proof":
@@ -45807,7 +45811,7 @@ Full description
       || { /* Reveal */
            "kind": "reveal",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -45816,29 +45820,29 @@ Full description
       || { /* Transaction */
            "kind": "transaction",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "amount": $023-PtSEouLo.mutez,
-           "destination": $023-PtSEouLo.contract_id,
+           "amount": $023-PtSeouLo.mutez,
+           "destination": $023-PtSeouLo.contract_id,
            "parameters"?:
-             { "entrypoint": $023-PtSEouLo.entrypoint,
+             { "entrypoint": $023-PtSeouLo.entrypoint,
                "value": any } }
       || { /* Origination */
            "kind": "origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts }
+           "script": $023-PtSeouLo.scripted.contracts }
       || { /* Delegation */
            "kind": "delegation",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -45846,24 +45850,24 @@ Full description
       || { /* Set_deposits_limit */
            "kind": "set_deposits_limit",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "limit"?: $023-PtSEouLo.mutez }
+           "limit"?: $023-PtSeouLo.mutez }
       || { /* Increase_paid_storage */
            "kind": "increase_paid_storage",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "amount": $bignum,
-           "destination": $023-PtSEouLo.contract_id.originated }
+           "destination": $023-PtSeouLo.contract_id.originated }
       || { /* Update_consensus_key */
            "kind": "update_consensus_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -45872,7 +45876,7 @@ Full description
       || { /* Update_companion_key */
            "kind": "update_companion_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -45889,7 +45893,7 @@ Full description
       || { /* Register_global_constant */
            "kind": "register_global_constant",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -45897,20 +45901,20 @@ Full description
       || { /* Transfer_ticket */
            "kind": "transfer_ticket",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "ticket_contents": any,
            "ticket_ty": any,
-           "ticket_ticketer": $023-PtSEouLo.contract_id,
+           "ticket_ticketer": $023-PtSeouLo.contract_id,
            "ticket_amount": $positive_bignum,
-           "destination": $023-PtSEouLo.contract_id,
+           "destination": $023-PtSeouLo.contract_id,
            "entrypoint": $unistring }
       || { /* Dal_publish_commitment */
            "kind": "dal_publish_commitment",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -45921,7 +45925,7 @@ Full description
       || { /* Smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -45932,7 +45936,7 @@ Full description
       || { /* Smart_rollup_add_messages */
            "kind": "smart_rollup_add_messages",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -45940,7 +45944,7 @@ Full description
       || { /* Smart_rollup_cement */
            "kind": "smart_rollup_cement",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -45948,7 +45952,7 @@ Full description
       || { /* Smart_rollup_publish */
            "kind": "smart_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -45961,7 +45965,7 @@ Full description
       || { /* Smart_rollup_refute */
            "kind": "smart_rollup_refute",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -46013,7 +46017,7 @@ Full description
       || { /* Smart_rollup_timeout */
            "kind": "smart_rollup_timeout",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -46024,7 +46028,7 @@ Full description
       || { /* Smart_rollup_execute_outbox_message */
            "kind": "smart_rollup_execute_outbox_message",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -46034,7 +46038,7 @@ Full description
       || { /* Smart_rollup_recover_bond */
            "kind": "smart_rollup_recover_bond",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -46043,7 +46047,7 @@ Full description
       || { /* Zk_rollup_origination */
            "kind": "zk_rollup_origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -46061,7 +46065,7 @@ Full description
       || { /* Zk_rollup_publish */
            "kind": "zk_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -46074,15 +46078,15 @@ Full description
                    "rollup_id": $Zk_rollup_hash,
                    "payload": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                  { /* Some */
-                   "contents": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ty": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ticketer": $023-PtSEouLo.contract_id }
+                   "contents": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ty": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ticketer": $023-PtSeouLo.contract_id }
                  || null
                  /* None */ ] ... ] }
       || { /* Zk_rollup_update */
            "kind": "zk_rollup_update",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -46099,7 +46103,7 @@ Full description
                        "fee": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } ] ... ],
                "fee_pi": { "new_state": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                "proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } }
-    $023-PtSEouLo.scripted.contracts: { "code": any,
+    $023-PtSeouLo.scripted.contracts: { "code": any,
                                         "storage": any }
     $Bls12_381_signature:
       /* A Bls12_381 signature (Base58Check-encoded) */
@@ -46153,20 +46157,20 @@ Full description
       /* 64 bit integers
          Decimal representation of 64 bit integers */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $positive_bignum:
       /* Positive big number
@@ -46430,7 +46434,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -46756,7 +46760,7 @@ Full description
     +-------------+--------------------------------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -46795,7 +46799,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -46807,7 +46811,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -46819,7 +46823,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -46835,9 +46839,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -46849,9 +46853,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -46867,11 +46871,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -46883,11 +46887,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -46903,11 +46907,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -46929,7 +46933,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -46979,11 +46983,11 @@ Full description
     +==========+======================+=================================================+
     | Tag      | 1 byte               | unsigned 8-bit integer                          |
     +----------+----------------------+-------------------------------------------------+
-    | contents | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | contents | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ty       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | ty       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ticketer | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +----------+----------------------+-------------------------------------------------+
 
 
@@ -47365,7 +47369,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -47382,7 +47386,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.scripted.contracts
+    023-PtSeouLo.scripted.contracts
     *******************************
 
     +-----------------------+----------+------------------------------------+
@@ -47398,7 +47402,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.entrypoint (Determined from data, 8-bit tag)
+    023-PtSeouLo.entrypoint (Determined from data, 8-bit tag)
     *********************************************************
 
     default (tag 0)
@@ -47521,7 +47525,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
-    | entrypoint            | Determined from data | $023-PtSEouLo.entrypoint           |
+    | entrypoint            | Determined from data | $023-PtSeouLo.entrypoint           |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -47557,7 +47561,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
     ***********************************************************************************
 
     Preattestation (tag 20)
@@ -47648,7 +47652,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation
+    023-PtSeouLo.inlined.consensus_operation
     ****************************************
 
     +------------+----------------------+----------------------------------------------------+
@@ -47656,7 +47660,7 @@ Full description
     +============+======================+====================================================+
     | branch     | 32 bytes             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
-    | operations | Determined from data | $023-PtSEouLo.inlined.consensus_operation.contents |
+    | operations | Determined from data | $023-PtSeouLo.inlined.consensus_operation.contents |
     +------------+----------------------+----------------------------------------------------+
     | signature  | Variable             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
@@ -47710,7 +47714,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.per_block_votes (1 byte, 8-bit tag)
+    023-PtSeouLo.per_block_votes (1 byte, 8-bit tag)
     ************************************************
 
     case_0 (tag 0)
@@ -47803,7 +47807,7 @@ Full description
     +------+--------+------------------------+
 
 
-    023-PtSEouLo.block_header.alpha.full_header
+    023-PtSeouLo.block_header.alpha.full_header
     *******************************************
 
     +---------------------------------------+----------+-------------------------------------+
@@ -47837,13 +47841,13 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | seed_nonce_hash                       | 32 bytes | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    | per_block_votes                       | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                       | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag)
     *******************************************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -47872,11 +47876,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
 
 
@@ -47890,11 +47894,11 @@ Full description
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh1                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh1                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh2                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh2                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
 
 
@@ -48056,7 +48060,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------------------+-------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
@@ -48144,7 +48148,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -48176,7 +48180,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
 
 
@@ -48272,7 +48276,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
 
 
@@ -48354,11 +48358,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -48700,7 +48704,7 @@ Full description
     +-------------------------------+----------+------------------------------------------------------------------------+
     | branch                        | 32 bytes | bytes                                                                  |
     +-------------------------------+----------+------------------------------------------------------------------------+
-    | contents_and_signature_prefix | Variable | sequence of $023-PtSEouLo.operation.alpha.contents_or_signature_prefix |
+    | contents_and_signature_prefix | Variable | sequence of $023-PtSeouLo.operation.alpha.contents_or_signature_prefix |
     +-------------------------------+----------+------------------------------------------------------------------------+
     | signature_suffix              | 64 bytes | bytes                                                                  |
     +-------------------------------+----------+------------------------------------------------------------------------+
@@ -48728,17 +48732,17 @@ Full description
   
     { "protocol_data":
-        { "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY",
+        { "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh",
           "payload_hash": $value_hash,
           "payload_round": integer ∈ [-2^31-1, 2^31],
           "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
           "seed_nonce_hash"?: $cycle_nonce,
-          "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-          "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+          "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+          "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
           "signature": $Signature.V2 },
       "operations": [ [ $next_operation ... ] ... ] }
-    $023-PtSEouLo.adaptive_issuance_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.block_header.alpha.full_header:
+    $023-PtSeouLo.adaptive_issuance_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.block_header.alpha.full_header:
       /* Shell header
          Block header's shell-related content. It contains information such as
          the block level, its predecessor and timestamp. */
@@ -48754,20 +48758,20 @@ Full description
         "payload_round": integer ∈ [-2^31-1, 2^31],
         "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
         "seed_nonce_hash"?: $cycle_nonce,
-        "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-        "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+        "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+        "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
         "signature": $Signature.V2 }
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.entrypoint:
+    $023-PtSeouLo.entrypoint:
       /* entrypoint
          Named entrypoint to a Michelson smart contract */
       "default"
@@ -48782,12 +48786,12 @@ Full description
       || "set_delegate_parameters"
       || $unistring
       /* named */
-    $023-PtSEouLo.inlined.consensus_operation:
+    $023-PtSeouLo.inlined.consensus_operation:
       /* An operation's shell header. */
       { "branch": $block_hash,
-        "operations": $023-PtSEouLo.inlined.consensus_operation.contents,
+        "operations": $023-PtSeouLo.inlined.consensus_operation.contents,
         "signature"?: $Signature.V2 }
-    $023-PtSEouLo.inlined.consensus_operation.contents:
+    $023-PtSeouLo.inlined.consensus_operation.contents:
       { /* Preattestation */
         "kind": "preattestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -48823,8 +48827,8 @@ Full description
            "committee":
              [ { "slot": integer ∈ [0, 2^16-1],
                  "dal_attestation"?: $bignum } ... ] }
-    $023-PtSEouLo.liquidity_baking_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.liquidity_baking_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -48984,8 +48988,8 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
-    $023-PtSEouLo.operation.alpha.contents:
+    $023-PtSeouLo.mutez: $positive_bignum
+    $023-PtSeouLo.operation.alpha.contents:
       { /* Attestation */
         "kind": "attestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -49024,8 +49028,8 @@ Full description
       || { /* Double_consensus_operation_evidence */
            "kind": "double_consensus_operation_evidence",
            "slot": integer ∈ [0, 2^16-1],
-           "op1": $023-PtSEouLo.inlined.consensus_operation,
-           "op2": $023-PtSEouLo.inlined.consensus_operation }
+           "op1": $023-PtSeouLo.inlined.consensus_operation,
+           "op2": $023-PtSeouLo.inlined.consensus_operation }
       || { /* Seed_nonce_revelation */
            "kind": "seed_nonce_revelation",
            "level": integer ∈ [0, 2^31],
@@ -49036,11 +49040,11 @@ Full description
              [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/, /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ] }
       || { /* Double_baking_evidence */
            "kind": "double_baking_evidence",
-           "bh1": $023-PtSEouLo.block_header.alpha.full_header,
-           "bh2": $023-PtSEouLo.block_header.alpha.full_header }
+           "bh1": $023-PtSeouLo.block_header.alpha.full_header,
+           "bh2": $023-PtSeouLo.block_header.alpha.full_header }
       || { /* Dal_entrapment_evidence */
            "kind": "dal_entrapment_evidence",
-           "attestation": $023-PtSEouLo.inlined.consensus_operation,
+           "attestation": $023-PtSeouLo.inlined.consensus_operation,
            "consensus_slot": integer ∈ [0, 2^16-1],
            "slot_index": integer ∈ [0, 255],
            "shard_with_proof":
@@ -49066,7 +49070,7 @@ Full description
       || { /* Reveal */
            "kind": "reveal",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49075,29 +49079,29 @@ Full description
       || { /* Transaction */
            "kind": "transaction",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "amount": $023-PtSEouLo.mutez,
-           "destination": $023-PtSEouLo.contract_id,
+           "amount": $023-PtSeouLo.mutez,
+           "destination": $023-PtSeouLo.contract_id,
            "parameters"?:
-             { "entrypoint": $023-PtSEouLo.entrypoint,
+             { "entrypoint": $023-PtSeouLo.entrypoint,
                "value": any } }
       || { /* Origination */
            "kind": "origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts }
+           "script": $023-PtSeouLo.scripted.contracts }
       || { /* Delegation */
            "kind": "delegation",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49105,24 +49109,24 @@ Full description
       || { /* Set_deposits_limit */
            "kind": "set_deposits_limit",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "limit"?: $023-PtSEouLo.mutez }
+           "limit"?: $023-PtSeouLo.mutez }
       || { /* Increase_paid_storage */
            "kind": "increase_paid_storage",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "amount": $bignum,
-           "destination": $023-PtSEouLo.contract_id.originated }
+           "destination": $023-PtSeouLo.contract_id.originated }
       || { /* Update_consensus_key */
            "kind": "update_consensus_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49131,7 +49135,7 @@ Full description
       || { /* Update_companion_key */
            "kind": "update_companion_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49148,7 +49152,7 @@ Full description
       || { /* Register_global_constant */
            "kind": "register_global_constant",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49156,20 +49160,20 @@ Full description
       || { /* Transfer_ticket */
            "kind": "transfer_ticket",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "ticket_contents": any,
            "ticket_ty": any,
-           "ticket_ticketer": $023-PtSEouLo.contract_id,
+           "ticket_ticketer": $023-PtSeouLo.contract_id,
            "ticket_amount": $positive_bignum,
-           "destination": $023-PtSEouLo.contract_id,
+           "destination": $023-PtSeouLo.contract_id,
            "entrypoint": $unistring }
       || { /* Dal_publish_commitment */
            "kind": "dal_publish_commitment",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49180,7 +49184,7 @@ Full description
       || { /* Smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49191,7 +49195,7 @@ Full description
       || { /* Smart_rollup_add_messages */
            "kind": "smart_rollup_add_messages",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49199,7 +49203,7 @@ Full description
       || { /* Smart_rollup_cement */
            "kind": "smart_rollup_cement",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49207,7 +49211,7 @@ Full description
       || { /* Smart_rollup_publish */
            "kind": "smart_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49220,7 +49224,7 @@ Full description
       || { /* Smart_rollup_refute */
            "kind": "smart_rollup_refute",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49272,7 +49276,7 @@ Full description
       || { /* Smart_rollup_timeout */
            "kind": "smart_rollup_timeout",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49283,7 +49287,7 @@ Full description
       || { /* Smart_rollup_execute_outbox_message */
            "kind": "smart_rollup_execute_outbox_message",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49293,7 +49297,7 @@ Full description
       || { /* Smart_rollup_recover_bond */
            "kind": "smart_rollup_recover_bond",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49302,7 +49306,7 @@ Full description
       || { /* Zk_rollup_origination */
            "kind": "zk_rollup_origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49320,7 +49324,7 @@ Full description
       || { /* Zk_rollup_publish */
            "kind": "zk_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49333,15 +49337,15 @@ Full description
                    "rollup_id": $Zk_rollup_hash,
                    "payload": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                  { /* Some */
-                   "contents": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ty": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ticketer": $023-PtSEouLo.contract_id }
+                   "contents": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ty": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ticketer": $023-PtSeouLo.contract_id }
                  || null
                  /* None */ ] ... ] }
       || { /* Zk_rollup_update */
            "kind": "zk_rollup_update",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -49358,7 +49362,7 @@ Full description
                        "fee": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } ] ... ],
                "fee_pi": { "new_state": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                "proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } }
-    $023-PtSEouLo.scripted.contracts: { "code": any,
+    $023-PtSeouLo.scripted.contracts: { "code": any,
                                         "storage": any }
     $Bls12_381_signature:
       /* A Bls12_381 signature (Base58Check-encoded) */
@@ -49412,26 +49416,26 @@ Full description
       /* 64 bit integers
          Decimal representation of 64 bit integers */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $next_operation:
       /* An operation's shell header. */
-      { "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY",
+      { "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh",
         "branch": $block_hash,
-        "contents": [ $023-PtSEouLo.operation.alpha.contents ... ],
+        "contents": [ $023-PtSeouLo.operation.alpha.contents ... ],
         "signature"?: $Signature.V2 }
     $positive_bignum:
       /* Positive big number
@@ -49475,7 +49479,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
 
 
-    023-PtSEouLo.per_block_votes (1 byte, 8-bit tag)
+    023-PtSeouLo.per_block_votes (1 byte, 8-bit tag)
     ************************************************
 
     case_0 (tag 0)
@@ -49586,7 +49590,7 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | seed_nonce_hash                       | 32 bytes | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    | per_block_votes                       | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                       | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
@@ -49814,7 +49818,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -50140,7 +50144,7 @@ Full description
     +-------------+--------------------------------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -50179,7 +50183,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -50191,7 +50195,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -50203,7 +50207,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -50219,9 +50223,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -50233,9 +50237,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -50251,11 +50255,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -50267,11 +50271,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -50287,11 +50291,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -50313,7 +50317,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -50363,11 +50367,11 @@ Full description
     +==========+======================+=================================================+
     | Tag      | 1 byte               | unsigned 8-bit integer                          |
     +----------+----------------------+-------------------------------------------------+
-    | contents | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | contents | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ty       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | ty       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ticketer | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +----------+----------------------+-------------------------------------------------+
 
 
@@ -50749,7 +50753,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -50766,7 +50770,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.scripted.contracts
+    023-PtSeouLo.scripted.contracts
     *******************************
 
     +-----------------------+----------+------------------------------------+
@@ -50782,7 +50786,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.entrypoint (Determined from data, 8-bit tag)
+    023-PtSeouLo.entrypoint (Determined from data, 8-bit tag)
     *********************************************************
 
     default (tag 0)
@@ -50905,7 +50909,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
-    | entrypoint            | Determined from data | $023-PtSEouLo.entrypoint           |
+    | entrypoint            | Determined from data | $023-PtSeouLo.entrypoint           |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -50941,7 +50945,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
     ***********************************************************************************
 
     Preattestation (tag 20)
@@ -51032,7 +51036,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation
+    023-PtSeouLo.inlined.consensus_operation
     ****************************************
 
     +------------+----------------------+----------------------------------------------------+
@@ -51040,7 +51044,7 @@ Full description
     +============+======================+====================================================+
     | branch     | 32 bytes             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
-    | operations | Determined from data | $023-PtSEouLo.inlined.consensus_operation.contents |
+    | operations | Determined from data | $023-PtSeouLo.inlined.consensus_operation.contents |
     +------------+----------------------+----------------------------------------------------+
     | signature  | Variable             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
@@ -51094,7 +51098,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.block_header.alpha.full_header
+    023-PtSeouLo.block_header.alpha.full_header
     *******************************************
 
     +---------------------------------------+----------+-------------------------------------+
@@ -51128,13 +51132,13 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | seed_nonce_hash                       | 32 bytes | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    | per_block_votes                       | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                       | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag)
     *******************************************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -51163,11 +51167,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
 
 
@@ -51181,11 +51185,11 @@ Full description
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh1                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh1                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh2                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh2                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
 
 
@@ -51347,7 +51351,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------------------+-------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
@@ -51435,7 +51439,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -51467,7 +51471,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
 
 
@@ -51563,7 +51567,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
 
 
@@ -51645,11 +51649,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -51993,7 +51997,7 @@ Full description
     +-------------------------------+----------+------------------------------------------------------------------------+
     | # bytes in next 2 fields      | 4 bytes  | unsigned 30-bit big-endian integer                                     |
     +-------------------------------+----------+------------------------------------------------------------------------+
-    | contents_and_signature_prefix | Variable | sequence of $023-PtSEouLo.operation.alpha.contents_or_signature_prefix |
+    | contents_and_signature_prefix | Variable | sequence of $023-PtSeouLo.operation.alpha.contents_or_signature_prefix |
     +-------------------------------+----------+------------------------------------------------------------------------+
     | signature_suffix              | 64 bytes | bytes                                                                  |
     +-------------------------------+----------+------------------------------------------------------------------------+
@@ -52239,8 +52243,8 @@ Full description
   
     [ $next_operation ... ]
-    $023-PtSEouLo.adaptive_issuance_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.block_header.alpha.full_header:
+    $023-PtSeouLo.adaptive_issuance_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.block_header.alpha.full_header:
       /* Shell header
          Block header's shell-related content. It contains information such as
          the block level, its predecessor and timestamp. */
@@ -52256,20 +52260,20 @@ Full description
         "payload_round": integer ∈ [-2^31-1, 2^31],
         "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
         "seed_nonce_hash"?: $cycle_nonce,
-        "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-        "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+        "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+        "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
         "signature": $Signature.V2 }
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.entrypoint:
+    $023-PtSeouLo.entrypoint:
       /* entrypoint
          Named entrypoint to a Michelson smart contract */
       "default"
@@ -52284,12 +52288,12 @@ Full description
       || "set_delegate_parameters"
       || $unistring
       /* named */
-    $023-PtSEouLo.inlined.consensus_operation:
+    $023-PtSeouLo.inlined.consensus_operation:
       /* An operation's shell header. */
       { "branch": $block_hash,
-        "operations": $023-PtSEouLo.inlined.consensus_operation.contents,
+        "operations": $023-PtSeouLo.inlined.consensus_operation.contents,
         "signature"?: $Signature.V2 }
-    $023-PtSEouLo.inlined.consensus_operation.contents:
+    $023-PtSeouLo.inlined.consensus_operation.contents:
       { /* Preattestation */
         "kind": "preattestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -52325,8 +52329,8 @@ Full description
            "committee":
              [ { "slot": integer ∈ [0, 2^16-1],
                  "dal_attestation"?: $bignum } ... ] }
-    $023-PtSEouLo.liquidity_baking_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.liquidity_baking_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -52486,8 +52490,8 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
-    $023-PtSEouLo.operation.alpha.contents:
+    $023-PtSeouLo.mutez: $positive_bignum
+    $023-PtSeouLo.operation.alpha.contents:
       { /* Attestation */
         "kind": "attestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -52526,8 +52530,8 @@ Full description
       || { /* Double_consensus_operation_evidence */
            "kind": "double_consensus_operation_evidence",
            "slot": integer ∈ [0, 2^16-1],
-           "op1": $023-PtSEouLo.inlined.consensus_operation,
-           "op2": $023-PtSEouLo.inlined.consensus_operation }
+           "op1": $023-PtSeouLo.inlined.consensus_operation,
+           "op2": $023-PtSeouLo.inlined.consensus_operation }
       || { /* Seed_nonce_revelation */
            "kind": "seed_nonce_revelation",
            "level": integer ∈ [0, 2^31],
@@ -52538,11 +52542,11 @@ Full description
              [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/, /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ] }
       || { /* Double_baking_evidence */
            "kind": "double_baking_evidence",
-           "bh1": $023-PtSEouLo.block_header.alpha.full_header,
-           "bh2": $023-PtSEouLo.block_header.alpha.full_header }
+           "bh1": $023-PtSeouLo.block_header.alpha.full_header,
+           "bh2": $023-PtSeouLo.block_header.alpha.full_header }
       || { /* Dal_entrapment_evidence */
            "kind": "dal_entrapment_evidence",
-           "attestation": $023-PtSEouLo.inlined.consensus_operation,
+           "attestation": $023-PtSeouLo.inlined.consensus_operation,
            "consensus_slot": integer ∈ [0, 2^16-1],
            "slot_index": integer ∈ [0, 255],
            "shard_with_proof":
@@ -52568,7 +52572,7 @@ Full description
       || { /* Reveal */
            "kind": "reveal",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52577,29 +52581,29 @@ Full description
       || { /* Transaction */
            "kind": "transaction",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "amount": $023-PtSEouLo.mutez,
-           "destination": $023-PtSEouLo.contract_id,
+           "amount": $023-PtSeouLo.mutez,
+           "destination": $023-PtSeouLo.contract_id,
            "parameters"?:
-             { "entrypoint": $023-PtSEouLo.entrypoint,
+             { "entrypoint": $023-PtSeouLo.entrypoint,
                "value": any } }
       || { /* Origination */
            "kind": "origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts }
+           "script": $023-PtSeouLo.scripted.contracts }
       || { /* Delegation */
            "kind": "delegation",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52607,24 +52611,24 @@ Full description
       || { /* Set_deposits_limit */
            "kind": "set_deposits_limit",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "limit"?: $023-PtSEouLo.mutez }
+           "limit"?: $023-PtSeouLo.mutez }
       || { /* Increase_paid_storage */
            "kind": "increase_paid_storage",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "amount": $bignum,
-           "destination": $023-PtSEouLo.contract_id.originated }
+           "destination": $023-PtSeouLo.contract_id.originated }
       || { /* Update_consensus_key */
            "kind": "update_consensus_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52633,7 +52637,7 @@ Full description
       || { /* Update_companion_key */
            "kind": "update_companion_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52650,7 +52654,7 @@ Full description
       || { /* Register_global_constant */
            "kind": "register_global_constant",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52658,20 +52662,20 @@ Full description
       || { /* Transfer_ticket */
            "kind": "transfer_ticket",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "ticket_contents": any,
            "ticket_ty": any,
-           "ticket_ticketer": $023-PtSEouLo.contract_id,
+           "ticket_ticketer": $023-PtSeouLo.contract_id,
            "ticket_amount": $positive_bignum,
-           "destination": $023-PtSEouLo.contract_id,
+           "destination": $023-PtSeouLo.contract_id,
            "entrypoint": $unistring }
       || { /* Dal_publish_commitment */
            "kind": "dal_publish_commitment",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52682,7 +52686,7 @@ Full description
       || { /* Smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52693,7 +52697,7 @@ Full description
       || { /* Smart_rollup_add_messages */
            "kind": "smart_rollup_add_messages",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52701,7 +52705,7 @@ Full description
       || { /* Smart_rollup_cement */
            "kind": "smart_rollup_cement",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52709,7 +52713,7 @@ Full description
       || { /* Smart_rollup_publish */
            "kind": "smart_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52722,7 +52726,7 @@ Full description
       || { /* Smart_rollup_refute */
            "kind": "smart_rollup_refute",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52774,7 +52778,7 @@ Full description
       || { /* Smart_rollup_timeout */
            "kind": "smart_rollup_timeout",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52785,7 +52789,7 @@ Full description
       || { /* Smart_rollup_execute_outbox_message */
            "kind": "smart_rollup_execute_outbox_message",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52795,7 +52799,7 @@ Full description
       || { /* Smart_rollup_recover_bond */
            "kind": "smart_rollup_recover_bond",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52804,7 +52808,7 @@ Full description
       || { /* Zk_rollup_origination */
            "kind": "zk_rollup_origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52822,7 +52826,7 @@ Full description
       || { /* Zk_rollup_publish */
            "kind": "zk_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52835,15 +52839,15 @@ Full description
                    "rollup_id": $Zk_rollup_hash,
                    "payload": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                  { /* Some */
-                   "contents": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ty": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ticketer": $023-PtSEouLo.contract_id }
+                   "contents": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ty": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ticketer": $023-PtSeouLo.contract_id }
                  || null
                  /* None */ ] ... ] }
       || { /* Zk_rollup_update */
            "kind": "zk_rollup_update",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -52860,7 +52864,7 @@ Full description
                        "fee": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } ] ... ],
                "fee_pi": { "new_state": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                "proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } }
-    $023-PtSEouLo.scripted.contracts: { "code": any,
+    $023-PtSeouLo.scripted.contracts: { "code": any,
                                         "storage": any }
     $Bls12_381_signature:
       /* A Bls12_381 signature (Base58Check-encoded) */
@@ -52914,26 +52918,26 @@ Full description
       /* 64 bit integers
          Decimal representation of 64 bit integers */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $next_operation:
       /* An operation's shell header. */
-      { "protocol": "PtSEouLov7Fp6XoqXUBqd7XzggUpUarSMcSUsR5MarqspqiuQBY",
+      { "protocol": "PtSeouLouXkxhg39oWzjxDWaCydNfR3RxCUrNe4Q9Ro8BTehcbh",
         "branch": $block_hash,
-        "contents": [ $023-PtSEouLo.operation.alpha.contents ... ],
+        "contents": [ $023-PtSeouLo.operation.alpha.contents ... ],
         "signature"?: $Signature.V2 }
     $positive_bignum:
       /* Positive big number
@@ -53197,7 +53201,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -53523,7 +53527,7 @@ Full description
     +-------------+--------------------------------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -53562,7 +53566,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -53574,7 +53578,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -53586,7 +53590,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -53602,9 +53606,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -53616,9 +53620,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -53634,11 +53638,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -53650,11 +53654,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -53670,11 +53674,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -53696,7 +53700,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -53746,11 +53750,11 @@ Full description
     +==========+======================+=================================================+
     | Tag      | 1 byte               | unsigned 8-bit integer                          |
     +----------+----------------------+-------------------------------------------------+
-    | contents | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | contents | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ty       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | ty       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ticketer | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +----------+----------------------+-------------------------------------------------+
 
 
@@ -54132,7 +54136,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -54149,7 +54153,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.scripted.contracts
+    023-PtSeouLo.scripted.contracts
     *******************************
 
     +-----------------------+----------+------------------------------------+
@@ -54165,7 +54169,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.entrypoint (Determined from data, 8-bit tag)
+    023-PtSeouLo.entrypoint (Determined from data, 8-bit tag)
     *********************************************************
 
     default (tag 0)
@@ -54288,7 +54292,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
-    | entrypoint            | Determined from data | $023-PtSEouLo.entrypoint           |
+    | entrypoint            | Determined from data | $023-PtSeouLo.entrypoint           |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -54324,7 +54328,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
     ***********************************************************************************
 
     Preattestation (tag 20)
@@ -54415,7 +54419,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation
+    023-PtSeouLo.inlined.consensus_operation
     ****************************************
 
     +------------+----------------------+----------------------------------------------------+
@@ -54423,7 +54427,7 @@ Full description
     +============+======================+====================================================+
     | branch     | 32 bytes             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
-    | operations | Determined from data | $023-PtSEouLo.inlined.consensus_operation.contents |
+    | operations | Determined from data | $023-PtSeouLo.inlined.consensus_operation.contents |
     +------------+----------------------+----------------------------------------------------+
     | signature  | Variable             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
@@ -54477,7 +54481,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.per_block_votes (1 byte, 8-bit tag)
+    023-PtSeouLo.per_block_votes (1 byte, 8-bit tag)
     ************************************************
 
     case_0 (tag 0)
@@ -54570,7 +54574,7 @@ Full description
     +------+--------+------------------------+
 
 
-    023-PtSEouLo.block_header.alpha.full_header
+    023-PtSeouLo.block_header.alpha.full_header
     *******************************************
 
     +---------------------------------------+----------+-------------------------------------+
@@ -54604,13 +54608,13 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | seed_nonce_hash                       | 32 bytes | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    | per_block_votes                       | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                       | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag)
     *******************************************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -54639,11 +54643,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
 
 
@@ -54657,11 +54661,11 @@ Full description
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh1                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh1                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh2                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh2                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
 
 
@@ -54823,7 +54827,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------------------+-------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
@@ -54911,7 +54915,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -54943,7 +54947,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
 
 
@@ -55039,7 +55043,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
 
 
@@ -55121,11 +55125,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -55469,7 +55473,7 @@ Full description
     +-------------------------------+----------+------------------------------------------------------------------------+
     | # bytes in next 2 fields      | 4 bytes  | unsigned 30-bit big-endian integer                                     |
     +-------------------------------+----------+------------------------------------------------------------------------+
-    | contents_and_signature_prefix | Variable | sequence of $023-PtSEouLo.operation.alpha.contents_or_signature_prefix |
+    | contents_and_signature_prefix | Variable | sequence of $023-PtSeouLo.operation.alpha.contents_or_signature_prefix |
     +-------------------------------+----------+------------------------------------------------------------------------+
     | signature_suffix              | 64 bytes | bytes                                                                  |
     +-------------------------------+----------+------------------------------------------------------------------------+
@@ -55478,50 +55482,50 @@ Full description
     
-    [ $023-PtSEouLo.operation.alpha.operation_with_metadata ... ]
+    [ $023-PtSeouLo.operation.alpha.operation_with_metadata ... ]
     /* preapplied_operations_encoding_v1 */
-    $023-PtSEouLo.adaptive_issuance_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.apply_internal_results.alpha.operation_result:
+    $023-PtSeouLo.adaptive_issuance_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.apply_internal_results.alpha.operation_result:
       { /* transaction */
         "kind": "transaction",
-        "source": $023-PtSEouLo.transaction_destination,
+        "source": $023-PtSeouLo.transaction_destination,
         "nonce": integer ∈ [0, 2^16-1],
-        "amount": $023-PtSEouLo.mutez,
-        "destination": $023-PtSEouLo.transaction_destination,
-        "parameters"?: { "entrypoint": $023-PtSEouLo.entrypoint,
+        "amount": $023-PtSeouLo.mutez,
+        "destination": $023-PtSeouLo.transaction_destination,
+        "parameters"?: { "entrypoint": $023-PtSeouLo.entrypoint,
                          "value": any },
         "result":
-          $023-PtSEouLo.operation.alpha.internal_operation_result.transaction }
+          $023-PtSeouLo.operation.alpha.internal_operation_result.transaction }
       || { /* origination */
            "kind": "origination",
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts,
+           "script": $023-PtSeouLo.scripted.contracts,
            "result":
-             $023-PtSEouLo.operation.alpha.internal_operation_result.origination }
+             $023-PtSeouLo.operation.alpha.internal_operation_result.origination }
       || { /* delegation */
            "kind": "delegation",
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
            "delegate"?: $Signature.Public_key_hash,
            "result":
-             $023-PtSEouLo.operation.alpha.internal_operation_result.delegation }
+             $023-PtSeouLo.operation.alpha.internal_operation_result.delegation }
       || { /* event */
            "kind": "event",
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
-           "type": $micheline.023-PtSEouLo.michelson_v1.expression,
-           "tag"?: $023-PtSEouLo.entrypoint,
-           "payload"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+           "type": $micheline.023-PtSeouLo.michelson_v1.expression,
+           "tag"?: $023-PtSeouLo.entrypoint,
+           "payload"?: $micheline.023-PtSeouLo.michelson_v1.expression,
            "result":
-             $023-PtSEouLo.operation.alpha.internal_operation_result.event }
-    $023-PtSEouLo.big_map_id:
+             $023-PtSeouLo.operation.alpha.internal_operation_result.event }
+    $023-PtSeouLo.big_map_id:
       /* Big map identifier
          A big map identifier */
       $bignum
-    $023-PtSEouLo.block_header.alpha.full_header:
+    $023-PtSeouLo.block_header.alpha.full_header:
       /* Shell header
          Block header's shell-related content. It contains information such as
          the block level, its predecessor and timestamp. */
@@ -55537,23 +55541,23 @@ Full description
         "payload_round": integer ∈ [-2^31-1, 2^31],
         "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
         "seed_nonce_hash"?: $cycle_nonce,
-        "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-        "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+        "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+        "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
         "signature": $Signature.V2 }
-    $023-PtSEouLo.bond_id:
+    $023-PtSeouLo.bond_id:
       { /* Smart_rollup_bond_id */
         "smart_rollup": $smart_rollup_address }
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.entrypoint:
+    $023-PtSeouLo.entrypoint:
       /* entrypoint
          Named entrypoint to a Michelson smart contract */
       "default"
@@ -55568,19 +55572,19 @@ Full description
       || "set_delegate_parameters"
       || $unistring
       /* named */
-    $023-PtSEouLo.error:
+    $023-PtSeouLo.error:
       /* The full list of RPC errors would be too long to include.
          It is available at RPC `/errors` (GET).
          Errors specific to protocol Alpha have an id that starts with
          `proto.alpha`. */
       any
-    $023-PtSEouLo.frozen_staker:
+    $023-PtSeouLo.frozen_staker:
       /* frozen_staker
          Abstract notion of staker used in operation receipts for frozen
          deposits, either a single staker or all the stakers delegating to some
          delegate. */
       { /* Single */
-        "contract": $023-PtSEouLo.contract_id,
+        "contract": $023-PtSeouLo.contract_id,
         "delegate": $Signature.Public_key_hash }
       || { /* Shared */
            "delegate": $Signature.Public_key_hash }
@@ -55588,12 +55592,12 @@ Full description
            "baker_own_stake": $Signature.Public_key_hash }
       || { /* Baker_edge */
            "baker_edge": $Signature.Public_key_hash }
-    $023-PtSEouLo.inlined.consensus_operation:
+    $023-PtSeouLo.inlined.consensus_operation:
       /* An operation's shell header. */
       { "branch": $block_hash,
-        "operations": $023-PtSEouLo.inlined.consensus_operation.contents,
+        "operations": $023-PtSeouLo.inlined.consensus_operation.contents,
         "signature"?: $Signature.V2 }
-    $023-PtSEouLo.inlined.consensus_operation.contents:
+    $023-PtSeouLo.inlined.consensus_operation.contents:
       { /* Preattestation */
         "kind": "preattestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -55629,39 +55633,39 @@ Full description
            "committee":
              [ { "slot": integer ∈ [0, 2^16-1],
                  "dal_attestation"?: $bignum } ... ] }
-    $023-PtSEouLo.lazy_storage_diff:
+    $023-PtSeouLo.lazy_storage_diff:
       [ { /* big_map */
           "kind": "big_map",
-          "id": $023-PtSEouLo.big_map_id,
+          "id": $023-PtSeouLo.big_map_id,
           "diff":
             { /* update */
               "action": "update",
               "updates":
                 [ { "key_hash": $script_expr,
-                    "key": $micheline.023-PtSEouLo.michelson_v1.expression,
-                    "value"?: $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
+                    "key": $micheline.023-PtSeouLo.michelson_v1.expression,
+                    "value"?: $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
             || { /* remove */
                  "action": "remove" }
             || { /* copy */
                  "action": "copy",
-                 "source": $023-PtSEouLo.big_map_id,
+                 "source": $023-PtSeouLo.big_map_id,
                  "updates":
                    [ { "key_hash": $script_expr,
-                       "key": $micheline.023-PtSEouLo.michelson_v1.expression,
+                       "key": $micheline.023-PtSeouLo.michelson_v1.expression,
                        "value"?:
-                         $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
+                         $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
             || { /* alloc */
                  "action": "alloc",
                  "updates":
                    [ { "key_hash": $script_expr,
-                       "key": $micheline.023-PtSEouLo.michelson_v1.expression,
+                       "key": $micheline.023-PtSeouLo.michelson_v1.expression,
                        "value"?:
-                         $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
-                 "key_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-                 "value_type": $micheline.023-PtSEouLo.michelson_v1.expression } }
+                         $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
+                 "key_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+                 "value_type": $micheline.023-PtSeouLo.michelson_v1.expression } }
         || { /* sapling_state */
              "kind": "sapling_state",
-             "id": $023-PtSEouLo.sapling_state_id,
+             "id": $023-PtSeouLo.sapling_state_id,
              "diff":
                { /* update */
                  "action": "update",
@@ -55674,7 +55678,7 @@ Full description
                     "action": "remove" }
                || { /* copy */
                     "action": "copy",
-                    "source": $023-PtSEouLo.sapling_state_id,
+                    "source": $023-PtSeouLo.sapling_state_id,
                     "updates":
                       { "commitments_and_ciphertexts":
                           [ [ $sapling.transaction.commitment,
@@ -55688,8 +55692,8 @@ Full description
                               $sapling.transaction.ciphertext ] ... ],
                         "nullifiers": [ $sapling.transaction.nullifier ... ] },
                     "memo_size": integer ∈ [0, 2^16-1] } } ... ]
-    $023-PtSEouLo.liquidity_baking_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.liquidity_baking_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -55849,8 +55853,8 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
-    $023-PtSEouLo.operation.alpha.contents:
+    $023-PtSeouLo.mutez: $positive_bignum
+    $023-PtSeouLo.operation.alpha.contents:
       { /* Attestation */
         "kind": "attestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -55889,8 +55893,8 @@ Full description
       || { /* Double_consensus_operation_evidence */
            "kind": "double_consensus_operation_evidence",
            "slot": integer ∈ [0, 2^16-1],
-           "op1": $023-PtSEouLo.inlined.consensus_operation,
-           "op2": $023-PtSEouLo.inlined.consensus_operation }
+           "op1": $023-PtSeouLo.inlined.consensus_operation,
+           "op2": $023-PtSeouLo.inlined.consensus_operation }
       || { /* Seed_nonce_revelation */
            "kind": "seed_nonce_revelation",
            "level": integer ∈ [0, 2^31],
@@ -55901,11 +55905,11 @@ Full description
              [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/, /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ] }
       || { /* Double_baking_evidence */
            "kind": "double_baking_evidence",
-           "bh1": $023-PtSEouLo.block_header.alpha.full_header,
-           "bh2": $023-PtSEouLo.block_header.alpha.full_header }
+           "bh1": $023-PtSeouLo.block_header.alpha.full_header,
+           "bh2": $023-PtSeouLo.block_header.alpha.full_header }
       || { /* Dal_entrapment_evidence */
            "kind": "dal_entrapment_evidence",
-           "attestation": $023-PtSEouLo.inlined.consensus_operation,
+           "attestation": $023-PtSeouLo.inlined.consensus_operation,
            "consensus_slot": integer ∈ [0, 2^16-1],
            "slot_index": integer ∈ [0, 255],
            "shard_with_proof":
@@ -55931,7 +55935,7 @@ Full description
       || { /* Reveal */
            "kind": "reveal",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -55940,29 +55944,29 @@ Full description
       || { /* Transaction */
            "kind": "transaction",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "amount": $023-PtSEouLo.mutez,
-           "destination": $023-PtSEouLo.contract_id,
+           "amount": $023-PtSeouLo.mutez,
+           "destination": $023-PtSeouLo.contract_id,
            "parameters"?:
-             { "entrypoint": $023-PtSEouLo.entrypoint,
+             { "entrypoint": $023-PtSeouLo.entrypoint,
                "value": any } }
       || { /* Origination */
            "kind": "origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts }
+           "script": $023-PtSeouLo.scripted.contracts }
       || { /* Delegation */
            "kind": "delegation",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -55970,24 +55974,24 @@ Full description
       || { /* Set_deposits_limit */
            "kind": "set_deposits_limit",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "limit"?: $023-PtSEouLo.mutez }
+           "limit"?: $023-PtSeouLo.mutez }
       || { /* Increase_paid_storage */
            "kind": "increase_paid_storage",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "amount": $bignum,
-           "destination": $023-PtSEouLo.contract_id.originated }
+           "destination": $023-PtSeouLo.contract_id.originated }
       || { /* Update_consensus_key */
            "kind": "update_consensus_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -55996,7 +56000,7 @@ Full description
       || { /* Update_companion_key */
            "kind": "update_companion_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56013,7 +56017,7 @@ Full description
       || { /* Register_global_constant */
            "kind": "register_global_constant",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56021,20 +56025,20 @@ Full description
       || { /* Transfer_ticket */
            "kind": "transfer_ticket",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "ticket_contents": any,
            "ticket_ty": any,
-           "ticket_ticketer": $023-PtSEouLo.contract_id,
+           "ticket_ticketer": $023-PtSeouLo.contract_id,
            "ticket_amount": $positive_bignum,
-           "destination": $023-PtSEouLo.contract_id,
+           "destination": $023-PtSeouLo.contract_id,
            "entrypoint": $unistring }
       || { /* Dal_publish_commitment */
            "kind": "dal_publish_commitment",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56045,7 +56049,7 @@ Full description
       || { /* Smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56056,7 +56060,7 @@ Full description
       || { /* Smart_rollup_add_messages */
            "kind": "smart_rollup_add_messages",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56064,7 +56068,7 @@ Full description
       || { /* Smart_rollup_cement */
            "kind": "smart_rollup_cement",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56072,7 +56076,7 @@ Full description
       || { /* Smart_rollup_publish */
            "kind": "smart_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56085,7 +56089,7 @@ Full description
       || { /* Smart_rollup_refute */
            "kind": "smart_rollup_refute",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56137,7 +56141,7 @@ Full description
       || { /* Smart_rollup_timeout */
            "kind": "smart_rollup_timeout",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56148,7 +56152,7 @@ Full description
       || { /* Smart_rollup_execute_outbox_message */
            "kind": "smart_rollup_execute_outbox_message",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56158,7 +56162,7 @@ Full description
       || { /* Smart_rollup_recover_bond */
            "kind": "smart_rollup_recover_bond",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56167,7 +56171,7 @@ Full description
       || { /* Zk_rollup_origination */
            "kind": "zk_rollup_origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56185,7 +56189,7 @@ Full description
       || { /* Zk_rollup_publish */
            "kind": "zk_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56198,15 +56202,15 @@ Full description
                    "rollup_id": $Zk_rollup_hash,
                    "payload": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                  { /* Some */
-                   "contents": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ty": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ticketer": $023-PtSEouLo.contract_id }
+                   "contents": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ty": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ticketer": $023-PtSeouLo.contract_id }
                  || null
                  /* None */ ] ... ] }
       || { /* Zk_rollup_update */
            "kind": "zk_rollup_update",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56223,137 +56227,137 @@ Full description
                        "fee": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } ] ... ],
                "fee_pi": { "new_state": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                "proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } }
-    $023-PtSEouLo.operation.alpha.internal_operation_result.delegation:
+    $023-PtSeouLo.operation.alpha.internal_operation_result.delegation:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.internal_operation_result.event:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.internal_operation_result.event:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.internal_operation_result.origination:
+    $023-PtSeouLo.operation.alpha.internal_operation_result.origination:
       { /* Applied */
         "status": "applied",
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "originated_contracts"?:
-             [ $023-PtSEouLo.contract_id.originated ... ],
+             [ $023-PtSeouLo.contract_id.originated ... ],
            "consumed_milligas"?: $positive_bignum,
            "storage_size"?: $bignum,
            "paid_storage_size_diff"?: $bignum,
-           "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
-    $023-PtSEouLo.operation.alpha.internal_operation_result.transaction:
+           "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
+    $023-PtSeouLo.operation.alpha.internal_operation_result.transaction:
       /* Applied */
       { /* To_contract */
         "status": "applied",
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_receipt"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "status": "applied",
            "consumed_milligas"?: $positive_bignum,
            "ticket_receipt":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || /* Backtracked */
       { /* To_contract */
         "status": "backtracked",
-        "errors"?: [ $023-PtSEouLo.error ... ],
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "errors"?: [ $023-PtSeouLo.error ... ],
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_receipt"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "ticket_receipt":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
-    $023-PtSEouLo.operation.alpha.operation_contents_and_result:
+    $023-PtSeouLo.operation.alpha.operation_contents_and_result:
       { /* Attestation */
         "kind": "attestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -56362,7 +56366,7 @@ Full description
         "block_payload_hash": $value_hash,
         "metadata":
           { "balance_updates"?:
-              $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+              $023-PtSeouLo.operation_metadata.alpha.balance_updates,
             "delegate": $Signature.Public_key_hash,
             "consensus_power": integer ∈ [-2^30, 2^30],
             "consensus_key": $Signature.Public_key_hash } }
@@ -56375,7 +56379,7 @@ Full description
            "dal_attestation": $bignum,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "delegate": $Signature.Public_key_hash,
                "consensus_power": integer ∈ [-2^30, 2^30],
                "consensus_key": $Signature.Public_key_hash } }
@@ -56387,7 +56391,7 @@ Full description
            "block_payload_hash": $value_hash,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "delegate": $Signature.Public_key_hash,
                "consensus_power": integer ∈ [-2^30, 2^30],
                "consensus_key": $Signature.Public_key_hash } }
@@ -56402,11 +56406,12 @@ Full description
                  "dal_attestation"?: $bignum } ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "committee":
                  [ { "delegate": $Signature.Public_key_hash,
-                     "consensus_pkh": $Signature.Public_key_hash } ... ],
-               "consensus_power": integer ∈ [-2^30, 2^30] } }
+                     "consensus_pkh": $Signature.Public_key_hash,
+                     "consensus_power": integer ∈ [-2^30, 2^30] } ... ],
+               "total_consensus_power": integer ∈ [-2^30, 2^30] } }
       || { /* Preattestations_aggregate */
            "kind": "preattestations_aggregate",
            "consensus_content":
@@ -56416,16 +56421,17 @@ Full description
            "committee": [ integer ∈ [0, 2^16-1] ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "committee":
                  [ { "delegate": $Signature.Public_key_hash,
-                     "consensus_pkh": $Signature.Public_key_hash } ... ],
-               "consensus_power": integer ∈ [-2^30, 2^30] } }
+                     "consensus_pkh": $Signature.Public_key_hash,
+                     "consensus_power": integer ∈ [-2^30, 2^30] } ... ],
+               "total_consensus_power": integer ∈ [-2^30, 2^30] } }
       || { /* Double_consensus_operation_evidence */
            "kind": "double_consensus_operation_evidence",
            "slot": integer ∈ [0, 2^16-1],
-           "op1": $023-PtSEouLo.inlined.consensus_operation,
-           "op2": $023-PtSEouLo.inlined.consensus_operation,
+           "op1": $023-PtSeouLo.inlined.consensus_operation,
+           "op2": $023-PtSeouLo.inlined.consensus_operation,
            "metadata":
              { "punished_delegate": $Signature.Public_key_hash,
                "rewarded_delegate": $Signature.Public_key_hash,
@@ -56435,7 +56441,7 @@ Full description
                    "kind": "attestation" | "block" | "preattestation" } } }
       || { /* Dal_entrapment_evidence */
            "kind": "dal_entrapment_evidence",
-           "attestation": $023-PtSEouLo.inlined.consensus_operation,
+           "attestation": $023-PtSeouLo.inlined.consensus_operation,
            "consensus_slot": integer ∈ [0, 2^16-1],
            "slot_index": integer ∈ [0, 255],
            "shard_with_proof":
@@ -56445,25 +56451,25 @@ Full description
                "proof": $DAL_commitment },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates } }
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates } }
       || { /* Seed_nonce_revelation */
            "kind": "seed_nonce_revelation",
            "level": integer ∈ [0, 2^31],
            "nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates } }
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates } }
       || { /* Vdf_revelation */
            "kind": "vdf_revelation",
            "solution":
              [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/, /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates } }
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates } }
       || { /* Double_baking_evidence */
            "kind": "double_baking_evidence",
-           "bh1": $023-PtSEouLo.block_header.alpha.full_header,
-           "bh2": $023-PtSEouLo.block_header.alpha.full_header,
+           "bh1": $023-PtSeouLo.block_header.alpha.full_header,
+           "bh2": $023-PtSeouLo.block_header.alpha.full_header,
            "metadata":
              { "punished_delegate": $Signature.Public_key_hash,
                "rewarded_delegate": $Signature.Public_key_hash,
@@ -56477,7 +56483,7 @@ Full description
            "secret": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates } }
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates } }
       || { /* Proposals */
            "kind": "proposals",
            "source": $Signature.Public_key_hash,
@@ -56498,12 +56504,12 @@ Full description
            "destination": $Signature.Public_key_hash,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "allocated_destination_contract"?: boolean } }
       || { /* Reveal */
            "kind": "reveal",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56511,112 +56517,112 @@ Full description
            "proof"?: $Bls12_381_signature,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.reveal,
+                 $023-PtSeouLo.operation.alpha.operation_result.reveal,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Transaction */
            "kind": "transaction",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "amount": $023-PtSEouLo.mutez,
-           "destination": $023-PtSEouLo.contract_id,
+           "amount": $023-PtSeouLo.mutez,
+           "destination": $023-PtSeouLo.contract_id,
            "parameters"?:
-             { "entrypoint": $023-PtSEouLo.entrypoint,
+             { "entrypoint": $023-PtSeouLo.entrypoint,
                "value": any },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.transaction,
+                 $023-PtSeouLo.operation.alpha.operation_result.transaction,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Origination */
            "kind": "origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts,
+           "script": $023-PtSeouLo.scripted.contracts,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.origination,
+                 $023-PtSeouLo.operation.alpha.operation_result.origination,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Delegation */
            "kind": "delegation",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "delegate"?: $Signature.Public_key_hash,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.delegation,
+                 $023-PtSeouLo.operation.alpha.operation_result.delegation,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Register_global_constant */
            "kind": "register_global_constant",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "value": any,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.register_global_constant,
+                 $023-PtSeouLo.operation.alpha.operation_result.register_global_constant,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Set_deposits_limit */
            "kind": "set_deposits_limit",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "limit"?: $023-PtSEouLo.mutez,
+           "limit"?: $023-PtSeouLo.mutez,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.set_deposits_limit,
+                 $023-PtSeouLo.operation.alpha.operation_result.set_deposits_limit,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Increase_paid_storage */
            "kind": "increase_paid_storage",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "amount": $bignum,
-           "destination": $023-PtSEouLo.contract_id.originated,
+           "destination": $023-PtSeouLo.contract_id.originated,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.increase_paid_storage,
+                 $023-PtSeouLo.operation.alpha.operation_result.increase_paid_storage,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Update_consensus_key */
            "kind": "update_consensus_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56624,15 +56630,15 @@ Full description
            "proof"?: $Bls12_381_signature,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.update_consensus_key,
+                 $023-PtSeouLo.operation.alpha.operation_result.update_consensus_key,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Update_companion_key */
            "kind": "update_companion_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56640,35 +56646,35 @@ Full description
            "proof"?: $Bls12_381_signature,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.update_consensus_key,
+                 $023-PtSeouLo.operation.alpha.operation_result.update_consensus_key,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Transfer_ticket */
            "kind": "transfer_ticket",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "ticket_contents": any,
            "ticket_ty": any,
-           "ticket_ticketer": $023-PtSEouLo.contract_id,
+           "ticket_ticketer": $023-PtSeouLo.contract_id,
            "ticket_amount": $positive_bignum,
-           "destination": $023-PtSEouLo.contract_id,
+           "destination": $023-PtSeouLo.contract_id,
            "entrypoint": $unistring,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.transfer_ticket,
+                 $023-PtSeouLo.operation.alpha.operation_result.transfer_ticket,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Dal_publish_commitment */
            "kind": "dal_publish_commitment",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56678,15 +56684,15 @@ Full description
                "commitment_proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.dal_publish_commitment,
+                 $023-PtSeouLo.operation.alpha.operation_result.dal_publish_commitment,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56696,45 +56702,45 @@ Full description
            "whitelist"?: [ $Signature.Public_key_hash ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_originate,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_originate,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_add_messages */
            "kind": "smart_rollup_add_messages",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "message": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_add_messages,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_add_messages,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_cement */
            "kind": "smart_rollup_cement",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "rollup": $smart_rollup_address,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_cement,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_cement,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_publish */
            "kind": "smart_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56746,15 +56752,15 @@ Full description
                "number_of_ticks": $int64 },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_publish,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_publish,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_refute */
            "kind": "smart_rollup_refute",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56805,15 +56811,15 @@ Full description
                                 "input_proof_kind": "first_input" } } },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_refute,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_refute,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_timeout */
            "kind": "smart_rollup_timeout",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56823,15 +56829,15 @@ Full description
                "bob": $Signature.Public_key_hash },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_timeout,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_timeout,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_execute_outbox_message */
            "kind": "smart_rollup_execute_outbox_message",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56840,15 +56846,15 @@ Full description
            "output_proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_recover_bond */
            "kind": "smart_rollup_recover_bond",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56856,15 +56862,15 @@ Full description
            "staker": $Signature.Public_key_hash,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_recover_bond,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_recover_bond,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Zk_rollup_origination */
            "kind": "zk_rollup_origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56881,15 +56887,15 @@ Full description
            "nb_ops": integer ∈ [-2^30, 2^30],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_origination,
+                 $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_origination,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Zk_rollup_publish */
            "kind": "zk_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56902,22 +56908,22 @@ Full description
                    "rollup_id": $Zk_rollup_hash,
                    "payload": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                  { /* Some */
-                   "contents": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ty": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ticketer": $023-PtSEouLo.contract_id }
+                   "contents": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ty": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ticketer": $023-PtSeouLo.contract_id }
                  || null
                  /* None */ ] ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_publish,
+                 $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_publish,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Zk_rollup_update */
            "kind": "zk_rollup_update",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -56936,12 +56942,12 @@ Full description
                "proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_update,
+                 $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_update,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
-    $023-PtSEouLo.operation.alpha.operation_result.dal_publish_commitment:
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
+    $023-PtSeouLo.operation.alpha.operation_result.dal_publish_commitment:
       { /* Applied */
         "status": "applied",
         "slot_header":
@@ -56953,12 +56959,12 @@ Full description
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "slot_header":
              { /* v0 */
                "version": "0",
@@ -56966,127 +56972,127 @@ Full description
                "index": integer ∈ [0, 255],
                "commitment": $DAL_commitment },
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.delegation:
+    $023-PtSeouLo.operation.alpha.operation_result.delegation:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.operation_result.increase_paid_storage:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.operation_result.increase_paid_storage:
       { /* Applied */
         "status": "applied",
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.origination:
+    $023-PtSeouLo.operation.alpha.operation_result.origination:
       { /* Applied */
         "status": "applied",
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "originated_contracts"?:
-             [ $023-PtSEouLo.contract_id.originated ... ],
+             [ $023-PtSeouLo.contract_id.originated ... ],
            "consumed_milligas"?: $positive_bignum,
            "storage_size"?: $bignum,
            "paid_storage_size_diff"?: $bignum,
-           "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
-    $023-PtSEouLo.operation.alpha.operation_result.register_global_constant:
+           "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
+    $023-PtSeouLo.operation.alpha.operation_result.register_global_constant:
       { /* Applied */
         "status": "applied",
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "global_address": $script_expr }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum,
            "storage_size"?: $bignum,
            "global_address": $script_expr }
-    $023-PtSEouLo.operation.alpha.operation_result.reveal:
+    $023-PtSeouLo.operation.alpha.operation_result.reveal:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.set_deposits_limit:
+    $023-PtSeouLo.operation.alpha.operation_result.set_deposits_limit:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_add_messages:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_add_messages:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_cement:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_cement:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
@@ -57094,28 +57100,28 @@ Full description
         "commitment_hash": $smart_rollup_commitment_hash }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "inbox_level": integer ∈ [0, 2^31],
            "commitment_hash": $smart_rollup_commitment_hash }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates":
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
         "whitelist_update"?:
           { /* Public */
@@ -57127,22 +57133,22 @@ Full description
         "paid_storage_size_diff"?: $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ],
            "whitelist_update"?:
              { /* Public */
@@ -57152,68 +57158,68 @@ Full description
                   "whitelist": [ $Signature.Public_key_hash ... ] },
            "consumed_milligas"?: $positive_bignum,
            "paid_storage_size_diff"?: $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_originate:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_originate:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "address": $smart_rollup_address,
         "genesis_commitment_hash": $smart_rollup_commitment_hash,
         "consumed_milligas"?: $positive_bignum,
         "size": $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "address": $smart_rollup_address,
            "genesis_commitment_hash": $smart_rollup_commitment_hash,
            "consumed_milligas"?: $positive_bignum,
            "size": $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_publish:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_publish:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
         "staked_hash": $smart_rollup_commitment_hash,
         "published_at_level": integer ∈ [0, 2^31],
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "staked_hash": $smart_rollup_commitment_hash,
            "published_at_level": integer ∈ [0, 2^31],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_recover_bond:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_recover_bond:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_refute:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_refute:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
@@ -57228,15 +57234,15 @@ Full description
                  || { /* Draw */
                       "kind": "draw" } },
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "game_status":
              "ongoing"
@@ -57249,8 +57255,8 @@ Full description
                     || { /* Draw */
                          "kind": "draw" } },
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_timeout:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_timeout:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
@@ -57265,15 +57271,15 @@ Full description
                  || { /* Draw */
                       "kind": "draw" } },
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "game_status":
              "ongoing"
@@ -57286,224 +57292,224 @@ Full description
                     || { /* Draw */
                          "kind": "draw" } },
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.operation_result.transaction:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.operation_result.transaction:
       /* Applied */
       { /* To_contract */
         "status": "applied",
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "status": "applied",
            "consumed_milligas"?: $positive_bignum,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || /* Backtracked */
       { /* To_contract */
         "status": "backtracked",
-        "errors"?: [ $023-PtSEouLo.error ... ],
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "errors"?: [ $023-PtSeouLo.error ... ],
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
-    $023-PtSEouLo.operation.alpha.operation_result.transfer_ticket:
+    $023-PtSeouLo.operation.alpha.operation_result.transfer_ticket:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates":
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
         "consumed_milligas"?: $positive_bignum,
         "paid_storage_size_diff"?: $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ],
            "consumed_milligas"?: $positive_bignum,
            "paid_storage_size_diff"?: $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.update_consensus_key:
+    $023-PtSeouLo.operation.alpha.operation_result.update_consensus_key:
       { /* Applied */
         "status": "applied",
         "kind": boolean,
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "kind": boolean,
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_origination:
+    $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_origination:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "originated_zk_rollup": $Zk_rollup_hash,
         "consumed_milligas"?: $positive_bignum,
         "size": $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "originated_zk_rollup": $Zk_rollup_hash,
            "consumed_milligas"?: $positive_bignum,
            "size": $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_publish:
+    $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_publish:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum,
         "size": $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum,
            "size": $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_update:
+    $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_update:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum,
         "paid_storage_size_diff"?: $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum,
            "paid_storage_size_diff"?: $bignum }
-    $023-PtSEouLo.operation.alpha.operation_with_metadata:
+    $023-PtSeouLo.operation.alpha.operation_with_metadata:
       { /* Operation_with_metadata */
         "contents":
-          [ $023-PtSEouLo.operation.alpha.operation_contents_and_result ... ],
+          [ $023-PtSeouLo.operation.alpha.operation_contents_and_result ... ],
         "signature"?: $Signature.V2 }
       || { /* Operation_without_metadata */
-           "contents": [ $023-PtSEouLo.operation.alpha.contents ... ],
+           "contents": [ $023-PtSeouLo.operation.alpha.contents ... ],
            "signature"?: $Signature.V2 }
-    $023-PtSEouLo.operation_metadata.alpha.balance_updates:
+    $023-PtSeouLo.operation_metadata.alpha.balance_updates:
       [ { /* Contract */
           "kind": "contract",
-          "contract": $023-PtSEouLo.contract_id,
+          "contract": $023-PtSeouLo.contract_id,
           "change": $int64,
           "origin": "block" }
         || { /* Contract */
              "kind": "contract",
-             "contract": $023-PtSEouLo.contract_id,
+             "contract": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "migration" }
         || { /* Contract */
              "kind": "contract",
-             "contract": $023-PtSEouLo.contract_id,
+             "contract": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "subsidy" }
         || { /* Contract */
              "kind": "contract",
-             "contract": $023-PtSEouLo.contract_id,
+             "contract": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "simulation" }
         || { /* Contract */
              "kind": "contract",
-             "contract": $023-PtSEouLo.contract_id,
+             "contract": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash }
@@ -57536,31 +57542,31 @@ Full description
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "block" }
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "migration" }
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "subsidy" }
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "simulation" }
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash }
@@ -57951,36 +57957,36 @@ Full description
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "block" }
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "migration" }
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "subsidy" }
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "simulation" }
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash }
@@ -58039,35 +58045,35 @@ Full description
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "block" }
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "migration" }
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "subsidy" }
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "simulation" }
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "delayed_operation",
@@ -58075,31 +58081,31 @@ Full description
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "block" }
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "migration" }
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "subsidy" }
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "simulation" }
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash }
@@ -58191,23 +58197,23 @@ Full description
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash } ... ]
-    $023-PtSEouLo.sapling_state_id:
+    $023-PtSeouLo.sapling_state_id:
       /* Sapling state identifier
          A sapling state identifier */
       $bignum
-    $023-PtSEouLo.scripted.contracts: { "code": any,
+    $023-PtSeouLo.scripted.contracts: { "code": any,
                                         "storage": any }
-    $023-PtSEouLo.staker:
+    $023-PtSeouLo.staker:
       /* unstaked_frozen_staker
          Abstract notion of staker used in operation receipts for unstaked
          frozen deposits, either a single staker or all the stakers delegating
          to some delegate. */
       { /* Single */
-        "contract": $023-PtSEouLo.contract_id,
+        "contract": $023-PtSeouLo.contract_id,
         "delegate": $Signature.Public_key_hash }
       || { /* Shared */
            "delegate": $Signature.Public_key_hash }
-    $023-PtSEouLo.transaction_destination:
+    $023-PtSeouLo.transaction_destination:
       /* A destination of a transaction
          A destination notation compatible with the contract notation as given
          to an RPC or inside scripts. Can be a base58 implicit contract hash, a
@@ -58272,20 +58278,20 @@ Full description
       /* 64 bit integers
          Decimal representation of 64 bit integers */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $positive_bignum:
       /* Positive big number
@@ -58545,7 +58551,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -58871,7 +58877,7 @@ Full description
     +-------------+--------------------------------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -58910,7 +58916,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -58922,7 +58928,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -58934,7 +58940,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -58950,9 +58956,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -58964,9 +58970,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -58982,11 +58988,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -58998,11 +59004,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -59018,11 +59024,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -59044,7 +59050,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -59094,11 +59100,11 @@ Full description
     +==========+======================+=================================================+
     | Tag      | 1 byte               | unsigned 8-bit integer                          |
     +----------+----------------------+-------------------------------------------------+
-    | contents | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | contents | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ty       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | ty       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ticketer | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +----------+----------------------+-------------------------------------------------+
 
 
@@ -59480,7 +59486,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -59497,7 +59503,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.scripted.contracts
+    023-PtSeouLo.scripted.contracts
     *******************************
 
     +-----------------------+----------+------------------------------------+
@@ -59513,7 +59519,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.entrypoint (Determined from data, 8-bit tag)
+    023-PtSeouLo.entrypoint (Determined from data, 8-bit tag)
     *********************************************************
 
     default (tag 0)
@@ -59636,7 +59642,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
-    | entrypoint            | Determined from data | $023-PtSEouLo.entrypoint           |
+    | entrypoint            | Determined from data | $023-PtSeouLo.entrypoint           |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -59672,7 +59678,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
     ***********************************************************************************
 
     Preattestation (tag 20)
@@ -59763,7 +59769,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation
+    023-PtSeouLo.inlined.consensus_operation
     ****************************************
 
     +------------+----------------------+----------------------------------------------------+
@@ -59771,7 +59777,7 @@ Full description
     +============+======================+====================================================+
     | branch     | 32 bytes             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
-    | operations | Determined from data | $023-PtSEouLo.inlined.consensus_operation.contents |
+    | operations | Determined from data | $023-PtSeouLo.inlined.consensus_operation.contents |
     +------------+----------------------+----------------------------------------------------+
     | signature  | Variable             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
@@ -59825,7 +59831,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.per_block_votes (1 byte, 8-bit tag)
+    023-PtSeouLo.per_block_votes (1 byte, 8-bit tag)
     ************************************************
 
     case_0 (tag 0)
@@ -59918,7 +59924,7 @@ Full description
     +------+--------+------------------------+
 
 
-    023-PtSEouLo.block_header.alpha.full_header
+    023-PtSeouLo.block_header.alpha.full_header
     *******************************************
 
     +---------------------------------------+----------+-------------------------------------+
@@ -59952,13 +59958,13 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | seed_nonce_hash                       | 32 bytes | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    | per_block_votes                       | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                       | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.contents (Determined from data, 8-bit tag)
     ***********************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -59987,11 +59993,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
 
 
@@ -60005,11 +60011,11 @@ Full description
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh1                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh1                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh2                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh2                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
 
 
@@ -60171,7 +60177,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------------------+-------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
@@ -60259,7 +60265,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -60291,7 +60297,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
 
 
@@ -60387,7 +60393,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
 
 
@@ -60469,11 +60475,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -60793,7 +60799,7 @@ Full description
     +---------------+----------------------+------------------------+
 
 
-    023-PtSEouLo.staker (Determined from data, 8-bit tag)
+    023-PtSeouLo.staker (Determined from data, 8-bit tag)
     *****************************************************
 
     Single (tag 0)
@@ -60804,7 +60810,7 @@ Full description
     +==========+==========+===========================+
     | Tag      | 1 byte   | unsigned 8-bit integer    |
     +----------+----------+---------------------------+
-    | contract | 22 bytes | $023-PtSEouLo.contract_id |
+    | contract | 22 bytes | $023-PtSeouLo.contract_id |
     +----------+----------+---------------------------+
     | delegate | 21 bytes | $public_key_hash          |
     +----------+----------+---------------------------+
@@ -60822,7 +60828,7 @@ Full description
     +----------+----------+------------------------+
 
 
-    023-PtSEouLo.bond_id (21 bytes, 8-bit tag)
+    023-PtSeouLo.bond_id (21 bytes, 8-bit tag)
     ******************************************
 
     Smart_rollup_bond_id (tag 1)
@@ -60837,7 +60843,7 @@ Full description
     +--------------+----------+------------------------+
 
 
-    023-PtSEouLo.frozen_staker (Determined from data, 8-bit tag)
+    023-PtSeouLo.frozen_staker (Determined from data, 8-bit tag)
     ************************************************************
 
     Single (tag 0)
@@ -60848,7 +60854,7 @@ Full description
     +==========+==========+===========================+
     | Tag      | 1 byte   | unsigned 8-bit integer    |
     +----------+----------+---------------------------+
-    | contract | 22 bytes | $023-PtSEouLo.contract_id |
+    | contract | 22 bytes | $023-PtSeouLo.contract_id |
     +----------+----------+---------------------------+
     | delegate | 21 bytes | $public_key_hash          |
     +----------+----------+---------------------------+
@@ -60901,7 +60907,7 @@ Full description
     +==========+==========+==================================+
     | Tag      | 1 byte   | unsigned 8-bit integer           |
     +----------+----------+----------------------------------+
-    | contract | 22 bytes | $023-PtSEouLo.contract_id        |
+    | contract | 22 bytes | $023-PtSeouLo.contract_id        |
     +----------+----------+----------------------------------+
     | change   | 8 bytes  | signed 64-bit big-endian integer |
     +----------+----------+----------------------------------+
@@ -60927,7 +60933,7 @@ Full description
     +========+======================+==================================+
     | Tag    | 1 byte               | unsigned 8-bit integer           |
     +--------+----------------------+----------------------------------+
-    | staker | Determined from data | $023-PtSEouLo.frozen_staker      |
+    | staker | Determined from data | $023-PtSeouLo.frozen_staker      |
     +--------+----------------------+----------------------------------+
     | change | 8 bytes              | signed 64-bit big-endian integer |
     +--------+----------------------+----------------------------------+
@@ -61117,9 +61123,9 @@ Full description
     +==========+==========+==================================+
     | Tag      | 1 byte   | unsigned 8-bit integer           |
     +----------+----------+----------------------------------+
-    | contract | 22 bytes | $023-PtSEouLo.contract_id        |
+    | contract | 22 bytes | $023-PtSeouLo.contract_id        |
     +----------+----------+----------------------------------+
-    | bond_id  | 21 bytes | $023-PtSEouLo.bond_id            |
+    | bond_id  | 21 bytes | $023-PtSeouLo.bond_id            |
     +----------+----------+----------------------------------+
     | change   | 8 bytes  | signed 64-bit big-endian integer |
     +----------+----------+----------------------------------+
@@ -61157,7 +61163,7 @@ Full description
     +========+======================+==================================+
     | Tag    | 1 byte               | unsigned 8-bit integer           |
     +--------+----------------------+----------------------------------+
-    | staker | Determined from data | $023-PtSEouLo.staker             |
+    | staker | Determined from data | $023-PtSeouLo.staker             |
     +--------+----------------------+----------------------------------+
     | cycle  | 4 bytes              | signed 32-bit big-endian integer |
     +--------+----------------------+----------------------------------+
@@ -61173,7 +61179,7 @@ Full description
     +===========+==========+==================================+
     | Tag       | 1 byte   | unsigned 8-bit integer           |
     +-----------+----------+----------------------------------+
-    | delegator | 22 bytes | $023-PtSEouLo.contract_id        |
+    | delegator | 22 bytes | $023-PtSeouLo.contract_id        |
     +-----------+----------+----------------------------------+
     | change    | 8 bytes  | signed 64-bit big-endian integer |
     +-----------+----------+----------------------------------+
@@ -61298,7 +61304,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.zk_rollup_update (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.zk_rollup_update (Determined from data, 8-bit tag)
     ************************************************************************************************
 
     Applied (tag 0)
@@ -61309,7 +61315,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -61355,7 +61361,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_62                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -61365,7 +61371,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.transaction_destination (22 bytes, 8-bit tag)
+    023-PtSeouLo.transaction_destination (22 bytes, 8-bit tag)
     **********************************************************
 
     Implicit (tag 0)
@@ -61422,7 +61428,7 @@ Full description
     +----------------+----------+------------------------+
 
 
-    023-PtSEouLo.operation.alpha.internal_operation_result.event (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.internal_operation_result.event (Determined from data, 8-bit tag)
     **********************************************************************************************
 
     Applied (tag 0)
@@ -61477,7 +61483,7 @@ Full description
     +------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.internal_operation_result.delegation (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.internal_operation_result.delegation (Determined from data, 8-bit tag)
     ***************************************************************************************************
 
     Applied (tag 0)
@@ -61490,7 +61496,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                               |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -61534,7 +61540,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -61651,11 +61657,11 @@ Full description
     +=============================+======================+=================================================+
     | key_hash                    | 32 bytes             | bytes                                           |
     +-----------------------------+----------------------+-------------------------------------------------+
-    | key                         | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key                         | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "value" | 1 byte               | boolean (0 for false, 255 for true)             |
     +-----------------------------+----------------------+-------------------------------------------------+
-    | value                       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | value                       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------------+----------------------+-------------------------------------------------+
 
 
@@ -61714,9 +61720,9 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------+
     | updates               | Variable             | sequence of $X_90                               |
     +-----------------------+----------------------+-------------------------------------------------+
-    | key_type              | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key_type              | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------------------+-------------------------------------------------+
-    | value_type            | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | value_type            | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------------------+-------------------------------------------------+
 
 
@@ -61751,7 +61757,7 @@ Full description
     +------+----------------------+------------------------+
 
 
-    023-PtSEouLo.lazy_storage_diff
+    023-PtSeouLo.lazy_storage_diff
     ******************************
 
     +-----------------------+----------+------------------------------------+
@@ -61763,7 +61769,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.internal_operation_result.origination (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.internal_operation_result.origination (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -61774,13 +61780,13 @@ Full description
     +==========================================================================+======================+==================================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer                           |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -61790,7 +61796,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -61830,13 +61836,13 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | errors                                                                   | Determined from data | $X_62                                            |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -61846,7 +61852,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -61856,11 +61862,11 @@ Full description
     +--------------+----------------------+-------------------------------------------------+
     | Name         | Size                 | Contents                                        |
     +==============+======================+=================================================+
-    | ticketer     | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer     | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +--------------+----------------------+-------------------------------------------------+
-    | content_type | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | content_type | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +--------------+----------------------+-------------------------------------------------+
-    | content      | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | content      | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +--------------+----------------------+-------------------------------------------------+
 
 
@@ -61870,7 +61876,7 @@ Full description
     +---------+----------------------+---------------------------------------+
     | Name    | Size                 | Contents                              |
     +=========+======================+=======================================+
-    | account | 22 bytes             | $023-PtSEouLo.transaction_destination |
+    | account | 22 bytes             | $023-PtSeouLo.transaction_destination |
     +---------+----------------------+---------------------------------------+
     | amount  | Determined from data | $Z.t                                  |
     +---------+----------------------+---------------------------------------+
@@ -61903,9 +61909,9 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "storage"                                            | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | storage                                                                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression  |
+    | storage                                                                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -61915,7 +61921,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -61927,7 +61933,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -61947,7 +61953,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.internal_operation_result.transaction (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.internal_operation_result.transaction (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -62002,7 +62008,7 @@ Full description
     +------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.apply_internal_results.alpha.operation_result (Determined from data, 8-bit tag)
+    023-PtSeouLo.apply_internal_results.alpha.operation_result (Determined from data, 8-bit tag)
     ********************************************************************************************
 
     transaction (tag 1)
@@ -62013,19 +62019,19 @@ Full description
     +==================================+======================+=====================================================================+
     | Tag                              | 1 byte               | unsigned 8-bit integer                                              |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
-    | source                           | 22 bytes             | $023-PtSEouLo.transaction_destination                               |
+    | source                           | 22 bytes             | $023-PtSeouLo.transaction_destination                               |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
     | nonce                            | 2 bytes              | unsigned 16-bit big-endian integer                                  |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
     | amount                           | Determined from data | $N.t                                                                |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.transaction_destination                               |
+    | destination                      | 22 bytes             | $023-PtSeouLo.transaction_destination                               |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true)                                 |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
     | parameters                       | Determined from data | $X_32                                                               |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
-    | result                           | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.transaction |
+    | result                           | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.transaction |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
 
 
@@ -62037,7 +62043,7 @@ Full description
     +================================+======================+=====================================================================+
     | Tag                            | 1 byte               | unsigned 8-bit integer                                              |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
-    | source                         | 22 bytes             | $023-PtSEouLo.transaction_destination                               |
+    | source                         | 22 bytes             | $023-PtSeouLo.transaction_destination                               |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
     | nonce                          | 2 bytes              | unsigned 16-bit big-endian integer                                  |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
@@ -62047,9 +62053,9 @@ Full description
     +--------------------------------+----------------------+---------------------------------------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                                                    |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts                                    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts                                    |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
-    | result                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.origination |
+    | result                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.origination |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
 
 
@@ -62061,7 +62067,7 @@ Full description
     +================================+======================+====================================================================+
     | Tag                            | 1 byte               | unsigned 8-bit integer                                             |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
-    | source                         | 22 bytes             | $023-PtSEouLo.transaction_destination                              |
+    | source                         | 22 bytes             | $023-PtSeouLo.transaction_destination                              |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
     | nonce                          | 2 bytes              | unsigned 16-bit big-endian integer                                 |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
@@ -62069,7 +62075,7 @@ Full description
     +--------------------------------+----------------------+--------------------------------------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                                                   |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
-    | result                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.delegation |
+    | result                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.delegation |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
 
 
@@ -62081,21 +62087,21 @@ Full description
     +===============================+======================+===============================================================+
     | Tag                           | 1 byte               | unsigned 8-bit integer                                        |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | source                        | 22 bytes             | $023-PtSEouLo.transaction_destination                         |
+    | source                        | 22 bytes             | $023-PtSeouLo.transaction_destination                         |
     +-------------------------------+----------------------+---------------------------------------------------------------+
     | nonce                         | 2 bytes              | unsigned 16-bit big-endian integer                            |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | type                          | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression               |
+    | type                          | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression               |
     +-------------------------------+----------------------+---------------------------------------------------------------+
     | ? presence of field "tag"     | 1 byte               | boolean (0 for false, 255 for true)                           |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | tag                           | Determined from data | $023-PtSEouLo.entrypoint                                      |
+    | tag                           | Determined from data | $023-PtSeouLo.entrypoint                                      |
     +-------------------------------+----------------------+---------------------------------------------------------------+
     | ? presence of field "payload" | 1 byte               | boolean (0 for false, 255 for true)                           |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | payload                       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression               |
+    | payload                       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression               |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | result                        | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.event |
+    | result                        | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.event |
     +-------------------------------+----------------------+---------------------------------------------------------------+
 
 
@@ -62105,19 +62111,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_update         |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_update         |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.zk_rollup_publish (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.zk_rollup_publish (Determined from data, 8-bit tag)
     *************************************************************************************************
 
     Applied (tag 0)
@@ -62128,7 +62134,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -62174,7 +62180,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_62                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -62190,19 +62196,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_publish        |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_publish        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.zk_rollup_origination (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.zk_rollup_origination (Determined from data, 8-bit tag)
     *****************************************************************************************************
 
     Applied (tag 0)
@@ -62213,7 +62219,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -62261,7 +62267,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_62                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -62279,15 +62285,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_origination    |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_origination    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -62310,7 +62316,7 @@ Full description
     +------------+----------+----------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.dal_publish_commitment (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.dal_publish_commitment (Determined from data, 8-bit tag)
     ******************************************************************************************************
 
     Applied (tag 0)
@@ -62375,19 +62381,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.dal_publish_commitment   |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.dal_publish_commitment   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_recover_bond (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_recover_bond (Determined from data, 8-bit tag)
     *********************************************************************************************************
 
     Applied (tag 0)
@@ -62398,7 +62404,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -62442,7 +62448,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_62                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -62456,15 +62462,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                 |
     +==========================================================================+======================+==========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                       |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                       |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                        |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_recover_bond |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_recover_bond |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                       |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result  |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
 
 
@@ -62493,7 +62499,7 @@ Full description
     +-----------+----------------------+------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message (Determined from data, 8-bit tag)
     *******************************************************************************************************************
 
     Applied (tag 0)
@@ -62504,7 +62510,7 @@ Full description
     +==========================================================================+======================+=====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -62558,7 +62564,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_62                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -62582,15 +62588,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                           |
     +==========================================================================+======================+====================================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                                 |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                                 |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                                 |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result            |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result            |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
 
 
@@ -62669,7 +62675,7 @@ Full description
     +--------+----------------------+------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_timeout (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_timeout (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -62684,7 +62690,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | game_status                                                              | Determined from data | $X_926                             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -62730,7 +62736,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | game_status                                                              | Determined from data | $X_926                              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -62742,19 +62748,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_timeout     |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_timeout     |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_publish (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_publish (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -62771,7 +62777,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | published_at_level                                                       | 4 bytes              | signed 32-bit big-endian integer   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -62819,7 +62825,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | published_at_level                                                       | 4 bytes              | signed 32-bit big-endian integer    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -62831,19 +62837,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_publish     |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_publish     |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_cement (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_cement (Determined from data, 8-bit tag)
     ***************************************************************************************************
 
     Applied (tag 0)
@@ -62912,15 +62918,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_cement      |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_cement      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -62930,19 +62936,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.event           |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.event           |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_originate (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_originate (Determined from data, 8-bit tag)
     ******************************************************************************************************
 
     Applied (tag 0)
@@ -62953,7 +62959,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -63003,7 +63009,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_62                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -63023,19 +63029,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_originate   |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_originate   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.transfer_ticket (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.transfer_ticket (Determined from data, 8-bit tag)
     ***********************************************************************************************
 
     Applied (tag 0)
@@ -63046,7 +63052,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -63096,7 +63102,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_62                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -63116,19 +63122,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.transfer_ticket          |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.transfer_ticket          |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.update_consensus_key (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.update_consensus_key (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -63193,19 +63199,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.update_consensus_key     |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.update_consensus_key     |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.register_global_constant (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.register_global_constant (Determined from data, 8-bit tag)
     ********************************************************************************************************
 
     Applied (tag 0)
@@ -63216,7 +63222,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -63264,7 +63270,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_62                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -63282,15 +63288,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.register_global_constant |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.register_global_constant |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -63300,15 +63306,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.delegation      |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.delegation      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -63318,15 +63324,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.origination     |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.origination     |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -63343,9 +63349,9 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "storage"                                            | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | storage                                                                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression  |
+    | storage                                                                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -63355,7 +63361,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -63367,7 +63373,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -63387,7 +63393,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.transaction (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.transaction (Determined from data, 8-bit tag)
     *******************************************************************************************
 
     Applied (tag 0)
@@ -63448,28 +63454,30 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.transaction              |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.transaction              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
     X_3269
     ******
 
-    +---------------+----------+------------------+
-    | Name          | Size     | Contents         |
-    +===============+==========+==================+
-    | delegate      | 21 bytes | $public_key_hash |
-    +---------------+----------+------------------+
-    | consensus_pkh | 21 bytes | $public_key_hash |
-    +---------------+----------+------------------+
+    +-----------------+----------+-------------------------------------------------------------------------+
+    | Name            | Size     | Contents                                                                |
+    +=================+==========+=========================================================================+
+    | delegate        | 21 bytes | $public_key_hash                                                        |
+    +-----------------+----------+-------------------------------------------------------------------------+
+    | consensus_pkh   | 21 bytes | $public_key_hash                                                        |
+    +-----------------+----------+-------------------------------------------------------------------------+
+    | consensus_power | 4 bytes  | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 |
+    +-----------------+----------+-------------------------------------------------------------------------+
 
 
     X_3265
@@ -63478,7 +63486,7 @@ Full description
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | Name                                                                     | Size     | Contents                                                                |
     +==========================================================================+==========+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
@@ -63486,11 +63494,11 @@ Full description
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | committee                                                                | Variable | sequence of $X_3269                                                     |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
-    | consensus_power                                                          | 4 bytes  | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 |
+    | total_consensus_power                                                    | 4 bytes  | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation_metadata.alpha.balance_updates
+    023-PtSeouLo.operation_metadata.alpha.balance_updates
     *****************************************************
 
     +-----------------------+----------+------------------------------------+
@@ -63508,7 +63516,7 @@ Full description
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | Name                                                                     | Size     | Contents                                                                |
     +==========================================================================+==========+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable | sequence of $X_59                                                       |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
@@ -63526,7 +63534,7 @@ Full description
     +--------------------------------------------------------------------------+----------+-------------------------------------+
     | Name                                                                     | Size     | Contents                            |
     +==========================================================================+==========+=====================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------+-------------------------------------+
     | balance_updates                                                          | Variable | sequence of $X_59                   |
     +--------------------------------------------------------------------------+----------+-------------------------------------+
@@ -63576,7 +63584,7 @@ Full description
     +-------------------+----------+------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_contents_and_result (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_contents_and_result (Determined from data, 8-bit tag)
     ********************************************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -63591,7 +63599,7 @@ Full description
     +----------+----------------------+--------------------------------------------------------+
     | nonce    | 32 bytes             | bytes                                                  |
     +----------+----------------------+--------------------------------------------------------+
-    | metadata | Determined from data | $023-PtSEouLo.operation_metadata.alpha.balance_updates |
+    | metadata | Determined from data | $023-PtSeouLo.operation_metadata.alpha.balance_updates |
     +----------+----------------------+--------------------------------------------------------+
 
 
@@ -63607,11 +63615,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | metadata              | 51 bytes | $X_3308                                   |
     +-----------------------+----------+-------------------------------------------+
@@ -63627,11 +63635,11 @@ Full description
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh1                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh1                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh2                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh2                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | metadata              | 51 bytes | $X_3308                                      |
     +-----------------------+----------+----------------------------------------------+
@@ -63649,7 +63657,7 @@ Full description
     +----------+----------------------+--------------------------------------------------------+
     | secret   | 20 bytes             | bytes                                                  |
     +----------+----------------------+--------------------------------------------------------+
-    | metadata | Determined from data | $023-PtSEouLo.operation_metadata.alpha.balance_updates |
+    | metadata | Determined from data | $023-PtSeouLo.operation_metadata.alpha.balance_updates |
     +----------+----------------------+--------------------------------------------------------+
 
 
@@ -63699,7 +63707,7 @@ Full description
     +----------+----------------------+--------------------------------------------------------+
     | solution | 200 bytes            | $X_43                                                  |
     +----------+----------------------+--------------------------------------------------------+
-    | metadata | Determined from data | $023-PtSEouLo.operation_metadata.alpha.balance_updates |
+    | metadata | Determined from data | $023-PtSeouLo.operation_metadata.alpha.balance_updates |
     +----------+----------------------+--------------------------------------------------------+
 
 
@@ -63793,7 +63801,7 @@ Full description
     +-----------------------+----------------------+--------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                     |
     +-----------------------+----------------------+--------------------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation              |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation              |
     +-----------------------+----------------------+--------------------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer                     |
     +-----------------------+----------------------+--------------------------------------------------------+
@@ -63801,7 +63809,7 @@ Full description
     +-----------------------+----------------------+--------------------------------------------------------+
     | shard_with_proof      | Determined from data | $X_40                                                  |
     +-----------------------+----------------------+--------------------------------------------------------+
-    | metadata              | Determined from data | $023-PtSEouLo.operation_metadata.alpha.balance_updates |
+    | metadata              | Determined from data | $023-PtSeouLo.operation_metadata.alpha.balance_updates |
     +-----------------------+----------------------+--------------------------------------------------------+
 
 
@@ -63889,7 +63897,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -63923,7 +63931,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
     | metadata                       | Determined from data | $X_2743                             |
     +--------------------------------+----------------------+-------------------------------------+
@@ -64027,7 +64035,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
     | metadata      | Determined from data | $X_624                               |
     +---------------+----------------------+--------------------------------------+
@@ -64115,11 +64123,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -64478,7 +64486,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                      |
     +-----------------------+----------+-------------------------------------------------------------------------+
-    | contents              | Variable | sequence of $023-PtSEouLo.operation.alpha.operation_contents_and_result |
+    | contents              | Variable | sequence of $023-PtSeouLo.operation.alpha.operation_contents_and_result |
     +-----------------------+----------+-------------------------------------------------------------------------+
     | signature             | Variable | bytes                                                                   |
     +-----------------------+----------+-------------------------------------------------------------------------+
@@ -64494,7 +64502,7 @@ Full description
     +-----------------------+----------+----------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                 |
     +-----------------------+----------+----------------------------------------------------+
-    | contents              | Variable | sequence of $023-PtSEouLo.operation.alpha.contents |
+    | contents              | Variable | sequence of $023-PtSeouLo.operation.alpha.contents |
     +-----------------------+----------+----------------------------------------------------+
     | signature             | Variable | bytes                                              |
     +-----------------------+----------+----------------------------------------------------+
@@ -64564,9 +64572,9 @@ Full description
             
-    { "script": $micheline.023-PtSEouLo.michelson_v1.expression,
+    { "script": $micheline.023-PtSeouLo.michelson_v1.expression,
       "entrypoint"?: $unistring }
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -64730,20 +64738,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -64756,7 +64764,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------+
     | Name                  | Size                 | Contents                                        |
     +=======================+======================+=================================================+
-    | script                | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | script                | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------------------+-------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer              |
     +-----------------------+----------------------+-------------------------------------------------+
@@ -64764,7 +64772,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -65102,7 +65110,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -65141,7 +65149,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -65153,7 +65161,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -65165,7 +65173,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -65181,9 +65189,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -65195,9 +65203,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -65213,11 +65221,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -65229,11 +65237,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -65249,11 +65257,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -65278,8 +65286,8 @@ Full description
     
-    { "entrypoint_type": $micheline.023-PtSEouLo.michelson_v1.expression }
-    $023-PtSEouLo.michelson.v1.primitives:
+    { "entrypoint_type": $micheline.023-PtSeouLo.michelson_v1.expression }
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -65443,20 +65451,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -65469,11 +65477,11 @@ Full description
     +-----------------+----------------------+-------------------------------------------------+
     | Name            | Size                 | Contents                                        |
     +=================+======================+=================================================+
-    | entrypoint_type | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | entrypoint_type | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -65811,7 +65819,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -65850,7 +65858,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -65862,7 +65870,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -65874,7 +65882,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -65890,9 +65898,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -65904,9 +65912,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -65922,11 +65930,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -65938,11 +65946,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -65958,11 +65966,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -66005,8 +66013,8 @@ Full description
             
-    { "script": $micheline.023-PtSEouLo.michelson_v1.expression }
-    $023-PtSEouLo.michelson.v1.primitives:
+    { "script": $micheline.023-PtSeouLo.michelson_v1.expression }
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -66170,20 +66178,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -66196,11 +66204,11 @@ Full description
     +--------+----------------------+-------------------------------------------------+
     | Name   | Size                 | Contents                                        |
     +========+======================+=================================================+
-    | script | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | script | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +--------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -66538,7 +66546,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -66577,7 +66585,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -66589,7 +66597,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -66601,7 +66609,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -66617,9 +66625,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -66631,9 +66639,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -66649,11 +66657,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -66665,11 +66673,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -66685,11 +66693,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -66715,9 +66723,9 @@ Full description
   
     { "unreachable"?:
-        [ { "path": [ $023-PtSEouLo.michelson.v1.primitives ... ] } ... ],
-      "entrypoints": { *: $micheline.023-PtSEouLo.michelson_v1.expression } }
-    $023-PtSEouLo.michelson.v1.primitives:
+        [ { "path": [ $023-PtSeouLo.michelson.v1.primitives ... ] } ... ],
+      "entrypoints": { *: $micheline.023-PtSeouLo.michelson_v1.expression } }
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -66881,20 +66889,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -66917,7 +66925,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -67251,7 +67259,7 @@ Full description
     +=======================+==========+=======================================================================================================+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | Unnamed field 0       | Variable | sequence of unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------------------+
 
 
@@ -67279,7 +67287,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -67318,7 +67326,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -67330,7 +67338,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -67342,7 +67350,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -67358,9 +67366,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -67372,9 +67380,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -67390,11 +67398,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -67406,11 +67414,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -67426,11 +67434,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -67460,7 +67468,7 @@ Full description
     +=================+======================+=================================================+
     | Unnamed field 0 | Determined from data | $X_2                                            |
     +-----------------+----------------------+-------------------------------------------------+
-    | Unnamed field 1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------+----------------------+-------------------------------------------------+
 
     
@@ -67485,23 +67493,23 @@ Full description
-    { "data": $micheline.023-PtSEouLo.michelson_v1.expression,
-      "type": $micheline.023-PtSEouLo.michelson_v1.expression,
+    { "data": $micheline.023-PtSeouLo.michelson_v1.expression,
+      "type": $micheline.023-PtSeouLo.michelson_v1.expression,
       "unparsing_mode": "Readable" || "Optimized" || "Optimized_legacy",
       "legacy"?: boolean,
       "other_contracts"?:
         [ { "address": $Contract_hash,
-            "type": $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
+            "type": $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
       "extra_big_maps"?:
-        [ { "id": $023-PtSEouLo.big_map_id,
-            "key_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "val_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "map_literal": $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
-    $023-PtSEouLo.big_map_id:
+        [ { "id": $023-PtSeouLo.big_map_id,
+            "key_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "val_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "map_literal": $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
+    $023-PtSeouLo.big_map_id:
       /* Big map identifier
          A big map identifier */
       $bignum
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -67668,20 +67676,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -67694,9 +67702,9 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------------------+
     | Name                                  | Size                 | Contents                                        |
     +=======================================+======================+=================================================+
-    | data                                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | data                                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | type                                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type                                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | unparsing_mode                        | 1 byte               | $X_2                                            |
     +---------------------------------------+----------------------+-------------------------------------------------+
@@ -67712,7 +67720,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -68050,7 +68058,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -68089,7 +68097,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -68101,7 +68109,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -68113,7 +68121,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -68129,9 +68137,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -68143,9 +68151,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -68161,11 +68169,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -68177,11 +68185,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -68197,11 +68205,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -68264,7 +68272,7 @@ Full description
     +=========+======================+=================================================+
     | address | 20 bytes             | bytes                                           |
     +---------+----------------------+-------------------------------------------------+
-    | type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------+----------------------+-------------------------------------------------+
 
 
@@ -68288,11 +68296,11 @@ Full description
     +=============+======================+=================================================+
     | id          | Determined from data | $Z.t                                            |
     +-------------+----------------------+-------------------------------------------------+
-    | key_type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key_type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
-    | val_type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | val_type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
-    | map_literal | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | map_literal | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
 
 
@@ -68311,8 +68319,8 @@ Full description
     
-    { "normalized": $micheline.023-PtSEouLo.michelson_v1.expression }
-    $023-PtSEouLo.michelson.v1.primitives:
+    { "normalized": $micheline.023-PtSeouLo.michelson_v1.expression }
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -68476,20 +68484,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -68502,11 +68510,11 @@ Full description
     +------------+----------------------+-------------------------------------------------+
     | Name       | Size                 | Contents                                        |
     +============+======================+=================================================+
-    | normalized | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | normalized | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -68844,7 +68852,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -68883,7 +68891,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -68895,7 +68903,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -68907,7 +68915,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -68923,9 +68931,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -68937,9 +68945,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -68955,11 +68963,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -68971,11 +68979,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -68991,11 +68999,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -69038,9 +69046,9 @@ Full description
             
-    { "script": $micheline.023-PtSEouLo.michelson_v1.expression,
+    { "script": $micheline.023-PtSeouLo.michelson_v1.expression,
       "unparsing_mode": "Readable" || "Optimized" || "Optimized_legacy" }
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -69204,20 +69212,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -69230,13 +69238,13 @@ Full description
     +----------------+----------------------+-------------------------------------------------+
     | Name           | Size                 | Contents                                        |
     +================+======================+=================================================+
-    | script         | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | script         | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------------+----------------------+-------------------------------------------------+
     | unparsing_mode | 1 byte               | $X_1                                            |
     +----------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -69574,7 +69582,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -69613,7 +69621,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -69625,7 +69633,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -69637,7 +69645,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -69653,9 +69661,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -69667,9 +69675,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -69685,11 +69693,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -69701,11 +69709,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -69721,11 +69729,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -69783,8 +69791,8 @@ Full description
     
-    { "normalized": $micheline.023-PtSEouLo.michelson_v1.expression }
-    $023-PtSEouLo.michelson.v1.primitives:
+    { "normalized": $micheline.023-PtSeouLo.michelson_v1.expression }
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -69948,20 +69956,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -69974,11 +69982,11 @@ Full description
     +------------+----------------------+-------------------------------------------------+
     | Name       | Size                 | Contents                                        |
     +============+======================+=================================================+
-    | normalized | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | normalized | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -70316,7 +70324,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -70355,7 +70363,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -70367,7 +70375,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -70379,7 +70387,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -70395,9 +70403,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -70409,9 +70417,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -70427,11 +70435,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -70443,11 +70451,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -70463,11 +70471,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -70511,23 +70519,23 @@ Full description
   
     { "input":
-        [ { "type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "val": $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
+        [ { "type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "val": $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
       "unparsing_mode": "Readable" || "Optimized" || "Optimized_legacy",
       "legacy"?: boolean,
       "other_contracts"?:
         [ { "address": $Contract_hash,
-            "type": $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
+            "type": $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
       "extra_big_maps"?:
-        [ { "id": $023-PtSEouLo.big_map_id,
-            "key_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "val_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "map_literal": $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
-    $023-PtSEouLo.big_map_id:
+        [ { "id": $023-PtSeouLo.big_map_id,
+            "key_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "val_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "map_literal": $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
+    $023-PtSeouLo.big_map_id:
       /* Big map identifier
          A big map identifier */
       $bignum
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -70694,20 +70702,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -70738,7 +70746,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -71076,7 +71084,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -71115,7 +71123,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -71127,7 +71135,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -71139,7 +71147,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -71155,9 +71163,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -71169,9 +71177,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -71187,11 +71195,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -71203,11 +71211,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -71223,11 +71231,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -71255,9 +71263,9 @@ Full description
     +------+----------------------+-------------------------------------------------+
     | Name | Size                 | Contents                                        |
     +======+======================+=================================================+
-    | type | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +------+----------------------+-------------------------------------------------+
-    | val  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | val  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +------+----------------------+-------------------------------------------------+
 
 
@@ -71302,7 +71310,7 @@ Full description
     +=========+======================+=================================================+
     | address | 20 bytes             | bytes                                           |
     +---------+----------------------+-------------------------------------------------+
-    | type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------+----------------------+-------------------------------------------------+
 
 
@@ -71326,11 +71334,11 @@ Full description
     +=============+======================+=================================================+
     | id          | Determined from data | $Z.t                                            |
     +-------------+----------------------+-------------------------------------------------+
-    | key_type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key_type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
-    | val_type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | val_type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
-    | map_literal | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | map_literal | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
 
 
@@ -71350,9 +71358,9 @@ Full description
   
     { "output":
-        [ { "type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "val": $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
-    $023-PtSEouLo.michelson.v1.primitives:
+        [ { "type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "val": $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -71516,20 +71524,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -71548,7 +71556,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -71886,7 +71894,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -71925,7 +71933,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -71937,7 +71945,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -71949,7 +71957,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -71965,9 +71973,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -71979,9 +71987,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -71997,11 +72005,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -72013,11 +72021,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -72033,11 +72041,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -72065,9 +72073,9 @@ Full description
     +------+----------------------+-------------------------------------------------+
     | Name | Size                 | Contents                                        |
     +======+======================+=================================================+
-    | type | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +------+----------------------+-------------------------------------------------+
-    | val  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | val  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +------+----------------------+-------------------------------------------------+
 
     
@@ -72092,8 +72100,8 @@ Full description
-    { "type": $micheline.023-PtSEouLo.michelson_v1.expression }
-    $023-PtSEouLo.michelson.v1.primitives:
+    { "type": $micheline.023-PtSeouLo.michelson_v1.expression }
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -72257,20 +72265,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -72283,11 +72291,11 @@ Full description
     +------+----------------------+-------------------------------------------------+
     | Name | Size                 | Contents                                        |
     +======+======================+=================================================+
-    | type | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -72625,7 +72633,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -72664,7 +72672,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -72676,7 +72684,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -72688,7 +72696,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -72704,9 +72712,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -72718,9 +72726,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -72736,11 +72744,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -72752,11 +72760,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -72772,11 +72780,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -72801,8 +72809,8 @@ Full description
     
-    { "normalized": $micheline.023-PtSEouLo.michelson_v1.expression }
-    $023-PtSEouLo.michelson.v1.primitives:
+    { "normalized": $micheline.023-PtSeouLo.michelson_v1.expression }
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -72966,20 +72974,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -72992,11 +73000,11 @@ Full description
     +------------+----------------------+-------------------------------------------------+
     | Name       | Size                 | Contents                                        |
     +============+======================+=================================================+
-    | normalized | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | normalized | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -73334,7 +73342,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -73373,7 +73381,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -73385,7 +73393,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -73397,7 +73405,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -73413,9 +73421,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -73427,9 +73435,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -73445,11 +73453,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -73461,11 +73469,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -73481,11 +73489,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -73528,10 +73536,10 @@ Full description
             
-    { "data": $micheline.023-PtSEouLo.michelson_v1.expression,
-      "type": $micheline.023-PtSEouLo.michelson_v1.expression,
+    { "data": $micheline.023-PtSeouLo.michelson_v1.expression,
+      "type": $micheline.023-PtSeouLo.michelson_v1.expression,
       "gas"?: $bignum }
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -73695,20 +73703,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -73721,9 +73729,9 @@ Full description
     +---------------------------+----------------------+-------------------------------------------------+
     | Name                      | Size                 | Contents                                        |
     +===========================+======================+=================================================+
-    | data                      | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | data                      | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------+----------------------+-------------------------------------------------+
-    | type                      | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type                      | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "gas" | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------+----------------------+-------------------------------------------------+
@@ -73731,7 +73739,7 @@ Full description
     +---------------------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -74069,7 +74077,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -74108,7 +74116,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -74120,7 +74128,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -74132,7 +74140,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -74148,9 +74156,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -74162,9 +74170,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -74180,11 +74188,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -74196,11 +74204,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -74216,11 +74224,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -74323,15 +74331,15 @@ Full description
             
-    { "script": $micheline.023-PtSEouLo.michelson_v1.expression,
-      "storage": $micheline.023-PtSEouLo.michelson_v1.expression,
-      "input": $micheline.023-PtSEouLo.michelson_v1.expression,
-      "amount": $023-PtSEouLo.mutez,
-      "balance"?: $023-PtSEouLo.mutez,
+    { "script": $micheline.023-PtSeouLo.michelson_v1.expression,
+      "storage": $micheline.023-PtSeouLo.michelson_v1.expression,
+      "input": $micheline.023-PtSeouLo.michelson_v1.expression,
+      "amount": $023-PtSeouLo.mutez,
+      "balance"?: $023-PtSeouLo.mutez,
       "chain_id": $Chain_id,
-      "source"?: $023-PtSEouLo.contract_id,
-      "payer"?: $023-PtSEouLo.contract_id.implicit,
-      "self"?: $023-PtSEouLo.contract_id.originated,
+      "source"?: $023-PtSeouLo.contract_id,
+      "payer"?: $023-PtSeouLo.contract_id.implicit,
+      "self"?: $023-PtSeouLo.contract_id.originated,
       "entrypoint"?: $unistring,
       "unparsing_mode"?: "Readable" || "Optimized" || "Optimized_legacy",
       "gas"?: $bignum,
@@ -74339,32 +74347,32 @@ Full description
       "level"?: $positive_bignum,
       "other_contracts"?:
         [ { "address": $Contract_hash,
-            "type": $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
+            "type": $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
       "extra_big_maps"?:
-        [ { "id": $023-PtSEouLo.big_map_id,
-            "key_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "val_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "map_literal": $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
-    $023-PtSEouLo.big_map_id:
+        [ { "id": $023-PtSeouLo.big_map_id,
+            "key_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "val_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "map_literal": $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
+    $023-PtSeouLo.big_map_id:
       /* Big map identifier
          A big map identifier */
       $bignum
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.implicit:
+    $023-PtSeouLo.contract_id.implicit:
       /* A contract handle -- implicit account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -74524,7 +74532,7 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
+    $023-PtSeouLo.mutez: $positive_bignum
     $Chain_id:
       /* Network identifier (Base58Check-encoded) */
       $unistring
@@ -74535,20 +74543,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $positive_bignum:
       /* Positive big number
@@ -74565,11 +74573,11 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------------------+
     | Name                                  | Size                 | Contents                                        |
     +=======================================+======================+=================================================+
-    | script                                | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | script                                | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | storage                               | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | storage                               | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | input                                 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | input                                 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | amount                                | Determined from data | $N.t                                            |
     +---------------------------------------+----------------------+-------------------------------------------------+
@@ -74581,15 +74589,15 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "source"          | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | source                                | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | source                                | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "payer"           | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | payer                                 | 22 bytes             | $023-PtSEouLo.contract_id.implicit              |
+    | payer                                 | 22 bytes             | $023-PtSeouLo.contract_id.implicit              |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "self"            | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | self                                  | 22 bytes             | $023-PtSEouLo.contract_id.originated            |
+    | self                                  | 22 bytes             | $023-PtSeouLo.contract_id.originated            |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | # bytes in next field                 | 4 bytes              | unsigned 30-bit big-endian integer              |
     +---------------------------------------+----------------------+-------------------------------------------------+
@@ -74621,7 +74629,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -74959,7 +74967,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -74998,7 +75006,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -75010,7 +75018,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -75022,7 +75030,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -75038,9 +75046,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -75052,9 +75060,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -75070,11 +75078,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -75086,11 +75094,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -75106,11 +75114,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -75195,7 +75203,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -75224,7 +75232,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id.implicit (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.implicit (22 bytes, 8-bit tag)
     *******************************************************
 
     Implicit (tag 0)
@@ -75239,7 +75247,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -75297,7 +75305,7 @@ Full description
     +=========+======================+=================================================+
     | address | 20 bytes             | bytes                                           |
     +---------+----------------------+-------------------------------------------------+
-    | type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------+----------------------+-------------------------------------------------+
 
 
@@ -75321,11 +75329,11 @@ Full description
     +=============+======================+=================================================+
     | id          | Determined from data | $Z.t                                            |
     +-------------+----------------------+-------------------------------------------------+
-    | key_type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key_type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
-    | val_type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | val_type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
-    | map_literal | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | map_literal | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
 
 
@@ -75344,43 +75352,43 @@ Full description
     
-    { "storage": $micheline.023-PtSEouLo.michelson_v1.expression,
+    { "storage": $micheline.023-PtSeouLo.michelson_v1.expression,
       "operations":
-        [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ],
-      "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
-    $023-PtSEouLo.apply_internal_results.alpha.operation_result:
+        [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ],
+      "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
+    $023-PtSeouLo.apply_internal_results.alpha.operation_result:
       { /* Transaction */
-        "source": $023-PtSEouLo.transaction_destination,
+        "source": $023-PtSeouLo.transaction_destination,
         "nonce": integer ∈ [0, 2^16-1],
         "kind": "transaction",
-        "amount": $023-PtSEouLo.mutez,
-        "destination": $023-PtSEouLo.transaction_destination,
-        "parameters"?: { "entrypoint": $023-PtSEouLo.entrypoint,
+        "amount": $023-PtSeouLo.mutez,
+        "destination": $023-PtSeouLo.transaction_destination,
+        "parameters"?: { "entrypoint": $023-PtSeouLo.entrypoint,
                          "value": any } }
       || { /* Origination */
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
            "kind": "origination",
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts }
+           "script": $023-PtSeouLo.scripted.contracts }
       || { /* Delegation */
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
            "kind": "delegation",
            "delegate"?: $Signature.Public_key_hash }
       || { /* Event */
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
            "kind": "event",
-           "type": $micheline.023-PtSEouLo.michelson_v1.expression,
-           "tag"?: $023-PtSEouLo.entrypoint,
-           "payload"?: $micheline.023-PtSEouLo.michelson_v1.expression }
-    $023-PtSEouLo.big_map_id:
+           "type": $micheline.023-PtSeouLo.michelson_v1.expression,
+           "tag"?: $023-PtSeouLo.entrypoint,
+           "payload"?: $micheline.023-PtSeouLo.michelson_v1.expression }
+    $023-PtSeouLo.big_map_id:
       /* Big map identifier
          A big map identifier */
       $bignum
-    $023-PtSEouLo.entrypoint:
+    $023-PtSeouLo.entrypoint:
       /* entrypoint
          Named entrypoint to a Michelson smart contract */
       "default"
@@ -75395,39 +75403,39 @@ Full description
       || "set_delegate_parameters"
       || $unistring
       /* named */
-    $023-PtSEouLo.lazy_storage_diff:
+    $023-PtSeouLo.lazy_storage_diff:
       [ { /* big_map */
           "kind": "big_map",
-          "id": $023-PtSEouLo.big_map_id,
+          "id": $023-PtSeouLo.big_map_id,
           "diff":
             { /* update */
               "action": "update",
               "updates":
                 [ { "key_hash": $script_expr,
-                    "key": $micheline.023-PtSEouLo.michelson_v1.expression,
-                    "value"?: $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
+                    "key": $micheline.023-PtSeouLo.michelson_v1.expression,
+                    "value"?: $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
             || { /* remove */
                  "action": "remove" }
             || { /* copy */
                  "action": "copy",
-                 "source": $023-PtSEouLo.big_map_id,
+                 "source": $023-PtSeouLo.big_map_id,
                  "updates":
                    [ { "key_hash": $script_expr,
-                       "key": $micheline.023-PtSEouLo.michelson_v1.expression,
+                       "key": $micheline.023-PtSeouLo.michelson_v1.expression,
                        "value"?:
-                         $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
+                         $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
             || { /* alloc */
                  "action": "alloc",
                  "updates":
                    [ { "key_hash": $script_expr,
-                       "key": $micheline.023-PtSEouLo.michelson_v1.expression,
+                       "key": $micheline.023-PtSeouLo.michelson_v1.expression,
                        "value"?:
-                         $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
-                 "key_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-                 "value_type": $micheline.023-PtSEouLo.michelson_v1.expression } }
+                         $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
+                 "key_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+                 "value_type": $micheline.023-PtSeouLo.michelson_v1.expression } }
         || { /* sapling_state */
              "kind": "sapling_state",
-             "id": $023-PtSEouLo.sapling_state_id,
+             "id": $023-PtSeouLo.sapling_state_id,
              "diff":
                { /* update */
                  "action": "update",
@@ -75440,7 +75448,7 @@ Full description
                     "action": "remove" }
                || { /* copy */
                     "action": "copy",
-                    "source": $023-PtSEouLo.sapling_state_id,
+                    "source": $023-PtSeouLo.sapling_state_id,
                     "updates":
                       { "commitments_and_ciphertexts":
                           [ [ $sapling.transaction.commitment,
@@ -75454,7 +75462,7 @@ Full description
                               $sapling.transaction.ciphertext ] ... ],
                         "nullifiers": [ $sapling.transaction.nullifier ... ] },
                     "memo_size": integer ∈ [0, 2^16-1] } } ... ]
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -75614,14 +75622,14 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
-    $023-PtSEouLo.sapling_state_id:
+    $023-PtSeouLo.mutez: $positive_bignum
+    $023-PtSeouLo.sapling_state_id:
       /* Sapling state identifier
          A sapling state identifier */
       $bignum
-    $023-PtSEouLo.scripted.contracts: { "code": any,
+    $023-PtSeouLo.scripted.contracts: { "code": any,
                                         "storage": any }
-    $023-PtSEouLo.transaction_destination:
+    $023-PtSeouLo.transaction_destination:
       /* A destination of a transaction
          A destination notation compatible with the contract notation as given
          to an RPC or inside scripts. Can be a base58 implicit contract hash, a
@@ -75636,20 +75644,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $positive_bignum:
       /* Positive big number
@@ -75680,19 +75688,19 @@ Full description
     +-----------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                    | Size                 | Contents                                                                |
     +=========================================+======================+=========================================================================+
-    | storage                                 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                         |
+    | storage                                 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                         |
     +-----------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                   | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +-----------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operations                              | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | operations                              | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +-----------------------------------------+----------------------+-------------------------------------------------------------------------+
     | ? presence of field "lazy_storage_diff" | 1 byte               | boolean (0 for false, 255 for true)                                     |
     +-----------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | lazy_storage_diff                       | Determined from data | $023-PtSEouLo.lazy_storage_diff                                         |
+    | lazy_storage_diff                       | Determined from data | $023-PtSeouLo.lazy_storage_diff                                         |
     +-----------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -76030,7 +76038,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -76069,7 +76077,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -76081,7 +76089,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -76093,7 +76101,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -76109,9 +76117,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -76123,9 +76131,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -76141,11 +76149,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -76157,11 +76165,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -76177,11 +76185,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -76254,7 +76262,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.transaction_destination (22 bytes, 8-bit tag)
+    023-PtSeouLo.transaction_destination (22 bytes, 8-bit tag)
     **********************************************************
 
     Implicit (tag 0)
@@ -76311,7 +76319,7 @@ Full description
     +----------------+----------+------------------------+
 
 
-    023-PtSEouLo.entrypoint (Determined from data, 8-bit tag)
+    023-PtSeouLo.entrypoint (Determined from data, 8-bit tag)
     *********************************************************
 
     default (tag 0)
@@ -76440,7 +76448,7 @@ Full description
     +------+----------------------+----------+
 
 
-    023-PtSEouLo.scripted.contracts
+    023-PtSeouLo.scripted.contracts
     *******************************
 
     +-----------------------+----------+------------------------------------+
@@ -76462,7 +76470,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
-    | entrypoint            | Determined from data | $023-PtSEouLo.entrypoint           |
+    | entrypoint            | Determined from data | $023-PtSeouLo.entrypoint           |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -76483,7 +76491,7 @@ Full description
     +----------------------------------+----------------------+---------------------------------------+
     | amount                           | Determined from data | $N.t                                  |
     +----------------------------------+----------------------+---------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.transaction_destination |
+    | destination                      | 22 bytes             | $023-PtSeouLo.transaction_destination |
     +----------------------------------+----------------------+---------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true)   |
     +----------------------------------+----------------------+---------------------------------------+
@@ -76505,7 +76513,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
 
 
@@ -76531,25 +76539,25 @@ Full description
     +===============================+======================+=================================================+
     | Tag                           | 1 byte               | unsigned 8-bit integer                          |
     +-------------------------------+----------------------+-------------------------------------------------+
-    | type                          | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type                          | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "tag"     | 1 byte               | boolean (0 for false, 255 for true)             |
     +-------------------------------+----------------------+-------------------------------------------------+
-    | tag                           | Determined from data | $023-PtSEouLo.entrypoint                        |
+    | tag                           | Determined from data | $023-PtSeouLo.entrypoint                        |
     +-------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "payload" | 1 byte               | boolean (0 for false, 255 for true)             |
     +-------------------------------+----------------------+-------------------------------------------------+
-    | payload                       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | payload                       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------------------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.apply_internal_results.alpha.operation_result
+    023-PtSeouLo.apply_internal_results.alpha.operation_result
     **********************************************************
 
     +-----------------+----------------------+---------------------------------------+
     | Name            | Size                 | Contents                              |
     +=================+======================+=======================================+
-    | source          | 22 bytes             | $023-PtSEouLo.transaction_destination |
+    | source          | 22 bytes             | $023-PtSeouLo.transaction_destination |
     +-----------------+----------------------+---------------------------------------+
     | nonce           | 2 bytes              | unsigned 16-bit big-endian integer    |
     +-----------------+----------------------+---------------------------------------+
@@ -76668,11 +76676,11 @@ Full description
     +=============================+======================+=================================================+
     | key_hash                    | 32 bytes             | bytes                                           |
     +-----------------------------+----------------------+-------------------------------------------------+
-    | key                         | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key                         | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "value" | 1 byte               | boolean (0 for false, 255 for true)             |
     +-----------------------------+----------------------+-------------------------------------------------+
-    | value                       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | value                       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------------+----------------------+-------------------------------------------------+
 
 
@@ -76731,9 +76739,9 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------+
     | updates               | Variable             | sequence of $X_12                               |
     +-----------------------+----------------------+-------------------------------------------------+
-    | key_type              | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key_type              | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------------------+-------------------------------------------------+
-    | value_type            | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | value_type            | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------------------+-------------------------------------------------+
 
 
@@ -76768,7 +76776,7 @@ Full description
     +------+----------------------+------------------------+
 
 
-    023-PtSEouLo.lazy_storage_diff
+    023-PtSeouLo.lazy_storage_diff
     ******************************
 
     +-----------------------+----------+------------------------------------+
@@ -76802,49 +76810,49 @@ Full description
   
     { "input":
-        [ { "type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "val": $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
-      "code": $micheline.023-PtSEouLo.michelson_v1.expression,
+        [ { "type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "val": $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
+      "code": $micheline.023-PtSeouLo.michelson_v1.expression,
       "chain_id": $Chain_id,
       "gas"?: $bignum,
       "now"?: $bignum,
       "level"?: $positive_bignum,
-      "sender"?: $023-PtSEouLo.contract_id,
-      "source"?: $023-PtSEouLo.contract_id.implicit,
-      "self"?: $023-PtSEouLo.contract_id.originated,
-      "parameter"?: $micheline.023-PtSEouLo.michelson_v1.expression,
-      "amount": $023-PtSEouLo.mutez,
-      "balance"?: $023-PtSEouLo.mutez,
+      "sender"?: $023-PtSeouLo.contract_id,
+      "source"?: $023-PtSeouLo.contract_id.implicit,
+      "self"?: $023-PtSeouLo.contract_id.originated,
+      "parameter"?: $micheline.023-PtSeouLo.michelson_v1.expression,
+      "amount": $023-PtSeouLo.mutez,
+      "balance"?: $023-PtSeouLo.mutez,
       "other_contracts"?:
         [ { "address": $Contract_hash,
-            "type": $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
+            "type": $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
       "big_maps"?:
-        [ { "id": $023-PtSEouLo.big_map_id,
-            "key_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "val_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "map_literal": $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
+        [ { "id": $023-PtSeouLo.big_map_id,
+            "key_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "val_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "map_literal": $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
       "unparsing_mode"?: "Readable" || "Optimized" || "Optimized_legacy",
       "legacy"?: boolean }
-    $023-PtSEouLo.big_map_id:
+    $023-PtSeouLo.big_map_id:
       /* Big map identifier
          A big map identifier */
       $bignum
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.implicit:
+    $023-PtSeouLo.contract_id.implicit:
       /* A contract handle -- implicit account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -77004,7 +77012,7 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
+    $023-PtSeouLo.mutez: $positive_bignum
     $Chain_id:
       /* Network identifier (Base58Check-encoded) */
       $unistring
@@ -77015,20 +77023,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $positive_bignum:
       /* Positive big number
@@ -77049,7 +77057,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------------------+
     | input                                 | Variable             | sequence of $X_0                                |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | code                                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | code                                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | chain_id                              | 4 bytes              | bytes                                           |
     +---------------------------------------+----------------------+-------------------------------------------------+
@@ -77067,19 +77075,19 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "sender"          | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | sender                                | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | sender                                | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "source"          | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | source                                | 22 bytes             | $023-PtSEouLo.contract_id.implicit              |
+    | source                                | 22 bytes             | $023-PtSeouLo.contract_id.implicit              |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "self"            | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | self                                  | 22 bytes             | $023-PtSEouLo.contract_id.originated            |
+    | self                                  | 22 bytes             | $023-PtSeouLo.contract_id.originated            |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "parameter"       | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | parameter                             | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | parameter                             | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | amount                                | Determined from data | $N.t                                            |
     +---------------------------------------+----------------------+-------------------------------------------------+
@@ -77103,7 +77111,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -77441,7 +77449,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -77480,7 +77488,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -77492,7 +77500,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -77504,7 +77512,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -77520,9 +77528,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -77534,9 +77542,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -77552,11 +77560,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -77568,11 +77576,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -77588,11 +77596,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -77620,9 +77628,9 @@ Full description
     +------+----------------------+-------------------------------------------------+
     | Name | Size                 | Contents                                        |
     +======+======================+=================================================+
-    | type | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +------+----------------------+-------------------------------------------------+
-    | val  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | val  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +------+----------------------+-------------------------------------------------+
 
 
@@ -77689,7 +77697,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -77718,7 +77726,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id.implicit (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.implicit (22 bytes, 8-bit tag)
     *******************************************************
 
     Implicit (tag 0)
@@ -77733,7 +77741,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -77758,7 +77766,7 @@ Full description
     +=========+======================+=================================================+
     | address | 20 bytes             | bytes                                           |
     +---------+----------------------+-------------------------------------------------+
-    | type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------+----------------------+-------------------------------------------------+
 
 
@@ -77782,11 +77790,11 @@ Full description
     +=============+======================+=================================================+
     | id          | Determined from data | $Z.t                                            |
     +-------------+----------------------+-------------------------------------------------+
-    | key_type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key_type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
-    | val_type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | val_type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
-    | map_literal | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | map_literal | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
 
 
@@ -77839,10 +77847,10 @@ Full description
   
     { "output":
-        [ { "type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "val": $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
+        [ { "type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "val": $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
       "gas": $bignum /* Limited */ || "unaccounted" }
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -78006,20 +78014,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -78040,7 +78048,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -78378,7 +78386,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -78417,7 +78425,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -78429,7 +78437,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -78441,7 +78449,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -78457,9 +78465,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -78471,9 +78479,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -78489,11 +78497,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -78505,11 +78513,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -78525,11 +78533,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -78557,9 +78565,9 @@ Full description
     +------+----------------------+-------------------------------------------------+
     | Name | Size                 | Contents                                        |
     +======+======================+=================================================+
-    | type | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +------+----------------------+-------------------------------------------------+
-    | val  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | val  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +------+----------------------+-------------------------------------------------+
 
 
@@ -78612,11 +78620,11 @@ Full description
     { "operation":
         { /* An operation's shell header. */
           "branch": $block_hash,
-          "contents": [ $023-PtSEouLo.operation.alpha.contents ... ],
+          "contents": [ $023-PtSeouLo.operation.alpha.contents ... ],
           "signature"?: $Signature.V2 },
       "chain_id": $Chain_id }
-    $023-PtSEouLo.adaptive_issuance_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.block_header.alpha.full_header:
+    $023-PtSeouLo.adaptive_issuance_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.block_header.alpha.full_header:
       /* Shell header
          Block header's shell-related content. It contains information such as
          the block level, its predecessor and timestamp. */
@@ -78632,20 +78640,20 @@ Full description
         "payload_round": integer ∈ [-2^31-1, 2^31],
         "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
         "seed_nonce_hash"?: $cycle_nonce,
-        "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-        "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+        "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+        "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
         "signature": $Signature.V2 }
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.entrypoint:
+    $023-PtSeouLo.entrypoint:
       /* entrypoint
          Named entrypoint to a Michelson smart contract */
       "default"
@@ -78660,12 +78668,12 @@ Full description
       || "set_delegate_parameters"
       || $unistring
       /* named */
-    $023-PtSEouLo.inlined.consensus_operation:
+    $023-PtSeouLo.inlined.consensus_operation:
       /* An operation's shell header. */
       { "branch": $block_hash,
-        "operations": $023-PtSEouLo.inlined.consensus_operation.contents,
+        "operations": $023-PtSeouLo.inlined.consensus_operation.contents,
         "signature"?: $Signature.V2 }
-    $023-PtSEouLo.inlined.consensus_operation.contents:
+    $023-PtSeouLo.inlined.consensus_operation.contents:
       { /* Preattestation */
         "kind": "preattestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -78701,8 +78709,8 @@ Full description
            "committee":
              [ { "slot": integer ∈ [0, 2^16-1],
                  "dal_attestation"?: $bignum } ... ] }
-    $023-PtSEouLo.liquidity_baking_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.liquidity_baking_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -78862,8 +78870,8 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
-    $023-PtSEouLo.operation.alpha.contents:
+    $023-PtSeouLo.mutez: $positive_bignum
+    $023-PtSeouLo.operation.alpha.contents:
       { /* Attestation */
         "kind": "attestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -78902,8 +78910,8 @@ Full description
       || { /* Double_consensus_operation_evidence */
            "kind": "double_consensus_operation_evidence",
            "slot": integer ∈ [0, 2^16-1],
-           "op1": $023-PtSEouLo.inlined.consensus_operation,
-           "op2": $023-PtSEouLo.inlined.consensus_operation }
+           "op1": $023-PtSeouLo.inlined.consensus_operation,
+           "op2": $023-PtSeouLo.inlined.consensus_operation }
       || { /* Seed_nonce_revelation */
            "kind": "seed_nonce_revelation",
            "level": integer ∈ [0, 2^31],
@@ -78914,11 +78922,11 @@ Full description
              [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/, /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ] }
       || { /* Double_baking_evidence */
            "kind": "double_baking_evidence",
-           "bh1": $023-PtSEouLo.block_header.alpha.full_header,
-           "bh2": $023-PtSEouLo.block_header.alpha.full_header }
+           "bh1": $023-PtSeouLo.block_header.alpha.full_header,
+           "bh2": $023-PtSeouLo.block_header.alpha.full_header }
       || { /* Dal_entrapment_evidence */
            "kind": "dal_entrapment_evidence",
-           "attestation": $023-PtSEouLo.inlined.consensus_operation,
+           "attestation": $023-PtSeouLo.inlined.consensus_operation,
            "consensus_slot": integer ∈ [0, 2^16-1],
            "slot_index": integer ∈ [0, 255],
            "shard_with_proof":
@@ -78944,7 +78952,7 @@ Full description
       || { /* Reveal */
            "kind": "reveal",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -78953,29 +78961,29 @@ Full description
       || { /* Transaction */
            "kind": "transaction",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "amount": $023-PtSEouLo.mutez,
-           "destination": $023-PtSEouLo.contract_id,
+           "amount": $023-PtSeouLo.mutez,
+           "destination": $023-PtSeouLo.contract_id,
            "parameters"?:
-             { "entrypoint": $023-PtSEouLo.entrypoint,
+             { "entrypoint": $023-PtSeouLo.entrypoint,
                "value": any } }
       || { /* Origination */
            "kind": "origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts }
+           "script": $023-PtSeouLo.scripted.contracts }
       || { /* Delegation */
            "kind": "delegation",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -78983,24 +78991,24 @@ Full description
       || { /* Set_deposits_limit */
            "kind": "set_deposits_limit",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "limit"?: $023-PtSEouLo.mutez }
+           "limit"?: $023-PtSeouLo.mutez }
       || { /* Increase_paid_storage */
            "kind": "increase_paid_storage",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "amount": $bignum,
-           "destination": $023-PtSEouLo.contract_id.originated }
+           "destination": $023-PtSeouLo.contract_id.originated }
       || { /* Update_consensus_key */
            "kind": "update_consensus_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -79009,7 +79017,7 @@ Full description
       || { /* Update_companion_key */
            "kind": "update_companion_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -79026,7 +79034,7 @@ Full description
       || { /* Register_global_constant */
            "kind": "register_global_constant",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -79034,20 +79042,20 @@ Full description
       || { /* Transfer_ticket */
            "kind": "transfer_ticket",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "ticket_contents": any,
            "ticket_ty": any,
-           "ticket_ticketer": $023-PtSEouLo.contract_id,
+           "ticket_ticketer": $023-PtSeouLo.contract_id,
            "ticket_amount": $positive_bignum,
-           "destination": $023-PtSEouLo.contract_id,
+           "destination": $023-PtSeouLo.contract_id,
            "entrypoint": $unistring }
       || { /* Dal_publish_commitment */
            "kind": "dal_publish_commitment",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -79058,7 +79066,7 @@ Full description
       || { /* Smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -79069,7 +79077,7 @@ Full description
       || { /* Smart_rollup_add_messages */
            "kind": "smart_rollup_add_messages",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -79077,7 +79085,7 @@ Full description
       || { /* Smart_rollup_cement */
            "kind": "smart_rollup_cement",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -79085,7 +79093,7 @@ Full description
       || { /* Smart_rollup_publish */
            "kind": "smart_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -79098,7 +79106,7 @@ Full description
       || { /* Smart_rollup_refute */
            "kind": "smart_rollup_refute",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -79150,7 +79158,7 @@ Full description
       || { /* Smart_rollup_timeout */
            "kind": "smart_rollup_timeout",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -79161,7 +79169,7 @@ Full description
       || { /* Smart_rollup_execute_outbox_message */
            "kind": "smart_rollup_execute_outbox_message",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -79171,7 +79179,7 @@ Full description
       || { /* Smart_rollup_recover_bond */
            "kind": "smart_rollup_recover_bond",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -79180,7 +79188,7 @@ Full description
       || { /* Zk_rollup_origination */
            "kind": "zk_rollup_origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -79198,7 +79206,7 @@ Full description
       || { /* Zk_rollup_publish */
            "kind": "zk_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -79211,15 +79219,15 @@ Full description
                    "rollup_id": $Zk_rollup_hash,
                    "payload": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                  { /* Some */
-                   "contents": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ty": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ticketer": $023-PtSEouLo.contract_id }
+                   "contents": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ty": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ticketer": $023-PtSeouLo.contract_id }
                  || null
                  /* None */ ] ... ] }
       || { /* Zk_rollup_update */
            "kind": "zk_rollup_update",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -79236,7 +79244,7 @@ Full description
                        "fee": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } ] ... ],
                "fee_pi": { "new_state": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                "proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } }
-    $023-PtSEouLo.scripted.contracts: { "code": any,
+    $023-PtSeouLo.scripted.contracts: { "code": any,
                                         "storage": any }
     $Bls12_381_signature:
       /* A Bls12_381 signature (Base58Check-encoded) */
@@ -79293,20 +79301,20 @@ Full description
       /* 64 bit integers
          Decimal representation of 64 bit integers */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $positive_bignum:
       /* Positive big number
@@ -79570,7 +79578,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -79896,7 +79904,7 @@ Full description
     +-------------+--------------------------------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -79935,7 +79943,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -79947,7 +79955,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -79959,7 +79967,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -79975,9 +79983,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -79989,9 +79997,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -80007,11 +80015,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -80023,11 +80031,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -80043,11 +80051,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -80069,7 +80077,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -80119,11 +80127,11 @@ Full description
     +==========+======================+=================================================+
     | Tag      | 1 byte               | unsigned 8-bit integer                          |
     +----------+----------------------+-------------------------------------------------+
-    | contents | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | contents | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ty       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | ty       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ticketer | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +----------+----------------------+-------------------------------------------------+
 
 
@@ -80505,7 +80513,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -80522,7 +80530,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.scripted.contracts
+    023-PtSeouLo.scripted.contracts
     *******************************
 
     +-----------------------+----------+------------------------------------+
@@ -80538,7 +80546,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.entrypoint (Determined from data, 8-bit tag)
+    023-PtSeouLo.entrypoint (Determined from data, 8-bit tag)
     *********************************************************
 
     default (tag 0)
@@ -80661,7 +80669,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
-    | entrypoint            | Determined from data | $023-PtSEouLo.entrypoint           |
+    | entrypoint            | Determined from data | $023-PtSeouLo.entrypoint           |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -80697,7 +80705,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
     ***********************************************************************************
 
     Preattestation (tag 20)
@@ -80788,7 +80796,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation
+    023-PtSeouLo.inlined.consensus_operation
     ****************************************
 
     +------------+----------------------+----------------------------------------------------+
@@ -80796,7 +80804,7 @@ Full description
     +============+======================+====================================================+
     | branch     | 32 bytes             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
-    | operations | Determined from data | $023-PtSEouLo.inlined.consensus_operation.contents |
+    | operations | Determined from data | $023-PtSeouLo.inlined.consensus_operation.contents |
     +------------+----------------------+----------------------------------------------------+
     | signature  | Variable             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
@@ -80850,7 +80858,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.per_block_votes (1 byte, 8-bit tag)
+    023-PtSeouLo.per_block_votes (1 byte, 8-bit tag)
     ************************************************
 
     case_0 (tag 0)
@@ -80943,7 +80951,7 @@ Full description
     +------+--------+------------------------+
 
 
-    023-PtSEouLo.block_header.alpha.full_header
+    023-PtSeouLo.block_header.alpha.full_header
     *******************************************
 
     +---------------------------------------+----------+-------------------------------------+
@@ -80977,13 +80985,13 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | seed_nonce_hash                       | 32 bytes | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    | per_block_votes                       | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                       | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag)
     *******************************************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -81012,11 +81020,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
 
 
@@ -81030,11 +81038,11 @@ Full description
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh1                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh1                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh2                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh2                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
 
 
@@ -81196,7 +81204,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------------------+-------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
@@ -81284,7 +81292,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -81316,7 +81324,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
 
 
@@ -81412,7 +81420,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
 
 
@@ -81494,11 +81502,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -81838,7 +81846,7 @@ Full description
     +===============================+==========+========================================================================+
     | branch                        | 32 bytes | bytes                                                                  |
     +-------------------------------+----------+------------------------------------------------------------------------+
-    | contents_and_signature_prefix | Variable | sequence of $023-PtSEouLo.operation.alpha.contents_or_signature_prefix |
+    | contents_and_signature_prefix | Variable | sequence of $023-PtSeouLo.operation.alpha.contents_or_signature_prefix |
     +-------------------------------+----------+------------------------------------------------------------------------+
     | signature_suffix              | 64 bytes | bytes                                                                  |
     +-------------------------------+----------+------------------------------------------------------------------------+
@@ -81849,53 +81857,53 @@ Full description
     
     { /* Operation_with_metadata */
       "contents":
-        [ $023-PtSEouLo.operation.alpha.operation_contents_and_result ... ],
+        [ $023-PtSeouLo.operation.alpha.operation_contents_and_result ... ],
       "signature"?: $Signature.V2 }
     || { /* Operation_without_metadata */
-         "contents": [ $023-PtSEouLo.operation.alpha.contents ... ],
+         "contents": [ $023-PtSeouLo.operation.alpha.contents ... ],
          "signature"?: $Signature.V2 }
-    $023-PtSEouLo.adaptive_issuance_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.apply_internal_results.alpha.operation_result:
+    $023-PtSeouLo.adaptive_issuance_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.apply_internal_results.alpha.operation_result:
       { /* transaction */
         "kind": "transaction",
-        "source": $023-PtSEouLo.transaction_destination,
+        "source": $023-PtSeouLo.transaction_destination,
         "nonce": integer ∈ [0, 2^16-1],
-        "amount": $023-PtSEouLo.mutez,
-        "destination": $023-PtSEouLo.transaction_destination,
-        "parameters"?: { "entrypoint": $023-PtSEouLo.entrypoint,
+        "amount": $023-PtSeouLo.mutez,
+        "destination": $023-PtSeouLo.transaction_destination,
+        "parameters"?: { "entrypoint": $023-PtSeouLo.entrypoint,
                          "value": any },
         "result":
-          $023-PtSEouLo.operation.alpha.internal_operation_result.transaction }
+          $023-PtSeouLo.operation.alpha.internal_operation_result.transaction }
       || { /* origination */
            "kind": "origination",
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts,
+           "script": $023-PtSeouLo.scripted.contracts,
            "result":
-             $023-PtSEouLo.operation.alpha.internal_operation_result.origination }
+             $023-PtSeouLo.operation.alpha.internal_operation_result.origination }
       || { /* delegation */
            "kind": "delegation",
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
            "delegate"?: $Signature.Public_key_hash,
            "result":
-             $023-PtSEouLo.operation.alpha.internal_operation_result.delegation }
+             $023-PtSeouLo.operation.alpha.internal_operation_result.delegation }
       || { /* event */
            "kind": "event",
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
-           "type": $micheline.023-PtSEouLo.michelson_v1.expression,
-           "tag"?: $023-PtSEouLo.entrypoint,
-           "payload"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+           "type": $micheline.023-PtSeouLo.michelson_v1.expression,
+           "tag"?: $023-PtSeouLo.entrypoint,
+           "payload"?: $micheline.023-PtSeouLo.michelson_v1.expression,
            "result":
-             $023-PtSEouLo.operation.alpha.internal_operation_result.event }
-    $023-PtSEouLo.big_map_id:
+             $023-PtSeouLo.operation.alpha.internal_operation_result.event }
+    $023-PtSeouLo.big_map_id:
       /* Big map identifier
          A big map identifier */
       $bignum
-    $023-PtSEouLo.block_header.alpha.full_header:
+    $023-PtSeouLo.block_header.alpha.full_header:
       /* Shell header
          Block header's shell-related content. It contains information such as
          the block level, its predecessor and timestamp. */
@@ -81911,23 +81919,23 @@ Full description
         "payload_round": integer ∈ [-2^31-1, 2^31],
         "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
         "seed_nonce_hash"?: $cycle_nonce,
-        "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-        "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+        "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+        "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
         "signature": $Signature.V2 }
-    $023-PtSEouLo.bond_id:
+    $023-PtSeouLo.bond_id:
       { /* Smart_rollup_bond_id */
         "smart_rollup": $smart_rollup_address }
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.entrypoint:
+    $023-PtSeouLo.entrypoint:
       /* entrypoint
          Named entrypoint to a Michelson smart contract */
       "default"
@@ -81942,19 +81950,19 @@ Full description
       || "set_delegate_parameters"
       || $unistring
       /* named */
-    $023-PtSEouLo.error:
+    $023-PtSeouLo.error:
       /* The full list of RPC errors would be too long to include.
          It is available at RPC `/errors` (GET).
          Errors specific to protocol Alpha have an id that starts with
          `proto.alpha`. */
       any
-    $023-PtSEouLo.frozen_staker:
+    $023-PtSeouLo.frozen_staker:
       /* frozen_staker
          Abstract notion of staker used in operation receipts for frozen
          deposits, either a single staker or all the stakers delegating to some
          delegate. */
       { /* Single */
-        "contract": $023-PtSEouLo.contract_id,
+        "contract": $023-PtSeouLo.contract_id,
         "delegate": $Signature.Public_key_hash }
       || { /* Shared */
            "delegate": $Signature.Public_key_hash }
@@ -81962,12 +81970,12 @@ Full description
            "baker_own_stake": $Signature.Public_key_hash }
       || { /* Baker_edge */
            "baker_edge": $Signature.Public_key_hash }
-    $023-PtSEouLo.inlined.consensus_operation:
+    $023-PtSeouLo.inlined.consensus_operation:
       /* An operation's shell header. */
       { "branch": $block_hash,
-        "operations": $023-PtSEouLo.inlined.consensus_operation.contents,
+        "operations": $023-PtSeouLo.inlined.consensus_operation.contents,
         "signature"?: $Signature.V2 }
-    $023-PtSEouLo.inlined.consensus_operation.contents:
+    $023-PtSeouLo.inlined.consensus_operation.contents:
       { /* Preattestation */
         "kind": "preattestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -82003,39 +82011,39 @@ Full description
            "committee":
              [ { "slot": integer ∈ [0, 2^16-1],
                  "dal_attestation"?: $bignum } ... ] }
-    $023-PtSEouLo.lazy_storage_diff:
+    $023-PtSeouLo.lazy_storage_diff:
       [ { /* big_map */
           "kind": "big_map",
-          "id": $023-PtSEouLo.big_map_id,
+          "id": $023-PtSeouLo.big_map_id,
           "diff":
             { /* update */
               "action": "update",
               "updates":
                 [ { "key_hash": $script_expr,
-                    "key": $micheline.023-PtSEouLo.michelson_v1.expression,
-                    "value"?: $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
+                    "key": $micheline.023-PtSeouLo.michelson_v1.expression,
+                    "value"?: $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
             || { /* remove */
                  "action": "remove" }
             || { /* copy */
                  "action": "copy",
-                 "source": $023-PtSEouLo.big_map_id,
+                 "source": $023-PtSeouLo.big_map_id,
                  "updates":
                    [ { "key_hash": $script_expr,
-                       "key": $micheline.023-PtSEouLo.michelson_v1.expression,
+                       "key": $micheline.023-PtSeouLo.michelson_v1.expression,
                        "value"?:
-                         $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
+                         $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
             || { /* alloc */
                  "action": "alloc",
                  "updates":
                    [ { "key_hash": $script_expr,
-                       "key": $micheline.023-PtSEouLo.michelson_v1.expression,
+                       "key": $micheline.023-PtSeouLo.michelson_v1.expression,
                        "value"?:
-                         $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
-                 "key_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-                 "value_type": $micheline.023-PtSEouLo.michelson_v1.expression } }
+                         $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
+                 "key_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+                 "value_type": $micheline.023-PtSeouLo.michelson_v1.expression } }
         || { /* sapling_state */
              "kind": "sapling_state",
-             "id": $023-PtSEouLo.sapling_state_id,
+             "id": $023-PtSeouLo.sapling_state_id,
              "diff":
                { /* update */
                  "action": "update",
@@ -82048,7 +82056,7 @@ Full description
                     "action": "remove" }
                || { /* copy */
                     "action": "copy",
-                    "source": $023-PtSEouLo.sapling_state_id,
+                    "source": $023-PtSeouLo.sapling_state_id,
                     "updates":
                       { "commitments_and_ciphertexts":
                           [ [ $sapling.transaction.commitment,
@@ -82062,8 +82070,8 @@ Full description
                               $sapling.transaction.ciphertext ] ... ],
                         "nullifiers": [ $sapling.transaction.nullifier ... ] },
                     "memo_size": integer ∈ [0, 2^16-1] } } ... ]
-    $023-PtSEouLo.liquidity_baking_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.liquidity_baking_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -82223,8 +82231,8 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
-    $023-PtSEouLo.operation.alpha.contents:
+    $023-PtSeouLo.mutez: $positive_bignum
+    $023-PtSeouLo.operation.alpha.contents:
       { /* Attestation */
         "kind": "attestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -82263,8 +82271,8 @@ Full description
       || { /* Double_consensus_operation_evidence */
            "kind": "double_consensus_operation_evidence",
            "slot": integer ∈ [0, 2^16-1],
-           "op1": $023-PtSEouLo.inlined.consensus_operation,
-           "op2": $023-PtSEouLo.inlined.consensus_operation }
+           "op1": $023-PtSeouLo.inlined.consensus_operation,
+           "op2": $023-PtSeouLo.inlined.consensus_operation }
       || { /* Seed_nonce_revelation */
            "kind": "seed_nonce_revelation",
            "level": integer ∈ [0, 2^31],
@@ -82275,11 +82283,11 @@ Full description
              [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/, /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ] }
       || { /* Double_baking_evidence */
            "kind": "double_baking_evidence",
-           "bh1": $023-PtSEouLo.block_header.alpha.full_header,
-           "bh2": $023-PtSEouLo.block_header.alpha.full_header }
+           "bh1": $023-PtSeouLo.block_header.alpha.full_header,
+           "bh2": $023-PtSeouLo.block_header.alpha.full_header }
       || { /* Dal_entrapment_evidence */
            "kind": "dal_entrapment_evidence",
-           "attestation": $023-PtSEouLo.inlined.consensus_operation,
+           "attestation": $023-PtSeouLo.inlined.consensus_operation,
            "consensus_slot": integer ∈ [0, 2^16-1],
            "slot_index": integer ∈ [0, 255],
            "shard_with_proof":
@@ -82305,7 +82313,7 @@ Full description
       || { /* Reveal */
            "kind": "reveal",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82314,29 +82322,29 @@ Full description
       || { /* Transaction */
            "kind": "transaction",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "amount": $023-PtSEouLo.mutez,
-           "destination": $023-PtSEouLo.contract_id,
+           "amount": $023-PtSeouLo.mutez,
+           "destination": $023-PtSeouLo.contract_id,
            "parameters"?:
-             { "entrypoint": $023-PtSEouLo.entrypoint,
+             { "entrypoint": $023-PtSeouLo.entrypoint,
                "value": any } }
       || { /* Origination */
            "kind": "origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts }
+           "script": $023-PtSeouLo.scripted.contracts }
       || { /* Delegation */
            "kind": "delegation",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82344,24 +82352,24 @@ Full description
       || { /* Set_deposits_limit */
            "kind": "set_deposits_limit",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "limit"?: $023-PtSEouLo.mutez }
+           "limit"?: $023-PtSeouLo.mutez }
       || { /* Increase_paid_storage */
            "kind": "increase_paid_storage",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "amount": $bignum,
-           "destination": $023-PtSEouLo.contract_id.originated }
+           "destination": $023-PtSeouLo.contract_id.originated }
       || { /* Update_consensus_key */
            "kind": "update_consensus_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82370,7 +82378,7 @@ Full description
       || { /* Update_companion_key */
            "kind": "update_companion_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82387,7 +82395,7 @@ Full description
       || { /* Register_global_constant */
            "kind": "register_global_constant",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82395,20 +82403,20 @@ Full description
       || { /* Transfer_ticket */
            "kind": "transfer_ticket",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "ticket_contents": any,
            "ticket_ty": any,
-           "ticket_ticketer": $023-PtSEouLo.contract_id,
+           "ticket_ticketer": $023-PtSeouLo.contract_id,
            "ticket_amount": $positive_bignum,
-           "destination": $023-PtSEouLo.contract_id,
+           "destination": $023-PtSeouLo.contract_id,
            "entrypoint": $unistring }
       || { /* Dal_publish_commitment */
            "kind": "dal_publish_commitment",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82419,7 +82427,7 @@ Full description
       || { /* Smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82430,7 +82438,7 @@ Full description
       || { /* Smart_rollup_add_messages */
            "kind": "smart_rollup_add_messages",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82438,7 +82446,7 @@ Full description
       || { /* Smart_rollup_cement */
            "kind": "smart_rollup_cement",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82446,7 +82454,7 @@ Full description
       || { /* Smart_rollup_publish */
            "kind": "smart_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82459,7 +82467,7 @@ Full description
       || { /* Smart_rollup_refute */
            "kind": "smart_rollup_refute",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82511,7 +82519,7 @@ Full description
       || { /* Smart_rollup_timeout */
            "kind": "smart_rollup_timeout",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82522,7 +82530,7 @@ Full description
       || { /* Smart_rollup_execute_outbox_message */
            "kind": "smart_rollup_execute_outbox_message",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82532,7 +82540,7 @@ Full description
       || { /* Smart_rollup_recover_bond */
            "kind": "smart_rollup_recover_bond",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82541,7 +82549,7 @@ Full description
       || { /* Zk_rollup_origination */
            "kind": "zk_rollup_origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82559,7 +82567,7 @@ Full description
       || { /* Zk_rollup_publish */
            "kind": "zk_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82572,15 +82580,15 @@ Full description
                    "rollup_id": $Zk_rollup_hash,
                    "payload": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                  { /* Some */
-                   "contents": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ty": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ticketer": $023-PtSEouLo.contract_id }
+                   "contents": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ty": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ticketer": $023-PtSeouLo.contract_id }
                  || null
                  /* None */ ] ... ] }
       || { /* Zk_rollup_update */
            "kind": "zk_rollup_update",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82597,137 +82605,137 @@ Full description
                        "fee": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } ] ... ],
                "fee_pi": { "new_state": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                "proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } }
-    $023-PtSEouLo.operation.alpha.internal_operation_result.delegation:
+    $023-PtSeouLo.operation.alpha.internal_operation_result.delegation:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.internal_operation_result.event:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.internal_operation_result.event:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.internal_operation_result.origination:
+    $023-PtSeouLo.operation.alpha.internal_operation_result.origination:
       { /* Applied */
         "status": "applied",
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "originated_contracts"?:
-             [ $023-PtSEouLo.contract_id.originated ... ],
+             [ $023-PtSeouLo.contract_id.originated ... ],
            "consumed_milligas"?: $positive_bignum,
            "storage_size"?: $bignum,
            "paid_storage_size_diff"?: $bignum,
-           "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
-    $023-PtSEouLo.operation.alpha.internal_operation_result.transaction:
+           "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
+    $023-PtSeouLo.operation.alpha.internal_operation_result.transaction:
       /* Applied */
       { /* To_contract */
         "status": "applied",
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_receipt"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "status": "applied",
            "consumed_milligas"?: $positive_bignum,
            "ticket_receipt":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || /* Backtracked */
       { /* To_contract */
         "status": "backtracked",
-        "errors"?: [ $023-PtSEouLo.error ... ],
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "errors"?: [ $023-PtSeouLo.error ... ],
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_receipt"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "ticket_receipt":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
-    $023-PtSEouLo.operation.alpha.operation_contents_and_result:
+    $023-PtSeouLo.operation.alpha.operation_contents_and_result:
       { /* Attestation */
         "kind": "attestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -82736,7 +82744,7 @@ Full description
         "block_payload_hash": $value_hash,
         "metadata":
           { "balance_updates"?:
-              $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+              $023-PtSeouLo.operation_metadata.alpha.balance_updates,
             "delegate": $Signature.Public_key_hash,
             "consensus_power": integer ∈ [-2^30, 2^30],
             "consensus_key": $Signature.Public_key_hash } }
@@ -82749,7 +82757,7 @@ Full description
            "dal_attestation": $bignum,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "delegate": $Signature.Public_key_hash,
                "consensus_power": integer ∈ [-2^30, 2^30],
                "consensus_key": $Signature.Public_key_hash } }
@@ -82761,7 +82769,7 @@ Full description
            "block_payload_hash": $value_hash,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "delegate": $Signature.Public_key_hash,
                "consensus_power": integer ∈ [-2^30, 2^30],
                "consensus_key": $Signature.Public_key_hash } }
@@ -82776,11 +82784,12 @@ Full description
                  "dal_attestation"?: $bignum } ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "committee":
                  [ { "delegate": $Signature.Public_key_hash,
-                     "consensus_pkh": $Signature.Public_key_hash } ... ],
-               "consensus_power": integer ∈ [-2^30, 2^30] } }
+                     "consensus_pkh": $Signature.Public_key_hash,
+                     "consensus_power": integer ∈ [-2^30, 2^30] } ... ],
+               "total_consensus_power": integer ∈ [-2^30, 2^30] } }
       || { /* Preattestations_aggregate */
            "kind": "preattestations_aggregate",
            "consensus_content":
@@ -82790,16 +82799,17 @@ Full description
            "committee": [ integer ∈ [0, 2^16-1] ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "committee":
                  [ { "delegate": $Signature.Public_key_hash,
-                     "consensus_pkh": $Signature.Public_key_hash } ... ],
-               "consensus_power": integer ∈ [-2^30, 2^30] } }
+                     "consensus_pkh": $Signature.Public_key_hash,
+                     "consensus_power": integer ∈ [-2^30, 2^30] } ... ],
+               "total_consensus_power": integer ∈ [-2^30, 2^30] } }
       || { /* Double_consensus_operation_evidence */
            "kind": "double_consensus_operation_evidence",
            "slot": integer ∈ [0, 2^16-1],
-           "op1": $023-PtSEouLo.inlined.consensus_operation,
-           "op2": $023-PtSEouLo.inlined.consensus_operation,
+           "op1": $023-PtSeouLo.inlined.consensus_operation,
+           "op2": $023-PtSeouLo.inlined.consensus_operation,
            "metadata":
              { "punished_delegate": $Signature.Public_key_hash,
                "rewarded_delegate": $Signature.Public_key_hash,
@@ -82809,7 +82819,7 @@ Full description
                    "kind": "attestation" | "block" | "preattestation" } } }
       || { /* Dal_entrapment_evidence */
            "kind": "dal_entrapment_evidence",
-           "attestation": $023-PtSEouLo.inlined.consensus_operation,
+           "attestation": $023-PtSeouLo.inlined.consensus_operation,
            "consensus_slot": integer ∈ [0, 2^16-1],
            "slot_index": integer ∈ [0, 255],
            "shard_with_proof":
@@ -82819,25 +82829,25 @@ Full description
                "proof": $DAL_commitment },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates } }
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates } }
       || { /* Seed_nonce_revelation */
            "kind": "seed_nonce_revelation",
            "level": integer ∈ [0, 2^31],
            "nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates } }
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates } }
       || { /* Vdf_revelation */
            "kind": "vdf_revelation",
            "solution":
              [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/, /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates } }
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates } }
       || { /* Double_baking_evidence */
            "kind": "double_baking_evidence",
-           "bh1": $023-PtSEouLo.block_header.alpha.full_header,
-           "bh2": $023-PtSEouLo.block_header.alpha.full_header,
+           "bh1": $023-PtSeouLo.block_header.alpha.full_header,
+           "bh2": $023-PtSeouLo.block_header.alpha.full_header,
            "metadata":
              { "punished_delegate": $Signature.Public_key_hash,
                "rewarded_delegate": $Signature.Public_key_hash,
@@ -82851,7 +82861,7 @@ Full description
            "secret": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates } }
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates } }
       || { /* Proposals */
            "kind": "proposals",
            "source": $Signature.Public_key_hash,
@@ -82872,12 +82882,12 @@ Full description
            "destination": $Signature.Public_key_hash,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "allocated_destination_contract"?: boolean } }
       || { /* Reveal */
            "kind": "reveal",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82885,112 +82895,112 @@ Full description
            "proof"?: $Bls12_381_signature,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.reveal,
+                 $023-PtSeouLo.operation.alpha.operation_result.reveal,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Transaction */
            "kind": "transaction",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "amount": $023-PtSEouLo.mutez,
-           "destination": $023-PtSEouLo.contract_id,
+           "amount": $023-PtSeouLo.mutez,
+           "destination": $023-PtSeouLo.contract_id,
            "parameters"?:
-             { "entrypoint": $023-PtSEouLo.entrypoint,
+             { "entrypoint": $023-PtSeouLo.entrypoint,
                "value": any },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.transaction,
+                 $023-PtSeouLo.operation.alpha.operation_result.transaction,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Origination */
            "kind": "origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts,
+           "script": $023-PtSeouLo.scripted.contracts,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.origination,
+                 $023-PtSeouLo.operation.alpha.operation_result.origination,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Delegation */
            "kind": "delegation",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "delegate"?: $Signature.Public_key_hash,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.delegation,
+                 $023-PtSeouLo.operation.alpha.operation_result.delegation,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Register_global_constant */
            "kind": "register_global_constant",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "value": any,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.register_global_constant,
+                 $023-PtSeouLo.operation.alpha.operation_result.register_global_constant,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Set_deposits_limit */
            "kind": "set_deposits_limit",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "limit"?: $023-PtSEouLo.mutez,
+           "limit"?: $023-PtSeouLo.mutez,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.set_deposits_limit,
+                 $023-PtSeouLo.operation.alpha.operation_result.set_deposits_limit,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Increase_paid_storage */
            "kind": "increase_paid_storage",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "amount": $bignum,
-           "destination": $023-PtSEouLo.contract_id.originated,
+           "destination": $023-PtSeouLo.contract_id.originated,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.increase_paid_storage,
+                 $023-PtSeouLo.operation.alpha.operation_result.increase_paid_storage,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Update_consensus_key */
            "kind": "update_consensus_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -82998,15 +83008,15 @@ Full description
            "proof"?: $Bls12_381_signature,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.update_consensus_key,
+                 $023-PtSeouLo.operation.alpha.operation_result.update_consensus_key,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Update_companion_key */
            "kind": "update_companion_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -83014,35 +83024,35 @@ Full description
            "proof"?: $Bls12_381_signature,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.update_consensus_key,
+                 $023-PtSeouLo.operation.alpha.operation_result.update_consensus_key,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Transfer_ticket */
            "kind": "transfer_ticket",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "ticket_contents": any,
            "ticket_ty": any,
-           "ticket_ticketer": $023-PtSEouLo.contract_id,
+           "ticket_ticketer": $023-PtSeouLo.contract_id,
            "ticket_amount": $positive_bignum,
-           "destination": $023-PtSEouLo.contract_id,
+           "destination": $023-PtSeouLo.contract_id,
            "entrypoint": $unistring,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.transfer_ticket,
+                 $023-PtSeouLo.operation.alpha.operation_result.transfer_ticket,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Dal_publish_commitment */
            "kind": "dal_publish_commitment",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -83052,15 +83062,15 @@ Full description
                "commitment_proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.dal_publish_commitment,
+                 $023-PtSeouLo.operation.alpha.operation_result.dal_publish_commitment,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -83070,45 +83080,45 @@ Full description
            "whitelist"?: [ $Signature.Public_key_hash ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_originate,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_originate,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_add_messages */
            "kind": "smart_rollup_add_messages",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "message": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_add_messages,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_add_messages,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_cement */
            "kind": "smart_rollup_cement",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "rollup": $smart_rollup_address,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_cement,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_cement,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_publish */
            "kind": "smart_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -83120,15 +83130,15 @@ Full description
                "number_of_ticks": $int64 },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_publish,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_publish,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_refute */
            "kind": "smart_rollup_refute",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -83179,15 +83189,15 @@ Full description
                                 "input_proof_kind": "first_input" } } },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_refute,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_refute,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_timeout */
            "kind": "smart_rollup_timeout",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -83197,15 +83207,15 @@ Full description
                "bob": $Signature.Public_key_hash },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_timeout,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_timeout,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_execute_outbox_message */
            "kind": "smart_rollup_execute_outbox_message",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -83214,15 +83224,15 @@ Full description
            "output_proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_recover_bond */
            "kind": "smart_rollup_recover_bond",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -83230,15 +83240,15 @@ Full description
            "staker": $Signature.Public_key_hash,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_recover_bond,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_recover_bond,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Zk_rollup_origination */
            "kind": "zk_rollup_origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -83255,15 +83265,15 @@ Full description
            "nb_ops": integer ∈ [-2^30, 2^30],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_origination,
+                 $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_origination,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Zk_rollup_publish */
            "kind": "zk_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -83276,22 +83286,22 @@ Full description
                    "rollup_id": $Zk_rollup_hash,
                    "payload": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                  { /* Some */
-                   "contents": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ty": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ticketer": $023-PtSEouLo.contract_id }
+                   "contents": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ty": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ticketer": $023-PtSeouLo.contract_id }
                  || null
                  /* None */ ] ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_publish,
+                 $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_publish,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Zk_rollup_update */
            "kind": "zk_rollup_update",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -83310,12 +83320,12 @@ Full description
                "proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_update,
+                 $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_update,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
-    $023-PtSEouLo.operation.alpha.operation_result.dal_publish_commitment:
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
+    $023-PtSeouLo.operation.alpha.operation_result.dal_publish_commitment:
       { /* Applied */
         "status": "applied",
         "slot_header":
@@ -83327,12 +83337,12 @@ Full description
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "slot_header":
              { /* v0 */
                "version": "0",
@@ -83340,127 +83350,127 @@ Full description
                "index": integer ∈ [0, 255],
                "commitment": $DAL_commitment },
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.delegation:
+    $023-PtSeouLo.operation.alpha.operation_result.delegation:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.operation_result.increase_paid_storage:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.operation_result.increase_paid_storage:
       { /* Applied */
         "status": "applied",
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.origination:
+    $023-PtSeouLo.operation.alpha.operation_result.origination:
       { /* Applied */
         "status": "applied",
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "originated_contracts"?:
-             [ $023-PtSEouLo.contract_id.originated ... ],
+             [ $023-PtSeouLo.contract_id.originated ... ],
            "consumed_milligas"?: $positive_bignum,
            "storage_size"?: $bignum,
            "paid_storage_size_diff"?: $bignum,
-           "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
-    $023-PtSEouLo.operation.alpha.operation_result.register_global_constant:
+           "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
+    $023-PtSeouLo.operation.alpha.operation_result.register_global_constant:
       { /* Applied */
         "status": "applied",
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "global_address": $script_expr }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum,
            "storage_size"?: $bignum,
            "global_address": $script_expr }
-    $023-PtSEouLo.operation.alpha.operation_result.reveal:
+    $023-PtSeouLo.operation.alpha.operation_result.reveal:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.set_deposits_limit:
+    $023-PtSeouLo.operation.alpha.operation_result.set_deposits_limit:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_add_messages:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_add_messages:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_cement:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_cement:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
@@ -83468,28 +83478,28 @@ Full description
         "commitment_hash": $smart_rollup_commitment_hash }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "inbox_level": integer ∈ [0, 2^31],
            "commitment_hash": $smart_rollup_commitment_hash }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates":
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
         "whitelist_update"?:
           { /* Public */
@@ -83501,22 +83511,22 @@ Full description
         "paid_storage_size_diff"?: $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ],
            "whitelist_update"?:
              { /* Public */
@@ -83526,68 +83536,68 @@ Full description
                   "whitelist": [ $Signature.Public_key_hash ... ] },
            "consumed_milligas"?: $positive_bignum,
            "paid_storage_size_diff"?: $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_originate:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_originate:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "address": $smart_rollup_address,
         "genesis_commitment_hash": $smart_rollup_commitment_hash,
         "consumed_milligas"?: $positive_bignum,
         "size": $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "address": $smart_rollup_address,
            "genesis_commitment_hash": $smart_rollup_commitment_hash,
            "consumed_milligas"?: $positive_bignum,
            "size": $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_publish:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_publish:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
         "staked_hash": $smart_rollup_commitment_hash,
         "published_at_level": integer ∈ [0, 2^31],
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "staked_hash": $smart_rollup_commitment_hash,
            "published_at_level": integer ∈ [0, 2^31],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_recover_bond:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_recover_bond:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_refute:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_refute:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
@@ -83602,15 +83612,15 @@ Full description
                  || { /* Draw */
                       "kind": "draw" } },
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "game_status":
              "ongoing"
@@ -83623,8 +83633,8 @@ Full description
                     || { /* Draw */
                          "kind": "draw" } },
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_timeout:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_timeout:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
@@ -83639,15 +83649,15 @@ Full description
                  || { /* Draw */
                       "kind": "draw" } },
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "game_status":
              "ongoing"
@@ -83660,216 +83670,216 @@ Full description
                     || { /* Draw */
                          "kind": "draw" } },
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.operation_result.transaction:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.operation_result.transaction:
       /* Applied */
       { /* To_contract */
         "status": "applied",
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "status": "applied",
            "consumed_milligas"?: $positive_bignum,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || /* Backtracked */
       { /* To_contract */
         "status": "backtracked",
-        "errors"?: [ $023-PtSEouLo.error ... ],
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "errors"?: [ $023-PtSeouLo.error ... ],
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
-    $023-PtSEouLo.operation.alpha.operation_result.transfer_ticket:
+    $023-PtSeouLo.operation.alpha.operation_result.transfer_ticket:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates":
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
         "consumed_milligas"?: $positive_bignum,
         "paid_storage_size_diff"?: $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ],
            "consumed_milligas"?: $positive_bignum,
            "paid_storage_size_diff"?: $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.update_consensus_key:
+    $023-PtSeouLo.operation.alpha.operation_result.update_consensus_key:
       { /* Applied */
         "status": "applied",
         "kind": boolean,
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "kind": boolean,
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_origination:
+    $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_origination:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "originated_zk_rollup": $Zk_rollup_hash,
         "consumed_milligas"?: $positive_bignum,
         "size": $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "originated_zk_rollup": $Zk_rollup_hash,
            "consumed_milligas"?: $positive_bignum,
            "size": $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_publish:
+    $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_publish:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum,
         "size": $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum,
            "size": $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_update:
+    $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_update:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum,
         "paid_storage_size_diff"?: $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum,
            "paid_storage_size_diff"?: $bignum }
-    $023-PtSEouLo.operation_metadata.alpha.balance_updates:
+    $023-PtSeouLo.operation_metadata.alpha.balance_updates:
       [ { /* Contract */
           "kind": "contract",
-          "contract": $023-PtSEouLo.contract_id,
+          "contract": $023-PtSeouLo.contract_id,
           "change": $int64,
           "origin": "block" }
         || { /* Contract */
              "kind": "contract",
-             "contract": $023-PtSEouLo.contract_id,
+             "contract": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "migration" }
         || { /* Contract */
              "kind": "contract",
-             "contract": $023-PtSEouLo.contract_id,
+             "contract": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "subsidy" }
         || { /* Contract */
              "kind": "contract",
-             "contract": $023-PtSEouLo.contract_id,
+             "contract": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "simulation" }
         || { /* Contract */
              "kind": "contract",
-             "contract": $023-PtSEouLo.contract_id,
+             "contract": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash }
@@ -83902,31 +83912,31 @@ Full description
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "block" }
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "migration" }
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "subsidy" }
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "simulation" }
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash }
@@ -84317,36 +84327,36 @@ Full description
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "block" }
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "migration" }
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "subsidy" }
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "simulation" }
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash }
@@ -84405,35 +84415,35 @@ Full description
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "block" }
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "migration" }
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "subsidy" }
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "simulation" }
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "delayed_operation",
@@ -84441,31 +84451,31 @@ Full description
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "block" }
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "migration" }
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "subsidy" }
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "simulation" }
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash }
@@ -84557,23 +84567,23 @@ Full description
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash } ... ]
-    $023-PtSEouLo.sapling_state_id:
+    $023-PtSeouLo.sapling_state_id:
       /* Sapling state identifier
          A sapling state identifier */
       $bignum
-    $023-PtSEouLo.scripted.contracts: { "code": any,
+    $023-PtSeouLo.scripted.contracts: { "code": any,
                                         "storage": any }
-    $023-PtSEouLo.staker:
+    $023-PtSeouLo.staker:
       /* unstaked_frozen_staker
          Abstract notion of staker used in operation receipts for unstaked
          frozen deposits, either a single staker or all the stakers delegating
          to some delegate. */
       { /* Single */
-        "contract": $023-PtSEouLo.contract_id,
+        "contract": $023-PtSeouLo.contract_id,
         "delegate": $Signature.Public_key_hash }
       || { /* Shared */
            "delegate": $Signature.Public_key_hash }
-    $023-PtSEouLo.transaction_destination:
+    $023-PtSeouLo.transaction_destination:
       /* A destination of a transaction
          A destination notation compatible with the contract notation as given
          to an RPC or inside scripts. Can be a base58 implicit contract hash, a
@@ -84638,20 +84648,20 @@ Full description
       /* 64 bit integers
          Decimal representation of 64 bit integers */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $positive_bignum:
       /* Positive big number
@@ -84909,7 +84919,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -85235,7 +85245,7 @@ Full description
     +-------------+--------------------------------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -85274,7 +85284,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -85286,7 +85296,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -85298,7 +85308,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -85314,9 +85324,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -85328,9 +85338,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -85346,11 +85356,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -85362,11 +85372,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -85382,11 +85392,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -85408,7 +85418,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -85458,11 +85468,11 @@ Full description
     +==========+======================+=================================================+
     | Tag      | 1 byte               | unsigned 8-bit integer                          |
     +----------+----------------------+-------------------------------------------------+
-    | contents | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | contents | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ty       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | ty       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ticketer | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +----------+----------------------+-------------------------------------------------+
 
 
@@ -85844,7 +85854,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -85861,7 +85871,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.scripted.contracts
+    023-PtSeouLo.scripted.contracts
     *******************************
 
     +-----------------------+----------+------------------------------------+
@@ -85877,7 +85887,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.entrypoint (Determined from data, 8-bit tag)
+    023-PtSeouLo.entrypoint (Determined from data, 8-bit tag)
     *********************************************************
 
     default (tag 0)
@@ -86000,7 +86010,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
-    | entrypoint            | Determined from data | $023-PtSEouLo.entrypoint           |
+    | entrypoint            | Determined from data | $023-PtSeouLo.entrypoint           |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -86036,7 +86046,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
     ***********************************************************************************
 
     Preattestation (tag 20)
@@ -86127,7 +86137,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation
+    023-PtSeouLo.inlined.consensus_operation
     ****************************************
 
     +------------+----------------------+----------------------------------------------------+
@@ -86135,7 +86145,7 @@ Full description
     +============+======================+====================================================+
     | branch     | 32 bytes             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
-    | operations | Determined from data | $023-PtSEouLo.inlined.consensus_operation.contents |
+    | operations | Determined from data | $023-PtSeouLo.inlined.consensus_operation.contents |
     +------------+----------------------+----------------------------------------------------+
     | signature  | Variable             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
@@ -86189,7 +86199,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.per_block_votes (1 byte, 8-bit tag)
+    023-PtSeouLo.per_block_votes (1 byte, 8-bit tag)
     ************************************************
 
     case_0 (tag 0)
@@ -86282,7 +86292,7 @@ Full description
     +------+--------+------------------------+
 
 
-    023-PtSEouLo.block_header.alpha.full_header
+    023-PtSeouLo.block_header.alpha.full_header
     *******************************************
 
     +---------------------------------------+----------+-------------------------------------+
@@ -86316,13 +86326,13 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | seed_nonce_hash                       | 32 bytes | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    | per_block_votes                       | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                       | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.contents (Determined from data, 8-bit tag)
     ***********************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -86351,11 +86361,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
 
 
@@ -86369,11 +86379,11 @@ Full description
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh1                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh1                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh2                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh2                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
 
 
@@ -86535,7 +86545,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------------------+-------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
@@ -86623,7 +86633,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -86655,7 +86665,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
 
 
@@ -86751,7 +86761,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
 
 
@@ -86833,11 +86843,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -87157,7 +87167,7 @@ Full description
     +---------------+----------------------+------------------------+
 
 
-    023-PtSEouLo.staker (Determined from data, 8-bit tag)
+    023-PtSeouLo.staker (Determined from data, 8-bit tag)
     *****************************************************
 
     Single (tag 0)
@@ -87168,7 +87178,7 @@ Full description
     +==========+==========+===========================+
     | Tag      | 1 byte   | unsigned 8-bit integer    |
     +----------+----------+---------------------------+
-    | contract | 22 bytes | $023-PtSEouLo.contract_id |
+    | contract | 22 bytes | $023-PtSeouLo.contract_id |
     +----------+----------+---------------------------+
     | delegate | 21 bytes | $public_key_hash          |
     +----------+----------+---------------------------+
@@ -87186,7 +87196,7 @@ Full description
     +----------+----------+------------------------+
 
 
-    023-PtSEouLo.bond_id (21 bytes, 8-bit tag)
+    023-PtSeouLo.bond_id (21 bytes, 8-bit tag)
     ******************************************
 
     Smart_rollup_bond_id (tag 1)
@@ -87201,7 +87211,7 @@ Full description
     +--------------+----------+------------------------+
 
 
-    023-PtSEouLo.frozen_staker (Determined from data, 8-bit tag)
+    023-PtSeouLo.frozen_staker (Determined from data, 8-bit tag)
     ************************************************************
 
     Single (tag 0)
@@ -87212,7 +87222,7 @@ Full description
     +==========+==========+===========================+
     | Tag      | 1 byte   | unsigned 8-bit integer    |
     +----------+----------+---------------------------+
-    | contract | 22 bytes | $023-PtSEouLo.contract_id |
+    | contract | 22 bytes | $023-PtSeouLo.contract_id |
     +----------+----------+---------------------------+
     | delegate | 21 bytes | $public_key_hash          |
     +----------+----------+---------------------------+
@@ -87265,7 +87275,7 @@ Full description
     +==========+==========+==================================+
     | Tag      | 1 byte   | unsigned 8-bit integer           |
     +----------+----------+----------------------------------+
-    | contract | 22 bytes | $023-PtSEouLo.contract_id        |
+    | contract | 22 bytes | $023-PtSeouLo.contract_id        |
     +----------+----------+----------------------------------+
     | change   | 8 bytes  | signed 64-bit big-endian integer |
     +----------+----------+----------------------------------+
@@ -87291,7 +87301,7 @@ Full description
     +========+======================+==================================+
     | Tag    | 1 byte               | unsigned 8-bit integer           |
     +--------+----------------------+----------------------------------+
-    | staker | Determined from data | $023-PtSEouLo.frozen_staker      |
+    | staker | Determined from data | $023-PtSeouLo.frozen_staker      |
     +--------+----------------------+----------------------------------+
     | change | 8 bytes              | signed 64-bit big-endian integer |
     +--------+----------------------+----------------------------------+
@@ -87481,9 +87491,9 @@ Full description
     +==========+==========+==================================+
     | Tag      | 1 byte   | unsigned 8-bit integer           |
     +----------+----------+----------------------------------+
-    | contract | 22 bytes | $023-PtSEouLo.contract_id        |
+    | contract | 22 bytes | $023-PtSeouLo.contract_id        |
     +----------+----------+----------------------------------+
-    | bond_id  | 21 bytes | $023-PtSEouLo.bond_id            |
+    | bond_id  | 21 bytes | $023-PtSeouLo.bond_id            |
     +----------+----------+----------------------------------+
     | change   | 8 bytes  | signed 64-bit big-endian integer |
     +----------+----------+----------------------------------+
@@ -87521,7 +87531,7 @@ Full description
     +========+======================+==================================+
     | Tag    | 1 byte               | unsigned 8-bit integer           |
     +--------+----------------------+----------------------------------+
-    | staker | Determined from data | $023-PtSEouLo.staker             |
+    | staker | Determined from data | $023-PtSeouLo.staker             |
     +--------+----------------------+----------------------------------+
     | cycle  | 4 bytes              | signed 32-bit big-endian integer |
     +--------+----------------------+----------------------------------+
@@ -87537,7 +87547,7 @@ Full description
     +===========+==========+==================================+
     | Tag       | 1 byte   | unsigned 8-bit integer           |
     +-----------+----------+----------------------------------+
-    | delegator | 22 bytes | $023-PtSEouLo.contract_id        |
+    | delegator | 22 bytes | $023-PtSeouLo.contract_id        |
     +-----------+----------+----------------------------------+
     | change    | 8 bytes  | signed 64-bit big-endian integer |
     +-----------+----------+----------------------------------+
@@ -87662,7 +87672,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.zk_rollup_update (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.zk_rollup_update (Determined from data, 8-bit tag)
     ************************************************************************************************
 
     Applied (tag 0)
@@ -87673,7 +87683,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -87719,7 +87729,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_61                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -87729,7 +87739,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.transaction_destination (22 bytes, 8-bit tag)
+    023-PtSeouLo.transaction_destination (22 bytes, 8-bit tag)
     **********************************************************
 
     Implicit (tag 0)
@@ -87786,7 +87796,7 @@ Full description
     +----------------+----------+------------------------+
 
 
-    023-PtSEouLo.operation.alpha.internal_operation_result.event (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.internal_operation_result.event (Determined from data, 8-bit tag)
     **********************************************************************************************
 
     Applied (tag 0)
@@ -87841,7 +87851,7 @@ Full description
     +------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.internal_operation_result.delegation (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.internal_operation_result.delegation (Determined from data, 8-bit tag)
     ***************************************************************************************************
 
     Applied (tag 0)
@@ -87854,7 +87864,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                               |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -87898,7 +87908,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -88015,11 +88025,11 @@ Full description
     +=============================+======================+=================================================+
     | key_hash                    | 32 bytes             | bytes                                           |
     +-----------------------------+----------------------+-------------------------------------------------+
-    | key                         | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key                         | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "value" | 1 byte               | boolean (0 for false, 255 for true)             |
     +-----------------------------+----------------------+-------------------------------------------------+
-    | value                       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | value                       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------------+----------------------+-------------------------------------------------+
 
 
@@ -88078,9 +88088,9 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------+
     | updates               | Variable             | sequence of $X_89                               |
     +-----------------------+----------------------+-------------------------------------------------+
-    | key_type              | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key_type              | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------------------+-------------------------------------------------+
-    | value_type            | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | value_type            | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------------------+-------------------------------------------------+
 
 
@@ -88115,7 +88125,7 @@ Full description
     +------+----------------------+------------------------+
 
 
-    023-PtSEouLo.lazy_storage_diff
+    023-PtSeouLo.lazy_storage_diff
     ******************************
 
     +-----------------------+----------+------------------------------------+
@@ -88127,7 +88137,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.internal_operation_result.origination (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.internal_operation_result.origination (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -88138,13 +88148,13 @@ Full description
     +==========================================================================+======================+==================================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer                           |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -88154,7 +88164,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -88194,13 +88204,13 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | errors                                                                   | Determined from data | $X_61                                            |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -88210,7 +88220,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -88220,11 +88230,11 @@ Full description
     +--------------+----------------------+-------------------------------------------------+
     | Name         | Size                 | Contents                                        |
     +==============+======================+=================================================+
-    | ticketer     | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer     | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +--------------+----------------------+-------------------------------------------------+
-    | content_type | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | content_type | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +--------------+----------------------+-------------------------------------------------+
-    | content      | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | content      | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +--------------+----------------------+-------------------------------------------------+
 
 
@@ -88234,7 +88244,7 @@ Full description
     +---------+----------------------+---------------------------------------+
     | Name    | Size                 | Contents                              |
     +=========+======================+=======================================+
-    | account | 22 bytes             | $023-PtSEouLo.transaction_destination |
+    | account | 22 bytes             | $023-PtSeouLo.transaction_destination |
     +---------+----------------------+---------------------------------------+
     | amount  | Determined from data | $Z.t                                  |
     +---------+----------------------+---------------------------------------+
@@ -88267,9 +88277,9 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "storage"                                            | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | storage                                                                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression  |
+    | storage                                                                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -88279,7 +88289,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -88291,7 +88301,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -88311,7 +88321,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.internal_operation_result.transaction (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.internal_operation_result.transaction (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -88366,7 +88376,7 @@ Full description
     +------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.apply_internal_results.alpha.operation_result (Determined from data, 8-bit tag)
+    023-PtSeouLo.apply_internal_results.alpha.operation_result (Determined from data, 8-bit tag)
     ********************************************************************************************
 
     transaction (tag 1)
@@ -88377,19 +88387,19 @@ Full description
     +==================================+======================+=====================================================================+
     | Tag                              | 1 byte               | unsigned 8-bit integer                                              |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
-    | source                           | 22 bytes             | $023-PtSEouLo.transaction_destination                               |
+    | source                           | 22 bytes             | $023-PtSeouLo.transaction_destination                               |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
     | nonce                            | 2 bytes              | unsigned 16-bit big-endian integer                                  |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
     | amount                           | Determined from data | $N.t                                                                |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.transaction_destination                               |
+    | destination                      | 22 bytes             | $023-PtSeouLo.transaction_destination                               |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true)                                 |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
     | parameters                       | Determined from data | $X_31                                                               |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
-    | result                           | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.transaction |
+    | result                           | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.transaction |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
 
 
@@ -88401,7 +88411,7 @@ Full description
     +================================+======================+=====================================================================+
     | Tag                            | 1 byte               | unsigned 8-bit integer                                              |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
-    | source                         | 22 bytes             | $023-PtSEouLo.transaction_destination                               |
+    | source                         | 22 bytes             | $023-PtSeouLo.transaction_destination                               |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
     | nonce                          | 2 bytes              | unsigned 16-bit big-endian integer                                  |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
@@ -88411,9 +88421,9 @@ Full description
     +--------------------------------+----------------------+---------------------------------------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                                                    |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts                                    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts                                    |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
-    | result                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.origination |
+    | result                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.origination |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
 
 
@@ -88425,7 +88435,7 @@ Full description
     +================================+======================+====================================================================+
     | Tag                            | 1 byte               | unsigned 8-bit integer                                             |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
-    | source                         | 22 bytes             | $023-PtSEouLo.transaction_destination                              |
+    | source                         | 22 bytes             | $023-PtSeouLo.transaction_destination                              |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
     | nonce                          | 2 bytes              | unsigned 16-bit big-endian integer                                 |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
@@ -88433,7 +88443,7 @@ Full description
     +--------------------------------+----------------------+--------------------------------------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                                                   |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
-    | result                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.delegation |
+    | result                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.delegation |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
 
 
@@ -88445,21 +88455,21 @@ Full description
     +===============================+======================+===============================================================+
     | Tag                           | 1 byte               | unsigned 8-bit integer                                        |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | source                        | 22 bytes             | $023-PtSEouLo.transaction_destination                         |
+    | source                        | 22 bytes             | $023-PtSeouLo.transaction_destination                         |
     +-------------------------------+----------------------+---------------------------------------------------------------+
     | nonce                         | 2 bytes              | unsigned 16-bit big-endian integer                            |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | type                          | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression               |
+    | type                          | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression               |
     +-------------------------------+----------------------+---------------------------------------------------------------+
     | ? presence of field "tag"     | 1 byte               | boolean (0 for false, 255 for true)                           |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | tag                           | Determined from data | $023-PtSEouLo.entrypoint                                      |
+    | tag                           | Determined from data | $023-PtSeouLo.entrypoint                                      |
     +-------------------------------+----------------------+---------------------------------------------------------------+
     | ? presence of field "payload" | 1 byte               | boolean (0 for false, 255 for true)                           |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | payload                       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression               |
+    | payload                       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression               |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | result                        | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.event |
+    | result                        | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.event |
     +-------------------------------+----------------------+---------------------------------------------------------------+
 
 
@@ -88469,19 +88479,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_update         |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_update         |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.zk_rollup_publish (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.zk_rollup_publish (Determined from data, 8-bit tag)
     *************************************************************************************************
 
     Applied (tag 0)
@@ -88492,7 +88502,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -88538,7 +88548,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_61                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -88554,19 +88564,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_publish        |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_publish        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.zk_rollup_origination (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.zk_rollup_origination (Determined from data, 8-bit tag)
     *****************************************************************************************************
 
     Applied (tag 0)
@@ -88577,7 +88587,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -88625,7 +88635,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_61                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -88643,15 +88653,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_origination    |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_origination    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -88674,7 +88684,7 @@ Full description
     +------------+----------+----------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.dal_publish_commitment (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.dal_publish_commitment (Determined from data, 8-bit tag)
     ******************************************************************************************************
 
     Applied (tag 0)
@@ -88739,19 +88749,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.dal_publish_commitment   |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.dal_publish_commitment   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_recover_bond (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_recover_bond (Determined from data, 8-bit tag)
     *********************************************************************************************************
 
     Applied (tag 0)
@@ -88762,7 +88772,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -88806,7 +88816,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_61                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -88820,15 +88830,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                 |
     +==========================================================================+======================+==========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                       |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                       |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                        |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_recover_bond |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_recover_bond |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                       |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result  |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
 
 
@@ -88857,7 +88867,7 @@ Full description
     +-----------+----------------------+------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message (Determined from data, 8-bit tag)
     *******************************************************************************************************************
 
     Applied (tag 0)
@@ -88868,7 +88878,7 @@ Full description
     +==========================================================================+======================+=====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -88922,7 +88932,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_61                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -88946,15 +88956,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                           |
     +==========================================================================+======================+====================================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                                 |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                                 |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                                 |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result            |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result            |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
 
 
@@ -89033,7 +89043,7 @@ Full description
     +--------+----------------------+------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_timeout (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_timeout (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -89048,7 +89058,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | game_status                                                              | Determined from data | $X_925                             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -89094,7 +89104,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | game_status                                                              | Determined from data | $X_925                              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -89106,19 +89116,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_timeout     |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_timeout     |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_publish (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_publish (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -89135,7 +89145,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | published_at_level                                                       | 4 bytes              | signed 32-bit big-endian integer   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -89183,7 +89193,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | published_at_level                                                       | 4 bytes              | signed 32-bit big-endian integer    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -89195,19 +89205,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_publish     |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_publish     |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_cement (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_cement (Determined from data, 8-bit tag)
     ***************************************************************************************************
 
     Applied (tag 0)
@@ -89276,15 +89286,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_cement      |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_cement      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -89294,19 +89304,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.event           |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.event           |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_originate (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_originate (Determined from data, 8-bit tag)
     ******************************************************************************************************
 
     Applied (tag 0)
@@ -89317,7 +89327,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -89367,7 +89377,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_61                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -89387,19 +89397,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_originate   |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_originate   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.transfer_ticket (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.transfer_ticket (Determined from data, 8-bit tag)
     ***********************************************************************************************
 
     Applied (tag 0)
@@ -89410,7 +89420,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -89460,7 +89470,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_61                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -89480,19 +89490,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.transfer_ticket          |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.transfer_ticket          |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.update_consensus_key (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.update_consensus_key (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -89557,19 +89567,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.update_consensus_key     |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.update_consensus_key     |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.register_global_constant (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.register_global_constant (Determined from data, 8-bit tag)
     ********************************************************************************************************
 
     Applied (tag 0)
@@ -89580,7 +89590,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -89628,7 +89638,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_61                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -89646,15 +89656,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.register_global_constant |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.register_global_constant |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -89664,15 +89674,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.delegation      |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.delegation      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -89682,15 +89692,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.origination     |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.origination     |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -89707,9 +89717,9 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "storage"                                            | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | storage                                                                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression  |
+    | storage                                                                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -89719,7 +89729,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -89731,7 +89741,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -89751,7 +89761,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.transaction (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.transaction (Determined from data, 8-bit tag)
     *******************************************************************************************
 
     Applied (tag 0)
@@ -89812,28 +89822,30 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.transaction              |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.transaction              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
     X_3268
     ******
 
-    +---------------+----------+------------------+
-    | Name          | Size     | Contents         |
-    +===============+==========+==================+
-    | delegate      | 21 bytes | $public_key_hash |
-    +---------------+----------+------------------+
-    | consensus_pkh | 21 bytes | $public_key_hash |
-    +---------------+----------+------------------+
+    +-----------------+----------+-------------------------------------------------------------------------+
+    | Name            | Size     | Contents                                                                |
+    +=================+==========+=========================================================================+
+    | delegate        | 21 bytes | $public_key_hash                                                        |
+    +-----------------+----------+-------------------------------------------------------------------------+
+    | consensus_pkh   | 21 bytes | $public_key_hash                                                        |
+    +-----------------+----------+-------------------------------------------------------------------------+
+    | consensus_power | 4 bytes  | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 |
+    +-----------------+----------+-------------------------------------------------------------------------+
 
 
     X_3264
@@ -89842,7 +89854,7 @@ Full description
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | Name                                                                     | Size     | Contents                                                                |
     +==========================================================================+==========+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
@@ -89850,11 +89862,11 @@ Full description
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | committee                                                                | Variable | sequence of $X_3268                                                     |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
-    | consensus_power                                                          | 4 bytes  | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 |
+    | total_consensus_power                                                    | 4 bytes  | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation_metadata.alpha.balance_updates
+    023-PtSeouLo.operation_metadata.alpha.balance_updates
     *****************************************************
 
     +-----------------------+----------+------------------------------------+
@@ -89872,7 +89884,7 @@ Full description
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | Name                                                                     | Size     | Contents                                                                |
     +==========================================================================+==========+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
@@ -89890,7 +89902,7 @@ Full description
     +--------------------------------------------------------------------------+----------+-------------------------------------+
     | Name                                                                     | Size     | Contents                            |
     +==========================================================================+==========+=====================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------+-------------------------------------+
     | balance_updates                                                          | Variable | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------+-------------------------------------+
@@ -89940,7 +89952,7 @@ Full description
     +-------------------+----------+------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_contents_and_result (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_contents_and_result (Determined from data, 8-bit tag)
     ********************************************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -89955,7 +89967,7 @@ Full description
     +----------+----------------------+--------------------------------------------------------+
     | nonce    | 32 bytes             | bytes                                                  |
     +----------+----------------------+--------------------------------------------------------+
-    | metadata | Determined from data | $023-PtSEouLo.operation_metadata.alpha.balance_updates |
+    | metadata | Determined from data | $023-PtSeouLo.operation_metadata.alpha.balance_updates |
     +----------+----------------------+--------------------------------------------------------+
 
 
@@ -89971,11 +89983,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | metadata              | 51 bytes | $X_3307                                   |
     +-----------------------+----------+-------------------------------------------+
@@ -89991,11 +90003,11 @@ Full description
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh1                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh1                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh2                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh2                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | metadata              | 51 bytes | $X_3307                                      |
     +-----------------------+----------+----------------------------------------------+
@@ -90013,7 +90025,7 @@ Full description
     +----------+----------------------+--------------------------------------------------------+
     | secret   | 20 bytes             | bytes                                                  |
     +----------+----------------------+--------------------------------------------------------+
-    | metadata | Determined from data | $023-PtSEouLo.operation_metadata.alpha.balance_updates |
+    | metadata | Determined from data | $023-PtSeouLo.operation_metadata.alpha.balance_updates |
     +----------+----------------------+--------------------------------------------------------+
 
 
@@ -90063,7 +90075,7 @@ Full description
     +----------+----------------------+--------------------------------------------------------+
     | solution | 200 bytes            | $X_42                                                  |
     +----------+----------------------+--------------------------------------------------------+
-    | metadata | Determined from data | $023-PtSEouLo.operation_metadata.alpha.balance_updates |
+    | metadata | Determined from data | $023-PtSeouLo.operation_metadata.alpha.balance_updates |
     +----------+----------------------+--------------------------------------------------------+
 
 
@@ -90157,7 +90169,7 @@ Full description
     +-----------------------+----------------------+--------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                     |
     +-----------------------+----------------------+--------------------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation              |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation              |
     +-----------------------+----------------------+--------------------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer                     |
     +-----------------------+----------------------+--------------------------------------------------------+
@@ -90165,7 +90177,7 @@ Full description
     +-----------------------+----------------------+--------------------------------------------------------+
     | shard_with_proof      | Determined from data | $X_39                                                  |
     +-----------------------+----------------------+--------------------------------------------------------+
-    | metadata              | Determined from data | $023-PtSEouLo.operation_metadata.alpha.balance_updates |
+    | metadata              | Determined from data | $023-PtSeouLo.operation_metadata.alpha.balance_updates |
     +-----------------------+----------------------+--------------------------------------------------------+
 
 
@@ -90253,7 +90265,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -90287,7 +90299,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
     | metadata                       | Determined from data | $X_2742                             |
     +--------------------------------+----------------------+-------------------------------------+
@@ -90391,7 +90403,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
     | metadata      | Determined from data | $X_623                               |
     +---------------+----------------------+--------------------------------------+
@@ -90479,11 +90491,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -90842,7 +90854,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                      |
     +-----------------------+----------+-------------------------------------------------------------------------+
-    | contents              | Variable | sequence of $023-PtSEouLo.operation.alpha.operation_contents_and_result |
+    | contents              | Variable | sequence of $023-PtSeouLo.operation.alpha.operation_contents_and_result |
     +-----------------------+----------+-------------------------------------------------------------------------+
     | signature             | Variable | bytes                                                                   |
     +-----------------------+----------+-------------------------------------------------------------------------+
@@ -90858,7 +90870,7 @@ Full description
     +-----------------------+----------+----------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                 |
     +-----------------------+----------+----------------------------------------------------+
-    | contents              | Variable | sequence of $023-PtSEouLo.operation.alpha.contents |
+    | contents              | Variable | sequence of $023-PtSeouLo.operation.alpha.contents |
     +-----------------------+----------+----------------------------------------------------+
     | signature             | Variable | bytes                                              |
     +-----------------------+----------+----------------------------------------------------+
@@ -90885,45 +90897,45 @@ Full description
             
-    { "contract": $023-PtSEouLo.contract_id.originated,
+    { "contract": $023-PtSeouLo.contract_id.originated,
       "view": $unistring,
-      "input": $micheline.023-PtSEouLo.michelson_v1.expression,
+      "input": $micheline.023-PtSeouLo.michelson_v1.expression,
       "unlimited_gas"?: boolean,
       "chain_id": $Chain_id,
-      "source"?: $023-PtSEouLo.contract_id,
-      "payer"?: $023-PtSEouLo.contract_id.implicit,
+      "source"?: $023-PtSeouLo.contract_id,
+      "payer"?: $023-PtSeouLo.contract_id.implicit,
       "gas"?: $bignum,
       "unparsing_mode": "Readable" || "Optimized" || "Optimized_legacy",
       "now"?: $bignum,
       "level"?: $positive_bignum,
       "other_contracts"?:
         [ { "address": $Contract_hash,
-            "type": $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
+            "type": $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
       "extra_big_maps"?:
-        [ { "id": $023-PtSEouLo.big_map_id,
-            "key_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "val_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "map_literal": $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
-    $023-PtSEouLo.big_map_id:
+        [ { "id": $023-PtSeouLo.big_map_id,
+            "key_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "val_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "map_literal": $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
+    $023-PtSeouLo.big_map_id:
       /* Big map identifier
          A big map identifier */
       $bignum
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.implicit:
+    $023-PtSeouLo.contract_id.implicit:
       /* A contract handle -- implicit account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -91093,20 +91105,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $positive_bignum:
       /* Positive big number
@@ -91123,13 +91135,13 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------------------+
     | Name                                  | Size                 | Contents                                        |
     +=======================================+======================+=================================================+
-    | contract                              | 22 bytes             | $023-PtSEouLo.contract_id.originated            |
+    | contract                              | 22 bytes             | $023-PtSeouLo.contract_id.originated            |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | # bytes in next field                 | 4 bytes              | unsigned 30-bit big-endian integer              |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | view                                  | Variable             | bytes                                           |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | input                                 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | input                                 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | unlimited_gas                         | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
@@ -91137,11 +91149,11 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "source"          | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | source                                | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | source                                | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "payer"           | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | payer                                 | 22 bytes             | $023-PtSEouLo.contract_id.implicit              |
+    | payer                                 | 22 bytes             | $023-PtSeouLo.contract_id.implicit              |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "gas"             | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
@@ -91167,7 +91179,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -91184,7 +91196,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -91522,7 +91534,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -91561,7 +91573,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -91573,7 +91585,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -91585,7 +91597,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -91601,9 +91613,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -91615,9 +91627,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -91633,11 +91645,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -91649,11 +91661,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -91669,11 +91681,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -91746,7 +91758,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -91775,7 +91787,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id.implicit (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.implicit (22 bytes, 8-bit tag)
     *******************************************************
 
     Implicit (tag 0)
@@ -91843,7 +91855,7 @@ Full description
     +=========+======================+=================================================+
     | address | 20 bytes             | bytes                                           |
     +---------+----------------------+-------------------------------------------------+
-    | type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------+----------------------+-------------------------------------------------+
 
 
@@ -91867,11 +91879,11 @@ Full description
     +=============+======================+=================================================+
     | id          | Determined from data | $Z.t                                            |
     +-------------+----------------------+-------------------------------------------------+
-    | key_type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key_type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
-    | val_type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | val_type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
-    | map_literal | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | map_literal | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
 
 
@@ -91890,8 +91902,8 @@ Full description
     
-    { "data": $micheline.023-PtSEouLo.michelson_v1.expression }
-    $023-PtSEouLo.michelson.v1.primitives:
+    { "data": $micheline.023-PtSeouLo.michelson_v1.expression }
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -92055,20 +92067,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -92081,11 +92093,11 @@ Full description
     +------+----------------------+-------------------------------------------------+
     | Name | Size                 | Contents                                        |
     +======+======================+=================================================+
-    | data | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | data | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -92423,7 +92435,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -92462,7 +92474,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -92474,7 +92486,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -92486,7 +92498,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -92502,9 +92514,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -92516,9 +92528,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -92534,11 +92546,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -92550,11 +92562,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -92570,11 +92582,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -92617,44 +92629,44 @@ Full description
             
-    { "contract": $023-PtSEouLo.contract_id.originated,
+    { "contract": $023-PtSeouLo.contract_id.originated,
       "entrypoint": $unistring,
-      "input": $micheline.023-PtSEouLo.michelson_v1.expression,
+      "input": $micheline.023-PtSeouLo.michelson_v1.expression,
       "chain_id": $Chain_id,
-      "source"?: $023-PtSEouLo.contract_id,
-      "payer"?: $023-PtSEouLo.contract_id.implicit,
+      "source"?: $023-PtSeouLo.contract_id,
+      "payer"?: $023-PtSeouLo.contract_id.implicit,
       "gas"?: $bignum,
       "unparsing_mode": "Readable" || "Optimized" || "Optimized_legacy",
       "now"?: $bignum,
       "level"?: $positive_bignum,
       "other_contracts"?:
         [ { "address": $Contract_hash,
-            "type": $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
+            "type": $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
       "extra_big_maps"?:
-        [ { "id": $023-PtSEouLo.big_map_id,
-            "key_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "val_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "map_literal": $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
-    $023-PtSEouLo.big_map_id:
+        [ { "id": $023-PtSeouLo.big_map_id,
+            "key_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "val_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "map_literal": $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
+    $023-PtSeouLo.big_map_id:
       /* Big map identifier
          A big map identifier */
       $bignum
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.implicit:
+    $023-PtSeouLo.contract_id.implicit:
       /* A contract handle -- implicit account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -92824,20 +92836,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $positive_bignum:
       /* Positive big number
@@ -92854,23 +92866,23 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------------------+
     | Name                                  | Size                 | Contents                                        |
     +=======================================+======================+=================================================+
-    | contract                              | 22 bytes             | $023-PtSEouLo.contract_id.originated            |
+    | contract                              | 22 bytes             | $023-PtSeouLo.contract_id.originated            |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | # bytes in next field                 | 4 bytes              | unsigned 30-bit big-endian integer              |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | entrypoint                            | Variable             | bytes                                           |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | input                                 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | input                                 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | chain_id                              | 4 bytes              | bytes                                           |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "source"          | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | source                                | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | source                                | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "payer"           | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | payer                                 | 22 bytes             | $023-PtSEouLo.contract_id.implicit              |
+    | payer                                 | 22 bytes             | $023-PtSeouLo.contract_id.implicit              |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "gas"             | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
@@ -92896,7 +92908,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -92913,7 +92925,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -93251,7 +93263,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -93290,7 +93302,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -93302,7 +93314,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -93314,7 +93326,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -93330,9 +93342,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -93344,9 +93356,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -93362,11 +93374,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -93378,11 +93390,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -93398,11 +93410,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -93475,7 +93487,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -93504,7 +93516,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id.implicit (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.implicit (22 bytes, 8-bit tag)
     *******************************************************
 
     Implicit (tag 0)
@@ -93572,7 +93584,7 @@ Full description
     +=========+======================+=================================================+
     | address | 20 bytes             | bytes                                           |
     +---------+----------------------+-------------------------------------------------+
-    | type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------+----------------------+-------------------------------------------------+
 
 
@@ -93596,11 +93608,11 @@ Full description
     +=============+======================+=================================================+
     | id          | Determined from data | $Z.t                                            |
     +-------------+----------------------+-------------------------------------------------+
-    | key_type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key_type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
-    | val_type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | val_type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
-    | map_literal | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | map_literal | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
 
 
@@ -93619,8 +93631,8 @@ Full description
     
-    { "data": $micheline.023-PtSEouLo.michelson_v1.expression }
-    $023-PtSEouLo.michelson.v1.primitives:
+    { "data": $micheline.023-PtSeouLo.michelson_v1.expression }
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -93784,20 +93796,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -93810,11 +93822,11 @@ Full description
     +------+----------------------+-------------------------------------------------+
     | Name | Size                 | Contents                                        |
     +======+======================+=================================================+
-    | data | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | data | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -94152,7 +94164,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -94191,7 +94203,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -94203,7 +94215,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -94215,7 +94227,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -94231,9 +94243,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -94245,9 +94257,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -94263,11 +94275,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -94279,11 +94291,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -94299,11 +94311,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -94346,11 +94358,11 @@ Full description
             
-    { "program": $micheline.023-PtSEouLo.michelson_v1.expression,
-      "storage": $micheline.023-PtSEouLo.michelson_v1.expression,
+    { "program": $micheline.023-PtSeouLo.michelson_v1.expression,
+      "storage": $micheline.023-PtSeouLo.michelson_v1.expression,
       "gas"?: $bignum,
       "legacy"?: boolean }
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -94514,20 +94526,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -94540,9 +94552,9 @@ Full description
     +---------------------------+----------------------+-------------------------------------------------+
     | Name                      | Size                 | Contents                                        |
     +===========================+======================+=================================================+
-    | program                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | program                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------+----------------------+-------------------------------------------------+
-    | storage                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | storage                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "gas" | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------+----------------------+-------------------------------------------------+
@@ -94552,7 +94564,7 @@ Full description
     +---------------------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -94890,7 +94902,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -94929,7 +94941,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -94941,7 +94953,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -94953,7 +94965,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -94969,9 +94981,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -94983,9 +94995,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -95001,11 +95013,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -95017,11 +95029,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -95037,11 +95049,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -95103,12 +95115,12 @@ Full description
       "operation":
         { /* An operation's shell header. */
           "branch": $block_hash,
-          "contents": [ $023-PtSEouLo.operation.alpha.contents ... ],
+          "contents": [ $023-PtSeouLo.operation.alpha.contents ... ],
           "signature"?: $Signature.V2 },
       "chain_id": $Chain_id,
       "latency"?: integer ∈ [-2^15, 2^15-1] }
-    $023-PtSEouLo.adaptive_issuance_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.block_header.alpha.full_header:
+    $023-PtSeouLo.adaptive_issuance_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.block_header.alpha.full_header:
       /* Shell header
          Block header's shell-related content. It contains information such as
          the block level, its predecessor and timestamp. */
@@ -95124,20 +95136,20 @@ Full description
         "payload_round": integer ∈ [-2^31-1, 2^31],
         "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
         "seed_nonce_hash"?: $cycle_nonce,
-        "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-        "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+        "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+        "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
         "signature": $Signature.V2 }
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.entrypoint:
+    $023-PtSeouLo.entrypoint:
       /* entrypoint
          Named entrypoint to a Michelson smart contract */
       "default"
@@ -95152,12 +95164,12 @@ Full description
       || "set_delegate_parameters"
       || $unistring
       /* named */
-    $023-PtSEouLo.inlined.consensus_operation:
+    $023-PtSeouLo.inlined.consensus_operation:
       /* An operation's shell header. */
       { "branch": $block_hash,
-        "operations": $023-PtSEouLo.inlined.consensus_operation.contents,
+        "operations": $023-PtSeouLo.inlined.consensus_operation.contents,
         "signature"?: $Signature.V2 }
-    $023-PtSEouLo.inlined.consensus_operation.contents:
+    $023-PtSeouLo.inlined.consensus_operation.contents:
       { /* Preattestation */
         "kind": "preattestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -95193,8 +95205,8 @@ Full description
            "committee":
              [ { "slot": integer ∈ [0, 2^16-1],
                  "dal_attestation"?: $bignum } ... ] }
-    $023-PtSEouLo.liquidity_baking_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.liquidity_baking_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -95354,8 +95366,8 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
-    $023-PtSEouLo.operation.alpha.contents:
+    $023-PtSeouLo.mutez: $positive_bignum
+    $023-PtSeouLo.operation.alpha.contents:
       { /* Attestation */
         "kind": "attestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -95394,8 +95406,8 @@ Full description
       || { /* Double_consensus_operation_evidence */
            "kind": "double_consensus_operation_evidence",
            "slot": integer ∈ [0, 2^16-1],
-           "op1": $023-PtSEouLo.inlined.consensus_operation,
-           "op2": $023-PtSEouLo.inlined.consensus_operation }
+           "op1": $023-PtSeouLo.inlined.consensus_operation,
+           "op2": $023-PtSeouLo.inlined.consensus_operation }
       || { /* Seed_nonce_revelation */
            "kind": "seed_nonce_revelation",
            "level": integer ∈ [0, 2^31],
@@ -95406,11 +95418,11 @@ Full description
              [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/, /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ] }
       || { /* Double_baking_evidence */
            "kind": "double_baking_evidence",
-           "bh1": $023-PtSEouLo.block_header.alpha.full_header,
-           "bh2": $023-PtSEouLo.block_header.alpha.full_header }
+           "bh1": $023-PtSeouLo.block_header.alpha.full_header,
+           "bh2": $023-PtSeouLo.block_header.alpha.full_header }
       || { /* Dal_entrapment_evidence */
            "kind": "dal_entrapment_evidence",
-           "attestation": $023-PtSEouLo.inlined.consensus_operation,
+           "attestation": $023-PtSeouLo.inlined.consensus_operation,
            "consensus_slot": integer ∈ [0, 2^16-1],
            "slot_index": integer ∈ [0, 255],
            "shard_with_proof":
@@ -95436,7 +95448,7 @@ Full description
       || { /* Reveal */
            "kind": "reveal",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95445,29 +95457,29 @@ Full description
       || { /* Transaction */
            "kind": "transaction",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "amount": $023-PtSEouLo.mutez,
-           "destination": $023-PtSEouLo.contract_id,
+           "amount": $023-PtSeouLo.mutez,
+           "destination": $023-PtSeouLo.contract_id,
            "parameters"?:
-             { "entrypoint": $023-PtSEouLo.entrypoint,
+             { "entrypoint": $023-PtSeouLo.entrypoint,
                "value": any } }
       || { /* Origination */
            "kind": "origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts }
+           "script": $023-PtSeouLo.scripted.contracts }
       || { /* Delegation */
            "kind": "delegation",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95475,24 +95487,24 @@ Full description
       || { /* Set_deposits_limit */
            "kind": "set_deposits_limit",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "limit"?: $023-PtSEouLo.mutez }
+           "limit"?: $023-PtSeouLo.mutez }
       || { /* Increase_paid_storage */
            "kind": "increase_paid_storage",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "amount": $bignum,
-           "destination": $023-PtSEouLo.contract_id.originated }
+           "destination": $023-PtSeouLo.contract_id.originated }
       || { /* Update_consensus_key */
            "kind": "update_consensus_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95501,7 +95513,7 @@ Full description
       || { /* Update_companion_key */
            "kind": "update_companion_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95518,7 +95530,7 @@ Full description
       || { /* Register_global_constant */
            "kind": "register_global_constant",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95526,20 +95538,20 @@ Full description
       || { /* Transfer_ticket */
            "kind": "transfer_ticket",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "ticket_contents": any,
            "ticket_ty": any,
-           "ticket_ticketer": $023-PtSEouLo.contract_id,
+           "ticket_ticketer": $023-PtSeouLo.contract_id,
            "ticket_amount": $positive_bignum,
-           "destination": $023-PtSEouLo.contract_id,
+           "destination": $023-PtSeouLo.contract_id,
            "entrypoint": $unistring }
       || { /* Dal_publish_commitment */
            "kind": "dal_publish_commitment",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95550,7 +95562,7 @@ Full description
       || { /* Smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95561,7 +95573,7 @@ Full description
       || { /* Smart_rollup_add_messages */
            "kind": "smart_rollup_add_messages",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95569,7 +95581,7 @@ Full description
       || { /* Smart_rollup_cement */
            "kind": "smart_rollup_cement",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95577,7 +95589,7 @@ Full description
       || { /* Smart_rollup_publish */
            "kind": "smart_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95590,7 +95602,7 @@ Full description
       || { /* Smart_rollup_refute */
            "kind": "smart_rollup_refute",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95642,7 +95654,7 @@ Full description
       || { /* Smart_rollup_timeout */
            "kind": "smart_rollup_timeout",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95653,7 +95665,7 @@ Full description
       || { /* Smart_rollup_execute_outbox_message */
            "kind": "smart_rollup_execute_outbox_message",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95663,7 +95675,7 @@ Full description
       || { /* Smart_rollup_recover_bond */
            "kind": "smart_rollup_recover_bond",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95672,7 +95684,7 @@ Full description
       || { /* Zk_rollup_origination */
            "kind": "zk_rollup_origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95690,7 +95702,7 @@ Full description
       || { /* Zk_rollup_publish */
            "kind": "zk_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95703,15 +95715,15 @@ Full description
                    "rollup_id": $Zk_rollup_hash,
                    "payload": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                  { /* Some */
-                   "contents": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ty": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ticketer": $023-PtSEouLo.contract_id }
+                   "contents": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ty": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ticketer": $023-PtSeouLo.contract_id }
                  || null
                  /* None */ ] ... ] }
       || { /* Zk_rollup_update */
            "kind": "zk_rollup_update",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -95728,7 +95740,7 @@ Full description
                        "fee": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } ] ... ],
                "fee_pi": { "new_state": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                "proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } }
-    $023-PtSEouLo.scripted.contracts: { "code": any,
+    $023-PtSeouLo.scripted.contracts: { "code": any,
                                         "storage": any }
     $Bls12_381_signature:
       /* A Bls12_381 signature (Base58Check-encoded) */
@@ -95785,20 +95797,20 @@ Full description
       /* 64 bit integers
          Decimal representation of 64 bit integers */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $positive_bignum:
       /* Positive big number
@@ -96068,7 +96080,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -96394,7 +96406,7 @@ Full description
     +-------------+--------------------------------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -96433,7 +96445,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -96445,7 +96457,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -96457,7 +96469,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -96473,9 +96485,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -96487,9 +96499,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -96505,11 +96517,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -96521,11 +96533,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -96541,11 +96553,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -96567,7 +96579,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -96617,11 +96629,11 @@ Full description
     +==========+======================+=================================================+
     | Tag      | 1 byte               | unsigned 8-bit integer                          |
     +----------+----------------------+-------------------------------------------------+
-    | contents | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | contents | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ty       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | ty       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ticketer | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +----------+----------------------+-------------------------------------------------+
 
 
@@ -97003,7 +97015,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -97020,7 +97032,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.scripted.contracts
+    023-PtSeouLo.scripted.contracts
     *******************************
 
     +-----------------------+----------+------------------------------------+
@@ -97036,7 +97048,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.entrypoint (Determined from data, 8-bit tag)
+    023-PtSeouLo.entrypoint (Determined from data, 8-bit tag)
     *********************************************************
 
     default (tag 0)
@@ -97159,7 +97171,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
-    | entrypoint            | Determined from data | $023-PtSEouLo.entrypoint           |
+    | entrypoint            | Determined from data | $023-PtSeouLo.entrypoint           |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -97195,7 +97207,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
     ***********************************************************************************
 
     Preattestation (tag 20)
@@ -97286,7 +97298,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation
+    023-PtSeouLo.inlined.consensus_operation
     ****************************************
 
     +------------+----------------------+----------------------------------------------------+
@@ -97294,7 +97306,7 @@ Full description
     +============+======================+====================================================+
     | branch     | 32 bytes             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
-    | operations | Determined from data | $023-PtSEouLo.inlined.consensus_operation.contents |
+    | operations | Determined from data | $023-PtSeouLo.inlined.consensus_operation.contents |
     +------------+----------------------+----------------------------------------------------+
     | signature  | Variable             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
@@ -97348,7 +97360,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.per_block_votes (1 byte, 8-bit tag)
+    023-PtSeouLo.per_block_votes (1 byte, 8-bit tag)
     ************************************************
 
     case_0 (tag 0)
@@ -97441,7 +97453,7 @@ Full description
     +------+--------+------------------------+
 
 
-    023-PtSEouLo.block_header.alpha.full_header
+    023-PtSeouLo.block_header.alpha.full_header
     *******************************************
 
     +---------------------------------------+----------+-------------------------------------+
@@ -97475,13 +97487,13 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | seed_nonce_hash                       | 32 bytes | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    | per_block_votes                       | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                       | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.contents_or_signature_prefix (Determined from data, 8-bit tag)
     *******************************************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -97510,11 +97522,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
 
 
@@ -97528,11 +97540,11 @@ Full description
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh1                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh1                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh2                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh2                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
 
 
@@ -97694,7 +97706,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------------------+-------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
@@ -97782,7 +97794,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -97814,7 +97826,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
 
 
@@ -97910,7 +97922,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
 
 
@@ -97992,11 +98004,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -98336,7 +98348,7 @@ Full description
     +===============================+==========+========================================================================+
     | branch                        | 32 bytes | bytes                                                                  |
     +-------------------------------+----------+------------------------------------------------------------------------+
-    | contents_and_signature_prefix | Variable | sequence of $023-PtSEouLo.operation.alpha.contents_or_signature_prefix |
+    | contents_and_signature_prefix | Variable | sequence of $023-PtSeouLo.operation.alpha.contents_or_signature_prefix |
     +-------------------------------+----------+------------------------------------------------------------------------+
     | signature_suffix              | 64 bytes | bytes                                                                  |
     +-------------------------------+----------+------------------------------------------------------------------------+
@@ -98347,53 +98359,53 @@ Full description
     
     { /* Operation_with_metadata */
       "contents":
-        [ $023-PtSEouLo.operation.alpha.operation_contents_and_result ... ],
+        [ $023-PtSeouLo.operation.alpha.operation_contents_and_result ... ],
       "signature"?: $Signature.V2 }
     || { /* Operation_without_metadata */
-         "contents": [ $023-PtSEouLo.operation.alpha.contents ... ],
+         "contents": [ $023-PtSeouLo.operation.alpha.contents ... ],
          "signature"?: $Signature.V2 }
-    $023-PtSEouLo.adaptive_issuance_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.apply_internal_results.alpha.operation_result:
+    $023-PtSeouLo.adaptive_issuance_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.apply_internal_results.alpha.operation_result:
       { /* transaction */
         "kind": "transaction",
-        "source": $023-PtSEouLo.transaction_destination,
+        "source": $023-PtSeouLo.transaction_destination,
         "nonce": integer ∈ [0, 2^16-1],
-        "amount": $023-PtSEouLo.mutez,
-        "destination": $023-PtSEouLo.transaction_destination,
-        "parameters"?: { "entrypoint": $023-PtSEouLo.entrypoint,
+        "amount": $023-PtSeouLo.mutez,
+        "destination": $023-PtSeouLo.transaction_destination,
+        "parameters"?: { "entrypoint": $023-PtSeouLo.entrypoint,
                          "value": any },
         "result":
-          $023-PtSEouLo.operation.alpha.internal_operation_result.transaction }
+          $023-PtSeouLo.operation.alpha.internal_operation_result.transaction }
       || { /* origination */
            "kind": "origination",
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts,
+           "script": $023-PtSeouLo.scripted.contracts,
            "result":
-             $023-PtSEouLo.operation.alpha.internal_operation_result.origination }
+             $023-PtSeouLo.operation.alpha.internal_operation_result.origination }
       || { /* delegation */
            "kind": "delegation",
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
            "delegate"?: $Signature.Public_key_hash,
            "result":
-             $023-PtSEouLo.operation.alpha.internal_operation_result.delegation }
+             $023-PtSeouLo.operation.alpha.internal_operation_result.delegation }
       || { /* event */
            "kind": "event",
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
-           "type": $micheline.023-PtSEouLo.michelson_v1.expression,
-           "tag"?: $023-PtSEouLo.entrypoint,
-           "payload"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+           "type": $micheline.023-PtSeouLo.michelson_v1.expression,
+           "tag"?: $023-PtSeouLo.entrypoint,
+           "payload"?: $micheline.023-PtSeouLo.michelson_v1.expression,
            "result":
-             $023-PtSEouLo.operation.alpha.internal_operation_result.event }
-    $023-PtSEouLo.big_map_id:
+             $023-PtSeouLo.operation.alpha.internal_operation_result.event }
+    $023-PtSeouLo.big_map_id:
       /* Big map identifier
          A big map identifier */
       $bignum
-    $023-PtSEouLo.block_header.alpha.full_header:
+    $023-PtSeouLo.block_header.alpha.full_header:
       /* Shell header
          Block header's shell-related content. It contains information such as
          the block level, its predecessor and timestamp. */
@@ -98409,23 +98421,23 @@ Full description
         "payload_round": integer ∈ [-2^31-1, 2^31],
         "proof_of_work_nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
         "seed_nonce_hash"?: $cycle_nonce,
-        "liquidity_baking_toggle_vote": $023-PtSEouLo.liquidity_baking_vote,
-        "adaptive_issuance_vote": $023-PtSEouLo.adaptive_issuance_vote,
+        "liquidity_baking_toggle_vote": $023-PtSeouLo.liquidity_baking_vote,
+        "adaptive_issuance_vote": $023-PtSeouLo.adaptive_issuance_vote,
         "signature": $Signature.V2 }
-    $023-PtSEouLo.bond_id:
+    $023-PtSeouLo.bond_id:
       { /* Smart_rollup_bond_id */
         "smart_rollup": $smart_rollup_address }
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.entrypoint:
+    $023-PtSeouLo.entrypoint:
       /* entrypoint
          Named entrypoint to a Michelson smart contract */
       "default"
@@ -98440,19 +98452,19 @@ Full description
       || "set_delegate_parameters"
       || $unistring
       /* named */
-    $023-PtSEouLo.error:
+    $023-PtSeouLo.error:
       /* The full list of RPC errors would be too long to include.
          It is available at RPC `/errors` (GET).
          Errors specific to protocol Alpha have an id that starts with
          `proto.alpha`. */
       any
-    $023-PtSEouLo.frozen_staker:
+    $023-PtSeouLo.frozen_staker:
       /* frozen_staker
          Abstract notion of staker used in operation receipts for frozen
          deposits, either a single staker or all the stakers delegating to some
          delegate. */
       { /* Single */
-        "contract": $023-PtSEouLo.contract_id,
+        "contract": $023-PtSeouLo.contract_id,
         "delegate": $Signature.Public_key_hash }
       || { /* Shared */
            "delegate": $Signature.Public_key_hash }
@@ -98460,12 +98472,12 @@ Full description
            "baker_own_stake": $Signature.Public_key_hash }
       || { /* Baker_edge */
            "baker_edge": $Signature.Public_key_hash }
-    $023-PtSEouLo.inlined.consensus_operation:
+    $023-PtSeouLo.inlined.consensus_operation:
       /* An operation's shell header. */
       { "branch": $block_hash,
-        "operations": $023-PtSEouLo.inlined.consensus_operation.contents,
+        "operations": $023-PtSeouLo.inlined.consensus_operation.contents,
         "signature"?: $Signature.V2 }
-    $023-PtSEouLo.inlined.consensus_operation.contents:
+    $023-PtSeouLo.inlined.consensus_operation.contents:
       { /* Preattestation */
         "kind": "preattestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -98501,39 +98513,39 @@ Full description
            "committee":
              [ { "slot": integer ∈ [0, 2^16-1],
                  "dal_attestation"?: $bignum } ... ] }
-    $023-PtSEouLo.lazy_storage_diff:
+    $023-PtSeouLo.lazy_storage_diff:
       [ { /* big_map */
           "kind": "big_map",
-          "id": $023-PtSEouLo.big_map_id,
+          "id": $023-PtSeouLo.big_map_id,
           "diff":
             { /* update */
               "action": "update",
               "updates":
                 [ { "key_hash": $script_expr,
-                    "key": $micheline.023-PtSEouLo.michelson_v1.expression,
-                    "value"?: $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
+                    "key": $micheline.023-PtSeouLo.michelson_v1.expression,
+                    "value"?: $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
             || { /* remove */
                  "action": "remove" }
             || { /* copy */
                  "action": "copy",
-                 "source": $023-PtSEouLo.big_map_id,
+                 "source": $023-PtSeouLo.big_map_id,
                  "updates":
                    [ { "key_hash": $script_expr,
-                       "key": $micheline.023-PtSEouLo.michelson_v1.expression,
+                       "key": $micheline.023-PtSeouLo.michelson_v1.expression,
                        "value"?:
-                         $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
+                         $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
             || { /* alloc */
                  "action": "alloc",
                  "updates":
                    [ { "key_hash": $script_expr,
-                       "key": $micheline.023-PtSEouLo.michelson_v1.expression,
+                       "key": $micheline.023-PtSeouLo.michelson_v1.expression,
                        "value"?:
-                         $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
-                 "key_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-                 "value_type": $micheline.023-PtSEouLo.michelson_v1.expression } }
+                         $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
+                 "key_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+                 "value_type": $micheline.023-PtSeouLo.michelson_v1.expression } }
         || { /* sapling_state */
              "kind": "sapling_state",
-             "id": $023-PtSEouLo.sapling_state_id,
+             "id": $023-PtSeouLo.sapling_state_id,
              "diff":
                { /* update */
                  "action": "update",
@@ -98546,7 +98558,7 @@ Full description
                     "action": "remove" }
                || { /* copy */
                     "action": "copy",
-                    "source": $023-PtSEouLo.sapling_state_id,
+                    "source": $023-PtSeouLo.sapling_state_id,
                     "updates":
                       { "commitments_and_ciphertexts":
                           [ [ $sapling.transaction.commitment,
@@ -98560,8 +98572,8 @@ Full description
                               $sapling.transaction.ciphertext ] ... ],
                         "nullifiers": [ $sapling.transaction.nullifier ... ] },
                     "memo_size": integer ∈ [0, 2^16-1] } } ... ]
-    $023-PtSEouLo.liquidity_baking_vote: "on" || "off" || "pass"
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.liquidity_baking_vote: "on" || "off" || "pass"
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -98721,8 +98733,8 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
-    $023-PtSEouLo.operation.alpha.contents:
+    $023-PtSeouLo.mutez: $positive_bignum
+    $023-PtSeouLo.operation.alpha.contents:
       { /* Attestation */
         "kind": "attestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -98761,8 +98773,8 @@ Full description
       || { /* Double_consensus_operation_evidence */
            "kind": "double_consensus_operation_evidence",
            "slot": integer ∈ [0, 2^16-1],
-           "op1": $023-PtSEouLo.inlined.consensus_operation,
-           "op2": $023-PtSEouLo.inlined.consensus_operation }
+           "op1": $023-PtSeouLo.inlined.consensus_operation,
+           "op2": $023-PtSeouLo.inlined.consensus_operation }
       || { /* Seed_nonce_revelation */
            "kind": "seed_nonce_revelation",
            "level": integer ∈ [0, 2^31],
@@ -98773,11 +98785,11 @@ Full description
              [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/, /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ] }
       || { /* Double_baking_evidence */
            "kind": "double_baking_evidence",
-           "bh1": $023-PtSEouLo.block_header.alpha.full_header,
-           "bh2": $023-PtSEouLo.block_header.alpha.full_header }
+           "bh1": $023-PtSeouLo.block_header.alpha.full_header,
+           "bh2": $023-PtSeouLo.block_header.alpha.full_header }
       || { /* Dal_entrapment_evidence */
            "kind": "dal_entrapment_evidence",
-           "attestation": $023-PtSEouLo.inlined.consensus_operation,
+           "attestation": $023-PtSeouLo.inlined.consensus_operation,
            "consensus_slot": integer ∈ [0, 2^16-1],
            "slot_index": integer ∈ [0, 255],
            "shard_with_proof":
@@ -98803,7 +98815,7 @@ Full description
       || { /* Reveal */
            "kind": "reveal",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -98812,29 +98824,29 @@ Full description
       || { /* Transaction */
            "kind": "transaction",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "amount": $023-PtSEouLo.mutez,
-           "destination": $023-PtSEouLo.contract_id,
+           "amount": $023-PtSeouLo.mutez,
+           "destination": $023-PtSeouLo.contract_id,
            "parameters"?:
-             { "entrypoint": $023-PtSEouLo.entrypoint,
+             { "entrypoint": $023-PtSeouLo.entrypoint,
                "value": any } }
       || { /* Origination */
            "kind": "origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts }
+           "script": $023-PtSeouLo.scripted.contracts }
       || { /* Delegation */
            "kind": "delegation",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -98842,24 +98854,24 @@ Full description
       || { /* Set_deposits_limit */
            "kind": "set_deposits_limit",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "limit"?: $023-PtSEouLo.mutez }
+           "limit"?: $023-PtSeouLo.mutez }
       || { /* Increase_paid_storage */
            "kind": "increase_paid_storage",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "amount": $bignum,
-           "destination": $023-PtSEouLo.contract_id.originated }
+           "destination": $023-PtSeouLo.contract_id.originated }
       || { /* Update_consensus_key */
            "kind": "update_consensus_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -98868,7 +98880,7 @@ Full description
       || { /* Update_companion_key */
            "kind": "update_companion_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -98885,7 +98897,7 @@ Full description
       || { /* Register_global_constant */
            "kind": "register_global_constant",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -98893,20 +98905,20 @@ Full description
       || { /* Transfer_ticket */
            "kind": "transfer_ticket",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "ticket_contents": any,
            "ticket_ty": any,
-           "ticket_ticketer": $023-PtSEouLo.contract_id,
+           "ticket_ticketer": $023-PtSeouLo.contract_id,
            "ticket_amount": $positive_bignum,
-           "destination": $023-PtSEouLo.contract_id,
+           "destination": $023-PtSeouLo.contract_id,
            "entrypoint": $unistring }
       || { /* Dal_publish_commitment */
            "kind": "dal_publish_commitment",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -98917,7 +98929,7 @@ Full description
       || { /* Smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -98928,7 +98940,7 @@ Full description
       || { /* Smart_rollup_add_messages */
            "kind": "smart_rollup_add_messages",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -98936,7 +98948,7 @@ Full description
       || { /* Smart_rollup_cement */
            "kind": "smart_rollup_cement",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -98944,7 +98956,7 @@ Full description
       || { /* Smart_rollup_publish */
            "kind": "smart_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -98957,7 +98969,7 @@ Full description
       || { /* Smart_rollup_refute */
            "kind": "smart_rollup_refute",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99009,7 +99021,7 @@ Full description
       || { /* Smart_rollup_timeout */
            "kind": "smart_rollup_timeout",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99020,7 +99032,7 @@ Full description
       || { /* Smart_rollup_execute_outbox_message */
            "kind": "smart_rollup_execute_outbox_message",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99030,7 +99042,7 @@ Full description
       || { /* Smart_rollup_recover_bond */
            "kind": "smart_rollup_recover_bond",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99039,7 +99051,7 @@ Full description
       || { /* Zk_rollup_origination */
            "kind": "zk_rollup_origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99057,7 +99069,7 @@ Full description
       || { /* Zk_rollup_publish */
            "kind": "zk_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99070,15 +99082,15 @@ Full description
                    "rollup_id": $Zk_rollup_hash,
                    "payload": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                  { /* Some */
-                   "contents": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ty": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ticketer": $023-PtSEouLo.contract_id }
+                   "contents": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ty": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ticketer": $023-PtSeouLo.contract_id }
                  || null
                  /* None */ ] ... ] }
       || { /* Zk_rollup_update */
            "kind": "zk_rollup_update",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99095,137 +99107,137 @@ Full description
                        "fee": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } ] ... ],
                "fee_pi": { "new_state": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                "proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ } }
-    $023-PtSEouLo.operation.alpha.internal_operation_result.delegation:
+    $023-PtSeouLo.operation.alpha.internal_operation_result.delegation:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.internal_operation_result.event:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.internal_operation_result.event:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.internal_operation_result.origination:
+    $023-PtSeouLo.operation.alpha.internal_operation_result.origination:
       { /* Applied */
         "status": "applied",
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "originated_contracts"?:
-             [ $023-PtSEouLo.contract_id.originated ... ],
+             [ $023-PtSeouLo.contract_id.originated ... ],
            "consumed_milligas"?: $positive_bignum,
            "storage_size"?: $bignum,
            "paid_storage_size_diff"?: $bignum,
-           "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
-    $023-PtSEouLo.operation.alpha.internal_operation_result.transaction:
+           "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
+    $023-PtSeouLo.operation.alpha.internal_operation_result.transaction:
       /* Applied */
       { /* To_contract */
         "status": "applied",
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_receipt"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "status": "applied",
            "consumed_milligas"?: $positive_bignum,
            "ticket_receipt":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || /* Backtracked */
       { /* To_contract */
         "status": "backtracked",
-        "errors"?: [ $023-PtSEouLo.error ... ],
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "errors"?: [ $023-PtSeouLo.error ... ],
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_receipt"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "ticket_receipt":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
-    $023-PtSEouLo.operation.alpha.operation_contents_and_result:
+    $023-PtSeouLo.operation.alpha.operation_contents_and_result:
       { /* Attestation */
         "kind": "attestation",
         "slot": integer ∈ [0, 2^16-1],
@@ -99234,7 +99246,7 @@ Full description
         "block_payload_hash": $value_hash,
         "metadata":
           { "balance_updates"?:
-              $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+              $023-PtSeouLo.operation_metadata.alpha.balance_updates,
             "delegate": $Signature.Public_key_hash,
             "consensus_power": integer ∈ [-2^30, 2^30],
             "consensus_key": $Signature.Public_key_hash } }
@@ -99247,7 +99259,7 @@ Full description
            "dal_attestation": $bignum,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "delegate": $Signature.Public_key_hash,
                "consensus_power": integer ∈ [-2^30, 2^30],
                "consensus_key": $Signature.Public_key_hash } }
@@ -99259,7 +99271,7 @@ Full description
            "block_payload_hash": $value_hash,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "delegate": $Signature.Public_key_hash,
                "consensus_power": integer ∈ [-2^30, 2^30],
                "consensus_key": $Signature.Public_key_hash } }
@@ -99274,11 +99286,12 @@ Full description
                  "dal_attestation"?: $bignum } ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "committee":
                  [ { "delegate": $Signature.Public_key_hash,
-                     "consensus_pkh": $Signature.Public_key_hash } ... ],
-               "consensus_power": integer ∈ [-2^30, 2^30] } }
+                     "consensus_pkh": $Signature.Public_key_hash,
+                     "consensus_power": integer ∈ [-2^30, 2^30] } ... ],
+               "total_consensus_power": integer ∈ [-2^30, 2^30] } }
       || { /* Preattestations_aggregate */
            "kind": "preattestations_aggregate",
            "consensus_content":
@@ -99288,16 +99301,17 @@ Full description
            "committee": [ integer ∈ [0, 2^16-1] ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "committee":
                  [ { "delegate": $Signature.Public_key_hash,
-                     "consensus_pkh": $Signature.Public_key_hash } ... ],
-               "consensus_power": integer ∈ [-2^30, 2^30] } }
+                     "consensus_pkh": $Signature.Public_key_hash,
+                     "consensus_power": integer ∈ [-2^30, 2^30] } ... ],
+               "total_consensus_power": integer ∈ [-2^30, 2^30] } }
       || { /* Double_consensus_operation_evidence */
            "kind": "double_consensus_operation_evidence",
            "slot": integer ∈ [0, 2^16-1],
-           "op1": $023-PtSEouLo.inlined.consensus_operation,
-           "op2": $023-PtSEouLo.inlined.consensus_operation,
+           "op1": $023-PtSeouLo.inlined.consensus_operation,
+           "op2": $023-PtSeouLo.inlined.consensus_operation,
            "metadata":
              { "punished_delegate": $Signature.Public_key_hash,
                "rewarded_delegate": $Signature.Public_key_hash,
@@ -99307,7 +99321,7 @@ Full description
                    "kind": "attestation" | "block" | "preattestation" } } }
       || { /* Dal_entrapment_evidence */
            "kind": "dal_entrapment_evidence",
-           "attestation": $023-PtSEouLo.inlined.consensus_operation,
+           "attestation": $023-PtSeouLo.inlined.consensus_operation,
            "consensus_slot": integer ∈ [0, 2^16-1],
            "slot_index": integer ∈ [0, 255],
            "shard_with_proof":
@@ -99317,25 +99331,25 @@ Full description
                "proof": $DAL_commitment },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates } }
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates } }
       || { /* Seed_nonce_revelation */
            "kind": "seed_nonce_revelation",
            "level": integer ∈ [0, 2^31],
            "nonce": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates } }
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates } }
       || { /* Vdf_revelation */
            "kind": "vdf_revelation",
            "solution":
              [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/, /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates } }
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates } }
       || { /* Double_baking_evidence */
            "kind": "double_baking_evidence",
-           "bh1": $023-PtSEouLo.block_header.alpha.full_header,
-           "bh2": $023-PtSEouLo.block_header.alpha.full_header,
+           "bh1": $023-PtSeouLo.block_header.alpha.full_header,
+           "bh2": $023-PtSeouLo.block_header.alpha.full_header,
            "metadata":
              { "punished_delegate": $Signature.Public_key_hash,
                "rewarded_delegate": $Signature.Public_key_hash,
@@ -99349,7 +99363,7 @@ Full description
            "secret": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates } }
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates } }
       || { /* Proposals */
            "kind": "proposals",
            "source": $Signature.Public_key_hash,
@@ -99370,12 +99384,12 @@ Full description
            "destination": $Signature.Public_key_hash,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "allocated_destination_contract"?: boolean } }
       || { /* Reveal */
            "kind": "reveal",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99383,112 +99397,112 @@ Full description
            "proof"?: $Bls12_381_signature,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.reveal,
+                 $023-PtSeouLo.operation.alpha.operation_result.reveal,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Transaction */
            "kind": "transaction",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "amount": $023-PtSEouLo.mutez,
-           "destination": $023-PtSEouLo.contract_id,
+           "amount": $023-PtSeouLo.mutez,
+           "destination": $023-PtSeouLo.contract_id,
            "parameters"?:
-             { "entrypoint": $023-PtSEouLo.entrypoint,
+             { "entrypoint": $023-PtSeouLo.entrypoint,
                "value": any },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.transaction,
+                 $023-PtSeouLo.operation.alpha.operation_result.transaction,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Origination */
            "kind": "origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts,
+           "script": $023-PtSeouLo.scripted.contracts,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.origination,
+                 $023-PtSeouLo.operation.alpha.operation_result.origination,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Delegation */
            "kind": "delegation",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "delegate"?: $Signature.Public_key_hash,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.delegation,
+                 $023-PtSeouLo.operation.alpha.operation_result.delegation,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Register_global_constant */
            "kind": "register_global_constant",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "value": any,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.register_global_constant,
+                 $023-PtSeouLo.operation.alpha.operation_result.register_global_constant,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Set_deposits_limit */
            "kind": "set_deposits_limit",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
-           "limit"?: $023-PtSEouLo.mutez,
+           "limit"?: $023-PtSeouLo.mutez,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.set_deposits_limit,
+                 $023-PtSeouLo.operation.alpha.operation_result.set_deposits_limit,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Increase_paid_storage */
            "kind": "increase_paid_storage",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "amount": $bignum,
-           "destination": $023-PtSEouLo.contract_id.originated,
+           "destination": $023-PtSeouLo.contract_id.originated,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.increase_paid_storage,
+                 $023-PtSeouLo.operation.alpha.operation_result.increase_paid_storage,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Update_consensus_key */
            "kind": "update_consensus_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99496,15 +99510,15 @@ Full description
            "proof"?: $Bls12_381_signature,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.update_consensus_key,
+                 $023-PtSeouLo.operation.alpha.operation_result.update_consensus_key,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Update_companion_key */
            "kind": "update_companion_key",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99512,35 +99526,35 @@ Full description
            "proof"?: $Bls12_381_signature,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.update_consensus_key,
+                 $023-PtSeouLo.operation.alpha.operation_result.update_consensus_key,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Transfer_ticket */
            "kind": "transfer_ticket",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "ticket_contents": any,
            "ticket_ty": any,
-           "ticket_ticketer": $023-PtSEouLo.contract_id,
+           "ticket_ticketer": $023-PtSeouLo.contract_id,
            "ticket_amount": $positive_bignum,
-           "destination": $023-PtSEouLo.contract_id,
+           "destination": $023-PtSeouLo.contract_id,
            "entrypoint": $unistring,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.transfer_ticket,
+                 $023-PtSeouLo.operation.alpha.operation_result.transfer_ticket,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Dal_publish_commitment */
            "kind": "dal_publish_commitment",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99550,15 +99564,15 @@ Full description
                "commitment_proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.dal_publish_commitment,
+                 $023-PtSeouLo.operation.alpha.operation_result.dal_publish_commitment,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_originate */
            "kind": "smart_rollup_originate",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99568,45 +99582,45 @@ Full description
            "whitelist"?: [ $Signature.Public_key_hash ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_originate,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_originate,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_add_messages */
            "kind": "smart_rollup_add_messages",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "message": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_add_messages,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_add_messages,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_cement */
            "kind": "smart_rollup_cement",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
            "rollup": $smart_rollup_address,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_cement,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_cement,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_publish */
            "kind": "smart_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99618,15 +99632,15 @@ Full description
                "number_of_ticks": $int64 },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_publish,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_publish,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_refute */
            "kind": "smart_rollup_refute",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99677,15 +99691,15 @@ Full description
                                 "input_proof_kind": "first_input" } } },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_refute,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_refute,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_timeout */
            "kind": "smart_rollup_timeout",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99695,15 +99709,15 @@ Full description
                "bob": $Signature.Public_key_hash },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_timeout,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_timeout,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_execute_outbox_message */
            "kind": "smart_rollup_execute_outbox_message",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99712,15 +99726,15 @@ Full description
            "output_proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Smart_rollup_recover_bond */
            "kind": "smart_rollup_recover_bond",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99728,15 +99742,15 @@ Full description
            "staker": $Signature.Public_key_hash,
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_recover_bond,
+                 $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_recover_bond,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Zk_rollup_origination */
            "kind": "zk_rollup_origination",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99753,15 +99767,15 @@ Full description
            "nb_ops": integer ∈ [-2^30, 2^30],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_origination,
+                 $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_origination,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Zk_rollup_publish */
            "kind": "zk_rollup_publish",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99774,22 +99788,22 @@ Full description
                    "rollup_id": $Zk_rollup_hash,
                    "payload": [ /^([a-zA-Z0-9][a-zA-Z0-9])*$/ ... ] },
                  { /* Some */
-                   "contents": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ty": $micheline.023-PtSEouLo.michelson_v1.expression,
-                   "ticketer": $023-PtSEouLo.contract_id }
+                   "contents": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ty": $micheline.023-PtSeouLo.michelson_v1.expression,
+                   "ticketer": $023-PtSeouLo.contract_id }
                  || null
                  /* None */ ] ... ],
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_publish,
+                 $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_publish,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
       || { /* Zk_rollup_update */
            "kind": "zk_rollup_update",
            "source": $Signature.Public_key_hash,
-           "fee": $023-PtSEouLo.mutez,
+           "fee": $023-PtSeouLo.mutez,
            "counter": $positive_bignum,
            "gas_limit": $positive_bignum,
            "storage_limit": $positive_bignum,
@@ -99808,12 +99822,12 @@ Full description
                "proof": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ },
            "metadata":
              { "balance_updates"?:
-                 $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+                 $023-PtSeouLo.operation_metadata.alpha.balance_updates,
                "operation_result":
-                 $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_update,
+                 $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_update,
                "internal_operation_results"?:
-                 [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ] } }
-    $023-PtSEouLo.operation.alpha.operation_result.dal_publish_commitment:
+                 [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ] } }
+    $023-PtSeouLo.operation.alpha.operation_result.dal_publish_commitment:
       { /* Applied */
         "status": "applied",
         "slot_header":
@@ -99825,12 +99839,12 @@ Full description
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "slot_header":
              { /* v0 */
                "version": "0",
@@ -99838,127 +99852,127 @@ Full description
                "index": integer ∈ [0, 255],
                "commitment": $DAL_commitment },
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.delegation:
+    $023-PtSeouLo.operation.alpha.operation_result.delegation:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.operation_result.increase_paid_storage:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.operation_result.increase_paid_storage:
       { /* Applied */
         "status": "applied",
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.origination:
+    $023-PtSeouLo.operation.alpha.operation_result.origination:
       { /* Applied */
         "status": "applied",
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "originated_contracts"?:
-             [ $023-PtSEouLo.contract_id.originated ... ],
+             [ $023-PtSeouLo.contract_id.originated ... ],
            "consumed_milligas"?: $positive_bignum,
            "storage_size"?: $bignum,
            "paid_storage_size_diff"?: $bignum,
-           "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
-    $023-PtSEouLo.operation.alpha.operation_result.register_global_constant:
+           "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
+    $023-PtSeouLo.operation.alpha.operation_result.register_global_constant:
       { /* Applied */
         "status": "applied",
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "global_address": $script_expr }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates"?:
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum,
            "storage_size"?: $bignum,
            "global_address": $script_expr }
-    $023-PtSEouLo.operation.alpha.operation_result.reveal:
+    $023-PtSeouLo.operation.alpha.operation_result.reveal:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.set_deposits_limit:
+    $023-PtSeouLo.operation.alpha.operation_result.set_deposits_limit:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_add_messages:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_add_messages:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_cement:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_cement:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
@@ -99966,28 +99980,28 @@ Full description
         "commitment_hash": $smart_rollup_commitment_hash }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "inbox_level": integer ∈ [0, 2^31],
            "commitment_hash": $smart_rollup_commitment_hash }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates":
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
         "whitelist_update"?:
           { /* Public */
@@ -99999,22 +100013,22 @@ Full description
         "paid_storage_size_diff"?: $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ],
            "whitelist_update"?:
              { /* Public */
@@ -100024,68 +100038,68 @@ Full description
                   "whitelist": [ $Signature.Public_key_hash ... ] },
            "consumed_milligas"?: $positive_bignum,
            "paid_storage_size_diff"?: $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_originate:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_originate:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "address": $smart_rollup_address,
         "genesis_commitment_hash": $smart_rollup_commitment_hash,
         "consumed_milligas"?: $positive_bignum,
         "size": $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "address": $smart_rollup_address,
            "genesis_commitment_hash": $smart_rollup_commitment_hash,
            "consumed_milligas"?: $positive_bignum,
            "size": $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_publish:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_publish:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
         "staked_hash": $smart_rollup_commitment_hash,
         "published_at_level": integer ∈ [0, 2^31],
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "staked_hash": $smart_rollup_commitment_hash,
            "published_at_level": integer ∈ [0, 2^31],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_recover_bond:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_recover_bond:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_refute:
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_refute:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
@@ -100100,15 +100114,15 @@ Full description
                  || { /* Draw */
                       "kind": "draw" } },
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "game_status":
              "ongoing"
@@ -100121,8 +100135,8 @@ Full description
                     || { /* Draw */
                          "kind": "draw" } },
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_timeout:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_timeout:
       { /* Applied */
         "status": "applied",
         "consumed_milligas"?: $positive_bignum,
@@ -100137,15 +100151,15 @@ Full description
                  || { /* Draw */
                       "kind": "draw" } },
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates }
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "game_status":
              "ongoing"
@@ -100158,216 +100172,216 @@ Full description
                     || { /* Draw */
                          "kind": "draw" } },
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates }
-    $023-PtSEouLo.operation.alpha.operation_result.transaction:
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates }
+    $023-PtSeouLo.operation.alpha.operation_result.transaction:
       /* Applied */
       { /* To_contract */
         "status": "applied",
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "status": "applied",
            "consumed_milligas"?: $positive_bignum,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || /* Backtracked */
       { /* To_contract */
         "status": "backtracked",
-        "errors"?: [ $023-PtSEouLo.error ... ],
-        "storage"?: $micheline.023-PtSEouLo.michelson_v1.expression,
+        "errors"?: [ $023-PtSeouLo.error ... ],
+        "storage"?: $micheline.023-PtSeouLo.michelson_v1.expression,
         "balance_updates"?:
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates"?:
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
-        "originated_contracts"?: [ $023-PtSEouLo.contract_id.originated ... ],
+        "originated_contracts"?: [ $023-PtSeouLo.contract_id.originated ... ],
         "consumed_milligas"?: $positive_bignum,
         "storage_size"?: $bignum,
         "paid_storage_size_diff"?: $bignum,
         "allocated_destination_contract"?: boolean,
-        "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
+        "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
       || { /* To_smart_rollup */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "consumed_milligas"?: $positive_bignum,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ] }
-    $023-PtSEouLo.operation.alpha.operation_result.transfer_ticket:
+    $023-PtSeouLo.operation.alpha.operation_result.transfer_ticket:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "ticket_updates":
           [ { "ticket_token":
-                { "ticketer": $023-PtSEouLo.contract_id,
+                { "ticketer": $023-PtSeouLo.contract_id,
                   "content_type":
-                    $micheline.023-PtSEouLo.michelson_v1.expression,
-                  "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                    $micheline.023-PtSeouLo.michelson_v1.expression,
+                  "content": $micheline.023-PtSeouLo.michelson_v1.expression },
               "updates":
-                [ { "account": $023-PtSEouLo.transaction_destination,
+                [ { "account": $023-PtSeouLo.transaction_destination,
                     "amount": $bignum } ... ] } ... ],
         "consumed_milligas"?: $positive_bignum,
         "paid_storage_size_diff"?: $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "ticket_updates":
              [ { "ticket_token":
-                   { "ticketer": $023-PtSEouLo.contract_id,
+                   { "ticketer": $023-PtSeouLo.contract_id,
                      "content_type":
-                       $micheline.023-PtSEouLo.michelson_v1.expression,
-                     "content": $micheline.023-PtSEouLo.michelson_v1.expression },
+                       $micheline.023-PtSeouLo.michelson_v1.expression,
+                     "content": $micheline.023-PtSeouLo.michelson_v1.expression },
                  "updates":
-                   [ { "account": $023-PtSEouLo.transaction_destination,
+                   [ { "account": $023-PtSeouLo.transaction_destination,
                        "amount": $bignum } ... ] } ... ],
            "consumed_milligas"?: $positive_bignum,
            "paid_storage_size_diff"?: $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.update_consensus_key:
+    $023-PtSeouLo.operation.alpha.operation_result.update_consensus_key:
       { /* Applied */
         "status": "applied",
         "kind": boolean,
         "consumed_milligas"?: $positive_bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "kind": boolean,
            "consumed_milligas"?: $positive_bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_origination:
+    $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_origination:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "originated_zk_rollup": $Zk_rollup_hash,
         "consumed_milligas"?: $positive_bignum,
         "size": $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "originated_zk_rollup": $Zk_rollup_hash,
            "consumed_milligas"?: $positive_bignum,
            "size": $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_publish:
+    $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_publish:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum,
         "size": $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum,
            "size": $bignum }
-    $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_update:
+    $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_update:
       { /* Applied */
         "status": "applied",
         "balance_updates":
-          $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+          $023-PtSeouLo.operation_metadata.alpha.balance_updates,
         "consumed_milligas"?: $positive_bignum,
         "paid_storage_size_diff"?: $bignum }
       || { /* Failed */
            "status": "failed",
-           "errors": [ $023-PtSEouLo.error ... ] }
+           "errors": [ $023-PtSeouLo.error ... ] }
       || { /* Skipped */
            "status": "skipped" }
       || { /* Backtracked */
            "status": "backtracked",
-           "errors"?: [ $023-PtSEouLo.error ... ],
+           "errors"?: [ $023-PtSeouLo.error ... ],
            "balance_updates":
-             $023-PtSEouLo.operation_metadata.alpha.balance_updates,
+             $023-PtSeouLo.operation_metadata.alpha.balance_updates,
            "consumed_milligas"?: $positive_bignum,
            "paid_storage_size_diff"?: $bignum }
-    $023-PtSEouLo.operation_metadata.alpha.balance_updates:
+    $023-PtSeouLo.operation_metadata.alpha.balance_updates:
       [ { /* Contract */
           "kind": "contract",
-          "contract": $023-PtSEouLo.contract_id,
+          "contract": $023-PtSeouLo.contract_id,
           "change": $int64,
           "origin": "block" }
         || { /* Contract */
              "kind": "contract",
-             "contract": $023-PtSEouLo.contract_id,
+             "contract": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "migration" }
         || { /* Contract */
              "kind": "contract",
-             "contract": $023-PtSEouLo.contract_id,
+             "contract": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "subsidy" }
         || { /* Contract */
              "kind": "contract",
-             "contract": $023-PtSEouLo.contract_id,
+             "contract": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "simulation" }
         || { /* Contract */
              "kind": "contract",
-             "contract": $023-PtSEouLo.contract_id,
+             "contract": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash }
@@ -100400,31 +100414,31 @@ Full description
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "block" }
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "migration" }
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "subsidy" }
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "simulation" }
         || { /* Deposits */
              "kind": "freezer",
              "category": "deposits",
-             "staker": $023-PtSEouLo.frozen_staker,
+             "staker": $023-PtSeouLo.frozen_staker,
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash }
@@ -100815,36 +100829,36 @@ Full description
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "block" }
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "migration" }
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "subsidy" }
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "simulation" }
         || { /* Frozen_bonds */
              "kind": "freezer",
              "category": "bonds",
-             "contract": $023-PtSEouLo.contract_id,
-             "bond_id": $023-PtSEouLo.bond_id,
+             "contract": $023-PtSeouLo.contract_id,
+             "bond_id": $023-PtSeouLo.bond_id,
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash }
@@ -100903,35 +100917,35 @@ Full description
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "block" }
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "migration" }
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "subsidy" }
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "simulation" }
         || { /* Unstaked_deposits */
              "kind": "freezer",
              "category": "unstaked_deposits",
-             "staker": $023-PtSEouLo.staker,
+             "staker": $023-PtSeouLo.staker,
              "cycle": integer ∈ [-2^31-1, 2^31],
              "change": $int64,
              "origin": "delayed_operation",
@@ -100939,31 +100953,31 @@ Full description
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "block" }
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "migration" }
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "subsidy" }
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "simulation" }
         || { /* Staking_delegator_numerator */
              "kind": "staking",
              "category": "delegator_numerator",
-             "delegator": $023-PtSEouLo.contract_id,
+             "delegator": $023-PtSeouLo.contract_id,
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash }
@@ -101055,23 +101069,23 @@ Full description
              "change": $int64,
              "origin": "delayed_operation",
              "delayed_operation_hash": $Operation_hash } ... ]
-    $023-PtSEouLo.sapling_state_id:
+    $023-PtSeouLo.sapling_state_id:
       /* Sapling state identifier
          A sapling state identifier */
       $bignum
-    $023-PtSEouLo.scripted.contracts: { "code": any,
+    $023-PtSeouLo.scripted.contracts: { "code": any,
                                         "storage": any }
-    $023-PtSEouLo.staker:
+    $023-PtSeouLo.staker:
       /* unstaked_frozen_staker
          Abstract notion of staker used in operation receipts for unstaked
          frozen deposits, either a single staker or all the stakers delegating
          to some delegate. */
       { /* Single */
-        "contract": $023-PtSEouLo.contract_id,
+        "contract": $023-PtSeouLo.contract_id,
         "delegate": $Signature.Public_key_hash }
       || { /* Shared */
            "delegate": $Signature.Public_key_hash }
-    $023-PtSEouLo.transaction_destination:
+    $023-PtSeouLo.transaction_destination:
       /* A destination of a transaction
          A destination notation compatible with the contract notation as given
          to an RPC or inside scripts. Can be a base58 implicit contract hash, a
@@ -101136,20 +101150,20 @@ Full description
       /* 64 bit integers
          Decimal representation of 64 bit integers */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $positive_bignum:
       /* Positive big number
@@ -101407,7 +101421,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -101733,7 +101747,7 @@ Full description
     +-------------+--------------------------------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -101772,7 +101786,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -101784,7 +101798,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -101796,7 +101810,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -101812,9 +101826,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -101826,9 +101840,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -101844,11 +101858,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -101860,11 +101874,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -101880,11 +101894,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -101906,7 +101920,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -101956,11 +101970,11 @@ Full description
     +==========+======================+=================================================+
     | Tag      | 1 byte               | unsigned 8-bit integer                          |
     +----------+----------------------+-------------------------------------------------+
-    | contents | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | contents | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ty       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | ty       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +----------+----------------------+-------------------------------------------------+
-    | ticketer | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +----------+----------------------+-------------------------------------------------+
 
 
@@ -102342,7 +102356,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -102359,7 +102373,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.scripted.contracts
+    023-PtSeouLo.scripted.contracts
     *******************************
 
     +-----------------------+----------+------------------------------------+
@@ -102375,7 +102389,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.entrypoint (Determined from data, 8-bit tag)
+    023-PtSeouLo.entrypoint (Determined from data, 8-bit tag)
     *********************************************************
 
     default (tag 0)
@@ -102498,7 +102512,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
-    | entrypoint            | Determined from data | $023-PtSEouLo.entrypoint           |
+    | entrypoint            | Determined from data | $023-PtSeouLo.entrypoint           |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -102534,7 +102548,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.inlined.consensus_operation.contents (Determined from data, 8-bit tag)
     ***********************************************************************************
 
     Preattestation (tag 20)
@@ -102625,7 +102639,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.inlined.consensus_operation
+    023-PtSeouLo.inlined.consensus_operation
     ****************************************
 
     +------------+----------------------+----------------------------------------------------+
@@ -102633,7 +102647,7 @@ Full description
     +============+======================+====================================================+
     | branch     | 32 bytes             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
-    | operations | Determined from data | $023-PtSEouLo.inlined.consensus_operation.contents |
+    | operations | Determined from data | $023-PtSeouLo.inlined.consensus_operation.contents |
     +------------+----------------------+----------------------------------------------------+
     | signature  | Variable             | bytes                                              |
     +------------+----------------------+----------------------------------------------------+
@@ -102687,7 +102701,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.per_block_votes (1 byte, 8-bit tag)
+    023-PtSeouLo.per_block_votes (1 byte, 8-bit tag)
     ************************************************
 
     case_0 (tag 0)
@@ -102780,7 +102794,7 @@ Full description
     +------+--------+------------------------+
 
 
-    023-PtSEouLo.block_header.alpha.full_header
+    023-PtSeouLo.block_header.alpha.full_header
     *******************************************
 
     +---------------------------------------+----------+-------------------------------------+
@@ -102814,13 +102828,13 @@ Full description
     +---------------------------------------+----------+-------------------------------------+
     | seed_nonce_hash                       | 32 bytes | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
-    | per_block_votes                       | 1 byte   | $023-PtSEouLo.per_block_votes       |
+    | per_block_votes                       | 1 byte   | $023-PtSeouLo.per_block_votes       |
     +---------------------------------------+----------+-------------------------------------+
     | signature                             | Variable | bytes                               |
     +---------------------------------------+----------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.contents (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.contents (Determined from data, 8-bit tag)
     ***********************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -102849,11 +102863,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
 
 
@@ -102867,11 +102881,11 @@ Full description
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh1                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh1                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh2                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh2                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
 
 
@@ -103033,7 +103047,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------------------+-------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer        |
     +-----------------------+----------------------+-------------------------------------------+
@@ -103121,7 +103135,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -103153,7 +103167,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
 
 
@@ -103249,7 +103263,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
 
 
@@ -103331,11 +103345,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -103655,7 +103669,7 @@ Full description
     +---------------+----------------------+------------------------+
 
 
-    023-PtSEouLo.staker (Determined from data, 8-bit tag)
+    023-PtSeouLo.staker (Determined from data, 8-bit tag)
     *****************************************************
 
     Single (tag 0)
@@ -103666,7 +103680,7 @@ Full description
     +==========+==========+===========================+
     | Tag      | 1 byte   | unsigned 8-bit integer    |
     +----------+----------+---------------------------+
-    | contract | 22 bytes | $023-PtSEouLo.contract_id |
+    | contract | 22 bytes | $023-PtSeouLo.contract_id |
     +----------+----------+---------------------------+
     | delegate | 21 bytes | $public_key_hash          |
     +----------+----------+---------------------------+
@@ -103684,7 +103698,7 @@ Full description
     +----------+----------+------------------------+
 
 
-    023-PtSEouLo.bond_id (21 bytes, 8-bit tag)
+    023-PtSeouLo.bond_id (21 bytes, 8-bit tag)
     ******************************************
 
     Smart_rollup_bond_id (tag 1)
@@ -103699,7 +103713,7 @@ Full description
     +--------------+----------+------------------------+
 
 
-    023-PtSEouLo.frozen_staker (Determined from data, 8-bit tag)
+    023-PtSeouLo.frozen_staker (Determined from data, 8-bit tag)
     ************************************************************
 
     Single (tag 0)
@@ -103710,7 +103724,7 @@ Full description
     +==========+==========+===========================+
     | Tag      | 1 byte   | unsigned 8-bit integer    |
     +----------+----------+---------------------------+
-    | contract | 22 bytes | $023-PtSEouLo.contract_id |
+    | contract | 22 bytes | $023-PtSeouLo.contract_id |
     +----------+----------+---------------------------+
     | delegate | 21 bytes | $public_key_hash          |
     +----------+----------+---------------------------+
@@ -103763,7 +103777,7 @@ Full description
     +==========+==========+==================================+
     | Tag      | 1 byte   | unsigned 8-bit integer           |
     +----------+----------+----------------------------------+
-    | contract | 22 bytes | $023-PtSEouLo.contract_id        |
+    | contract | 22 bytes | $023-PtSeouLo.contract_id        |
     +----------+----------+----------------------------------+
     | change   | 8 bytes  | signed 64-bit big-endian integer |
     +----------+----------+----------------------------------+
@@ -103789,7 +103803,7 @@ Full description
     +========+======================+==================================+
     | Tag    | 1 byte               | unsigned 8-bit integer           |
     +--------+----------------------+----------------------------------+
-    | staker | Determined from data | $023-PtSEouLo.frozen_staker      |
+    | staker | Determined from data | $023-PtSeouLo.frozen_staker      |
     +--------+----------------------+----------------------------------+
     | change | 8 bytes              | signed 64-bit big-endian integer |
     +--------+----------------------+----------------------------------+
@@ -103979,9 +103993,9 @@ Full description
     +==========+==========+==================================+
     | Tag      | 1 byte   | unsigned 8-bit integer           |
     +----------+----------+----------------------------------+
-    | contract | 22 bytes | $023-PtSEouLo.contract_id        |
+    | contract | 22 bytes | $023-PtSeouLo.contract_id        |
     +----------+----------+----------------------------------+
-    | bond_id  | 21 bytes | $023-PtSEouLo.bond_id            |
+    | bond_id  | 21 bytes | $023-PtSeouLo.bond_id            |
     +----------+----------+----------------------------------+
     | change   | 8 bytes  | signed 64-bit big-endian integer |
     +----------+----------+----------------------------------+
@@ -104019,7 +104033,7 @@ Full description
     +========+======================+==================================+
     | Tag    | 1 byte               | unsigned 8-bit integer           |
     +--------+----------------------+----------------------------------+
-    | staker | Determined from data | $023-PtSEouLo.staker             |
+    | staker | Determined from data | $023-PtSeouLo.staker             |
     +--------+----------------------+----------------------------------+
     | cycle  | 4 bytes              | signed 32-bit big-endian integer |
     +--------+----------------------+----------------------------------+
@@ -104035,7 +104049,7 @@ Full description
     +===========+==========+==================================+
     | Tag       | 1 byte   | unsigned 8-bit integer           |
     +-----------+----------+----------------------------------+
-    | delegator | 22 bytes | $023-PtSEouLo.contract_id        |
+    | delegator | 22 bytes | $023-PtSeouLo.contract_id        |
     +-----------+----------+----------------------------------+
     | change    | 8 bytes  | signed 64-bit big-endian integer |
     +-----------+----------+----------------------------------+
@@ -104160,7 +104174,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.zk_rollup_update (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.zk_rollup_update (Determined from data, 8-bit tag)
     ************************************************************************************************
 
     Applied (tag 0)
@@ -104171,7 +104185,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -104217,7 +104231,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_61                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -104227,7 +104241,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.transaction_destination (22 bytes, 8-bit tag)
+    023-PtSeouLo.transaction_destination (22 bytes, 8-bit tag)
     **********************************************************
 
     Implicit (tag 0)
@@ -104284,7 +104298,7 @@ Full description
     +----------------+----------+------------------------+
 
 
-    023-PtSEouLo.operation.alpha.internal_operation_result.event (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.internal_operation_result.event (Determined from data, 8-bit tag)
     **********************************************************************************************
 
     Applied (tag 0)
@@ -104339,7 +104353,7 @@ Full description
     +------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.internal_operation_result.delegation (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.internal_operation_result.delegation (Determined from data, 8-bit tag)
     ***************************************************************************************************
 
     Applied (tag 0)
@@ -104352,7 +104366,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                               |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -104396,7 +104410,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -104513,11 +104527,11 @@ Full description
     +=============================+======================+=================================================+
     | key_hash                    | 32 bytes             | bytes                                           |
     +-----------------------------+----------------------+-------------------------------------------------+
-    | key                         | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key                         | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "value" | 1 byte               | boolean (0 for false, 255 for true)             |
     +-----------------------------+----------------------+-------------------------------------------------+
-    | value                       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | value                       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------------+----------------------+-------------------------------------------------+
 
 
@@ -104576,9 +104590,9 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------+
     | updates               | Variable             | sequence of $X_89                               |
     +-----------------------+----------------------+-------------------------------------------------+
-    | key_type              | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key_type              | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------------------+-------------------------------------------------+
-    | value_type            | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | value_type            | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------------------+-------------------------------------------------+
 
 
@@ -104613,7 +104627,7 @@ Full description
     +------+----------------------+------------------------+
 
 
-    023-PtSEouLo.lazy_storage_diff
+    023-PtSeouLo.lazy_storage_diff
     ******************************
 
     +-----------------------+----------+------------------------------------+
@@ -104625,7 +104639,7 @@ Full description
     +-----------------------+----------+------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.internal_operation_result.origination (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.internal_operation_result.origination (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -104636,13 +104650,13 @@ Full description
     +==========================================================================+======================+==================================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer                           |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -104652,7 +104666,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -104692,13 +104706,13 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | errors                                                                   | Determined from data | $X_61                                            |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -104708,7 +104722,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -104718,11 +104732,11 @@ Full description
     +--------------+----------------------+-------------------------------------------------+
     | Name         | Size                 | Contents                                        |
     +==============+======================+=================================================+
-    | ticketer     | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | ticketer     | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +--------------+----------------------+-------------------------------------------------+
-    | content_type | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | content_type | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +--------------+----------------------+-------------------------------------------------+
-    | content      | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | content      | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +--------------+----------------------+-------------------------------------------------+
 
 
@@ -104732,7 +104746,7 @@ Full description
     +---------+----------------------+---------------------------------------+
     | Name    | Size                 | Contents                              |
     +=========+======================+=======================================+
-    | account | 22 bytes             | $023-PtSEouLo.transaction_destination |
+    | account | 22 bytes             | $023-PtSeouLo.transaction_destination |
     +---------+----------------------+---------------------------------------+
     | amount  | Determined from data | $Z.t                                  |
     +---------+----------------------+---------------------------------------+
@@ -104765,9 +104779,9 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "storage"                                            | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | storage                                                                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression  |
+    | storage                                                                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -104777,7 +104791,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -104789,7 +104803,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -104809,7 +104823,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.internal_operation_result.transaction (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.internal_operation_result.transaction (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -104864,7 +104878,7 @@ Full description
     +------------------------------+----------------------+-------------------------------------+
 
 
-    023-PtSEouLo.apply_internal_results.alpha.operation_result (Determined from data, 8-bit tag)
+    023-PtSeouLo.apply_internal_results.alpha.operation_result (Determined from data, 8-bit tag)
     ********************************************************************************************
 
     transaction (tag 1)
@@ -104875,19 +104889,19 @@ Full description
     +==================================+======================+=====================================================================+
     | Tag                              | 1 byte               | unsigned 8-bit integer                                              |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
-    | source                           | 22 bytes             | $023-PtSEouLo.transaction_destination                               |
+    | source                           | 22 bytes             | $023-PtSeouLo.transaction_destination                               |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
     | nonce                            | 2 bytes              | unsigned 16-bit big-endian integer                                  |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
     | amount                           | Determined from data | $N.t                                                                |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.transaction_destination                               |
+    | destination                      | 22 bytes             | $023-PtSeouLo.transaction_destination                               |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true)                                 |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
     | parameters                       | Determined from data | $X_31                                                               |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
-    | result                           | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.transaction |
+    | result                           | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.transaction |
     +----------------------------------+----------------------+---------------------------------------------------------------------+
 
 
@@ -104899,7 +104913,7 @@ Full description
     +================================+======================+=====================================================================+
     | Tag                            | 1 byte               | unsigned 8-bit integer                                              |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
-    | source                         | 22 bytes             | $023-PtSEouLo.transaction_destination                               |
+    | source                         | 22 bytes             | $023-PtSeouLo.transaction_destination                               |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
     | nonce                          | 2 bytes              | unsigned 16-bit big-endian integer                                  |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
@@ -104909,9 +104923,9 @@ Full description
     +--------------------------------+----------------------+---------------------------------------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                                                    |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts                                    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts                                    |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
-    | result                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.origination |
+    | result                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.origination |
     +--------------------------------+----------------------+---------------------------------------------------------------------+
 
 
@@ -104923,7 +104937,7 @@ Full description
     +================================+======================+====================================================================+
     | Tag                            | 1 byte               | unsigned 8-bit integer                                             |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
-    | source                         | 22 bytes             | $023-PtSEouLo.transaction_destination                              |
+    | source                         | 22 bytes             | $023-PtSeouLo.transaction_destination                              |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
     | nonce                          | 2 bytes              | unsigned 16-bit big-endian integer                                 |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
@@ -104931,7 +104945,7 @@ Full description
     +--------------------------------+----------------------+--------------------------------------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                                                   |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
-    | result                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.delegation |
+    | result                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.delegation |
     +--------------------------------+----------------------+--------------------------------------------------------------------+
 
 
@@ -104943,21 +104957,21 @@ Full description
     +===============================+======================+===============================================================+
     | Tag                           | 1 byte               | unsigned 8-bit integer                                        |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | source                        | 22 bytes             | $023-PtSEouLo.transaction_destination                         |
+    | source                        | 22 bytes             | $023-PtSeouLo.transaction_destination                         |
     +-------------------------------+----------------------+---------------------------------------------------------------+
     | nonce                         | 2 bytes              | unsigned 16-bit big-endian integer                            |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | type                          | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression               |
+    | type                          | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression               |
     +-------------------------------+----------------------+---------------------------------------------------------------+
     | ? presence of field "tag"     | 1 byte               | boolean (0 for false, 255 for true)                           |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | tag                           | Determined from data | $023-PtSEouLo.entrypoint                                      |
+    | tag                           | Determined from data | $023-PtSeouLo.entrypoint                                      |
     +-------------------------------+----------------------+---------------------------------------------------------------+
     | ? presence of field "payload" | 1 byte               | boolean (0 for false, 255 for true)                           |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | payload                       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression               |
+    | payload                       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression               |
     +-------------------------------+----------------------+---------------------------------------------------------------+
-    | result                        | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.event |
+    | result                        | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.event |
     +-------------------------------+----------------------+---------------------------------------------------------------+
 
 
@@ -104967,19 +104981,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_update         |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_update         |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.zk_rollup_publish (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.zk_rollup_publish (Determined from data, 8-bit tag)
     *************************************************************************************************
 
     Applied (tag 0)
@@ -104990,7 +105004,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -105036,7 +105050,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_61                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -105052,19 +105066,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_publish        |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_publish        |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.zk_rollup_origination (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.zk_rollup_origination (Determined from data, 8-bit tag)
     *****************************************************************************************************
 
     Applied (tag 0)
@@ -105075,7 +105089,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -105123,7 +105137,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_61                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -105141,15 +105155,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.zk_rollup_origination    |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.zk_rollup_origination    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -105172,7 +105186,7 @@ Full description
     +------------+----------+----------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.dal_publish_commitment (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.dal_publish_commitment (Determined from data, 8-bit tag)
     ******************************************************************************************************
 
     Applied (tag 0)
@@ -105237,19 +105251,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.dal_publish_commitment   |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.dal_publish_commitment   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_recover_bond (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_recover_bond (Determined from data, 8-bit tag)
     *********************************************************************************************************
 
     Applied (tag 0)
@@ -105260,7 +105274,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -105304,7 +105318,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_61                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -105318,15 +105332,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                 |
     +==========================================================================+======================+==========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                       |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                       |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                        |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_recover_bond |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_recover_bond |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                       |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result  |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------------------------------+
 
 
@@ -105355,7 +105369,7 @@ Full description
     +-----------+----------------------+------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message (Determined from data, 8-bit tag)
     *******************************************************************************************************************
 
     Applied (tag 0)
@@ -105366,7 +105380,7 @@ Full description
     +==========================================================================+======================+=====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -105420,7 +105434,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_61                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -105444,15 +105458,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                           |
     +==========================================================================+======================+====================================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                                 |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                                 |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_execute_outbox_message |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                                 |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result            |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result            |
     +--------------------------------------------------------------------------+----------------------+------------------------------------------------------------------------------------+
 
 
@@ -105531,7 +105545,7 @@ Full description
     +--------+----------------------+------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_timeout (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_timeout (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -105546,7 +105560,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | game_status                                                              | Determined from data | $X_925                             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -105592,7 +105606,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | game_status                                                              | Determined from data | $X_925                              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -105604,19 +105618,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_timeout     |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_timeout     |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_publish (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_publish (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -105633,7 +105647,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | published_at_level                                                       | 4 bytes              | signed 32-bit big-endian integer   |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -105681,7 +105695,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | published_at_level                                                       | 4 bytes              | signed 32-bit big-endian integer    |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -105693,19 +105707,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_publish     |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_publish     |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_cement (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_cement (Determined from data, 8-bit tag)
     ***************************************************************************************************
 
     Applied (tag 0)
@@ -105774,15 +105788,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_cement      |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_cement      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -105792,19 +105806,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.event           |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.event           |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.smart_rollup_originate (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.smart_rollup_originate (Determined from data, 8-bit tag)
     ******************************************************************************************************
 
     Applied (tag 0)
@@ -105815,7 +105829,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -105865,7 +105879,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_61                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -105885,19 +105899,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.smart_rollup_originate   |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.smart_rollup_originate   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.transfer_ticket (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.transfer_ticket (Determined from data, 8-bit tag)
     ***********************************************************************************************
 
     Applied (tag 0)
@@ -105908,7 +105922,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -105958,7 +105972,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_61                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -105978,19 +105992,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.transfer_ticket          |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.transfer_ticket          |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.update_consensus_key (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.update_consensus_key (Determined from data, 8-bit tag)
     ****************************************************************************************************
 
     Applied (tag 0)
@@ -106055,19 +106069,19 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.update_consensus_key     |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.update_consensus_key     |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.register_global_constant (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.register_global_constant (Determined from data, 8-bit tag)
     ********************************************************************************************************
 
     Applied (tag 0)
@@ -106078,7 +106092,7 @@ Full description
     +==========================================================================+======================+====================================+
     | Tag                                                                      | 1 byte               | unsigned 8-bit integer             |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                  |
     +--------------------------------------------------------------------------+----------------------+------------------------------------+
@@ -106126,7 +106140,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | errors                                                                   | Determined from data | $X_61                               |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------+
@@ -106144,15 +106158,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.register_global_constant |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.register_global_constant |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -106162,15 +106176,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.delegation      |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.delegation      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -106180,15 +106194,15 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.internal_operation_result.origination     |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.internal_operation_result.origination     |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -106205,9 +106219,9 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "storage"                                            | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | storage                                                                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression  |
+    | storage                                                                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -106217,7 +106231,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer               |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | originated_contracts                                                     | Variable             | sequence of $023-PtSEouLo.contract_id.originated |
+    | originated_contracts                                                     | Variable             | sequence of $023-PtSeouLo.contract_id.originated |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | consumed_milligas                                                        | Determined from data | $N.t                                             |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
@@ -106229,7 +106243,7 @@ Full description
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
     | ? presence of field "lazy_storage_diff"                                  | 1 byte               | boolean (0 for false, 255 for true)              |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
-    | lazy_storage_diff                                                        | Determined from data | $023-PtSEouLo.lazy_storage_diff                  |
+    | lazy_storage_diff                                                        | Determined from data | $023-PtSeouLo.lazy_storage_diff                  |
     +--------------------------------------------------------------------------+----------------------+--------------------------------------------------+
 
 
@@ -106249,7 +106263,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_result.transaction (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_result.transaction (Determined from data, 8-bit tag)
     *******************************************************************************************
 
     Applied (tag 0)
@@ -106310,28 +106324,30 @@ Full description
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                                                     | Size                 | Contents                                                                |
     +==========================================================================+======================+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable             | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operation_result                                                         | Determined from data | $023-PtSEouLo.operation.alpha.operation_result.transaction              |
+    | operation_result                                                         | Determined from data | $023-PtSeouLo.operation.alpha.operation_result.transaction              |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                                                    | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | internal_operation_results                                               | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | internal_operation_results                                               | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +--------------------------------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
     X_3268
     ******
 
-    +---------------+----------+------------------+
-    | Name          | Size     | Contents         |
-    +===============+==========+==================+
-    | delegate      | 21 bytes | $public_key_hash |
-    +---------------+----------+------------------+
-    | consensus_pkh | 21 bytes | $public_key_hash |
-    +---------------+----------+------------------+
+    +-----------------+----------+-------------------------------------------------------------------------+
+    | Name            | Size     | Contents                                                                |
+    +=================+==========+=========================================================================+
+    | delegate        | 21 bytes | $public_key_hash                                                        |
+    +-----------------+----------+-------------------------------------------------------------------------+
+    | consensus_pkh   | 21 bytes | $public_key_hash                                                        |
+    +-----------------+----------+-------------------------------------------------------------------------+
+    | consensus_power | 4 bytes  | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 |
+    +-----------------+----------+-------------------------------------------------------------------------+
 
 
     X_3264
@@ -106340,7 +106356,7 @@ Full description
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | Name                                                                     | Size     | Contents                                                                |
     +==========================================================================+==========+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
@@ -106348,11 +106364,11 @@ Full description
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | committee                                                                | Variable | sequence of $X_3268                                                     |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
-    | consensus_power                                                          | 4 bytes  | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 |
+    | total_consensus_power                                                    | 4 bytes  | signed 31-bit big-endian integer in the range -1073741824 to 1073741823 |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.operation_metadata.alpha.balance_updates
+    023-PtSeouLo.operation_metadata.alpha.balance_updates
     *****************************************************
 
     +-----------------------+----------+------------------------------------+
@@ -106370,7 +106386,7 @@ Full description
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | Name                                                                     | Size     | Contents                                                                |
     +==========================================================================+==========+=========================================================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer                                      |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
     | balance_updates                                                          | Variable | sequence of $X_58                                                       |
     +--------------------------------------------------------------------------+----------+-------------------------------------------------------------------------+
@@ -106388,7 +106404,7 @@ Full description
     +--------------------------------------------------------------------------+----------+-------------------------------------+
     | Name                                                                     | Size     | Contents                            |
     +==========================================================================+==========+=====================================+
-    | # bytes in field "023-PtSEouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer  |
+    | # bytes in field "023-PtSeouLo.operation_metadata.alpha.balance_updates" | 4 bytes  | unsigned 30-bit big-endian integer  |
     +--------------------------------------------------------------------------+----------+-------------------------------------+
     | balance_updates                                                          | Variable | sequence of $X_58                   |
     +--------------------------------------------------------------------------+----------+-------------------------------------+
@@ -106438,7 +106454,7 @@ Full description
     +-------------------+----------+------------------+
 
 
-    023-PtSEouLo.operation.alpha.operation_contents_and_result (Determined from data, 8-bit tag)
+    023-PtSeouLo.operation.alpha.operation_contents_and_result (Determined from data, 8-bit tag)
     ********************************************************************************************
 
     Seed_nonce_revelation (tag 1)
@@ -106453,7 +106469,7 @@ Full description
     +----------+----------------------+--------------------------------------------------------+
     | nonce    | 32 bytes             | bytes                                                  |
     +----------+----------------------+--------------------------------------------------------+
-    | metadata | Determined from data | $023-PtSEouLo.operation_metadata.alpha.balance_updates |
+    | metadata | Determined from data | $023-PtSeouLo.operation_metadata.alpha.balance_updates |
     +----------+----------------------+--------------------------------------------------------+
 
 
@@ -106469,11 +106485,11 @@ Full description
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op1                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op1                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer        |
     +-----------------------+----------+-------------------------------------------+
-    | op2                   | Variable | $023-PtSEouLo.inlined.consensus_operation |
+    | op2                   | Variable | $023-PtSeouLo.inlined.consensus_operation |
     +-----------------------+----------+-------------------------------------------+
     | metadata              | 51 bytes | $X_3307                                   |
     +-----------------------+----------+-------------------------------------------+
@@ -106489,11 +106505,11 @@ Full description
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh1                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh1                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer           |
     +-----------------------+----------+----------------------------------------------+
-    | bh2                   | Variable | $023-PtSEouLo.block_header.alpha.full_header |
+    | bh2                   | Variable | $023-PtSeouLo.block_header.alpha.full_header |
     +-----------------------+----------+----------------------------------------------+
     | metadata              | 51 bytes | $X_3307                                      |
     +-----------------------+----------+----------------------------------------------+
@@ -106511,7 +106527,7 @@ Full description
     +----------+----------------------+--------------------------------------------------------+
     | secret   | 20 bytes             | bytes                                                  |
     +----------+----------------------+--------------------------------------------------------+
-    | metadata | Determined from data | $023-PtSEouLo.operation_metadata.alpha.balance_updates |
+    | metadata | Determined from data | $023-PtSeouLo.operation_metadata.alpha.balance_updates |
     +----------+----------------------+--------------------------------------------------------+
 
 
@@ -106561,7 +106577,7 @@ Full description
     +----------+----------------------+--------------------------------------------------------+
     | solution | 200 bytes            | $X_42                                                  |
     +----------+----------------------+--------------------------------------------------------+
-    | metadata | Determined from data | $023-PtSEouLo.operation_metadata.alpha.balance_updates |
+    | metadata | Determined from data | $023-PtSeouLo.operation_metadata.alpha.balance_updates |
     +----------+----------------------+--------------------------------------------------------+
 
 
@@ -106655,7 +106671,7 @@ Full description
     +-----------------------+----------------------+--------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                     |
     +-----------------------+----------------------+--------------------------------------------------------+
-    | attestation           | Variable             | $023-PtSEouLo.inlined.consensus_operation              |
+    | attestation           | Variable             | $023-PtSeouLo.inlined.consensus_operation              |
     +-----------------------+----------------------+--------------------------------------------------------+
     | consensus_slot        | 2 bytes              | unsigned 16-bit big-endian integer                     |
     +-----------------------+----------------------+--------------------------------------------------------+
@@ -106663,7 +106679,7 @@ Full description
     +-----------------------+----------------------+--------------------------------------------------------+
     | shard_with_proof      | Determined from data | $X_39                                                  |
     +-----------------------+----------------------+--------------------------------------------------------+
-    | metadata              | Determined from data | $023-PtSEouLo.operation_metadata.alpha.balance_updates |
+    | metadata              | Determined from data | $023-PtSeouLo.operation_metadata.alpha.balance_updates |
     +-----------------------+----------------------+--------------------------------------------------------+
 
 
@@ -106751,7 +106767,7 @@ Full description
     +----------------------------------+----------------------+-------------------------------------+
     | amount                           | Determined from data | $N.t                                |
     +----------------------------------+----------------------+-------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.contract_id           |
+    | destination                      | 22 bytes             | $023-PtSeouLo.contract_id           |
     +----------------------------------+----------------------+-------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true) |
     +----------------------------------+----------------------+-------------------------------------+
@@ -106785,7 +106801,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
     | metadata                       | Determined from data | $X_2742                             |
     +--------------------------------+----------------------+-------------------------------------+
@@ -106889,7 +106905,7 @@ Full description
     +---------------+----------------------+--------------------------------------+
     | amount        | Determined from data | $Z.t                                 |
     +---------------+----------------------+--------------------------------------+
-    | destination   | 22 bytes             | $023-PtSEouLo.contract_id.originated |
+    | destination   | 22 bytes             | $023-PtSeouLo.contract_id.originated |
     +---------------+----------------------+--------------------------------------+
     | metadata      | Determined from data | $X_623                               |
     +---------------+----------------------+--------------------------------------+
@@ -106977,11 +106993,11 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | ticket_ty             | Variable             | bytes                              |
     +-----------------------+----------------------+------------------------------------+
-    | ticket_ticketer       | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | ticket_ticketer       | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | ticket_amount         | Determined from data | $N.t                               |
     +-----------------------+----------------------+------------------------------------+
-    | destination           | 22 bytes             | $023-PtSEouLo.contract_id          |
+    | destination           | 22 bytes             | $023-PtSeouLo.contract_id          |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -107340,7 +107356,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                      |
     +-----------------------+----------+-------------------------------------------------------------------------+
-    | contents              | Variable | sequence of $023-PtSEouLo.operation.alpha.operation_contents_and_result |
+    | contents              | Variable | sequence of $023-PtSeouLo.operation.alpha.operation_contents_and_result |
     +-----------------------+----------+-------------------------------------------------------------------------+
     | signature             | Variable | bytes                                                                   |
     +-----------------------+----------+-------------------------------------------------------------------------+
@@ -107356,7 +107372,7 @@ Full description
     +-----------------------+----------+----------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                 |
     +-----------------------+----------+----------------------------------------------------+
-    | contents              | Variable | sequence of $023-PtSEouLo.operation.alpha.contents |
+    | contents              | Variable | sequence of $023-PtSeouLo.operation.alpha.contents |
     +-----------------------+----------+----------------------------------------------------+
     | signature             | Variable | bytes                                              |
     +-----------------------+----------+----------------------------------------------------+
@@ -107383,15 +107399,15 @@ Full description
             
-    { "script": $micheline.023-PtSEouLo.michelson_v1.expression,
-      "storage": $micheline.023-PtSEouLo.michelson_v1.expression,
-      "input": $micheline.023-PtSEouLo.michelson_v1.expression,
-      "amount": $023-PtSEouLo.mutez,
-      "balance"?: $023-PtSEouLo.mutez,
+    { "script": $micheline.023-PtSeouLo.michelson_v1.expression,
+      "storage": $micheline.023-PtSeouLo.michelson_v1.expression,
+      "input": $micheline.023-PtSeouLo.michelson_v1.expression,
+      "amount": $023-PtSeouLo.mutez,
+      "balance"?: $023-PtSeouLo.mutez,
       "chain_id": $Chain_id,
-      "source"?: $023-PtSEouLo.contract_id,
-      "payer"?: $023-PtSEouLo.contract_id.implicit,
-      "self"?: $023-PtSEouLo.contract_id.originated,
+      "source"?: $023-PtSeouLo.contract_id,
+      "payer"?: $023-PtSeouLo.contract_id.implicit,
+      "self"?: $023-PtSeouLo.contract_id.originated,
       "entrypoint"?: $unistring,
       "unparsing_mode"?: "Readable" || "Optimized" || "Optimized_legacy",
       "gas"?: $bignum,
@@ -107399,32 +107415,32 @@ Full description
       "level"?: $positive_bignum,
       "other_contracts"?:
         [ { "address": $Contract_hash,
-            "type": $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
+            "type": $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
       "extra_big_maps"?:
-        [ { "id": $023-PtSEouLo.big_map_id,
-            "key_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "val_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-            "map_literal": $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
-    $023-PtSEouLo.big_map_id:
+        [ { "id": $023-PtSeouLo.big_map_id,
+            "key_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "val_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+            "map_literal": $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
+    $023-PtSeouLo.big_map_id:
       /* Big map identifier
          A big map identifier */
       $bignum
-    $023-PtSEouLo.contract_id:
+    $023-PtSeouLo.contract_id:
       /* A contract handle
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash or a base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.implicit:
+    $023-PtSeouLo.contract_id.implicit:
       /* A contract handle -- implicit account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 implicit contract hash. */
       $unistring
-    $023-PtSEouLo.contract_id.originated:
+    $023-PtSeouLo.contract_id.originated:
       /* A contract handle -- originated account
          A contract notation as given to an RPC or inside scripts. Can be a
          base58 originated contract hash. */
       $unistring
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -107584,7 +107600,7 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
+    $023-PtSeouLo.mutez: $positive_bignum
     $Chain_id:
       /* Network identifier (Base58Check-encoded) */
       $unistring
@@ -107595,20 +107611,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $positive_bignum:
       /* Positive big number
@@ -107625,11 +107641,11 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------------------+
     | Name                                  | Size                 | Contents                                        |
     +=======================================+======================+=================================================+
-    | script                                | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | script                                | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | storage                               | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | storage                               | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | input                                 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | input                                 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | amount                                | Determined from data | $N.t                                            |
     +---------------------------------------+----------------------+-------------------------------------------------+
@@ -107641,15 +107657,15 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "source"          | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | source                                | 22 bytes             | $023-PtSEouLo.contract_id                       |
+    | source                                | 22 bytes             | $023-PtSeouLo.contract_id                       |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "payer"           | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | payer                                 | 22 bytes             | $023-PtSEouLo.contract_id.implicit              |
+    | payer                                 | 22 bytes             | $023-PtSeouLo.contract_id.implicit              |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "self"            | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------------------+----------------------+-------------------------------------------------+
-    | self                                  | 22 bytes             | $023-PtSEouLo.contract_id.originated            |
+    | self                                  | 22 bytes             | $023-PtSeouLo.contract_id.originated            |
     +---------------------------------------+----------------------+-------------------------------------------------+
     | # bytes in next field                 | 4 bytes              | unsigned 30-bit big-endian integer              |
     +---------------------------------------+----------------------+-------------------------------------------------+
@@ -107681,7 +107697,7 @@ Full description
     +---------------------------------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -108019,7 +108035,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -108058,7 +108074,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -108070,7 +108086,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -108082,7 +108098,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -108098,9 +108114,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -108112,9 +108128,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -108130,11 +108146,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -108146,11 +108162,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -108166,11 +108182,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -108255,7 +108271,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id (22 bytes, 8-bit tag)
     **********************************************
 
     Implicit (tag 0)
@@ -108284,7 +108300,7 @@ Full description
     +---------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id.implicit (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.implicit (22 bytes, 8-bit tag)
     *******************************************************
 
     Implicit (tag 0)
@@ -108299,7 +108315,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.contract_id.originated (22 bytes, 8-bit tag)
+    023-PtSeouLo.contract_id.originated (22 bytes, 8-bit tag)
     *********************************************************
 
     Originated (tag 1)
@@ -108357,7 +108373,7 @@ Full description
     +=========+======================+=================================================+
     | address | 20 bytes             | bytes                                           |
     +---------+----------------------+-------------------------------------------------+
-    | type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------+----------------------+-------------------------------------------------+
 
 
@@ -108381,11 +108397,11 @@ Full description
     +=============+======================+=================================================+
     | id          | Determined from data | $Z.t                                            |
     +-------------+----------------------+-------------------------------------------------+
-    | key_type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key_type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
-    | val_type    | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | val_type    | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
-    | map_literal | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | map_literal | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------+----------------------+-------------------------------------------------+
 
 
@@ -108404,44 +108420,44 @@ Full description
     
-    { "storage": $micheline.023-PtSEouLo.michelson_v1.expression,
+    { "storage": $micheline.023-PtSeouLo.michelson_v1.expression,
       "operations":
-        [ $023-PtSEouLo.apply_internal_results.alpha.operation_result ... ],
-      "trace": $023-PtSEouLo.scripted.trace,
-      "lazy_storage_diff"?: $023-PtSEouLo.lazy_storage_diff }
-    $023-PtSEouLo.apply_internal_results.alpha.operation_result:
+        [ $023-PtSeouLo.apply_internal_results.alpha.operation_result ... ],
+      "trace": $023-PtSeouLo.scripted.trace,
+      "lazy_storage_diff"?: $023-PtSeouLo.lazy_storage_diff }
+    $023-PtSeouLo.apply_internal_results.alpha.operation_result:
       { /* Transaction */
-        "source": $023-PtSEouLo.transaction_destination,
+        "source": $023-PtSeouLo.transaction_destination,
         "nonce": integer ∈ [0, 2^16-1],
         "kind": "transaction",
-        "amount": $023-PtSEouLo.mutez,
-        "destination": $023-PtSEouLo.transaction_destination,
-        "parameters"?: { "entrypoint": $023-PtSEouLo.entrypoint,
+        "amount": $023-PtSeouLo.mutez,
+        "destination": $023-PtSeouLo.transaction_destination,
+        "parameters"?: { "entrypoint": $023-PtSeouLo.entrypoint,
                          "value": any } }
       || { /* Origination */
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
            "kind": "origination",
-           "balance": $023-PtSEouLo.mutez,
+           "balance": $023-PtSeouLo.mutez,
            "delegate"?: $Signature.Public_key_hash,
-           "script": $023-PtSEouLo.scripted.contracts }
+           "script": $023-PtSeouLo.scripted.contracts }
       || { /* Delegation */
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
            "kind": "delegation",
            "delegate"?: $Signature.Public_key_hash }
       || { /* Event */
-           "source": $023-PtSEouLo.transaction_destination,
+           "source": $023-PtSeouLo.transaction_destination,
            "nonce": integer ∈ [0, 2^16-1],
            "kind": "event",
-           "type": $micheline.023-PtSEouLo.michelson_v1.expression,
-           "tag"?: $023-PtSEouLo.entrypoint,
-           "payload"?: $micheline.023-PtSEouLo.michelson_v1.expression }
-    $023-PtSEouLo.big_map_id:
+           "type": $micheline.023-PtSeouLo.michelson_v1.expression,
+           "tag"?: $023-PtSeouLo.entrypoint,
+           "payload"?: $micheline.023-PtSeouLo.michelson_v1.expression }
+    $023-PtSeouLo.big_map_id:
       /* Big map identifier
          A big map identifier */
       $bignum
-    $023-PtSEouLo.entrypoint:
+    $023-PtSeouLo.entrypoint:
       /* entrypoint
          Named entrypoint to a Michelson smart contract */
       "default"
@@ -108456,39 +108472,39 @@ Full description
       || "set_delegate_parameters"
       || $unistring
       /* named */
-    $023-PtSEouLo.lazy_storage_diff:
+    $023-PtSeouLo.lazy_storage_diff:
       [ { /* big_map */
           "kind": "big_map",
-          "id": $023-PtSEouLo.big_map_id,
+          "id": $023-PtSeouLo.big_map_id,
           "diff":
             { /* update */
               "action": "update",
               "updates":
                 [ { "key_hash": $script_expr,
-                    "key": $micheline.023-PtSEouLo.michelson_v1.expression,
-                    "value"?: $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
+                    "key": $micheline.023-PtSeouLo.michelson_v1.expression,
+                    "value"?: $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
             || { /* remove */
                  "action": "remove" }
             || { /* copy */
                  "action": "copy",
-                 "source": $023-PtSEouLo.big_map_id,
+                 "source": $023-PtSeouLo.big_map_id,
                  "updates":
                    [ { "key_hash": $script_expr,
-                       "key": $micheline.023-PtSEouLo.michelson_v1.expression,
+                       "key": $micheline.023-PtSeouLo.michelson_v1.expression,
                        "value"?:
-                         $micheline.023-PtSEouLo.michelson_v1.expression } ... ] }
+                         $micheline.023-PtSeouLo.michelson_v1.expression } ... ] }
             || { /* alloc */
                  "action": "alloc",
                  "updates":
                    [ { "key_hash": $script_expr,
-                       "key": $micheline.023-PtSEouLo.michelson_v1.expression,
+                       "key": $micheline.023-PtSeouLo.michelson_v1.expression,
                        "value"?:
-                         $micheline.023-PtSEouLo.michelson_v1.expression } ... ],
-                 "key_type": $micheline.023-PtSEouLo.michelson_v1.expression,
-                 "value_type": $micheline.023-PtSEouLo.michelson_v1.expression } }
+                         $micheline.023-PtSeouLo.michelson_v1.expression } ... ],
+                 "key_type": $micheline.023-PtSeouLo.michelson_v1.expression,
+                 "value_type": $micheline.023-PtSeouLo.michelson_v1.expression } }
         || { /* sapling_state */
              "kind": "sapling_state",
-             "id": $023-PtSEouLo.sapling_state_id,
+             "id": $023-PtSeouLo.sapling_state_id,
              "diff":
                { /* update */
                  "action": "update",
@@ -108501,7 +108517,7 @@ Full description
                     "action": "remove" }
                || { /* copy */
                     "action": "copy",
-                    "source": $023-PtSEouLo.sapling_state_id,
+                    "source": $023-PtSeouLo.sapling_state_id,
                     "updates":
                       { "commitments_and_ciphertexts":
                           [ [ $sapling.transaction.commitment,
@@ -108515,7 +108531,7 @@ Full description
                               $sapling.transaction.ciphertext ] ... ],
                         "nullifiers": [ $sapling.transaction.nullifier ... ] },
                     "memo_size": integer ∈ [0, 2^16-1] } } ... ]
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -108675,18 +108691,18 @@ Full description
       | "EMPTY_SET"
       | "SELF"
       | "code"
-    $023-PtSEouLo.mutez: $positive_bignum
-    $023-PtSEouLo.sapling_state_id:
+    $023-PtSeouLo.mutez: $positive_bignum
+    $023-PtSeouLo.sapling_state_id:
       /* Sapling state identifier
          A sapling state identifier */
       $bignum
-    $023-PtSEouLo.scripted.contracts: { "code": any,
+    $023-PtSeouLo.scripted.contracts: { "code": any,
                                         "storage": any }
-    $023-PtSEouLo.scripted.trace:
+    $023-PtSeouLo.scripted.trace:
       [ { "location": $micheline.location,
           "gas": $bignum,
-          "stack": [ $micheline.023-PtSEouLo.michelson_v1.expression ... ] } ... ]
-    $023-PtSEouLo.transaction_destination:
+          "stack": [ $micheline.023-PtSeouLo.michelson_v1.expression ... ] } ... ]
+    $023-PtSeouLo.transaction_destination:
       /* A destination of a transaction
          A destination notation compatible with the contract notation as given
          to an RPC or inside scripts. Can be a base58 implicit contract hash, a
@@ -108701,20 +108717,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $micheline.location:
       /* Canonical location in a Micheline expression
@@ -108751,23 +108767,23 @@ Full description
     +------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | Name                                           | Size                 | Contents                                                                |
     +================================================+======================+=========================================================================+
-    | storage                                        | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                         |
+    | storage                                        | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                         |
     +------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field                          | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | operations                                     | Variable             | sequence of $023-PtSEouLo.apply_internal_results.alpha.operation_result |
+    | operations                                     | Variable             | sequence of $023-PtSeouLo.apply_internal_results.alpha.operation_result |
     +------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | # bytes in field "023-PtSEouLo.scripted.trace" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
+    | # bytes in field "023-PtSeouLo.scripted.trace" | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | trace                                          | Variable             | sequence of $X_5                                                        |
     +------------------------------------------------+----------------------+-------------------------------------------------------------------------+
     | ? presence of field "lazy_storage_diff"        | 1 byte               | boolean (0 for false, 255 for true)                                     |
     +------------------------------------------------+----------------------+-------------------------------------------------------------------------+
-    | lazy_storage_diff                              | Determined from data | $023-PtSEouLo.lazy_storage_diff                                         |
+    | lazy_storage_diff                              | Determined from data | $023-PtSeouLo.lazy_storage_diff                                         |
     +------------------------------------------------+----------------------+-------------------------------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -109105,7 +109121,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -109144,7 +109160,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -109156,7 +109172,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -109168,7 +109184,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -109184,9 +109200,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -109198,9 +109214,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -109216,11 +109232,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -109232,11 +109248,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -109252,11 +109268,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -109329,7 +109345,7 @@ Full description
     +---------------------------+----------+------------------------+
 
 
-    023-PtSEouLo.transaction_destination (22 bytes, 8-bit tag)
+    023-PtSeouLo.transaction_destination (22 bytes, 8-bit tag)
     **********************************************************
 
     Implicit (tag 0)
@@ -109386,7 +109402,7 @@ Full description
     +----------------+----------+------------------------+
 
 
-    023-PtSEouLo.entrypoint (Determined from data, 8-bit tag)
+    023-PtSeouLo.entrypoint (Determined from data, 8-bit tag)
     *********************************************************
 
     default (tag 0)
@@ -109515,7 +109531,7 @@ Full description
     +------+----------------------+----------+
 
 
-    023-PtSEouLo.scripted.contracts
+    023-PtSeouLo.scripted.contracts
     *******************************
 
     +-----------------------+----------+------------------------------------+
@@ -109537,7 +109553,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
     | Name                  | Size                 | Contents                           |
     +=======================+======================+====================================+
-    | entrypoint            | Determined from data | $023-PtSEouLo.entrypoint           |
+    | entrypoint            | Determined from data | $023-PtSeouLo.entrypoint           |
     +-----------------------+----------------------+------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer |
     +-----------------------+----------------------+------------------------------------+
@@ -109558,7 +109574,7 @@ Full description
     +----------------------------------+----------------------+---------------------------------------+
     | amount                           | Determined from data | $N.t                                  |
     +----------------------------------+----------------------+---------------------------------------+
-    | destination                      | 22 bytes             | $023-PtSEouLo.transaction_destination |
+    | destination                      | 22 bytes             | $023-PtSeouLo.transaction_destination |
     +----------------------------------+----------------------+---------------------------------------+
     | ? presence of field "parameters" | 1 byte               | boolean (0 for false, 255 for true)   |
     +----------------------------------+----------------------+---------------------------------------+
@@ -109580,7 +109596,7 @@ Full description
     +--------------------------------+----------------------+-------------------------------------+
     | delegate                       | 21 bytes             | $public_key_hash                    |
     +--------------------------------+----------------------+-------------------------------------+
-    | script                         | Determined from data | $023-PtSEouLo.scripted.contracts    |
+    | script                         | Determined from data | $023-PtSeouLo.scripted.contracts    |
     +--------------------------------+----------------------+-------------------------------------+
 
 
@@ -109606,25 +109622,25 @@ Full description
     +===============================+======================+=================================================+
     | Tag                           | 1 byte               | unsigned 8-bit integer                          |
     +-------------------------------+----------------------+-------------------------------------------------+
-    | type                          | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type                          | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "tag"     | 1 byte               | boolean (0 for false, 255 for true)             |
     +-------------------------------+----------------------+-------------------------------------------------+
-    | tag                           | Determined from data | $023-PtSEouLo.entrypoint                        |
+    | tag                           | Determined from data | $023-PtSeouLo.entrypoint                        |
     +-------------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "payload" | 1 byte               | boolean (0 for false, 255 for true)             |
     +-------------------------------+----------------------+-------------------------------------------------+
-    | payload                       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | payload                       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-------------------------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.apply_internal_results.alpha.operation_result
+    023-PtSeouLo.apply_internal_results.alpha.operation_result
     **********************************************************
 
     +-----------------+----------------------+---------------------------------------+
     | Name            | Size                 | Contents                              |
     +=================+======================+=======================================+
-    | source          | 22 bytes             | $023-PtSEouLo.transaction_destination |
+    | source          | 22 bytes             | $023-PtSeouLo.transaction_destination |
     +-----------------+----------------------+---------------------------------------+
     | nonce           | 2 bytes              | unsigned 16-bit big-endian integer    |
     +-----------------+----------------------+---------------------------------------+
@@ -109644,7 +109660,7 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                      |
     +-----------------------+----------------------+-------------------------------------------------------------------------+
-    | stack                 | Variable             | sequence of $micheline.023-PtSEouLo.michelson_v1.expression             |
+    | stack                 | Variable             | sequence of $micheline.023-PtSeouLo.michelson_v1.expression             |
     +-----------------------+----------------------+-------------------------------------------------------------------------+
 
 
@@ -109759,11 +109775,11 @@ Full description
     +=============================+======================+=================================================+
     | key_hash                    | 32 bytes             | bytes                                           |
     +-----------------------------+----------------------+-------------------------------------------------+
-    | key                         | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key                         | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "value" | 1 byte               | boolean (0 for false, 255 for true)             |
     +-----------------------------+----------------------+-------------------------------------------------+
-    | value                       | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | value                       | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------------+----------------------+-------------------------------------------------+
 
 
@@ -109822,9 +109838,9 @@ Full description
     +-----------------------+----------------------+-------------------------------------------------+
     | updates               | Variable             | sequence of $X_14                               |
     +-----------------------+----------------------+-------------------------------------------------+
-    | key_type              | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | key_type              | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------------------+-------------------------------------------------+
-    | value_type            | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | value_type            | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------------------+-------------------------------------------------+
 
 
@@ -109859,7 +109875,7 @@ Full description
     +------+----------------------+------------------------+
 
 
-    023-PtSEouLo.lazy_storage_diff
+    023-PtSeouLo.lazy_storage_diff
     ******************************
 
     +-----------------------+----------+------------------------------------+
@@ -109892,11 +109908,11 @@ Full description
             
-    { "program": $micheline.023-PtSEouLo.michelson_v1.expression,
+    { "program": $micheline.023-PtSeouLo.michelson_v1.expression,
       "gas"?: $bignum,
       "legacy"?: boolean,
       "show_types"?: boolean }
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -110060,20 +110076,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -110086,7 +110102,7 @@ Full description
     +---------------------------+----------------------+-------------------------------------------------+
     | Name                      | Size                 | Contents                                        |
     +===========================+======================+=================================================+
-    | program                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | program                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "gas" | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------+----------------------+-------------------------------------------------+
@@ -110098,7 +110114,7 @@ Full description
     +---------------------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -110436,7 +110452,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -110475,7 +110491,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -110487,7 +110503,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -110499,7 +110515,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -110515,9 +110531,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -110529,9 +110545,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -110547,11 +110563,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -110563,11 +110579,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -110583,11 +110599,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -110615,11 +110631,11 @@ Full description
     { "type_map":
         [ { "location": $micheline.location,
             "stack_before":
-              [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+              [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
             "stack_after":
-              [ $micheline.023-PtSEouLo.michelson_v1.expression ... ] } ... ],
+              [ $micheline.023-PtSeouLo.michelson_v1.expression ... ] } ... ],
       "gas": $bignum /* Limited */ || "unaccounted" }
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -110783,20 +110799,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $micheline.location:
       /* Canonical location in a Micheline expression
@@ -110823,7 +110839,7 @@ Full description
     +-----------------------+----------------------+------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -111161,7 +111177,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -111200,7 +111216,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -111212,7 +111228,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -111224,7 +111240,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -111240,9 +111256,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -111254,9 +111270,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -111272,11 +111288,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -111288,11 +111304,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -111308,11 +111324,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -111344,11 +111360,11 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                      |
     +-----------------------+----------+-------------------------------------------------------------------------+
-    | stack_before          | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression             |
+    | stack_before          | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression             |
     +-----------------------+----------+-------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                      |
     +-----------------------+----------+-------------------------------------------------------------------------+
-    | stack_after           | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression             |
+    | stack_after           | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression             |
     +-----------------------+----------+-------------------------------------------------------------------------+
 
 
@@ -111398,11 +111414,11 @@ Full description
             
-    { "data": $micheline.023-PtSEouLo.michelson_v1.expression,
-      "type": $micheline.023-PtSEouLo.michelson_v1.expression,
+    { "data": $micheline.023-PtSeouLo.michelson_v1.expression,
+      "type": $micheline.023-PtSeouLo.michelson_v1.expression,
       "gas"?: $bignum,
       "legacy"?: boolean }
-    $023-PtSEouLo.michelson.v1.primitives:
+    $023-PtSeouLo.michelson.v1.primitives:
       "SHA256"
       | "PUSH"
       | "GET_AND_UPDATE"
@@ -111566,20 +111582,20 @@ Full description
       /* Big number
          Decimal representation of a big number */
       string
-    $micheline.023-PtSEouLo.michelson_v1.expression:
+    $micheline.023-PtSeouLo.michelson_v1.expression:
       { /* Int */
         "int": $bignum }
       || { /* String */
            "string": $unistring }
       || { /* Bytes */
            "bytes": /^([a-zA-Z0-9][a-zA-Z0-9])*$/ }
-      || [ $micheline.023-PtSEouLo.michelson_v1.expression ... ]
+      || [ $micheline.023-PtSeouLo.michelson_v1.expression ... ]
       /* Sequence */
       || { /* Prim__generic
               Generic primitive (any number of args with or without
               annotations) */
-           "prim": $023-PtSEouLo.michelson.v1.primitives,
-           "args"?: [ $micheline.023-PtSEouLo.michelson_v1.expression ... ],
+           "prim": $023-PtSeouLo.michelson.v1.primitives,
+           "args"?: [ $micheline.023-PtSeouLo.michelson_v1.expression ... ],
            "annots"?: [ $unistring ... ] }
     $unistring:
       /* Universal string representation
@@ -111592,9 +111608,9 @@ Full description
     +---------------------------+----------------------+-------------------------------------------------+
     | Name                      | Size                 | Contents                                        |
     +===========================+======================+=================================================+
-    | data                      | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | data                      | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------+----------------------+-------------------------------------------------+
-    | type                      | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression |
+    | type                      | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression |
     +---------------------------+----------------------+-------------------------------------------------+
     | ? presence of field "gas" | 1 byte               | boolean (0 for false, 255 for true)             |
     +---------------------------+----------------------+-------------------------------------------------+
@@ -111604,7 +111620,7 @@ Full description
     +---------------------------+----------------------+-------------------------------------------------+
 
 
-    023-PtSEouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
+    023-PtSeouLo.michelson.v1.primitives (Enumeration: unsigned 8-bit integer):
     ***************************************************************************
 
     +-------------+--------------------------------+
@@ -111942,7 +111958,7 @@ Full description
     +------+----------------------+----------+
 
 
-    micheline.023-PtSEouLo.michelson_v1.expression (Determined from data, 8-bit tag)
+    micheline.023-PtSeouLo.michelson_v1.expression (Determined from data, 8-bit tag)
     ********************************************************************************
 
     Int (tag 0)
@@ -111981,7 +111997,7 @@ Full description
     +-----------------------+----------+-------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                          |
     +-----------------------+----------+-------------------------------------------------------------+
-    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression |
+    | Unnamed field 0       | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression |
     +-----------------------+----------+-------------------------------------------------------------+
 
 
@@ -111993,7 +112009,7 @@ Full description
     +======+========+===========================================================================================+
     | Tag  | 1 byte | unsigned 8-bit integer                                                                    |
     +------+--------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+--------+-------------------------------------------------------------------------------------------+
 
 
@@ -112005,7 +112021,7 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -112021,9 +112037,9 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -112035,9 +112051,9 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg                   | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg                   | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -112053,11 +112069,11 @@ Full description
     +======+======================+===========================================================================================+
     | Tag  | 1 byte               | unsigned 8-bit integer                                                                    |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2 | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2 | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +------+----------------------+-------------------------------------------------------------------------------------------+
 
 
@@ -112069,11 +112085,11 @@ Full description
     +=======================+======================+===========================================================================================+
     | Tag                   | 1 byte               | unsigned 8-bit integer                                                                    |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte               | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg1                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg1                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
-    | arg2                  | Determined from data | $micheline.023-PtSEouLo.michelson_v1.expression                                           |
+    | arg2                  | Determined from data | $micheline.023-PtSeouLo.michelson_v1.expression                                           |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes              | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------------------+-------------------------------------------------------------------------------------------+
@@ -112089,11 +112105,11 @@ Full description
     +=======================+==========+===========================================================================================+
     | Tag                   | 1 byte   | unsigned 8-bit integer                                                                    |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSEouLo.michelson.v1.primitives) |
+    | prim                  | 1 byte   | unsigned 8-bit integer encoding an enumeration (see 023-PtSeouLo.michelson.v1.primitives) |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
-    | args                  | Variable | sequence of $micheline.023-PtSEouLo.michelson_v1.expression                               |
+    | args                  | Variable | sequence of $micheline.023-PtSeouLo.michelson_v1.expression                               |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
     | # bytes in next field | 4 bytes  | unsigned 30-bit big-endian integer                                                        |
     +-----------------------+----------+-------------------------------------------------------------------------------------------+
@@ -112388,30 +112404,30 @@ Full description