From 8fdfad99afe13104763bd5813d02daa39b816a83 Mon Sep 17 00:00:00 2001 From: insumity Date: Tue, 27 Aug 2024 21:11:48 +0200 Subject: [PATCH] fix: allow the owner of a chain to remove the chain (#2178) fixed access in RemoveConsumer --- .../ccv/provider/v1/tx.proto | 4 +- x/ccv/provider/keeper/msg_server.go | 16 +- x/ccv/provider/types/msg.go | 4 +- x/ccv/provider/types/tx.pb.go | 281 +++++++++--------- 4 files changed, 154 insertions(+), 151 deletions(-) diff --git a/proto/interchain_security/ccv/provider/v1/tx.proto b/proto/interchain_security/ccv/provider/v1/tx.proto index 80b4885603..19541025e5 100644 --- a/proto/interchain_security/ccv/provider/v1/tx.proto +++ b/proto/interchain_security/ccv/provider/v1/tx.proto @@ -224,7 +224,7 @@ message MsgConsumerRemovalResponse {} // MsgRemoveConsumer defines the message used to remove (and stop) a consumer chain. // If it passes, all the consumer chain's state is eventually removed from the provider chain. message MsgRemoveConsumer { - option (cosmos.msg.v1.signer) = "authority"; + option (cosmos.msg.v1.signer) = "signer"; // the consumer id of the consumer chain to be stopped string consumer_id = 1; @@ -233,7 +233,7 @@ message MsgRemoveConsumer { google.protobuf.Timestamp stop_time = 2 [ (gogoproto.stdtime) = true, (gogoproto.nullable) = false ]; // signer address - string authority = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + string signer = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; } // MsgRemoveConsumerResponse defines response type for MsgRemoveConsumer messages diff --git a/x/ccv/provider/keeper/msg_server.go b/x/ccv/provider/keeper/msg_server.go index fb81b0ef12..aa6b8f9aab 100644 --- a/x/ccv/provider/keeper/msg_server.go +++ b/x/ccv/provider/keeper/msg_server.go @@ -87,16 +87,18 @@ func (k msgServer) AssignConsumerKey(goCtx context.Context, msg *types.MsgAssign } // RemoveConsumer defines an RPC handler method for MsgRemoveConsumer -func (k msgServer) RemoveConsumer( - goCtx context.Context, - msg *types.MsgRemoveConsumer) (*types.MsgRemoveConsumerResponse, error) { - if k.GetAuthority() != msg.Authority { - return nil, errorsmod.Wrapf(types.ErrUnauthorized, "expected %s, got %s", k.GetAuthority(), msg.Authority) - } - +func (k msgServer) RemoveConsumer(goCtx context.Context, msg *types.MsgRemoveConsumer) (*types.MsgRemoveConsumerResponse, error) { ctx := sdk.UnwrapSDKContext(goCtx) consumerId := msg.ConsumerId + ownerAddress, err := k.Keeper.GetConsumerOwnerAddress(ctx, consumerId) + if err != nil { + return &types.MsgRemoveConsumerResponse{}, errorsmod.Wrapf(types.ErrNoOwnerAddress, "cannot retrieve owner address %s", ownerAddress) + } + + if msg.Signer != ownerAddress { + return &types.MsgRemoveConsumerResponse{}, errorsmod.Wrapf(types.ErrUnauthorized, "expected owner address %s, got %s", ownerAddress, msg.Signer) + } phase, found := k.Keeper.GetConsumerPhase(ctx, consumerId) if !found || phase != Launched { diff --git a/x/ccv/provider/types/msg.go b/x/ccv/provider/types/msg.go index 21b9173eca..44466a1a75 100644 --- a/x/ccv/provider/types/msg.go +++ b/x/ccv/provider/types/msg.go @@ -368,7 +368,7 @@ func (msg MsgUpdateConsumer) GetSigners() []sdk.AccAddress { // NewMsgRemoveConsumer creates a new MsgRemoveConsumer instance func NewMsgRemoveConsumer(signer string, consumerId string, stopTime time.Time) (*MsgRemoveConsumer, error) { return &MsgRemoveConsumer{ - Authority: signer, + Signer: signer, ConsumerId: consumerId, StopTime: stopTime, }, nil @@ -399,7 +399,7 @@ func (msg MsgRemoveConsumer) GetSignBytes() []byte { // GetSigners implements the sdk.Msg interface. It returns the address(es) that // must sign over msg.GetSignBytes(). func (msg MsgRemoveConsumer) GetSigners() []sdk.AccAddress { - valAddr, err := sdk.ValAddressFromBech32(msg.Authority) + valAddr, err := sdk.ValAddressFromBech32(msg.Signer) if err != nil { // same behavior as in cosmos-sdk panic(err) diff --git a/x/ccv/provider/types/tx.pb.go b/x/ccv/provider/types/tx.pb.go index b5c78c5e32..447ce8d15c 100644 --- a/x/ccv/provider/types/tx.pb.go +++ b/x/ccv/provider/types/tx.pb.go @@ -775,7 +775,7 @@ type MsgRemoveConsumer struct { // stop their consumer chain validator node StopTime time.Time `protobuf:"bytes,2,opt,name=stop_time,json=stopTime,proto3,stdtime" json:"stop_time"` // signer address - Authority string `protobuf:"bytes,3,opt,name=authority,proto3" json:"authority,omitempty"` + Signer string `protobuf:"bytes,3,opt,name=signer,proto3" json:"signer,omitempty"` } func (m *MsgRemoveConsumer) Reset() { *m = MsgRemoveConsumer{} } @@ -825,9 +825,9 @@ func (m *MsgRemoveConsumer) GetStopTime() time.Time { return time.Time{} } -func (m *MsgRemoveConsumer) GetAuthority() string { +func (m *MsgRemoveConsumer) GetSigner() string { if m != nil { - return m.Authority + return m.Signer } return "" } @@ -1692,137 +1692,138 @@ func init() { } var fileDescriptor_43221a4391e9fbf4 = []byte{ - // 2079 bytes of a gzipped FileDescriptorProto + // 2086 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0x4d, 0x70, 0x1c, 0x47, - 0x15, 0xd6, 0xec, 0xae, 0x94, 0xdd, 0x5e, 0x59, 0x3f, 0x2d, 0x39, 0x1a, 0xad, 0x6d, 0xad, 0x2c, - 0x42, 0xa2, 0x32, 0xd1, 0x6c, 0x2c, 0xb0, 0x03, 0xc2, 0xfc, 0xe8, 0xc7, 0x60, 0x05, 0x64, 0x29, - 0x23, 0xe3, 0x54, 0x41, 0x15, 0x53, 0xbd, 0x33, 0xed, 0xd9, 0x2e, 0xef, 0x4c, 0x4f, 0x4d, 0xf7, - 0xae, 0x22, 0x4e, 0x54, 0x4e, 0x3e, 0x9a, 0x0a, 0x07, 0x6e, 0xe4, 0x00, 0x07, 0xaa, 0x80, 0xca, - 0x21, 0x27, 0x2e, 0x54, 0x71, 0x4a, 0x15, 0x97, 0x90, 0x13, 0x95, 0x83, 0xa1, 0xec, 0x43, 0xb8, - 0x70, 0xe1, 0xc6, 0x8d, 0xea, 0x9e, 0x9e, 0xd9, 0x99, 0xdd, 0x95, 0x3c, 0x5a, 0x41, 0xa0, 0x8a, - 0x8b, 0x4a, 0xd3, 0xef, 0x7b, 0xdf, 0xfb, 0xe9, 0xd7, 0xef, 0x4d, 0xcf, 0x82, 0x57, 0x89, 0xcf, - 0x71, 0x68, 0xb7, 0x10, 0xf1, 0x2d, 0x86, 0xed, 0x4e, 0x48, 0xf8, 0x71, 0xc3, 0xb6, 0xbb, 0x8d, - 0x20, 0xa4, 0x5d, 0xe2, 0xe0, 0xb0, 0xd1, 0xbd, 0xde, 0xe0, 0x6f, 0x1b, 0x41, 0x48, 0x39, 0x85, - 0x9f, 0x1b, 0x82, 0x36, 0x6c, 0xbb, 0x6b, 0xc4, 0x68, 0xa3, 0x7b, 0xbd, 0x36, 0x8b, 0x3c, 0xe2, - 0xd3, 0x86, 0xfc, 0x1b, 0xe9, 0xd5, 0x2e, 0xbb, 0x94, 0xba, 0x6d, 0xdc, 0x40, 0x01, 0x69, 0x20, - 0xdf, 0xa7, 0x1c, 0x71, 0x42, 0x7d, 0xa6, 0xa4, 0x75, 0x25, 0x95, 0x4f, 0xcd, 0xce, 0x83, 0x06, - 0x27, 0x1e, 0x66, 0x1c, 0x79, 0x81, 0x02, 0x2c, 0xf5, 0x03, 0x9c, 0x4e, 0x28, 0x19, 0x94, 0x7c, - 0xb1, 0x5f, 0x8e, 0xfc, 0x63, 0x25, 0x9a, 0x77, 0xa9, 0x4b, 0xe5, 0xbf, 0x0d, 0xf1, 0x5f, 0xac, - 0x60, 0x53, 0xe6, 0x51, 0x66, 0x45, 0x82, 0xe8, 0x41, 0x89, 0x16, 0xa2, 0xa7, 0x86, 0xc7, 0x5c, - 0x11, 0xba, 0xc7, 0xdc, 0xd8, 0x4b, 0xd2, 0xb4, 0x1b, 0x36, 0x0d, 0x71, 0xc3, 0x6e, 0x13, 0xec, - 0x73, 0x21, 0x8d, 0xfe, 0x53, 0x80, 0xf5, 0x3c, 0xa9, 0x4c, 0x12, 0x15, 0xe9, 0x34, 0x04, 0x69, - 0x9b, 0xb8, 0x2d, 0x1e, 0x51, 0xb1, 0x06, 0xc7, 0xbe, 0x83, 0x43, 0x8f, 0x44, 0x06, 0x7a, 0x4f, - 0xb1, 0x17, 0x29, 0x39, 0x3f, 0x0e, 0x30, 0x6b, 0x60, 0xc1, 0xe7, 0xdb, 0x38, 0x02, 0xac, 0xfc, - 0x53, 0x03, 0xf3, 0x7b, 0xcc, 0xdd, 0x64, 0x8c, 0xb8, 0xfe, 0x36, 0xf5, 0x59, 0xc7, 0xc3, 0xe1, - 0x77, 0xf0, 0x31, 0xbc, 0x02, 0xca, 0x91, 0x6f, 0xc4, 0xd1, 0xb5, 0x65, 0x6d, 0xb5, 0xb2, 0x55, - 0xd0, 0x35, 0xf3, 0x05, 0xb9, 0xb6, 0xeb, 0xc0, 0xd7, 0xc1, 0x85, 0xd8, 0x37, 0x0b, 0x39, 0x4e, - 0xa8, 0x17, 0x24, 0x06, 0xfe, 0xe3, 0x49, 0x7d, 0xea, 0x18, 0x79, 0xed, 0x8d, 0x15, 0xb1, 0x8a, - 0x19, 0x5b, 0x31, 0x27, 0x63, 0xe0, 0xa6, 0xe3, 0x84, 0xf0, 0x2a, 0x98, 0xb4, 0x95, 0x19, 0xeb, - 0x21, 0x3e, 0xd6, 0x8b, 0x42, 0xcf, 0xac, 0xda, 0x29, 0xd3, 0xaf, 0x81, 0x09, 0xe1, 0x0d, 0x0e, - 0xf5, 0x92, 0x24, 0xd5, 0x3f, 0xfe, 0x60, 0x6d, 0x5e, 0x65, 0x7d, 0x33, 0x62, 0x3d, 0xe4, 0x21, - 0xf1, 0x5d, 0x53, 0xe1, 0x60, 0x1d, 0x24, 0x04, 0xc2, 0xdf, 0x71, 0xc9, 0x09, 0xe2, 0xa5, 0x5d, - 0x67, 0x63, 0xee, 0xd1, 0x7b, 0xf5, 0xb1, 0xbf, 0xbd, 0x57, 0x1f, 0x7b, 0xe7, 0xd3, 0xf7, 0xaf, - 0x29, 0xad, 0x95, 0x25, 0x70, 0x79, 0x58, 0xe8, 0x26, 0x66, 0x01, 0xf5, 0x19, 0x5e, 0x79, 0xaa, - 0x81, 0x2b, 0x7b, 0xcc, 0x3d, 0xec, 0x34, 0x3d, 0xc2, 0x63, 0xc0, 0x1e, 0x61, 0x4d, 0xdc, 0x42, - 0x5d, 0x42, 0x3b, 0x21, 0xbc, 0x09, 0x2a, 0x4c, 0x4a, 0x39, 0x0e, 0x55, 0x96, 0x4e, 0x76, 0xb6, - 0x07, 0x85, 0x07, 0x60, 0xd2, 0x4b, 0xf1, 0xc8, 0xe4, 0x55, 0xd7, 0x5f, 0x35, 0x48, 0xd3, 0x36, - 0xd2, 0xdb, 0x6b, 0xa4, 0x36, 0xb4, 0x7b, 0xdd, 0x48, 0xdb, 0x36, 0x33, 0x0c, 0xfd, 0x19, 0x28, - 0x0e, 0x64, 0xe0, 0xc5, 0x74, 0x06, 0x7a, 0xae, 0xac, 0xbc, 0x02, 0x3e, 0x7f, 0x6a, 0x8c, 0x49, - 0x36, 0xfe, 0x54, 0x18, 0x92, 0x8d, 0x1d, 0xda, 0x69, 0xb6, 0xf1, 0x7d, 0xca, 0x89, 0xef, 0x8e, - 0x9c, 0x0d, 0x0b, 0x2c, 0x38, 0x9d, 0xa0, 0x4d, 0x6c, 0xc4, 0xb1, 0xd5, 0xa5, 0x1c, 0x5b, 0x71, - 0x91, 0xaa, 0xc4, 0xbc, 0x92, 0xce, 0x83, 0x2c, 0x63, 0x63, 0x27, 0x56, 0xb8, 0x4f, 0x39, 0xbe, - 0xad, 0xe0, 0xe6, 0x45, 0x67, 0xd8, 0x32, 0xfc, 0x21, 0x58, 0x20, 0xfe, 0x83, 0x10, 0xd9, 0xa2, - 0x09, 0x58, 0xcd, 0x36, 0xb5, 0x1f, 0x5a, 0x2d, 0x8c, 0x1c, 0x1c, 0xca, 0x44, 0x55, 0xd7, 0x5f, - 0x7e, 0x5e, 0xe6, 0xef, 0x48, 0xb4, 0x79, 0xb1, 0x47, 0xb3, 0x25, 0x58, 0xa2, 0xe5, 0xfe, 0xe4, - 0x97, 0xce, 0x95, 0xfc, 0x74, 0x4a, 0x93, 0xe4, 0xff, 0x42, 0x03, 0xd3, 0x7b, 0xcc, 0xfd, 0x5e, - 0xe0, 0x20, 0x8e, 0x0f, 0x50, 0x88, 0x3c, 0x26, 0xd2, 0x8d, 0x3a, 0xbc, 0x45, 0x45, 0xe3, 0x78, - 0x7e, 0xba, 0x13, 0x28, 0xdc, 0x05, 0x13, 0x81, 0x64, 0x50, 0xd9, 0xfd, 0x82, 0x91, 0xa3, 0x4d, - 0x1b, 0x91, 0xd1, 0xad, 0xd2, 0x87, 0x4f, 0xea, 0x63, 0xa6, 0x22, 0xd8, 0x98, 0x92, 0xf1, 0x24, - 0xd4, 0x2b, 0x8b, 0x60, 0xa1, 0xcf, 0xcb, 0x24, 0x82, 0x4f, 0xca, 0x60, 0x6e, 0x8f, 0xb9, 0x71, - 0x94, 0x9b, 0x8e, 0x43, 0x44, 0x1a, 0xe1, 0x62, 0x7f, 0x9f, 0xe9, 0xf5, 0x98, 0x6f, 0x83, 0x29, - 0xe2, 0x13, 0x4e, 0x50, 0xdb, 0x6a, 0x61, 0xb1, 0x37, 0xca, 0xe1, 0x9a, 0xdc, 0x2d, 0xd1, 0x5b, - 0x0d, 0xd5, 0x51, 0xe5, 0x0e, 0x09, 0x84, 0xf2, 0xef, 0x82, 0xd2, 0x8b, 0x16, 0x45, 0xcf, 0x71, - 0xb1, 0x8f, 0x19, 0x61, 0x56, 0x0b, 0xb1, 0x96, 0xdc, 0xf4, 0x49, 0xb3, 0xaa, 0xd6, 0xee, 0x20, - 0xd6, 0x12, 0x5b, 0xd8, 0x24, 0x3e, 0x0a, 0x8f, 0x23, 0x44, 0x49, 0x22, 0x40, 0xb4, 0x24, 0x01, - 0xdb, 0x00, 0xb0, 0x00, 0x1d, 0xf9, 0x96, 0x98, 0x36, 0xb2, 0xc3, 0x08, 0x47, 0xa2, 0x49, 0x62, - 0xc4, 0x93, 0xc4, 0xb8, 0x17, 0x8f, 0xa2, 0xad, 0xb2, 0x70, 0xe4, 0xf1, 0x5f, 0xea, 0x9a, 0x59, - 0x91, 0x7a, 0x42, 0x02, 0xef, 0x82, 0x99, 0x8e, 0xdf, 0xa4, 0xbe, 0x43, 0x7c, 0xd7, 0x0a, 0x70, - 0x48, 0xa8, 0xa3, 0x4f, 0x48, 0xaa, 0xc5, 0x01, 0xaa, 0x1d, 0x35, 0xb4, 0x22, 0xa6, 0x9f, 0x09, - 0xa6, 0xe9, 0x44, 0xf9, 0x40, 0xea, 0xc2, 0x37, 0x01, 0xb4, 0xed, 0xae, 0x74, 0x89, 0x76, 0x78, - 0xcc, 0xf8, 0x42, 0x7e, 0xc6, 0x19, 0xdb, 0xee, 0xde, 0x8b, 0xb4, 0x15, 0xe5, 0x0f, 0xc0, 0x02, - 0x0f, 0x91, 0xcf, 0x1e, 0xe0, 0xb0, 0x9f, 0xb7, 0x9c, 0x9f, 0xf7, 0x62, 0xcc, 0x91, 0x25, 0xbf, - 0x03, 0x96, 0x93, 0x83, 0x12, 0x62, 0x87, 0x30, 0x1e, 0x92, 0x66, 0x47, 0x9e, 0xca, 0xf8, 0x5c, - 0xe9, 0x15, 0x59, 0x04, 0x4b, 0x31, 0xce, 0xcc, 0xc0, 0xbe, 0xa5, 0x50, 0x70, 0x1f, 0xbc, 0x24, - 0xcf, 0x31, 0x13, 0xce, 0x59, 0x19, 0x26, 0x69, 0xda, 0x23, 0x8c, 0x09, 0x36, 0xb0, 0xac, 0xad, - 0x16, 0xcd, 0xab, 0x11, 0xf6, 0x00, 0x87, 0x3b, 0x29, 0xe4, 0xbd, 0x14, 0x10, 0xae, 0x01, 0xd8, - 0x22, 0x8c, 0xd3, 0x90, 0xd8, 0xa8, 0x6d, 0x61, 0x9f, 0x87, 0x04, 0x33, 0xbd, 0x2a, 0xd5, 0x67, - 0x7b, 0x92, 0xdb, 0x91, 0x00, 0xbe, 0x01, 0xae, 0x9e, 0x68, 0xd4, 0xb2, 0x5b, 0xc8, 0xf7, 0x71, - 0x5b, 0x9f, 0x94, 0xa1, 0xd4, 0x9d, 0x13, 0x6c, 0x6e, 0x47, 0x30, 0x38, 0x07, 0xc6, 0x39, 0x0d, - 0xac, 0xbb, 0xfa, 0x85, 0x65, 0x6d, 0xf5, 0x82, 0x59, 0xe2, 0x34, 0xb8, 0x0b, 0x5f, 0x03, 0xf3, - 0x5d, 0xd4, 0x26, 0x0e, 0xe2, 0x34, 0x64, 0x56, 0x40, 0x8f, 0x70, 0x68, 0xd9, 0x28, 0xd0, 0xa7, - 0x24, 0x06, 0xf6, 0x64, 0x07, 0x42, 0xb4, 0x8d, 0x02, 0x78, 0x0d, 0xcc, 0x26, 0xab, 0x16, 0xc3, - 0x5c, 0xc2, 0xa7, 0x25, 0x7c, 0x3a, 0x11, 0x1c, 0x62, 0x2e, 0xb0, 0x97, 0x41, 0x05, 0xb5, 0xdb, - 0xf4, 0xa8, 0x4d, 0x18, 0xd7, 0x67, 0x96, 0x8b, 0xab, 0x15, 0xb3, 0xb7, 0x00, 0x6b, 0xa0, 0xec, - 0x60, 0xff, 0x58, 0x0a, 0x67, 0xa5, 0x30, 0x79, 0xce, 0x76, 0x1d, 0x98, 0xbf, 0xeb, 0x5c, 0x02, - 0x15, 0x4f, 0xf4, 0x17, 0x8e, 0x1e, 0x62, 0x7d, 0x6e, 0x59, 0x5b, 0x2d, 0x99, 0x65, 0x8f, 0xf8, - 0x87, 0xe2, 0x19, 0x1a, 0x60, 0x4e, 0x5a, 0xb7, 0x88, 0x2f, 0xf6, 0xb7, 0x8b, 0xad, 0x2e, 0x6a, - 0x33, 0x7d, 0x7e, 0x59, 0x5b, 0x2d, 0x9b, 0xb3, 0x52, 0xb4, 0xab, 0x24, 0xf7, 0x51, 0x7b, 0xb0, - 0xef, 0x5c, 0x01, 0x97, 0x86, 0xf4, 0x96, 0xa4, 0xf7, 0xfc, 0x4e, 0x03, 0x30, 0x25, 0x37, 0xb1, - 0x47, 0xbb, 0xa8, 0x7d, 0x5a, 0xeb, 0xd9, 0x04, 0x15, 0x26, 0xf6, 0x44, 0x1e, 0xf6, 0xc2, 0x19, - 0x0e, 0x7b, 0x59, 0xa8, 0xc9, 0xb3, 0x9e, 0x49, 0x54, 0x31, 0x77, 0xa2, 0x06, 0x62, 0xbb, 0x0c, - 0x6a, 0x83, 0xbe, 0x27, 0xa1, 0xfd, 0x5e, 0x03, 0xb3, 0x7b, 0xcc, 0x95, 0xcb, 0x38, 0x06, 0xf5, - 0x0f, 0x24, 0xad, 0x7f, 0x20, 0xfd, 0x2f, 0xc5, 0x77, 0x09, 0x2c, 0x0e, 0x04, 0x90, 0x84, 0xf7, - 0x1b, 0x0d, 0x5c, 0x14, 0xd1, 0xb7, 0x90, 0xef, 0x62, 0x13, 0x1f, 0xa1, 0xd0, 0xd9, 0xc1, 0x3e, - 0xf5, 0x18, 0x5c, 0x01, 0x17, 0x1c, 0xf9, 0x9f, 0xc5, 0xa9, 0x78, 0x03, 0xd5, 0x35, 0x59, 0xa8, - 0xd5, 0x68, 0xf1, 0x1e, 0xdd, 0x74, 0x1c, 0xb8, 0x0a, 0x66, 0x7a, 0x98, 0x50, 0x5a, 0xd0, 0x0b, - 0x12, 0x36, 0x15, 0xc3, 0x22, 0xbb, 0xff, 0xb6, 0x60, 0xea, 0xf2, 0x1d, 0x69, 0xd0, 0xdd, 0x24, - 0xa0, 0xbf, 0x6b, 0xa0, 0xbc, 0xc7, 0xdc, 0xfd, 0x80, 0xef, 0xfa, 0xff, 0x0f, 0xef, 0xd8, 0x10, - 0xcc, 0xc4, 0xe1, 0x26, 0x39, 0xf8, 0xa3, 0x06, 0x2a, 0xd1, 0xe2, 0x7e, 0x87, 0xff, 0xc7, 0x92, - 0xd0, 0x8b, 0xb0, 0x38, 0x5a, 0x84, 0xa5, 0x7c, 0x11, 0xce, 0xc9, 0x03, 0x18, 0x05, 0x93, 0x84, - 0xf8, 0xcb, 0x82, 0xbc, 0x5b, 0x88, 0x6e, 0xab, 0xd4, 0xb7, 0xa9, 0xa7, 0xda, 0xbe, 0x89, 0x38, - 0x1e, 0x0c, 0x4b, 0xcb, 0x19, 0x56, 0x3a, 0x5d, 0x85, 0xc1, 0x74, 0xdd, 0x06, 0xa5, 0x10, 0x71, - 0xac, 0x62, 0xbe, 0x2e, 0xce, 0xed, 0x27, 0x4f, 0xea, 0x97, 0xa2, 0xb8, 0x99, 0xf3, 0xd0, 0x20, - 0xb4, 0xe1, 0x21, 0xde, 0x32, 0xbe, 0x8b, 0x5d, 0x64, 0x1f, 0xef, 0x60, 0xfb, 0xe3, 0x0f, 0xd6, - 0x80, 0x4a, 0xcb, 0x0e, 0xb6, 0x4d, 0xa9, 0xfe, 0x99, 0x95, 0xc7, 0xcb, 0xe0, 0xa5, 0xd3, 0xd2, - 0x94, 0xe4, 0xf3, 0xb7, 0x45, 0xf9, 0x66, 0x99, 0x5c, 0x50, 0xa8, 0x43, 0x1e, 0x88, 0xf7, 0x7c, - 0x31, 0xb9, 0xe7, 0xc1, 0x38, 0x27, 0xbc, 0x8d, 0x55, 0x9b, 0x8b, 0x1e, 0xe0, 0x32, 0xa8, 0x3a, - 0x98, 0xd9, 0x21, 0x09, 0xe4, 0x5b, 0x45, 0x21, 0x3a, 0x02, 0xa9, 0xa5, 0x4c, 0xfb, 0x2f, 0x66, - 0xdb, 0x7f, 0x32, 0x91, 0x4b, 0x39, 0x26, 0xf2, 0xf8, 0xd9, 0x26, 0xf2, 0x44, 0x8e, 0x89, 0xfc, - 0xc2, 0x69, 0x13, 0xb9, 0x7c, 0xda, 0x44, 0xae, 0x8c, 0x38, 0x91, 0x41, 0xbe, 0x89, 0x5c, 0xcd, - 0x3b, 0x91, 0xaf, 0x82, 0xfa, 0x09, 0xfb, 0x95, 0xec, 0xe9, 0x1f, 0x8a, 0xf2, 0xe4, 0x6c, 0x87, - 0x18, 0xf1, 0xde, 0xe8, 0xea, 0x55, 0x9e, 0x96, 0xb3, 0xf2, 0x16, 0xfb, 0x4f, 0x44, 0x6f, 0x1f, - 0xdf, 0x02, 0x65, 0x0f, 0x73, 0xe4, 0x20, 0x8e, 0xd4, 0x4d, 0xef, 0x46, 0xae, 0xcb, 0x4e, 0xe2, - 0xb7, 0x52, 0x56, 0xd7, 0x8a, 0x84, 0x0c, 0xbe, 0xa3, 0x81, 0x45, 0x75, 0xc7, 0x20, 0x3f, 0x92, - 0x61, 0x59, 0xf2, 0x4a, 0x84, 0x39, 0x0e, 0x99, 0xac, 0x9a, 0xea, 0xfa, 0xed, 0x33, 0x99, 0xda, - 0xcd, 0xb0, 0x1d, 0x24, 0x64, 0xa6, 0x4e, 0x4e, 0x90, 0xc0, 0x0e, 0xd0, 0xa3, 0x2a, 0x64, 0x2d, - 0x14, 0xc8, 0x1b, 0x45, 0xcf, 0x85, 0xe8, 0x82, 0xf2, 0xd5, 0x7c, 0x57, 0x3b, 0x41, 0x72, 0x18, - 0x71, 0xa4, 0x0c, 0xbf, 0x18, 0x0c, 0x5d, 0xdf, 0xa8, 0xa6, 0x0f, 0xf0, 0x2d, 0x39, 0xbd, 0xb3, - 0x7b, 0x18, 0xef, 0xf0, 0x73, 0x5f, 0x43, 0x56, 0x1e, 0x95, 0x64, 0x09, 0x44, 0x17, 0xc6, 0x73, - 0x94, 0x40, 0x9f, 0xa1, 0xc2, 0xc0, 0xfb, 0xce, 0x0e, 0x98, 0xf5, 0xf1, 0x91, 0x45, 0x8f, 0x7c, - 0xd5, 0x6f, 0x31, 0x63, 0xcf, 0x9d, 0x0b, 0xd3, 0x3e, 0x3e, 0xda, 0x17, 0x1a, 0x6a, 0x19, 0xbe, - 0x99, 0x2a, 0xa7, 0xd2, 0x39, 0xca, 0x29, 0x77, 0x21, 0x8d, 0xff, 0xf7, 0x0b, 0x69, 0xe2, 0x33, - 0x2a, 0xa4, 0xe8, 0x35, 0x30, 0x5b, 0x09, 0x71, 0x21, 0xad, 0xbf, 0x3b, 0x03, 0x8a, 0x7b, 0xcc, - 0x85, 0x3f, 0xd1, 0xc0, 0xec, 0xe0, 0xa7, 0xca, 0xaf, 0xe4, 0x72, 0x6e, 0xd8, 0xa7, 0xbe, 0xda, - 0xe6, 0xc8, 0xaa, 0x49, 0x91, 0xff, 0x5a, 0x03, 0xb5, 0x53, 0x3e, 0x11, 0x6e, 0xe5, 0xb5, 0x70, - 0x32, 0x47, 0xed, 0x8d, 0xf3, 0x73, 0x9c, 0xe2, 0x6e, 0xe6, 0x1b, 0xde, 0x88, 0xee, 0xa6, 0x39, - 0x46, 0x75, 0x77, 0xd8, 0x87, 0x2f, 0xf8, 0xae, 0x06, 0x66, 0x06, 0xbe, 0x19, 0x7d, 0x39, 0xaf, - 0x81, 0x7e, 0xcd, 0xda, 0x37, 0x47, 0xd5, 0x4c, 0xa6, 0x56, 0xf1, 0x51, 0x41, 0x83, 0x8f, 0x35, - 0x30, 0xdd, 0x7f, 0x9b, 0x7c, 0xfd, 0xac, 0xd4, 0x4a, 0xb1, 0xf6, 0x8d, 0x11, 0x15, 0xb3, 0x2e, - 0x3d, 0xd2, 0xc0, 0x54, 0xdf, 0x28, 0xbd, 0x99, 0x9b, 0x38, 0xa3, 0x57, 0xfb, 0xfa, 0x68, 0x7a, - 0xc9, 0x9e, 0x09, 0x57, 0xfa, 0x5a, 0x7a, 0x6e, 0x57, 0xb2, 0x7a, 0xf9, 0x5d, 0x19, 0xde, 0x38, - 0xa4, 0x2b, 0x7d, 0x77, 0xe3, 0xdc, 0xae, 0x64, 0xf5, 0xf2, 0xbb, 0x32, 0xfc, 0x2a, 0x2b, 0x3a, - 0xfd, 0x64, 0xe6, 0xfb, 0xed, 0x97, 0xce, 0x16, 0x5b, 0xa4, 0x55, 0xbb, 0x35, 0x8a, 0x56, 0xe2, - 0x84, 0x07, 0xc6, 0xa3, 0xab, 0xe7, 0x5a, 0x5e, 0x1a, 0x09, 0xaf, 0xdd, 0x38, 0x13, 0x3c, 0x31, - 0x17, 0x80, 0x09, 0x75, 0xcb, 0x33, 0xce, 0x40, 0xb0, 0xdf, 0xe1, 0xb5, 0x9b, 0x67, 0xc3, 0x27, - 0x16, 0x7f, 0xa5, 0x81, 0xc5, 0x93, 0x6f, 0x5d, 0xb9, 0xdb, 0xfd, 0x89, 0x14, 0xb5, 0xdd, 0x73, - 0x53, 0x24, 0xbe, 0xfe, 0x5c, 0x03, 0xf3, 0x43, 0x6f, 0x34, 0xb7, 0xce, 0xda, 0x11, 0xd2, 0xda, - 0xb5, 0x9d, 0xf3, 0x68, 0x67, 0x9b, 0xca, 0x4f, 0x35, 0x00, 0x87, 0x7c, 0x7b, 0xd9, 0xc8, 0x6d, - 0x61, 0x40, 0xb7, 0xb6, 0x35, 0xba, 0x6e, 0xec, 0x5b, 0x6d, 0xfc, 0xc7, 0x9f, 0xbe, 0x7f, 0x4d, - 0xdb, 0x7a, 0xeb, 0xc3, 0xa7, 0x4b, 0xda, 0x47, 0x4f, 0x97, 0xb4, 0xbf, 0x3e, 0x5d, 0xd2, 0x1e, - 0x3f, 0x5b, 0x1a, 0xfb, 0xe8, 0xd9, 0xd2, 0xd8, 0x9f, 0x9f, 0x2d, 0x8d, 0x7d, 0xff, 0x6b, 0x2e, - 0xe1, 0xad, 0x4e, 0xd3, 0xb0, 0xa9, 0xa7, 0x7e, 0xae, 0x6d, 0xf4, 0xac, 0xae, 0x25, 0xbf, 0xb6, - 0x76, 0x6f, 0x34, 0xde, 0xce, 0xfe, 0xe4, 0x2a, 0x7f, 0x5c, 0x6a, 0x4e, 0xc8, 0x4f, 0x60, 0x5f, - 0xfc, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x52, 0x0c, 0x87, 0x39, 0xee, 0x1e, 0x00, 0x00, + 0x15, 0xd6, 0xec, 0xae, 0x94, 0xdd, 0x5e, 0xfd, 0xb6, 0xe4, 0x68, 0xb5, 0xb6, 0xb5, 0xb2, 0x08, + 0x89, 0xca, 0x44, 0xb3, 0xb1, 0xc0, 0x0e, 0x08, 0xf3, 0xa3, 0x1f, 0x83, 0x15, 0x90, 0xa5, 0x8c, + 0x8c, 0x53, 0x05, 0x55, 0x4c, 0xf5, 0xce, 0xb4, 0x67, 0xbb, 0xbc, 0x33, 0x3d, 0x35, 0xdd, 0xbb, + 0x8a, 0x38, 0x51, 0x39, 0xf9, 0x68, 0x2a, 0x1c, 0xb8, 0x91, 0x03, 0x1c, 0xa8, 0x02, 0x2a, 0x87, + 0x14, 0x07, 0x8e, 0x9c, 0x52, 0xc5, 0x25, 0xe4, 0x44, 0xe5, 0x60, 0x28, 0xfb, 0x10, 0x2e, 0x5c, + 0xb8, 0x71, 0xa3, 0xba, 0xa7, 0x67, 0x76, 0x66, 0x77, 0x25, 0xcd, 0xae, 0x42, 0x38, 0x70, 0x51, + 0x69, 0xfa, 0xbd, 0xf7, 0xbd, 0x9f, 0x7e, 0xfd, 0x5e, 0xbf, 0x5e, 0xf0, 0x2a, 0xf1, 0x38, 0x0e, + 0xac, 0x26, 0x22, 0x9e, 0xc9, 0xb0, 0xd5, 0x0e, 0x08, 0x3f, 0xa9, 0x5b, 0x56, 0xa7, 0xee, 0x07, + 0xb4, 0x43, 0x6c, 0x1c, 0xd4, 0x3b, 0x37, 0xea, 0xfc, 0x6d, 0xdd, 0x0f, 0x28, 0xa7, 0xf0, 0x0b, + 0x03, 0xb8, 0x75, 0xcb, 0xea, 0xe8, 0x11, 0xb7, 0xde, 0xb9, 0x51, 0x9d, 0x43, 0x2e, 0xf1, 0x68, + 0x5d, 0xfe, 0x0d, 0xe5, 0xaa, 0x57, 0x1c, 0x4a, 0x9d, 0x16, 0xae, 0x23, 0x9f, 0xd4, 0x91, 0xe7, + 0x51, 0x8e, 0x38, 0xa1, 0x1e, 0x53, 0xd4, 0x9a, 0xa2, 0xca, 0xaf, 0x46, 0xfb, 0x61, 0x9d, 0x13, + 0x17, 0x33, 0x8e, 0x5c, 0x5f, 0x31, 0x2c, 0xf7, 0x32, 0xd8, 0xed, 0x40, 0x22, 0x28, 0xfa, 0x52, + 0x2f, 0x1d, 0x79, 0x27, 0x8a, 0xb4, 0xe0, 0x50, 0x87, 0xca, 0x7f, 0xeb, 0xe2, 0xbf, 0x48, 0xc0, + 0xa2, 0xcc, 0xa5, 0xcc, 0x0c, 0x09, 0xe1, 0x87, 0x22, 0x2d, 0x86, 0x5f, 0x75, 0x97, 0x39, 0xc2, + 0x75, 0x97, 0x39, 0x91, 0x95, 0xa4, 0x61, 0xd5, 0x2d, 0x1a, 0xe0, 0xba, 0xd5, 0x22, 0xd8, 0xe3, + 0x82, 0x1a, 0xfe, 0xa7, 0x18, 0x36, 0xb2, 0x84, 0x32, 0x0e, 0x54, 0x28, 0x53, 0x17, 0xa0, 0x2d, + 0xe2, 0x34, 0x79, 0x08, 0xc5, 0xea, 0x1c, 0x7b, 0x36, 0x0e, 0x5c, 0x12, 0x2a, 0xe8, 0x7e, 0x45, + 0x56, 0x24, 0xe8, 0xfc, 0xc4, 0xc7, 0xac, 0x8e, 0x05, 0x9e, 0x67, 0xe1, 0x90, 0x61, 0xf5, 0xdf, + 0x1a, 0x58, 0xd8, 0x67, 0xce, 0x16, 0x63, 0xc4, 0xf1, 0x76, 0xa8, 0xc7, 0xda, 0x2e, 0x0e, 0xbe, + 0x87, 0x4f, 0xe0, 0x55, 0x50, 0x0c, 0x6d, 0x23, 0x76, 0x45, 0x5b, 0xd1, 0xd6, 0x4a, 0xdb, 0xb9, + 0x8a, 0x66, 0xbc, 0x20, 0xd7, 0xf6, 0x6c, 0xf8, 0x3a, 0x98, 0x8a, 0x6c, 0x33, 0x91, 0x6d, 0x07, + 0x95, 0x9c, 0xe4, 0x81, 0xff, 0x7a, 0x5a, 0x9b, 0x3e, 0x41, 0x6e, 0x6b, 0x73, 0x55, 0xac, 0x62, + 0xc6, 0x56, 0x8d, 0xc9, 0x88, 0x71, 0xcb, 0xb6, 0x03, 0x78, 0x0d, 0x4c, 0x5a, 0x4a, 0x8d, 0xf9, + 0x08, 0x9f, 0x54, 0xf2, 0x42, 0xce, 0x28, 0x5b, 0x09, 0xd5, 0xaf, 0x81, 0x09, 0x61, 0x0d, 0x0e, + 0x2a, 0x05, 0x09, 0x5a, 0xf9, 0xf8, 0x83, 0xf5, 0x05, 0x15, 0xf5, 0xad, 0x10, 0xf5, 0x88, 0x07, + 0xc4, 0x73, 0x0c, 0xc5, 0x07, 0x6b, 0x20, 0x06, 0x10, 0xf6, 0x8e, 0x4b, 0x4c, 0x10, 0x2d, 0xed, + 0xd9, 0x9b, 0xf3, 0x8f, 0xdf, 0xab, 0x8d, 0xfd, 0xe3, 0xbd, 0xda, 0xd8, 0x3b, 0x9f, 0xbe, 0x7f, + 0x5d, 0x49, 0xad, 0x2e, 0x83, 0x2b, 0x83, 0x5c, 0x37, 0x30, 0xf3, 0xa9, 0xc7, 0xf0, 0xea, 0x33, + 0x0d, 0x5c, 0xdd, 0x67, 0xce, 0x51, 0xbb, 0xe1, 0x12, 0x1e, 0x31, 0xec, 0x13, 0xd6, 0xc0, 0x4d, + 0xd4, 0x21, 0xb4, 0x1d, 0xc0, 0x5b, 0xa0, 0xc4, 0x24, 0x95, 0xe3, 0x40, 0x45, 0xe9, 0x74, 0x63, + 0xbb, 0xac, 0xf0, 0x10, 0x4c, 0xba, 0x09, 0x1c, 0x19, 0xbc, 0xf2, 0xc6, 0xab, 0x3a, 0x69, 0x58, + 0x7a, 0x72, 0x7b, 0xf5, 0xc4, 0x86, 0x76, 0x6e, 0xe8, 0x49, 0xdd, 0x46, 0x0a, 0xa1, 0x37, 0x02, + 0xf9, 0xbe, 0x08, 0xbc, 0x98, 0x8c, 0x40, 0xd7, 0x94, 0xd5, 0x57, 0xc0, 0x17, 0xcf, 0xf4, 0x31, + 0x8e, 0xc6, 0x5f, 0x72, 0x03, 0xa2, 0xb1, 0x4b, 0xdb, 0x8d, 0x16, 0x7e, 0x40, 0x39, 0xf1, 0x9c, + 0x91, 0xa3, 0x61, 0x82, 0x45, 0xbb, 0xed, 0xb7, 0x88, 0x85, 0x38, 0x36, 0x3b, 0x94, 0x63, 0x33, + 0x4a, 0x52, 0x15, 0x98, 0x57, 0x92, 0x71, 0x90, 0x69, 0xac, 0xef, 0x46, 0x02, 0x0f, 0x28, 0xc7, + 0x77, 0x14, 0xbb, 0x71, 0xc9, 0x1e, 0xb4, 0x0c, 0x7f, 0x0c, 0x16, 0x89, 0xf7, 0x30, 0x40, 0x96, + 0x28, 0x02, 0x66, 0xa3, 0x45, 0xad, 0x47, 0x66, 0x13, 0x23, 0x1b, 0x07, 0x32, 0x50, 0xe5, 0x8d, + 0x97, 0xcf, 0x8b, 0xfc, 0x5d, 0xc9, 0x6d, 0x5c, 0xea, 0xc2, 0x6c, 0x0b, 0x94, 0x70, 0xb9, 0x37, + 0xf8, 0x85, 0x0b, 0x05, 0x3f, 0x19, 0xd2, 0x38, 0xf8, 0xbf, 0xd2, 0xc0, 0xcc, 0x3e, 0x73, 0x7e, + 0xe0, 0xdb, 0x88, 0xe3, 0x43, 0x14, 0x20, 0x97, 0x89, 0x70, 0xa3, 0x36, 0x6f, 0x52, 0x51, 0x38, + 0xce, 0x0f, 0x77, 0xcc, 0x0a, 0xf7, 0xc0, 0x84, 0x2f, 0x11, 0x54, 0x74, 0xbf, 0xa4, 0x67, 0x28, + 0xd3, 0x7a, 0xa8, 0x74, 0xbb, 0xf0, 0xe1, 0xd3, 0xda, 0x98, 0xa1, 0x00, 0x36, 0xa7, 0xa5, 0x3f, + 0x31, 0xf4, 0xea, 0x12, 0x58, 0xec, 0xb1, 0x32, 0xf6, 0xe0, 0x93, 0x22, 0x98, 0xdf, 0x67, 0x4e, + 0xe4, 0xe5, 0x96, 0x6d, 0x13, 0x11, 0x46, 0xb8, 0xd4, 0x5b, 0x67, 0xba, 0x35, 0xe6, 0xbb, 0x60, + 0x9a, 0x78, 0x84, 0x13, 0xd4, 0x32, 0x9b, 0x58, 0xec, 0x8d, 0x32, 0xb8, 0x2a, 0x77, 0x4b, 0xd4, + 0x56, 0x5d, 0x55, 0x54, 0xb9, 0x43, 0x82, 0x43, 0xd9, 0x37, 0xa5, 0xe4, 0xc2, 0x45, 0x51, 0x73, + 0x1c, 0xec, 0x61, 0x46, 0x98, 0xd9, 0x44, 0xac, 0x29, 0x37, 0x7d, 0xd2, 0x28, 0xab, 0xb5, 0xbb, + 0x88, 0x35, 0xc5, 0x16, 0x36, 0x88, 0x87, 0x82, 0x93, 0x90, 0xa3, 0x20, 0x39, 0x40, 0xb8, 0x24, + 0x19, 0x76, 0x00, 0x60, 0x3e, 0x3a, 0xf6, 0x4c, 0xd1, 0x6d, 0x64, 0x85, 0x11, 0x86, 0x84, 0x9d, + 0x44, 0x8f, 0x3a, 0x89, 0x7e, 0x3f, 0x6a, 0x45, 0xdb, 0x45, 0x61, 0xc8, 0x93, 0xbf, 0xd5, 0x34, + 0xa3, 0x24, 0xe5, 0x04, 0x05, 0xde, 0x03, 0xb3, 0x6d, 0xaf, 0x41, 0x3d, 0x9b, 0x78, 0x8e, 0xe9, + 0xe3, 0x80, 0x50, 0xbb, 0x32, 0x21, 0xa1, 0x96, 0xfa, 0xa0, 0x76, 0x55, 0xd3, 0x0a, 0x91, 0x7e, + 0x21, 0x90, 0x66, 0x62, 0xe1, 0x43, 0x29, 0x0b, 0xdf, 0x04, 0xd0, 0xb2, 0x3a, 0xd2, 0x24, 0xda, + 0xe6, 0x11, 0xe2, 0x0b, 0xd9, 0x11, 0x67, 0x2d, 0xab, 0x73, 0x3f, 0x94, 0x56, 0x90, 0x3f, 0x02, + 0x8b, 0x3c, 0x40, 0x1e, 0x7b, 0x88, 0x83, 0x5e, 0xdc, 0x62, 0x76, 0xdc, 0x4b, 0x11, 0x46, 0x1a, + 0xfc, 0x2e, 0x58, 0x89, 0x0f, 0x4a, 0x80, 0x6d, 0xc2, 0x78, 0x40, 0x1a, 0x6d, 0x79, 0x2a, 0xa3, + 0x73, 0x55, 0x29, 0xc9, 0x24, 0x58, 0x8e, 0xf8, 0x8c, 0x14, 0xdb, 0x77, 0x14, 0x17, 0x3c, 0x00, + 0x2f, 0xc9, 0x73, 0xcc, 0x84, 0x71, 0x66, 0x0a, 0x49, 0xaa, 0x76, 0x09, 0x63, 0x02, 0x0d, 0xac, + 0x68, 0x6b, 0x79, 0xe3, 0x5a, 0xc8, 0x7b, 0x88, 0x83, 0xdd, 0x04, 0xe7, 0xfd, 0x04, 0x23, 0x5c, + 0x07, 0xb0, 0x49, 0x18, 0xa7, 0x01, 0xb1, 0x50, 0xcb, 0xc4, 0x1e, 0x0f, 0x08, 0x66, 0x95, 0xb2, + 0x14, 0x9f, 0xeb, 0x52, 0xee, 0x84, 0x04, 0xf8, 0x06, 0xb8, 0x76, 0xaa, 0x52, 0xd3, 0x6a, 0x22, + 0xcf, 0xc3, 0xad, 0xca, 0xa4, 0x74, 0xa5, 0x66, 0x9f, 0xa2, 0x73, 0x27, 0x64, 0x83, 0xf3, 0x60, + 0x9c, 0x53, 0xdf, 0xbc, 0x57, 0x99, 0x5a, 0xd1, 0xd6, 0xa6, 0x8c, 0x02, 0xa7, 0xfe, 0x3d, 0xf8, + 0x1a, 0x58, 0xe8, 0xa0, 0x16, 0xb1, 0x11, 0xa7, 0x01, 0x33, 0x7d, 0x7a, 0x8c, 0x03, 0xd3, 0x42, + 0x7e, 0x65, 0x5a, 0xf2, 0xc0, 0x2e, 0xed, 0x50, 0x90, 0x76, 0x90, 0x0f, 0xaf, 0x83, 0xb9, 0x78, + 0xd5, 0x64, 0x98, 0x4b, 0xf6, 0x19, 0xc9, 0x3e, 0x13, 0x13, 0x8e, 0x30, 0x17, 0xbc, 0x57, 0x40, + 0x09, 0xb5, 0x5a, 0xf4, 0xb8, 0x45, 0x18, 0xaf, 0xcc, 0xae, 0xe4, 0xd7, 0x4a, 0x46, 0x77, 0x01, + 0x56, 0x41, 0xd1, 0xc6, 0xde, 0x89, 0x24, 0xce, 0x49, 0x62, 0xfc, 0x9d, 0xae, 0x3a, 0x30, 0x7b, + 0xd5, 0xb9, 0x0c, 0x4a, 0xae, 0xa8, 0x2f, 0x1c, 0x3d, 0xc2, 0x95, 0xf9, 0x15, 0x6d, 0xad, 0x60, + 0x14, 0x5d, 0xe2, 0x1d, 0x89, 0x6f, 0xa8, 0x83, 0x79, 0xa9, 0xdd, 0x24, 0x9e, 0xd8, 0xdf, 0x0e, + 0x36, 0x3b, 0xa8, 0xc5, 0x2a, 0x0b, 0x2b, 0xda, 0x5a, 0xd1, 0x98, 0x93, 0xa4, 0x3d, 0x45, 0x79, + 0x80, 0x5a, 0xfd, 0x75, 0xe7, 0x2a, 0xb8, 0x3c, 0xa0, 0xb6, 0xc4, 0xb5, 0xe7, 0x8f, 0x1a, 0x80, + 0x09, 0xba, 0x81, 0x5d, 0xda, 0x41, 0xad, 0xb3, 0x4a, 0xcf, 0x16, 0x28, 0x31, 0xb1, 0x27, 0xf2, + 0xb0, 0xe7, 0x86, 0x38, 0xec, 0x45, 0x21, 0x26, 0xcf, 0x7a, 0x2a, 0x50, 0xf9, 0xcc, 0x81, 0xea, + 0xf3, 0xed, 0x0a, 0xa8, 0xf6, 0xdb, 0x1e, 0xbb, 0xf6, 0x07, 0x0d, 0xcc, 0xed, 0x33, 0x47, 0x2e, + 0xe3, 0x88, 0xa9, 0xb7, 0x21, 0x69, 0xbd, 0x0d, 0xe9, 0xb3, 0xf0, 0xaf, 0x7b, 0x4b, 0xcb, 0x67, + 0xbb, 0xa5, 0x6d, 0x96, 0x93, 0x97, 0xaf, 0xcb, 0x60, 0xa9, 0xcf, 0xee, 0xd8, 0xab, 0xdf, 0x69, + 0xe0, 0x92, 0x70, 0xba, 0x89, 0x3c, 0x07, 0x1b, 0xf8, 0x18, 0x05, 0xf6, 0x2e, 0xf6, 0xa8, 0xcb, + 0xe0, 0x2a, 0x98, 0xb2, 0xe5, 0x7f, 0x26, 0xa7, 0xe2, 0xe2, 0x59, 0xd1, 0x64, 0x7e, 0x96, 0xc3, + 0xc5, 0xfb, 0x74, 0xcb, 0xb6, 0xe1, 0x1a, 0x98, 0xed, 0xf2, 0x04, 0x52, 0x43, 0x25, 0x27, 0xd9, + 0xa6, 0x23, 0xb6, 0x50, 0xef, 0x67, 0xb6, 0x47, 0x35, 0x79, 0x35, 0xea, 0x37, 0x37, 0x76, 0xe8, + 0x9f, 0x1a, 0x28, 0xee, 0x33, 0xe7, 0xc0, 0xe7, 0x7b, 0xde, 0xff, 0xc3, 0xd5, 0x1a, 0x82, 0xd9, + 0xc8, 0xdd, 0x38, 0x06, 0x7f, 0xd6, 0x40, 0x29, 0x5c, 0x3c, 0x68, 0xf3, 0xff, 0x5a, 0x10, 0x86, + 0x4e, 0xcb, 0xf3, 0x6f, 0x6f, 0x03, 0x3d, 0x9c, 0x97, 0xe7, 0x2e, 0x74, 0x26, 0x76, 0xf1, 0xd7, + 0x39, 0x39, 0x52, 0x88, 0x22, 0xab, 0xc4, 0x77, 0xa8, 0xab, 0xaa, 0xbd, 0x81, 0x38, 0xee, 0x77, + 0x4b, 0xcb, 0xe8, 0x56, 0x32, 0x5c, 0xb9, 0xfe, 0x70, 0xdd, 0x01, 0x85, 0x00, 0x71, 0xac, 0x7c, + 0xbe, 0x21, 0x8e, 0xeb, 0x27, 0x4f, 0x6b, 0x97, 0x43, 0xbf, 0x99, 0xfd, 0x48, 0x27, 0xb4, 0xee, + 0x22, 0xde, 0xd4, 0xbf, 0x8f, 0x1d, 0x64, 0x9d, 0xec, 0x62, 0xeb, 0xe3, 0x0f, 0xd6, 0x81, 0x0a, + 0xcb, 0x2e, 0xb6, 0x0c, 0x29, 0xfe, 0xb9, 0xa5, 0xc7, 0xcb, 0xe0, 0xa5, 0xb3, 0xc2, 0x14, 0xc7, + 0xf3, 0xf7, 0x79, 0x79, 0xa1, 0x8c, 0xe7, 0x12, 0x6a, 0x93, 0x87, 0xe2, 0x7a, 0x2f, 0x1a, 0xf6, + 0x02, 0x18, 0xe7, 0x84, 0xb7, 0xb0, 0xaa, 0x6e, 0xe1, 0x07, 0x5c, 0x01, 0x65, 0x1b, 0x33, 0x2b, + 0x20, 0xbe, 0xbc, 0x4c, 0xe4, 0xc2, 0x23, 0x90, 0x58, 0x4a, 0x55, 0xfd, 0x7c, 0xba, 0xea, 0xc7, + 0x8d, 0xb8, 0x90, 0xa1, 0x11, 0x8f, 0x0f, 0xd7, 0x88, 0x27, 0x32, 0x34, 0xe2, 0x17, 0xce, 0x6a, + 0xc4, 0xc5, 0xb3, 0x1a, 0x71, 0x69, 0xc4, 0x46, 0x0c, 0xb2, 0x35, 0xe2, 0x72, 0xd6, 0x46, 0x7c, + 0x0d, 0xd4, 0x4e, 0xd9, 0xaf, 0x78, 0x4f, 0xff, 0x94, 0x97, 0x27, 0x67, 0x27, 0xc0, 0x88, 0x77, + 0x3b, 0x56, 0x37, 0xf3, 0xb4, 0x8c, 0x99, 0xb7, 0xd4, 0x7b, 0x22, 0xba, 0xfb, 0xf8, 0x16, 0x28, + 0xba, 0x98, 0x23, 0x1b, 0x71, 0xa4, 0x06, 0xbc, 0x9b, 0x99, 0x66, 0x9c, 0xd8, 0x6e, 0x25, 0xac, + 0xa6, 0x89, 0x18, 0x0c, 0xbe, 0xa3, 0x81, 0x25, 0x35, 0x5a, 0x90, 0x9f, 0x48, 0xb7, 0x4c, 0x39, + 0x09, 0x61, 0x8e, 0x03, 0x26, 0xb3, 0xa6, 0xbc, 0x71, 0x67, 0x28, 0x55, 0x7b, 0x29, 0xb4, 0xc3, + 0x18, 0xcc, 0xa8, 0x90, 0x53, 0x28, 0xb0, 0x0d, 0x2a, 0x61, 0x16, 0xb2, 0x26, 0xf2, 0xe5, 0x20, + 0xd1, 0x35, 0x21, 0x9c, 0x4b, 0xbe, 0x9e, 0x6d, 0xa2, 0x13, 0x20, 0x47, 0x21, 0x46, 0x42, 0xf1, + 0x8b, 0xfe, 0xc0, 0xf5, 0x74, 0xf7, 0xbe, 0x2d, 0xbb, 0x77, 0x7a, 0x0f, 0xa3, 0x1d, 0x3e, 0xf7, + 0xf6, 0xb1, 0xfa, 0xb8, 0x20, 0x53, 0x20, 0x9c, 0x13, 0x2f, 0x90, 0x02, 0x3d, 0x8a, 0x72, 0x7d, + 0xd7, 0x9c, 0x5d, 0x30, 0xe7, 0xe1, 0x63, 0x93, 0x1e, 0x7b, 0xaa, 0xde, 0x62, 0xc6, 0xce, 0xed, + 0x0b, 0x33, 0x1e, 0x3e, 0x3e, 0x10, 0x12, 0x6a, 0x19, 0xbe, 0x99, 0x48, 0xa7, 0xc2, 0x05, 0xd2, + 0x29, 0x73, 0x22, 0x8d, 0xff, 0xef, 0x13, 0x69, 0xe2, 0x73, 0x4a, 0xa4, 0xf0, 0x1a, 0x98, 0xce, + 0x84, 0x28, 0x91, 0x36, 0xde, 0x9d, 0x05, 0xf9, 0x7d, 0xe6, 0xc0, 0x9f, 0x69, 0x60, 0xae, 0xff, + 0x85, 0xf2, 0x6b, 0x99, 0x8c, 0x1b, 0xf4, 0xc2, 0x57, 0xdd, 0x1a, 0x59, 0x34, 0x4e, 0xf2, 0xdf, + 0x6a, 0xa0, 0x7a, 0xc6, 0xcb, 0xe0, 0x76, 0x56, 0x0d, 0xa7, 0x63, 0x54, 0xdf, 0xb8, 0x38, 0xc6, + 0x19, 0xe6, 0xa6, 0x9e, 0xee, 0x46, 0x34, 0x37, 0x89, 0x31, 0xaa, 0xb9, 0x83, 0xde, 0xbb, 0xe0, + 0xbb, 0x1a, 0x98, 0xed, 0x7b, 0x2a, 0xfa, 0x6a, 0x56, 0x05, 0xbd, 0x92, 0xd5, 0x6f, 0x8f, 0x2a, + 0x19, 0x77, 0xad, 0xfc, 0xe3, 0x9c, 0x06, 0x9f, 0x68, 0x60, 0xa6, 0x77, 0x88, 0x7c, 0x7d, 0x58, + 0x68, 0x25, 0x58, 0xfd, 0xd6, 0x88, 0x82, 0x69, 0x93, 0x1e, 0x6b, 0x60, 0xba, 0xa7, 0x95, 0xde, + 0xca, 0x0c, 0x9c, 0x92, 0xab, 0x7e, 0x73, 0x34, 0xb9, 0x78, 0xcf, 0x84, 0x29, 0x3d, 0x25, 0x3d, + 0xb3, 0x29, 0x69, 0xb9, 0xec, 0xa6, 0x0c, 0x2e, 0x1c, 0xd2, 0x94, 0x9e, 0x91, 0x38, 0xb3, 0x29, + 0x69, 0xb9, 0xec, 0xa6, 0x0c, 0x1e, 0x65, 0x45, 0xa5, 0x9f, 0x4c, 0x3d, 0xdb, 0x7e, 0x65, 0x38, + 0xdf, 0x42, 0xa9, 0xea, 0xed, 0x51, 0xa4, 0x62, 0x23, 0x5c, 0x30, 0x1e, 0x8e, 0x9e, 0xeb, 0x59, + 0x61, 0x24, 0x7b, 0xf5, 0xe6, 0x50, 0xec, 0xb1, 0x3a, 0x1f, 0x4c, 0xa8, 0x29, 0x4f, 0x1f, 0x02, + 0xe0, 0xa0, 0xcd, 0xab, 0xb7, 0x86, 0xe3, 0x8f, 0x35, 0xfe, 0x46, 0x03, 0x4b, 0xa7, 0x4f, 0x5d, + 0x99, 0xcb, 0xfd, 0xa9, 0x10, 0xd5, 0xbd, 0x0b, 0x43, 0xc4, 0xb6, 0xfe, 0x52, 0x03, 0x0b, 0x03, + 0x27, 0x9a, 0xdb, 0xc3, 0x56, 0x84, 0xa4, 0x74, 0x75, 0xf7, 0x22, 0xd2, 0xe9, 0xa2, 0xf2, 0x73, + 0x0d, 0xc0, 0x01, 0x6f, 0x2f, 0x9b, 0x99, 0x35, 0xf4, 0xc9, 0x56, 0xb7, 0x47, 0x97, 0x8d, 0x6c, + 0xab, 0x8e, 0xff, 0xf4, 0xd3, 0xf7, 0xaf, 0x6b, 0xdb, 0x6f, 0x7d, 0xf8, 0x6c, 0x59, 0xfb, 0xe8, + 0xd9, 0xb2, 0xf6, 0xf7, 0x67, 0xcb, 0xda, 0x93, 0xe7, 0xcb, 0x63, 0x1f, 0x3d, 0x5f, 0x1e, 0xfb, + 0xeb, 0xf3, 0xe5, 0xb1, 0x1f, 0x7e, 0xc3, 0x21, 0xbc, 0xd9, 0x6e, 0xe8, 0x16, 0x75, 0xd5, 0xaf, + 0xb4, 0xf5, 0xae, 0xd6, 0xf5, 0xf8, 0x47, 0xd6, 0xce, 0xcd, 0xfa, 0xdb, 0xe9, 0x5f, 0x5a, 0xe5, + 0x6f, 0x4a, 0x8d, 0x09, 0xf9, 0xf2, 0xf5, 0xe5, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0x96, 0xcd, + 0x06, 0xd7, 0xe5, 0x1e, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2962,10 +2963,10 @@ func (m *MsgRemoveConsumer) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if len(m.Authority) > 0 { - i -= len(m.Authority) - copy(dAtA[i:], m.Authority) - i = encodeVarintTx(dAtA, i, uint64(len(m.Authority))) + if len(m.Signer) > 0 { + i -= len(m.Signer) + copy(dAtA[i:], m.Signer) + i = encodeVarintTx(dAtA, i, uint64(len(m.Signer))) i-- dAtA[i] = 0x1a } @@ -3908,7 +3909,7 @@ func (m *MsgRemoveConsumer) Size() (n int) { } l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.StopTime) n += 1 + l + sovTx(uint64(l)) - l = len(m.Authority) + l = len(m.Signer) if l > 0 { n += 1 + l + sovTx(uint64(l)) } @@ -6028,7 +6029,7 @@ func (m *MsgRemoveConsumer) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 3: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Authority", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field Signer", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -6056,7 +6057,7 @@ func (m *MsgRemoveConsumer) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Authority = string(dAtA[iNdEx:postIndex]) + m.Signer = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex default: iNdEx = preIndex