From 04cc3e6a0e1eb648e2b1eeee96a00ea7568aaa9c Mon Sep 17 00:00:00 2001 From: Marri Harish Date: Tue, 6 Feb 2024 00:51:10 +0530 Subject: [PATCH] fix(tokenfactory): amino support for setDenomMetadata message (#146) --- proto/osmosis/tokenfactory/v1beta1/tx.proto | 3 + x/tokenfactory/types/codec.go | 75 +++++------- x/tokenfactory/types/tx.pb.go | 123 ++++++++++---------- 3 files changed, 95 insertions(+), 106 deletions(-) diff --git a/proto/osmosis/tokenfactory/v1beta1/tx.proto b/proto/osmosis/tokenfactory/v1beta1/tx.proto index 904bfacd..8208b175 100755 --- a/proto/osmosis/tokenfactory/v1beta1/tx.proto +++ b/proto/osmosis/tokenfactory/v1beta1/tx.proto @@ -111,6 +111,9 @@ message MsgChangeAdminResponse {} // MsgSetDenomMetadata is the sdk.Msg type for allowing an admin account to set // the denom's bank metadata message MsgSetDenomMetadata { + option (cosmos.msg.v1.signer) = "sender"; + option (amino.name) = "tokenfactory/set-denom-metadata"; + option (gogoproto.equal) = false; string sender = 1 [ (gogoproto.moretags) = "yaml:\"sender\"" ]; cosmos.bank.v1beta1.Metadata metadata = 2 [ diff --git a/x/tokenfactory/types/codec.go b/x/tokenfactory/types/codec.go index 5dfedf05..3e82f26e 100644 --- a/x/tokenfactory/types/codec.go +++ b/x/tokenfactory/types/codec.go @@ -2,49 +2,24 @@ package types import ( "github.com/cosmos/cosmos-sdk/codec" + "github.com/cosmos/cosmos-sdk/codec/legacy" codectypes "github.com/cosmos/cosmos-sdk/codec/types" + cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/msgservice" authzcodec "github.com/cosmos/cosmos-sdk/x/authz/codec" + govcodec "github.com/cosmos/cosmos-sdk/x/gov/codec" + groupcodec "github.com/cosmos/cosmos-sdk/x/group/codec" ) -var ( - amino = codec.NewLegacyAmino() - - // ModuleCdc references the global erc20 module codec. Note, the codec should - // ONLY be used in certain instances of tests and for JSON encoding. - // - // The actual codec used for serialization should be provided to modules/erc20 and - // defined at the application level. - ModuleCdc = codec.NewProtoCodec(codectypes.NewInterfaceRegistry()) - - // AminoCdc is a amino codec created to support amino JSON compatible msgs. - AminoCdc = codec.NewAminoCodec(amino) -) - -const ( - // Amino names - createTFDenom = "tokenfactory/create-denom" - mintTFDenom = "tokenfactory/mint" - burnTFDenom = "tokenfactory/burn" - forceTransferTFDenom = "tokenfactory/force-transfer" - changeAdminTFDenom = "tokenfactory/change-admin" - updateTFParams = "tokenfactory/msg-update-params" -) - -// NOTE: This is required for the GetSignBytes function -func init() { - RegisterLegacyAminoCodec(amino) - sdk.RegisterLegacyAminoCodec(amino) - // cryptocodec.RegisterCrypto(amino) - // codec.RegisterEvidences(amino) - - // Register all Amino interfaces and concrete types on the authz Amino codec - // so that this can later be used to properly serialize MsgGrant and MsgExec - // instances. - RegisterLegacyAminoCodec(authzcodec.Amino) - - amino.Seal() +func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { + legacy.RegisterAminoMsg(cdc, &MsgCreateDenom{}, "tokenfactory/create-denom") + legacy.RegisterAminoMsg(cdc, &MsgMint{}, "tokenfactory/mint") + legacy.RegisterAminoMsg(cdc, &MsgBurn{}, "tokenfactory/burn") + legacy.RegisterAminoMsg(cdc, &MsgChangeAdmin{}, "tokenfactory/change-admin") + legacy.RegisterAminoMsg(cdc, &MsgSetDenomMetadata{}, "tokenfactory/set-denom-metadata") + legacy.RegisterAminoMsg(cdc, &MsgForceTransfer{}, "tokenfactory/force-transfer") + legacy.RegisterAminoMsg(cdc, &MsgUpdateParams{}, "tokenfactory/update-params") } func RegisterInterfaces(registry codectypes.InterfaceRegistry) { @@ -53,18 +28,28 @@ func RegisterInterfaces(registry codectypes.InterfaceRegistry) { &MsgCreateDenom{}, &MsgMint{}, &MsgBurn{}, - &MsgForceTransfer{}, &MsgChangeAdmin{}, + &MsgSetDenomMetadata{}, + &MsgForceTransfer{}, &MsgUpdateParams{}, ) msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc) } -func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { - cdc.RegisterConcrete(&MsgCreateDenom{}, createTFDenom, nil) - cdc.RegisterConcrete(&MsgMint{}, mintTFDenom, nil) - cdc.RegisterConcrete(&MsgBurn{}, burnTFDenom, nil) - cdc.RegisterConcrete(&MsgForceTransfer{}, forceTransferTFDenom, nil) - cdc.RegisterConcrete(&MsgChangeAdmin{}, changeAdminTFDenom, nil) - cdc.RegisterConcrete(&MsgUpdateParams{}, updateTFParams, nil) +var ( + amino = codec.NewLegacyAmino() + ModuleCdc = codec.NewAminoCodec(amino) +) + +func init() { + RegisterLegacyAminoCodec(amino) + cryptocodec.RegisterCrypto(amino) + sdk.RegisterLegacyAminoCodec(amino) + amino.Seal() + + // Register all Amino interfaces and concrete types on the authz and gov Amino codec so that this can later be + // used to properly serialize MsgGrant, MsgExec and MsgSubmitProposal instances + RegisterLegacyAminoCodec(authzcodec.Amino) + RegisterLegacyAminoCodec(govcodec.Amino) + RegisterLegacyAminoCodec(groupcodec.Amino) } diff --git a/x/tokenfactory/types/tx.pb.go b/x/tokenfactory/types/tx.pb.go index 22a7bca8..a6eb70cf 100644 --- a/x/tokenfactory/types/tx.pb.go +++ b/x/tokenfactory/types/tx.pb.go @@ -754,67 +754,68 @@ func init() { } var fileDescriptor_283b6c9a90a846b4 = []byte{ - // 957 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0x3f, 0x6f, 0xdb, 0x46, - 0x1c, 0x15, 0x13, 0x47, 0xb5, 0x2f, 0x71, 0x6c, 0xd1, 0x6e, 0x2c, 0x33, 0x8e, 0x18, 0x10, 0x75, - 0xd1, 0x18, 0x15, 0x09, 0xb9, 0x6d, 0x8a, 0x6a, 0x6a, 0x94, 0xc2, 0xe8, 0x50, 0xa1, 0x2d, 0xe3, - 0x2e, 0x45, 0x00, 0xe1, 0x24, 0x9d, 0x68, 0xc2, 0xe6, 0x9d, 0xca, 0x3b, 0xf9, 0xcf, 0x16, 0x74, - 0xec, 0xd4, 0xa1, 0x5b, 0x51, 0x20, 0x1f, 0xc1, 0x43, 0xbf, 0x42, 0x81, 0x8c, 0x41, 0xa7, 0xa2, - 0x03, 0x51, 0xd8, 0x83, 0xbb, 0x74, 0xd1, 0x27, 0x28, 0xee, 0x0f, 0x49, 0x91, 0x12, 0x2c, 0x69, - 0xf2, 0x62, 0x4b, 0xfc, 0xbd, 0xf7, 0xf8, 0x7e, 0xef, 0x7e, 0x77, 0x27, 0xb0, 0x4d, 0x68, 0x40, - 0xa8, 0x4f, 0x1d, 0x46, 0x0e, 0x11, 0xee, 0xc1, 0x0e, 0x23, 0xe1, 0x99, 0x73, 0x5c, 0x6b, 0x23, - 0x06, 0x6b, 0x0e, 0x3b, 0xb5, 0xfb, 0x21, 0x61, 0x44, 0xdf, 0x52, 0x30, 0x7b, 0x14, 0x66, 0x2b, - 0x98, 0xb1, 0xee, 0x11, 0x8f, 0x08, 0xa0, 0xc3, 0x3f, 0x49, 0x8e, 0x51, 0xe9, 0x08, 0x92, 0xd3, - 0x86, 0x14, 0x25, 0x8a, 0x1d, 0xe2, 0xe3, 0xb1, 0x3a, 0x3e, 0x4c, 0xea, 0xfc, 0x8b, 0xaa, 0x3f, - 0xb9, 0xd6, 0x5a, 0x1f, 0x86, 0x30, 0xa0, 0x0a, 0xba, 0xa1, 0xa4, 0x02, 0xea, 0x39, 0xc7, 0x35, - 0xfe, 0x4f, 0x15, 0x4a, 0x30, 0xf0, 0x31, 0x71, 0xc4, 0x5f, 0xf5, 0x68, 0x53, 0x62, 0x5b, 0xd2, - 0xaf, 0xfc, 0x22, 0x4b, 0xd6, 0xaf, 0x1a, 0xb8, 0xdf, 0xa4, 0xde, 0xf3, 0x10, 0x41, 0x86, 0xbe, - 0x40, 0x98, 0x04, 0xfa, 0x13, 0x50, 0xa4, 0x08, 0x77, 0x51, 0x58, 0xd6, 0x1e, 0x6b, 0x1f, 0x2c, - 0x35, 0x4a, 0xc3, 0xc8, 0x5c, 0x3e, 0x83, 0xc1, 0x51, 0xdd, 0x92, 0xcf, 0x2d, 0x57, 0x01, 0x74, - 0x07, 0x2c, 0xd2, 0x41, 0xbb, 0xcb, 0x69, 0xe5, 0x5b, 0x02, 0xbc, 0x36, 0x8c, 0xcc, 0x15, 0x05, - 0x56, 0x15, 0xcb, 0x4d, 0x40, 0xf5, 0xea, 0xbf, 0xaf, 0xcd, 0xc2, 0x8f, 0x57, 0xe7, 0x3b, 0x4a, - 0xe1, 0xa7, 0xab, 0xf3, 0x9d, 0xcd, 0x4c, 0xb3, 0x1d, 0xe1, 0xa4, 0x2a, 0x99, 0x2f, 0xc1, 0x83, - 0xac, 0x39, 0x17, 0xd1, 0x3e, 0xc1, 0x14, 0xe9, 0x0d, 0xb0, 0x82, 0xd1, 0x49, 0x4b, 0x50, 0x5b, - 0xd2, 0x80, 0x74, 0x6b, 0x0c, 0x23, 0xf3, 0x81, 0x34, 0x90, 0x03, 0x58, 0xee, 0x32, 0x46, 0x27, - 0xfb, 0xfc, 0x81, 0xd0, 0xb2, 0xae, 0x34, 0xf0, 0x4e, 0x93, 0x7a, 0x4d, 0x1f, 0xb3, 0x79, 0x9a, - 0xfe, 0x12, 0x14, 0x61, 0x40, 0x06, 0x98, 0x89, 0x96, 0xef, 0xee, 0x6e, 0xda, 0x2a, 0x51, 0xbe, - 0xea, 0xf1, 0x80, 0xd8, 0xcf, 0x89, 0x8f, 0x1b, 0xef, 0xbe, 0x89, 0xcc, 0x42, 0xaa, 0x24, 0x69, - 0x96, 0xab, 0xf8, 0xfa, 0xe7, 0x60, 0x39, 0xf0, 0x31, 0xdb, 0x27, 0xcf, 0xba, 0xdd, 0x10, 0x51, - 0x5a, 0xbe, 0x9d, 0x6f, 0x81, 0x97, 0x5b, 0x8c, 0xb4, 0xa0, 0x04, 0x58, 0x6e, 0x96, 0x50, 0xdf, - 0x9e, 0x90, 0x67, 0x29, 0x93, 0x27, 0xc7, 0x5b, 0x25, 0xb0, 0xa2, 0x1a, 0x8d, 0x03, 0xb4, 0xfe, - 0x93, 0xcd, 0x37, 0x06, 0x21, 0xbe, 0x99, 0xe6, 0xf7, 0xc0, 0x4a, 0x7b, 0x10, 0xe2, 0xbd, 0x90, - 0x04, 0xd9, 0xf6, 0xb7, 0x86, 0x91, 0x59, 0x96, 0x1c, 0x0e, 0x68, 0xf5, 0x42, 0x12, 0xa4, 0x01, - 0xe4, 0x49, 0x33, 0x44, 0xc0, 0x19, 0x2a, 0x02, 0xde, 0x6e, 0x12, 0xc1, 0x1f, 0x6a, 0xf6, 0x0f, - 0x20, 0xf6, 0xd0, 0xb3, 0x6e, 0xe0, 0xcf, 0x95, 0xc4, 0xfb, 0xe0, 0xce, 0xe8, 0xe0, 0xaf, 0x0e, - 0x23, 0xf3, 0x9e, 0x44, 0xaa, 0x69, 0x93, 0x65, 0xbd, 0x06, 0x96, 0xf8, 0x20, 0x42, 0xae, 0xaf, - 0x3a, 0x5c, 0x1f, 0x46, 0xe6, 0x6a, 0x3a, 0xa3, 0xa2, 0x64, 0xb9, 0x8b, 0x18, 0x9d, 0x08, 0x17, - 0xb3, 0xec, 0x12, 0xe1, 0xb9, 0x2a, 0x99, 0x65, 0xb9, 0x4b, 0xd2, 0x36, 0x92, 0x0e, 0x7f, 0xd1, - 0xc0, 0x5a, 0x93, 0x7a, 0x2f, 0x10, 0x13, 0x13, 0xdf, 0x44, 0x0c, 0x76, 0x21, 0x83, 0xf3, 0xb4, - 0xe9, 0x82, 0xc5, 0x40, 0xd1, 0xd4, 0x92, 0x3f, 0x4a, 0x97, 0x1c, 0x1f, 0x26, 0x4b, 0x1e, 0x6b, - 0x37, 0x36, 0xd4, 0xb2, 0xab, 0x53, 0x20, 0x26, 0x5b, 0x6e, 0xa2, 0x63, 0x3d, 0x02, 0x0f, 0x27, - 0xb8, 0x4a, 0x5c, 0xff, 0x7d, 0x0b, 0xac, 0x36, 0xa9, 0xb7, 0x47, 0xc2, 0x0e, 0xda, 0x0f, 0x21, - 0xa6, 0x3d, 0x14, 0xde, 0xcc, 0x8c, 0xba, 0x60, 0x8d, 0x29, 0x03, 0xe3, 0x73, 0xfa, 0x78, 0x18, - 0x99, 0x5b, 0x92, 0x17, 0x83, 0x72, 0xb3, 0x3a, 0x89, 0xac, 0x7f, 0x05, 0x4a, 0xf1, 0xe3, 0x74, - 0xe3, 0x2f, 0x08, 0xc5, 0xca, 0x30, 0x32, 0x8d, 0x9c, 0xe2, 0xe8, 0xe6, 0x1f, 0x27, 0xd6, 0x9d, - 0x09, 0xa3, 0xf2, 0x30, 0x33, 0x2a, 0x3d, 0x1e, 0x63, 0x35, 0x66, 0x5a, 0x06, 0x28, 0xe7, 0xb3, - 0x4d, 0x82, 0xff, 0x4d, 0x13, 0x9b, 0xe4, 0xbb, 0x7e, 0x17, 0x32, 0xf4, 0x8d, 0xb8, 0x6d, 0xf4, - 0xa7, 0x60, 0x09, 0x0e, 0xd8, 0x01, 0x09, 0x7d, 0x76, 0xa6, 0xa2, 0x2f, 0xff, 0xf9, 0x7b, 0x75, - 0x5d, 0x45, 0xaa, 0x7c, 0xbc, 0x60, 0xa1, 0x8f, 0x3d, 0x37, 0x85, 0xea, 0x0d, 0x50, 0x94, 0xf7, - 0x95, 0x5a, 0x84, 0xf7, 0xec, 0xeb, 0xee, 0x53, 0x5b, 0xbe, 0xad, 0xb1, 0xc0, 0xd7, 0xc3, 0x55, - 0xcc, 0xfa, 0x7d, 0xde, 0x58, 0xaa, 0x69, 0x6d, 0x82, 0x8d, 0x9c, 0xbd, 0xd8, 0xfa, 0xee, 0xeb, - 0x22, 0xb8, 0xdd, 0xa4, 0x9e, 0xfe, 0x03, 0xb8, 0x3b, 0x7a, 0x97, 0x7d, 0x78, 0xfd, 0x5b, 0xb3, - 0x97, 0x8b, 0xf1, 0xf1, 0x3c, 0xe8, 0xe4, 0x2a, 0x7a, 0x09, 0x16, 0xc4, 0x15, 0xb2, 0x3d, 0x95, - 0xcd, 0x61, 0x46, 0x75, 0x26, 0xd8, 0xa8, 0xba, 0x38, 0xa3, 0xa7, 0xab, 0x73, 0xd8, 0x0c, 0xea, - 0xa3, 0x47, 0xa0, 0x88, 0x6b, 0xe4, 0xf8, 0x9b, 0x21, 0xae, 0x14, 0x3d, 0x4b, 0x5c, 0xe3, 0x67, - 0x92, 0xfe, 0x4a, 0x03, 0xab, 0x63, 0x07, 0x52, 0x6d, 0xaa, 0x54, 0x9e, 0x62, 0x7c, 0x36, 0x37, - 0x25, 0xb1, 0x70, 0x02, 0x96, 0xb3, 0x87, 0x8b, 0x3d, 0x55, 0x2b, 0x83, 0x37, 0x9e, 0xce, 0x87, - 0x4f, 0x5e, 0xcc, 0xc0, 0xbd, 0xcc, 0xe6, 0x9a, 0xbe, 0x5a, 0xa3, 0x70, 0xe3, 0x93, 0xb9, 0xe0, - 0xf1, 0x5b, 0x8d, 0x3b, 0xaf, 0xae, 0xce, 0x77, 0xb4, 0xc6, 0xb7, 0x6f, 0x2e, 0x2a, 0xda, 0xdb, - 0x8b, 0x8a, 0xf6, 0xcf, 0x45, 0x45, 0xfb, 0xf9, 0xb2, 0x52, 0x78, 0x7b, 0x59, 0x29, 0xfc, 0x75, - 0x59, 0x29, 0x7c, 0xff, 0xa9, 0xe7, 0xb3, 0x83, 0x41, 0xdb, 0xee, 0x90, 0xc0, 0xf9, 0x3a, 0xc0, - 0xfe, 0xde, 0x91, 0x7f, 0xea, 0x90, 0x00, 0xfb, 0xbd, 0x23, 0xff, 0xf4, 0x60, 0xd0, 0x76, 0x8e, - 0x77, 0x9d, 0xd3, 0xec, 0x6f, 0x52, 0x76, 0xd6, 0x47, 0xb4, 0x5d, 0x14, 0x3f, 0x22, 0x3f, 0xfa, - 0x3f, 0x00, 0x00, 0xff, 0xff, 0xe2, 0xd6, 0x34, 0x9a, 0x53, 0x0b, 0x00, 0x00, + // 970 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0xbf, 0x6f, 0xdb, 0x46, + 0x14, 0x16, 0x13, 0x47, 0xb5, 0x2f, 0x71, 0x6c, 0xd1, 0x6e, 0x2c, 0x33, 0x8e, 0x18, 0x10, 0x75, + 0xd1, 0x18, 0x15, 0x09, 0x39, 0x6d, 0x8a, 0x6a, 0x6a, 0x94, 0xc2, 0xe8, 0x50, 0xa1, 0x2d, 0xe3, + 0x2e, 0x45, 0x00, 0xe1, 0x24, 0x9d, 0x68, 0xc2, 0xe6, 0x9d, 0xca, 0x3b, 0xf9, 0xc7, 0x16, 0x74, + 0xec, 0xd4, 0xbd, 0x28, 0x90, 0x3f, 0xc1, 0x43, 0xff, 0x85, 0x02, 0xe9, 0x16, 0x74, 0x2a, 0x3a, + 0x10, 0x85, 0x3d, 0xb8, 0x4b, 0x17, 0xfd, 0x05, 0xc1, 0xfd, 0x20, 0x29, 0x52, 0x82, 0x25, 0x4d, + 0x59, 0x6c, 0x89, 0xef, 0xfb, 0x1e, 0xdf, 0xf7, 0xbd, 0x77, 0xef, 0x04, 0xb6, 0x09, 0x0d, 0x08, + 0xf5, 0xa9, 0xc3, 0xc8, 0x21, 0xc2, 0x3d, 0xd8, 0x61, 0x24, 0x3c, 0x73, 0x8e, 0x6b, 0x6d, 0xc4, + 0x60, 0xcd, 0x61, 0xa7, 0x76, 0x3f, 0x24, 0x8c, 0xe8, 0x5b, 0x0a, 0x66, 0x8f, 0xc2, 0x6c, 0x05, + 0x33, 0xd6, 0x3d, 0xe2, 0x11, 0x01, 0x74, 0xf8, 0x27, 0xc9, 0x31, 0x2a, 0x1d, 0x41, 0x72, 0xda, + 0x90, 0xa2, 0x24, 0x63, 0x87, 0xf8, 0x78, 0x2c, 0x8e, 0x0f, 0x93, 0x38, 0xff, 0xa2, 0xe2, 0x8f, + 0xae, 0x2d, 0xad, 0x0f, 0x43, 0x18, 0x50, 0x05, 0xdd, 0x50, 0xa9, 0x02, 0xea, 0x39, 0xc7, 0x35, + 0xfe, 0x4f, 0x05, 0x4a, 0x30, 0xf0, 0x31, 0x71, 0xc4, 0x5f, 0xf5, 0x68, 0x53, 0x62, 0x5b, 0xb2, + 0x5e, 0xf9, 0x45, 0x86, 0xac, 0x5f, 0x35, 0x70, 0xb7, 0x49, 0xbd, 0x67, 0x21, 0x82, 0x0c, 0x7d, + 0x89, 0x30, 0x09, 0xf4, 0x47, 0xa0, 0x48, 0x11, 0xee, 0xa2, 0xb0, 0xac, 0x3d, 0xd4, 0x3e, 0x5a, + 0x6a, 0x94, 0x86, 0x91, 0xb9, 0x7c, 0x06, 0x83, 0xa3, 0xba, 0x25, 0x9f, 0x5b, 0xae, 0x02, 0xe8, + 0x0e, 0x58, 0xa4, 0x83, 0x76, 0x97, 0xd3, 0xca, 0x37, 0x04, 0x78, 0x6d, 0x18, 0x99, 0x2b, 0x0a, + 0xac, 0x22, 0x96, 0x9b, 0x80, 0xea, 0xd5, 0xff, 0x5e, 0x99, 0x85, 0x9f, 0xae, 0xce, 0x77, 0x54, + 0x86, 0x9f, 0xaf, 0xce, 0x77, 0x36, 0x33, 0x62, 0x3b, 0xa2, 0x92, 0xaa, 0x64, 0xbe, 0x00, 0xf7, + 0xb2, 0xc5, 0xb9, 0x88, 0xf6, 0x09, 0xa6, 0x48, 0x6f, 0x80, 0x15, 0x8c, 0x4e, 0x5a, 0x82, 0xda, + 0x92, 0x05, 0xc8, 0x6a, 0x8d, 0x61, 0x64, 0xde, 0x93, 0x05, 0xe4, 0x00, 0x96, 0xbb, 0x8c, 0xd1, + 0xc9, 0x3e, 0x7f, 0x20, 0x72, 0x59, 0x57, 0x1a, 0x78, 0xaf, 0x49, 0xbd, 0xa6, 0x8f, 0xd9, 0x3c, + 0xa2, 0xbf, 0x02, 0x45, 0x18, 0x90, 0x01, 0x66, 0x42, 0xf2, 0xed, 0xdd, 0x4d, 0x5b, 0x39, 0xca, + 0xbb, 0x1e, 0x0f, 0x88, 0xfd, 0x8c, 0xf8, 0xb8, 0xf1, 0xfe, 0xeb, 0xc8, 0x2c, 0xa4, 0x99, 0x24, + 0xcd, 0x72, 0x15, 0x5f, 0xff, 0x02, 0x2c, 0x07, 0x3e, 0x66, 0xfb, 0xe4, 0x69, 0xb7, 0x1b, 0x22, + 0x4a, 0xcb, 0x37, 0xf3, 0x12, 0x78, 0xb8, 0xc5, 0x48, 0x0b, 0x4a, 0x80, 0xe5, 0x66, 0x09, 0xf5, + 0xed, 0x09, 0x7e, 0x96, 0x32, 0x7e, 0x72, 0xbc, 0x55, 0x02, 0x2b, 0x4a, 0x68, 0x6c, 0xa0, 0xf5, + 0xbf, 0x14, 0xdf, 0x18, 0x84, 0xf8, 0xdd, 0x88, 0xdf, 0x03, 0x2b, 0xed, 0x41, 0x88, 0xf7, 0x42, + 0x12, 0x64, 0xe5, 0x6f, 0x0d, 0x23, 0xb3, 0x2c, 0x39, 0x1c, 0xd0, 0xea, 0x85, 0x24, 0x48, 0x0d, + 0xc8, 0x93, 0x66, 0xb0, 0x80, 0x33, 0x94, 0x05, 0x5c, 0x6e, 0x62, 0xc1, 0x1f, 0x6a, 0xf6, 0x0f, + 0x20, 0xf6, 0xd0, 0xd3, 0x6e, 0xe0, 0xcf, 0xe5, 0xc4, 0x87, 0xe0, 0xd6, 0xe8, 0xe0, 0xaf, 0x0e, + 0x23, 0xf3, 0x8e, 0x44, 0xaa, 0x69, 0x93, 0x61, 0xbd, 0x06, 0x96, 0xf8, 0x20, 0x42, 0x9e, 0x5f, + 0x29, 0x5c, 0x1f, 0x46, 0xe6, 0x6a, 0x3a, 0xa3, 0x22, 0x64, 0xb9, 0x8b, 0x18, 0x9d, 0x88, 0x2a, + 0x66, 0x39, 0x25, 0xa2, 0xe6, 0xaa, 0x64, 0x96, 0xe5, 0x29, 0x49, 0x65, 0x24, 0x0a, 0xff, 0xd4, + 0xc0, 0x5a, 0x93, 0x7a, 0xcf, 0x11, 0x13, 0x13, 0xdf, 0x44, 0x0c, 0x76, 0x21, 0x83, 0xf3, 0xc8, + 0x74, 0xc1, 0x62, 0xa0, 0x68, 0xaa, 0xe5, 0x0f, 0xd2, 0x96, 0xe3, 0xc3, 0xa4, 0xe5, 0x71, 0xee, + 0xc6, 0x86, 0x6a, 0xbb, 0xda, 0x02, 0x31, 0xd9, 0x72, 0x93, 0x3c, 0xf5, 0xc7, 0x13, 0xf4, 0x99, + 0x19, 0x7d, 0x14, 0x31, 0xb9, 0x02, 0xaa, 0x09, 0xff, 0x01, 0xb8, 0x3f, 0x41, 0x4a, 0x22, 0xf5, + 0x9f, 0x1b, 0x60, 0xb5, 0x49, 0xbd, 0x3d, 0x12, 0x76, 0xd0, 0x7e, 0x08, 0x31, 0xed, 0xa1, 0xf0, + 0xdd, 0x0c, 0xb6, 0x0b, 0xd6, 0x98, 0x2a, 0x60, 0x7c, 0xb8, 0x1f, 0x0e, 0x23, 0x73, 0x4b, 0xf2, + 0x62, 0x50, 0x6e, 0xc0, 0x27, 0x91, 0xf5, 0xaf, 0x41, 0x29, 0x7e, 0x9c, 0x6e, 0x8b, 0x05, 0x91, + 0xb1, 0x32, 0x8c, 0x4c, 0x23, 0x97, 0x71, 0x74, 0x63, 0x8c, 0x13, 0xeb, 0xce, 0x04, 0xff, 0xef, + 0x67, 0xfc, 0xef, 0x71, 0x1b, 0xab, 0x31, 0xd3, 0x32, 0x40, 0x39, 0xef, 0x6d, 0x62, 0xfc, 0x6f, + 0x9a, 0x38, 0x59, 0xdf, 0xf7, 0xbb, 0x90, 0xa1, 0x6f, 0xc5, 0x15, 0xa5, 0x3f, 0x01, 0x4b, 0x70, + 0xc0, 0x0e, 0x48, 0xe8, 0xb3, 0x33, 0x65, 0x7d, 0xf9, 0xaf, 0xdf, 0xab, 0xeb, 0xca, 0x52, 0x55, + 0xc7, 0x73, 0x16, 0xfa, 0xd8, 0x73, 0x53, 0xa8, 0xde, 0x00, 0x45, 0x79, 0xc9, 0xa9, 0x26, 0x7c, + 0x60, 0x5f, 0x77, 0x09, 0xdb, 0xf2, 0x6d, 0x8d, 0x05, 0xde, 0x0f, 0x57, 0x31, 0xeb, 0x77, 0xb9, + 0xb0, 0x34, 0xa7, 0xb5, 0x09, 0x36, 0x72, 0xe5, 0xc5, 0xa5, 0xef, 0xbe, 0x2a, 0x82, 0x9b, 0x4d, + 0xea, 0xe9, 0x3f, 0x82, 0xdb, 0xa3, 0x17, 0xe0, 0xc7, 0xd7, 0xbf, 0x35, 0x7b, 0x23, 0x19, 0x9f, + 0xcc, 0x83, 0x4e, 0xee, 0xaf, 0x17, 0x60, 0x41, 0xdc, 0x3b, 0xdb, 0x53, 0xd9, 0x1c, 0x66, 0x54, + 0x67, 0x82, 0x8d, 0x66, 0x17, 0x8b, 0x7d, 0x7a, 0x76, 0x0e, 0x9b, 0x21, 0xfb, 0xe8, 0xde, 0x14, + 0x76, 0x8d, 0xec, 0xcc, 0x19, 0xec, 0x4a, 0xd1, 0xb3, 0xd8, 0x35, 0xbe, 0xc8, 0xf4, 0x97, 0x1a, + 0x58, 0x1d, 0xdb, 0x62, 0xb5, 0xa9, 0xa9, 0xf2, 0x14, 0xe3, 0xf3, 0xb9, 0x29, 0x49, 0x09, 0x27, + 0x60, 0x39, 0xbb, 0x5c, 0xec, 0xa9, 0xb9, 0x32, 0x78, 0xe3, 0xc9, 0x7c, 0xf8, 0xe4, 0xc5, 0x0c, + 0xdc, 0xc9, 0x1c, 0xae, 0xe9, 0xdd, 0x1a, 0x85, 0x1b, 0x9f, 0xce, 0x05, 0x8f, 0xdf, 0x6a, 0xdc, + 0x7a, 0x79, 0x75, 0xbe, 0xa3, 0x35, 0xbe, 0x7b, 0x7d, 0x51, 0xd1, 0xde, 0x5c, 0x54, 0xb4, 0x7f, + 0x2f, 0x2a, 0xda, 0x2f, 0x97, 0x95, 0xc2, 0x9b, 0xcb, 0x4a, 0xe1, 0xef, 0xcb, 0x4a, 0xe1, 0x87, + 0xcf, 0x3c, 0x9f, 0x1d, 0x0c, 0xda, 0x76, 0x87, 0x04, 0xce, 0x37, 0x01, 0xf6, 0xf7, 0x8e, 0xfc, + 0x53, 0x87, 0x04, 0xd8, 0xef, 0x1d, 0xf9, 0xa7, 0x07, 0x83, 0xb6, 0x73, 0xbc, 0xeb, 0x9c, 0x66, + 0x7f, 0xc8, 0xb2, 0xb3, 0x3e, 0xa2, 0xed, 0xa2, 0xf8, 0xe5, 0xf9, 0xf8, 0x6d, 0x00, 0x00, 0x00, + 0xff, 0xff, 0xac, 0x48, 0xb1, 0x8d, 0x88, 0x0b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.