diff --git a/baseapp/baseapp.go b/baseapp/baseapp.go index 9d5b98585a..eaf7c7f3f4 100644 --- a/baseapp/baseapp.go +++ b/baseapp/baseapp.go @@ -610,7 +610,7 @@ func (app *BaseApp) runTx(mode runTxMode, txBytes []byte, tx sdk.Tx) (gInfo sdk. func (app *BaseApp) runMsgs(ctx sdk.Context, msgs []sdk.Msg, mode runTxMode) (*sdk.Result, error) { msgLogs := make(sdk.ABCIMessageLogs, 0, len(msgs)) events := sdk.EmptyEvents() - txData := &sdk.TxData{ + txMsgData := &sdk.TxMsgData{ Data: make([]*sdk.MsgData, 0, len(msgs)), } @@ -644,11 +644,11 @@ func (app *BaseApp) runMsgs(ctx sdk.Context, msgs []sdk.Msg, mode runTxMode) (*s // separate each result. events = events.AppendEvents(msgEvents) - txData.Data = append(txData.Data, &sdk.MsgData{MsgType: msg.Type(), Data: msgResult.Data}) + txMsgData.Data = append(txMsgData.Data, &sdk.MsgData{MsgType: msg.Type(), Data: msgResult.Data}) msgLogs = append(msgLogs, sdk.NewABCIMessageLog(uint32(i), msgResult.Log, msgEvents)) } - data, err := proto.Marshal(txData) + data, err := proto.Marshal(txMsgData) if err != nil { return nil, sdkerrors.Wrap(err, "failed to marshal tx data") } diff --git a/codec/types/interface_registry.go b/codec/types/interface_registry.go index 01df46834c..6b5f474109 100644 --- a/codec/types/interface_registry.go +++ b/codec/types/interface_registry.go @@ -33,7 +33,7 @@ type InterfaceRegistry interface { // as implementations of iface. // // Ex: - // registry.RegisterInterface("cosmos_sdk.Msg", (*sdk.Msg)(nil)) + // registry.RegisterInterface("cosmos.v1beta1.Msg", (*sdk.Msg)(nil)) RegisterInterface(protoName string, iface interface{}, impls ...proto.Message) // RegisterImplementations registers impls as concrete implementations of diff --git a/crypto/types/crypto.pb.go b/crypto/types/crypto.pb.go index 54455a928c..62d25568ec 100644 --- a/crypto/types/crypto.pb.go +++ b/crypto/types/crypto.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/crypto/crypto.proto +// source: cosmos/base/crypto/v1beta1/crypto.proto package types @@ -42,7 +42,7 @@ func (m *PublicKey) Reset() { *m = PublicKey{} } func (m *PublicKey) String() string { return proto.CompactTextString(m) } func (*PublicKey) ProtoMessage() {} func (*PublicKey) Descriptor() ([]byte, []int) { - return fileDescriptor_5fa415c569c5d31a, []int{0} + return fileDescriptor_8fcac0be3a113ddf, []int{0} } func (m *PublicKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -175,7 +175,7 @@ func (m *PubKeyMultisigThreshold) Reset() { *m = PubKeyMultisigThreshold func (m *PubKeyMultisigThreshold) String() string { return proto.CompactTextString(m) } func (*PubKeyMultisigThreshold) ProtoMessage() {} func (*PubKeyMultisigThreshold) Descriptor() ([]byte, []int) { - return fileDescriptor_5fa415c569c5d31a, []int{1} + return fileDescriptor_8fcac0be3a113ddf, []int{1} } func (m *PubKeyMultisigThreshold) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -219,8 +219,8 @@ func (m *PubKeyMultisigThreshold) GetPubKeys() []*PublicKey { } // MultiSignature wraps the signatures from a PubKeyMultisigThreshold. -// See cosmos_sdk.tx.v1.ModeInfo.Multi for how to specify which signers signed -// and with which modes +// See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers signed and +// with which modes. type MultiSignature struct { Signatures [][]byte `protobuf:"bytes,1,rep,name=signatures,proto3" json:"signatures,omitempty"` XXX_unrecognized []byte `json:"-"` @@ -230,7 +230,7 @@ func (m *MultiSignature) Reset() { *m = MultiSignature{} } func (m *MultiSignature) String() string { return proto.CompactTextString(m) } func (*MultiSignature) ProtoMessage() {} func (*MultiSignature) Descriptor() ([]byte, []int) { - return fileDescriptor_5fa415c569c5d31a, []int{2} + return fileDescriptor_8fcac0be3a113ddf, []int{2} } func (m *MultiSignature) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -278,7 +278,7 @@ type CompactBitArray struct { func (m *CompactBitArray) Reset() { *m = CompactBitArray{} } func (*CompactBitArray) ProtoMessage() {} func (*CompactBitArray) Descriptor() ([]byte, []int) { - return fileDescriptor_5fa415c569c5d31a, []int{3} + return fileDescriptor_8fcac0be3a113ddf, []int{3} } func (m *CompactBitArray) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -322,47 +322,50 @@ func (m *CompactBitArray) GetElems() []byte { } func init() { - proto.RegisterType((*PublicKey)(nil), "cosmos.crypto.PublicKey") - proto.RegisterType((*PubKeyMultisigThreshold)(nil), "cosmos.crypto.PubKeyMultisigThreshold") - proto.RegisterType((*MultiSignature)(nil), "cosmos.crypto.MultiSignature") - proto.RegisterType((*CompactBitArray)(nil), "cosmos.crypto.CompactBitArray") + proto.RegisterType((*PublicKey)(nil), "cosmos.base.crypto.v1beta1.PublicKey") + proto.RegisterType((*PubKeyMultisigThreshold)(nil), "cosmos.base.crypto.v1beta1.PubKeyMultisigThreshold") + proto.RegisterType((*MultiSignature)(nil), "cosmos.base.crypto.v1beta1.MultiSignature") + proto.RegisterType((*CompactBitArray)(nil), "cosmos.base.crypto.v1beta1.CompactBitArray") } -func init() { proto.RegisterFile("cosmos/crypto/crypto.proto", fileDescriptor_5fa415c569c5d31a) } +func init() { + proto.RegisterFile("cosmos/base/crypto/v1beta1/crypto.proto", fileDescriptor_8fcac0be3a113ddf) +} -var fileDescriptor_5fa415c569c5d31a = []byte{ - // 495 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0x4f, 0x6f, 0xd3, 0x30, - 0x18, 0xc6, 0xe3, 0xfe, 0x61, 0xd4, 0xdd, 0x56, 0xb0, 0x2a, 0x91, 0x55, 0x22, 0xa9, 0x72, 0x40, - 0x05, 0x89, 0x54, 0x2d, 0xea, 0x10, 0xbd, 0x2d, 0xe3, 0x30, 0xa9, 0x42, 0xaa, 0x32, 0x0e, 0xc0, - 0xa5, 0x4a, 0x52, 0x93, 0x46, 0x4d, 0xe2, 0xc8, 0x76, 0x24, 0xfc, 0x09, 0xb8, 0x72, 0xe4, 0x08, - 0x77, 0x3e, 0x08, 0xc7, 0x1e, 0x39, 0x55, 0x28, 0xfd, 0x06, 0xfb, 0x04, 0xa8, 0x76, 0xb2, 0x0d, - 0xd0, 0x4e, 0xce, 0xfb, 0xfc, 0x5e, 0xc7, 0xcf, 0xf3, 0xda, 0xb0, 0x17, 0x10, 0x96, 0x10, 0x36, - 0x0c, 0xa8, 0xc8, 0x38, 0x29, 0x17, 0x3b, 0xa3, 0x84, 0x13, 0x74, 0xa4, 0x98, 0xad, 0xc4, 0x5e, - 0x37, 0x24, 0x21, 0x91, 0x64, 0xb8, 0xff, 0x52, 0x4d, 0xbd, 0x93, 0x90, 0x90, 0x30, 0xc6, 0x43, - 0x59, 0xf9, 0xf9, 0xc7, 0xa1, 0x97, 0x0a, 0x85, 0xac, 0xcf, 0x35, 0xd8, 0x9a, 0xe7, 0x7e, 0x1c, - 0x05, 0x33, 0x2c, 0x90, 0x01, 0x5b, 0x0c, 0x07, 0xd9, 0x78, 0x72, 0xba, 0x1e, 0xe9, 0xa0, 0x0f, - 0x06, 0x87, 0x17, 0x9a, 0x7b, 0x23, 0xa1, 0x1e, 0x3c, 0xc0, 0xcb, 0xf1, 0x64, 0x32, 0x7a, 0xa5, - 0xd7, 0x4a, 0x5a, 0x09, 0x7b, 0xc6, 0xa8, 0x62, 0xf5, 0x8a, 0x95, 0x02, 0x7a, 0x0d, 0xef, 0x27, - 0x79, 0xcc, 0x23, 0x16, 0x85, 0x7a, 0xa3, 0x0f, 0x06, 0xed, 0xf1, 0x13, 0xfb, 0x2f, 0xe3, 0xf6, - 0x3c, 0xf7, 0x67, 0x58, 0xbc, 0x29, 0x9b, 0xde, 0xae, 0x28, 0x66, 0x2b, 0x12, 0x2f, 0x2f, 0x34, - 0xf7, 0x7a, 0xe7, 0x2d, 0x77, 0x74, 0xa4, 0x37, 0xff, 0x71, 0x47, 0x47, 0x68, 0x02, 0xa1, 0x97, - 0x8a, 0x45, 0x96, 0xfb, 0x6b, 0x2c, 0xf4, 0x8e, 0x3c, 0xa7, 0x6b, 0xab, 0xec, 0x76, 0x95, 0xdd, - 0x3e, 0x4b, 0xc5, 0x7e, 0x9b, 0x97, 0x8a, 0xb9, 0x6c, 0x74, 0x9a, 0xb0, 0xce, 0xf2, 0xc4, 0xfa, - 0x01, 0xe0, 0xa3, 0x3b, 0x5c, 0xa0, 0x97, 0xb0, 0xc5, 0xab, 0x42, 0xce, 0xe5, 0xc8, 0x39, 0x29, - 0xb6, 0x26, 0x98, 0x5d, 0x6d, 0xcd, 0x07, 0xc2, 0x4b, 0xe2, 0xa9, 0x75, 0xcd, 0x2d, 0xf7, 0xa6, - 0x17, 0xbd, 0x83, 0xed, 0x4c, 0x4e, 0x77, 0xb1, 0xc6, 0x82, 0xe9, 0xb5, 0x7e, 0x7d, 0xd0, 0x1e, - 0xeb, 0xff, 0x67, 0x57, 0xf3, 0x77, 0x1e, 0x17, 0x5b, 0xf3, 0x40, 0x99, 0x60, 0x57, 0x5b, 0xf3, - 0x58, 0xfd, 0x5a, 0x05, 0x62, 0x96, 0x0b, 0xb3, 0xaa, 0x93, 0x59, 0xa7, 0xf0, 0x58, 0xfa, 0xbc, - 0x8c, 0xc2, 0xd4, 0xe3, 0x39, 0xc5, 0xc8, 0x80, 0x90, 0x55, 0x05, 0xd3, 0x41, 0xbf, 0x3e, 0x38, - 0x74, 0x6f, 0x29, 0xd3, 0xc6, 0xe6, 0xbb, 0x09, 0xac, 0xf7, 0xb0, 0x73, 0x4e, 0x92, 0xcc, 0x0b, - 0xb8, 0x13, 0xf1, 0x33, 0x4a, 0x3d, 0x81, 0x9e, 0xc1, 0x87, 0xf8, 0x13, 0xa7, 0xde, 0xc2, 0x8f, - 0x38, 0x5b, 0x30, 0x4e, 0x28, 0x2e, 0x53, 0xba, 0x1d, 0x09, 0x9c, 0x88, 0xb3, 0x4b, 0x29, 0xa3, - 0x2e, 0x6c, 0xe2, 0x18, 0x27, 0x4c, 0xdd, 0xbf, 0xab, 0x8a, 0x69, 0xe3, 0xeb, 0x37, 0x53, 0x73, - 0xce, 0x7f, 0x16, 0x06, 0xd8, 0x14, 0x06, 0xf8, 0x5d, 0x18, 0xe0, 0xcb, 0xce, 0xd0, 0x36, 0x3b, - 0x43, 0xfb, 0xb5, 0x33, 0xb4, 0x0f, 0x4f, 0xc3, 0x88, 0xaf, 0x72, 0xdf, 0x0e, 0x48, 0x32, 0xac, - 0x1e, 0xb3, 0x5c, 0x9e, 0xb3, 0xe5, 0xba, 0x7a, 0xd7, 0x5c, 0x64, 0x98, 0xf9, 0xf7, 0xe4, 0x45, - 0xbd, 0xf8, 0x13, 0x00, 0x00, 0xff, 0xff, 0x73, 0x8c, 0x25, 0x71, 0xf5, 0x02, 0x00, 0x00, +var fileDescriptor_8fcac0be3a113ddf = []byte{ + // 510 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x53, 0xcf, 0x8a, 0xd3, 0x40, + 0x1c, 0x4e, 0xfa, 0xc7, 0xb5, 0xd3, 0x75, 0xab, 0xa1, 0x60, 0xb6, 0x60, 0x52, 0x02, 0x62, 0x15, + 0x4c, 0x48, 0x97, 0xae, 0xd8, 0xdb, 0x66, 0x2f, 0x0b, 0x45, 0xa8, 0x59, 0x2f, 0x7a, 0x29, 0x49, + 0x3a, 0xa6, 0xa1, 0x49, 0x27, 0xcc, 0x6f, 0x22, 0xce, 0x5b, 0x78, 0xf0, 0xe0, 0x51, 0x1f, 0xc3, + 0x37, 0xf0, 0xd8, 0xa3, 0xa7, 0x22, 0xed, 0x1b, 0xec, 0x13, 0x48, 0x67, 0x92, 0xdd, 0x45, 0x58, + 0x3c, 0x25, 0xdf, 0x9f, 0xc9, 0x7c, 0xbf, 0x6f, 0x32, 0xe8, 0x59, 0x44, 0x20, 0x23, 0xe0, 0x84, + 0x01, 0x60, 0x27, 0xa2, 0x3c, 0x67, 0xc4, 0xf9, 0xe4, 0x86, 0x98, 0x05, 0x6e, 0x09, 0xed, 0x9c, + 0x12, 0x46, 0xb4, 0x9e, 0x34, 0xda, 0x7b, 0xa3, 0x5d, 0x2a, 0xa5, 0xb1, 0xd7, 0x8d, 0x49, 0x4c, + 0x84, 0xcd, 0xd9, 0xbf, 0xc9, 0x15, 0xbd, 0xe3, 0x98, 0x90, 0x38, 0xc5, 0x8e, 0x40, 0x61, 0xf1, + 0xd1, 0x09, 0x56, 0x5c, 0x4a, 0xd6, 0xd7, 0x1a, 0x6a, 0x4d, 0x8b, 0x30, 0x4d, 0xa2, 0x09, 0xe6, + 0x9a, 0x81, 0x5a, 0x80, 0xa3, 0x7c, 0x38, 0x3a, 0x5d, 0xba, 0xba, 0xda, 0x57, 0x07, 0x87, 0x17, + 0x8a, 0x7f, 0x43, 0x69, 0x3d, 0x74, 0x80, 0xe7, 0xc3, 0xd1, 0xc8, 0x7d, 0xad, 0xd7, 0x4a, 0xb5, + 0x22, 0xf6, 0x1a, 0x50, 0xa9, 0xd5, 0x2b, 0xad, 0x24, 0xb4, 0xb7, 0xe8, 0x7e, 0x56, 0xa4, 0x2c, + 0x81, 0x24, 0xd6, 0x1b, 0x7d, 0x75, 0xd0, 0x1e, 0x9e, 0xd8, 0x77, 0x4f, 0x61, 0x4f, 0x8b, 0x70, + 0x82, 0xf9, 0x9b, 0x72, 0xc5, 0xbb, 0x05, 0xc5, 0xb0, 0x20, 0xe9, 0xfc, 0x42, 0xf1, 0xaf, 0x3f, + 0x73, 0x2b, 0x2a, 0x75, 0xf5, 0xe6, 0x3f, 0x51, 0xa9, 0xab, 0x8d, 0x10, 0x0a, 0x56, 0x7c, 0x96, + 0x17, 0xe1, 0x12, 0x73, 0xbd, 0x23, 0x36, 0xed, 0xda, 0xb2, 0x08, 0xbb, 0x2a, 0xc2, 0x3e, 0x5b, + 0xf1, 0xfd, 0xb2, 0x60, 0xc5, 0xa7, 0xc2, 0xe8, 0x35, 0x51, 0x1d, 0x8a, 0xcc, 0xfa, 0xa9, 0xa2, + 0xc7, 0x77, 0xa4, 0xd0, 0x5e, 0xa1, 0x16, 0xab, 0x80, 0x28, 0xe9, 0x81, 0x77, 0xbc, 0xdd, 0x98, + 0xea, 0xe4, 0x6a, 0x63, 0x3e, 0xe4, 0x41, 0x96, 0x8e, 0xad, 0x6b, 0xdd, 0xf2, 0x6f, 0xbc, 0x1a, + 0x46, 0xed, 0x5c, 0x54, 0x3d, 0x5b, 0x62, 0x0e, 0x7a, 0xad, 0x5f, 0x1f, 0xb4, 0x87, 0x4f, 0xff, + 0x53, 0x84, 0x3c, 0x19, 0xef, 0xc9, 0x76, 0x63, 0x1e, 0xc8, 0x44, 0x70, 0xb5, 0x31, 0x8f, 0xe4, + 0x3e, 0x72, 0x3a, 0xb0, 0x7c, 0x94, 0x57, 0x4e, 0xb0, 0x4e, 0xd1, 0x91, 0x08, 0x7d, 0x99, 0xc4, + 0xab, 0x80, 0x15, 0x14, 0x6b, 0x06, 0x42, 0x50, 0x01, 0xd0, 0xd5, 0x7e, 0x7d, 0x70, 0xe8, 0xdf, + 0x62, 0xc6, 0x8d, 0xf5, 0x0f, 0x53, 0xb5, 0xde, 0xa3, 0xce, 0x39, 0xc9, 0xf2, 0x20, 0x62, 0x5e, + 0xc2, 0xce, 0x28, 0x0d, 0xb8, 0xf6, 0x02, 0x3d, 0xc2, 0x9f, 0x19, 0x0d, 0x66, 0x61, 0xc2, 0x60, + 0x06, 0x8c, 0x50, 0x5c, 0x8e, 0xec, 0x77, 0x84, 0xe0, 0x25, 0x0c, 0x2e, 0x05, 0xad, 0x75, 0x51, + 0x13, 0xa7, 0x38, 0x03, 0xf9, 0x67, 0xf8, 0x12, 0x8c, 0x1b, 0xdf, 0xbe, 0x9b, 0x8a, 0x77, 0xfe, + 0x6b, 0x6b, 0xa8, 0xeb, 0xad, 0xa1, 0xfe, 0xd9, 0x1a, 0xea, 0x97, 0x9d, 0xa1, 0xac, 0x77, 0x86, + 0xf2, 0x7b, 0x67, 0x28, 0x1f, 0x9e, 0xc7, 0x09, 0x5b, 0x14, 0xa1, 0x1d, 0x91, 0xcc, 0x29, 0x2f, + 0x80, 0x7c, 0xbc, 0x84, 0xf9, 0xb2, 0xba, 0x06, 0x8c, 0xe7, 0x18, 0xc2, 0x7b, 0xe2, 0xd4, 0x4e, + 0xfe, 0x06, 0x00, 0x00, 0xff, 0xff, 0x14, 0x93, 0xdd, 0x2c, 0x29, 0x03, 0x00, 0x00, } func (m *PublicKey) Marshal() (dAtA []byte, err error) { diff --git a/proto/cosmos/auth/auth.proto b/proto/cosmos/auth/v1beta1/auth.proto similarity index 98% rename from proto/cosmos/auth/auth.proto rename to proto/cosmos/auth/v1beta1/auth.proto index ad748b560a..90ada9d92f 100644 --- a/proto/cosmos/auth/auth.proto +++ b/proto/cosmos/auth/v1beta1/auth.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.auth; +package cosmos.auth.v1beta1; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; @@ -43,4 +43,4 @@ message Params { [(gogoproto.customname) = "SigVerifyCostED25519", (gogoproto.moretags) = "yaml:\"sig_verify_cost_ed25519\""]; uint64 sig_verify_cost_secp256k1 = 5 [(gogoproto.customname) = "SigVerifyCostSecp256k1", (gogoproto.moretags) = "yaml:\"sig_verify_cost_secp256k1\""]; -} +} \ No newline at end of file diff --git a/proto/cosmos/auth/genesis.proto b/proto/cosmos/auth/v1beta1/genesis.proto similarity index 84% rename from proto/cosmos/auth/genesis.proto rename to proto/cosmos/auth/v1beta1/genesis.proto index 1513a9ff77..4954f7ee67 100644 --- a/proto/cosmos/auth/genesis.proto +++ b/proto/cosmos/auth/v1beta1/genesis.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.auth; +package cosmos.auth.v1beta1; import "google/protobuf/any.proto"; import "gogoproto/gogo.proto"; -import "cosmos/auth/auth.proto"; +import "cosmos/auth/v1beta1/auth.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/auth/types"; diff --git a/proto/cosmos/auth/query.proto b/proto/cosmos/auth/v1beta1/query.proto similarity index 91% rename from proto/cosmos/auth/query.proto rename to proto/cosmos/auth/v1beta1/query.proto index 94f12fdb34..61812f3593 100644 --- a/proto/cosmos/auth/query.proto +++ b/proto/cosmos/auth/v1beta1/query.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.auth; +package cosmos.auth.v1beta1; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; -import "cosmos/auth/auth.proto"; +import "cosmos/auth/v1beta1/auth.proto"; import "cosmos_proto/cosmos.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/auth/types"; @@ -35,5 +35,5 @@ message QueryParamsRequest{ } // QueryParamsResponse is the response type for the Query/Params RPC method. message QueryParamsResponse{ // params defines the parameters of the module. - cosmos.auth.Params params = 1 [(gogoproto.nullable) = false]; + Params params = 1 [(gogoproto.nullable) = false]; } diff --git a/proto/cosmos/bank/bank.proto b/proto/cosmos/bank/v1beta1/bank.proto similarity index 69% rename from proto/cosmos/bank/bank.proto rename to proto/cosmos/bank/v1beta1/bank.proto index 34ff7017c4..66c905c845 100644 --- a/proto/cosmos/bank/bank.proto +++ b/proto/cosmos/bank/v1beta1/bank.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.bank; +package cosmos.bank.v1beta1; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; -import "cosmos/cosmos.proto"; +import "cosmos/base/v1beta1/coin.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/bank/types"; @@ -26,28 +26,12 @@ message SendEnabled { bool enabled = 2; } -// MsgSend - high level transaction of the coin module -message MsgSend { - option (gogoproto.equal) = true; - - bytes from_address = 1 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", - (gogoproto.moretags) = "yaml:\"from_address\"" - ]; - bytes to_address = 2 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", - (gogoproto.moretags) = "yaml:\"to_address\"" - ]; - repeated cosmos.Coin amount = 3 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; -} - // Input models transaction input message Input { option (gogoproto.equal) = true; bytes address = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - repeated cosmos.Coin coins = 2 + repeated cosmos.base.v1beta1.Coin coins = 2 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } @@ -56,18 +40,10 @@ message Output { option (gogoproto.equal) = true; bytes address = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - repeated cosmos.Coin coins = 2 + repeated cosmos.base.v1beta1.Coin coins = 2 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } -// MsgMultiSend - high level transaction of the coin module -message MsgMultiSend { - option (gogoproto.equal) = true; - - repeated Input inputs = 1 [(gogoproto.nullable) = false]; - repeated Output outputs = 2 [(gogoproto.nullable) = false]; -} - // Supply represents a struct that passively keeps track of the total supply // amounts in the network. message Supply { @@ -76,7 +52,7 @@ message Supply { option (gogoproto.goproto_stringer) = false; option (cosmos_proto.implements_interface) = "*github.com/cosmos/cosmos-sdk/x/bank/exported.SupplyI"; - repeated cosmos.Coin total = 1 + repeated cosmos.base.v1beta1.Coin total = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } diff --git a/proto/cosmos/bank/genesis.proto b/proto/cosmos/bank/v1beta1/genesis.proto similarity index 83% rename from proto/cosmos/bank/genesis.proto rename to proto/cosmos/bank/v1beta1/genesis.proto index 4faffc94f2..b8dc68f925 100644 --- a/proto/cosmos/bank/genesis.proto +++ b/proto/cosmos/bank/v1beta1/genesis.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.bank; +package cosmos.bank.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos/cosmos.proto"; -import "cosmos/bank/bank.proto"; +import "cosmos/base/v1beta1/coin.proto"; +import "cosmos/bank/v1beta1/bank.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/bank/types"; @@ -19,7 +19,7 @@ message GenesisState { (gogoproto.nullable) = false ]; - repeated cosmos.Coin supply = 3 [ + repeated cosmos.base.v1beta1.Coin supply = 3 [ (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", (gogoproto.nullable) = false ]; @@ -38,7 +38,7 @@ message Balance { bytes address = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - repeated cosmos.Coin coins = 2 [ + repeated cosmos.base.v1beta1.Coin coins = 2 [ (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", (gogoproto.nullable) = false ]; diff --git a/proto/cosmos/bank/query.proto b/proto/cosmos/bank/v1beta1/query.proto similarity index 86% rename from proto/cosmos/bank/query.proto rename to proto/cosmos/bank/v1beta1/query.proto index af7ce6e5b0..6d2bd32cf9 100644 --- a/proto/cosmos/bank/query.proto +++ b/proto/cosmos/bank/v1beta1/query.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.bank; +package cosmos.bank.v1beta1; -import "cosmos/query/pagination.proto"; +import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; -import "cosmos/cosmos.proto"; +import "cosmos/base/v1beta1/coin.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/bank/types"; @@ -34,7 +34,7 @@ message QueryBalanceRequest { // QueryBalanceResponse is the response type for the Query/Balance RPC method. message QueryBalanceResponse { // balance is the balance of the coin. - cosmos.Coin balance = 1; + cosmos.base.v1beta1.Coin balance = 1; } // QueryBalanceRequest is the request type for the Query/AllBalances RPC method. @@ -43,18 +43,19 @@ message QueryAllBalancesRequest { bytes address = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + // pagination defines an optional pagination for the request. - cosmos.query.PageRequest pagination = 2; + cosmos.base.query.v1beta1.PageRequest pagination = 2; } // QueryAllBalancesResponse is the response type for the Query/AllBalances RPC method. message QueryAllBalancesResponse { // balances is the balances of all the coins. - repeated cosmos.Coin balances = 1 + repeated cosmos.base.v1beta1.Coin balances = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; // pagination defines the pagination in the response. - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; } // QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC method. @@ -63,7 +64,7 @@ message QueryTotalSupplyRequest {} // QueryTotalSupplyResponse is the response type for the Query/TotalSupply RPC method message QueryTotalSupplyResponse { // supply is the supply of the coins - repeated cosmos.Coin supply = 1 + repeated cosmos.base.v1beta1.Coin supply = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } @@ -76,6 +77,6 @@ message QuerySupplyOfRequest { // QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method. message QuerySupplyOfResponse { // amount is the supply of the coin. - cosmos.Coin amount = 1 + cosmos.base.v1beta1.Coin amount = 1 [(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Coin", (gogoproto.nullable) = false]; } diff --git a/proto/cosmos/bank/v1beta1/tx.proto b/proto/cosmos/bank/v1beta1/tx.proto new file mode 100644 index 0000000000..17e0c96142 --- /dev/null +++ b/proto/cosmos/bank/v1beta1/tx.proto @@ -0,0 +1,32 @@ +syntax = "proto3"; +package cosmos.bank.v1beta1; + +import "gogoproto/gogo.proto"; +import "cosmos/base/v1beta1/coin.proto"; +import "cosmos/bank/v1beta1/bank.proto"; + +option go_package = "github.com/cosmos/cosmos-sdk/x/bank/types"; + +// MsgSend - high level transaction of the coin module +message MsgSend { + option (gogoproto.equal) = true; + + bytes from_address = 1 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", + (gogoproto.moretags) = "yaml:\"from_address\"" + ]; + bytes to_address = 2 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", + (gogoproto.moretags) = "yaml:\"to_address\"" + ]; + repeated cosmos.base.v1beta1.Coin amount = 3 + [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; +} + +// MsgMultiSend - high level transaction of the coin module +message MsgMultiSend { + option (gogoproto.equal) = true; + + repeated Input inputs = 1 [(gogoproto.nullable) = false]; + repeated Output outputs = 2 [(gogoproto.nullable) = false]; +} \ No newline at end of file diff --git a/proto/cosmos/cosmos.proto b/proto/cosmos/base/abci/v1beta1/abci.proto similarity index 68% rename from proto/cosmos/cosmos.proto rename to proto/cosmos/base/abci/v1beta1/abci.proto index 595d23c5f2..3408443b41 100644 --- a/proto/cosmos/cosmos.proto +++ b/proto/cosmos/base/abci/v1beta1/abci.proto @@ -1,51 +1,71 @@ syntax = "proto3"; -package cosmos; +package cosmos.base.abci.v1beta1; -import "gogoproto/gogo.proto"; import "tendermint/abci/types/types.proto"; +import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; option go_package = "github.com/cosmos/cosmos-sdk/types"; option (gogoproto.goproto_stringer_all) = false; -option (gogoproto.stringer_all) = false; -// Coin defines a token with a denomination and an amount. -// -// NOTE: The amount field is an Int which implements the custom method -// signatures required by gogoproto. -message Coin { - option (gogoproto.equal) = true; - string denom = 1; - string amount = 2 [(gogoproto.customtype) = "Int", (gogoproto.nullable) = false]; +// TxResponse defines a structure containing relevant tx data and metadata. The +// tags are stringified and the log is JSON decoded. +message TxResponse { + option (gogoproto.goproto_getters) = false; + // The block height + int64 height = 1; + // The transaction hash. + string txhash = 2 [(gogoproto.customname) = "TxHash"]; + // Namespace for the Code + string codespace = 3; + // Response code. + uint32 code = 4; + // Result bytes, if any. + string data = 5; + // The output of the application's logger (raw string). May be non-deterministic. + string raw_log = 6; + // The output of the application's logger (typed). May be non-deterministic. + repeated ABCIMessageLog logs = 7 [(gogoproto.castrepeated) = "ABCIMessageLogs", (gogoproto.nullable) = false]; + // Additional information. May be non-deterministic. + string info = 8; + // Amount of gas requested for transaction. + int64 gas_wanted = 9; + // Amount of gas consumed by transaction. + int64 gas_used = 10; + // The request transaction bytes. + google.protobuf.Any tx = 11; + // Time of the previous block. For heights > 1, it's the weighted median of the + // timestamps of the valid votes in the block.LastCommit. For height == 1, it's genesis time. + string timestamp = 12; } -// DecCoin defines a token with a denomination and a decimal amount. -// -// NOTE: The amount field is an Dec which implements the custom method -// signatures required by gogoproto. -message DecCoin { - option (gogoproto.equal) = true; - - string denom = 1; - string amount = 2 [(gogoproto.customtype) = "Dec", (gogoproto.nullable) = false]; -} - -// IntProto defines a Protobuf wrapper around an Int object. -message IntProto { - string int = 1 [(gogoproto.customtype) = "Int", (gogoproto.nullable) = false]; -} - -// DecProto defines a Protobuf wrapper around a Dec object. -message DecProto { - string dec = 1 [(gogoproto.customtype) = "Dec", (gogoproto.nullable) = false]; -} - -// ValAddresses defines a repeated set of validator addresses. -message ValAddresses { +// ABCIMessageLog defines a structure containing an indexed tx ABCI message log. +message ABCIMessageLog { option (gogoproto.stringer) = true; - repeated bytes addresses = 1 [(gogoproto.casttype) = "ValAddress"]; + uint32 msg_index = 1; + string log = 2; + + // Events contains a slice of Event objects that were emitted during some + // execution. + repeated StringEvent events = 3 [(gogoproto.castrepeated) = "StringEvents", (gogoproto.nullable) = false]; +} + +// StringEvent defines en Event object wrapper where all the attributes +// contain key/value pairs that are strings instead of raw bytes. +message StringEvent { + option (gogoproto.stringer) = true; + + string type = 1; + repeated Attribute attributes = 2 [(gogoproto.nullable) = false]; +} + +// Attribute defines an attribute wrapper where the key and value are +// strings instead of raw bytes. +message Attribute { + string key = 1; + string value = 2; } // GasInfo defines tx execution gas context. @@ -88,57 +108,10 @@ message MsgData { bytes data = 2; } -// TxData defines a list of MsgData. A transaction will have a MsgData object for +// TxMsgData defines a list of MsgData. A transaction will have a MsgData object for // each message. -message TxData { +message TxMsgData { option (gogoproto.stringer) = true; repeated MsgData data = 1; -} - -// TxResponse defines a structure containing relevant tx data and metadata. The -// tags are stringified and the log is JSON decoded. -message TxResponse { - option (gogoproto.goproto_getters) = false; - - int64 height = 1; - string txhash = 2 [(gogoproto.customname) = "TxHash"]; - string codespace = 3; - uint32 code = 4; - string data = 5; - string raw_log = 6; - repeated ABCIMessageLog logs = 7 [(gogoproto.castrepeated) = "ABCIMessageLogs", (gogoproto.nullable) = false]; - string info = 8; - int64 gas_wanted = 9; - int64 gas_used = 10; - google.protobuf.Any tx = 11; - string timestamp = 12; -} - -// ABCIMessageLog defines a structure containing an indexed tx ABCI message log. -message ABCIMessageLog { - option (gogoproto.stringer) = true; - - uint32 msg_index = 1; - string log = 2; - - // Events contains a slice of Event objects that were emitted during some - // execution. - repeated StringEvent events = 3 [(gogoproto.castrepeated) = "StringEvents", (gogoproto.nullable) = false]; -} - -// StringAttribute defines en Event object wrapper where all the attributes -// contain key/value pairs that are strings instead of raw bytes. -message StringEvent { - option (gogoproto.stringer) = true; - - string type = 1; - repeated Attribute attributes = 2 [(gogoproto.nullable) = false]; -} - -// Attribute defines an attribute wrapper where the key and value are -// strings instead of raw bytes. -message Attribute { - string key = 1; - string value = 2; } \ No newline at end of file diff --git a/proto/cosmos/crypto/crypto.proto b/proto/cosmos/base/crypto/v1beta1/crypto.proto similarity index 92% rename from proto/cosmos/crypto/crypto.proto rename to proto/cosmos/base/crypto/v1beta1/crypto.proto index 7c5e312804..4ae4c0303a 100644 --- a/proto/cosmos/crypto/crypto.proto +++ b/proto/cosmos/base/crypto/v1beta1/crypto.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.crypto; +package cosmos.base.crypto.v1beta1; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; @@ -30,8 +30,8 @@ message PubKeyMultisigThreshold { } // MultiSignature wraps the signatures from a PubKeyMultisigThreshold. -// See cosmos_sdk.tx.v1.ModeInfo.Multi for how to specify which signers signed -// and with which modes +// See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers signed and +// with which modes. message MultiSignature { option (gogoproto.goproto_unrecognized) = true; repeated bytes signatures = 1; diff --git a/proto/cosmos/kv/kv.proto b/proto/cosmos/base/kv/v1beta1/kv.proto similarity index 91% rename from proto/cosmos/kv/kv.proto rename to proto/cosmos/base/kv/v1beta1/kv.proto index edad83cb54..4e9b8d2850 100644 --- a/proto/cosmos/kv/kv.proto +++ b/proto/cosmos/base/kv/v1beta1/kv.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.kv; +package cosmos.base.kv.v1beta1; import "gogoproto/gogo.proto"; diff --git a/proto/cosmos/query/pagination.proto b/proto/cosmos/base/query/v1beta1/pagination.proto similarity index 97% rename from proto/cosmos/query/pagination.proto rename to proto/cosmos/base/query/v1beta1/pagination.proto index bf8874e577..486a9759ad 100644 --- a/proto/cosmos/query/pagination.proto +++ b/proto/cosmos/base/query/v1beta1/pagination.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.query; +package cosmos.base.query.v1beta1; option go_package = "github.com/cosmos/cosmos-sdk/types/query"; diff --git a/proto/cosmos/store/commit_info.proto b/proto/cosmos/base/store/v1beta1/commit_info.proto similarity index 95% rename from proto/cosmos/store/commit_info.proto rename to proto/cosmos/base/store/v1beta1/commit_info.proto index f6720e439e..812d9ec945 100644 --- a/proto/cosmos/store/commit_info.proto +++ b/proto/cosmos/base/store/v1beta1/commit_info.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.store; +package cosmos.base.store.v1beta1; import "gogoproto/gogo.proto"; diff --git a/proto/cosmos/base/v1beta1/coin.proto b/proto/cosmos/base/v1beta1/coin.proto new file mode 100644 index 0000000000..fab75284b7 --- /dev/null +++ b/proto/cosmos/base/v1beta1/coin.proto @@ -0,0 +1,40 @@ +syntax = "proto3"; +package cosmos.base.v1beta1; + +import "gogoproto/gogo.proto"; + +option go_package = "github.com/cosmos/cosmos-sdk/types"; +option (gogoproto.goproto_stringer_all) = false; +option (gogoproto.stringer_all) = false; + +// Coin defines a token with a denomination and an amount. +// +// NOTE: The amount field is an Int which implements the custom method +// signatures required by gogoproto. +message Coin { + option (gogoproto.equal) = true; + + string denom = 1; + string amount = 2 [(gogoproto.customtype) = "Int", (gogoproto.nullable) = false]; +} + +// DecCoin defines a token with a denomination and a decimal amount. +// +// NOTE: The amount field is an Dec which implements the custom method +// signatures required by gogoproto. +message DecCoin { + option (gogoproto.equal) = true; + + string denom = 1; + string amount = 2 [(gogoproto.customtype) = "Dec", (gogoproto.nullable) = false]; +} + +// IntProto defines a Protobuf wrapper around an Int object. +message IntProto { + string int = 1 [(gogoproto.customtype) = "Int", (gogoproto.nullable) = false]; +} + +// DecProto defines a Protobuf wrapper around a Dec object. +message DecProto { + string dec = 1 [(gogoproto.customtype) = "Dec", (gogoproto.nullable) = false]; +} diff --git a/proto/cosmos/capability/capability.proto b/proto/cosmos/capability/v1beta1/capability.proto similarity index 96% rename from proto/cosmos/capability/capability.proto rename to proto/cosmos/capability/v1beta1/capability.proto index 977006cc02..f1b9c43e51 100644 --- a/proto/cosmos/capability/capability.proto +++ b/proto/cosmos/capability/v1beta1/capability.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.capability; +package cosmos.capability.v1beta1; option go_package = "github.com/cosmos/cosmos-sdk/x/capability/types"; diff --git a/proto/cosmos/capability/genesis.proto b/proto/cosmos/capability/v1beta1/genesis.proto similarity index 89% rename from proto/cosmos/capability/genesis.proto rename to proto/cosmos/capability/v1beta1/genesis.proto index a61fb2c922..5ec71406b2 100644 --- a/proto/cosmos/capability/genesis.proto +++ b/proto/cosmos/capability/v1beta1/genesis.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package cosmos.capability; +package cosmos.capability.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos/capability/capability.proto"; +import "cosmos/capability/v1beta1/capability.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/capability/types"; diff --git a/proto/cosmos/crisis/genesis.proto b/proto/cosmos/crisis/v1beta1/genesis.proto similarity index 74% rename from proto/cosmos/crisis/genesis.proto rename to proto/cosmos/crisis/v1beta1/genesis.proto index ff0a8e587e..166a5559d9 100644 --- a/proto/cosmos/crisis/genesis.proto +++ b/proto/cosmos/crisis/v1beta1/genesis.proto @@ -1,14 +1,14 @@ syntax = "proto3"; -package cosmos.crisis; +package cosmos.crisis.v1beta1; option go_package = "github.com/cosmos/cosmos-sdk/x/crisis/types"; import "gogoproto/gogo.proto"; -import "cosmos/cosmos.proto"; +import "cosmos/base/v1beta1/coin.proto"; // GenesisState - genesis state of x/crisis message GenesisState { - cosmos.Coin constant_fee = 3 [ + cosmos.base.v1beta1.Coin constant_fee = 3 [ (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Coin", (gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"constant_fee\"" diff --git a/proto/cosmos/crisis/crisis.proto b/proto/cosmos/crisis/v1beta1/tx.proto similarity index 94% rename from proto/cosmos/crisis/crisis.proto rename to proto/cosmos/crisis/v1beta1/tx.proto index 76953662ce..ff44db6977 100644 --- a/proto/cosmos/crisis/crisis.proto +++ b/proto/cosmos/crisis/v1beta1/tx.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.crisis; +package cosmos.crisis.v1beta1; option go_package = "github.com/cosmos/cosmos-sdk/x/crisis/types"; diff --git a/proto/cosmos/distribution/distribution.proto b/proto/cosmos/distribution/v1beta1/distribution.proto similarity index 74% rename from proto/cosmos/distribution/distribution.proto rename to proto/cosmos/distribution/v1beta1/distribution.proto index 92f5a38302..7aace2071f 100644 --- a/proto/cosmos/distribution/distribution.proto +++ b/proto/cosmos/distribution/v1beta1/distribution.proto @@ -1,53 +1,11 @@ syntax = "proto3"; -package cosmos.distribution; +package cosmos.distribution.v1beta1; option go_package = "github.com/cosmos/cosmos-sdk/x/distribution/types"; option (gogoproto.equal_all) = true; import "gogoproto/gogo.proto"; -import "cosmos/cosmos.proto"; - -// msg struct for changing the withdraw address for a delegator (or validator self-delegation) -message MsgSetWithdrawAddress { - bytes delegator_address = 1 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", - (gogoproto.moretags) = "yaml:\"delegator_address\"" - ]; - bytes withdraw_address = 2 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", - (gogoproto.moretags) = "yaml:\"withdraw_address\"" - ]; -} - -// msg struct for delegation withdraw from a single validator -message MsgWithdrawDelegatorReward { - bytes delegator_address = 1 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", - (gogoproto.moretags) = "yaml:\"delegator_address\"" - ]; - bytes validator_address = 2 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", - (gogoproto.moretags) = "yaml:\"validator_address\"" - ]; -} - -// msg struct for validator withdraw -message MsgWithdrawValidatorCommission { - bytes validator_address = 1 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", - (gogoproto.moretags) = "yaml:\"validator_address\"" - ]; -} - -// MsgFundCommunityPool defines a Msg type that allows an account to directly -// fund the community pool. -message MsgFundCommunityPool { - repeated cosmos.Coin amount = 1 [ - (gogoproto.nullable) = false, - (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" - ]; - bytes depositor = 2 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; -} +import "cosmos/base/v1beta1/coin.proto"; // Params defines the set of distribution parameters. message Params { @@ -83,7 +41,7 @@ message Params { // + number of slashes which ended the associated period (and might need to read that record) // + one per validator for the zeroeth period, set on initialization message ValidatorHistoricalRewards { - repeated cosmos.DecCoin cumulative_reward_ratio = 1 [ + repeated cosmos.base.v1beta1.DecCoin cumulative_reward_ratio = 1 [ (gogoproto.moretags) = "yaml:\"cumulative_reward_ratio\"", (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.DecCoins", (gogoproto.nullable) = false @@ -95,7 +53,7 @@ message ValidatorHistoricalRewards { // kept as a running counter and incremented each block // as long as the validator's tokens remain constant message ValidatorCurrentRewards { - repeated cosmos.DecCoin rewards = 1 [ + repeated cosmos.base.v1beta1.DecCoin rewards = 1 [ (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.DecCoins", (gogoproto.nullable) = false ]; @@ -105,7 +63,7 @@ message ValidatorCurrentRewards { // accumulated commission for a validator // kept as a running counter, can be withdrawn at any time message ValidatorAccumulatedCommission { - repeated cosmos.DecCoin commission = 1 [ + repeated cosmos.base.v1beta1.DecCoin commission = 1 [ (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.DecCoins", (gogoproto.nullable) = false ]; @@ -114,7 +72,7 @@ message ValidatorAccumulatedCommission { // outstanding (un-withdrawn) rewards for a validator // inexpensive to track, allows simple sanity checks message ValidatorOutstandingRewards { - repeated cosmos.DecCoin rewards = 1 [ + repeated cosmos.base.v1beta1.DecCoin rewards = 1 [ (gogoproto.moretags) = "yaml:\"rewards\"", (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.DecCoins", (gogoproto.nullable) = false @@ -142,7 +100,7 @@ message ValidatorSlashEvents { // global fee pool for distribution message FeePool { - repeated cosmos.DecCoin community_pool = 1 [ + repeated cosmos.base.v1beta1.DecCoin community_pool = 1 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.DecCoins", (gogoproto.moretags) = "yaml:\"community_pool\"" @@ -156,7 +114,7 @@ message CommunityPoolSpendProposal { string title = 1; string description = 2; bytes recipient = 3 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - repeated cosmos.Coin amount = 4 [ + repeated cosmos.base.v1beta1.Coin amount = 4 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" ]; @@ -188,7 +146,7 @@ message DelegationDelegatorReward { (gogoproto.moretags) = "yaml:\"validator_address\"" ]; - repeated cosmos.DecCoin reward = 2 [ + repeated cosmos.base.v1beta1.DecCoin reward = 2 [ (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.DecCoins", (gogoproto.nullable) = false ]; diff --git a/proto/cosmos/distribution/genesis.proto b/proto/cosmos/distribution/v1beta1/genesis.proto similarity index 96% rename from proto/cosmos/distribution/genesis.proto rename to proto/cosmos/distribution/v1beta1/genesis.proto index d609659a3c..9fe0a4bd63 100644 --- a/proto/cosmos/distribution/genesis.proto +++ b/proto/cosmos/distribution/v1beta1/genesis.proto @@ -1,12 +1,12 @@ syntax = "proto3"; -package cosmos.distribution; +package cosmos.distribution.v1beta1; option go_package = "github.com/cosmos/cosmos-sdk/x/distribution/types"; option (gogoproto.equal_all) = true; import "gogoproto/gogo.proto"; -import "cosmos/cosmos.proto"; -import "cosmos/distribution/distribution.proto"; +import "cosmos/base/v1beta1/coin.proto"; +import "cosmos/distribution/v1beta1/distribution.proto"; // genesis types @@ -33,7 +33,7 @@ message ValidatorOutstandingRewardsRecord { (gogoproto.moretags) = "yaml:\"validator_address\"" ]; - repeated cosmos.DecCoin outstanding_rewards = 2 [ + repeated cosmos.base.v1beta1.DecCoin outstanding_rewards = 2 [ (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.DecCoins", (gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"outstanding_rewards\"" diff --git a/proto/cosmos/distribution/query.proto b/proto/cosmos/distribution/v1beta1/query.proto similarity index 94% rename from proto/cosmos/distribution/query.proto rename to proto/cosmos/distribution/v1beta1/query.proto index 869767f828..d047f3876b 100644 --- a/proto/cosmos/distribution/query.proto +++ b/proto/cosmos/distribution/v1beta1/query.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package cosmos.distribution; +package cosmos.distribution.v1beta1; -import "cosmos/query/pagination.proto"; +import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; -import "cosmos/cosmos.proto"; -import "cosmos/distribution/distribution.proto"; +import "cosmos/base/v1beta1/coin.proto"; +import "cosmos/distribution/v1beta1/distribution.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/distribution/types"; @@ -79,7 +79,7 @@ message QueryValidatorSlashesRequest { // starting_height defines the optional ending height to query the slashes. uint64 ending_height = 3; // pagination defines an optional pagination for the request. - cosmos.query.PageRequest pagination = 4; + cosmos.base.query.v1beta1.PageRequest pagination = 4; } // QueryValidatorSlashesResponse is the response type for the Query/ValidatorSlashes RPC method. @@ -88,7 +88,7 @@ message QueryValidatorSlashesResponse { repeated ValidatorSlashEvent slashes = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; } // QueryDelegationRewardsRequest is the request type for the Query/DelegationRewards RPC method. @@ -102,7 +102,7 @@ message QueryDelegationRewardsRequest { // QueryDelegationRewardsResponse is the response type for the Query/DelegationRewards RPC method. message QueryDelegationRewardsResponse { // rewards defines the rewards accrued by a delegation. - repeated cosmos.DecCoin rewards = 1 [ + repeated cosmos.base.v1beta1.DecCoin rewards = 1 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.DecCoins" ]; @@ -119,7 +119,7 @@ message QueryDelegationTotalRewardsResponse { // rewards defines all the rewards accrued by a delegator. repeated DelegationDelegatorReward rewards = 1 [(gogoproto.nullable) = false]; // total defines the sum of all the rewards. - repeated cosmos.DecCoin total = 2 [ + repeated cosmos.base.v1beta1.DecCoin total = 2 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.DecCoins" ]; @@ -155,7 +155,7 @@ message QueryCommunityPoolRequest {} // QueryCommunityPoolResponse is the response type for the Query/CommunityPool RPC method. message QueryCommunityPoolResponse { // pool defines community pool's coins. - repeated cosmos.DecCoin pool = 1 [ + repeated cosmos.base.v1beta1.DecCoin pool = 1 [ (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.DecCoins", (gogoproto.nullable) = false ]; diff --git a/proto/cosmos/distribution/v1beta1/tx.proto b/proto/cosmos/distribution/v1beta1/tx.proto new file mode 100644 index 0000000000..3887d8aa37 --- /dev/null +++ b/proto/cosmos/distribution/v1beta1/tx.proto @@ -0,0 +1,50 @@ +syntax = "proto3"; +package cosmos.distribution.v1beta1; + +option go_package = "github.com/cosmos/cosmos-sdk/x/distribution/types"; +option (gogoproto.equal_all) = true; + +import "gogoproto/gogo.proto"; +import "cosmos/base/v1beta1/coin.proto"; + +// msg struct for changing the withdraw address for a delegator (or validator self-delegation) +message MsgSetWithdrawAddress { + bytes delegator_address = 1 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", + (gogoproto.moretags) = "yaml:\"delegator_address\"" + ]; + bytes withdraw_address = 2 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", + (gogoproto.moretags) = "yaml:\"withdraw_address\"" + ]; +} + +// msg struct for delegation withdraw from a single validator +message MsgWithdrawDelegatorReward { + bytes delegator_address = 1 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", + (gogoproto.moretags) = "yaml:\"delegator_address\"" + ]; + bytes validator_address = 2 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", + (gogoproto.moretags) = "yaml:\"validator_address\"" + ]; +} + +// msg struct for validator withdraw +message MsgWithdrawValidatorCommission { + bytes validator_address = 1 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", + (gogoproto.moretags) = "yaml:\"validator_address\"" + ]; +} + +// MsgFundCommunityPool defines a Msg type that allows an account to directly +// fund the community pool. +message MsgFundCommunityPool { + repeated cosmos.base.v1beta1.Coin amount = 1 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" + ]; + bytes depositor = 2 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; +} \ No newline at end of file diff --git a/proto/cosmos/evidence/evidence.proto b/proto/cosmos/evidence/v1beta1/evidence.proto similarity index 65% rename from proto/cosmos/evidence/evidence.proto rename to proto/cosmos/evidence/v1beta1/evidence.proto index 94e3728fef..6d6fa2d029 100644 --- a/proto/cosmos/evidence/evidence.proto +++ b/proto/cosmos/evidence/v1beta1/evidence.proto @@ -1,21 +1,11 @@ syntax = "proto3"; -package cosmos.evidence; +package cosmos.evidence.v1beta1; option go_package = "github.com/cosmos/cosmos-sdk/x/evidence/types"; option (gogoproto.equal_all) = true; import "gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; -import "google/protobuf/any.proto"; -import "cosmos_proto/cosmos.proto"; - -// MsgSubmitEvidence defines an sdk.Msg type that supports submitting arbitrary -// Evidence. -message MsgSubmitEvidence { - option (gogoproto.goproto_getters) = false; - bytes submitter = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - google.protobuf.Any evidence = 2 [(cosmos_proto.accepts_interface) = "Evidence"]; -} // Equivocation implements the Evidence interface and defines evidence of double // signing misbehavior. @@ -30,4 +20,4 @@ message Equivocation { (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ConsAddress", (gogoproto.moretags) = "yaml:\"consensus_address\"" ]; -} +} \ No newline at end of file diff --git a/proto/cosmos/evidence/genesis.proto b/proto/cosmos/evidence/v1beta1/genesis.proto similarity index 88% rename from proto/cosmos/evidence/genesis.proto rename to proto/cosmos/evidence/v1beta1/genesis.proto index 8d9f9feb71..2d38c5f064 100644 --- a/proto/cosmos/evidence/genesis.proto +++ b/proto/cosmos/evidence/v1beta1/genesis.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.evidence; +package cosmos.evidence.v1beta1; option go_package = "github.com/cosmos/cosmos-sdk/x/evidence/types"; diff --git a/proto/cosmos/evidence/query.proto b/proto/cosmos/evidence/v1beta1/query.proto similarity index 83% rename from proto/cosmos/evidence/query.proto rename to proto/cosmos/evidence/v1beta1/query.proto index 51c7c2cf7f..9f772d829f 100644 --- a/proto/cosmos/evidence/query.proto +++ b/proto/cosmos/evidence/v1beta1/query.proto @@ -1,7 +1,7 @@ syntax = "proto3"; -package cosmos.evidence; +package cosmos.evidence.v1beta1; -import "cosmos/query/pagination.proto"; +import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; @@ -30,8 +30,8 @@ message QueryEvidenceResponse { // QueryEvidenceRequest is the request type for the Query/AllEvidence RPC method. message QueryAllEvidenceRequest { -// pagination defines an optional pagination for the request. - cosmos.query.PageRequest pagination = 1; + // pagination defines an optional pagination for the request. + cosmos.base.query.v1beta1.PageRequest pagination = 1; } // QueryAllEvidenceResponse is the response type for the Query/AllEvidence RPC method. @@ -40,5 +40,5 @@ message QueryAllEvidenceResponse { repeated google.protobuf.Any evidence = 1; // pagination defines the pagination in the response. - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; } diff --git a/proto/cosmos/evidence/v1beta1/tx.proto b/proto/cosmos/evidence/v1beta1/tx.proto new file mode 100644 index 0000000000..664924638a --- /dev/null +++ b/proto/cosmos/evidence/v1beta1/tx.proto @@ -0,0 +1,17 @@ +syntax = "proto3"; +package cosmos.evidence.v1beta1; + +option go_package = "github.com/cosmos/cosmos-sdk/x/evidence/types"; +option (gogoproto.equal_all) = true; + +import "gogoproto/gogo.proto"; +import "google/protobuf/any.proto"; +import "cosmos_proto/cosmos.proto"; + +// MsgSubmitEvidence defines an sdk.Msg type that supports submitting arbitrary +// Evidence. +message MsgSubmitEvidence { + option (gogoproto.goproto_getters) = false; + bytes submitter = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + google.protobuf.Any evidence = 2 [(cosmos_proto.accepts_interface) = "Evidence"]; +} diff --git a/proto/cosmos/genutil/genesis.proto b/proto/cosmos/genutil/v1beta1/genesis.proto similarity index 92% rename from proto/cosmos/genutil/genesis.proto rename to proto/cosmos/genutil/v1beta1/genesis.proto index 6092644ead..1590220d8c 100644 --- a/proto/cosmos/genutil/genesis.proto +++ b/proto/cosmos/genutil/v1beta1/genesis.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.genutil; +package cosmos.genutil.v1beta1; import "gogoproto/gogo.proto"; diff --git a/proto/cosmos/gov/genesis.proto b/proto/cosmos/gov/v1beta1/genesis.proto similarity index 94% rename from proto/cosmos/gov/genesis.proto rename to proto/cosmos/gov/v1beta1/genesis.proto index e785d76934..b1c4c6dac0 100644 --- a/proto/cosmos/gov/genesis.proto +++ b/proto/cosmos/gov/v1beta1/genesis.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.gov; +package cosmos.gov.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos/gov/gov.proto"; +import "cosmos/gov/v1beta1/gov.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/gov/types"; diff --git a/proto/cosmos/gov/gov.proto b/proto/cosmos/gov/v1beta1/gov.proto similarity index 82% rename from proto/cosmos/gov/gov.proto rename to proto/cosmos/gov/v1beta1/gov.proto index ea47e818d9..c6c42d30c5 100644 --- a/proto/cosmos/gov/gov.proto +++ b/proto/cosmos/gov/v1beta1/gov.proto @@ -1,7 +1,7 @@ syntax = "proto3"; -package cosmos.gov; +package cosmos.gov.v1beta1; -import "cosmos/cosmos.proto"; +import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; import "google/protobuf/timestamp.proto"; @@ -13,47 +13,6 @@ option (gogoproto.goproto_stringer_all) = false; option (gogoproto.stringer_all) = false; option (gogoproto.goproto_getters_all) = false; -// MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary -// proposal Content. -message MsgSubmitProposal { - option (gogoproto.equal) = true; - - google.protobuf.Any content = 1 [(cosmos_proto.accepts_interface) = "Content"]; - repeated cosmos.Coin initial_deposit = 2 [ - (gogoproto.nullable) = false, - (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", - (gogoproto.moretags) = "yaml:\"initial_deposit\"" - ]; - bytes proposer = 3 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; -} - -// MsgVote defines a message to cast a vote -message MsgVote { - option (gogoproto.equal) = true; - - uint64 proposal_id = 1 [ - (gogoproto.jsontag) = "proposal_id", - (gogoproto.customname) = "ProposalID", - (gogoproto.moretags) = "yaml:\"proposal_id\"" - ]; - bytes voter = 2 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - VoteOption option = 3; -} - -// MsgDeposit defines a message to submit a deposit to an existing proposal -message MsgDeposit { - option (gogoproto.equal) = true; - - uint64 proposal_id = 1 [ - (gogoproto.jsontag) = "proposal_id", - (gogoproto.customname) = "ProposalID", - (gogoproto.moretags) = "yaml:\"proposal_id\"" - ]; - bytes depositor = 2 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - repeated cosmos.Coin amount = 3 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; -} - // VoteOption defines a vote option enum VoteOption { option (gogoproto.enum_stringer) = false; @@ -89,7 +48,7 @@ message Deposit { uint64 proposal_id = 1 [(gogoproto.customname) = "ProposalID", (gogoproto.moretags) = "yaml:\"proposal_id\""]; bytes depositor = 2 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - repeated cosmos.Coin amount = 3 + repeated cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } @@ -107,7 +66,7 @@ message Proposal { [(gogoproto.stdtime) = true, (gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"submit_time\""]; google.protobuf.Timestamp deposit_end_time = 6 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"deposit_end_time\""]; - repeated cosmos.Coin total_deposit = 7 [ + repeated cosmos.base.v1beta1.Coin total_deposit = 7 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", (gogoproto.moretags) = "yaml:\"total_deposit\"" @@ -165,7 +124,7 @@ message Vote { // DepositParams defines the params around deposits for governance message DepositParams { // Minimum deposit for a proposal to enter voting period. - repeated cosmos.Coin min_deposit = 1 [ + repeated cosmos.base.v1beta1.Coin min_deposit = 1 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", (gogoproto.moretags) = "yaml:\"min_deposit\"", diff --git a/proto/cosmos/gov/query.proto b/proto/cosmos/gov/v1beta1/query.proto similarity index 92% rename from proto/cosmos/gov/query.proto rename to proto/cosmos/gov/v1beta1/query.proto index dbbdc8b655..6d0fd4bce0 100644 --- a/proto/cosmos/gov/query.proto +++ b/proto/cosmos/gov/v1beta1/query.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.gov; +package cosmos.gov.v1beta1; -import "cosmos/query/pagination.proto"; +import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; -import "cosmos/gov/gov.proto"; +import "cosmos/gov/v1beta1/gov.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/gov/types"; @@ -57,7 +57,7 @@ message QueryProposalsRequest { bytes depositor = 3 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; // pagination defines an optional pagination for the request. - cosmos.query.PageRequest pagination = 4; + cosmos.base.query.v1beta1.PageRequest pagination = 4; } // QueryProposalsResponse is the response type for the Query/Proposals RPC method. @@ -65,7 +65,7 @@ message QueryProposalsResponse { repeated Proposal proposals = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; } // QueryVoteRequest is the request type for the Query/Vote RPC method. @@ -89,7 +89,7 @@ message QueryVotesRequest { uint64 proposal_id = 1; // pagination defines an optional pagination for the request. - cosmos.query.PageRequest pagination = 2; + cosmos.base.query.v1beta1.PageRequest pagination = 2; } // QueryVotesResponse is the response type for the Query/Votes RPC method. @@ -98,7 +98,7 @@ message QueryVotesResponse { repeated Vote votes = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; } // QueryParamsRequest is the request type for the Query/Params RPC method. @@ -138,7 +138,7 @@ message QueryDepositsRequest { uint64 proposal_id = 1; // pagination defines an optional pagination for the request. - cosmos.query.PageRequest pagination = 2; + cosmos.base.query.v1beta1.PageRequest pagination = 2; } // QueryDepositsResponse is the response type for the Query/Deposits RPC method. @@ -146,7 +146,7 @@ message QueryDepositsResponse { repeated Deposit deposits = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; } // QueryTallyResultRequest is the request type for the Query/Tally RPC method. diff --git a/proto/cosmos/gov/v1beta1/tx.proto b/proto/cosmos/gov/v1beta1/tx.proto new file mode 100644 index 0000000000..f9c55eac9c --- /dev/null +++ b/proto/cosmos/gov/v1beta1/tx.proto @@ -0,0 +1,54 @@ +syntax = "proto3"; +package cosmos.gov.v1beta1; + +import "cosmos/base/v1beta1/coin.proto"; +import "cosmos/gov/v1beta1/gov.proto"; +import "cosmos_proto/cosmos.proto"; +import "gogoproto/gogo.proto"; +import "google/protobuf/any.proto"; + +option go_package = "github.com/cosmos/cosmos-sdk/x/gov/types"; +option (gogoproto.goproto_stringer_all) = false; +option (gogoproto.stringer_all) = false; +option (gogoproto.goproto_getters_all) = false; + +// MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary +// proposal Content. +message MsgSubmitProposal { + option (gogoproto.equal) = true; + + google.protobuf.Any content = 1 [(cosmos_proto.accepts_interface) = "Content"]; + repeated cosmos.base.v1beta1.Coin initial_deposit = 2 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", + (gogoproto.moretags) = "yaml:\"initial_deposit\"" + ]; + bytes proposer = 3 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; +} + +// MsgVote defines a message to cast a vote +message MsgVote { + option (gogoproto.equal) = true; + + uint64 proposal_id = 1 [ + (gogoproto.jsontag) = "proposal_id", + (gogoproto.customname) = "ProposalID", + (gogoproto.moretags) = "yaml:\"proposal_id\"" + ]; + bytes voter = 2 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + VoteOption option = 3; +} + +// MsgDeposit defines a message to submit a deposit to an existing proposal +message MsgDeposit { + option (gogoproto.equal) = true; + + uint64 proposal_id = 1 [ + (gogoproto.jsontag) = "proposal_id", + (gogoproto.customname) = "ProposalID", + (gogoproto.moretags) = "yaml:\"proposal_id\"" + ]; + bytes depositor = 2 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + repeated cosmos.base.v1beta1.Coin amount = 3 + [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; +} \ No newline at end of file diff --git a/proto/cosmos/mint/genesis.proto b/proto/cosmos/mint/v1beta1/genesis.proto similarity index 84% rename from proto/cosmos/mint/genesis.proto rename to proto/cosmos/mint/v1beta1/genesis.proto index 0a066eb1ff..d1d6030b9d 100644 --- a/proto/cosmos/mint/genesis.proto +++ b/proto/cosmos/mint/v1beta1/genesis.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package cosmos.mint; +package cosmos.mint.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos/mint/mint.proto"; +import "cosmos/mint/v1beta1/mint.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/mint/types"; diff --git a/proto/cosmos/mint/mint.proto b/proto/cosmos/mint/v1beta1/mint.proto similarity index 98% rename from proto/cosmos/mint/mint.proto rename to proto/cosmos/mint/v1beta1/mint.proto index e31cbc34f0..b3444a1b8d 100644 --- a/proto/cosmos/mint/mint.proto +++ b/proto/cosmos/mint/v1beta1/mint.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.mint; +package cosmos.mint.v1beta1; option go_package = "github.com/cosmos/cosmos-sdk/x/mint/types"; diff --git a/proto/cosmos/mint/query.proto b/proto/cosmos/mint/v1beta1/query.proto similarity index 96% rename from proto/cosmos/mint/query.proto rename to proto/cosmos/mint/v1beta1/query.proto index cc17c36821..88116295f8 100644 --- a/proto/cosmos/mint/query.proto +++ b/proto/cosmos/mint/v1beta1/query.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package cosmos.mint; +package cosmos.mint.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos/mint/mint.proto"; +import "cosmos/mint/v1beta1/mint.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/mint/types"; diff --git a/proto/cosmos/params/params.proto b/proto/cosmos/params/v1beta1/params.proto similarity index 95% rename from proto/cosmos/params/params.proto rename to proto/cosmos/params/v1beta1/params.proto index b42c7ed577..a44e5ca723 100644 --- a/proto/cosmos/params/params.proto +++ b/proto/cosmos/params/v1beta1/params.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.params; +package cosmos.params.v1beta1; option go_package = "github.com/cosmos/cosmos-sdk/x/params/types/proposal"; option (gogoproto.equal_all) = true; diff --git a/proto/cosmos/params/query.proto b/proto/cosmos/params/v1beta1/query.proto similarity index 85% rename from proto/cosmos/params/query.proto rename to proto/cosmos/params/v1beta1/query.proto index 138eaa087a..c40aab6b77 100644 --- a/proto/cosmos/params/query.proto +++ b/proto/cosmos/params/v1beta1/query.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package cosmos.params; +package cosmos.params.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos/params/params.proto"; +import "cosmos/params/v1beta1/params.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/params/types/proposal"; @@ -24,5 +24,5 @@ message QueryParamsRequest{ // QueryParamsResponse is response type for the Query/Params RPC method. message QueryParamsResponse{ // param defines the queried parameter. - cosmos.params.ParamChange param = 1 [(gogoproto.nullable) = false]; + ParamChange param = 1 [(gogoproto.nullable) = false]; } diff --git a/proto/cosmos/slashing/genesis.proto b/proto/cosmos/slashing/v1beta1/genesis.proto similarity index 93% rename from proto/cosmos/slashing/genesis.proto rename to proto/cosmos/slashing/v1beta1/genesis.proto index 4cf00e2a7b..8b159f86ab 100644 --- a/proto/cosmos/slashing/genesis.proto +++ b/proto/cosmos/slashing/v1beta1/genesis.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package cosmos.slashing; +package cosmos.slashing.v1beta1; option go_package = "github.com/cosmos/cosmos-sdk/x/slashing/types"; import "gogoproto/gogo.proto"; -import "cosmos/slashing/slashing.proto"; +import "cosmos/slashing/v1beta1/slashing.proto"; // GenesisState - all slashing state that must be provided at genesis message GenesisState { diff --git a/proto/cosmos/slashing/query.proto b/proto/cosmos/slashing/v1beta1/query.proto similarity index 77% rename from proto/cosmos/slashing/query.proto rename to proto/cosmos/slashing/v1beta1/query.proto index 7c54c246c4..4880a8316d 100644 --- a/proto/cosmos/slashing/query.proto +++ b/proto/cosmos/slashing/v1beta1/query.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.slashing; +package cosmos.slashing.v1beta1; -import "cosmos/query/pagination.proto"; +import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; -import "cosmos/slashing/slashing.proto"; +import "cosmos/slashing/v1beta1/slashing.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/slashing/types"; @@ -24,7 +24,7 @@ message QueryParamsRequest{} // QueryParamsResponse is the response type for the Query/Params RPC method message QueryParamsResponse{ - cosmos.slashing.Params params = 1[(gogoproto.nullable) = false]; + Params params = 1[(gogoproto.nullable) = false]; } // QuerySigningInfoRequest is the request type for the Query/SigningInfo RPC method @@ -36,17 +36,17 @@ message QuerySigningInfoRequest{ // QuerySigningInfoResponse is the response type for the Query/SigningInfo RPC method message QuerySigningInfoResponse{ // val_signing_info is the signing info of requested val cons address - cosmos.slashing.ValidatorSigningInfo val_signing_info = 1[(gogoproto.nullable)= false]; + ValidatorSigningInfo val_signing_info = 1[(gogoproto.nullable)= false]; } // QuerySigningInfosRequest is the request type for the Query/SigningInfos RPC method message QuerySigningInfosRequest{ - cosmos.query.PageRequest pagination = 1; + cosmos.base.query.v1beta1.PageRequest pagination = 1; } // QuerySigningInfosResponse is the response type for the Query/SigningInfos RPC method message QuerySigningInfosResponse{ // info is the signing info of all validators - repeated cosmos.slashing.ValidatorSigningInfo info = 1[(gogoproto.nullable)= false]; - cosmos.query.PageResponse pagination =2; + repeated cosmos.slashing.v1beta1.ValidatorSigningInfo info = 1[(gogoproto.nullable)= false]; + cosmos.base.query.v1beta1.PageResponse pagination =2; } diff --git a/proto/cosmos/slashing/slashing.proto b/proto/cosmos/slashing/v1beta1/slashing.proto similarity index 88% rename from proto/cosmos/slashing/slashing.proto rename to proto/cosmos/slashing/v1beta1/slashing.proto index c6ef3bc4be..7f36f5d526 100644 --- a/proto/cosmos/slashing/slashing.proto +++ b/proto/cosmos/slashing/v1beta1/slashing.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.slashing; +package cosmos.slashing.v1beta1; option go_package = "github.com/cosmos/cosmos-sdk/x/slashing/types"; option (gogoproto.equal_all) = true; @@ -8,15 +8,6 @@ import "gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; -// MsgUnjail - struct for unjailing jailed validator -message MsgUnjail { - bytes validator_addr = 1 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", - (gogoproto.moretags) = "yaml:\"address\"", - (gogoproto.jsontag) = "address" - ]; -} - // ValidatorSigningInfo defines the signing info for a validator message ValidatorSigningInfo { option (gogoproto.equal) = true; diff --git a/proto/cosmos/slashing/v1beta1/tx.proto b/proto/cosmos/slashing/v1beta1/tx.proto new file mode 100644 index 0000000000..9485ed1f34 --- /dev/null +++ b/proto/cosmos/slashing/v1beta1/tx.proto @@ -0,0 +1,16 @@ +syntax = "proto3"; +package cosmos.slashing.v1beta1; + +option go_package = "github.com/cosmos/cosmos-sdk/x/slashing/types"; +option (gogoproto.equal_all) = true; + +import "gogoproto/gogo.proto"; + +// MsgUnjail - struct for unjailing jailed validator +message MsgUnjail { + bytes validator_addr = 1 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", + (gogoproto.moretags) = "yaml:\"address\"", + (gogoproto.jsontag) = "address" + ]; +} \ No newline at end of file diff --git a/proto/cosmos/staking/genesis.proto b/proto/cosmos/staking/v1beta1/genesis.proto similarity index 95% rename from proto/cosmos/staking/genesis.proto rename to proto/cosmos/staking/v1beta1/genesis.proto index 3774885e59..a049945bc6 100644 --- a/proto/cosmos/staking/genesis.proto +++ b/proto/cosmos/staking/v1beta1/genesis.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package cosmos.staking; +package cosmos.staking.v1beta1; option go_package = "github.com/cosmos/cosmos-sdk/x/staking/types"; import "gogoproto/gogo.proto"; -import "cosmos/staking/staking.proto"; +import "cosmos/staking/v1beta1/staking.proto"; // GenesisState - all staking state that must be provided at genesis message GenesisState { diff --git a/proto/cosmos/staking/query.proto b/proto/cosmos/staking/v1beta1/query.proto similarity index 91% rename from proto/cosmos/staking/query.proto rename to proto/cosmos/staking/v1beta1/query.proto index 9db00df56c..068393ae14 100644 --- a/proto/cosmos/staking/query.proto +++ b/proto/cosmos/staking/v1beta1/query.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.staking; +package cosmos.staking.v1beta1; -import "cosmos/query/pagination.proto"; +import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; -import "cosmos/staking/staking.proto"; +import "cosmos/staking/v1beta1/staking.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/staking/types"; @@ -58,16 +58,16 @@ message QueryValidatorsRequest{ string status = 1; // pagination defines an optional pagination for the request. - cosmos.query.PageRequest pagination = 2; + cosmos.base.query.v1beta1.PageRequest pagination = 2; } // QueryValidatorsResponse is response type for the Query/Validators RPC method message QueryValidatorsResponse { - // validators contains all the queried validators - repeated cosmos.staking.Validator validators = 1 [(gogoproto.nullable) = false]; + // validators contains all the queried validators. + repeated Validator validators = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; } // QueryValidatorRequest is response type for the Query/Validator RPC method @@ -88,7 +88,7 @@ message QueryValidatorDelegationsRequest { bytes validator_addr = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress"]; // pagination defines an optional pagination for the request. - cosmos.query.PageRequest pagination = 2; + cosmos.base.query.v1beta1.PageRequest pagination = 2; } // QueryValidatorDelegationsRequest is response type for the Query/ValidatorDelegations RPC method @@ -96,7 +96,7 @@ message QueryValidatorDelegationsResponse { repeated DelegationResponse delegation_responses = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "DelegationResponses"]; // pagination defines the pagination in the response. - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; } // QueryValidatorUnbondingDelegationsRequest is required type for the Query/ValidatorUnbondingDelegations RPC method @@ -105,7 +105,7 @@ message QueryValidatorUnbondingDelegationsRequest { bytes validator_addr = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress"]; // pagination defines an optional pagination for the request. - cosmos.query.PageRequest pagination = 2; + cosmos.base.query.v1beta1.PageRequest pagination = 2; } // QueryValidatorUnbondingDelegationsResponse is response type for the Query/ValidatorUnbondingDelegations RPC method. @@ -113,7 +113,7 @@ message QueryValidatorUnbondingDelegationsResponse { repeated UnbondingDelegation unbonding_responses = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; } // QueryDelegationRequest is request type for the Query/Delegation RPC method. @@ -152,7 +152,7 @@ message QueryDelegatorDelegationsRequest { bytes delegator_addr = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; // pagination defines an optional pagination for the request. - cosmos.query.PageRequest pagination = 2; + cosmos.base.query.v1beta1.PageRequest pagination = 2; } // QueryDelegatorDelegationsResponse is response type for the Query/DelegatorDelegations RPC method. @@ -161,23 +161,24 @@ message QueryDelegatorDelegationsResponse { repeated DelegationResponse delegation_responses = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; } // QueryDelegatorUnbondingDelegationsRequest is request type for the Query/DelegatorUnbondingDelegations RPC method. message QueryDelegatorUnbondingDelegationsRequest { // delegator_addr defines the delegator address to query for. bytes delegator_addr = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - + // pagination defines an optional pagination for the request. - cosmos.query.PageRequest pagination = 2; + cosmos.base.query.v1beta1.PageRequest pagination = 2; } + // QueryUnbondingDelegatorDelegationsResponse is response type for the Query/UnbondingDelegatorDelegations RPC method. message QueryDelegatorUnbondingDelegationsResponse { repeated UnbondingDelegation unbonding_responses = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; } // QueryRedelegationsRequest is request type for the Query/Redelegations RPC method. @@ -192,7 +193,7 @@ message QueryRedelegationsRequest { bytes dst_validator_addr = 3 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress"]; // pagination defines an optional pagination for the request. - cosmos.query.PageRequest pagination = 4; + cosmos.base.query.v1beta1.PageRequest pagination = 4; } // QueryRedelegationsResponse is response type for the Query/Redelegations RPC method. @@ -200,7 +201,7 @@ message QueryRedelegationsResponse { repeated RedelegationResponse redelegation_responses = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; } // QueryDelegatorValidatorsRequest is request type for the Query/DelegatorValidators RPC method. @@ -209,7 +210,7 @@ message QueryDelegatorValidatorsRequest { bytes delegator_addr = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; // pagination defines an optional pagination for the request. - cosmos.query.PageRequest pagination = 2; + cosmos.base.query.v1beta1.PageRequest pagination = 2; } // QueryDelegatorValidatorsResponse is response type for the Query/DelegatorValidators RPC method. @@ -218,7 +219,7 @@ message QueryDelegatorValidatorsResponse { repeated Validator validators = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; } // QueryDelegatorValidatorRequest is request type for the Query/DelegatorValidator RPC method. diff --git a/proto/cosmos/staking/staking.proto b/proto/cosmos/staking/v1beta1/staking.proto similarity index 76% rename from proto/cosmos/staking/staking.proto rename to proto/cosmos/staking/v1beta1/staking.proto index d375ff8f21..710eb81eb3 100644 --- a/proto/cosmos/staking/staking.proto +++ b/proto/cosmos/staking/v1beta1/staking.proto @@ -1,114 +1,14 @@ syntax = "proto3"; -package cosmos.staking; +package cosmos.staking.v1beta1; import "gogoproto/gogo.proto"; import "tendermint/abci/types/types.proto"; import "google/protobuf/timestamp.proto"; import "google/protobuf/duration.proto"; -import "cosmos/cosmos.proto"; +import "cosmos/base/v1beta1/coin.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/staking/types"; -// MsgCreateValidator defines an SDK message for creating a new validator. -message MsgCreateValidator { - option (gogoproto.equal) = true; - - Description description = 1 [(gogoproto.nullable) = false]; - CommissionRates commission = 2 [(gogoproto.nullable) = false]; - string min_self_delegation = 3 [ - (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", - (gogoproto.moretags) = "yaml:\"min_self_delegation\"", - (gogoproto.nullable) = false - ]; - bytes delegator_address = 4 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", - (gogoproto.moretags) = "yaml:\"delegator_address\"" - ]; - bytes validator_address = 5 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", - (gogoproto.moretags) = "yaml:\"validator_address\"" - ]; - string pubkey = 6; - cosmos.Coin value = 7 [(gogoproto.nullable) = false]; -} - -// MsgEditValidator defines an SDK message for editing an existing validator. -message MsgEditValidator { - option (gogoproto.equal) = true; - - Description description = 1 [(gogoproto.nullable) = false]; - bytes validator_address = 2 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", - (gogoproto.moretags) = "yaml:\"address\"" - ]; - - // We pass a reference to the new commission rate and min self delegation as - // it's not mandatory to update. If not updated, the deserialized rate will be - // zero with no way to distinguish if an update was intended. - // - // REF: #2373 - string commission_rate = 3 [ - (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", - (gogoproto.moretags) = "yaml:\"commission_rate\"" - ]; - string min_self_delegation = 4 [ - (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", - (gogoproto.moretags) = "yaml:\"min_self_delegation\"" - ]; -} - -// MsgDelegate defines an SDK message for performing a delegation from a -// delegate to a validator. -message MsgDelegate { - option (gogoproto.equal) = true; - - bytes delegator_address = 1 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", - (gogoproto.moretags) = "yaml:\"delegator_address\"" - ]; - bytes validator_address = 2 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", - (gogoproto.moretags) = "yaml:\"validator_address\"" - ]; - cosmos.Coin amount = 3 [(gogoproto.nullable) = false]; -} - -// MsgBeginRedelegate defines an SDK message for performing a redelegation from -// a delegate and source validator to a destination validator. -message MsgBeginRedelegate { - option (gogoproto.equal) = true; - - bytes delegator_address = 1 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", - (gogoproto.moretags) = "yaml:\"delegator_address\"" - ]; - bytes validator_src_address = 2 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", - (gogoproto.moretags) = "yaml:\"validator_src_address\"" - ]; - bytes validator_dst_address = 3 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", - (gogoproto.moretags) = "yaml:\"validator_dst_address\"" - ]; - cosmos.Coin amount = 4 [(gogoproto.nullable) = false]; -} - -// MsgUndelegate defines an SDK message for performing an undelegation from a -// delegate and a validator. -message MsgUndelegate { - option (gogoproto.equal) = true; - - bytes delegator_address = 1 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", - (gogoproto.moretags) = "yaml:\"delegator_address\"" - ]; - bytes validator_address = 2 [ - (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", - (gogoproto.moretags) = "yaml:\"validator_address\"" - ]; - cosmos.Coin amount = 3 [(gogoproto.nullable) = false]; -} - // HistoricalInfo contains the historical information that gets stored at // each height. message HistoricalInfo { @@ -208,6 +108,14 @@ message Validator { ]; } +// ValAddresses defines a repeated set of validator addresses. +message ValAddresses { + option (gogoproto.goproto_stringer) = false; + option (gogoproto.stringer) = true; + + repeated bytes addresses = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress"]; +} + // DVPair is struct that just has a delegator-validator pair with no other data. // It is intended to be used as a marshalable pointer. For example, a DVPair can // be used to construct the key to getting an UnbondingDelegation from state. @@ -385,7 +293,7 @@ message DelegationResponse { Delegation delegation = 1 [(gogoproto.nullable) = false]; - cosmos.Coin balance = 2 [(gogoproto.nullable) = false]; + cosmos.base.v1beta1.Coin balance = 2 [(gogoproto.nullable) = false]; } // RedelegationEntryResponse is equivalent to a RedelegationEntry except that it diff --git a/proto/cosmos/staking/v1beta1/tx.proto b/proto/cosmos/staking/v1beta1/tx.proto new file mode 100644 index 0000000000..45f69b04af --- /dev/null +++ b/proto/cosmos/staking/v1beta1/tx.proto @@ -0,0 +1,109 @@ +syntax = "proto3"; +package cosmos.staking.v1beta1; + +import "gogoproto/gogo.proto"; +import "cosmos/base/v1beta1/coin.proto"; +import "cosmos/staking/v1beta1/staking.proto"; + +option go_package = "github.com/cosmos/cosmos-sdk/x/staking/types"; + + +// MsgCreateValidator defines an SDK message for creating a new validator. +message MsgCreateValidator { + option (gogoproto.equal) = true; + + Description description = 1 [(gogoproto.nullable) = false]; + CommissionRates commission = 2 [(gogoproto.nullable) = false]; + string min_self_delegation = 3 [ + (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", + (gogoproto.moretags) = "yaml:\"min_self_delegation\"", + (gogoproto.nullable) = false + ]; + bytes delegator_address = 4 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", + (gogoproto.moretags) = "yaml:\"delegator_address\"" + ]; + bytes validator_address = 5 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", + (gogoproto.moretags) = "yaml:\"validator_address\"" + ]; + string pubkey = 6; + cosmos.base.v1beta1.Coin value = 7 [(gogoproto.nullable) = false]; +} + +// MsgEditValidator defines an SDK message for editing an existing validator. +message MsgEditValidator { + option (gogoproto.equal) = true; + + Description description = 1 [(gogoproto.nullable) = false]; + bytes validator_address = 2 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", + (gogoproto.moretags) = "yaml:\"address\"" + ]; + + // We pass a reference to the new commission rate and min self delegation as + // it's not mandatory to update. If not updated, the deserialized rate will be + // zero with no way to distinguish if an update was intended. + // + // REF: #2373 + string commission_rate = 3 [ + (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", + (gogoproto.moretags) = "yaml:\"commission_rate\"" + ]; + string min_self_delegation = 4 [ + (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", + (gogoproto.moretags) = "yaml:\"min_self_delegation\"" + ]; +} + +// MsgDelegate defines an SDK message for performing a delegation from a +// delegate to a validator. +message MsgDelegate { + option (gogoproto.equal) = true; + + bytes delegator_address = 1 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", + (gogoproto.moretags) = "yaml:\"delegator_address\"" + ]; + bytes validator_address = 2 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", + (gogoproto.moretags) = "yaml:\"validator_address\"" + ]; + cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false]; +} + +// MsgBeginRedelegate defines an SDK message for performing a redelegation from +// a delegate and source validator to a destination validator. +message MsgBeginRedelegate { + option (gogoproto.equal) = true; + + bytes delegator_address = 1 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", + (gogoproto.moretags) = "yaml:\"delegator_address\"" + ]; + bytes validator_src_address = 2 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", + (gogoproto.moretags) = "yaml:\"validator_src_address\"" + ]; + bytes validator_dst_address = 3 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", + (gogoproto.moretags) = "yaml:\"validator_dst_address\"" + ]; + cosmos.base.v1beta1.Coin amount = 4 [(gogoproto.nullable) = false]; +} + +// MsgUndelegate defines an SDK message for performing an undelegation from a +// delegate and a validator. +message MsgUndelegate { + option (gogoproto.equal) = true; + + bytes delegator_address = 1 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", + (gogoproto.moretags) = "yaml:\"delegator_address\"" + ]; + bytes validator_address = 2 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ValAddress", + (gogoproto.moretags) = "yaml:\"validator_address\"" + ]; + cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false]; +} \ No newline at end of file diff --git a/proto/cosmos/tx/signing/signing.proto b/proto/cosmos/tx/signing/v1beta1/signing.proto similarity index 90% rename from proto/cosmos/tx/signing/signing.proto rename to proto/cosmos/tx/signing/v1beta1/signing.proto index a813882995..8dff5e2f3b 100644 --- a/proto/cosmos/tx/signing/signing.proto +++ b/proto/cosmos/tx/signing/v1beta1/signing.proto @@ -1,7 +1,7 @@ syntax = "proto3"; -package cosmos.tx.signing; +package cosmos.tx.signing.v1beta1; -import "cosmos/crypto/crypto.proto"; +import "cosmos/base/crypto/v1beta1/crypto.proto"; option go_package = "github.com/cosmos/cosmos-sdk/types/tx/signing"; @@ -34,7 +34,7 @@ message SignatureDescriptors { // itself. It is primarily used for coordinating signatures between clients. message SignatureDescriptor { // public_key is the public key of the signer - cosmos.crypto.PublicKey public_key = 1; + cosmos.base.crypto.v1beta1.PublicKey public_key = 1; Data data = 2; @@ -52,7 +52,7 @@ message SignatureDescriptor { // Single is the signature data for a single signer message Single { // mode is the signing mode of the single signer - cosmos.tx.signing.SignMode mode = 1; + SignMode mode = 1; // signature is the raw signature bytes bytes signature = 2; @@ -61,7 +61,7 @@ message SignatureDescriptor { // Multi is the signature data for a multisig public key message Multi { // bitarray specifies which keys within the multisig are signing - cosmos.crypto.CompactBitArray bitarray = 1; + cosmos.base.crypto.v1beta1.CompactBitArray bitarray = 1; // signatures is the signatures of the multi-signature repeated Data signatures = 2; diff --git a/proto/cosmos/tx/service.proto b/proto/cosmos/tx/v1beta1/service.proto similarity index 74% rename from proto/cosmos/tx/service.proto rename to proto/cosmos/tx/v1beta1/service.proto index 55937ffe4c..2152f0ead4 100644 --- a/proto/cosmos/tx/service.proto +++ b/proto/cosmos/tx/v1beta1/service.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package cosmos.tx; +package cosmos.tx.v1beta1; -import "cosmos/cosmos.proto"; -import "cosmos/tx/tx.proto"; +import "cosmos/base/abci/v1beta1/abci.proto"; +import "cosmos/tx/v1beta1/tx.proto"; option go_package = "github.com/cosmos/cosmos-sdk/types/tx"; @@ -20,6 +20,6 @@ message SimulateRequest { // SimulateResponse is the response type for the Service.Simulate RPC method. message SimulateResponse { - cosmos.GasInfo gas_info = 1; - cosmos.Result result = 2; + cosmos.base.abci.v1beta1.GasInfo gas_info = 1; + cosmos.base.abci.v1beta1.Result result = 2; } diff --git a/proto/cosmos/tx/tx.proto b/proto/cosmos/tx/v1beta1/tx.proto similarity index 94% rename from proto/cosmos/tx/tx.proto rename to proto/cosmos/tx/v1beta1/tx.proto index 2340510961..ec99fccf67 100644 --- a/proto/cosmos/tx/tx.proto +++ b/proto/cosmos/tx/v1beta1/tx.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package cosmos.tx; +package cosmos.tx.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos/crypto/crypto.proto"; -import "cosmos/cosmos.proto"; -import "cosmos/tx/signing/signing.proto"; +import "cosmos/base/crypto/v1beta1/crypto.proto"; +import "cosmos/base/v1beta1/coin.proto"; +import "cosmos/tx/signing/v1beta1/signing.proto"; import "google/protobuf/any.proto"; option go_package = "github.com/cosmos/cosmos-sdk/types/tx"; @@ -107,7 +107,7 @@ message SignerInfo { // public_key is the public key of the signer. It is optional for accounts // that already exist in state. If unset, the verifier can use the required \ // signer address for this position and lookup the public key. - cosmos.crypto.PublicKey public_key = 1; + cosmos.base.crypto.v1beta1.PublicKey public_key = 1; // mode_info describes the signing mode of the signer and is a nested // structure to support nested multisig pubkey's @@ -130,13 +130,13 @@ message ModeInfo { // to allow for additional fields such as locale for SIGN_MODE_TEXTUAL in the future message Single { // mode is the signing mode of the single signer - cosmos.tx.signing.SignMode mode = 1; + cosmos.tx.signing.v1beta1.SignMode mode = 1; } // Multi is the mode info for a multisig public key message Multi { // bitarray specifies which keys within the multisig are signing - cosmos.crypto.CompactBitArray bitarray = 1; + cosmos.base.crypto.v1beta1.CompactBitArray bitarray = 1; // mode_infos is the corresponding modes of the signers of the multisig // which could include nested multisig public keys @@ -149,7 +149,7 @@ message ModeInfo { // which must be above some miminum to be accepted into the mempool. message Fee { // amount is the amount of coins to be paid as a fee - repeated cosmos.Coin amount = 1 + repeated cosmos.base.v1beta1.Coin amount = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; // gas_limit is the maximum gas that can be used in transaction processing diff --git a/proto/cosmos/upgrade/query.proto b/proto/cosmos/upgrade/v1beta1/query.proto similarity index 93% rename from proto/cosmos/upgrade/query.proto rename to proto/cosmos/upgrade/v1beta1/query.proto index f25ad95922..27d994280a 100644 --- a/proto/cosmos/upgrade/query.proto +++ b/proto/cosmos/upgrade/v1beta1/query.proto @@ -1,7 +1,7 @@ syntax = "proto3"; -package cosmos.upgrade; +package cosmos.upgrade.v1beta1; -import "cosmos/upgrade/upgrade.proto"; +import "cosmos/upgrade/v1beta1/upgrade.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/upgrade/types"; diff --git a/proto/cosmos/upgrade/upgrade.proto b/proto/cosmos/upgrade/v1beta1/upgrade.proto similarity index 98% rename from proto/cosmos/upgrade/upgrade.proto rename to proto/cosmos/upgrade/v1beta1/upgrade.proto index 969131b0cc..fd32b93493 100644 --- a/proto/cosmos/upgrade/upgrade.proto +++ b/proto/cosmos/upgrade/v1beta1/upgrade.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmos.upgrade; +package cosmos.upgrade.v1beta1; import "gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; diff --git a/proto/cosmos/vesting/vesting.proto b/proto/cosmos/vesting/v1beta1/vesting.proto similarity index 86% rename from proto/cosmos/vesting/vesting.proto rename to proto/cosmos/vesting/v1beta1/vesting.proto index baee7f7564..9bbc749e09 100644 --- a/proto/cosmos/vesting/vesting.proto +++ b/proto/cosmos/vesting/v1beta1/vesting.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmos.vesting; +package cosmos.vesting.v1beta1; import "gogoproto/gogo.proto"; -import "cosmos/cosmos.proto"; -import "cosmos/auth/auth.proto"; +import "cosmos/base/v1beta1/coin.proto"; +import "cosmos/auth/v1beta1/auth.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/auth/vesting/types"; @@ -13,18 +13,18 @@ message BaseVestingAccount { option (gogoproto.goproto_getters) = false; option (gogoproto.goproto_stringer) = false; - cosmos.auth.BaseAccount base_account = 1 [(gogoproto.embed) = true]; - repeated cosmos.Coin original_vesting = 2 [ + cosmos.auth.v1beta1.BaseAccount base_account = 1 [(gogoproto.embed) = true]; + repeated cosmos.base.v1beta1.Coin original_vesting = 2 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", (gogoproto.moretags) = "yaml:\"original_vesting\"" ]; - repeated cosmos.Coin delegated_free = 3 [ + repeated cosmos.base.v1beta1.Coin delegated_free = 3 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", (gogoproto.moretags) = "yaml:\"delegated_free\"" ]; - repeated cosmos.Coin delegated_vesting = 4 [ + repeated cosmos.base.v1beta1.Coin delegated_vesting = 4 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins", (gogoproto.moretags) = "yaml:\"delegated_vesting\"" @@ -57,7 +57,7 @@ message Period { option (gogoproto.goproto_stringer) = false; int64 length = 1; - repeated cosmos.Coin amount = 2 [ + repeated cosmos.base.v1beta1.Coin amount = 2 [ (gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" ]; diff --git a/proto/ibc/channel/query.proto b/proto/ibc/channel/query.proto index fdd945c726..d0c398e5ce 100644 --- a/proto/ibc/channel/query.proto +++ b/proto/ibc/channel/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.channel; import "gogoproto/gogo.proto"; -import "cosmos/query/pagination.proto"; +import "cosmos/base/query/v1beta1/pagination.proto"; import "ibc/channel/channel.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/ibc/04-channel/types"; @@ -63,7 +63,7 @@ message QueryChannelResponse { // QueryChannelsRequest is the request type for the Query/Channels RPC method message QueryChannelsRequest { // pagination request - cosmos.query.PageRequest pagination = 1; + cosmos.base.query.v1beta1.PageRequest pagination = 1; } // QueryChannelsResponse is the response type for the Query/Channels RPC method. @@ -71,7 +71,7 @@ message QueryChannelsResponse { // list of stored channels of the chain. repeated ibc.channel.IdentifiedChannel channels = 1; // pagination response - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; // query block height int64 height = 3; } @@ -81,7 +81,7 @@ message QueryConnectionChannelsRequest { // connection unique identifier string connection = 1; // pagination request - cosmos.query.PageRequest pagination = 2; + cosmos.base.query.v1beta1.PageRequest pagination = 2; } // QueryConnectionChannelsResponse is the Response type for the Query/QueryConnectionChannels RPC method @@ -89,7 +89,7 @@ message QueryConnectionChannelsResponse { // list of channels associated with a connection. repeated ibc.channel.IdentifiedChannel channels = 1; // pagination response - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; // query block height int64 height = 3; } @@ -124,14 +124,14 @@ message QueryPacketCommitmentsRequest { // channel unique identifier string channel_id = 2 [(gogoproto.customname) = "ChannelID"]; // pagination request - cosmos.query.PageRequest pagination = 3; + cosmos.base.query.v1beta1.PageRequest pagination = 3; } // QueryPacketCommitmentsResponse is the request type for the Query/QueryPacketCommitments RPC method message QueryPacketCommitmentsResponse { repeated ibc.channel.PacketAckCommitment commitments = 1; // pagination response - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; // query block height int64 height = 3; } diff --git a/proto/ibc/connection/query.proto b/proto/ibc/connection/query.proto index 073170992c..ad6b644961 100644 --- a/proto/ibc/connection/query.proto +++ b/proto/ibc/connection/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package ibc.connection; import "gogoproto/gogo.proto"; -import "cosmos/query/pagination.proto"; +import "cosmos/base/query/v1beta1/pagination.proto"; import "ibc/connection/connection.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/ibc/03-connection/types"; @@ -41,7 +41,7 @@ message QueryConnectionResponse { // QueryConnectionsRequest is the request type for the Query/Connections RPC method message QueryConnectionsRequest { - cosmos.query.PageRequest pagination = 1; + cosmos.base.query.v1beta1.PageRequest pagination = 1; } // QueryConnectionsResponse is the response type for the Query/Connections RPC method. @@ -49,7 +49,7 @@ message QueryConnectionsResponse { // list of stored connections of the chain. repeated ibc.connection.IdentifiedConnection connections = 1; // pagination response - cosmos.query.PageResponse pagination = 2; + cosmos.base.query.v1beta1.PageResponse pagination = 2; // query block height int64 height = 3; } diff --git a/proto/ibc/transfer/transfer.proto b/proto/ibc/transfer/transfer.proto index 555ad4c36d..cb5b06ca9c 100644 --- a/proto/ibc/transfer/transfer.proto +++ b/proto/ibc/transfer/transfer.proto @@ -4,7 +4,7 @@ package ibc.transfer; option go_package = "github.com/cosmos/cosmos-sdk/x/ibc-transfer/types"; import "gogoproto/gogo.proto"; -import "cosmos/cosmos.proto"; +import "cosmos/base/v1beta1/coin.proto"; // MsgTransfer defines a msg to transfer fungible tokens (i.e Coins) between // ICS20 enabled chains. See ICS Spec here: @@ -15,7 +15,7 @@ message MsgTransfer { // the channel by which the packet will be sent string source_channel = 2 [(gogoproto.moretags) = "yaml:\"source_channel\""]; // the tokens to be transferred - cosmos.Coin token = 3 [(gogoproto.nullable) = false]; + cosmos.base.v1beta1.Coin token = 3 [(gogoproto.nullable) = false]; // the sender address bytes sender = 4 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; diff --git a/server/grpc/server_test.go b/server/grpc/server_test.go index 8e6ab335e1..31814095d5 100644 --- a/server/grpc/server_test.go +++ b/server/grpc/server_test.go @@ -94,7 +94,7 @@ func (s *IntegrationTestSuite) TestGRPC() { servicesMap[s.Name] = true } // Make sure the following services are present - s.Require().True(servicesMap["cosmos.bank.Query"]) + s.Require().True(servicesMap["cosmos.bank.v1beta1.Query"]) } func TestIntegrationTestSuite(t *testing.T) { diff --git a/store/types/commit_info.pb.go b/store/types/commit_info.pb.go index a5e22891c4..3dc92b0b86 100644 --- a/store/types/commit_info.pb.go +++ b/store/types/commit_info.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/store/commit_info.proto +// source: cosmos/base/store/v1beta1/commit_info.proto package types @@ -34,7 +34,7 @@ func (m *CommitInfo) Reset() { *m = CommitInfo{} } func (m *CommitInfo) String() string { return proto.CompactTextString(m) } func (*CommitInfo) ProtoMessage() {} func (*CommitInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_3e3b3900c32110a1, []int{0} + return fileDescriptor_83f4097f6265b52f, []int{0} } func (m *CommitInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -88,7 +88,7 @@ func (m *StoreInfo) Reset() { *m = StoreInfo{} } func (m *StoreInfo) String() string { return proto.CompactTextString(m) } func (*StoreInfo) ProtoMessage() {} func (*StoreInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_3e3b3900c32110a1, []int{1} + return fileDescriptor_83f4097f6265b52f, []int{1} } func (m *StoreInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -141,7 +141,7 @@ type CommitID struct { func (m *CommitID) Reset() { *m = CommitID{} } func (*CommitID) ProtoMessage() {} func (*CommitID) Descriptor() ([]byte, []int) { - return fileDescriptor_3e3b3900c32110a1, []int{2} + return fileDescriptor_83f4097f6265b52f, []int{2} } func (m *CommitID) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -185,34 +185,37 @@ func (m *CommitID) GetHash() []byte { } func init() { - proto.RegisterType((*CommitInfo)(nil), "cosmos.store.CommitInfo") - proto.RegisterType((*StoreInfo)(nil), "cosmos.store.StoreInfo") - proto.RegisterType((*CommitID)(nil), "cosmos.store.CommitID") + proto.RegisterType((*CommitInfo)(nil), "cosmos.base.store.v1beta1.CommitInfo") + proto.RegisterType((*StoreInfo)(nil), "cosmos.base.store.v1beta1.StoreInfo") + proto.RegisterType((*CommitID)(nil), "cosmos.base.store.v1beta1.CommitID") } -func init() { proto.RegisterFile("cosmos/store/commit_info.proto", fileDescriptor_3e3b3900c32110a1) } +func init() { + proto.RegisterFile("cosmos/base/store/v1beta1/commit_info.proto", fileDescriptor_83f4097f6265b52f) +} -var fileDescriptor_3e3b3900c32110a1 = []byte{ - // 289 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x2f, 0x2e, 0xc9, 0x2f, 0x4a, 0xd5, 0x4f, 0xce, 0xcf, 0xcd, 0xcd, 0x2c, 0x89, - 0xcf, 0xcc, 0x4b, 0xcb, 0xd7, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x81, 0xc8, 0xeb, 0x81, - 0xe5, 0xa5, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x12, 0xfa, 0x20, 0x16, 0x44, 0x8d, 0x52, 0x1a, - 0x17, 0x97, 0x33, 0x58, 0xa3, 0x67, 0x5e, 0x5a, 0xbe, 0x90, 0x04, 0x17, 0x7b, 0x59, 0x6a, 0x51, - 0x71, 0x66, 0x7e, 0x9e, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x73, 0x10, 0x8c, 0x2b, 0x64, 0xc7, 0xc5, - 0x0d, 0x36, 0x06, 0x6c, 0x7e, 0xb1, 0x04, 0x93, 0x02, 0xb3, 0x06, 0xb7, 0x91, 0xb8, 0x1e, 0xb2, - 0x0d, 0x7a, 0xc1, 0x20, 0x12, 0x64, 0x8e, 0x13, 0xcb, 0x89, 0x7b, 0xf2, 0x0c, 0x41, 0x5c, 0xc5, - 0x30, 0x81, 0x62, 0xa5, 0x34, 0x2e, 0x4e, 0xb8, 0xb4, 0x90, 0x10, 0x17, 0x4b, 0x5e, 0x62, 0x6e, - 0x2a, 0xd8, 0x0e, 0xce, 0x20, 0x30, 0x5b, 0xc8, 0x95, 0x8b, 0x13, 0xe6, 0x83, 0x14, 0x09, 0x26, - 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x31, 0x54, 0xe3, 0xa1, 0xee, 0x74, 0x71, 0x12, 0x00, 0x99, 0xfe, - 0xe8, 0x9e, 0x3c, 0x07, 0x4c, 0x24, 0x88, 0x03, 0xa2, 0xd5, 0x33, 0x45, 0xc9, 0x8e, 0x0b, 0x2e, - 0x8a, 0xc7, 0x37, 0x42, 0x5c, 0x2c, 0x19, 0x89, 0xc5, 0x19, 0x60, 0x7b, 0x78, 0x82, 0xc0, 0x6c, - 0x2b, 0x96, 0x19, 0x0b, 0xe4, 0x19, 0x9c, 0x9c, 0x4e, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, - 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, - 0x8e, 0x21, 0x4a, 0x23, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0x1a, - 0xf0, 0x10, 0x4a, 0xb7, 0x38, 0x25, 0x1b, 0x1a, 0x07, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, - 0xe0, 0xa0, 0x35, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x2f, 0x20, 0xcc, 0x8d, 0xa0, 0x01, 0x00, - 0x00, +var fileDescriptor_83f4097f6265b52f = []byte{ + // 308 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x91, 0xb1, 0x4e, 0xc3, 0x30, + 0x10, 0x86, 0xe3, 0x36, 0x82, 0xd6, 0x65, 0x40, 0x16, 0x43, 0x60, 0x70, 0xab, 0xc2, 0x10, 0x09, + 0x61, 0xab, 0x65, 0x63, 0x60, 0x08, 0x2c, 0x15, 0x9b, 0xd9, 0x58, 0x50, 0xd2, 0xba, 0x6d, 0x84, + 0x92, 0xab, 0x72, 0xa6, 0x12, 0x6f, 0xc1, 0xc8, 0xc8, 0xe3, 0x74, 0xec, 0xc8, 0x54, 0xa1, 0xe4, + 0x45, 0x50, 0x9c, 0xa4, 0x1b, 0x9d, 0x7c, 0x77, 0xfe, 0xfd, 0x7f, 0xfa, 0x7d, 0xf4, 0x7a, 0x0a, + 0x98, 0x00, 0xca, 0x28, 0x44, 0x2d, 0xd1, 0x40, 0xa6, 0xe5, 0x7a, 0x14, 0x69, 0x13, 0x8e, 0xe4, + 0x14, 0x92, 0x24, 0x36, 0xaf, 0x71, 0x3a, 0x07, 0xb1, 0xca, 0xc0, 0x00, 0x3b, 0xaf, 0xc4, 0xa2, + 0x14, 0x0b, 0x2b, 0x16, 0xb5, 0xf8, 0xe2, 0x6c, 0x01, 0x0b, 0xb0, 0x2a, 0x59, 0x56, 0xd5, 0x83, + 0x21, 0x52, 0xfa, 0x60, 0x5d, 0x26, 0xe9, 0x1c, 0x98, 0x47, 0x8f, 0xd7, 0x3a, 0xc3, 0x18, 0x52, + 0x8f, 0x0c, 0x88, 0xdf, 0x56, 0x4d, 0xcb, 0x9e, 0x68, 0xcf, 0xda, 0x59, 0x18, 0x7a, 0xad, 0x41, + 0xdb, 0xef, 0x8d, 0xaf, 0xc4, 0xbf, 0x38, 0xf1, 0x5c, 0x76, 0xa5, 0x69, 0xe0, 0x6e, 0x76, 0x7d, + 0x47, 0x51, 0x6c, 0x06, 0x38, 0x44, 0xda, 0xdd, 0x5f, 0x33, 0x46, 0xdd, 0x34, 0x4c, 0xb4, 0x05, + 0x76, 0x95, 0xad, 0x99, 0xa2, 0xdd, 0x26, 0xdb, 0xcc, 0x6b, 0x0d, 0x88, 0xdf, 0x1b, 0x5f, 0x1e, + 0x60, 0xd5, 0x09, 0x1e, 0x83, 0xd3, 0x12, 0x95, 0xef, 0xfa, 0x9d, 0x66, 0xa2, 0x3a, 0x95, 0xcf, + 0x64, 0x36, 0xbc, 0xa7, 0xfb, 0xe9, 0x81, 0x9c, 0x8c, 0xba, 0xcb, 0x10, 0x97, 0x16, 0x7a, 0xa2, + 0x6c, 0x7d, 0xe7, 0x7e, 0x7d, 0xf7, 0x9d, 0x20, 0xd8, 0xe4, 0x9c, 0x6c, 0x73, 0x4e, 0x7e, 0x73, + 0x4e, 0x3e, 0x0b, 0xee, 0x6c, 0x0b, 0xee, 0xfc, 0x14, 0xdc, 0x79, 0xf1, 0x17, 0xb1, 0x59, 0xbe, + 0x47, 0x62, 0x0a, 0x89, 0xac, 0x97, 0x55, 0x1d, 0x37, 0x38, 0x7b, 0xab, 0x57, 0x66, 0x3e, 0x56, + 0x1a, 0xa3, 0x23, 0xfb, 0xe9, 0xb7, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x49, 0xb6, 0xbf, 0xab, + 0xd4, 0x01, 0x00, 0x00, } func (m *CommitInfo) Marshal() (dAtA []byte, err error) { diff --git a/testutil/testdata/proto.pb.go b/testutil/testdata/proto.pb.go index 04a4672b96..30b94037d0 100644 --- a/testutil/testdata/proto.pb.go +++ b/testutil/testdata/proto.pb.go @@ -3390,131 +3390,131 @@ func init() { func init() { proto.RegisterFile("proto.proto", fileDescriptor_2fcc84b9998d60d8) } var fileDescriptor_2fcc84b9998d60d8 = []byte{ - // 1972 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0xcd, 0x6f, 0x1b, 0xc7, - 0x15, 0xd7, 0x72, 0x49, 0x89, 0x7c, 0xa4, 0x29, 0x7a, 0xe2, 0xa4, 0x6b, 0x3a, 0x96, 0x95, 0x85, - 0x63, 0xb3, 0x41, 0x4c, 0x59, 0x4b, 0x1a, 0x08, 0x7c, 0x28, 0x42, 0xca, 0x52, 0x64, 0xd4, 0x96, - 0x8b, 0xb5, 0xeb, 0x16, 0xbe, 0x10, 0xcb, 0xdd, 0x21, 0xb9, 0x10, 0x39, 0xa3, 0xee, 0x0c, 0x2d, - 0xb1, 0xa7, 0xa2, 0x3d, 0xf4, 0x9a, 0x4b, 0x51, 0xa0, 0xb7, 0x1e, 0x7b, 0x2a, 0x72, 0xeb, 0xb1, - 0xb7, 0xe6, 0x52, 0xc0, 0x97, 0x02, 0x05, 0x0a, 0x18, 0x85, 0x7d, 0xed, 0x5f, 0xd0, 0xa2, 0x48, - 0x31, 0xb3, 0xb3, 0x1f, 0x94, 0x48, 0x85, 0x56, 0xda, 0x18, 0x02, 0x7a, 0x21, 0x67, 0xde, 0xfe, - 0xe6, 0x37, 0x6f, 0xde, 0xd7, 0xce, 0xcc, 0x42, 0xf1, 0x20, 0xa0, 0x9c, 0xd6, 0xe5, 0x2f, 0xca, - 0x73, 0xcc, 0xb8, 0xe7, 0x70, 0xa7, 0x7a, 0xa9, 0x4f, 0xfb, 0x54, 0x0a, 0x37, 0x44, 0x2b, 0x7c, - 0x5e, 0xbd, 0xdc, 0xa7, 0xb4, 0x3f, 0xc4, 0x1b, 0xb2, 0xd7, 0x1d, 0xf7, 0x36, 0x1c, 0x32, 0x51, - 0x8f, 0x90, 0x4b, 0xd9, 0x88, 0xb2, 0x0d, 0x7e, 0xb4, 0xc1, 0x8f, 0x42, 0x99, 0x79, 0x0b, 0xf4, - 0x7b, 0xb4, 0x8f, 0x10, 0x64, 0x99, 0xff, 0x53, 0x6c, 0x68, 0xeb, 0x5a, 0xad, 0x60, 0xcb, 0xb6, - 0x90, 0x11, 0x67, 0x84, 0x8d, 0x4c, 0x28, 0x13, 0x6d, 0xf3, 0x0e, 0xe8, 0x5b, 0x0e, 0x47, 0x06, - 0xac, 0x8c, 0x28, 0xf1, 0xf7, 0x71, 0xa0, 0x46, 0x44, 0x5d, 0x74, 0x09, 0x72, 0x43, 0xff, 0x39, - 0x66, 0x72, 0x54, 0xce, 0x0e, 0x3b, 0xe6, 0x67, 0x50, 0xd8, 0x75, 0x58, 0x8b, 0xf8, 0x23, 0x67, - 0x88, 0x3e, 0x86, 0x65, 0x47, 0xb6, 0xe4, 0xd8, 0xa2, 0x75, 0xa9, 0x1e, 0xaa, 0x5c, 0x8f, 0x54, - 0xae, 0xb7, 0xc8, 0xc4, 0x56, 0x18, 0x54, 0x02, 0xed, 0x48, 0x92, 0xe9, 0xb6, 0x76, 0x64, 0x6e, - 0x41, 0x69, 0xd7, 0x61, 0x09, 0x57, 0x03, 0x60, 0xe0, 0xb0, 0xce, 0x02, 0x7c, 0x85, 0x41, 0x34, - 0xc8, 0x7c, 0x08, 0xab, 0x21, 0x49, 0xc2, 0x73, 0x17, 0xca, 0x82, 0x67, 0x41, 0xae, 0xd2, 0x20, - 0x35, 0xd6, 0xbc, 0x09, 0xc5, 0x6d, 0x77, 0x40, 0x6d, 0xfc, 0x93, 0x31, 0x66, 0xa1, 0x6d, 0x30, - 0x63, 0x4e, 0x1f, 0xc7, 0xb6, 0x09, 0xbb, 0x66, 0x0d, 0x4a, 0x21, 0x90, 0x1d, 0x50, 0xc2, 0xf0, - 0x29, 0xc8, 0x0f, 0x61, 0xf5, 0xb1, 0x33, 0xd9, 0xc5, 0xc3, 0x61, 0x4c, 0x1b, 0x79, 0x43, 0x4b, - 0x79, 0xa3, 0x0e, 0x95, 0x04, 0xa6, 0x48, 0xab, 0x90, 0xef, 0x07, 0x18, 0x73, 0x9f, 0xf4, 0x15, - 0x36, 0xee, 0x9b, 0xdb, 0x50, 0x7e, 0x82, 0x19, 0x17, 0x4b, 0x50, 0xac, 0x0d, 0x00, 0x87, 0x4c, - 0x16, 0xb2, 0x9f, 0x43, 0x26, 0x6a, 0xc1, 0xdb, 0xb0, 0x1a, 0xd3, 0xa8, 0x59, 0xad, 0x19, 0x7e, - 0x78, 0xa7, 0x1e, 0x85, 0x6a, 0x3d, 0x36, 0x56, 0xda, 0x0d, 0x4f, 0x61, 0x45, 0xd0, 0x3c, 0x64, - 0x7d, 0xf4, 0x7d, 0x58, 0x61, 0x7e, 0x9f, 0xe0, 0x80, 0x19, 0xda, 0xba, 0x5e, 0x2b, 0xb5, 0x37, - 0xff, 0xf9, 0xf2, 0xda, 0xad, 0xbe, 0xcf, 0x07, 0xe3, 0x6e, 0xdd, 0xa5, 0xa3, 0x0d, 0x15, 0xb9, - 0xe1, 0xdf, 0x2d, 0xe6, 0xed, 0x6f, 0xf0, 0xc9, 0x01, 0x66, 0xf5, 0x96, 0xeb, 0xb6, 0x3c, 0x2f, - 0xc0, 0x8c, 0xd9, 0x11, 0x83, 0xd9, 0x85, 0x8b, 0x6d, 0xc7, 0x7b, 0x38, 0x1e, 0x72, 0xff, 0xb1, - 0xdf, 0x27, 0x0e, 0x1f, 0x07, 0x18, 0xad, 0x01, 0xb0, 0xa8, 0xa3, 0x26, 0xb1, 0x53, 0x12, 0x74, - 0x13, 0x56, 0x47, 0xce, 0xd0, 0x77, 0x7d, 0x3a, 0x66, 0x9d, 0x9e, 0x8f, 0x87, 0x9e, 0x91, 0x5b, - 0xd7, 0x6a, 0x25, 0xbb, 0x1c, 0x8b, 0x77, 0x84, 0xf4, 0x6e, 0xf6, 0xc5, 0x6f, 0xaf, 0x69, 0x26, - 0x87, 0xc2, 0xd6, 0x98, 0x71, 0x3a, 0xc2, 0xc1, 0x26, 0x2a, 0x43, 0xc6, 0xf7, 0xe4, 0xa2, 0x73, - 0x76, 0xc6, 0xf7, 0x66, 0x25, 0x0e, 0xfa, 0x2e, 0x54, 0xd8, 0xb8, 0xcb, 0xdc, 0xc0, 0x3f, 0xe0, - 0x3e, 0x25, 0x9d, 0x1e, 0xc6, 0x86, 0xbe, 0xae, 0xd5, 0x32, 0xf6, 0x6a, 0x5a, 0xbe, 0x83, 0x65, - 0x58, 0x1c, 0x38, 0x93, 0x11, 0x26, 0xdc, 0x58, 0x09, 0xc3, 0x42, 0x75, 0xcd, 0x2f, 0x32, 0xc9, - 0xb4, 0xd6, 0x89, 0x69, 0xab, 0x90, 0xf7, 0x89, 0x37, 0x66, 0x3c, 0x98, 0xa8, 0xec, 0x8b, 0xfb, - 0xb1, 0x4a, 0x7a, 0x4a, 0xa5, 0x4b, 0x90, 0xeb, 0xe1, 0x43, 0x1c, 0x18, 0x59, 0xa9, 0x47, 0xd8, - 0x41, 0x57, 0x20, 0x1f, 0x60, 0x86, 0x83, 0xe7, 0xd8, 0x33, 0x7e, 0x9d, 0x97, 0x79, 0x17, 0x0b, - 0xd0, 0xc7, 0x90, 0x75, 0x7d, 0x3e, 0x31, 0x96, 0xd7, 0xb5, 0x5a, 0xd9, 0x32, 0x12, 0x07, 0xc7, - 0x5a, 0xd5, 0xb7, 0x7c, 0x3e, 0xb1, 0x25, 0x0a, 0xdd, 0x85, 0x0b, 0x23, 0x9f, 0xb9, 0x78, 0x38, - 0x74, 0x08, 0xa6, 0x63, 0x66, 0xc0, 0x29, 0xf1, 0x35, 0x0d, 0x35, 0x3f, 0x83, 0xac, 0x60, 0x42, - 0x79, 0xc8, 0x3e, 0x70, 0x28, 0xab, 0x2c, 0xa1, 0x32, 0xc0, 0x03, 0xca, 0x5a, 0xa4, 0x8f, 0x87, - 0x98, 0x55, 0x34, 0x54, 0x82, 0xfc, 0x0f, 0x9c, 0x21, 0x6d, 0x0d, 0x39, 0xad, 0x64, 0x10, 0xc0, - 0xf2, 0x43, 0xca, 0x5c, 0x7a, 0x58, 0xd1, 0x51, 0x11, 0x56, 0xf6, 0x1c, 0x3f, 0xa0, 0x5d, 0xbf, - 0x92, 0x35, 0xeb, 0x90, 0xdf, 0xc3, 0x8c, 0x63, 0xaf, 0xd9, 0x5a, 0xc4, 0x51, 0xe6, 0x5f, 0xb4, - 0x68, 0x40, 0x63, 0xa1, 0x01, 0xc8, 0x84, 0x8c, 0xd3, 0x34, 0xb2, 0xeb, 0x7a, 0xad, 0x68, 0xa1, - 0xc4, 0x22, 0xd1, 0xa4, 0x76, 0xc6, 0x69, 0xa2, 0x06, 0xe4, 0x7c, 0xe2, 0xe1, 0x23, 0x23, 0x27, - 0x61, 0x57, 0x8f, 0xc3, 0x1a, 0xad, 0xfa, 0x7d, 0xf1, 0x7c, 0x9b, 0xf0, 0x60, 0x62, 0x87, 0xd8, - 0xea, 0x03, 0x80, 0x44, 0x88, 0x2a, 0xa0, 0xef, 0xe3, 0x89, 0xd4, 0x45, 0xb7, 0x45, 0x13, 0xd5, - 0x20, 0xf7, 0xdc, 0x19, 0x8e, 0x43, 0x6d, 0x66, 0xcf, 0x1d, 0x02, 0xee, 0x66, 0x3e, 0xd1, 0xcc, - 0x67, 0xd1, 0xb2, 0xac, 0xc5, 0x96, 0xf5, 0x11, 0x2c, 0x13, 0x89, 0x97, 0x31, 0x33, 0x83, 0xbe, - 0xd1, 0xb2, 0x15, 0xc2, 0xdc, 0x89, 0xb8, 0x37, 0x4f, 0x72, 0x27, 0x3c, 0x73, 0xd4, 0xb4, 0x12, - 0x9e, 0x4f, 0x63, 0x5f, 0xb5, 0x4f, 0xf0, 0x54, 0x40, 0x17, 0x85, 0x32, 0x0c, 0x6c, 0xd1, 0x9c, - 0x15, 0xd3, 0xa6, 0x17, 0x3b, 0xef, 0x8c, 0x0c, 0xc2, 0x9d, 0xdd, 0xf9, 0xee, 0x6c, 0xdb, 0x99, - 0x6e, 0xd3, 0x24, 0xb1, 0x2d, 0x67, 0xce, 0x22, 0x72, 0x5b, 0xcc, 0xa2, 0xd9, 0xa2, 0xb9, 0x80, - 0x25, 0xdb, 0x91, 0x05, 0x44, 0x4e, 0x06, 0x74, 0xcc, 0xb1, 0xcc, 0xc9, 0x82, 0x1d, 0x76, 0xcc, - 0x1f, 0xc7, 0xf6, 0x6d, 0x9f, 0xc1, 0xbe, 0x09, 0xbb, 0xb2, 0x80, 0x1e, 0x5b, 0xc0, 0xfc, 0x79, - 0xaa, 0xa2, 0x34, 0x16, 0x8a, 0x8b, 0x32, 0x64, 0x58, 0x4f, 0x95, 0xae, 0x0c, 0xeb, 0xa1, 0xf7, - 0xa1, 0xc0, 0xc6, 0x81, 0x3b, 0x70, 0x82, 0x3e, 0x56, 0x95, 0x24, 0x11, 0xa0, 0x75, 0x28, 0x7a, - 0x98, 0x71, 0x9f, 0x38, 0xa2, 0xba, 0xc9, 0x92, 0x5a, 0xb0, 0xd3, 0x22, 0x74, 0x03, 0xca, 0x6e, - 0x80, 0x3d, 0x9f, 0x77, 0x5c, 0x27, 0xf0, 0x3a, 0x84, 0x86, 0x45, 0x6f, 0x77, 0xc9, 0x2e, 0x85, - 0xf2, 0x2d, 0x27, 0xf0, 0xf6, 0x28, 0xba, 0x0a, 0x05, 0x77, 0x20, 0xde, 0x5a, 0x02, 0x92, 0x57, - 0x90, 0x7c, 0x28, 0xda, 0xa3, 0x68, 0x03, 0xf2, 0x34, 0xf0, 0xfb, 0x3e, 0x71, 0x86, 0x46, 0xe1, - 0xf8, 0xeb, 0x27, 0x2e, 0xd5, 0x76, 0x0c, 0x6a, 0x17, 0xe2, 0x2a, 0x6b, 0xfe, 0x23, 0x03, 0x25, - 0xf1, 0x26, 0x7a, 0x8a, 0x03, 0xe6, 0x53, 0xb2, 0x19, 0xee, 0x39, 0x34, 0xb5, 0xe7, 0x40, 0xd7, - 0x41, 0x73, 0x94, 0x71, 0xdf, 0x4b, 0x38, 0xd3, 0x03, 0x6c, 0xcd, 0x11, 0xa8, 0xae, 0x72, 0xf0, - 0x5c, 0x54, 0x57, 0xa0, 0x5c, 0x15, 0x5c, 0x73, 0x51, 0x2e, 0xfa, 0x08, 0x34, 0x4f, 0x95, 0x8a, - 0x39, 0xa8, 0x76, 0xf6, 0xcb, 0x97, 0xd7, 0x96, 0x6c, 0xcd, 0x43, 0x65, 0xd0, 0xb0, 0xac, 0xc7, - 0xb9, 0xdd, 0x25, 0x5b, 0xc3, 0xe8, 0x06, 0x68, 0x3d, 0x69, 0xc2, 0xb9, 0x63, 0x05, 0xae, 0x87, - 0x4c, 0xd0, 0xfa, 0xd2, 0x8e, 0xf3, 0x0a, 0xb2, 0xd6, 0x17, 0xda, 0x0e, 0x8c, 0xc2, 0xe9, 0xda, - 0x0e, 0xd0, 0x4d, 0xd0, 0xf6, 0x8d, 0xd2, 0x5c, 0x9b, 0xb7, 0xb3, 0x2f, 0x5e, 0x5e, 0xd3, 0x6c, - 0x6d, 0xbf, 0x9d, 0x03, 0x9d, 0x8d, 0x47, 0xe6, 0x2f, 0xf4, 0x29, 0x73, 0x5b, 0x6f, 0x6a, 0x6e, - 0x6b, 0x21, 0x73, 0x5b, 0x0b, 0x99, 0xdb, 0x12, 0xe6, 0xbe, 0xfe, 0x75, 0xe6, 0xb6, 0xce, 0x64, - 0x68, 0xeb, 0x6d, 0x19, 0x1a, 0x5d, 0x81, 0x02, 0xc1, 0x87, 0x6a, 0x1b, 0x73, 0x79, 0x5d, 0xab, - 0x65, 0xed, 0x3c, 0xc1, 0x87, 0x72, 0x03, 0x13, 0x79, 0xe1, 0x57, 0xd3, 0x5e, 0x68, 0xbc, 0xa9, - 0x17, 0x1a, 0x0b, 0x79, 0xa1, 0xb1, 0x90, 0x17, 0x1a, 0x0b, 0x79, 0xa1, 0x71, 0x26, 0x2f, 0x34, - 0xde, 0x9a, 0x17, 0x6e, 0x01, 0x22, 0x94, 0x74, 0xdc, 0xc0, 0xe7, 0xbe, 0xeb, 0x0c, 0x95, 0x3b, - 0x7e, 0x29, 0x6b, 0x97, 0x5d, 0x21, 0x94, 0x6c, 0xa9, 0x27, 0x53, 0x7e, 0xf9, 0x57, 0x06, 0xaa, - 0x69, 0xf5, 0x1f, 0x50, 0x82, 0x1f, 0x11, 0xfc, 0xa8, 0xf7, 0x54, 0xbc, 0xca, 0xcf, 0xa9, 0x97, - 0xce, 0x8d, 0xf5, 0xff, 0xbd, 0x0c, 0xdf, 0x39, 0x6e, 0xfd, 0x3d, 0xf9, 0xb6, 0xea, 0x9f, 0x13, - 0xd3, 0x6f, 0x26, 0x09, 0xf1, 0xc1, 0x6c, 0x54, 0x6a, 0x4d, 0xe7, 0x24, 0x37, 0xd0, 0xa7, 0xb0, - 0xec, 0x13, 0x82, 0x83, 0x4d, 0xa3, 0x2c, 0xc9, 0x6b, 0x5f, 0xbb, 0xb2, 0xfa, 0x7d, 0x89, 0xb7, - 0xd5, 0xb8, 0x98, 0xc1, 0x32, 0x56, 0xdf, 0x88, 0xc1, 0x52, 0x0c, 0x56, 0xf5, 0x77, 0x1a, 0x2c, - 0x87, 0xa4, 0xa9, 0x7d, 0x92, 0x3e, 0x77, 0x9f, 0x74, 0x5f, 0x6c, 0xf9, 0x09, 0x0e, 0x94, 0xf7, - 0x1b, 0x8b, 0x6a, 0x1c, 0xfe, 0xc9, 0x1f, 0x3b, 0x64, 0xa8, 0xde, 0x16, 0x07, 0x81, 0x48, 0x98, - 0x9a, 0xbc, 0x10, 0x4d, 0x2e, 0xcf, 0x64, 0x6a, 0x72, 0xd1, 0xae, 0xfe, 0x3e, 0xd2, 0xd5, 0x3a, - 0x01, 0x37, 0x60, 0xc5, 0xa5, 0x63, 0x12, 0x1d, 0x12, 0x0b, 0x76, 0xd4, 0x3d, 0xab, 0xc6, 0xd6, - 0x7f, 0x43, 0xe3, 0x28, 0xff, 0xbe, 0x9a, 0xce, 0xbf, 0xe6, 0xff, 0xf3, 0xef, 0x1c, 0xe5, 0x5f, - 0xf3, 0x1b, 0xe7, 0x5f, 0xf3, 0x5b, 0xce, 0xbf, 0xe6, 0x37, 0xca, 0x3f, 0x7d, 0x6e, 0xfe, 0x7d, - 0xf1, 0x3f, 0xcb, 0xbf, 0xe6, 0x42, 0xf9, 0x67, 0x9d, 0x9a, 0x7f, 0x97, 0xd2, 0x17, 0x07, 0xba, - 0xba, 0x24, 0x88, 0x32, 0xf0, 0xcf, 0x5a, 0x78, 0x49, 0xa8, 0xe6, 0xdb, 0xb9, 0x77, 0xb6, 0xe3, - 0xd0, 0x5b, 0x3f, 0x96, 0x44, 0xeb, 0xf9, 0x9b, 0x36, 0xb5, 0x9f, 0xda, 0xb9, 0xb7, 0xf9, 0x23, - 0x9f, 0x0f, 0xb6, 0x8f, 0x78, 0xe0, 0xb4, 0xc8, 0xe4, 0x5b, 0x5d, 0xdb, 0xf5, 0x64, 0x6d, 0x29, - 0x5c, 0x8b, 0x4c, 0x62, 0x8d, 0xde, 0x78, 0x75, 0x4f, 0xa0, 0x94, 0x1e, 0x8f, 0x6a, 0x62, 0x01, - 0xa7, 0x5c, 0xe3, 0x46, 0x15, 0xc0, 0x11, 0x0b, 0x0f, 0x2b, 0xa3, 0x2e, 0x2a, 0x60, 0x29, 0xac, - 0x80, 0xb2, 0xe7, 0x9a, 0x7f, 0xd4, 0xa0, 0x22, 0x26, 0xfc, 0xe1, 0x81, 0xe7, 0x70, 0xec, 0x3d, - 0x39, 0xb2, 0x9d, 0x43, 0x74, 0x15, 0xa0, 0x4b, 0xbd, 0x49, 0xa7, 0x3b, 0xe1, 0xf2, 0x06, 0x55, - 0xab, 0x95, 0xec, 0x82, 0x90, 0xb4, 0x85, 0x00, 0xdd, 0x80, 0x55, 0x67, 0xcc, 0x07, 0x1d, 0x9f, - 0xf4, 0xa8, 0xc2, 0x64, 0x24, 0xe6, 0x82, 0x10, 0xdf, 0x27, 0x3d, 0x1a, 0xe2, 0xa6, 0x2f, 0x62, - 0xf5, 0x13, 0x17, 0xb1, 0x6b, 0x50, 0x8c, 0xcf, 0x2e, 0x9d, 0x3b, 0xea, 0x12, 0xb6, 0x10, 0x9d, - 0x5e, 0xee, 0xa0, 0x0f, 0xa1, 0x9c, 0x3c, 0xdf, 0xbc, 0x6d, 0x35, 0x8d, 0x9f, 0xe5, 0x25, 0xa6, - 0x14, 0x61, 0x84, 0xd0, 0xfc, 0x5c, 0x87, 0x8b, 0x53, 0x4b, 0x68, 0x53, 0x6f, 0x82, 0x6e, 0x43, - 0x5e, 0x5d, 0xb1, 0x87, 0x77, 0xc0, 0xf3, 0x82, 0x2c, 0x46, 0x89, 0xec, 0x1e, 0xe1, 0x11, 0x8d, - 0xb2, 0x5b, 0xb4, 0x85, 0x0a, 0xdc, 0x1f, 0x61, 0x3a, 0xe6, 0x9d, 0x01, 0xf6, 0xfb, 0x03, 0xae, - 0xec, 0x78, 0x41, 0x49, 0x77, 0xa5, 0x10, 0x5d, 0x87, 0x32, 0xa3, 0x23, 0xdc, 0x49, 0x8e, 0x62, - 0x59, 0x79, 0x14, 0x2b, 0x09, 0xe9, 0x9e, 0x52, 0x16, 0xed, 0xc2, 0x07, 0xd3, 0xa8, 0xce, 0x8c, - 0xc2, 0xfc, 0x9b, 0xb0, 0x30, 0xbf, 0x9f, 0x1e, 0xb9, 0x77, 0xbc, 0x48, 0xb7, 0xe1, 0x22, 0x3e, - 0xe2, 0x98, 0x88, 0x18, 0xe9, 0x50, 0x79, 0x9d, 0xcc, 0x8c, 0xaf, 0x56, 0x4e, 0x59, 0x66, 0x25, - 0xc6, 0x3f, 0x0a, 0xe1, 0xe8, 0x19, 0xac, 0x4d, 0x4d, 0x3f, 0x83, 0x70, 0xf5, 0x14, 0xc2, 0x2b, - 0xa9, 0x37, 0xc7, 0xf6, 0x31, 0x6e, 0xf3, 0x0f, 0x1a, 0xbc, 0x93, 0x72, 0x49, 0x4b, 0x85, 0x05, - 0xfa, 0x04, 0x4a, 0xe1, 0xd5, 0xbd, 0x8c, 0x9d, 0xc8, 0x31, 0xef, 0xd6, 0xc3, 0xcb, 0xfe, 0x3a, - 0x3f, 0xaa, 0x3f, 0x96, 0x8f, 0x05, 0xd8, 0x2e, 0xb2, 0xb8, 0xcd, 0xd0, 0x7a, 0x72, 0xd7, 0x56, - 0xb4, 0xca, 0xa9, 0x01, 0x3b, 0x18, 0x87, 0x77, 0x6f, 0x53, 0xd1, 0xd4, 0x90, 0x7e, 0x4a, 0x45, - 0x53, 0x63, 0xc1, 0x68, 0xb2, 0xfe, 0xa4, 0x41, 0x51, 0xa8, 0xfe, 0x18, 0x07, 0xcf, 0x7d, 0x17, - 0xa3, 0x3b, 0x90, 0xdd, 0x76, 0x07, 0x14, 0xbd, 0x9b, 0x24, 0x68, 0xea, 0x13, 0x50, 0xf5, 0xbd, - 0xe3, 0x62, 0xf5, 0x95, 0xa4, 0x05, 0xf9, 0xe8, 0x7b, 0x0d, 0xba, 0x9c, 0x60, 0x8e, 0x7d, 0xea, - 0xa9, 0x56, 0x67, 0x3d, 0x52, 0x14, 0xdf, 0x0b, 0x3f, 0x9a, 0x88, 0xd2, 0x65, 0x4c, 0x57, 0x87, - 0xe4, 0xab, 0x4e, 0xf5, 0xf2, 0x8c, 0x27, 0xe1, 0xf8, 0xf6, 0xee, 0x97, 0xaf, 0xd6, 0xb4, 0x17, - 0xaf, 0xd6, 0xb4, 0xbf, 0xbf, 0x5a, 0xd3, 0x3e, 0x7f, 0xbd, 0xb6, 0xf4, 0xe2, 0xf5, 0xda, 0xd2, - 0x5f, 0x5f, 0xaf, 0x2d, 0x3d, 0xab, 0x9f, 0xfe, 0xb9, 0x05, 0x33, 0x3e, 0xe6, 0xfe, 0x70, 0x23, - 0x62, 0xee, 0x2e, 0x4b, 0xcf, 0x37, 0xfe, 0x13, 0x00, 0x00, 0xff, 0xff, 0x8b, 0xd0, 0x8b, 0x6c, - 0x9e, 0x1c, 0x00, 0x00, + // 1983 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0xcf, 0x6f, 0x1b, 0xb9, + 0xf5, 0xf7, 0x68, 0x24, 0x5b, 0x7a, 0x56, 0x64, 0x85, 0x9b, 0xef, 0x7e, 0x27, 0xca, 0xc6, 0xf1, + 0x0e, 0xb2, 0x89, 0xba, 0xd8, 0x48, 0xd1, 0x48, 0x01, 0x8a, 0x1c, 0x8a, 0x48, 0x8e, 0xbd, 0x0e, + 0x9a, 0x38, 0xc5, 0x24, 0x4d, 0x8b, 0x5c, 0x84, 0xd1, 0x0c, 0x25, 0x0d, 0x22, 0x91, 0xee, 0x90, + 0x4a, 0xac, 0x9e, 0x8a, 0xf6, 0xd0, 0xeb, 0x5e, 0x8a, 0x02, 0xbd, 0xf5, 0xd8, 0x53, 0xb1, 0xff, + 0x41, 0x6f, 0xcd, 0xa5, 0x40, 0x2e, 0x05, 0x0a, 0x14, 0x08, 0x8a, 0xe4, 0xda, 0xbf, 0xa0, 0x45, + 0xb1, 0x05, 0x39, 0x9c, 0x1f, 0xb2, 0x25, 0xaf, 0xe2, 0x6d, 0x37, 0x30, 0xd0, 0x8b, 0x44, 0xbe, + 0xf9, 0xf0, 0xc3, 0xc7, 0xf7, 0x6b, 0x86, 0x24, 0xac, 0x1f, 0x04, 0x94, 0xd3, 0x9a, 0xfc, 0x45, + 0x79, 0x8e, 0x19, 0xf7, 0x1c, 0xee, 0x54, 0x2e, 0x0c, 0xe8, 0x80, 0x4a, 0x61, 0x5d, 0xb4, 0xc2, + 0xe7, 0x95, 0x8b, 0x03, 0x4a, 0x07, 0x23, 0x5c, 0x97, 0xbd, 0xde, 0xa4, 0x5f, 0x77, 0xc8, 0x54, + 0x3d, 0xaa, 0xb8, 0x94, 0x8d, 0x29, 0xab, 0xf3, 0xc3, 0xfa, 0xf3, 0x46, 0x0f, 0x73, 0xa7, 0x51, + 0xe7, 0x87, 0xe1, 0x33, 0xf3, 0x06, 0xe8, 0x77, 0xe9, 0x00, 0x21, 0xc8, 0x32, 0xff, 0xa7, 0xd8, + 0xd0, 0xb6, 0xb4, 0x6a, 0xc1, 0x96, 0x6d, 0x21, 0x23, 0xce, 0x18, 0x1b, 0x99, 0x50, 0x26, 0xda, + 0xe6, 0x2d, 0xd0, 0xb7, 0x1d, 0x8e, 0x0c, 0x58, 0x1b, 0x53, 0xe2, 0x3f, 0xc3, 0x81, 0x1a, 0x11, + 0x75, 0xd1, 0x05, 0xc8, 0x8d, 0xfc, 0xe7, 0x98, 0xc9, 0x51, 0x39, 0x3b, 0xec, 0x98, 0x9f, 0x43, + 0x61, 0xcf, 0x61, 0x6d, 0xe2, 0x8f, 0x9d, 0x11, 0xfa, 0x0c, 0x56, 0x1d, 0xd9, 0x92, 0x63, 0xd7, + 0xad, 0x0b, 0xb5, 0x50, 0xf5, 0x5a, 0xa4, 0x7a, 0xad, 0x4d, 0xa6, 0xb6, 0xc2, 0xa0, 0x22, 0x68, + 0x87, 0x92, 0x4c, 0xb7, 0xb5, 0x43, 0x73, 0x1b, 0x8a, 0x7b, 0x0e, 0x4b, 0xb8, 0x9a, 0x00, 0x43, + 0x87, 0x75, 0x97, 0xe0, 0x2b, 0x0c, 0xa3, 0x41, 0xe6, 0x03, 0xd8, 0x08, 0x49, 0x12, 0x9e, 0xdb, + 0x50, 0x12, 0x3c, 0x4b, 0x72, 0x15, 0x87, 0xa9, 0xb1, 0xe6, 0x75, 0x58, 0xdf, 0x71, 0x87, 0xd4, + 0xc6, 0x3f, 0x99, 0x60, 0x16, 0xda, 0x06, 0x33, 0xe6, 0x0c, 0x70, 0x6c, 0x9b, 0xb0, 0x6b, 0x56, + 0xa1, 0x18, 0x02, 0xd9, 0x01, 0x25, 0x0c, 0x9f, 0x80, 0xfc, 0x04, 0x36, 0x1e, 0x39, 0xd3, 0x3d, + 0x3c, 0x1a, 0xc5, 0xb4, 0x91, 0x37, 0xb4, 0x94, 0x37, 0x6a, 0x50, 0x4e, 0x60, 0x8a, 0xb4, 0x02, + 0xf9, 0x41, 0x80, 0x31, 0xf7, 0xc9, 0x40, 0x61, 0xe3, 0xbe, 0xb9, 0x03, 0xa5, 0xc7, 0x98, 0x71, + 0xb1, 0x04, 0xc5, 0xda, 0x04, 0x70, 0xc8, 0x74, 0x29, 0xfb, 0x39, 0x64, 0xaa, 0x16, 0xbc, 0x03, + 0x1b, 0x31, 0x8d, 0x9a, 0xd5, 0x9a, 0xe3, 0x87, 0x0f, 0x6a, 0x51, 0xc8, 0xd6, 0x62, 0x63, 0xa5, + 0xdd, 0xf0, 0x04, 0xd6, 0x04, 0xcd, 0x03, 0x36, 0x40, 0xdf, 0x87, 0x35, 0xe6, 0x0f, 0x08, 0x0e, + 0x98, 0xa1, 0x6d, 0xe9, 0xd5, 0x62, 0xa7, 0xf1, 0x8f, 0xd7, 0x57, 0x6e, 0x0c, 0x7c, 0x3e, 0x9c, + 0xf4, 0x6a, 0x2e, 0x1d, 0xd7, 0x55, 0x04, 0x87, 0x7f, 0x37, 0x98, 0xf7, 0xac, 0xce, 0xa7, 0x07, + 0x98, 0xd5, 0xda, 0xae, 0xdb, 0xf6, 0xbc, 0x00, 0x33, 0x66, 0x47, 0x0c, 0x66, 0x0f, 0xce, 0x77, + 0x1c, 0xef, 0xc1, 0x64, 0xc4, 0xfd, 0x47, 0xfe, 0x80, 0x38, 0x7c, 0x12, 0x60, 0xb4, 0x09, 0xc0, + 0xa2, 0x8e, 0x9a, 0xc4, 0x4e, 0x49, 0xd0, 0x75, 0xd8, 0x18, 0x3b, 0x23, 0xdf, 0xf5, 0xe9, 0x84, + 0x75, 0xfb, 0x3e, 0x1e, 0x79, 0x46, 0x6e, 0x4b, 0xab, 0x16, 0xed, 0x52, 0x2c, 0xde, 0x15, 0xd2, + 0xdb, 0xd9, 0x57, 0xbf, 0xbd, 0xa2, 0x99, 0x1c, 0x0a, 0xdb, 0x13, 0xc6, 0xe9, 0x18, 0x07, 0x0d, + 0x54, 0x82, 0x8c, 0xef, 0xc9, 0x45, 0xe7, 0xec, 0x8c, 0xef, 0xcd, 0x4b, 0x1c, 0xf4, 0x1d, 0x28, + 0xb3, 0x49, 0x8f, 0xb9, 0x81, 0x7f, 0xc0, 0x7d, 0x4a, 0xba, 0x7d, 0x8c, 0x0d, 0x7d, 0x4b, 0xab, + 0x66, 0xec, 0x8d, 0xb4, 0x7c, 0x17, 0xcb, 0xb0, 0x38, 0x70, 0xa6, 0x63, 0x4c, 0xb8, 0xb1, 0x16, + 0x86, 0x85, 0xea, 0x9a, 0x5f, 0x66, 0x92, 0x69, 0xad, 0x63, 0xd3, 0x56, 0x20, 0xef, 0x13, 0x6f, + 0xc2, 0x78, 0x30, 0x55, 0xd9, 0x17, 0xf7, 0x63, 0x95, 0xf4, 0x94, 0x4a, 0x17, 0x20, 0xd7, 0xc7, + 0x2f, 0x70, 0x60, 0x64, 0xa5, 0x1e, 0x61, 0x07, 0x5d, 0x82, 0x7c, 0x80, 0x19, 0x0e, 0x9e, 0x63, + 0xcf, 0xf8, 0x75, 0x5e, 0xe6, 0x5d, 0x2c, 0x40, 0x9f, 0x41, 0xd6, 0xf5, 0xf9, 0xd4, 0x58, 0xdd, + 0xd2, 0xaa, 0x25, 0xcb, 0x48, 0x1c, 0x1c, 0x6b, 0x55, 0xdb, 0xf6, 0xf9, 0xd4, 0x96, 0x28, 0x74, + 0x1b, 0xce, 0x8d, 0x7d, 0xe6, 0xe2, 0xd1, 0xc8, 0x21, 0x98, 0x4e, 0x98, 0x01, 0x27, 0xc4, 0xd7, + 0x2c, 0xd4, 0xfc, 0x1c, 0xb2, 0x82, 0x09, 0xe5, 0x21, 0x7b, 0xdf, 0xa1, 0xac, 0xbc, 0x82, 0x4a, + 0x00, 0xf7, 0x29, 0x6b, 0x93, 0x01, 0x1e, 0x61, 0x56, 0xd6, 0x50, 0x11, 0xf2, 0x3f, 0x70, 0x46, + 0xb4, 0x3d, 0xe2, 0xb4, 0x9c, 0x41, 0x00, 0xab, 0x0f, 0x28, 0x73, 0xe9, 0x8b, 0xb2, 0x8e, 0xd6, + 0x61, 0x6d, 0xdf, 0xf1, 0x03, 0xda, 0xf3, 0xcb, 0x59, 0xb3, 0x06, 0xf9, 0x7d, 0xcc, 0x38, 0xf6, + 0x5a, 0xed, 0x65, 0x1c, 0x65, 0xfe, 0x59, 0x8b, 0x06, 0x34, 0x97, 0x1a, 0x80, 0x4c, 0xc8, 0x38, + 0x2d, 0x23, 0xbb, 0xa5, 0x57, 0xd7, 0x2d, 0x94, 0x58, 0x24, 0x9a, 0xd4, 0xce, 0x38, 0x2d, 0xd4, + 0x84, 0x9c, 0x4f, 0x3c, 0x7c, 0x68, 0xe4, 0x24, 0xec, 0xf2, 0x51, 0x58, 0xb3, 0x5d, 0xbb, 0x27, + 0x9e, 0xef, 0x10, 0x1e, 0x4c, 0xed, 0x10, 0x5b, 0xb9, 0x0f, 0x90, 0x08, 0x51, 0x19, 0xf4, 0x67, + 0x78, 0x2a, 0x75, 0xd1, 0x6d, 0xd1, 0x44, 0x55, 0xc8, 0x3d, 0x77, 0x46, 0x93, 0x50, 0x9b, 0xf9, + 0x73, 0x87, 0x80, 0xdb, 0x99, 0xef, 0x6a, 0xe6, 0xd3, 0x68, 0x59, 0xd6, 0x72, 0xcb, 0xfa, 0x14, + 0x56, 0x89, 0xc4, 0xcb, 0x98, 0x99, 0x43, 0xdf, 0x6c, 0xdb, 0x0a, 0x61, 0xee, 0x46, 0xdc, 0x8d, + 0xe3, 0xdc, 0x09, 0xcf, 0x02, 0x35, 0xad, 0x84, 0xe7, 0x4e, 0xec, 0xab, 0xce, 0x31, 0x9e, 0x32, + 0xe8, 0xa2, 0x50, 0x86, 0x81, 0x2d, 0x9a, 0xf3, 0x62, 0xda, 0xf4, 0x62, 0xe7, 0x9d, 0x92, 0x41, + 0xb8, 0xb3, 0xb7, 0xd8, 0x9d, 0x1d, 0x3b, 0xd3, 0x6b, 0x99, 0x24, 0xb6, 0xe5, 0xdc, 0x59, 0x44, + 0x6e, 0x8b, 0x59, 0x34, 0x5b, 0x34, 0x97, 0xb0, 0x64, 0x27, 0xb2, 0x80, 0xc8, 0xc9, 0x80, 0x4e, + 0x38, 0x96, 0x39, 0x59, 0xb0, 0xc3, 0x8e, 0xf9, 0xe3, 0xd8, 0xbe, 0x9d, 0x53, 0xd8, 0x37, 0x61, + 0x57, 0x16, 0xd0, 0x63, 0x0b, 0x98, 0x3f, 0x4f, 0x55, 0x94, 0xe6, 0x52, 0x71, 0x51, 0x82, 0x0c, + 0xeb, 0xab, 0xd2, 0x95, 0x61, 0x7d, 0xf4, 0x11, 0x14, 0xd8, 0x24, 0x70, 0x87, 0x4e, 0x30, 0xc0, + 0xaa, 0x92, 0x24, 0x02, 0xb4, 0x05, 0xeb, 0x1e, 0x66, 0xdc, 0x27, 0x8e, 0xa8, 0x6e, 0xb2, 0xa4, + 0x16, 0xec, 0xb4, 0x08, 0x5d, 0x83, 0x92, 0x1b, 0x60, 0xcf, 0xe7, 0x5d, 0xd7, 0x09, 0xbc, 0x2e, + 0xa1, 0x61, 0xd1, 0xdb, 0x5b, 0xb1, 0x8b, 0xa1, 0x7c, 0xdb, 0x09, 0xbc, 0x7d, 0x8a, 0x2e, 0x43, + 0xc1, 0x1d, 0x8a, 0xb7, 0x96, 0x80, 0xe4, 0x15, 0x24, 0x1f, 0x8a, 0xf6, 0x29, 0xaa, 0x43, 0x9e, + 0x06, 0xfe, 0xc0, 0x27, 0xce, 0xc8, 0x28, 0x1c, 0x7d, 0xfd, 0xc4, 0xa5, 0xda, 0x8e, 0x41, 0x9d, + 0x42, 0x5c, 0x65, 0xcd, 0xbf, 0x67, 0xa0, 0x28, 0xde, 0x44, 0x4f, 0x70, 0xc0, 0x7c, 0x4a, 0x1a, + 0xe1, 0x37, 0x87, 0xa6, 0xbe, 0x39, 0xd0, 0x55, 0xd0, 0x1c, 0x65, 0xdc, 0x0f, 0x13, 0xce, 0xf4, + 0x00, 0x5b, 0x73, 0x04, 0xaa, 0xa7, 0x1c, 0xbc, 0x10, 0xd5, 0x13, 0x28, 0x57, 0x05, 0xd7, 0x42, + 0x94, 0x8b, 0x3e, 0x05, 0xcd, 0x53, 0xa5, 0x62, 0x01, 0xaa, 0x93, 0x7d, 0xf9, 0xfa, 0xca, 0x8a, + 0xad, 0x79, 0xa8, 0x04, 0x1a, 0x96, 0xf5, 0x38, 0xb7, 0xb7, 0x62, 0x6b, 0x18, 0x5d, 0x03, 0xad, + 0x2f, 0x4d, 0xb8, 0x70, 0xac, 0xc0, 0xf5, 0x91, 0x09, 0xda, 0x40, 0xda, 0x71, 0x51, 0x41, 0xd6, + 0x06, 0x42, 0xdb, 0xa1, 0x51, 0x38, 0x59, 0xdb, 0x21, 0xba, 0x0e, 0xda, 0x33, 0xa3, 0xb8, 0xd0, + 0xe6, 0x9d, 0xec, 0xab, 0xd7, 0x57, 0x34, 0x5b, 0x7b, 0xd6, 0xc9, 0x81, 0xce, 0x26, 0x63, 0xf3, + 0x17, 0xfa, 0x8c, 0xb9, 0xad, 0x77, 0x35, 0xb7, 0xb5, 0x94, 0xb9, 0xad, 0xa5, 0xcc, 0x6d, 0x09, + 0x73, 0x5f, 0xfd, 0x3a, 0x73, 0x5b, 0xa7, 0x32, 0xb4, 0xf5, 0xbe, 0x0c, 0x8d, 0x2e, 0x41, 0x81, + 0xe0, 0x17, 0xea, 0x33, 0xe6, 0xe2, 0x96, 0x56, 0xcd, 0xda, 0x79, 0x82, 0x5f, 0xc8, 0x0f, 0x98, + 0xc8, 0x0b, 0xbf, 0x9a, 0xf5, 0x42, 0xf3, 0x5d, 0xbd, 0xd0, 0x5c, 0xca, 0x0b, 0xcd, 0xa5, 0xbc, + 0xd0, 0x5c, 0xca, 0x0b, 0xcd, 0x53, 0x79, 0xa1, 0xf9, 0xde, 0xbc, 0x70, 0x03, 0x10, 0xa1, 0xa4, + 0xeb, 0x06, 0x3e, 0xf7, 0x5d, 0x67, 0xa4, 0xdc, 0xf1, 0x4b, 0x59, 0xbb, 0xec, 0x32, 0xa1, 0x64, + 0x5b, 0x3d, 0x99, 0xf1, 0xcb, 0x3f, 0x33, 0x50, 0x49, 0xab, 0x7f, 0x9f, 0x12, 0xfc, 0x90, 0xe0, + 0x87, 0xfd, 0x27, 0xe2, 0x55, 0x7e, 0x46, 0xbd, 0x74, 0x66, 0xac, 0xff, 0xaf, 0x55, 0xf8, 0xff, + 0xa3, 0xd6, 0xdf, 0x97, 0x6f, 0xab, 0xc1, 0x19, 0x31, 0x7d, 0x23, 0x49, 0x88, 0x8f, 0xe7, 0xa3, + 0x52, 0x6b, 0x3a, 0x23, 0xb9, 0x81, 0xee, 0xc0, 0xaa, 0x4f, 0x08, 0x0e, 0x1a, 0x46, 0x49, 0x92, + 0x57, 0xbf, 0x76, 0x65, 0xb5, 0x7b, 0x12, 0x6f, 0xab, 0x71, 0x31, 0x83, 0x65, 0x6c, 0xbc, 0x13, + 0x83, 0xa5, 0x18, 0xac, 0xca, 0xef, 0x34, 0x58, 0x0d, 0x49, 0x53, 0xdf, 0x49, 0xfa, 0xc2, 0xef, + 0xa4, 0x7b, 0xe2, 0x93, 0x9f, 0xe0, 0x40, 0x79, 0xbf, 0xb9, 0xac, 0xc6, 0xe1, 0x9f, 0xfc, 0xb1, + 0x43, 0x86, 0xca, 0x4d, 0xb1, 0x11, 0x88, 0x84, 0xa9, 0xc9, 0x0b, 0xd1, 0xe4, 0x72, 0x4f, 0xa6, + 0x26, 0x17, 0xed, 0xca, 0xef, 0x23, 0x5d, 0xad, 0x63, 0x70, 0x03, 0xd6, 0x5c, 0x3a, 0x21, 0xd1, + 0x26, 0xb1, 0x60, 0x47, 0xdd, 0xd3, 0x6a, 0x6c, 0xfd, 0x27, 0x34, 0x8e, 0xf2, 0xef, 0xab, 0xd9, + 0xfc, 0x6b, 0xfd, 0x2f, 0xff, 0xce, 0x50, 0xfe, 0xb5, 0xbe, 0x71, 0xfe, 0xb5, 0xbe, 0xe5, 0xfc, + 0x6b, 0x7d, 0xa3, 0xfc, 0xd3, 0x17, 0xe6, 0xdf, 0x97, 0xff, 0xb5, 0xfc, 0x6b, 0x2d, 0x95, 0x7f, + 0xd6, 0x89, 0xf9, 0x77, 0x21, 0x7d, 0x70, 0xa0, 0xab, 0x43, 0x82, 0x28, 0x03, 0xff, 0xa4, 0x85, + 0x87, 0x84, 0x6a, 0xbe, 0xdd, 0xbb, 0xa7, 0xdb, 0x0e, 0xbd, 0xf7, 0x6d, 0x49, 0xb4, 0x9e, 0xbf, + 0x6a, 0x33, 0xdf, 0x53, 0xbb, 0x77, 0x1b, 0x3f, 0xf2, 0xf9, 0x70, 0xe7, 0x90, 0x07, 0x4e, 0x9b, + 0x4c, 0xbf, 0xd5, 0xb5, 0x5d, 0x4d, 0xd6, 0x96, 0xc2, 0xb5, 0xc9, 0x34, 0xd6, 0xe8, 0x9d, 0x57, + 0xf7, 0x18, 0x8a, 0xe9, 0xf1, 0xa8, 0x2a, 0x16, 0x70, 0xc2, 0x31, 0x6e, 0x54, 0x01, 0x1c, 0xb1, + 0xf0, 0xb0, 0x32, 0xea, 0xa2, 0x02, 0x16, 0xc3, 0x0a, 0x28, 0x7b, 0xae, 0xf9, 0x07, 0x0d, 0xca, + 0x62, 0xc2, 0x1f, 0x1e, 0x78, 0x0e, 0xc7, 0xde, 0xe3, 0x43, 0xdb, 0x79, 0x81, 0x2e, 0x03, 0xf4, + 0xa8, 0x37, 0xed, 0xf6, 0xa6, 0x5c, 0x9e, 0xa0, 0x6a, 0xd5, 0xa2, 0x5d, 0x10, 0x92, 0x8e, 0x10, + 0xa0, 0x6b, 0xb0, 0xe1, 0x4c, 0xf8, 0xb0, 0xeb, 0x93, 0x3e, 0x55, 0x98, 0x8c, 0xc4, 0x9c, 0x13, + 0xe2, 0x7b, 0xa4, 0x4f, 0x43, 0xdc, 0xec, 0x41, 0xac, 0x7e, 0xec, 0x20, 0x76, 0x13, 0xd6, 0xe3, + 0xbd, 0x4b, 0xf7, 0x96, 0x3a, 0x84, 0x2d, 0x44, 0xbb, 0x97, 0x5b, 0xe8, 0x13, 0x28, 0x25, 0xcf, + 0x1b, 0x37, 0xad, 0x96, 0xf1, 0xb3, 0xbc, 0xc4, 0x14, 0x23, 0x8c, 0x10, 0x9a, 0x5f, 0xe8, 0x70, + 0x7e, 0x66, 0x09, 0x1d, 0xea, 0x4d, 0xd1, 0x4d, 0xc8, 0xab, 0x23, 0xf6, 0xf0, 0x0c, 0x78, 0x51, + 0x90, 0xc5, 0x28, 0x91, 0xdd, 0x63, 0x3c, 0xa6, 0x51, 0x76, 0x8b, 0xb6, 0x50, 0x81, 0xfb, 0x63, + 0x4c, 0x27, 0xbc, 0x3b, 0xc4, 0xfe, 0x60, 0xc8, 0x95, 0x1d, 0xcf, 0x29, 0xe9, 0x9e, 0x14, 0xa2, + 0xab, 0x50, 0x62, 0x74, 0x8c, 0xbb, 0xc9, 0x56, 0x2c, 0x2b, 0xb7, 0x62, 0x45, 0x21, 0xdd, 0x57, + 0xca, 0xa2, 0x3d, 0xf8, 0x78, 0x16, 0xd5, 0x9d, 0x53, 0x98, 0x7f, 0x13, 0x16, 0xe6, 0x8f, 0xd2, + 0x23, 0xf7, 0x8f, 0x16, 0xe9, 0x0e, 0x9c, 0xc7, 0x87, 0x1c, 0x13, 0x11, 0x23, 0x5d, 0x2a, 0x8f, + 0x93, 0x99, 0xf1, 0xd5, 0xda, 0x09, 0xcb, 0x2c, 0xc7, 0xf8, 0x87, 0x21, 0x1c, 0x3d, 0x85, 0xcd, + 0x99, 0xe9, 0xe7, 0x10, 0x6e, 0x9c, 0x40, 0x78, 0x29, 0xf5, 0xe6, 0xd8, 0x39, 0xc2, 0x6d, 0xbe, + 0xd4, 0xe0, 0x83, 0x94, 0x4b, 0xda, 0x2a, 0x2c, 0xd0, 0x1d, 0x28, 0x86, 0x47, 0xf7, 0x32, 0x76, + 0x22, 0xc7, 0x5c, 0xae, 0x85, 0x87, 0xfd, 0x35, 0x7e, 0x58, 0x53, 0xb7, 0x56, 0xb5, 0x47, 0x12, + 0x26, 0x06, 0xd9, 0xeb, 0x2c, 0x6e, 0x33, 0x54, 0x4d, 0xce, 0xdc, 0x44, 0xd2, 0x1c, 0x1f, 0xb8, + 0x8b, 0x71, 0x78, 0x16, 0x37, 0x13, 0x5d, 0x4d, 0xe9, 0xb7, 0x54, 0x74, 0x35, 0x97, 0x8c, 0x2e, + 0xeb, 0x8f, 0x1a, 0xac, 0x8b, 0xa5, 0x3c, 0xc2, 0xc1, 0x73, 0xdf, 0xc5, 0xe8, 0x16, 0x64, 0x77, + 0xdc, 0x21, 0x45, 0xff, 0x97, 0x24, 0x6c, 0xea, 0x4a, 0xa8, 0xf2, 0xe1, 0x51, 0xb1, 0xba, 0x35, + 0x69, 0x43, 0x3e, 0xba, 0xbf, 0x41, 0x17, 0x13, 0xcc, 0x91, 0xab, 0x9f, 0x4a, 0x65, 0xde, 0x23, + 0x45, 0xf1, 0xbd, 0xf0, 0x12, 0x45, 0x94, 0x32, 0x63, 0xb6, 0x5a, 0x24, 0xb7, 0x3c, 0x95, 0x8b, + 0x73, 0x9e, 0x84, 0xe3, 0x3b, 0x7b, 0x2f, 0xdf, 0x6c, 0x6a, 0xaf, 0xde, 0x6c, 0x6a, 0x7f, 0x7b, + 0xb3, 0xa9, 0x7d, 0xf1, 0x76, 0x73, 0xe5, 0xd5, 0xdb, 0xcd, 0x95, 0xbf, 0xbc, 0xdd, 0x5c, 0x79, + 0x5a, 0x3b, 0xf9, 0xfa, 0x05, 0x33, 0x3e, 0xe1, 0xfe, 0xa8, 0x1e, 0x31, 0xf7, 0x56, 0x65, 0x24, + 0x34, 0xff, 0x1d, 0x00, 0x00, 0xff, 0xff, 0xf2, 0x5f, 0xed, 0x9c, 0xb6, 0x1c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/testutil/testdata/proto.proto b/testutil/testdata/proto.proto index 335091fc98..e265ca3cae 100644 --- a/testutil/testdata/proto.proto +++ b/testutil/testdata/proto.proto @@ -3,7 +3,7 @@ package testdata; import "gogoproto/gogo.proto"; import "google/protobuf/any.proto"; -import "cosmos/tx/tx.proto"; +import "cosmos/tx/v1beta1/tx.proto"; option go_package = "github.com/cosmos/cosmos-sdk/testutil/testdata"; @@ -362,8 +362,8 @@ message TestUpdatedTxBody { } message TestUpdatedAuthInfo { - repeated cosmos.tx.SignerInfo signer_infos = 1; - cosmos.tx.Fee fee = 2; + repeated cosmos.tx.v1beta1.SignerInfo signer_infos = 1; + cosmos.tx.v1beta1.Fee fee = 2; bytes new_field_3 = 3; bytes new_field_1024 = 1024; } diff --git a/types/cosmos.pb.go b/types/abci.pb.go similarity index 55% rename from types/cosmos.pb.go rename to types/abci.pb.go index 7ef27a5101..fcdcf6a121 100644 --- a/types/cosmos.pb.go +++ b/types/abci.pb.go @@ -1,14 +1,14 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/cosmos.proto +// source: cosmos/base/abci/v1beta1/abci.proto package types import ( fmt "fmt" - types1 "github.com/cosmos/cosmos-sdk/codec/types" + types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" - types "github.com/tendermint/tendermint/abci/types" + types1 "github.com/tendermint/tendermint/abci/types" io "io" math "math" math_bits "math/bits" @@ -27,482 +27,40 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package -// Coin defines a token with a denomination and an amount. -// -// NOTE: The amount field is an Int which implements the custom method -// signatures required by gogoproto. -type Coin struct { - Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"` - Amount Int `protobuf:"bytes,2,opt,name=amount,proto3,customtype=Int" json:"amount"` -} - -func (m *Coin) Reset() { *m = Coin{} } -func (*Coin) ProtoMessage() {} -func (*Coin) Descriptor() ([]byte, []int) { - return fileDescriptor_809e58c688fefd51, []int{0} -} -func (m *Coin) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *Coin) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_Coin.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *Coin) XXX_Merge(src proto.Message) { - xxx_messageInfo_Coin.Merge(m, src) -} -func (m *Coin) XXX_Size() int { - return m.Size() -} -func (m *Coin) XXX_DiscardUnknown() { - xxx_messageInfo_Coin.DiscardUnknown(m) -} - -var xxx_messageInfo_Coin proto.InternalMessageInfo - -func (m *Coin) GetDenom() string { - if m != nil { - return m.Denom - } - return "" -} - -// DecCoin defines a token with a denomination and a decimal amount. -// -// NOTE: The amount field is an Dec which implements the custom method -// signatures required by gogoproto. -type DecCoin struct { - Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"` - Amount Dec `protobuf:"bytes,2,opt,name=amount,proto3,customtype=Dec" json:"amount"` -} - -func (m *DecCoin) Reset() { *m = DecCoin{} } -func (*DecCoin) ProtoMessage() {} -func (*DecCoin) Descriptor() ([]byte, []int) { - return fileDescriptor_809e58c688fefd51, []int{1} -} -func (m *DecCoin) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DecCoin) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_DecCoin.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *DecCoin) XXX_Merge(src proto.Message) { - xxx_messageInfo_DecCoin.Merge(m, src) -} -func (m *DecCoin) XXX_Size() int { - return m.Size() -} -func (m *DecCoin) XXX_DiscardUnknown() { - xxx_messageInfo_DecCoin.DiscardUnknown(m) -} - -var xxx_messageInfo_DecCoin proto.InternalMessageInfo - -func (m *DecCoin) GetDenom() string { - if m != nil { - return m.Denom - } - return "" -} - -// IntProto defines a Protobuf wrapper around an Int object. -type IntProto struct { - Int Int `protobuf:"bytes,1,opt,name=int,proto3,customtype=Int" json:"int"` -} - -func (m *IntProto) Reset() { *m = IntProto{} } -func (*IntProto) ProtoMessage() {} -func (*IntProto) Descriptor() ([]byte, []int) { - return fileDescriptor_809e58c688fefd51, []int{2} -} -func (m *IntProto) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *IntProto) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_IntProto.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *IntProto) XXX_Merge(src proto.Message) { - xxx_messageInfo_IntProto.Merge(m, src) -} -func (m *IntProto) XXX_Size() int { - return m.Size() -} -func (m *IntProto) XXX_DiscardUnknown() { - xxx_messageInfo_IntProto.DiscardUnknown(m) -} - -var xxx_messageInfo_IntProto proto.InternalMessageInfo - -// DecProto defines a Protobuf wrapper around a Dec object. -type DecProto struct { - Dec Dec `protobuf:"bytes,1,opt,name=dec,proto3,customtype=Dec" json:"dec"` -} - -func (m *DecProto) Reset() { *m = DecProto{} } -func (*DecProto) ProtoMessage() {} -func (*DecProto) Descriptor() ([]byte, []int) { - return fileDescriptor_809e58c688fefd51, []int{3} -} -func (m *DecProto) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *DecProto) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_DecProto.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *DecProto) XXX_Merge(src proto.Message) { - xxx_messageInfo_DecProto.Merge(m, src) -} -func (m *DecProto) XXX_Size() int { - return m.Size() -} -func (m *DecProto) XXX_DiscardUnknown() { - xxx_messageInfo_DecProto.DiscardUnknown(m) -} - -var xxx_messageInfo_DecProto proto.InternalMessageInfo - -// ValAddresses defines a repeated set of validator addresses. -type ValAddresses struct { - Addresses []ValAddress `protobuf:"bytes,1,rep,name=addresses,proto3,casttype=ValAddress" json:"addresses,omitempty"` -} - -func (m *ValAddresses) Reset() { *m = ValAddresses{} } -func (*ValAddresses) ProtoMessage() {} -func (*ValAddresses) Descriptor() ([]byte, []int) { - return fileDescriptor_809e58c688fefd51, []int{4} -} -func (m *ValAddresses) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *ValAddresses) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_ValAddresses.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *ValAddresses) XXX_Merge(src proto.Message) { - xxx_messageInfo_ValAddresses.Merge(m, src) -} -func (m *ValAddresses) XXX_Size() int { - return m.Size() -} -func (m *ValAddresses) XXX_DiscardUnknown() { - xxx_messageInfo_ValAddresses.DiscardUnknown(m) -} - -var xxx_messageInfo_ValAddresses proto.InternalMessageInfo - -func (m *ValAddresses) GetAddresses() []ValAddress { - if m != nil { - return m.Addresses - } - return nil -} - -// GasInfo defines tx execution gas context. -type GasInfo struct { - // GasWanted is the maximum units of work we allow this tx to perform. - GasWanted uint64 `protobuf:"varint,1,opt,name=gas_wanted,json=gasWanted,proto3" json:"gas_wanted,omitempty" yaml:"gas_wanted"` - // GasUsed is the amount of gas actually consumed. - GasUsed uint64 `protobuf:"varint,2,opt,name=gas_used,json=gasUsed,proto3" json:"gas_used,omitempty" yaml:"gas_used"` -} - -func (m *GasInfo) Reset() { *m = GasInfo{} } -func (*GasInfo) ProtoMessage() {} -func (*GasInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_809e58c688fefd51, []int{5} -} -func (m *GasInfo) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *GasInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_GasInfo.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *GasInfo) XXX_Merge(src proto.Message) { - xxx_messageInfo_GasInfo.Merge(m, src) -} -func (m *GasInfo) XXX_Size() int { - return m.Size() -} -func (m *GasInfo) XXX_DiscardUnknown() { - xxx_messageInfo_GasInfo.DiscardUnknown(m) -} - -var xxx_messageInfo_GasInfo proto.InternalMessageInfo - -func (m *GasInfo) GetGasWanted() uint64 { - if m != nil { - return m.GasWanted - } - return 0 -} - -func (m *GasInfo) GetGasUsed() uint64 { - if m != nil { - return m.GasUsed - } - return 0 -} - -// Result is the union of ResponseFormat and ResponseCheckTx. -type Result struct { - // Data is any data returned from message or handler execution. It MUST be length - // prefixed in order to separate data from multiple message executions. - Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"` - // Log contains the log information from message or handler execution. - Log string `protobuf:"bytes,2,opt,name=log,proto3" json:"log,omitempty"` - // Events contains a slice of Event objects that were emitted during message or - // handler execution. - Events []types.Event `protobuf:"bytes,3,rep,name=events,proto3" json:"events"` -} - -func (m *Result) Reset() { *m = Result{} } -func (*Result) ProtoMessage() {} -func (*Result) Descriptor() ([]byte, []int) { - return fileDescriptor_809e58c688fefd51, []int{6} -} -func (m *Result) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *Result) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_Result.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *Result) XXX_Merge(src proto.Message) { - xxx_messageInfo_Result.Merge(m, src) -} -func (m *Result) XXX_Size() int { - return m.Size() -} -func (m *Result) XXX_DiscardUnknown() { - xxx_messageInfo_Result.DiscardUnknown(m) -} - -var xxx_messageInfo_Result proto.InternalMessageInfo - -// SimulationResponse defines the response generated when a transaction is -// successfully simulated. -type SimulationResponse struct { - GasInfo `protobuf:"bytes,1,opt,name=gas_info,json=gasInfo,proto3,embedded=gas_info" json:"gas_info"` - Result *Result `protobuf:"bytes,2,opt,name=result,proto3" json:"result,omitempty"` -} - -func (m *SimulationResponse) Reset() { *m = SimulationResponse{} } -func (*SimulationResponse) ProtoMessage() {} -func (*SimulationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_809e58c688fefd51, []int{7} -} -func (m *SimulationResponse) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *SimulationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_SimulationResponse.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *SimulationResponse) XXX_Merge(src proto.Message) { - xxx_messageInfo_SimulationResponse.Merge(m, src) -} -func (m *SimulationResponse) XXX_Size() int { - return m.Size() -} -func (m *SimulationResponse) XXX_DiscardUnknown() { - xxx_messageInfo_SimulationResponse.DiscardUnknown(m) -} - -var xxx_messageInfo_SimulationResponse proto.InternalMessageInfo - -func (m *SimulationResponse) GetResult() *Result { - if m != nil { - return m.Result - } - return nil -} - -// MsgData defines the data returned in a Result object during message execution. -type MsgData struct { - MsgType string `protobuf:"bytes,1,opt,name=msg_type,json=msgType,proto3" json:"msg_type,omitempty"` - Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` -} - -func (m *MsgData) Reset() { *m = MsgData{} } -func (*MsgData) ProtoMessage() {} -func (*MsgData) Descriptor() ([]byte, []int) { - return fileDescriptor_809e58c688fefd51, []int{8} -} -func (m *MsgData) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgData.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgData) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgData.Merge(m, src) -} -func (m *MsgData) XXX_Size() int { - return m.Size() -} -func (m *MsgData) XXX_DiscardUnknown() { - xxx_messageInfo_MsgData.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgData proto.InternalMessageInfo - -func (m *MsgData) GetMsgType() string { - if m != nil { - return m.MsgType - } - return "" -} - -func (m *MsgData) GetData() []byte { - if m != nil { - return m.Data - } - return nil -} - -// TxData defines a list of MsgData. A transaction will have a MsgData object for -// each message. -type TxData struct { - Data []*MsgData `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"` -} - -func (m *TxData) Reset() { *m = TxData{} } -func (*TxData) ProtoMessage() {} -func (*TxData) Descriptor() ([]byte, []int) { - return fileDescriptor_809e58c688fefd51, []int{9} -} -func (m *TxData) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *TxData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_TxData.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *TxData) XXX_Merge(src proto.Message) { - xxx_messageInfo_TxData.Merge(m, src) -} -func (m *TxData) XXX_Size() int { - return m.Size() -} -func (m *TxData) XXX_DiscardUnknown() { - xxx_messageInfo_TxData.DiscardUnknown(m) -} - -var xxx_messageInfo_TxData proto.InternalMessageInfo - -func (m *TxData) GetData() []*MsgData { - if m != nil { - return m.Data - } - return nil -} - // TxResponse defines a structure containing relevant tx data and metadata. The // tags are stringified and the log is JSON decoded. type TxResponse struct { - Height int64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"` - TxHash string `protobuf:"bytes,2,opt,name=txhash,proto3" json:"txhash,omitempty"` - Codespace string `protobuf:"bytes,3,opt,name=codespace,proto3" json:"codespace,omitempty"` - Code uint32 `protobuf:"varint,4,opt,name=code,proto3" json:"code,omitempty"` - Data string `protobuf:"bytes,5,opt,name=data,proto3" json:"data,omitempty"` - RawLog string `protobuf:"bytes,6,opt,name=raw_log,json=rawLog,proto3" json:"raw_log,omitempty"` - Logs ABCIMessageLogs `protobuf:"bytes,7,rep,name=logs,proto3,castrepeated=ABCIMessageLogs" json:"logs"` - Info string `protobuf:"bytes,8,opt,name=info,proto3" json:"info,omitempty"` - GasWanted int64 `protobuf:"varint,9,opt,name=gas_wanted,json=gasWanted,proto3" json:"gas_wanted,omitempty"` - GasUsed int64 `protobuf:"varint,10,opt,name=gas_used,json=gasUsed,proto3" json:"gas_used,omitempty"` - Tx *types1.Any `protobuf:"bytes,11,opt,name=tx,proto3" json:"tx,omitempty"` - Timestamp string `protobuf:"bytes,12,opt,name=timestamp,proto3" json:"timestamp,omitempty"` + // The block height + Height int64 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"` + // The transaction hash. + TxHash string `protobuf:"bytes,2,opt,name=txhash,proto3" json:"txhash,omitempty"` + // Namespace for the Code + Codespace string `protobuf:"bytes,3,opt,name=codespace,proto3" json:"codespace,omitempty"` + // Response code. + Code uint32 `protobuf:"varint,4,opt,name=code,proto3" json:"code,omitempty"` + // Result bytes, if any. + Data string `protobuf:"bytes,5,opt,name=data,proto3" json:"data,omitempty"` + // The output of the application's logger (raw string). May be non-deterministic. + RawLog string `protobuf:"bytes,6,opt,name=raw_log,json=rawLog,proto3" json:"raw_log,omitempty"` + // The output of the application's logger (typed). May be non-deterministic. + Logs ABCIMessageLogs `protobuf:"bytes,7,rep,name=logs,proto3,castrepeated=ABCIMessageLogs" json:"logs"` + // Additional information. May be non-deterministic. + Info string `protobuf:"bytes,8,opt,name=info,proto3" json:"info,omitempty"` + // Amount of gas requested for transaction. + GasWanted int64 `protobuf:"varint,9,opt,name=gas_wanted,json=gasWanted,proto3" json:"gas_wanted,omitempty"` + // Amount of gas consumed by transaction. + GasUsed int64 `protobuf:"varint,10,opt,name=gas_used,json=gasUsed,proto3" json:"gas_used,omitempty"` + // The request transaction bytes. + Tx *types.Any `protobuf:"bytes,11,opt,name=tx,proto3" json:"tx,omitempty"` + // Time of the previous block. For heights > 1, it's the weighted median of the + // timestamps of the valid votes in the block.LastCommit. For height == 1, it's genesis time. + Timestamp string `protobuf:"bytes,12,opt,name=timestamp,proto3" json:"timestamp,omitempty"` } func (m *TxResponse) Reset() { *m = TxResponse{} } func (*TxResponse) ProtoMessage() {} func (*TxResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_809e58c688fefd51, []int{10} + return fileDescriptor_4e37629bc7eb0df8, []int{0} } func (m *TxResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -543,7 +101,7 @@ type ABCIMessageLog struct { func (m *ABCIMessageLog) Reset() { *m = ABCIMessageLog{} } func (*ABCIMessageLog) ProtoMessage() {} func (*ABCIMessageLog) Descriptor() ([]byte, []int) { - return fileDescriptor_809e58c688fefd51, []int{11} + return fileDescriptor_4e37629bc7eb0df8, []int{1} } func (m *ABCIMessageLog) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -593,7 +151,7 @@ func (m *ABCIMessageLog) GetEvents() StringEvents { return nil } -// StringAttribute defines en Event object wrapper where all the attributes +// StringEvent defines en Event object wrapper where all the attributes // contain key/value pairs that are strings instead of raw bytes. type StringEvent struct { Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` @@ -603,7 +161,7 @@ type StringEvent struct { func (m *StringEvent) Reset() { *m = StringEvent{} } func (*StringEvent) ProtoMessage() {} func (*StringEvent) Descriptor() ([]byte, []int) { - return fileDescriptor_809e58c688fefd51, []int{12} + return fileDescriptor_4e37629bc7eb0df8, []int{2} } func (m *StringEvent) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -656,7 +214,7 @@ type Attribute struct { func (m *Attribute) Reset() { *m = Attribute{} } func (*Attribute) ProtoMessage() {} func (*Attribute) Descriptor() ([]byte, []int) { - return fileDescriptor_809e58c688fefd51, []int{13} + return fileDescriptor_4e37629bc7eb0df8, []int{3} } func (m *Attribute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -699,518 +257,315 @@ func (m *Attribute) GetValue() string { return "" } -func init() { - proto.RegisterType((*Coin)(nil), "cosmos.Coin") - proto.RegisterType((*DecCoin)(nil), "cosmos.DecCoin") - proto.RegisterType((*IntProto)(nil), "cosmos.IntProto") - proto.RegisterType((*DecProto)(nil), "cosmos.DecProto") - proto.RegisterType((*ValAddresses)(nil), "cosmos.ValAddresses") - proto.RegisterType((*GasInfo)(nil), "cosmos.GasInfo") - proto.RegisterType((*Result)(nil), "cosmos.Result") - proto.RegisterType((*SimulationResponse)(nil), "cosmos.SimulationResponse") - proto.RegisterType((*MsgData)(nil), "cosmos.MsgData") - proto.RegisterType((*TxData)(nil), "cosmos.TxData") - proto.RegisterType((*TxResponse)(nil), "cosmos.TxResponse") - proto.RegisterType((*ABCIMessageLog)(nil), "cosmos.ABCIMessageLog") - proto.RegisterType((*StringEvent)(nil), "cosmos.StringEvent") - proto.RegisterType((*Attribute)(nil), "cosmos.Attribute") +// GasInfo defines tx execution gas context. +type GasInfo struct { + // GasWanted is the maximum units of work we allow this tx to perform. + GasWanted uint64 `protobuf:"varint,1,opt,name=gas_wanted,json=gasWanted,proto3" json:"gas_wanted,omitempty" yaml:"gas_wanted"` + // GasUsed is the amount of gas actually consumed. + GasUsed uint64 `protobuf:"varint,2,opt,name=gas_used,json=gasUsed,proto3" json:"gas_used,omitempty" yaml:"gas_used"` } -func init() { proto.RegisterFile("cosmos/cosmos.proto", fileDescriptor_809e58c688fefd51) } - -var fileDescriptor_809e58c688fefd51 = []byte{ - // 884 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x55, 0x4d, 0x6f, 0x1b, 0x45, - 0x18, 0xf6, 0x7a, 0xb7, 0x6b, 0xfb, 0xb5, 0x9b, 0xd0, 0x49, 0x68, 0x37, 0xa5, 0xf5, 0x9a, 0x2d, - 0x42, 0x41, 0x82, 0xb5, 0x94, 0x56, 0x42, 0xf2, 0x01, 0x29, 0x1b, 0xa3, 0x62, 0xd4, 0x4a, 0x68, - 0x1b, 0x40, 0xe2, 0x12, 0xc6, 0xde, 0xc9, 0x78, 0x55, 0xef, 0x8c, 0xe5, 0x19, 0x37, 0xf6, 0xad, - 0x07, 0x0e, 0x3d, 0xf2, 0x13, 0x7a, 0xe6, 0x97, 0xf4, 0x98, 0x63, 0x85, 0x90, 0x01, 0xe7, 0xc2, - 0xb9, 0x47, 0x4e, 0x68, 0x66, 0xd6, 0x6b, 0x3b, 0xe2, 0xd4, 0x4b, 0xf2, 0x7e, 0x7f, 0x3c, 0xef, - 0xe3, 0x59, 0xd8, 0x1b, 0x70, 0x91, 0x71, 0xd1, 0x36, 0xff, 0xc2, 0xf1, 0x84, 0x4b, 0x8e, 0x5c, - 0xa3, 0xdd, 0xdd, 0xa7, 0x9c, 0x72, 0x6d, 0x6a, 0x2b, 0xc9, 0x78, 0xef, 0x7e, 0x2c, 0x09, 0x4b, - 0xc8, 0x24, 0x4b, 0x99, 0x6c, 0xe3, 0xfe, 0x20, 0x6d, 0xcb, 0xf9, 0x98, 0x08, 0xf3, 0x37, 0x0f, - 0x39, 0xa0, 0x9c, 0xd3, 0x11, 0x69, 0x6b, 0xad, 0x3f, 0x3d, 0x6f, 0x63, 0x36, 0x37, 0xae, 0xe0, - 0x31, 0x38, 0x27, 0x3c, 0x65, 0x68, 0x1f, 0x6e, 0x24, 0x84, 0xf1, 0xcc, 0xb3, 0x5a, 0xd6, 0x61, - 0x2d, 0x36, 0x0a, 0x7a, 0x00, 0x2e, 0xce, 0xf8, 0x94, 0x49, 0xaf, 0xac, 0xcc, 0x51, 0xfd, 0xcd, - 0xc2, 0x2f, 0xfd, 0xbe, 0xf0, 0xed, 0x1e, 0x93, 0x71, 0xee, 0xea, 0x38, 0xff, 0xbc, 0xf6, 0xad, - 0xe0, 0x5b, 0xa8, 0x74, 0xc9, 0xe0, 0x7d, 0x6a, 0x75, 0xc9, 0xe0, 0x5a, 0xad, 0xcf, 0xa0, 0xda, - 0x63, 0xf2, 0x3b, 0xbd, 0xfc, 0x7d, 0xb0, 0x53, 0x26, 0x4d, 0xa9, 0xed, 0xfe, 0xca, 0xae, 0x42, - 0xbb, 0x64, 0x50, 0x84, 0x26, 0x64, 0x70, 0x3d, 0x54, 0x95, 0x57, 0xf6, 0x20, 0x82, 0xc6, 0x0f, - 0x78, 0x74, 0x9c, 0x24, 0x13, 0x22, 0x04, 0x11, 0xe8, 0x73, 0xa8, 0xe1, 0x95, 0xe2, 0x59, 0x2d, - 0xfb, 0xb0, 0x11, 0xed, 0xfc, 0xbb, 0xf0, 0x61, 0x1d, 0x14, 0xaf, 0x03, 0x3a, 0xce, 0xcb, 0x3f, - 0x5a, 0x56, 0xc0, 0xa1, 0xf2, 0x18, 0x8b, 0x1e, 0x3b, 0xe7, 0xe8, 0x11, 0x00, 0xc5, 0xe2, 0xec, - 0x02, 0x33, 0x49, 0x12, 0xdd, 0xd4, 0x89, 0x3e, 0x7c, 0xb7, 0xf0, 0x6f, 0xcd, 0x71, 0x36, 0xea, - 0x04, 0x6b, 0x5f, 0x10, 0xd7, 0x28, 0x16, 0x3f, 0x6a, 0x19, 0x85, 0x50, 0x55, 0x9e, 0xa9, 0x20, - 0x89, 0xc6, 0xc1, 0x89, 0xf6, 0xde, 0x2d, 0xfc, 0xdd, 0x75, 0x8e, 0xf2, 0x04, 0x71, 0x85, 0x62, - 0xf1, 0xbd, 0x92, 0xc6, 0xe0, 0xc6, 0x44, 0x4c, 0x47, 0x12, 0x21, 0x70, 0x12, 0x2c, 0xb1, 0xee, - 0xd4, 0x88, 0xb5, 0x8c, 0x3e, 0x00, 0x7b, 0xc4, 0xa9, 0x01, 0x34, 0x56, 0x22, 0xea, 0x80, 0x4b, - 0x5e, 0x10, 0x26, 0x85, 0x67, 0xb7, 0xec, 0xc3, 0xfa, 0xd1, 0xbd, 0x70, 0x4d, 0x8f, 0x50, 0xd1, - 0x23, 0x34, 0xc4, 0xf8, 0x5a, 0x05, 0x45, 0x8e, 0x02, 0x29, 0xce, 0x33, 0x3a, 0xce, 0xab, 0xd7, - 0x7e, 0x29, 0x98, 0x00, 0x7a, 0x96, 0x66, 0xd3, 0x11, 0x96, 0x29, 0x67, 0x31, 0x11, 0x63, 0xce, - 0x04, 0x41, 0x8f, 0xcc, 0xdc, 0x29, 0x3b, 0xe7, 0x7a, 0x82, 0xfa, 0xd1, 0x6e, 0x98, 0x93, 0x34, - 0x07, 0x24, 0xaa, 0xaa, 0x62, 0x97, 0x0b, 0xdf, 0xd2, 0xd3, 0x6b, 0x8c, 0x3e, 0x05, 0x77, 0xa2, - 0xa7, 0xd7, 0x23, 0xd6, 0x8f, 0x76, 0x56, 0x39, 0x66, 0xa7, 0x38, 0xf7, 0x06, 0x5f, 0x41, 0xe5, - 0xa9, 0xa0, 0x5d, 0xb5, 0xd2, 0x01, 0x54, 0x33, 0x41, 0xcf, 0xd4, 0x94, 0x39, 0x7f, 0x2a, 0x99, - 0xa0, 0xa7, 0xf3, 0x31, 0x29, 0x10, 0x28, 0xaf, 0x11, 0xc8, 0xcf, 0xf2, 0x10, 0xdc, 0xd3, 0x99, - 0x4e, 0x7f, 0x50, 0xa0, 0x64, 0x6f, 0xce, 0x98, 0x57, 0xdf, 0x4a, 0xfa, 0xc5, 0x06, 0x38, 0x9d, - 0x15, 0x1b, 0xde, 0x06, 0x77, 0x48, 0x52, 0x3a, 0x34, 0x5c, 0xb3, 0xe3, 0x5c, 0x43, 0x01, 0xb8, - 0x72, 0x36, 0xc4, 0x62, 0x98, 0xf3, 0x16, 0x96, 0x0b, 0xdf, 0x3d, 0x9d, 0x7d, 0x83, 0xc5, 0x30, - 0xce, 0x3d, 0xe8, 0x1e, 0xd4, 0x06, 0x3c, 0x21, 0x62, 0x8c, 0x07, 0xc4, 0xb3, 0xf5, 0xd4, 0x6b, - 0x83, 0x9a, 0x5b, 0x29, 0x9e, 0xd3, 0xb2, 0x0e, 0x6f, 0xc6, 0x5a, 0x2e, 0x76, 0xb9, 0xa1, 0x83, - 0xcd, 0x35, 0xef, 0x40, 0x65, 0x82, 0x2f, 0xce, 0xd4, 0x45, 0x5d, 0x6d, 0x76, 0x27, 0xf8, 0xe2, - 0x09, 0xa7, 0xe8, 0x04, 0x9c, 0x11, 0xa7, 0xc2, 0xab, 0xe8, 0xa5, 0x6e, 0xaf, 0x96, 0x3a, 0x8e, - 0x4e, 0x7a, 0x4f, 0x89, 0x10, 0x98, 0x92, 0x27, 0x9c, 0x46, 0x77, 0x14, 0xfe, 0xbf, 0xfd, 0xe9, - 0xef, 0x6e, 0xdb, 0x45, 0xac, 0x93, 0x55, 0x47, 0x7d, 0xbd, 0xaa, 0xe9, 0xa8, 0x64, 0x74, 0x7f, - 0x8b, 0xc3, 0x35, 0xbd, 0xf7, 0x06, 0x59, 0x0f, 0x36, 0xc8, 0x0a, 0xda, 0xb9, 0xe2, 0x25, 0xfa, - 0x04, 0xca, 0x72, 0xe6, 0xd5, 0xf5, 0x55, 0xf7, 0x43, 0xf3, 0xbe, 0x84, 0xab, 0xf7, 0x25, 0x3c, - 0x66, 0xf3, 0xb8, 0x2c, 0x67, 0x0a, 0x17, 0x99, 0x66, 0x44, 0x48, 0x9c, 0x8d, 0xbd, 0x86, 0xc1, - 0xa5, 0x30, 0xe4, 0x7c, 0x7b, 0x65, 0xc1, 0xce, 0xf6, 0xc4, 0xe8, 0x23, 0xa8, 0x29, 0x0e, 0xa4, - 0x2c, 0x21, 0x33, 0x7d, 0x8d, 0x9b, 0xb1, 0x22, 0x45, 0x4f, 0xe9, 0xff, 0xc3, 0xf9, 0xe3, 0x6b, - 0x9c, 0xdf, 0x5b, 0x01, 0xf4, 0x4c, 0x4e, 0x52, 0x46, 0x0d, 0xd5, 0xf7, 0x73, 0x74, 0x1a, 0x1b, - 0x46, 0xb1, 0xa6, 0xbe, 0x66, 0xc4, 0xcf, 0x50, 0xdf, 0xf0, 0x2a, 0xc4, 0x36, 0x68, 0xa8, 0x65, - 0xf4, 0x25, 0x00, 0x96, 0x72, 0x92, 0xf6, 0xa7, 0x92, 0x08, 0xaf, 0xac, 0xfb, 0xdd, 0x2a, 0x0e, - 0xb2, 0xf2, 0xe4, 0x3f, 0xac, 0x8d, 0xd0, 0x82, 0xa8, 0xb5, 0x22, 0x48, 0x6d, 0xf2, 0x9c, 0xcc, - 0xf3, 0xf2, 0x4a, 0x54, 0x2f, 0xe7, 0x0b, 0x3c, 0x9a, 0x92, 0x7c, 0x3b, 0xa3, 0x44, 0xdd, 0xb7, - 0x7f, 0x37, 0x4b, 0x2f, 0x97, 0xcd, 0xd2, 0x9b, 0x65, 0xd3, 0xba, 0x5c, 0x36, 0xad, 0xbf, 0x96, - 0x4d, 0xeb, 0xd7, 0xab, 0x66, 0xe9, 0xf2, 0xaa, 0x59, 0x7a, 0x7b, 0xd5, 0x2c, 0xfd, 0x14, 0xd0, - 0x54, 0x0e, 0xa7, 0xfd, 0x70, 0xc0, 0xb3, 0xf6, 0xd6, 0x17, 0xe4, 0x0b, 0x91, 0x3c, 0x37, 0x9f, - 0x82, 0xbe, 0xab, 0xaf, 0xf3, 0xf0, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x2b, 0x86, 0x78, 0x6d, - 0x63, 0x06, 0x00, 0x00, +func (m *GasInfo) Reset() { *m = GasInfo{} } +func (*GasInfo) ProtoMessage() {} +func (*GasInfo) Descriptor() ([]byte, []int) { + return fileDescriptor_4e37629bc7eb0df8, []int{4} } - -func (this *Coin) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*Coin) - if !ok { - that2, ok := that.(Coin) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if this.Denom != that1.Denom { - return false - } - if !this.Amount.Equal(that1.Amount) { - return false - } - return true +func (m *GasInfo) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) } -func (this *DecCoin) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*DecCoin) - if !ok { - that2, ok := that.(DecCoin) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if this.Denom != that1.Denom { - return false - } - if !this.Amount.Equal(that1.Amount) { - return false - } - return true -} -func (m *Coin) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *Coin) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *Coin) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size := m.Amount.Size() - i -= size - if _, err := m.Amount.MarshalTo(dAtA[i:]); err != nil { - return 0, err - } - i = encodeVarintCosmos(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - if len(m.Denom) > 0 { - i -= len(m.Denom) - copy(dAtA[i:], m.Denom) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.Denom))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *DecCoin) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DecCoin) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DecCoin) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size := m.Amount.Size() - i -= size - if _, err := m.Amount.MarshalTo(dAtA[i:]); err != nil { - return 0, err - } - i = encodeVarintCosmos(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - if len(m.Denom) > 0 { - i -= len(m.Denom) - copy(dAtA[i:], m.Denom) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.Denom))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *IntProto) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *IntProto) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *IntProto) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size := m.Int.Size() - i -= size - if _, err := m.Int.MarshalTo(dAtA[i:]); err != nil { - return 0, err - } - i = encodeVarintCosmos(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *DecProto) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *DecProto) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *DecProto) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size := m.Dec.Size() - i -= size - if _, err := m.Dec.MarshalTo(dAtA[i:]); err != nil { - return 0, err - } - i = encodeVarintCosmos(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *ValAddresses) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *ValAddresses) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *ValAddresses) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Addresses) > 0 { - for iNdEx := len(m.Addresses) - 1; iNdEx >= 0; iNdEx-- { - i -= len(m.Addresses[iNdEx]) - copy(dAtA[i:], m.Addresses[iNdEx]) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.Addresses[iNdEx]))) - i-- - dAtA[i] = 0xa - } - } - return len(dAtA) - i, nil -} - -func (m *GasInfo) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *GasInfo) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *GasInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.GasUsed != 0 { - i = encodeVarintCosmos(dAtA, i, uint64(m.GasUsed)) - i-- - dAtA[i] = 0x10 - } - if m.GasWanted != 0 { - i = encodeVarintCosmos(dAtA, i, uint64(m.GasWanted)) - i-- - dAtA[i] = 0x8 - } - return len(dAtA) - i, nil -} - -func (m *Result) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *Result) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *Result) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Events) > 0 { - for iNdEx := len(m.Events) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Events[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintCosmos(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - } - } - if len(m.Log) > 0 { - i -= len(m.Log) - copy(dAtA[i:], m.Log) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.Log))) - i-- - dAtA[i] = 0x12 - } - if len(m.Data) > 0 { - i -= len(m.Data) - copy(dAtA[i:], m.Data) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.Data))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *SimulationResponse) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *SimulationResponse) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *SimulationResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.Result != nil { - { - size, err := m.Result.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintCosmos(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - { - size, err := m.GasInfo.MarshalToSizedBuffer(dAtA[:i]) +func (m *GasInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_GasInfo.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) if err != nil { - return 0, err + return nil, err } - i -= size - i = encodeVarintCosmos(dAtA, i, uint64(size)) + return b[:n], nil } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil +} +func (m *GasInfo) XXX_Merge(src proto.Message) { + xxx_messageInfo_GasInfo.Merge(m, src) +} +func (m *GasInfo) XXX_Size() int { + return m.Size() +} +func (m *GasInfo) XXX_DiscardUnknown() { + xxx_messageInfo_GasInfo.DiscardUnknown(m) } -func (m *MsgData) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err +var xxx_messageInfo_GasInfo proto.InternalMessageInfo + +func (m *GasInfo) GetGasWanted() uint64 { + if m != nil { + return m.GasWanted } - return dAtA[:n], nil + return 0 } -func (m *MsgData) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgData) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Data) > 0 { - i -= len(m.Data) - copy(dAtA[i:], m.Data) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.Data))) - i-- - dAtA[i] = 0x12 +func (m *GasInfo) GetGasUsed() uint64 { + if m != nil { + return m.GasUsed } - if len(m.MsgType) > 0 { - i -= len(m.MsgType) - copy(dAtA[i:], m.MsgType) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.MsgType))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil + return 0 } -func (m *TxData) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil +// Result is the union of ResponseFormat and ResponseCheckTx. +type Result struct { + // Data is any data returned from message or handler execution. It MUST be length + // prefixed in order to separate data from multiple message executions. + Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"` + // Log contains the log information from message or handler execution. + Log string `protobuf:"bytes,2,opt,name=log,proto3" json:"log,omitempty"` + // Events contains a slice of Event objects that were emitted during message or + // handler execution. + Events []types1.Event `protobuf:"bytes,3,rep,name=events,proto3" json:"events"` } -func (m *TxData) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) +func (m *Result) Reset() { *m = Result{} } +func (*Result) ProtoMessage() {} +func (*Result) Descriptor() ([]byte, []int) { + return fileDescriptor_4e37629bc7eb0df8, []int{5} } - -func (m *TxData) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Data) > 0 { - for iNdEx := len(m.Data) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Data[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintCosmos(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa +func (m *Result) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Result) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Result.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err } + return b[:n], nil } - return len(dAtA) - i, nil +} +func (m *Result) XXX_Merge(src proto.Message) { + xxx_messageInfo_Result.Merge(m, src) +} +func (m *Result) XXX_Size() int { + return m.Size() +} +func (m *Result) XXX_DiscardUnknown() { + xxx_messageInfo_Result.DiscardUnknown(m) +} + +var xxx_messageInfo_Result proto.InternalMessageInfo + +// SimulationResponse defines the response generated when a transaction is +// successfully simulated. +type SimulationResponse struct { + GasInfo `protobuf:"bytes,1,opt,name=gas_info,json=gasInfo,proto3,embedded=gas_info" json:"gas_info"` + Result *Result `protobuf:"bytes,2,opt,name=result,proto3" json:"result,omitempty"` +} + +func (m *SimulationResponse) Reset() { *m = SimulationResponse{} } +func (*SimulationResponse) ProtoMessage() {} +func (*SimulationResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_4e37629bc7eb0df8, []int{6} +} +func (m *SimulationResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *SimulationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_SimulationResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *SimulationResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SimulationResponse.Merge(m, src) +} +func (m *SimulationResponse) XXX_Size() int { + return m.Size() +} +func (m *SimulationResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SimulationResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_SimulationResponse proto.InternalMessageInfo + +func (m *SimulationResponse) GetResult() *Result { + if m != nil { + return m.Result + } + return nil +} + +// MsgData defines the data returned in a Result object during message execution. +type MsgData struct { + MsgType string `protobuf:"bytes,1,opt,name=msg_type,json=msgType,proto3" json:"msg_type,omitempty"` + Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` +} + +func (m *MsgData) Reset() { *m = MsgData{} } +func (*MsgData) ProtoMessage() {} +func (*MsgData) Descriptor() ([]byte, []int) { + return fileDescriptor_4e37629bc7eb0df8, []int{7} +} +func (m *MsgData) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgData.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgData) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgData.Merge(m, src) +} +func (m *MsgData) XXX_Size() int { + return m.Size() +} +func (m *MsgData) XXX_DiscardUnknown() { + xxx_messageInfo_MsgData.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgData proto.InternalMessageInfo + +func (m *MsgData) GetMsgType() string { + if m != nil { + return m.MsgType + } + return "" +} + +func (m *MsgData) GetData() []byte { + if m != nil { + return m.Data + } + return nil +} + +// TxMsgData defines a list of MsgData. A transaction will have a MsgData object for +// each message. +type TxMsgData struct { + Data []*MsgData `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"` +} + +func (m *TxMsgData) Reset() { *m = TxMsgData{} } +func (*TxMsgData) ProtoMessage() {} +func (*TxMsgData) Descriptor() ([]byte, []int) { + return fileDescriptor_4e37629bc7eb0df8, []int{8} +} +func (m *TxMsgData) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *TxMsgData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_TxMsgData.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *TxMsgData) XXX_Merge(src proto.Message) { + xxx_messageInfo_TxMsgData.Merge(m, src) +} +func (m *TxMsgData) XXX_Size() int { + return m.Size() +} +func (m *TxMsgData) XXX_DiscardUnknown() { + xxx_messageInfo_TxMsgData.DiscardUnknown(m) +} + +var xxx_messageInfo_TxMsgData proto.InternalMessageInfo + +func (m *TxMsgData) GetData() []*MsgData { + if m != nil { + return m.Data + } + return nil +} + +func init() { + proto.RegisterType((*TxResponse)(nil), "cosmos.base.abci.v1beta1.TxResponse") + proto.RegisterType((*ABCIMessageLog)(nil), "cosmos.base.abci.v1beta1.ABCIMessageLog") + proto.RegisterType((*StringEvent)(nil), "cosmos.base.abci.v1beta1.StringEvent") + proto.RegisterType((*Attribute)(nil), "cosmos.base.abci.v1beta1.Attribute") + proto.RegisterType((*GasInfo)(nil), "cosmos.base.abci.v1beta1.GasInfo") + proto.RegisterType((*Result)(nil), "cosmos.base.abci.v1beta1.Result") + proto.RegisterType((*SimulationResponse)(nil), "cosmos.base.abci.v1beta1.SimulationResponse") + proto.RegisterType((*MsgData)(nil), "cosmos.base.abci.v1beta1.MsgData") + proto.RegisterType((*TxMsgData)(nil), "cosmos.base.abci.v1beta1.TxMsgData") +} + +func init() { + proto.RegisterFile("cosmos/base/abci/v1beta1/abci.proto", fileDescriptor_4e37629bc7eb0df8) +} + +var fileDescriptor_4e37629bc7eb0df8 = []byte{ + // 787 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x54, 0xbd, 0x4e, 0x1b, 0x4b, + 0x14, 0xf6, 0xda, 0x66, 0xed, 0x1d, 0xc3, 0xe5, 0xde, 0xb9, 0x4e, 0x58, 0x08, 0xb1, 0xcd, 0x92, + 0x48, 0x6e, 0xb2, 0x16, 0x90, 0x48, 0x91, 0x8b, 0x28, 0x6c, 0xfe, 0xb0, 0x04, 0xcd, 0x62, 0x14, + 0x29, 0x8d, 0x35, 0xf6, 0x0e, 0xe3, 0x15, 0xde, 0x1d, 0x6b, 0x67, 0x0c, 0x76, 0x97, 0x32, 0x65, + 0x2a, 0x8a, 0x54, 0xa9, 0xf3, 0x24, 0x94, 0x94, 0x14, 0x91, 0x93, 0x98, 0x37, 0xe0, 0x09, 0xa2, + 0x99, 0x59, 0xff, 0x90, 0xc8, 0x34, 0xf6, 0x99, 0xf3, 0x37, 0xe7, 0x7c, 0xdf, 0x37, 0x0b, 0x36, + 0x5b, 0x94, 0x05, 0x94, 0x55, 0x9a, 0x88, 0xe1, 0x0a, 0x6a, 0xb6, 0xfc, 0xca, 0xe9, 0x56, 0x13, + 0x73, 0xb4, 0x25, 0x0f, 0x76, 0x37, 0xa2, 0x9c, 0x42, 0x53, 0x25, 0xd9, 0x22, 0xc9, 0x96, 0xfe, + 0x38, 0x69, 0x6d, 0x83, 0xe3, 0xd0, 0xc3, 0x51, 0xe0, 0x87, 0x5c, 0x55, 0xf3, 0x41, 0x17, 0x33, + 0xf5, 0xab, 0x8a, 0xd7, 0xf2, 0x84, 0x12, 0x2a, 0xcd, 0x8a, 0xb0, 0x62, 0xef, 0x2a, 0xa1, 0x94, + 0x74, 0x70, 0x45, 0x9e, 0x9a, 0xbd, 0xe3, 0x0a, 0x0a, 0x07, 0x2a, 0x64, 0x9d, 0xa7, 0x00, 0xa8, + 0xf7, 0x5d, 0xcc, 0xba, 0x34, 0x64, 0x18, 0xde, 0x07, 0x7a, 0x1b, 0xfb, 0xa4, 0xcd, 0x4d, 0xad, + 0xa4, 0x95, 0x53, 0x6e, 0x7c, 0x82, 0x16, 0xd0, 0x79, 0xbf, 0x8d, 0x58, 0xdb, 0x4c, 0x96, 0xb4, + 0xb2, 0xe1, 0x80, 0xd1, 0xb0, 0xa8, 0xd7, 0xfb, 0x7b, 0x88, 0xb5, 0xdd, 0x38, 0x02, 0xd7, 0x81, + 0xd1, 0xa2, 0x1e, 0x66, 0x5d, 0xd4, 0xc2, 0x66, 0x4a, 0xa4, 0xb9, 0x53, 0x07, 0x84, 0x20, 0x2d, + 0x0e, 0x66, 0xba, 0xa4, 0x95, 0x97, 0x5c, 0x69, 0x0b, 0x9f, 0x87, 0x38, 0x32, 0x17, 0x64, 0xb2, + 0xb4, 0xe1, 0x0a, 0xc8, 0x44, 0xe8, 0xac, 0xd1, 0xa1, 0xc4, 0xd4, 0xa5, 0x5b, 0x8f, 0xd0, 0xd9, + 0x3e, 0x25, 0xf0, 0x08, 0xa4, 0x3b, 0x94, 0x30, 0x33, 0x53, 0x4a, 0x95, 0x73, 0xdb, 0x65, 0x7b, + 0x1e, 0x4c, 0xf6, 0xae, 0xf3, 0xaa, 0x76, 0x80, 0x19, 0x43, 0x04, 0xef, 0x53, 0xe2, 0xac, 0x5c, + 0x0c, 0x8b, 0x89, 0x6f, 0x3f, 0x8a, 0xcb, 0xb7, 0xfd, 0xcc, 0x95, 0xed, 0xc4, 0x0c, 0x7e, 0x78, + 0x4c, 0xcd, 0xac, 0x9a, 0x41, 0xd8, 0xf0, 0x21, 0x00, 0x04, 0xb1, 0xc6, 0x19, 0x0a, 0x39, 0xf6, + 0x4c, 0x43, 0x22, 0x61, 0x10, 0xc4, 0xde, 0x4b, 0x07, 0x5c, 0x05, 0x59, 0x11, 0xee, 0x31, 0xec, + 0x99, 0x40, 0x06, 0x33, 0x04, 0xb1, 0x23, 0x86, 0x3d, 0xf8, 0x08, 0x24, 0x79, 0xdf, 0xcc, 0x95, + 0xb4, 0x72, 0x6e, 0x3b, 0x6f, 0x2b, 0xd8, 0xed, 0x31, 0xec, 0xf6, 0x6e, 0x38, 0x70, 0x93, 0xbc, + 0x2f, 0x90, 0xe2, 0x7e, 0x80, 0x19, 0x47, 0x41, 0xd7, 0x5c, 0x54, 0x48, 0x4d, 0x1c, 0xd5, 0xf4, + 0xa7, 0xaf, 0xc5, 0x84, 0xf5, 0x45, 0x03, 0xff, 0xdc, 0x9e, 0x18, 0x3e, 0x00, 0x46, 0xc0, 0x48, + 0xc3, 0x0f, 0x3d, 0xdc, 0x97, 0xfc, 0x2c, 0xb9, 0xd9, 0x80, 0x91, 0x9a, 0x38, 0xc3, 0x7f, 0x41, + 0x4a, 0x60, 0x26, 0xe9, 0x71, 0x85, 0x09, 0x0f, 0x81, 0x8e, 0x4f, 0x71, 0xc8, 0x99, 0x99, 0x92, + 0x90, 0x3d, 0x9e, 0x0f, 0xd9, 0x21, 0x8f, 0xfc, 0x90, 0xbc, 0x11, 0xd9, 0x4e, 0x3e, 0xc6, 0x6b, + 0x71, 0xc6, 0xc9, 0xdc, 0xb8, 0x55, 0x35, 0xfd, 0xf1, 0x7b, 0x49, 0xb3, 0x22, 0x90, 0x9b, 0x89, + 0x0a, 0x0c, 0x85, 0x08, 0xe5, 0x4c, 0x86, 0x2b, 0x6d, 0x58, 0x03, 0x00, 0x71, 0x1e, 0xf9, 0xcd, + 0x1e, 0xc7, 0xcc, 0x4c, 0xca, 0x09, 0x36, 0xef, 0x20, 0x6d, 0x9c, 0xeb, 0xa4, 0xc5, 0xfd, 0xee, + 0x4c, 0x71, 0x7c, 0xe7, 0x0e, 0x30, 0x26, 0x49, 0x62, 0xdb, 0x13, 0x3c, 0x88, 0x2f, 0x14, 0x26, + 0xcc, 0x83, 0x85, 0x53, 0xd4, 0xe9, 0xe1, 0x18, 0x01, 0x75, 0xb0, 0x28, 0xc8, 0xbc, 0x43, 0xac, + 0x26, 0x48, 0x7d, 0x7a, 0x8b, 0x54, 0x51, 0x99, 0x76, 0xee, 0xdd, 0x0c, 0x8b, 0xff, 0x0d, 0x50, + 0xd0, 0xa9, 0x5a, 0xd3, 0x98, 0x35, 0xcb, 0xb5, 0x3d, 0xc3, 0x75, 0x52, 0xd6, 0xfc, 0x7f, 0x33, + 0x2c, 0x2e, 0x4f, 0x6b, 0x44, 0xc4, 0x9a, 0x08, 0xc0, 0xea, 0x02, 0xdd, 0xc5, 0xac, 0xd7, 0xe1, + 0x13, 0x71, 0x8b, 0x9b, 0x16, 0x63, 0x71, 0xff, 0x4d, 0x52, 0xf5, 0x0f, 0x92, 0xd6, 0xed, 0xe9, + 0x23, 0x57, 0x08, 0xa9, 0xe7, 0xad, 0xb8, 0x51, 0xd8, 0x4c, 0xb8, 0x90, 0x42, 0x39, 0xd7, 0x00, + 0x3c, 0xf4, 0x83, 0x5e, 0x07, 0x71, 0x9f, 0x86, 0x93, 0x97, 0xfc, 0x56, 0x0d, 0x2e, 0xb5, 0xad, + 0x49, 0x3d, 0x6e, 0xcc, 0x47, 0x3f, 0xc6, 0xc8, 0xc9, 0x8a, 0xfe, 0x97, 0xc3, 0xa2, 0x26, 0x17, + 0x92, 0xb0, 0x3d, 0x07, 0x7a, 0x24, 0x17, 0x92, 0x53, 0xe7, 0xb6, 0x4b, 0xf3, 0xbb, 0xa8, 0xc5, + 0xdd, 0x38, 0xdf, 0x7a, 0x01, 0x32, 0x07, 0x8c, 0xbc, 0x16, 0x7b, 0xaf, 0x02, 0x21, 0xd4, 0xc6, + 0x8c, 0x48, 0x32, 0x01, 0x23, 0x75, 0xa1, 0x93, 0x31, 0x4c, 0xc9, 0x29, 0x4c, 0x31, 0xe1, 0x7b, + 0xc0, 0xa8, 0xf7, 0xc7, 0x1d, 0x9e, 0x4d, 0xd0, 0x4c, 0xdd, 0xbd, 0x4a, 0x5c, 0x30, 0xdb, 0xc9, + 0x79, 0x79, 0xf5, 0xab, 0x90, 0xb8, 0x18, 0x15, 0xb4, 0xcb, 0x51, 0x41, 0xfb, 0x39, 0x2a, 0x68, + 0x9f, 0xaf, 0x0b, 0x89, 0xcb, 0xeb, 0x42, 0xe2, 0xea, 0xba, 0x90, 0xf8, 0x60, 0x11, 0x9f, 0xb7, + 0x7b, 0x4d, 0xbb, 0x45, 0x83, 0x4a, 0xfc, 0x81, 0x56, 0x7f, 0x4f, 0x98, 0x77, 0xa2, 0xbe, 0xae, + 0x4d, 0x5d, 0xbe, 0xe1, 0x9d, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x9c, 0xbb, 0x16, 0xe4, 0xc2, + 0x05, 0x00, 0x00, } func (m *TxResponse) Marshal() (dAtA []byte, err error) { @@ -1236,7 +591,7 @@ func (m *TxResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { if len(m.Timestamp) > 0 { i -= len(m.Timestamp) copy(dAtA[i:], m.Timestamp) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.Timestamp))) + i = encodeVarintAbci(dAtA, i, uint64(len(m.Timestamp))) i-- dAtA[i] = 0x62 } @@ -1247,25 +602,25 @@ func (m *TxResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { return 0, err } i -= size - i = encodeVarintCosmos(dAtA, i, uint64(size)) + i = encodeVarintAbci(dAtA, i, uint64(size)) } i-- dAtA[i] = 0x5a } if m.GasUsed != 0 { - i = encodeVarintCosmos(dAtA, i, uint64(m.GasUsed)) + i = encodeVarintAbci(dAtA, i, uint64(m.GasUsed)) i-- dAtA[i] = 0x50 } if m.GasWanted != 0 { - i = encodeVarintCosmos(dAtA, i, uint64(m.GasWanted)) + i = encodeVarintAbci(dAtA, i, uint64(m.GasWanted)) i-- dAtA[i] = 0x48 } if len(m.Info) > 0 { i -= len(m.Info) copy(dAtA[i:], m.Info) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.Info))) + i = encodeVarintAbci(dAtA, i, uint64(len(m.Info))) i-- dAtA[i] = 0x42 } @@ -1277,7 +632,7 @@ func (m *TxResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { return 0, err } i -= size - i = encodeVarintCosmos(dAtA, i, uint64(size)) + i = encodeVarintAbci(dAtA, i, uint64(size)) } i-- dAtA[i] = 0x3a @@ -1286,38 +641,38 @@ func (m *TxResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { if len(m.RawLog) > 0 { i -= len(m.RawLog) copy(dAtA[i:], m.RawLog) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.RawLog))) + i = encodeVarintAbci(dAtA, i, uint64(len(m.RawLog))) i-- dAtA[i] = 0x32 } if len(m.Data) > 0 { i -= len(m.Data) copy(dAtA[i:], m.Data) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.Data))) + i = encodeVarintAbci(dAtA, i, uint64(len(m.Data))) i-- dAtA[i] = 0x2a } if m.Code != 0 { - i = encodeVarintCosmos(dAtA, i, uint64(m.Code)) + i = encodeVarintAbci(dAtA, i, uint64(m.Code)) i-- dAtA[i] = 0x20 } if len(m.Codespace) > 0 { i -= len(m.Codespace) copy(dAtA[i:], m.Codespace) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.Codespace))) + i = encodeVarintAbci(dAtA, i, uint64(len(m.Codespace))) i-- dAtA[i] = 0x1a } if len(m.TxHash) > 0 { i -= len(m.TxHash) copy(dAtA[i:], m.TxHash) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.TxHash))) + i = encodeVarintAbci(dAtA, i, uint64(len(m.TxHash))) i-- dAtA[i] = 0x12 } if m.Height != 0 { - i = encodeVarintCosmos(dAtA, i, uint64(m.Height)) + i = encodeVarintAbci(dAtA, i, uint64(m.Height)) i-- dAtA[i] = 0x8 } @@ -1352,7 +707,7 @@ func (m *ABCIMessageLog) MarshalToSizedBuffer(dAtA []byte) (int, error) { return 0, err } i -= size - i = encodeVarintCosmos(dAtA, i, uint64(size)) + i = encodeVarintAbci(dAtA, i, uint64(size)) } i-- dAtA[i] = 0x1a @@ -1361,12 +716,12 @@ func (m *ABCIMessageLog) MarshalToSizedBuffer(dAtA []byte) (int, error) { if len(m.Log) > 0 { i -= len(m.Log) copy(dAtA[i:], m.Log) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.Log))) + i = encodeVarintAbci(dAtA, i, uint64(len(m.Log))) i-- dAtA[i] = 0x12 } if m.MsgIndex != 0 { - i = encodeVarintCosmos(dAtA, i, uint64(m.MsgIndex)) + i = encodeVarintAbci(dAtA, i, uint64(m.MsgIndex)) i-- dAtA[i] = 0x8 } @@ -1401,7 +756,7 @@ func (m *StringEvent) MarshalToSizedBuffer(dAtA []byte) (int, error) { return 0, err } i -= size - i = encodeVarintCosmos(dAtA, i, uint64(size)) + i = encodeVarintAbci(dAtA, i, uint64(size)) } i-- dAtA[i] = 0x12 @@ -1410,7 +765,7 @@ func (m *StringEvent) MarshalToSizedBuffer(dAtA []byte) (int, error) { if len(m.Type) > 0 { i -= len(m.Type) copy(dAtA[i:], m.Type) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.Type))) + i = encodeVarintAbci(dAtA, i, uint64(len(m.Type))) i-- dAtA[i] = 0xa } @@ -1440,22 +795,225 @@ func (m *Attribute) MarshalToSizedBuffer(dAtA []byte) (int, error) { if len(m.Value) > 0 { i -= len(m.Value) copy(dAtA[i:], m.Value) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.Value))) + i = encodeVarintAbci(dAtA, i, uint64(len(m.Value))) i-- dAtA[i] = 0x12 } if len(m.Key) > 0 { i -= len(m.Key) copy(dAtA[i:], m.Key) - i = encodeVarintCosmos(dAtA, i, uint64(len(m.Key))) + i = encodeVarintAbci(dAtA, i, uint64(len(m.Key))) i-- dAtA[i] = 0xa } return len(dAtA) - i, nil } -func encodeVarintCosmos(dAtA []byte, offset int, v uint64) int { - offset -= sovCosmos(v) +func (m *GasInfo) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *GasInfo) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *GasInfo) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.GasUsed != 0 { + i = encodeVarintAbci(dAtA, i, uint64(m.GasUsed)) + i-- + dAtA[i] = 0x10 + } + if m.GasWanted != 0 { + i = encodeVarintAbci(dAtA, i, uint64(m.GasWanted)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *Result) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *Result) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Result) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Events) > 0 { + for iNdEx := len(m.Events) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Events[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintAbci(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + } + if len(m.Log) > 0 { + i -= len(m.Log) + copy(dAtA[i:], m.Log) + i = encodeVarintAbci(dAtA, i, uint64(len(m.Log))) + i-- + dAtA[i] = 0x12 + } + if len(m.Data) > 0 { + i -= len(m.Data) + copy(dAtA[i:], m.Data) + i = encodeVarintAbci(dAtA, i, uint64(len(m.Data))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *SimulationResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *SimulationResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *SimulationResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Result != nil { + { + size, err := m.Result.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintAbci(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + { + size, err := m.GasInfo.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintAbci(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + +func (m *MsgData) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgData) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgData) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Data) > 0 { + i -= len(m.Data) + copy(dAtA[i:], m.Data) + i = encodeVarintAbci(dAtA, i, uint64(len(m.Data))) + i-- + dAtA[i] = 0x12 + } + if len(m.MsgType) > 0 { + i -= len(m.MsgType) + copy(dAtA[i:], m.MsgType) + i = encodeVarintAbci(dAtA, i, uint64(len(m.MsgType))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *TxMsgData) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *TxMsgData) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *TxMsgData) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Data) > 0 { + for iNdEx := len(m.Data) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Data[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintAbci(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func encodeVarintAbci(dAtA []byte, offset int, v uint64) int { + offset -= sovAbci(v) base := offset for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) @@ -1465,158 +1023,6 @@ func encodeVarintCosmos(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) return base } -func (m *Coin) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Denom) - if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) - } - l = m.Amount.Size() - n += 1 + l + sovCosmos(uint64(l)) - return n -} - -func (m *DecCoin) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Denom) - if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) - } - l = m.Amount.Size() - n += 1 + l + sovCosmos(uint64(l)) - return n -} - -func (m *IntProto) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.Int.Size() - n += 1 + l + sovCosmos(uint64(l)) - return n -} - -func (m *DecProto) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.Dec.Size() - n += 1 + l + sovCosmos(uint64(l)) - return n -} - -func (m *ValAddresses) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if len(m.Addresses) > 0 { - for _, b := range m.Addresses { - l = len(b) - n += 1 + l + sovCosmos(uint64(l)) - } - } - return n -} - -func (m *GasInfo) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.GasWanted != 0 { - n += 1 + sovCosmos(uint64(m.GasWanted)) - } - if m.GasUsed != 0 { - n += 1 + sovCosmos(uint64(m.GasUsed)) - } - return n -} - -func (m *Result) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Data) - if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) - } - l = len(m.Log) - if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) - } - if len(m.Events) > 0 { - for _, e := range m.Events { - l = e.Size() - n += 1 + l + sovCosmos(uint64(l)) - } - } - return n -} - -func (m *SimulationResponse) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.GasInfo.Size() - n += 1 + l + sovCosmos(uint64(l)) - if m.Result != nil { - l = m.Result.Size() - n += 1 + l + sovCosmos(uint64(l)) - } - return n -} - -func (m *MsgData) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.MsgType) - if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) - } - l = len(m.Data) - if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) - } - return n -} - -func (m *TxData) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if len(m.Data) > 0 { - for _, e := range m.Data { - l = e.Size() - n += 1 + l + sovCosmos(uint64(l)) - } - } - return n -} - func (m *TxResponse) Size() (n int) { if m == nil { return 0 @@ -1624,50 +1030,50 @@ func (m *TxResponse) Size() (n int) { var l int _ = l if m.Height != 0 { - n += 1 + sovCosmos(uint64(m.Height)) + n += 1 + sovAbci(uint64(m.Height)) } l = len(m.TxHash) if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) + n += 1 + l + sovAbci(uint64(l)) } l = len(m.Codespace) if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) + n += 1 + l + sovAbci(uint64(l)) } if m.Code != 0 { - n += 1 + sovCosmos(uint64(m.Code)) + n += 1 + sovAbci(uint64(m.Code)) } l = len(m.Data) if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) + n += 1 + l + sovAbci(uint64(l)) } l = len(m.RawLog) if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) + n += 1 + l + sovAbci(uint64(l)) } if len(m.Logs) > 0 { for _, e := range m.Logs { l = e.Size() - n += 1 + l + sovCosmos(uint64(l)) + n += 1 + l + sovAbci(uint64(l)) } } l = len(m.Info) if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) + n += 1 + l + sovAbci(uint64(l)) } if m.GasWanted != 0 { - n += 1 + sovCosmos(uint64(m.GasWanted)) + n += 1 + sovAbci(uint64(m.GasWanted)) } if m.GasUsed != 0 { - n += 1 + sovCosmos(uint64(m.GasUsed)) + n += 1 + sovAbci(uint64(m.GasUsed)) } if m.Tx != nil { l = m.Tx.Size() - n += 1 + l + sovCosmos(uint64(l)) + n += 1 + l + sovAbci(uint64(l)) } l = len(m.Timestamp) if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) + n += 1 + l + sovAbci(uint64(l)) } return n } @@ -1679,16 +1085,16 @@ func (m *ABCIMessageLog) Size() (n int) { var l int _ = l if m.MsgIndex != 0 { - n += 1 + sovCosmos(uint64(m.MsgIndex)) + n += 1 + sovAbci(uint64(m.MsgIndex)) } l = len(m.Log) if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) + n += 1 + l + sovAbci(uint64(l)) } if len(m.Events) > 0 { for _, e := range m.Events { l = e.Size() - n += 1 + l + sovCosmos(uint64(l)) + n += 1 + l + sovAbci(uint64(l)) } } return n @@ -1702,12 +1108,12 @@ func (m *StringEvent) Size() (n int) { _ = l l = len(m.Type) if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) + n += 1 + l + sovAbci(uint64(l)) } if len(m.Attributes) > 0 { for _, e := range m.Attributes { l = e.Size() - n += 1 + l + sovCosmos(uint64(l)) + n += 1 + l + sovAbci(uint64(l)) } } return n @@ -1721,56 +1127,105 @@ func (m *Attribute) Size() (n int) { _ = l l = len(m.Key) if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) + n += 1 + l + sovAbci(uint64(l)) } l = len(m.Value) if l > 0 { - n += 1 + l + sovCosmos(uint64(l)) + n += 1 + l + sovAbci(uint64(l)) } return n } -func sovCosmos(x uint64) (n int) { +func (m *GasInfo) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.GasWanted != 0 { + n += 1 + sovAbci(uint64(m.GasWanted)) + } + if m.GasUsed != 0 { + n += 1 + sovAbci(uint64(m.GasUsed)) + } + return n +} + +func (m *Result) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Data) + if l > 0 { + n += 1 + l + sovAbci(uint64(l)) + } + l = len(m.Log) + if l > 0 { + n += 1 + l + sovAbci(uint64(l)) + } + if len(m.Events) > 0 { + for _, e := range m.Events { + l = e.Size() + n += 1 + l + sovAbci(uint64(l)) + } + } + return n +} + +func (m *SimulationResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.GasInfo.Size() + n += 1 + l + sovAbci(uint64(l)) + if m.Result != nil { + l = m.Result.Size() + n += 1 + l + sovAbci(uint64(l)) + } + return n +} + +func (m *MsgData) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.MsgType) + if l > 0 { + n += 1 + l + sovAbci(uint64(l)) + } + l = len(m.Data) + if l > 0 { + n += 1 + l + sovAbci(uint64(l)) + } + return n +} + +func (m *TxMsgData) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Data) > 0 { + for _, e := range m.Data { + l = e.Size() + n += 1 + l + sovAbci(uint64(l)) + } + } + return n +} + +func sovAbci(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } -func sozCosmos(x uint64) (n int) { - return sovCosmos(uint64((x << 1) ^ uint64((int64(x) >> 63)))) -} -func (this *ValAddresses) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&ValAddresses{`, - `Addresses:` + fmt.Sprintf("%v", this.Addresses) + `,`, - `}`, - }, "") - return s -} -func (this *MsgData) String() string { - if this == nil { - return "nil" - } - s := strings.Join([]string{`&MsgData{`, - `MsgType:` + fmt.Sprintf("%v", this.MsgType) + `,`, - `Data:` + fmt.Sprintf("%v", this.Data) + `,`, - `}`, - }, "") - return s -} -func (this *TxData) String() string { - if this == nil { - return "nil" - } - repeatedStringForData := "[]*MsgData{" - for _, f := range this.Data { - repeatedStringForData += strings.Replace(f.String(), "MsgData", "MsgData", 1) + "," - } - repeatedStringForData += "}" - s := strings.Join([]string{`&TxData{`, - `Data:` + repeatedStringForData + `,`, - `}`, - }, "") - return s +func sozAbci(x uint64) (n int) { + return sovAbci(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (this *ABCIMessageLog) String() string { if this == nil { @@ -1805,7 +1260,33 @@ func (this *StringEvent) String() string { }, "") return s } -func valueToStringCosmos(v interface{}) string { +func (this *MsgData) String() string { + if this == nil { + return "nil" + } + s := strings.Join([]string{`&MsgData{`, + `MsgType:` + fmt.Sprintf("%v", this.MsgType) + `,`, + `Data:` + fmt.Sprintf("%v", this.Data) + `,`, + `}`, + }, "") + return s +} +func (this *TxMsgData) String() string { + if this == nil { + return "nil" + } + repeatedStringForData := "[]*MsgData{" + for _, f := range this.Data { + repeatedStringForData += strings.Replace(f.String(), "MsgData", "MsgData", 1) + "," + } + repeatedStringForData += "}" + s := strings.Join([]string{`&TxMsgData{`, + `Data:` + repeatedStringForData + `,`, + `}`, + }, "") + return s +} +func valueToStringAbci(v interface{}) string { rv := reflect.ValueOf(v) if rv.IsNil() { return "nil" @@ -1813,1075 +1294,6 @@ func valueToStringCosmos(v interface{}) string { pv := reflect.Indirect(rv).Interface() return fmt.Sprintf("*%v", pv) } -func (m *Coin) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: Coin: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: Coin: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Denom", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthCosmos - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthCosmos - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Denom = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthCosmos - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthCosmos - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipCosmos(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DecCoin) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DecCoin: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DecCoin: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Denom", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthCosmos - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthCosmos - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Denom = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthCosmos - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthCosmos - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipCosmos(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *IntProto) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: IntProto: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: IntProto: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Int", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthCosmos - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthCosmos - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Int.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipCosmos(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *DecProto) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: DecProto: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: DecProto: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Dec", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthCosmos - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthCosmos - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Dec.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipCosmos(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *ValAddresses) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: ValAddresses: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: ValAddresses: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Addresses", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthCosmos - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthCosmos - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Addresses = append(m.Addresses, make([]byte, postIndex-iNdEx)) - copy(m.Addresses[len(m.Addresses)-1], dAtA[iNdEx:postIndex]) - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipCosmos(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *GasInfo) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: GasInfo: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: GasInfo: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field GasWanted", wireType) - } - m.GasWanted = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.GasWanted |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - case 2: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field GasUsed", wireType) - } - m.GasUsed = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.GasUsed |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - default: - iNdEx = preIndex - skippy, err := skipCosmos(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *Result) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: Result: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: Result: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthCosmos - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthCosmos - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) - if m.Data == nil { - m.Data = []byte{} - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Log", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthCosmos - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthCosmos - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Log = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Events", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthCosmos - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthCosmos - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Events = append(m.Events, types.Event{}) - if err := m.Events[len(m.Events)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipCosmos(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *SimulationResponse) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: SimulationResponse: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: SimulationResponse: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field GasInfo", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthCosmos - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthCosmos - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.GasInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Result", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthCosmos - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthCosmos - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Result == nil { - m.Result = &Result{} - } - if err := m.Result.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipCosmos(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *MsgData) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgData: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgData: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field MsgType", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthCosmos - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthCosmos - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.MsgType = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthCosmos - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthCosmos - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) - if m.Data == nil { - m.Data = []byte{} - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipCosmos(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *TxData) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: TxData: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: TxData: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowCosmos - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthCosmos - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthCosmos - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Data = append(m.Data, &MsgData{}) - if err := m.Data[len(m.Data)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipCosmos(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthCosmos - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} func (m *TxResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -2890,7 +1302,7 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -2918,7 +1330,7 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { m.Height = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -2937,7 +1349,7 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -2951,11 +1363,11 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { } intStringLen := int(stringLen) if intStringLen < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } postIndex := iNdEx + intStringLen if postIndex < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if postIndex > l { return io.ErrUnexpectedEOF @@ -2969,7 +1381,7 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -2983,11 +1395,11 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { } intStringLen := int(stringLen) if intStringLen < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } postIndex := iNdEx + intStringLen if postIndex < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if postIndex > l { return io.ErrUnexpectedEOF @@ -3001,7 +1413,7 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { m.Code = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3020,7 +1432,7 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3034,11 +1446,11 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { } intStringLen := int(stringLen) if intStringLen < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } postIndex := iNdEx + intStringLen if postIndex < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if postIndex > l { return io.ErrUnexpectedEOF @@ -3052,7 +1464,7 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3066,11 +1478,11 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { } intStringLen := int(stringLen) if intStringLen < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } postIndex := iNdEx + intStringLen if postIndex < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if postIndex > l { return io.ErrUnexpectedEOF @@ -3084,7 +1496,7 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3097,11 +1509,11 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { } } if msglen < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } postIndex := iNdEx + msglen if postIndex < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if postIndex > l { return io.ErrUnexpectedEOF @@ -3118,7 +1530,7 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3132,11 +1544,11 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { } intStringLen := int(stringLen) if intStringLen < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } postIndex := iNdEx + intStringLen if postIndex < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if postIndex > l { return io.ErrUnexpectedEOF @@ -3150,7 +1562,7 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { m.GasWanted = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3169,7 +1581,7 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { m.GasUsed = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3188,7 +1600,7 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3201,17 +1613,17 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { } } if msglen < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } postIndex := iNdEx + msglen if postIndex < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if postIndex > l { return io.ErrUnexpectedEOF } if m.Tx == nil { - m.Tx = &types1.Any{} + m.Tx = &types.Any{} } if err := m.Tx.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err @@ -3224,7 +1636,7 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3238,11 +1650,11 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { } intStringLen := int(stringLen) if intStringLen < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } postIndex := iNdEx + intStringLen if postIndex < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if postIndex > l { return io.ErrUnexpectedEOF @@ -3251,15 +1663,15 @@ func (m *TxResponse) Unmarshal(dAtA []byte) error { iNdEx = postIndex default: iNdEx = preIndex - skippy, err := skipCosmos(dAtA[iNdEx:]) + skippy, err := skipAbci(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if (iNdEx + skippy) < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF @@ -3281,7 +1693,7 @@ func (m *ABCIMessageLog) Unmarshal(dAtA []byte) error { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3309,7 +1721,7 @@ func (m *ABCIMessageLog) Unmarshal(dAtA []byte) error { m.MsgIndex = 0 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3328,7 +1740,7 @@ func (m *ABCIMessageLog) Unmarshal(dAtA []byte) error { var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3342,11 +1754,11 @@ func (m *ABCIMessageLog) Unmarshal(dAtA []byte) error { } intStringLen := int(stringLen) if intStringLen < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } postIndex := iNdEx + intStringLen if postIndex < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if postIndex > l { return io.ErrUnexpectedEOF @@ -3360,7 +1772,7 @@ func (m *ABCIMessageLog) Unmarshal(dAtA []byte) error { var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3373,11 +1785,11 @@ func (m *ABCIMessageLog) Unmarshal(dAtA []byte) error { } } if msglen < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } postIndex := iNdEx + msglen if postIndex < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if postIndex > l { return io.ErrUnexpectedEOF @@ -3389,15 +1801,15 @@ func (m *ABCIMessageLog) Unmarshal(dAtA []byte) error { iNdEx = postIndex default: iNdEx = preIndex - skippy, err := skipCosmos(dAtA[iNdEx:]) + skippy, err := skipAbci(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if (iNdEx + skippy) < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF @@ -3419,7 +1831,7 @@ func (m *StringEvent) Unmarshal(dAtA []byte) error { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3447,7 +1859,7 @@ func (m *StringEvent) Unmarshal(dAtA []byte) error { var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3461,11 +1873,11 @@ func (m *StringEvent) Unmarshal(dAtA []byte) error { } intStringLen := int(stringLen) if intStringLen < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } postIndex := iNdEx + intStringLen if postIndex < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if postIndex > l { return io.ErrUnexpectedEOF @@ -3479,7 +1891,7 @@ func (m *StringEvent) Unmarshal(dAtA []byte) error { var msglen int for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3492,11 +1904,11 @@ func (m *StringEvent) Unmarshal(dAtA []byte) error { } } if msglen < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } postIndex := iNdEx + msglen if postIndex < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if postIndex > l { return io.ErrUnexpectedEOF @@ -3508,15 +1920,15 @@ func (m *StringEvent) Unmarshal(dAtA []byte) error { iNdEx = postIndex default: iNdEx = preIndex - skippy, err := skipCosmos(dAtA[iNdEx:]) + skippy, err := skipAbci(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if (iNdEx + skippy) < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF @@ -3538,7 +1950,7 @@ func (m *Attribute) Unmarshal(dAtA []byte) error { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3566,7 +1978,7 @@ func (m *Attribute) Unmarshal(dAtA []byte) error { var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3580,11 +1992,11 @@ func (m *Attribute) Unmarshal(dAtA []byte) error { } intStringLen := int(stringLen) if intStringLen < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } postIndex := iNdEx + intStringLen if postIndex < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if postIndex > l { return io.ErrUnexpectedEOF @@ -3598,7 +2010,7 @@ func (m *Attribute) Unmarshal(dAtA []byte) error { var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCosmos + return ErrIntOverflowAbci } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -3612,11 +2024,11 @@ func (m *Attribute) Unmarshal(dAtA []byte) error { } intStringLen := int(stringLen) if intStringLen < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } postIndex := iNdEx + intStringLen if postIndex < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if postIndex > l { return io.ErrUnexpectedEOF @@ -3625,15 +2037,15 @@ func (m *Attribute) Unmarshal(dAtA []byte) error { iNdEx = postIndex default: iNdEx = preIndex - skippy, err := skipCosmos(dAtA[iNdEx:]) + skippy, err := skipAbci(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if (iNdEx + skippy) < 0 { - return ErrInvalidLengthCosmos + return ErrInvalidLengthAbci } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF @@ -3647,7 +2059,579 @@ func (m *Attribute) Unmarshal(dAtA []byte) error { } return nil } -func skipCosmos(dAtA []byte) (n int, err error) { +func (m *GasInfo) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAbci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: GasInfo: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: GasInfo: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field GasWanted", wireType) + } + m.GasWanted = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAbci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.GasWanted |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field GasUsed", wireType) + } + m.GasUsed = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAbci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.GasUsed |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipAbci(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthAbci + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthAbci + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *Result) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAbci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Result: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Result: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAbci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthAbci + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthAbci + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) + if m.Data == nil { + m.Data = []byte{} + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Log", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAbci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthAbci + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthAbci + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Log = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Events", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAbci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthAbci + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthAbci + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Events = append(m.Events, types1.Event{}) + if err := m.Events[len(m.Events)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipAbci(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthAbci + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthAbci + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *SimulationResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAbci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: SimulationResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: SimulationResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field GasInfo", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAbci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthAbci + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthAbci + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.GasInfo.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Result", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAbci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthAbci + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthAbci + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Result == nil { + m.Result = &Result{} + } + if err := m.Result.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipAbci(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthAbci + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthAbci + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgData) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAbci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgData: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgData: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field MsgType", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAbci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthAbci + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthAbci + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.MsgType = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAbci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthAbci + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthAbci + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) + if m.Data == nil { + m.Data = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipAbci(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthAbci + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthAbci + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *TxMsgData) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAbci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: TxMsgData: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: TxMsgData: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowAbci + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthAbci + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthAbci + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Data = append(m.Data, &MsgData{}) + if err := m.Data[len(m.Data)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipAbci(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthAbci + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthAbci + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipAbci(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 depth := 0 @@ -3655,7 +2639,7 @@ func skipCosmos(dAtA []byte) (n int, err error) { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return 0, ErrIntOverflowCosmos + return 0, ErrIntOverflowAbci } if iNdEx >= l { return 0, io.ErrUnexpectedEOF @@ -3672,7 +2656,7 @@ func skipCosmos(dAtA []byte) (n int, err error) { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { - return 0, ErrIntOverflowCosmos + return 0, ErrIntOverflowAbci } if iNdEx >= l { return 0, io.ErrUnexpectedEOF @@ -3688,7 +2672,7 @@ func skipCosmos(dAtA []byte) (n int, err error) { var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { - return 0, ErrIntOverflowCosmos + return 0, ErrIntOverflowAbci } if iNdEx >= l { return 0, io.ErrUnexpectedEOF @@ -3701,14 +2685,14 @@ func skipCosmos(dAtA []byte) (n int, err error) { } } if length < 0 { - return 0, ErrInvalidLengthCosmos + return 0, ErrInvalidLengthAbci } iNdEx += length case 3: depth++ case 4: if depth == 0 { - return 0, ErrUnexpectedEndOfGroupCosmos + return 0, ErrUnexpectedEndOfGroupAbci } depth-- case 5: @@ -3717,7 +2701,7 @@ func skipCosmos(dAtA []byte) (n int, err error) { return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } if iNdEx < 0 { - return 0, ErrInvalidLengthCosmos + return 0, ErrInvalidLengthAbci } if depth == 0 { return iNdEx, nil @@ -3727,7 +2711,7 @@ func skipCosmos(dAtA []byte) (n int, err error) { } var ( - ErrInvalidLengthCosmos = fmt.Errorf("proto: negative length found during unmarshaling") - ErrIntOverflowCosmos = fmt.Errorf("proto: integer overflow") - ErrUnexpectedEndOfGroupCosmos = fmt.Errorf("proto: unexpected end of group") + ErrInvalidLengthAbci = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowAbci = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupAbci = fmt.Errorf("proto: unexpected end of group") ) diff --git a/types/codec.go b/types/codec.go index 66ab0b32ed..bf3c4c4d04 100644 --- a/types/codec.go +++ b/types/codec.go @@ -6,13 +6,13 @@ import ( "github.com/cosmos/cosmos-sdk/codec" ) -// Register the sdk message type +// RegisterCodec registers the sdk message type. func RegisterCodec(cdc *codec.LegacyAmino) { cdc.RegisterInterface((*Msg)(nil), nil) cdc.RegisterInterface((*Tx)(nil), nil) } -// Register the sdk message type +// RegisterInterfaces registers the sdk message type. func RegisterInterfaces(registry types.InterfaceRegistry) { - registry.RegisterInterface("cosmos_sdk.v1.Msg", (*Msg)(nil)) + registry.RegisterInterface("cosmos.v1beta1.Msg", (*Msg)(nil)) } diff --git a/types/coin.pb.go b/types/coin.pb.go new file mode 100644 index 0000000000..ba4bb444da --- /dev/null +++ b/types/coin.pb.go @@ -0,0 +1,990 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: cosmos/base/v1beta1/coin.proto + +package types + +import ( + fmt "fmt" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" + io "io" + math "math" + math_bits "math/bits" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package + +// Coin defines a token with a denomination and an amount. +// +// NOTE: The amount field is an Int which implements the custom method +// signatures required by gogoproto. +type Coin struct { + Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"` + Amount Int `protobuf:"bytes,2,opt,name=amount,proto3,customtype=Int" json:"amount"` +} + +func (m *Coin) Reset() { *m = Coin{} } +func (*Coin) ProtoMessage() {} +func (*Coin) Descriptor() ([]byte, []int) { + return fileDescriptor_189a96714eafc2df, []int{0} +} +func (m *Coin) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Coin) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Coin.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *Coin) XXX_Merge(src proto.Message) { + xxx_messageInfo_Coin.Merge(m, src) +} +func (m *Coin) XXX_Size() int { + return m.Size() +} +func (m *Coin) XXX_DiscardUnknown() { + xxx_messageInfo_Coin.DiscardUnknown(m) +} + +var xxx_messageInfo_Coin proto.InternalMessageInfo + +func (m *Coin) GetDenom() string { + if m != nil { + return m.Denom + } + return "" +} + +// DecCoin defines a token with a denomination and a decimal amount. +// +// NOTE: The amount field is an Dec which implements the custom method +// signatures required by gogoproto. +type DecCoin struct { + Denom string `protobuf:"bytes,1,opt,name=denom,proto3" json:"denom,omitempty"` + Amount Dec `protobuf:"bytes,2,opt,name=amount,proto3,customtype=Dec" json:"amount"` +} + +func (m *DecCoin) Reset() { *m = DecCoin{} } +func (*DecCoin) ProtoMessage() {} +func (*DecCoin) Descriptor() ([]byte, []int) { + return fileDescriptor_189a96714eafc2df, []int{1} +} +func (m *DecCoin) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *DecCoin) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_DecCoin.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *DecCoin) XXX_Merge(src proto.Message) { + xxx_messageInfo_DecCoin.Merge(m, src) +} +func (m *DecCoin) XXX_Size() int { + return m.Size() +} +func (m *DecCoin) XXX_DiscardUnknown() { + xxx_messageInfo_DecCoin.DiscardUnknown(m) +} + +var xxx_messageInfo_DecCoin proto.InternalMessageInfo + +func (m *DecCoin) GetDenom() string { + if m != nil { + return m.Denom + } + return "" +} + +// IntProto defines a Protobuf wrapper around an Int object. +type IntProto struct { + Int Int `protobuf:"bytes,1,opt,name=int,proto3,customtype=Int" json:"int"` +} + +func (m *IntProto) Reset() { *m = IntProto{} } +func (*IntProto) ProtoMessage() {} +func (*IntProto) Descriptor() ([]byte, []int) { + return fileDescriptor_189a96714eafc2df, []int{2} +} +func (m *IntProto) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *IntProto) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_IntProto.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *IntProto) XXX_Merge(src proto.Message) { + xxx_messageInfo_IntProto.Merge(m, src) +} +func (m *IntProto) XXX_Size() int { + return m.Size() +} +func (m *IntProto) XXX_DiscardUnknown() { + xxx_messageInfo_IntProto.DiscardUnknown(m) +} + +var xxx_messageInfo_IntProto proto.InternalMessageInfo + +// DecProto defines a Protobuf wrapper around a Dec object. +type DecProto struct { + Dec Dec `protobuf:"bytes,1,opt,name=dec,proto3,customtype=Dec" json:"dec"` +} + +func (m *DecProto) Reset() { *m = DecProto{} } +func (*DecProto) ProtoMessage() {} +func (*DecProto) Descriptor() ([]byte, []int) { + return fileDescriptor_189a96714eafc2df, []int{3} +} +func (m *DecProto) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *DecProto) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_DecProto.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *DecProto) XXX_Merge(src proto.Message) { + xxx_messageInfo_DecProto.Merge(m, src) +} +func (m *DecProto) XXX_Size() int { + return m.Size() +} +func (m *DecProto) XXX_DiscardUnknown() { + xxx_messageInfo_DecProto.DiscardUnknown(m) +} + +var xxx_messageInfo_DecProto proto.InternalMessageInfo + +func init() { + proto.RegisterType((*Coin)(nil), "cosmos.base.v1beta1.Coin") + proto.RegisterType((*DecCoin)(nil), "cosmos.base.v1beta1.DecCoin") + proto.RegisterType((*IntProto)(nil), "cosmos.base.v1beta1.IntProto") + proto.RegisterType((*DecProto)(nil), "cosmos.base.v1beta1.DecProto") +} + +func init() { proto.RegisterFile("cosmos/base/v1beta1/coin.proto", fileDescriptor_189a96714eafc2df) } + +var fileDescriptor_189a96714eafc2df = []byte{ + // 261 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x4f, 0x4a, 0x2c, 0x4e, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, + 0x4f, 0xce, 0xcf, 0xcc, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x86, 0xc8, 0xeb, 0x81, + 0xe4, 0xf5, 0xa0, 0xf2, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x79, 0x7d, 0x10, 0x0b, 0xa2, + 0x54, 0xc9, 0x9d, 0x8b, 0xc5, 0x39, 0x3f, 0x33, 0x4f, 0x48, 0x84, 0x8b, 0x35, 0x25, 0x35, 0x2f, + 0x3f, 0x57, 0x82, 0x51, 0x81, 0x51, 0x83, 0x33, 0x08, 0xc2, 0x11, 0x52, 0xe6, 0x62, 0x4b, 0xcc, + 0xcd, 0x2f, 0xcd, 0x2b, 0x91, 0x60, 0x02, 0x09, 0x3b, 0x71, 0x9f, 0xb8, 0x27, 0xcf, 0x70, 0xeb, + 0x9e, 0x3c, 0xb3, 0x67, 0x5e, 0x49, 0x10, 0x54, 0xca, 0x8a, 0xe5, 0xc5, 0x02, 0x79, 0x46, 0x25, + 0x2f, 0x2e, 0x76, 0x97, 0xd4, 0x64, 0x72, 0xcc, 0x72, 0x49, 0x4d, 0x46, 0x33, 0x4b, 0x93, 0x8b, + 0xc3, 0x33, 0xaf, 0x24, 0x00, 0xec, 0x17, 0x59, 0x2e, 0xe6, 0xcc, 0xbc, 0x12, 0x88, 0x51, 0xa8, + 0xf6, 0x83, 0xc4, 0x41, 0x4a, 0x5d, 0x52, 0x93, 0xe1, 0x4a, 0x53, 0x52, 0x93, 0xd1, 0x95, 0x82, + 0x8c, 0x07, 0x89, 0x3b, 0xb9, 0xdc, 0x78, 0x28, 0xc7, 0xd0, 0xf0, 0x48, 0x8e, 0xe1, 0xc4, 0x23, + 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, + 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x94, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, + 0x92, 0xf3, 0x73, 0xf5, 0xa1, 0x41, 0x0c, 0xa1, 0x74, 0x8b, 0x53, 0xb2, 0xf5, 0x4b, 0x2a, 0x0b, + 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xe1, 0x66, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x57, 0xb3, 0x7a, + 0x93, 0x84, 0x01, 0x00, 0x00, +} + +func (this *Coin) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*Coin) + if !ok { + that2, ok := that.(Coin) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if this.Denom != that1.Denom { + return false + } + if !this.Amount.Equal(that1.Amount) { + return false + } + return true +} +func (this *DecCoin) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*DecCoin) + if !ok { + that2, ok := that.(DecCoin) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if this.Denom != that1.Denom { + return false + } + if !this.Amount.Equal(that1.Amount) { + return false + } + return true +} +func (m *Coin) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *Coin) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Coin) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size := m.Amount.Size() + i -= size + if _, err := m.Amount.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintCoin(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + if len(m.Denom) > 0 { + i -= len(m.Denom) + copy(dAtA[i:], m.Denom) + i = encodeVarintCoin(dAtA, i, uint64(len(m.Denom))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *DecCoin) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *DecCoin) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *DecCoin) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size := m.Amount.Size() + i -= size + if _, err := m.Amount.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintCoin(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + if len(m.Denom) > 0 { + i -= len(m.Denom) + copy(dAtA[i:], m.Denom) + i = encodeVarintCoin(dAtA, i, uint64(len(m.Denom))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *IntProto) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *IntProto) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *IntProto) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size := m.Int.Size() + i -= size + if _, err := m.Int.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintCoin(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + +func (m *DecProto) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *DecProto) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *DecProto) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size := m.Dec.Size() + i -= size + if _, err := m.Dec.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintCoin(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + +func encodeVarintCoin(dAtA []byte, offset int, v uint64) int { + offset -= sovCoin(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *Coin) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Denom) + if l > 0 { + n += 1 + l + sovCoin(uint64(l)) + } + l = m.Amount.Size() + n += 1 + l + sovCoin(uint64(l)) + return n +} + +func (m *DecCoin) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Denom) + if l > 0 { + n += 1 + l + sovCoin(uint64(l)) + } + l = m.Amount.Size() + n += 1 + l + sovCoin(uint64(l)) + return n +} + +func (m *IntProto) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Int.Size() + n += 1 + l + sovCoin(uint64(l)) + return n +} + +func (m *DecProto) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Dec.Size() + n += 1 + l + sovCoin(uint64(l)) + return n +} + +func sovCoin(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozCoin(x uint64) (n int) { + return sovCoin(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *Coin) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoin + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Coin: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Coin: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Denom", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoin + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCoin + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCoin + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Denom = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoin + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCoin + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCoin + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipCoin(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthCoin + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthCoin + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *DecCoin) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoin + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: DecCoin: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: DecCoin: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Denom", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoin + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCoin + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCoin + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Denom = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoin + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCoin + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCoin + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipCoin(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthCoin + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthCoin + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *IntProto) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoin + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: IntProto: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: IntProto: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Int", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoin + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCoin + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCoin + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Int.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipCoin(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthCoin + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthCoin + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *DecProto) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoin + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: DecProto: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: DecProto: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Dec", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowCoin + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthCoin + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthCoin + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Dec.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipCoin(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthCoin + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthCoin + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipCoin(dAtA []byte) (n int, err error) { + l := len(dAtA) + iNdEx := 0 + depth := 0 + for iNdEx < l { + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowCoin + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + wireType := int(wire & 0x7) + switch wireType { + case 0: + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowCoin + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + iNdEx++ + if dAtA[iNdEx-1] < 0x80 { + break + } + } + case 1: + iNdEx += 8 + case 2: + var length int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowCoin + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + length |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if length < 0 { + return 0, ErrInvalidLengthCoin + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupCoin + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthCoin + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthCoin = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowCoin = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupCoin = fmt.Errorf("proto: unexpected end of group") +) diff --git a/types/kv/kv.pb.go b/types/kv/kv.pb.go index a5c2b7a868..982324881d 100644 --- a/types/kv/kv.pb.go +++ b/types/kv/kv.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/kv/kv.proto +// source: cosmos/base/kv/v1beta1/kv.proto package kv @@ -32,7 +32,7 @@ func (m *Pairs) Reset() { *m = Pairs{} } func (m *Pairs) String() string { return proto.CompactTextString(m) } func (*Pairs) ProtoMessage() {} func (*Pairs) Descriptor() ([]byte, []int) { - return fileDescriptor_23371bd43b515c6e, []int{0} + return fileDescriptor_a44e87fe7182bb73, []int{0} } func (m *Pairs) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +78,7 @@ func (m *Pair) Reset() { *m = Pair{} } func (m *Pair) String() string { return proto.CompactTextString(m) } func (*Pair) ProtoMessage() {} func (*Pair) Descriptor() ([]byte, []int) { - return fileDescriptor_23371bd43b515c6e, []int{1} + return fileDescriptor_a44e87fe7182bb73, []int{1} } func (m *Pair) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -122,27 +122,28 @@ func (m *Pair) GetValue() []byte { } func init() { - proto.RegisterType((*Pairs)(nil), "cosmos.kv.Pairs") - proto.RegisterType((*Pair)(nil), "cosmos.kv.Pair") + proto.RegisterType((*Pairs)(nil), "cosmos.base.kv.v1beta1.Pairs") + proto.RegisterType((*Pair)(nil), "cosmos.base.kv.v1beta1.Pair") } -func init() { proto.RegisterFile("cosmos/kv/kv.proto", fileDescriptor_23371bd43b515c6e) } +func init() { proto.RegisterFile("cosmos/base/kv/v1beta1/kv.proto", fileDescriptor_a44e87fe7182bb73) } -var fileDescriptor_23371bd43b515c6e = []byte{ - // 200 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4a, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0xcf, 0x2e, 0xd3, 0xcf, 0x2e, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, - 0x84, 0x88, 0xe9, 0x65, 0x97, 0x49, 0x89, 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0x45, 0xf5, 0x41, 0x2c, - 0x88, 0x02, 0x25, 0x13, 0x2e, 0xd6, 0x80, 0xc4, 0xcc, 0xa2, 0x62, 0x21, 0x6d, 0x2e, 0xd6, 0x02, - 0x10, 0x43, 0x82, 0x51, 0x81, 0x59, 0x83, 0xdb, 0x88, 0x5f, 0x0f, 0xae, 0x53, 0x0f, 0xa4, 0xc0, - 0x89, 0xe5, 0xc4, 0x3d, 0x79, 0x86, 0x20, 0x88, 0x1a, 0x25, 0x3d, 0x2e, 0x16, 0x90, 0xa0, 0x90, - 0x00, 0x17, 0x73, 0x76, 0x6a, 0xa5, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x4f, 0x10, 0x88, 0x29, 0x24, - 0xc2, 0xc5, 0x5a, 0x96, 0x98, 0x53, 0x9a, 0x2a, 0xc1, 0x04, 0x16, 0x83, 0x70, 0x9c, 0xec, 0x4f, - 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, - 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0x4a, 0x35, 0x3d, 0xb3, 0x24, 0xa3, 0x34, - 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0xea, 0x7e, 0x08, 0xa5, 0x5b, 0x9c, 0x92, 0xad, 0x5f, 0x52, - 0x59, 0x90, 0x0a, 0xf2, 0x50, 0x12, 0x1b, 0xd8, 0xb5, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, - 0xce, 0x49, 0x74, 0x20, 0xe4, 0x00, 0x00, 0x00, +var fileDescriptor_a44e87fe7182bb73 = []byte{ + // 221 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4f, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x4f, 0x4a, 0x2c, 0x4e, 0xd5, 0xcf, 0x2e, 0xd3, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, + 0x49, 0x34, 0xd4, 0xcf, 0x2e, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x83, 0x28, 0xd0, + 0x03, 0x29, 0xd0, 0xcb, 0x2e, 0xd3, 0x83, 0x2a, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, + 0xd1, 0x07, 0xb1, 0x20, 0xaa, 0x95, 0x1c, 0xb9, 0x58, 0x03, 0x12, 0x33, 0x8b, 0x8a, 0x85, 0x2c, + 0xb8, 0x58, 0x0b, 0x40, 0x0c, 0x09, 0x46, 0x05, 0x66, 0x0d, 0x6e, 0x23, 0x19, 0x3d, 0xec, 0xc6, + 0xe8, 0x81, 0x54, 0x3b, 0xb1, 0x9c, 0xb8, 0x27, 0xcf, 0x10, 0x04, 0xd1, 0xa0, 0xa4, 0xc7, 0xc5, + 0x02, 0x12, 0x14, 0x12, 0xe0, 0x62, 0xce, 0x4e, 0xad, 0x94, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x09, + 0x02, 0x31, 0x85, 0x44, 0xb8, 0x58, 0xcb, 0x12, 0x73, 0x4a, 0x53, 0x25, 0x98, 0xc0, 0x62, 0x10, + 0x8e, 0x93, 0xfd, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, + 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0xa9, 0xa6, 0x67, + 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x43, 0xbd, 0x09, 0xa1, 0x74, 0x8b, 0x53, + 0xb2, 0xf5, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0xf5, 0xb3, 0xcb, 0x92, 0xd8, 0xc0, 0x4e, 0x37, 0x06, + 0x04, 0x00, 0x00, 0xff, 0xff, 0x15, 0x18, 0x16, 0xcf, 0x0b, 0x01, 0x00, 0x00, } func (m *Pairs) Marshal() (dAtA []byte, err error) { diff --git a/types/query/pagination.pb.go b/types/query/pagination.pb.go index e9f3b6fb15..8efc8934ca 100644 --- a/types/query/pagination.pb.go +++ b/types/query/pagination.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/query/pagination.proto +// source: cosmos/base/query/v1beta1/pagination.proto package query @@ -51,7 +51,7 @@ func (m *PageRequest) Reset() { *m = PageRequest{} } func (m *PageRequest) String() string { return proto.CompactTextString(m) } func (*PageRequest) ProtoMessage() {} func (*PageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_4353dcf7b0208338, []int{0} + return fileDescriptor_53d6d609fe6828af, []int{0} } func (m *PageRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -128,7 +128,7 @@ func (m *PageResponse) Reset() { *m = PageResponse{} } func (m *PageResponse) String() string { return proto.CompactTextString(m) } func (*PageResponse) ProtoMessage() {} func (*PageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_4353dcf7b0208338, []int{1} + return fileDescriptor_53d6d609fe6828af, []int{1} } func (m *PageResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -172,30 +172,33 @@ func (m *PageResponse) GetTotal() uint64 { } func init() { - proto.RegisterType((*PageRequest)(nil), "cosmos.query.PageRequest") - proto.RegisterType((*PageResponse)(nil), "cosmos.query.PageResponse") + proto.RegisterType((*PageRequest)(nil), "cosmos.base.query.v1beta1.PageRequest") + proto.RegisterType((*PageResponse)(nil), "cosmos.base.query.v1beta1.PageResponse") } -func init() { proto.RegisterFile("cosmos/query/pagination.proto", fileDescriptor_4353dcf7b0208338) } +func init() { + proto.RegisterFile("cosmos/base/query/v1beta1/pagination.proto", fileDescriptor_53d6d609fe6828af) +} -var fileDescriptor_4353dcf7b0208338 = []byte{ - // 251 bytes of a gzipped FileDescriptorProto +var fileDescriptor_53d6d609fe6828af = []byte{ + // 266 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x44, 0x90, 0xc1, 0x4a, 0xc3, 0x40, - 0x10, 0x86, 0xb3, 0xb6, 0xd6, 0x32, 0xcd, 0x41, 0x16, 0x91, 0x78, 0x70, 0x0d, 0x3d, 0xe5, 0x62, - 0x72, 0xf0, 0x01, 0x84, 0x5e, 0xbd, 0x48, 0xf0, 0xe4, 0xa5, 0xa4, 0x71, 0x1a, 0x97, 0x36, 0x3b, - 0x69, 0x77, 0x02, 0xe6, 0x2d, 0x7c, 0x2c, 0x8f, 0x3d, 0x7a, 0x94, 0xe4, 0x45, 0x24, 0xd9, 0x40, - 0x4f, 0xbb, 0xdf, 0xff, 0xc3, 0x7c, 0xf0, 0xc3, 0x7d, 0x4e, 0xb6, 0x24, 0x9b, 0x1c, 0x6a, 0x3c, - 0x36, 0x49, 0x95, 0x15, 0xda, 0x64, 0xac, 0xc9, 0xc4, 0xd5, 0x91, 0x98, 0xa4, 0xef, 0xea, 0x78, - 0xa8, 0x97, 0x06, 0x16, 0xaf, 0x59, 0x81, 0x29, 0x1e, 0x6a, 0xb4, 0x2c, 0xaf, 0x61, 0xb2, 0xc3, - 0x26, 0x10, 0xa1, 0x88, 0xfc, 0xb4, 0xff, 0xca, 0x5b, 0x98, 0xd1, 0x76, 0x6b, 0x91, 0x83, 0x8b, - 0x50, 0x44, 0xd3, 0x74, 0x24, 0x79, 0x03, 0x97, 0x7b, 0x5d, 0x6a, 0x0e, 0x26, 0x43, 0xec, 0x40, - 0x3e, 0xc0, 0x22, 0xa7, 0xda, 0xf0, 0x9a, 0x89, 0xb3, 0x7d, 0x30, 0x0d, 0x45, 0x34, 0x4f, 0x61, - 0x88, 0xde, 0xfa, 0x64, 0xf9, 0x0c, 0xbe, 0xf3, 0xd9, 0x8a, 0x8c, 0x45, 0x79, 0x07, 0x73, 0x83, - 0x5f, 0xbc, 0x3e, 0x5b, 0xaf, 0x7a, 0x7e, 0xc1, 0xa6, 0x37, 0xb8, 0x2b, 0x4e, 0xec, 0x60, 0xb5, - 0xfa, 0x69, 0x95, 0x38, 0xb5, 0x4a, 0xfc, 0xb5, 0x4a, 0x7c, 0x77, 0xca, 0x3b, 0x75, 0xca, 0xfb, - 0xed, 0x94, 0xf7, 0x1e, 0x15, 0x9a, 0x3f, 0xeb, 0x4d, 0x9c, 0x53, 0x99, 0x8c, 0x13, 0xb8, 0xe7, - 0xd1, 0x7e, 0xec, 0x12, 0x6e, 0x2a, 0x1c, 0x37, 0xd9, 0xcc, 0x86, 0x25, 0x9e, 0xfe, 0x03, 0x00, - 0x00, 0xff, 0xff, 0xe5, 0x66, 0x0a, 0x76, 0x2a, 0x01, 0x00, 0x00, + 0x14, 0x45, 0x33, 0xb6, 0xd6, 0x32, 0xed, 0x42, 0x06, 0x91, 0x74, 0x33, 0x86, 0xae, 0x82, 0x60, + 0x86, 0xe2, 0x07, 0x08, 0xdd, 0xba, 0x91, 0xe0, 0xca, 0x4d, 0x99, 0xc4, 0xd7, 0x18, 0xda, 0xcc, + 0x4b, 0x3b, 0x2f, 0x62, 0xfe, 0xc2, 0xcf, 0x72, 0xd9, 0xa5, 0x4b, 0x49, 0x7e, 0x44, 0x92, 0x09, + 0x74, 0x35, 0x73, 0x2f, 0x87, 0x77, 0xe0, 0xf2, 0xfb, 0x14, 0x6d, 0x81, 0x56, 0x25, 0xda, 0x82, + 0x3a, 0x54, 0x70, 0xac, 0xd5, 0xe7, 0x2a, 0x01, 0xd2, 0x2b, 0x55, 0xea, 0x2c, 0x37, 0x9a, 0x72, + 0x34, 0x51, 0x79, 0x44, 0x42, 0xb1, 0x70, 0x6c, 0xd4, 0xb1, 0x51, 0xcf, 0x46, 0x03, 0xbb, 0x34, + 0x7c, 0xf6, 0xa2, 0x33, 0x88, 0xe1, 0x50, 0x81, 0x25, 0x71, 0xcd, 0x47, 0x3b, 0xa8, 0x7d, 0x16, + 0xb0, 0x70, 0x1e, 0x77, 0x5f, 0x71, 0xcb, 0x27, 0xb8, 0xdd, 0x5a, 0x20, 0xff, 0x22, 0x60, 0xe1, + 0x38, 0x1e, 0x92, 0xb8, 0xe1, 0x97, 0xfb, 0xbc, 0xc8, 0xc9, 0x1f, 0xf5, 0xb5, 0x0b, 0xe2, 0x8e, + 0xcf, 0x52, 0xac, 0x0c, 0x6d, 0x08, 0x49, 0xef, 0xfd, 0x71, 0xc0, 0xc2, 0x69, 0xcc, 0xfb, 0xea, + 0xb5, 0x6b, 0x96, 0x4f, 0x7c, 0xee, 0x7c, 0xb6, 0x44, 0x63, 0x41, 0x2c, 0xf8, 0xd4, 0xc0, 0x17, + 0x6d, 0xce, 0xd6, 0xab, 0x2e, 0x3f, 0x43, 0xdd, 0x19, 0xdc, 0x15, 0x27, 0x76, 0x61, 0xbd, 0xfe, + 0x69, 0x24, 0x3b, 0x35, 0x92, 0xfd, 0x35, 0x92, 0x7d, 0xb7, 0xd2, 0x3b, 0xb5, 0xd2, 0xfb, 0x6d, + 0xa5, 0xf7, 0x16, 0x66, 0x39, 0x7d, 0x54, 0x49, 0x94, 0x62, 0xa1, 0x86, 0x71, 0xdc, 0xf3, 0x60, + 0xdf, 0x77, 0x8a, 0xea, 0x12, 0xac, 0x1b, 0x2a, 0x99, 0xf4, 0xb3, 0x3c, 0xfe, 0x07, 0x00, 0x00, + 0xff, 0xff, 0xb5, 0x65, 0x82, 0x18, 0x44, 0x01, 0x00, 0x00, } func (m *PageRequest) Marshal() (dAtA []byte, err error) { diff --git a/types/tx/service.pb.go b/types/tx/service.pb.go index 54313fd512..1b842f9a4d 100644 --- a/types/tx/service.pb.go +++ b/types/tx/service.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/tx/service.proto +// source: cosmos/tx/v1beta1/service.proto package tx @@ -37,7 +37,7 @@ func (m *SimulateRequest) Reset() { *m = SimulateRequest{} } func (m *SimulateRequest) String() string { return proto.CompactTextString(m) } func (*SimulateRequest) ProtoMessage() {} func (*SimulateRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3815655f4ee03b11, []int{0} + return fileDescriptor_e0b00a618705eca7, []int{0} } func (m *SimulateRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -83,7 +83,7 @@ func (m *SimulateResponse) Reset() { *m = SimulateResponse{} } func (m *SimulateResponse) String() string { return proto.CompactTextString(m) } func (*SimulateResponse) ProtoMessage() {} func (*SimulateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3815655f4ee03b11, []int{1} + return fileDescriptor_e0b00a618705eca7, []int{1} } func (m *SimulateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -127,31 +127,33 @@ func (m *SimulateResponse) GetResult() *types.Result { } func init() { - proto.RegisterType((*SimulateRequest)(nil), "cosmos.tx.SimulateRequest") - proto.RegisterType((*SimulateResponse)(nil), "cosmos.tx.SimulateResponse") + proto.RegisterType((*SimulateRequest)(nil), "cosmos.tx.v1beta1.SimulateRequest") + proto.RegisterType((*SimulateResponse)(nil), "cosmos.tx.v1beta1.SimulateResponse") } -func init() { proto.RegisterFile("cosmos/tx/service.proto", fileDescriptor_3815655f4ee03b11) } +func init() { proto.RegisterFile("cosmos/tx/v1beta1/service.proto", fileDescriptor_e0b00a618705eca7) } -var fileDescriptor_3815655f4ee03b11 = []byte{ - // 266 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4f, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x2f, 0xa9, 0xd0, 0x2f, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x2b, 0x28, - 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x84, 0x48, 0xe8, 0x95, 0x54, 0x48, 0x09, 0x43, 0xd5, 0x40, 0x45, - 0xc0, 0xf2, 0x52, 0x42, 0x08, 0x8d, 0x25, 0x15, 0x10, 0x31, 0x25, 0x03, 0x2e, 0xfe, 0xe0, 0xcc, - 0xdc, 0xd2, 0x9c, 0xc4, 0x92, 0xd4, 0xa0, 0xd4, 0xc2, 0xd2, 0xd4, 0xe2, 0x12, 0x21, 0x59, 0x2e, - 0xa6, 0x92, 0x0a, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x5e, 0x3d, 0xb8, 0x99, 0x7a, 0x21, - 0x15, 0x41, 0x4c, 0x25, 0x15, 0x4a, 0x69, 0x5c, 0x02, 0x08, 0x1d, 0xc5, 0x05, 0xf9, 0x79, 0xc5, - 0xa9, 0x42, 0x5a, 0x5c, 0x1c, 0xe9, 0x89, 0xc5, 0xf1, 0x99, 0x79, 0x69, 0xf9, 0x50, 0x8d, 0xfc, - 0x30, 0x8d, 0xee, 0x89, 0xc5, 0x9e, 0x79, 0x69, 0xf9, 0x41, 0xec, 0xe9, 0x10, 0x86, 0x90, 0x1a, - 0x17, 0x5b, 0x51, 0x6a, 0x71, 0x69, 0x4e, 0x89, 0x04, 0x13, 0x58, 0x25, 0x1f, 0x4c, 0x65, 0x10, - 0x58, 0x34, 0x08, 0x2a, 0x6b, 0x14, 0xc0, 0xc5, 0x1e, 0x0c, 0xf1, 0x9e, 0x90, 0x2b, 0x17, 0x07, - 0xcc, 0x4a, 0x21, 0x29, 0x24, 0x17, 0xa1, 0xb9, 0x5c, 0x4a, 0x1a, 0xab, 0x1c, 0xc4, 0x8d, 0x4a, - 0x0c, 0x4e, 0xf6, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, - 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x9a, 0x9e, - 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x8f, 0x12, 0x72, 0xba, 0xc5, 0x29, 0xd9, - 0xfa, 0x25, 0x95, 0x05, 0xa9, 0xa0, 0x50, 0x4b, 0x62, 0x03, 0x87, 0x99, 0x31, 0x20, 0x00, 0x00, - 0xff, 0xff, 0x1f, 0x22, 0x57, 0x5f, 0x82, 0x01, 0x00, 0x00, +var fileDescriptor_e0b00a618705eca7 = []byte{ + // 300 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4f, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x2f, 0xa9, 0xd0, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0x4e, + 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x84, 0x28, 0xd0, + 0x2b, 0xa9, 0xd0, 0x83, 0x2a, 0x90, 0x52, 0x86, 0xea, 0x49, 0x4a, 0x2c, 0x4e, 0xd5, 0x4f, 0x4c, + 0x4a, 0xce, 0x84, 0x6b, 0x05, 0x71, 0x20, 0xfa, 0xa4, 0xa4, 0x30, 0x0d, 0x2e, 0xa9, 0x80, 0xc8, + 0x29, 0x59, 0x70, 0xf1, 0x07, 0x67, 0xe6, 0x96, 0xe6, 0x24, 0x96, 0xa4, 0x06, 0xa5, 0x16, 0x96, + 0xa6, 0x16, 0x97, 0x08, 0xa9, 0x72, 0x31, 0x95, 0x54, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x1b, + 0x89, 0xea, 0x61, 0xd8, 0xa9, 0x17, 0x52, 0x11, 0xc4, 0x54, 0x52, 0xa1, 0xd4, 0xc5, 0xc8, 0x25, + 0x80, 0xd0, 0x5a, 0x5c, 0x90, 0x9f, 0x57, 0x9c, 0x2a, 0x64, 0xc3, 0xc5, 0x91, 0x9e, 0x58, 0x1c, + 0x9f, 0x99, 0x97, 0x96, 0x0f, 0x35, 0x41, 0x11, 0x66, 0x02, 0xc8, 0x89, 0x7a, 0x60, 0x57, 0xc1, + 0x0c, 0x72, 0x4f, 0x2c, 0xf6, 0xcc, 0x4b, 0xcb, 0x0f, 0x62, 0x4f, 0x87, 0x30, 0x84, 0x2c, 0xb8, + 0xd8, 0x8a, 0x52, 0x8b, 0x4b, 0x73, 0x4a, 0x24, 0x98, 0xc0, 0x7a, 0x15, 0x70, 0xeb, 0x0d, 0x02, + 0xab, 0x0b, 0x82, 0xaa, 0x37, 0x4a, 0xe0, 0x62, 0x0f, 0x86, 0x84, 0x95, 0x50, 0x28, 0x17, 0x07, + 0xcc, 0x59, 0x42, 0x4a, 0x58, 0x9c, 0x8f, 0xe6, 0x5d, 0x29, 0x65, 0xbc, 0x6a, 0x20, 0xfe, 0x52, + 0x62, 0x70, 0xb2, 0x3f, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, + 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xd5, 0xf4, + 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x68, 0x48, 0x43, 0x28, 0xdd, 0xe2, + 0x94, 0x6c, 0xfd, 0x92, 0xca, 0x82, 0x54, 0x50, 0xd0, 0x27, 0xb1, 0x81, 0x03, 0xdc, 0x18, 0x10, + 0x00, 0x00, 0xff, 0xff, 0x16, 0x0a, 0x0d, 0x78, 0xe7, 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -180,7 +182,7 @@ func NewServiceClient(cc grpc1.ClientConn) ServiceClient { func (c *serviceClient) Simulate(ctx context.Context, in *SimulateRequest, opts ...grpc.CallOption) (*SimulateResponse, error) { out := new(SimulateResponse) - err := c.cc.Invoke(ctx, "/cosmos.tx.Service/Simulate", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.tx.v1beta1.Service/Simulate", in, out, opts...) if err != nil { return nil, err } @@ -215,7 +217,7 @@ func _Service_Simulate_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.tx.Service/Simulate", + FullMethod: "/cosmos.tx.v1beta1.Service/Simulate", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ServiceServer).Simulate(ctx, req.(*SimulateRequest)) @@ -224,7 +226,7 @@ func _Service_Simulate_Handler(srv interface{}, ctx context.Context, dec func(in } var _Service_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.tx.Service", + ServiceName: "cosmos.tx.v1beta1.Service", HandlerType: (*ServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -233,7 +235,7 @@ var _Service_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/tx/service.proto", + Metadata: "cosmos/tx/v1beta1/service.proto", } func (m *SimulateRequest) Marshal() (dAtA []byte, err error) { diff --git a/types/tx/sig_desc.pb.go b/types/tx/sig_desc.pb.go deleted file mode 100644 index 4270c8a6d5..0000000000 --- a/types/tx/sig_desc.pb.go +++ /dev/null @@ -1,37 +0,0 @@ -// Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/tx/sig_desc.proto - -package tx - -import ( - fmt "fmt" - _ "github.com/cosmos/cosmos-sdk/types/tx/signing" - proto "github.com/gogo/protobuf/proto" - math "math" -) - -// Reference imports to suppress errors if they are not otherwise used. -var _ = proto.Marshal -var _ = fmt.Errorf -var _ = math.Inf - -// This is a compile-time assertion to ensure that this generated file -// is compatible with the proto package it is being compiled against. -// A compilation error at this line likely means your copy of the -// proto package needs to be updated. -const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package - -func init() { proto.RegisterFile("cosmos/tx/sig_desc.proto", fileDescriptor_d560eb6bd3d62ef7) } - -var fileDescriptor_d560eb6bd3d62ef7 = []byte{ - // 129 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x48, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x2f, 0xa9, 0xd0, 0x2f, 0xce, 0x4c, 0x8f, 0x4f, 0x49, 0x2d, 0x4e, 0xd6, 0x2b, - 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x84, 0xc8, 0xe8, 0x95, 0x54, 0x48, 0xc9, 0xa3, 0x28, 0xca, - 0xcb, 0xcc, 0x4b, 0x87, 0xd1, 0x10, 0xb5, 0x4e, 0xf6, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, - 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, - 0x2c, 0xc7, 0x10, 0xa5, 0x9a, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x0f, - 0x35, 0x05, 0x42, 0xe9, 0x16, 0xa7, 0x64, 0xeb, 0x97, 0x54, 0x16, 0xa4, 0x82, 0x8c, 0x4d, 0x62, - 0x03, 0x9b, 0x63, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x86, 0x8a, 0xa4, 0x8a, 0x8f, 0x00, 0x00, - 0x00, -} diff --git a/types/tx/signing/signing.pb.go b/types/tx/signing/signing.pb.go index c283c40e78..e5989e11d1 100644 --- a/types/tx/signing/signing.pb.go +++ b/types/tx/signing/signing.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/tx/signing/signing.proto +// source: cosmos/tx/signing/v1beta1/signing.proto package signing @@ -59,7 +59,7 @@ func (x SignMode) String() string { } func (SignMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_8a04324e5f3729bf, []int{0} + return fileDescriptor_9a54958ff3d0b1b9, []int{0} } // SignatureDescriptors wraps multiple SignatureDescriptor's. @@ -72,7 +72,7 @@ func (m *SignatureDescriptors) Reset() { *m = SignatureDescriptors{} } func (m *SignatureDescriptors) String() string { return proto.CompactTextString(m) } func (*SignatureDescriptors) ProtoMessage() {} func (*SignatureDescriptors) Descriptor() ([]byte, []int) { - return fileDescriptor_8a04324e5f3729bf, []int{0} + return fileDescriptor_9a54958ff3d0b1b9, []int{0} } func (m *SignatureDescriptors) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -121,7 +121,7 @@ func (m *SignatureDescriptor) Reset() { *m = SignatureDescriptor{} } func (m *SignatureDescriptor) String() string { return proto.CompactTextString(m) } func (*SignatureDescriptor) ProtoMessage() {} func (*SignatureDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_8a04324e5f3729bf, []int{1} + return fileDescriptor_9a54958ff3d0b1b9, []int{1} } func (m *SignatureDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -178,7 +178,7 @@ func (m *SignatureDescriptor_Data) Reset() { *m = SignatureDescriptor_Da func (m *SignatureDescriptor_Data) String() string { return proto.CompactTextString(m) } func (*SignatureDescriptor_Data) ProtoMessage() {} func (*SignatureDescriptor_Data) Descriptor() ([]byte, []int) { - return fileDescriptor_8a04324e5f3729bf, []int{1, 0} + return fileDescriptor_9a54958ff3d0b1b9, []int{1, 0} } func (m *SignatureDescriptor_Data) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -255,7 +255,7 @@ func (*SignatureDescriptor_Data) XXX_OneofWrappers() []interface{} { // Single is the signature data for a single signer type SignatureDescriptor_Data_Single struct { // mode is the signing mode of the single signer - Mode SignMode `protobuf:"varint,1,opt,name=mode,proto3,enum=cosmos.tx.signing.SignMode" json:"mode,omitempty"` + Mode SignMode `protobuf:"varint,1,opt,name=mode,proto3,enum=cosmos.tx.signing.v1beta1.SignMode" json:"mode,omitempty"` // signature is the raw signature bytes Signature []byte `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty"` } @@ -264,7 +264,7 @@ func (m *SignatureDescriptor_Data_Single) Reset() { *m = SignatureDescri func (m *SignatureDescriptor_Data_Single) String() string { return proto.CompactTextString(m) } func (*SignatureDescriptor_Data_Single) ProtoMessage() {} func (*SignatureDescriptor_Data_Single) Descriptor() ([]byte, []int) { - return fileDescriptor_8a04324e5f3729bf, []int{1, 0, 0} + return fileDescriptor_9a54958ff3d0b1b9, []int{1, 0, 0} } func (m *SignatureDescriptor_Data_Single) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -319,7 +319,7 @@ func (m *SignatureDescriptor_Data_Multi) Reset() { *m = SignatureDescrip func (m *SignatureDescriptor_Data_Multi) String() string { return proto.CompactTextString(m) } func (*SignatureDescriptor_Data_Multi) ProtoMessage() {} func (*SignatureDescriptor_Data_Multi) Descriptor() ([]byte, []int) { - return fileDescriptor_8a04324e5f3729bf, []int{1, 0, 1} + return fileDescriptor_9a54958ff3d0b1b9, []int{1, 0, 1} } func (m *SignatureDescriptor_Data_Multi) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -363,49 +363,52 @@ func (m *SignatureDescriptor_Data_Multi) GetSignatures() []*SignatureDescriptor_ } func init() { - proto.RegisterEnum("cosmos.tx.signing.SignMode", SignMode_name, SignMode_value) - proto.RegisterType((*SignatureDescriptors)(nil), "cosmos.tx.signing.SignatureDescriptors") - proto.RegisterType((*SignatureDescriptor)(nil), "cosmos.tx.signing.SignatureDescriptor") - proto.RegisterType((*SignatureDescriptor_Data)(nil), "cosmos.tx.signing.SignatureDescriptor.Data") - proto.RegisterType((*SignatureDescriptor_Data_Single)(nil), "cosmos.tx.signing.SignatureDescriptor.Data.Single") - proto.RegisterType((*SignatureDescriptor_Data_Multi)(nil), "cosmos.tx.signing.SignatureDescriptor.Data.Multi") + proto.RegisterEnum("cosmos.tx.signing.v1beta1.SignMode", SignMode_name, SignMode_value) + proto.RegisterType((*SignatureDescriptors)(nil), "cosmos.tx.signing.v1beta1.SignatureDescriptors") + proto.RegisterType((*SignatureDescriptor)(nil), "cosmos.tx.signing.v1beta1.SignatureDescriptor") + proto.RegisterType((*SignatureDescriptor_Data)(nil), "cosmos.tx.signing.v1beta1.SignatureDescriptor.Data") + proto.RegisterType((*SignatureDescriptor_Data_Single)(nil), "cosmos.tx.signing.v1beta1.SignatureDescriptor.Data.Single") + proto.RegisterType((*SignatureDescriptor_Data_Multi)(nil), "cosmos.tx.signing.v1beta1.SignatureDescriptor.Data.Multi") } -func init() { proto.RegisterFile("cosmos/tx/signing/signing.proto", fileDescriptor_8a04324e5f3729bf) } +func init() { + proto.RegisterFile("cosmos/tx/signing/v1beta1/signing.proto", fileDescriptor_9a54958ff3d0b1b9) +} -var fileDescriptor_8a04324e5f3729bf = []byte{ - // 487 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x53, 0xcb, 0x6e, 0xd3, 0x40, - 0x14, 0xb5, 0x9b, 0x87, 0xda, 0x5b, 0x84, 0xdc, 0xa1, 0x95, 0x82, 0x8b, 0xdc, 0xaa, 0x0b, 0x54, - 0x81, 0x6a, 0x8b, 0xb0, 0x40, 0x62, 0x83, 0x92, 0xd8, 0x4d, 0x4d, 0xf3, 0xa8, 0xc6, 0xa9, 0x78, - 0x2c, 0xb0, 0x1c, 0xc7, 0x32, 0xa3, 0xc6, 0x19, 0xcb, 0x33, 0x96, 0x9a, 0x15, 0xbf, 0x50, 0xf1, - 0x0d, 0x7c, 0x0c, 0xcb, 0x2e, 0x59, 0xa2, 0xe4, 0x47, 0x50, 0xc6, 0x76, 0x13, 0xa0, 0x48, 0x64, - 0x75, 0xed, 0x33, 0xe7, 0x9c, 0x39, 0xbe, 0xbe, 0x17, 0x0e, 0x7c, 0xca, 0x22, 0xca, 0x0c, 0x7e, - 0x6d, 0x30, 0x12, 0x4e, 0xc8, 0x24, 0x2c, 0xaa, 0x1e, 0x27, 0x94, 0x53, 0xb4, 0x93, 0x11, 0x74, - 0x7e, 0xad, 0xe7, 0x07, 0xaa, 0x9a, 0x6b, 0xfc, 0x64, 0x1a, 0x73, 0x9a, 0x97, 0x8c, 0x7e, 0xf4, - 0x09, 0x76, 0x1d, 0x12, 0x4e, 0x3c, 0x9e, 0x26, 0x81, 0x19, 0x30, 0x3f, 0x21, 0x31, 0xa7, 0x09, - 0x43, 0xa7, 0x00, 0xac, 0xc0, 0x59, 0x4d, 0x3e, 0x2c, 0x1d, 0x6f, 0xd7, 0x9f, 0xea, 0x7f, 0x79, - 0xeb, 0xf7, 0x88, 0xf1, 0x8a, 0xf2, 0xe8, 0x5b, 0x19, 0x1e, 0xdd, 0xc3, 0x41, 0xaf, 0x00, 0xe2, - 0x74, 0x38, 0x26, 0xbe, 0x7b, 0x15, 0x4c, 0x6b, 0xf2, 0xa1, 0x7c, 0xbc, 0x5d, 0xaf, 0x15, 0xfe, - 0x79, 0xc2, 0x0b, 0x41, 0x38, 0x0f, 0xa6, 0x78, 0x2b, 0x2e, 0x1e, 0xd1, 0x1b, 0x28, 0x8f, 0x3c, - 0xee, 0xd5, 0x36, 0x84, 0xe4, 0xf9, 0xff, 0x45, 0xd2, 0x4d, 0x8f, 0x7b, 0x58, 0x08, 0xd5, 0xaf, - 0x25, 0x28, 0x2f, 0x5e, 0x51, 0x07, 0xaa, 0x8c, 0x4c, 0xc2, 0x71, 0x90, 0x5f, 0x5f, 0x5f, 0xc3, - 0x4b, 0x77, 0x84, 0xf2, 0x4c, 0xc2, 0xb9, 0x07, 0xb2, 0xa1, 0x12, 0xa5, 0x63, 0x4e, 0xf2, 0x60, - 0x2f, 0xd6, 0x31, 0xeb, 0x2e, 0x84, 0x67, 0x12, 0xce, 0x1c, 0xd4, 0x77, 0x50, 0xcd, 0xec, 0x91, - 0x01, 0xe5, 0x88, 0x8e, 0xb2, 0x80, 0x0f, 0xeb, 0xfb, 0xff, 0xf0, 0xec, 0xd2, 0x51, 0x80, 0x05, - 0x11, 0x3d, 0x81, 0xad, 0xbb, 0xe6, 0x8b, 0x24, 0x0f, 0xf0, 0x12, 0x50, 0x6f, 0x64, 0xa8, 0x88, - 0xbb, 0xd0, 0x6b, 0xd8, 0x1c, 0x12, 0xee, 0x25, 0x89, 0x57, 0x34, 0x5f, 0xfb, 0xa3, 0xf9, 0x2d, - 0x1a, 0xc5, 0x9e, 0xcf, 0x9b, 0x84, 0x37, 0x16, 0x2c, 0x7c, 0xc7, 0x47, 0xe7, 0xbf, 0x8d, 0xc6, - 0x86, 0x18, 0x8d, 0xb5, 0xfe, 0xc3, 0x8a, 0xbc, 0x59, 0x81, 0x12, 0x4b, 0xa3, 0x67, 0x0c, 0x36, - 0x8b, 0x2f, 0x41, 0x8f, 0x61, 0xcf, 0xb1, 0xdb, 0x3d, 0xb7, 0xdb, 0x37, 0x2d, 0xf7, 0xb2, 0xe7, - 0x5c, 0x58, 0x2d, 0xfb, 0xd4, 0xb6, 0x4c, 0x45, 0x42, 0xbb, 0xa0, 0x2c, 0x8f, 0x4c, 0x1b, 0x5b, - 0xad, 0x81, 0x22, 0xa3, 0x3d, 0xd8, 0x59, 0xa2, 0x03, 0xeb, 0xfd, 0xe0, 0xb2, 0xd1, 0x51, 0x36, - 0xd0, 0x01, 0xec, 0x2f, 0xe1, 0x8e, 0xd5, 0x6e, 0xb4, 0x3e, 0xb8, 0x8d, 0xae, 0xdd, 0xeb, 0xbb, - 0x6f, 0x9d, 0x7e, 0x4f, 0xf9, 0xd2, 0x6c, 0x7f, 0x9f, 0x69, 0xf2, 0xed, 0x4c, 0x93, 0x7f, 0xce, - 0x34, 0xf9, 0x66, 0xae, 0x49, 0xb7, 0x73, 0x4d, 0xfa, 0x31, 0xd7, 0xa4, 0x8f, 0x27, 0x21, 0xe1, - 0x9f, 0xd3, 0xa1, 0xee, 0xd3, 0xc8, 0x28, 0x96, 0x47, 0x94, 0x13, 0x36, 0xba, 0x32, 0xf8, 0x34, - 0x0e, 0x56, 0x37, 0x70, 0x58, 0x15, 0xbb, 0xf4, 0xf2, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x82, - 0x8c, 0xaa, 0x54, 0x9d, 0x03, 0x00, 0x00, +var fileDescriptor_9a54958ff3d0b1b9 = []byte{ + // 506 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0xcd, 0x6e, 0xd3, 0x40, + 0x10, 0xc7, 0xed, 0x7c, 0xa9, 0x9d, 0x22, 0x14, 0x96, 0x56, 0x4a, 0x03, 0x32, 0x55, 0x11, 0xa2, + 0x02, 0x75, 0xad, 0xa6, 0x07, 0x04, 0xb7, 0x24, 0x36, 0x69, 0xa0, 0x71, 0x8a, 0x9d, 0x4a, 0xc0, + 0xc5, 0x5a, 0x3b, 0xc6, 0xac, 0x1a, 0x67, 0x2d, 0xef, 0x1a, 0x35, 0x27, 0x5e, 0x81, 0x97, 0xe0, + 0x39, 0xb8, 0x72, 0xec, 0x91, 0x23, 0x4a, 0x24, 0x9e, 0x03, 0xc5, 0x1f, 0x49, 0x90, 0x0a, 0xa8, + 0x39, 0xd9, 0x33, 0x3b, 0xf3, 0xfb, 0xff, 0x57, 0xb3, 0x03, 0x8f, 0x5d, 0xc6, 0x03, 0xc6, 0x55, + 0x71, 0xa9, 0x72, 0xea, 0x8f, 0xe9, 0xd8, 0x57, 0x3f, 0x1d, 0x39, 0x9e, 0x20, 0x47, 0x79, 0x8c, + 0xc3, 0x88, 0x09, 0x86, 0x76, 0xd3, 0x42, 0x2c, 0x2e, 0x71, 0x7e, 0x90, 0x15, 0xd6, 0x73, 0x86, + 0x43, 0xb8, 0xa7, 0xba, 0xd1, 0x24, 0x14, 0x6c, 0x01, 0x49, 0xc3, 0x94, 0xb1, 0xff, 0x01, 0xb6, + 0x2d, 0xea, 0x8f, 0x89, 0x88, 0x23, 0x4f, 0xf3, 0xb8, 0x1b, 0xd1, 0x50, 0xb0, 0x88, 0x23, 0x03, + 0x80, 0xe7, 0x79, 0x5e, 0x93, 0xf7, 0x8a, 0x07, 0x5b, 0x0d, 0x8c, 0xff, 0x2a, 0x88, 0xaf, 0x81, + 0x98, 0x2b, 0x84, 0xfd, 0x5f, 0x25, 0xb8, 0x7b, 0x4d, 0x0d, 0xd2, 0x00, 0xc2, 0xd8, 0x19, 0x51, + 0xd7, 0xbe, 0xf0, 0x26, 0x35, 0x79, 0x4f, 0x3e, 0xd8, 0x6a, 0x3c, 0xca, 0x75, 0xe6, 0xee, 0x71, + 0x66, 0x37, 0x17, 0x3a, 0x4b, 0xaa, 0x5f, 0x7b, 0x13, 0x73, 0x33, 0xcc, 0x7f, 0x51, 0x07, 0x4a, + 0x43, 0x22, 0x48, 0xad, 0x90, 0xf4, 0x1f, 0xdf, 0xcc, 0x27, 0xd6, 0x88, 0x20, 0x66, 0x02, 0xa8, + 0x7f, 0x2b, 0x42, 0x69, 0x1e, 0xa2, 0x01, 0x54, 0x38, 0x1d, 0xfb, 0x23, 0x2f, 0xf3, 0xf4, 0x62, + 0x0d, 0x26, 0xb6, 0x12, 0xc2, 0x89, 0x64, 0x66, 0x2c, 0xf4, 0x06, 0xca, 0x41, 0x3c, 0x12, 0x34, + 0x33, 0xfa, 0x7c, 0x1d, 0x68, 0x6f, 0x0e, 0x38, 0x91, 0xcc, 0x94, 0x54, 0xb7, 0xa1, 0x92, 0xca, + 0xa0, 0x67, 0x50, 0x0a, 0xd8, 0x30, 0x35, 0x7c, 0xbb, 0xf1, 0xf0, 0x3f, 0xec, 0x1e, 0x1b, 0x7a, + 0x66, 0xd2, 0x80, 0xee, 0xc3, 0xe6, 0x62, 0x52, 0x89, 0xb3, 0x5b, 0xe6, 0x32, 0x51, 0xff, 0x2a, + 0x43, 0x39, 0xd1, 0x44, 0x1d, 0xd8, 0x70, 0xa8, 0x20, 0x51, 0x44, 0xf2, 0x49, 0x3d, 0xfd, 0xd7, + 0xa4, 0xda, 0x2c, 0x08, 0x89, 0x2b, 0x5a, 0x54, 0x34, 0xe7, 0x2d, 0xe6, 0xa2, 0x19, 0x59, 0x7f, + 0x3c, 0xae, 0x42, 0xf2, 0xb8, 0xd6, 0x1a, 0xda, 0x0a, 0xa6, 0x55, 0x86, 0x22, 0x8f, 0x83, 0x27, + 0x1c, 0x36, 0xf2, 0xeb, 0xa1, 0x5d, 0xd8, 0xb1, 0xba, 0x1d, 0xc3, 0xee, 0xf5, 0x35, 0xdd, 0x3e, + 0x37, 0xac, 0x33, 0xbd, 0xdd, 0x7d, 0xd9, 0xd5, 0xb5, 0xaa, 0x84, 0xb6, 0xa1, 0xba, 0x3c, 0xd2, + 0xba, 0xa6, 0xde, 0x1e, 0x54, 0x65, 0xb4, 0x03, 0x77, 0x96, 0xd9, 0x81, 0xfe, 0x76, 0x70, 0xde, + 0x3c, 0xad, 0x16, 0xd0, 0x03, 0xb8, 0xb7, 0x4c, 0x9f, 0xea, 0x9d, 0x66, 0xfb, 0x9d, 0xdd, 0xec, + 0x75, 0x8d, 0xbe, 0xfd, 0xca, 0xea, 0x1b, 0xd5, 0xcf, 0xad, 0xce, 0xf7, 0xa9, 0x22, 0x5f, 0x4d, + 0x15, 0xf9, 0xe7, 0x54, 0x91, 0xbf, 0xcc, 0x14, 0xe9, 0x6a, 0xa6, 0x48, 0x3f, 0x66, 0x8a, 0xf4, + 0xfe, 0xd0, 0xa7, 0xe2, 0x63, 0xec, 0x60, 0x97, 0x05, 0x6a, 0xb6, 0x93, 0xe9, 0xe7, 0x90, 0x0f, + 0x2f, 0x54, 0x31, 0x09, 0xbd, 0xd5, 0x45, 0x77, 0x2a, 0xc9, 0x56, 0x1e, 0xff, 0x0e, 0x00, 0x00, + 0xff, 0xff, 0x63, 0x6d, 0x8a, 0xc7, 0x04, 0x04, 0x00, 0x00, } func (m *SignatureDescriptors) Marshal() (dAtA []byte, err error) { diff --git a/types/tx/tx.pb.go b/types/tx/tx.pb.go index 8395b7a548..f88283f15d 100644 --- a/types/tx/tx.pb.go +++ b/types/tx/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/tx/tx.proto +// source: cosmos/tx/v1beta1/tx.proto package tx @@ -44,7 +44,7 @@ func (m *Tx) Reset() { *m = Tx{} } func (m *Tx) String() string { return proto.CompactTextString(m) } func (*Tx) ProtoMessage() {} func (*Tx) Descriptor() ([]byte, []int) { - return fileDescriptor_9b35c9d5d6b7bce8, []int{0} + return fileDescriptor_96d1575ffde80842, []int{0} } func (m *Tx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -112,7 +112,7 @@ func (m *TxRaw) Reset() { *m = TxRaw{} } func (m *TxRaw) String() string { return proto.CompactTextString(m) } func (*TxRaw) ProtoMessage() {} func (*TxRaw) Descriptor() ([]byte, []int) { - return fileDescriptor_9b35c9d5d6b7bce8, []int{1} + return fileDescriptor_96d1575ffde80842, []int{1} } func (m *TxRaw) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -183,7 +183,7 @@ func (m *SignDoc) Reset() { *m = SignDoc{} } func (m *SignDoc) String() string { return proto.CompactTextString(m) } func (*SignDoc) ProtoMessage() {} func (*SignDoc) Descriptor() ([]byte, []int) { - return fileDescriptor_9b35c9d5d6b7bce8, []int{2} + return fileDescriptor_96d1575ffde80842, []int{2} } func (m *SignDoc) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -275,7 +275,7 @@ func (m *TxBody) Reset() { *m = TxBody{} } func (m *TxBody) String() string { return proto.CompactTextString(m) } func (*TxBody) ProtoMessage() {} func (*TxBody) Descriptor() ([]byte, []int) { - return fileDescriptor_9b35c9d5d6b7bce8, []int{3} + return fileDescriptor_96d1575ffde80842, []int{3} } func (m *TxBody) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -356,7 +356,7 @@ func (m *AuthInfo) Reset() { *m = AuthInfo{} } func (m *AuthInfo) String() string { return proto.CompactTextString(m) } func (*AuthInfo) ProtoMessage() {} func (*AuthInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_9b35c9d5d6b7bce8, []int{4} + return fileDescriptor_96d1575ffde80842, []int{4} } func (m *AuthInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -414,7 +414,7 @@ func (m *SignerInfo) Reset() { *m = SignerInfo{} } func (m *SignerInfo) String() string { return proto.CompactTextString(m) } func (*SignerInfo) ProtoMessage() {} func (*SignerInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_9b35c9d5d6b7bce8, []int{5} + return fileDescriptor_96d1575ffde80842, []int{5} } func (m *SignerInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -472,7 +472,7 @@ func (m *ModeInfo) Reset() { *m = ModeInfo{} } func (m *ModeInfo) String() string { return proto.CompactTextString(m) } func (*ModeInfo) ProtoMessage() {} func (*ModeInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_9b35c9d5d6b7bce8, []int{6} + return fileDescriptor_96d1575ffde80842, []int{6} } func (m *ModeInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -550,14 +550,14 @@ func (*ModeInfo) XXX_OneofWrappers() []interface{} { // to allow for additional fields such as locale for SIGN_MODE_TEXTUAL in the future type ModeInfo_Single struct { // mode is the signing mode of the single signer - Mode signing.SignMode `protobuf:"varint,1,opt,name=mode,proto3,enum=cosmos.tx.signing.SignMode" json:"mode,omitempty"` + Mode signing.SignMode `protobuf:"varint,1,opt,name=mode,proto3,enum=cosmos.tx.signing.v1beta1.SignMode" json:"mode,omitempty"` } func (m *ModeInfo_Single) Reset() { *m = ModeInfo_Single{} } func (m *ModeInfo_Single) String() string { return proto.CompactTextString(m) } func (*ModeInfo_Single) ProtoMessage() {} func (*ModeInfo_Single) Descriptor() ([]byte, []int) { - return fileDescriptor_9b35c9d5d6b7bce8, []int{6, 0} + return fileDescriptor_96d1575ffde80842, []int{6, 0} } func (m *ModeInfo_Single) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -606,7 +606,7 @@ func (m *ModeInfo_Multi) Reset() { *m = ModeInfo_Multi{} } func (m *ModeInfo_Multi) String() string { return proto.CompactTextString(m) } func (*ModeInfo_Multi) ProtoMessage() {} func (*ModeInfo_Multi) Descriptor() ([]byte, []int) { - return fileDescriptor_9b35c9d5d6b7bce8, []int{6, 1} + return fileDescriptor_96d1575ffde80842, []int{6, 1} } func (m *ModeInfo_Multi) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -664,7 +664,7 @@ func (m *Fee) Reset() { *m = Fee{} } func (m *Fee) String() string { return proto.CompactTextString(m) } func (*Fee) ProtoMessage() {} func (*Fee) Descriptor() ([]byte, []int) { - return fileDescriptor_9b35c9d5d6b7bce8, []int{7} + return fileDescriptor_96d1575ffde80842, []int{7} } func (m *Fee) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -708,72 +708,74 @@ func (m *Fee) GetGasLimit() uint64 { } func init() { - proto.RegisterType((*Tx)(nil), "cosmos.tx.Tx") - proto.RegisterType((*TxRaw)(nil), "cosmos.tx.TxRaw") - proto.RegisterType((*SignDoc)(nil), "cosmos.tx.SignDoc") - proto.RegisterType((*TxBody)(nil), "cosmos.tx.TxBody") - proto.RegisterType((*AuthInfo)(nil), "cosmos.tx.AuthInfo") - proto.RegisterType((*SignerInfo)(nil), "cosmos.tx.SignerInfo") - proto.RegisterType((*ModeInfo)(nil), "cosmos.tx.ModeInfo") - proto.RegisterType((*ModeInfo_Single)(nil), "cosmos.tx.ModeInfo.Single") - proto.RegisterType((*ModeInfo_Multi)(nil), "cosmos.tx.ModeInfo.Multi") - proto.RegisterType((*Fee)(nil), "cosmos.tx.Fee") + proto.RegisterType((*Tx)(nil), "cosmos.tx.v1beta1.Tx") + proto.RegisterType((*TxRaw)(nil), "cosmos.tx.v1beta1.TxRaw") + proto.RegisterType((*SignDoc)(nil), "cosmos.tx.v1beta1.SignDoc") + proto.RegisterType((*TxBody)(nil), "cosmos.tx.v1beta1.TxBody") + proto.RegisterType((*AuthInfo)(nil), "cosmos.tx.v1beta1.AuthInfo") + proto.RegisterType((*SignerInfo)(nil), "cosmos.tx.v1beta1.SignerInfo") + proto.RegisterType((*ModeInfo)(nil), "cosmos.tx.v1beta1.ModeInfo") + proto.RegisterType((*ModeInfo_Single)(nil), "cosmos.tx.v1beta1.ModeInfo.Single") + proto.RegisterType((*ModeInfo_Multi)(nil), "cosmos.tx.v1beta1.ModeInfo.Multi") + proto.RegisterType((*Fee)(nil), "cosmos.tx.v1beta1.Fee") } -func init() { proto.RegisterFile("cosmos/tx/tx.proto", fileDescriptor_9b35c9d5d6b7bce8) } +func init() { proto.RegisterFile("cosmos/tx/v1beta1/tx.proto", fileDescriptor_96d1575ffde80842) } -var fileDescriptor_9b35c9d5d6b7bce8 = []byte{ - // 795 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x4f, 0x6f, 0xe3, 0x44, - 0x14, 0x8f, 0xe3, 0x24, 0x8d, 0x5f, 0xff, 0xed, 0xce, 0x2e, 0x92, 0x9b, 0x0a, 0x37, 0x8a, 0x54, - 0x14, 0x0e, 0xd8, 0xa5, 0x20, 0xf1, 0xe7, 0x82, 0x9a, 0xc2, 0xaa, 0x2b, 0x58, 0x40, 0x93, 0x8a, - 0xc3, 0x5e, 0x2c, 0xdb, 0x99, 0x38, 0xa3, 0x8d, 0x67, 0x82, 0x67, 0xac, 0xda, 0x48, 0x7c, 0x07, - 0x2e, 0x7c, 0x09, 0x0e, 0x7c, 0x03, 0xee, 0x7b, 0xdc, 0x23, 0x27, 0x40, 0xed, 0x07, 0x01, 0xcd, - 0x78, 0x9c, 0x0d, 0xab, 0xee, 0xf6, 0xb2, 0xa7, 0xbc, 0xf9, 0xbd, 0xdf, 0x7b, 0xbf, 0x97, 0xf7, - 0xc7, 0x80, 0x12, 0x2e, 0x32, 0x2e, 0x02, 0x59, 0x06, 0xb2, 0xf4, 0x57, 0x39, 0x97, 0x1c, 0x39, - 0x35, 0xe6, 0xcb, 0x72, 0xf0, 0x30, 0xe5, 0x29, 0xd7, 0x68, 0xa0, 0xac, 0x9a, 0x30, 0x18, 0x98, - 0xa0, 0x24, 0xaf, 0x56, 0x92, 0x9b, 0x1f, 0xe3, 0x7b, 0xd0, 0xf8, 0xea, 0x1c, 0x35, 0x78, 0xf4, - 0x52, 0x45, 0xd0, 0x94, 0x51, 0x96, 0x36, 0xbf, 0x86, 0x70, 0x90, 0x72, 0x9e, 0x2e, 0x49, 0xa0, - 0x5f, 0x71, 0x31, 0x0f, 0x22, 0x56, 0xd5, 0xae, 0xd1, 0xcf, 0xd0, 0xbe, 0x2c, 0xd1, 0x31, 0x74, - 0x62, 0x3e, 0xab, 0x5c, 0x6b, 0x68, 0x8d, 0xb7, 0x4f, 0xef, 0xfb, 0xeb, 0x12, 0xfd, 0xcb, 0x72, - 0xc2, 0x67, 0x15, 0xd6, 0x6e, 0x74, 0x02, 0x4e, 0x54, 0xc8, 0x45, 0x48, 0xd9, 0x9c, 0xbb, 0x6d, - 0xcd, 0x7d, 0xb0, 0xc1, 0x3d, 0x2b, 0xe4, 0xe2, 0x31, 0x9b, 0x73, 0xdc, 0x8f, 0x8c, 0x85, 0x3c, - 0x00, 0x55, 0x4a, 0x24, 0x8b, 0x9c, 0x08, 0xd7, 0x1e, 0xda, 0xe3, 0x1d, 0xbc, 0x81, 0x8c, 0x18, - 0x74, 0x2f, 0x4b, 0x1c, 0x5d, 0xa1, 0x77, 0x01, 0x94, 0x44, 0x18, 0x57, 0x92, 0x08, 0x5d, 0xc7, - 0x0e, 0x76, 0x14, 0x32, 0x51, 0x00, 0x7a, 0x0f, 0xf6, 0xd7, 0xca, 0x86, 0xd3, 0xd6, 0x9c, 0xdd, - 0x46, 0xaa, 0xe6, 0xdd, 0xa5, 0xf7, 0x87, 0x05, 0x5b, 0x53, 0x9a, 0xb2, 0x2f, 0x79, 0xf2, 0xb6, - 0x24, 0x0f, 0xa0, 0x9f, 0x2c, 0x22, 0xca, 0x42, 0x3a, 0x73, 0xed, 0xa1, 0x35, 0x76, 0xf0, 0x96, - 0x7e, 0x3f, 0x9e, 0xa1, 0x63, 0xd8, 0x8b, 0x92, 0x84, 0x17, 0x4c, 0x86, 0xac, 0xc8, 0x62, 0x92, - 0xbb, 0x9d, 0xa1, 0x35, 0xee, 0xe0, 0x5d, 0x83, 0x7e, 0xab, 0x41, 0xf4, 0x3e, 0xdc, 0x6b, 0x68, - 0x82, 0xfc, 0x58, 0x10, 0x96, 0x10, 0xb7, 0xab, 0x89, 0xfb, 0x06, 0x9f, 0x1a, 0x78, 0xf4, 0x6b, - 0x1b, 0x7a, 0xf5, 0x48, 0xd0, 0x09, 0xf4, 0x33, 0x22, 0x44, 0x94, 0xea, 0xe2, 0xed, 0xf1, 0xf6, - 0xe9, 0x43, 0xbf, 0x9e, 0xb3, 0xdf, 0xcc, 0xd9, 0x3f, 0x63, 0x15, 0x5e, 0xb3, 0x10, 0x82, 0x4e, - 0x46, 0xb2, 0x7a, 0x72, 0x0e, 0xd6, 0xb6, 0x2a, 0x51, 0xd2, 0x8c, 0xf0, 0x42, 0x86, 0x0b, 0x42, - 0xd3, 0x85, 0xd4, 0xff, 0xa1, 0x83, 0x77, 0x0d, 0x7a, 0xa1, 0x41, 0x34, 0x81, 0xfb, 0xa4, 0x94, - 0x84, 0x09, 0xca, 0x59, 0xc8, 0x57, 0x92, 0x72, 0x26, 0xdc, 0x7f, 0xb7, 0xde, 0x20, 0x7b, 0x6f, - 0xcd, 0xff, 0xae, 0xa6, 0xa3, 0xa7, 0xe0, 0x31, 0xce, 0xc2, 0x24, 0xa7, 0x92, 0x26, 0xd1, 0x32, - 0xbc, 0x25, 0xe1, 0xfe, 0x1b, 0x12, 0x1e, 0x32, 0xce, 0xce, 0x4d, 0xec, 0x57, 0xaf, 0xe4, 0x1e, - 0xcd, 0xa1, 0xdf, 0x6c, 0x1f, 0xfa, 0x14, 0x76, 0xd4, 0xc4, 0x49, 0xae, 0x47, 0xd7, 0x34, 0xe7, - 0x9d, 0x8d, 0x45, 0x9d, 0x6a, 0xb7, 0x5e, 0xd5, 0x6d, 0xb1, 0xb6, 0x05, 0x1a, 0x82, 0x3d, 0x27, - 0xc4, 0x6c, 0xf6, 0xde, 0x46, 0xc0, 0x23, 0x42, 0xb0, 0x72, 0x8d, 0xae, 0x00, 0x5e, 0x06, 0xa3, - 0x4f, 0x00, 0x56, 0x45, 0xbc, 0xa4, 0x49, 0xf8, 0x8c, 0x34, 0xc7, 0xe3, 0x36, 0x61, 0xe6, 0x6e, - 0xbf, 0xd7, 0x84, 0xaf, 0x49, 0x85, 0x9d, 0x55, 0x63, 0xaa, 0x43, 0xca, 0xf8, 0x8c, 0xbc, 0xee, - 0x90, 0x9e, 0xf0, 0x19, 0xa9, 0x0f, 0x29, 0x33, 0xd6, 0xe8, 0xf7, 0x36, 0xf4, 0x1b, 0x18, 0x7d, - 0x0c, 0x3d, 0x41, 0x59, 0xba, 0x24, 0x46, 0x73, 0x70, 0x4b, 0xac, 0x3f, 0xd5, 0x8c, 0x8b, 0x16, - 0x36, 0x5c, 0xf4, 0x21, 0x74, 0xb3, 0x62, 0x29, 0xa9, 0x11, 0x3c, 0xb8, 0x2d, 0xe8, 0x89, 0x22, - 0x5c, 0xb4, 0x70, 0xcd, 0x1c, 0x7c, 0x06, 0xbd, 0x3a, 0x0d, 0x0a, 0xa0, 0xa3, 0x6a, 0xd1, 0x82, - 0x7b, 0xa7, 0x87, 0x1b, 0xb1, 0xcd, 0xa7, 0x46, 0xf5, 0x45, 0xe5, 0xc1, 0x9a, 0x38, 0xb8, 0x82, - 0xae, 0x4e, 0x86, 0x3e, 0x87, 0x7e, 0x4c, 0x65, 0x94, 0xe7, 0x51, 0xd3, 0x22, 0xef, 0x95, 0x16, - 0x9d, 0xf3, 0x6c, 0x15, 0x25, 0x72, 0x42, 0xe5, 0x99, 0x62, 0xe1, 0x35, 0x1f, 0x9d, 0x02, 0xac, - 0xfb, 0xa4, 0xce, 0xcf, 0x7e, 0x5d, 0xa3, 0x9c, 0xa6, 0x51, 0x62, 0xd2, 0x05, 0x5b, 0x14, 0xd9, - 0xe8, 0x27, 0xb0, 0x1f, 0x11, 0x82, 0x7e, 0x80, 0x5e, 0x94, 0xa9, 0x13, 0x32, 0x6b, 0xb0, 0xd3, - 0x44, 0x9f, 0x73, 0xca, 0x26, 0x27, 0xcf, 0xff, 0x3a, 0x6a, 0xfd, 0xf6, 0xf7, 0xd1, 0x38, 0xa5, - 0x72, 0x51, 0xc4, 0x7e, 0xc2, 0xb3, 0xe0, 0x7f, 0x5f, 0xd8, 0x0f, 0xc4, 0xec, 0x59, 0x20, 0xab, - 0x15, 0xa9, 0x03, 0x04, 0x36, 0xd9, 0xd0, 0x21, 0x38, 0x69, 0x24, 0xc2, 0x25, 0xcd, 0xa8, 0xd4, - 0x0d, 0xed, 0xe0, 0x7e, 0x1a, 0x89, 0x6f, 0xd4, 0x7b, 0xf2, 0xc5, 0xf3, 0x6b, 0xcf, 0x7a, 0x71, - 0xed, 0x59, 0xff, 0x5c, 0x7b, 0xd6, 0x2f, 0x37, 0x5e, 0xeb, 0xc5, 0x8d, 0xd7, 0xfa, 0xf3, 0xc6, - 0x6b, 0x3d, 0x3d, 0xbe, 0x5b, 0x28, 0x90, 0x65, 0xdc, 0xd3, 0x9b, 0xff, 0xd1, 0x7f, 0x01, 0x00, - 0x00, 0xff, 0xff, 0x8a, 0xb6, 0xa1, 0x83, 0x40, 0x06, 0x00, 0x00, +var fileDescriptor_96d1575ffde80842 = []byte{ + // 830 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x4f, 0x6f, 0xdc, 0x44, + 0x14, 0x5f, 0xef, 0xbf, 0xec, 0xbe, 0x24, 0x4d, 0x3b, 0xaa, 0xd0, 0x66, 0xa3, 0xba, 0xc1, 0x28, + 0xb0, 0x08, 0xd5, 0x6e, 0xc3, 0x81, 0x3f, 0x42, 0x82, 0x6c, 0x4b, 0x49, 0x05, 0x05, 0x34, 0xc9, + 0xa9, 0x17, 0x6b, 0xec, 0x9d, 0x78, 0x47, 0x5d, 0xcf, 0x2c, 0x9e, 0x71, 0xb1, 0x3f, 0x01, 0x97, + 0x22, 0x71, 0xe1, 0x4b, 0xf0, 0x1d, 0xb8, 0xf7, 0xd8, 0x23, 0x07, 0x04, 0x28, 0xf9, 0x20, 0xa0, + 0x19, 0x8f, 0xdd, 0x50, 0xa2, 0xdd, 0x0b, 0xa7, 0x7d, 0xf3, 0xe6, 0xf7, 0xfb, 0xbd, 0xdf, 0xbe, + 0x37, 0xcf, 0x30, 0x8e, 0x85, 0x4c, 0x85, 0x0c, 0x54, 0x11, 0x3c, 0xbb, 0x17, 0x51, 0x45, 0xee, + 0x05, 0xaa, 0xf0, 0x97, 0x99, 0x50, 0x02, 0xdd, 0xa8, 0xee, 0x7c, 0x55, 0xf8, 0xf6, 0x6e, 0x7c, + 0x33, 0x11, 0x89, 0x30, 0xb7, 0x81, 0x8e, 0x2a, 0xe0, 0xf8, 0x1d, 0x2b, 0x12, 0x11, 0x49, 0x83, + 0x38, 0x2b, 0x97, 0x4a, 0x34, 0x6a, 0xd5, 0xd1, 0x02, 0xdd, 0xcb, 0xc0, 0x06, 0x21, 0x18, 0x7f, + 0x4d, 0x48, 0x15, 0x81, 0x64, 0x09, 0x67, 0x3c, 0x69, 0x50, 0xf6, 0x6c, 0x81, 0xbb, 0x89, 0x10, + 0xc9, 0x82, 0x06, 0xe6, 0x14, 0xe5, 0x67, 0x01, 0xe1, 0x65, 0x75, 0xe5, 0xfd, 0xe8, 0x40, 0xfb, + 0xb4, 0x40, 0x77, 0xa0, 0x1b, 0x89, 0x59, 0x39, 0x72, 0xf6, 0x9d, 0xc9, 0xe6, 0xe1, 0xae, 0xff, + 0x9f, 0xff, 0xe2, 0x9f, 0x16, 0x53, 0x31, 0x2b, 0xb1, 0x81, 0xa1, 0x0f, 0x61, 0x48, 0x72, 0x35, + 0x0f, 0x19, 0x3f, 0x13, 0xa3, 0xb6, 0xe1, 0xec, 0x5d, 0xc1, 0x39, 0xca, 0xd5, 0xfc, 0x11, 0x3f, + 0x13, 0x78, 0x40, 0x6c, 0x84, 0x5c, 0x00, 0xed, 0x8d, 0xa8, 0x3c, 0xa3, 0x72, 0xd4, 0xd9, 0xef, + 0x4c, 0xb6, 0xf0, 0xa5, 0x8c, 0xc7, 0xa1, 0x77, 0x5a, 0x60, 0xf2, 0x3d, 0xba, 0x05, 0xa0, 0x4b, + 0x85, 0x51, 0xa9, 0xa8, 0x34, 0xbe, 0xb6, 0xf0, 0x50, 0x67, 0xa6, 0x3a, 0x81, 0xde, 0x86, 0x9d, + 0xc6, 0x81, 0xc5, 0xb4, 0x0d, 0x66, 0xbb, 0x2e, 0x55, 0xe1, 0xd6, 0xd5, 0xfb, 0xd5, 0x81, 0x8d, + 0x13, 0x96, 0xf0, 0x07, 0x22, 0xfe, 0xbf, 0x4a, 0xee, 0xc2, 0x20, 0x9e, 0x13, 0xc6, 0x43, 0x36, + 0x1b, 0x75, 0xf6, 0x9d, 0xc9, 0x10, 0x6f, 0x98, 0xf3, 0xa3, 0x19, 0x3a, 0x80, 0x6b, 0x24, 0x8e, + 0x45, 0xce, 0x55, 0xc8, 0xf3, 0x34, 0xa2, 0xd9, 0xa8, 0xbb, 0xef, 0x4c, 0xba, 0x78, 0xdb, 0x66, + 0xbf, 0x36, 0x49, 0xf4, 0x2e, 0x5c, 0xaf, 0x61, 0x92, 0x7e, 0x97, 0x53, 0x1e, 0xd3, 0x51, 0xcf, + 0x00, 0x77, 0x6c, 0xfe, 0xc4, 0xa6, 0xbd, 0x9f, 0xdb, 0xd0, 0xaf, 0x46, 0x83, 0xee, 0xc2, 0x20, + 0xa5, 0x52, 0x92, 0xc4, 0x98, 0xef, 0x4c, 0x36, 0x0f, 0x6f, 0xfa, 0xd5, 0xe0, 0xfd, 0x7a, 0xf0, + 0xfe, 0x11, 0x2f, 0x71, 0x83, 0x42, 0x08, 0xba, 0x29, 0x4d, 0xab, 0x09, 0x0e, 0xb1, 0x89, 0xb5, + 0x45, 0xc5, 0x52, 0x2a, 0x72, 0x15, 0xce, 0x29, 0x4b, 0xe6, 0xca, 0xfc, 0x87, 0x2e, 0xde, 0xb6, + 0xd9, 0x63, 0x93, 0x44, 0x53, 0xb8, 0x41, 0x0b, 0x45, 0xb9, 0x64, 0x82, 0x87, 0x62, 0xa9, 0x98, + 0xe0, 0x72, 0xf4, 0xf7, 0xc6, 0x8a, 0xb2, 0xd7, 0x1b, 0xfc, 0x37, 0x15, 0x1c, 0x3d, 0x01, 0x97, + 0x0b, 0x1e, 0xc6, 0x19, 0x53, 0x2c, 0x26, 0x8b, 0xf0, 0x0a, 0xc1, 0x9d, 0x15, 0x82, 0x7b, 0x5c, + 0xf0, 0xfb, 0x96, 0xfb, 0xf9, 0x6b, 0xda, 0xde, 0x33, 0x18, 0xd4, 0xaf, 0x0f, 0x7d, 0x06, 0x5b, + 0x7a, 0xe2, 0x34, 0x33, 0xa3, 0xab, 0x9b, 0x73, 0xeb, 0x8a, 0x07, 0x7b, 0x62, 0x60, 0xe6, 0xc9, + 0x6e, 0xca, 0x26, 0x96, 0x68, 0x02, 0x9d, 0x33, 0x4a, 0xed, 0x4b, 0x7f, 0xe3, 0x0a, 0xe2, 0x43, + 0x4a, 0xb1, 0x86, 0x78, 0xcf, 0x1d, 0x80, 0x57, 0x2a, 0xe8, 0x01, 0xc0, 0x32, 0x8f, 0x16, 0x2c, + 0x0e, 0x9f, 0xd2, 0x7a, 0xbb, 0x0e, 0x6a, 0xbe, 0xde, 0x6b, 0xdf, 0x6e, 0x7c, 0x2d, 0xf4, 0xad, + 0x41, 0x7f, 0x49, 0x4b, 0x3c, 0x5c, 0xd6, 0xa1, 0x5e, 0xb7, 0x54, 0xcc, 0xe8, 0xba, 0x75, 0x7b, + 0x2c, 0x66, 0xb4, 0x5a, 0xb7, 0xd4, 0x46, 0xde, 0xef, 0x6d, 0x18, 0xd4, 0x69, 0xf4, 0x09, 0xf4, + 0x25, 0xe3, 0xc9, 0x82, 0x5a, 0x23, 0xde, 0x0a, 0x0d, 0xff, 0xc4, 0x20, 0x8f, 0x5b, 0xd8, 0x72, + 0xd0, 0x47, 0xd0, 0x4b, 0xf3, 0x85, 0x62, 0xd6, 0xc0, 0x9b, 0xab, 0xc8, 0x8f, 0x35, 0xf0, 0xb8, + 0x85, 0x2b, 0xc6, 0xf8, 0x08, 0xfa, 0x95, 0x1c, 0xfa, 0x00, 0xba, 0xda, 0x9b, 0x31, 0x70, 0xed, + 0xf0, 0xad, 0x4b, 0x1a, 0xf5, 0x17, 0xeb, 0xf2, 0x28, 0xb4, 0x1e, 0x36, 0x84, 0xf1, 0x73, 0x07, + 0x7a, 0x46, 0x15, 0x7d, 0x01, 0x83, 0x88, 0x29, 0x92, 0x65, 0xa4, 0x6e, 0xe8, 0x7b, 0xab, 0x1a, + 0x7a, 0x5f, 0xa4, 0x4b, 0x12, 0xab, 0x29, 0x53, 0x47, 0x9a, 0x82, 0x1b, 0x32, 0xfa, 0x18, 0xa0, + 0xe9, 0xaa, 0x5e, 0xe5, 0xce, 0xba, 0xb6, 0x0e, 0xeb, 0xb6, 0xca, 0x69, 0x0f, 0x3a, 0x32, 0x4f, + 0xbd, 0x1f, 0x1c, 0xe8, 0x3c, 0xa4, 0x14, 0xc5, 0xd0, 0x27, 0xa9, 0xde, 0x4b, 0xfb, 0xb6, 0x76, + 0xff, 0xe5, 0xe8, 0x95, 0x15, 0xc6, 0xa7, 0x77, 0x5f, 0xfc, 0x71, 0xbb, 0xf5, 0xcb, 0x9f, 0xb7, + 0x27, 0x09, 0x53, 0xf3, 0x3c, 0xf2, 0x63, 0x91, 0x06, 0xf6, 0x3b, 0x5e, 0xfd, 0xdc, 0x91, 0xb3, + 0xa7, 0x81, 0x2a, 0x97, 0x54, 0x1a, 0x82, 0xc4, 0x56, 0x1a, 0xed, 0xc1, 0x30, 0x21, 0x32, 0x5c, + 0xb0, 0x94, 0x29, 0x33, 0x84, 0x2e, 0x1e, 0x24, 0x44, 0x7e, 0xa5, 0xcf, 0xd3, 0x4f, 0x5f, 0x9c, + 0xbb, 0xce, 0xcb, 0x73, 0xd7, 0xf9, 0xeb, 0xdc, 0x75, 0x7e, 0xba, 0x70, 0x5b, 0x2f, 0x2f, 0xdc, + 0xd6, 0x6f, 0x17, 0x6e, 0xeb, 0xc9, 0xc1, 0xfa, 0x42, 0x81, 0x2a, 0xa2, 0xbe, 0xd9, 0xad, 0xf7, + 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0x43, 0xc7, 0xe9, 0x47, 0xe3, 0x06, 0x00, 0x00, } func (m *Tx) Marshal() (dAtA []byte, err error) { diff --git a/x/auth/types/auth.pb.go b/x/auth/types/auth.pb.go index cc56b31a29..f216413a43 100644 --- a/x/auth/types/auth.pb.go +++ b/x/auth/types/auth.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/auth/auth.proto +// source: cosmos/auth/v1beta1/auth.proto package types @@ -38,7 +38,7 @@ type BaseAccount struct { func (m *BaseAccount) Reset() { *m = BaseAccount{} } func (*BaseAccount) ProtoMessage() {} func (*BaseAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_ec2401f40a84da7e, []int{0} + return fileDescriptor_7e1f7e915d020d2d, []int{0} } func (m *BaseAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -77,7 +77,7 @@ type ModuleAccount struct { func (m *ModuleAccount) Reset() { *m = ModuleAccount{} } func (*ModuleAccount) ProtoMessage() {} func (*ModuleAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_ec2401f40a84da7e, []int{1} + return fileDescriptor_7e1f7e915d020d2d, []int{1} } func (m *ModuleAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -118,7 +118,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_ec2401f40a84da7e, []int{2} + return fileDescriptor_7e1f7e915d020d2d, []int{2} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -183,56 +183,57 @@ func (m *Params) GetSigVerifyCostSecp256k1() uint64 { } func init() { - proto.RegisterType((*BaseAccount)(nil), "cosmos.auth.BaseAccount") - proto.RegisterType((*ModuleAccount)(nil), "cosmos.auth.ModuleAccount") - proto.RegisterType((*Params)(nil), "cosmos.auth.Params") + proto.RegisterType((*BaseAccount)(nil), "cosmos.auth.v1beta1.BaseAccount") + proto.RegisterType((*ModuleAccount)(nil), "cosmos.auth.v1beta1.ModuleAccount") + proto.RegisterType((*Params)(nil), "cosmos.auth.v1beta1.Params") } -func init() { proto.RegisterFile("cosmos/auth/auth.proto", fileDescriptor_ec2401f40a84da7e) } +func init() { proto.RegisterFile("cosmos/auth/v1beta1/auth.proto", fileDescriptor_7e1f7e915d020d2d) } -var fileDescriptor_ec2401f40a84da7e = []byte{ - // 650 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x54, 0x4f, 0x4f, 0xdb, 0x4e, - 0x10, 0x8d, 0x49, 0x7e, 0xfc, 0xd9, 0x00, 0x12, 0x26, 0x80, 0xc9, 0xaf, 0xf2, 0x46, 0x3e, 0x51, - 0xa9, 0x09, 0x82, 0x8a, 0x4a, 0xe4, 0x50, 0x15, 0xd3, 0x56, 0x42, 0x14, 0x84, 0x16, 0xa9, 0xaa, - 0x7a, 0xb1, 0xd6, 0xce, 0x36, 0x58, 0x64, 0xb3, 0xc6, 0xbb, 0xae, 0x62, 0x3e, 0x41, 0x8f, 0x3d, - 0x55, 0x3d, 0xf2, 0x21, 0x7a, 0xeb, 0x17, 0xe8, 0x11, 0xf5, 0xd4, 0x93, 0x5b, 0x85, 0x4b, 0xd5, - 0xa3, 0x8f, 0x3d, 0x55, 0xde, 0x35, 0xc1, 0x41, 0xb4, 0x97, 0x64, 0xe7, 0xcd, 0xbc, 0x37, 0xe3, - 0x37, 0xda, 0x05, 0xcb, 0x1e, 0xe3, 0x94, 0xf1, 0x75, 0x1c, 0x89, 0x13, 0xf9, 0xd3, 0x0a, 0x42, - 0x26, 0x98, 0x5e, 0x55, 0x78, 0x2b, 0x83, 0xea, 0xab, 0x2a, 0x70, 0x64, 0x6a, 0x3d, 0xcf, 0xc8, - 0xa0, 0x5e, 0xeb, 0xb2, 0x2e, 0x53, 0x78, 0x76, 0x52, 0xa8, 0xf5, 0x61, 0x02, 0x54, 0x6d, 0xcc, - 0xc9, 0x8e, 0xe7, 0xb1, 0xa8, 0x2f, 0xf4, 0x7d, 0x30, 0x85, 0x3b, 0x9d, 0x90, 0x70, 0x6e, 0x68, - 0x0d, 0x6d, 0x6d, 0xd6, 0xde, 0xf8, 0x9d, 0xc0, 0x66, 0xd7, 0x17, 0x27, 0x91, 0xdb, 0xf2, 0x18, - 0xcd, 0x35, 0xf3, 0xbf, 0x26, 0xef, 0x9c, 0xae, 0x8b, 0x38, 0x20, 0xbc, 0xb5, 0xe3, 0x79, 0x3b, - 0x8a, 0x88, 0xae, 0x15, 0xf4, 0xe7, 0x60, 0x2a, 0x88, 0x5c, 0xe7, 0x94, 0xc4, 0xc6, 0x84, 0x14, - 0x6b, 0xfe, 0x4a, 0x60, 0x2d, 0x88, 0xdc, 0x9e, 0xef, 0x65, 0xe8, 0x03, 0x46, 0x7d, 0x41, 0x68, - 0x20, 0xe2, 0x34, 0x81, 0x0b, 0x31, 0xa6, 0xbd, 0xb6, 0x75, 0x93, 0xb5, 0xd0, 0x64, 0x10, 0xb9, - 0xfb, 0x24, 0xd6, 0x9f, 0x80, 0x79, 0xac, 0xe6, 0x73, 0xfa, 0x11, 0x75, 0x49, 0x68, 0x94, 0x1b, - 0xda, 0x5a, 0xc5, 0x5e, 0x4d, 0x13, 0xb8, 0xa4, 0x68, 0xe3, 0x79, 0x0b, 0xcd, 0xe5, 0xc0, 0xa1, - 0x8c, 0xf5, 0x3a, 0x98, 0xe6, 0xe4, 0x2c, 0x22, 0x7d, 0x8f, 0x18, 0x95, 0x8c, 0x8b, 0x46, 0x71, - 0xbb, 0xf6, 0xee, 0x02, 0x96, 0x3e, 0x5e, 0xc0, 0xd2, 0xd7, 0x4f, 0xcd, 0xe9, 0xdc, 0x87, 0x3d, - 0xeb, 0xb3, 0x06, 0xe6, 0x0e, 0x58, 0x27, 0xea, 0x8d, 0xac, 0x79, 0x05, 0x66, 0x5d, 0xcc, 0x89, - 0x93, 0x2b, 0x4b, 0x7f, 0xaa, 0x9b, 0x46, 0xab, 0xe0, 0x7f, 0xab, 0x60, 0xa5, 0xfd, 0xff, 0x65, - 0x02, 0xb5, 0x34, 0x81, 0x8b, 0x6a, 0xc2, 0x22, 0xd7, 0x42, 0x55, 0xb7, 0x60, 0xba, 0x0e, 0x2a, - 0x7d, 0x4c, 0x89, 0x34, 0x69, 0x06, 0xc9, 0xb3, 0xde, 0x00, 0xd5, 0x80, 0x84, 0xd4, 0xe7, 0xdc, - 0x67, 0x7d, 0x6e, 0x94, 0x1b, 0xe5, 0xb5, 0x19, 0x54, 0x84, 0xda, 0xf5, 0xc2, 0xdc, 0xf3, 0x63, - 0xa3, 0xee, 0x59, 0xdf, 0xcb, 0x60, 0xf2, 0x08, 0x87, 0x98, 0x72, 0xfd, 0x10, 0x2c, 0x52, 0x3c, - 0x70, 0x28, 0xa1, 0xcc, 0xf1, 0x4e, 0x70, 0x88, 0x3d, 0x41, 0x42, 0xb5, 0xdd, 0x8a, 0x6d, 0xa6, - 0x09, 0xac, 0xab, 0xf9, 0xee, 0x28, 0xb2, 0xd0, 0x02, 0xc5, 0x83, 0x03, 0x42, 0xd9, 0xee, 0x08, - 0xd3, 0xb7, 0xc1, 0xac, 0x18, 0x38, 0xdc, 0xef, 0x3a, 0x3d, 0x9f, 0xfa, 0x42, 0x0e, 0x5d, 0xb1, - 0x57, 0x6e, 0x3e, 0xb4, 0x98, 0xb5, 0x10, 0x10, 0x83, 0x63, 0xbf, 0xfb, 0x22, 0x0b, 0x74, 0x04, - 0x96, 0x64, 0xf2, 0x9c, 0x38, 0x1e, 0xe3, 0xc2, 0x09, 0x48, 0xe8, 0xb8, 0xb1, 0x20, 0xf9, 0x3a, - 0x1b, 0x69, 0x02, 0xef, 0x15, 0x34, 0x6e, 0x97, 0x59, 0x68, 0x21, 0x13, 0x3b, 0x27, 0xbb, 0x8c, - 0x8b, 0x23, 0x12, 0xda, 0xb1, 0x20, 0xfa, 0x19, 0x58, 0xc9, 0xba, 0xbd, 0x25, 0xa1, 0xff, 0x26, - 0x56, 0xf5, 0xa4, 0xb3, 0xb9, 0xb5, 0xb5, 0xb1, 0xad, 0x16, 0x6d, 0xb7, 0x87, 0x09, 0xac, 0x1d, - 0xfb, 0xdd, 0x97, 0xb2, 0x22, 0xa3, 0x3e, 0x7b, 0x2a, 0xf3, 0x69, 0x02, 0x4d, 0xd5, 0xed, 0x2f, - 0x02, 0x16, 0xaa, 0xf1, 0x31, 0x9e, 0x82, 0xf5, 0x18, 0xac, 0xde, 0x66, 0x70, 0xe2, 0x05, 0x9b, - 0x5b, 0x8f, 0x4e, 0x37, 0x8c, 0xff, 0x64, 0xd3, 0xc7, 0xc3, 0x04, 0x2e, 0x8f, 0x35, 0x3d, 0xbe, - 0xae, 0x48, 0x13, 0xd8, 0xb8, 0xbb, 0xed, 0x48, 0xc4, 0x42, 0xcb, 0xfc, 0x4e, 0x6e, 0x7b, 0x3a, - 0xdb, 0xf7, 0xcf, 0x0b, 0xa8, 0xd9, 0xbb, 0x5f, 0x86, 0xa6, 0x76, 0x39, 0x34, 0xb5, 0x1f, 0x43, - 0x53, 0x7b, 0x7f, 0x65, 0x96, 0x2e, 0xaf, 0xcc, 0xd2, 0xb7, 0x2b, 0xb3, 0xf4, 0xfa, 0xfe, 0x3f, - 0x6f, 0xeb, 0x40, 0x3d, 0x20, 0xf2, 0xd2, 0xba, 0x93, 0xf2, 0x11, 0x78, 0xf8, 0x27, 0x00, 0x00, - 0xff, 0xff, 0x10, 0x68, 0x06, 0x78, 0x5c, 0x04, 0x00, 0x00, +var fileDescriptor_7e1f7e915d020d2d = []byte{ + // 657 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x54, 0xbf, 0x6f, 0xd3, 0x40, + 0x14, 0x8e, 0x9b, 0xd0, 0x1f, 0x97, 0xb6, 0x52, 0xdd, 0xb4, 0x4d, 0x03, 0xf2, 0x59, 0x9e, 0x8a, + 0x44, 0x12, 0xa5, 0xa8, 0x48, 0xcd, 0x80, 0xa8, 0x0b, 0x48, 0x55, 0x69, 0x55, 0xb9, 0x12, 0x03, + 0x8b, 0x39, 0x3b, 0x47, 0x6a, 0x35, 0x97, 0x73, 0x7d, 0xe7, 0x2a, 0xee, 0x5f, 0xc0, 0xc8, 0x84, + 0x18, 0xfb, 0x47, 0xf0, 0x1f, 0xb0, 0x30, 0x56, 0x4c, 0x4c, 0x06, 0xa5, 0x0b, 0x62, 0xf4, 0xc8, + 0x84, 0x7c, 0xe7, 0xa6, 0x4e, 0x15, 0x98, 0x7c, 0xef, 0x7b, 0xdf, 0xf7, 0xbd, 0xe7, 0xf7, 0x74, + 0x07, 0x34, 0x97, 0x32, 0x42, 0x59, 0x13, 0x85, 0xfc, 0xa4, 0x79, 0xde, 0x72, 0x30, 0x47, 0x2d, + 0x11, 0x34, 0xfc, 0x80, 0x72, 0xaa, 0x2e, 0xcb, 0x7c, 0x43, 0x40, 0x59, 0xbe, 0xb6, 0x2e, 0x41, + 0x5b, 0x50, 0x9a, 0x19, 0x43, 0x04, 0xb5, 0x4a, 0x97, 0x76, 0xa9, 0xc4, 0xd3, 0x93, 0x44, 0x8d, + 0x8f, 0x53, 0xa0, 0x6c, 0x22, 0x86, 0x77, 0x5c, 0x97, 0x86, 0x7d, 0xae, 0xee, 0x83, 0x19, 0xd4, + 0xe9, 0x04, 0x98, 0xb1, 0xaa, 0xa2, 0x2b, 0x1b, 0xf3, 0x66, 0xeb, 0x4f, 0x0c, 0xeb, 0x5d, 0x8f, + 0x9f, 0x84, 0x4e, 0xc3, 0xa5, 0x24, 0xf3, 0xcc, 0x3e, 0x75, 0xd6, 0x39, 0x6d, 0xf2, 0xc8, 0xc7, + 0xac, 0xb1, 0xe3, 0xba, 0x3b, 0x52, 0x68, 0xdd, 0x38, 0xa8, 0x2f, 0xc1, 0x8c, 0x1f, 0x3a, 0xf6, + 0x29, 0x8e, 0xaa, 0x53, 0xc2, 0xac, 0xfe, 0x3b, 0x86, 0x15, 0x3f, 0x74, 0x7a, 0x9e, 0x9b, 0xa2, + 0x8f, 0x28, 0xf1, 0x38, 0x26, 0x3e, 0x8f, 0x92, 0x18, 0x2e, 0x45, 0x88, 0xf4, 0xda, 0xc6, 0x6d, + 0xd6, 0xb0, 0xa6, 0xfd, 0xd0, 0xd9, 0xc7, 0x91, 0xfa, 0x0c, 0x2c, 0x22, 0xd9, 0x9f, 0xdd, 0x0f, + 0x89, 0x83, 0x83, 0x6a, 0x51, 0x57, 0x36, 0x4a, 0xe6, 0x7a, 0x12, 0xc3, 0x15, 0x29, 0x1b, 0xcf, + 0x1b, 0xd6, 0x42, 0x06, 0x1c, 0x8a, 0x58, 0xad, 0x81, 0x59, 0x86, 0xcf, 0x42, 0xdc, 0x77, 0x71, + 0xb5, 0x94, 0x6a, 0xad, 0x51, 0xdc, 0xae, 0xbc, 0xbf, 0x84, 0x85, 0x4f, 0x97, 0xb0, 0xf0, 0xed, + 0x73, 0x7d, 0x36, 0x9b, 0xc3, 0x9e, 0xf1, 0x45, 0x01, 0x0b, 0x07, 0xb4, 0x13, 0xf6, 0x46, 0xa3, + 0x79, 0x0b, 0xe6, 0x1d, 0xc4, 0xb0, 0x9d, 0x39, 0x8b, 0xf9, 0x94, 0x37, 0xf5, 0xc6, 0x84, 0x3d, + 0x34, 0x72, 0x23, 0x35, 0xef, 0x5f, 0xc5, 0x50, 0x49, 0x62, 0xb8, 0x2c, 0x3b, 0xcd, 0x7b, 0x18, + 0x56, 0xd9, 0xc9, 0x0d, 0x5f, 0x05, 0xa5, 0x3e, 0x22, 0x58, 0x0c, 0x6b, 0xce, 0x12, 0x67, 0x55, + 0x07, 0x65, 0x1f, 0x07, 0xc4, 0x63, 0xcc, 0xa3, 0x7d, 0x56, 0x2d, 0xea, 0xc5, 0x8d, 0x39, 0x2b, + 0x0f, 0xb5, 0x6b, 0xb9, 0xfe, 0x17, 0xc7, 0x5a, 0xde, 0x33, 0x7e, 0x14, 0xc1, 0xf4, 0x11, 0x0a, + 0x10, 0x61, 0xea, 0x21, 0x58, 0x26, 0x68, 0x60, 0x13, 0x4c, 0xa8, 0xed, 0x9e, 0xa0, 0x00, 0xb9, + 0x1c, 0x07, 0x72, 0xcb, 0x25, 0x53, 0x4b, 0x62, 0x58, 0x93, 0xfd, 0x4d, 0x20, 0x19, 0xd6, 0x12, + 0x41, 0x83, 0x03, 0x4c, 0xe8, 0xee, 0x08, 0x53, 0xb7, 0xc1, 0x3c, 0x1f, 0xd8, 0xcc, 0xeb, 0xda, + 0x3d, 0x8f, 0x78, 0x5c, 0x34, 0x5d, 0x32, 0xd7, 0x6e, 0x7f, 0x34, 0x9f, 0x35, 0x2c, 0xc0, 0x07, + 0xc7, 0x5e, 0xf7, 0x55, 0x1a, 0xa8, 0x16, 0x58, 0x11, 0xc9, 0x0b, 0x6c, 0xbb, 0x94, 0x71, 0xdb, + 0xc7, 0x81, 0xed, 0x44, 0x1c, 0x67, 0x6b, 0xd5, 0x93, 0x18, 0x3e, 0xc8, 0x79, 0xdc, 0xa5, 0x19, + 0xd6, 0x52, 0x6a, 0x76, 0x81, 0x77, 0x29, 0xe3, 0x47, 0x38, 0x30, 0x23, 0x8e, 0xd5, 0x33, 0xb0, + 0x96, 0x56, 0x3b, 0xc7, 0x81, 0xf7, 0x2e, 0x92, 0x7c, 0xdc, 0xd9, 0xdc, 0xda, 0x6a, 0x6d, 0xcb, + 0x85, 0x9b, 0xed, 0x61, 0x0c, 0x2b, 0xc7, 0x5e, 0xf7, 0xb5, 0x60, 0xa4, 0xd2, 0x17, 0xcf, 0x45, + 0x3e, 0x89, 0xa1, 0x26, 0xab, 0xfd, 0xc3, 0xc0, 0xb0, 0x2a, 0x6c, 0x4c, 0x27, 0x61, 0x35, 0x02, + 0xeb, 0x77, 0x15, 0x0c, 0xbb, 0xfe, 0xe6, 0xd6, 0x93, 0xd3, 0x56, 0xf5, 0x9e, 0x28, 0xfa, 0x74, + 0x18, 0xc3, 0xd5, 0xb1, 0xa2, 0xc7, 0x37, 0x8c, 0x24, 0x86, 0xfa, 0xe4, 0xb2, 0x23, 0x13, 0xc3, + 0x5a, 0x65, 0x13, 0xb5, 0xed, 0xd9, 0x74, 0xdf, 0xbf, 0x2e, 0xa1, 0x62, 0xee, 0x7e, 0x1d, 0x6a, + 0xca, 0xd5, 0x50, 0x53, 0x7e, 0x0e, 0x35, 0xe5, 0xc3, 0xb5, 0x56, 0xb8, 0xba, 0xd6, 0x0a, 0xdf, + 0xaf, 0xb5, 0xc2, 0x9b, 0x87, 0xff, 0xbd, 0xb5, 0x03, 0xf9, 0xb0, 0x88, 0xcb, 0xeb, 0x4c, 0x8b, + 0xc7, 0xe0, 0xf1, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x11, 0x68, 0xfa, 0x1e, 0x74, 0x04, 0x00, + 0x00, } func (this *Params) Equal(that interface{}) bool { diff --git a/x/auth/types/codec.go b/x/auth/types/codec.go index d7374da6ab..7b51fd94a2 100644 --- a/x/auth/types/codec.go +++ b/x/auth/types/codec.go @@ -21,7 +21,7 @@ func RegisterCodec(cdc *codec.LegacyAmino) { // and creates a registry of it's concrete implementations func RegisterInterfaces(registry types.InterfaceRegistry) { registry.RegisterInterface( - "cosmos_sdk.auth.v1.AccountI", + "cosmos.auth.v1beta1.AccountI", (*AccountI)(nil), &BaseAccount{}, &ModuleAccount{}, diff --git a/x/auth/types/genesis.pb.go b/x/auth/types/genesis.pb.go index 02ffbc2432..8b4686e2e9 100644 --- a/x/auth/types/genesis.pb.go +++ b/x/auth/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/auth/genesis.proto +// source: cosmos/auth/v1beta1/genesis.proto package types @@ -34,7 +34,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_eb73f4d82d582a1f, []int{0} + return fileDescriptor_d897ccbce9822332, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,29 +78,30 @@ func (m *GenesisState) GetAccounts() []*types.Any { } func init() { - proto.RegisterType((*GenesisState)(nil), "cosmos.auth.GenesisState") + proto.RegisterType((*GenesisState)(nil), "cosmos.auth.v1beta1.GenesisState") } -func init() { proto.RegisterFile("cosmos/auth/genesis.proto", fileDescriptor_eb73f4d82d582a1f) } +func init() { proto.RegisterFile("cosmos/auth/v1beta1/genesis.proto", fileDescriptor_d897ccbce9822332) } -var fileDescriptor_eb73f4d82d582a1f = []byte{ - // 246 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4c, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x2c, 0x2d, 0xc9, 0xd0, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, - 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x86, 0x48, 0xe9, 0x81, 0xa4, 0xa4, 0x24, 0xd3, 0xf3, - 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0xc1, 0x52, 0x49, 0xa5, 0x69, 0xfa, 0x89, 0x79, 0x95, 0x10, 0x75, - 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0xa6, 0x3e, 0x88, 0x05, 0x15, 0x15, 0x43, 0x36, 0x18, - 0x44, 0x40, 0xc4, 0x95, 0x6a, 0xb9, 0x78, 0xdc, 0x21, 0xd6, 0x04, 0x97, 0x24, 0x96, 0xa4, 0x0a, - 0x59, 0x73, 0xb1, 0x15, 0x24, 0x16, 0x25, 0xe6, 0x16, 0x4b, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x1b, - 0x09, 0xeb, 0x21, 0x59, 0xab, 0x17, 0x00, 0x96, 0x72, 0xe2, 0x3b, 0x71, 0x4f, 0x9e, 0xe1, 0xd7, - 0x3d, 0x79, 0x36, 0x08, 0x3f, 0x08, 0xaa, 0x45, 0xc8, 0x80, 0x8b, 0x23, 0x31, 0x39, 0x39, 0xbf, - 0x34, 0xaf, 0xa4, 0x58, 0x82, 0x49, 0x81, 0x59, 0x83, 0xdb, 0x48, 0x44, 0x0f, 0xe2, 0x50, 0x3d, - 0x98, 0x43, 0xf5, 0x1c, 0xf3, 0x2a, 0x83, 0xe0, 0xaa, 0x9c, 0x9c, 0x4f, 0x3c, 0x92, 0x63, 0xbc, - 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, - 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0x4a, 0x33, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, - 0x57, 0x1f, 0xea, 0x76, 0x08, 0xa5, 0x5b, 0x9c, 0x92, 0xad, 0x5f, 0x01, 0xf1, 0x48, 0x49, 0x65, - 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x70, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x47, 0xda, - 0x47, 0x7b, 0x3d, 0x01, 0x00, 0x00, +var fileDescriptor_d897ccbce9822332 = []byte{ + // 259 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4c, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x4f, 0x2c, 0x2d, 0xc9, 0xd0, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, + 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x86, + 0x28, 0xd1, 0x03, 0x29, 0xd1, 0x83, 0x2a, 0x91, 0x92, 0x4c, 0xcf, 0xcf, 0x4f, 0xcf, 0x49, 0xd5, + 0x07, 0x2b, 0x49, 0x2a, 0x4d, 0xd3, 0x4f, 0xcc, 0xab, 0x84, 0xa8, 0x97, 0x12, 0x49, 0xcf, 0x4f, + 0xcf, 0x07, 0x33, 0xf5, 0x41, 0x2c, 0xa8, 0xa8, 0x1c, 0x36, 0x8b, 0xc0, 0x46, 0x82, 0xe5, 0x95, + 0x5a, 0x19, 0xb9, 0x78, 0xdc, 0x21, 0xf6, 0x06, 0x97, 0x24, 0x96, 0xa4, 0x0a, 0x39, 0x73, 0xb1, + 0x15, 0x24, 0x16, 0x25, 0xe6, 0x16, 0x4b, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x1b, 0x49, 0xeb, 0x61, + 0x71, 0x87, 0x5e, 0x00, 0x58, 0x89, 0x13, 0xdf, 0x89, 0x7b, 0xf2, 0x0c, 0xbf, 0xee, 0xc9, 0xb3, + 0x41, 0xf8, 0x41, 0x50, 0xad, 0x42, 0x06, 0x5c, 0x1c, 0x89, 0xc9, 0xc9, 0xf9, 0xa5, 0x79, 0x25, + 0xc5, 0x12, 0x4c, 0x0a, 0xcc, 0x1a, 0xdc, 0x46, 0x22, 0x7a, 0x10, 0x97, 0xeb, 0xc1, 0x5c, 0xae, + 0xe7, 0x98, 0x57, 0x19, 0x04, 0x57, 0xe5, 0xe4, 0x7c, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, + 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, + 0x72, 0x0c, 0x51, 0x9a, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0x50, + 0xcf, 0x40, 0x28, 0xdd, 0xe2, 0x94, 0x6c, 0xfd, 0x0a, 0x88, 0xcf, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, + 0x93, 0xd8, 0xc0, 0x86, 0x1b, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x3b, 0x4f, 0x3d, 0x94, 0x5e, + 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/auth/types/query.pb.go b/x/auth/types/query.pb.go index e60b3ff2b1..1f220c65da 100644 --- a/x/auth/types/query.pb.go +++ b/x/auth/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/auth/query.proto +// source: cosmos/auth/v1beta1/query.proto package types @@ -41,7 +41,7 @@ func (m *QueryAccountRequest) Reset() { *m = QueryAccountRequest{} } func (m *QueryAccountRequest) String() string { return proto.CompactTextString(m) } func (*QueryAccountRequest) ProtoMessage() {} func (*QueryAccountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_e1bc52f4cb65abdb, []int{0} + return fileDescriptor_c451370b3929a27c, []int{0} } func (m *QueryAccountRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -87,7 +87,7 @@ func (m *QueryAccountResponse) Reset() { *m = QueryAccountResponse{} } func (m *QueryAccountResponse) String() string { return proto.CompactTextString(m) } func (*QueryAccountResponse) ProtoMessage() {} func (*QueryAccountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_e1bc52f4cb65abdb, []int{1} + return fileDescriptor_c451370b3929a27c, []int{1} } func (m *QueryAccountResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -131,7 +131,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_e1bc52f4cb65abdb, []int{2} + return fileDescriptor_c451370b3929a27c, []int{2} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -170,7 +170,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_e1bc52f4cb65abdb, []int{3} + return fileDescriptor_c451370b3929a27c, []int{3} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -207,39 +207,40 @@ func (m *QueryParamsResponse) GetParams() Params { } func init() { - proto.RegisterType((*QueryAccountRequest)(nil), "cosmos.auth.QueryAccountRequest") - proto.RegisterType((*QueryAccountResponse)(nil), "cosmos.auth.QueryAccountResponse") - proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.auth.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.auth.QueryParamsResponse") + proto.RegisterType((*QueryAccountRequest)(nil), "cosmos.auth.v1beta1.QueryAccountRequest") + proto.RegisterType((*QueryAccountResponse)(nil), "cosmos.auth.v1beta1.QueryAccountResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.auth.v1beta1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.auth.v1beta1.QueryParamsResponse") } -func init() { proto.RegisterFile("cosmos/auth/query.proto", fileDescriptor_e1bc52f4cb65abdb) } +func init() { proto.RegisterFile("cosmos/auth/v1beta1/query.proto", fileDescriptor_c451370b3929a27c) } -var fileDescriptor_e1bc52f4cb65abdb = []byte{ - // 364 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x52, 0xbb, 0x4e, 0xf3, 0x30, - 0x18, 0x4d, 0xa4, 0xff, 0x6f, 0x91, 0xdb, 0xc9, 0x8d, 0xb8, 0x64, 0x48, 0x4b, 0x26, 0x18, 0xea, - 0xa8, 0x65, 0x65, 0x49, 0x58, 0x40, 0x08, 0xa9, 0x44, 0x4c, 0x2c, 0x28, 0x71, 0x4d, 0x8a, 0xa0, - 0x71, 0x1a, 0xdb, 0x12, 0x7d, 0x0b, 0x1e, 0x83, 0x07, 0xe0, 0x21, 0x2a, 0xa6, 0x8e, 0x4c, 0x15, - 0x6a, 0xdf, 0x82, 0x09, 0xc5, 0x17, 0xa9, 0x15, 0xd0, 0x25, 0x89, 0x8f, 0xcf, 0xc5, 0xe7, 0x73, - 0xc0, 0x1e, 0xa6, 0x6c, 0x4c, 0x59, 0x90, 0x08, 0x3e, 0x0a, 0x26, 0x82, 0x94, 0x53, 0x54, 0x94, - 0x94, 0x53, 0xd8, 0x50, 0x1b, 0xa8, 0xda, 0x70, 0x9d, 0x8c, 0x66, 0x54, 0xe2, 0x41, 0xf5, 0xa5, - 0x28, 0xee, 0x41, 0x46, 0x69, 0xf6, 0x44, 0x02, 0xb9, 0x4a, 0xc5, 0x7d, 0x90, 0xe4, 0x5a, 0xed, - 0xee, 0xae, 0xdb, 0x56, 0x0f, 0x23, 0x51, 0xf8, 0x9d, 0xf2, 0xd2, 0x11, 0x72, 0xe1, 0xa7, 0xa0, - 0x75, 0x5d, 0xe5, 0x87, 0x18, 0x53, 0x91, 0xf3, 0x98, 0x4c, 0x04, 0x61, 0x1c, 0x5e, 0x82, 0x7a, - 0x32, 0x1c, 0x96, 0x84, 0xb1, 0x7d, 0xbb, 0x63, 0x1f, 0x35, 0xa3, 0xde, 0xd7, 0xa2, 0xdd, 0xcd, - 0x1e, 0xf8, 0x48, 0xa4, 0x08, 0xd3, 0xb1, 0x36, 0xd1, 0xaf, 0x2e, 0x1b, 0x3e, 0x06, 0x7c, 0x5a, - 0x10, 0x86, 0x42, 0x8c, 0x43, 0x25, 0x8c, 0x8d, 0x83, 0x7f, 0x03, 0x9c, 0xcd, 0x0c, 0x56, 0xd0, - 0x9c, 0x11, 0x78, 0x0a, 0xea, 0x89, 0x82, 0x64, 0x48, 0xa3, 0xef, 0x20, 0xd5, 0x0d, 0x99, 0x6e, - 0x28, 0xcc, 0xa7, 0x51, 0xf3, 0xfd, 0xad, 0xbb, 0xa3, 0xb5, 0x17, 0xb1, 0x91, 0xf8, 0x0e, 0x80, - 0xd2, 0x75, 0x90, 0x94, 0xc9, 0x98, 0xe9, 0x83, 0xfb, 0xe7, 0xba, 0x8f, 0x41, 0x75, 0x54, 0x0f, - 0xd4, 0x0a, 0x89, 0xe8, 0xa4, 0x16, 0x5a, 0x1b, 0x34, 0x52, 0xe4, 0xe8, 0xdf, 0x6c, 0xd1, 0xb6, - 0x62, 0x4d, 0xec, 0xbf, 0xda, 0xe0, 0xbf, 0xb4, 0x82, 0x03, 0x50, 0xd7, 0xf1, 0xb0, 0xb3, 0xa1, - 0xfb, 0x65, 0x72, 0xee, 0xe1, 0x16, 0x86, 0x3a, 0x8c, 0x6f, 0xc1, 0x2b, 0x50, 0x53, 0x99, 0xb0, - 0xfd, 0x93, 0xbe, 0x51, 0xc8, 0xed, 0xfc, 0x4d, 0x30, 0x76, 0xd1, 0xd9, 0x6c, 0xe9, 0xd9, 0xf3, - 0xa5, 0x67, 0x7f, 0x2e, 0x3d, 0xfb, 0x65, 0xe5, 0x59, 0xf3, 0x95, 0x67, 0x7d, 0xac, 0x3c, 0xeb, - 0xf6, 0x78, 0xeb, 0x95, 0x3d, 0xab, 0x3f, 0x45, 0xde, 0x5c, 0x5a, 0x93, 0x43, 0x3f, 0xf9, 0x0e, - 0x00, 0x00, 0xff, 0xff, 0xf2, 0xf9, 0x5a, 0x33, 0x9c, 0x02, 0x00, 0x00, +var fileDescriptor_c451370b3929a27c = []byte{ + // 371 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x52, 0x3d, 0x4e, 0xc3, 0x30, + 0x14, 0x4e, 0x24, 0x68, 0x91, 0xe9, 0xe4, 0x66, 0x80, 0x20, 0xb9, 0x28, 0x0b, 0xed, 0x50, 0x5b, + 0x2d, 0x13, 0x12, 0x4b, 0xc2, 0x84, 0x58, 0x4a, 0xc4, 0x84, 0x84, 0xc0, 0x49, 0x4d, 0x8a, 0xa0, + 0x71, 0x1a, 0x3b, 0x88, 0xde, 0x82, 0xc3, 0x70, 0x88, 0x8a, 0xa9, 0x23, 0x53, 0x85, 0xda, 0x5b, + 0x30, 0xa1, 0xda, 0xce, 0x50, 0x29, 0xfc, 0x4c, 0x89, 0x9f, 0xbf, 0xbf, 0xf7, 0x9e, 0x41, 0x2b, + 0xe6, 0x62, 0xcc, 0x05, 0xa1, 0x85, 0x1c, 0x91, 0xe7, 0x5e, 0xc4, 0x24, 0xed, 0x91, 0x49, 0xc1, + 0xf2, 0x29, 0xce, 0x72, 0x2e, 0x39, 0x6c, 0x6a, 0x00, 0x5e, 0x03, 0xb0, 0x01, 0xb8, 0x4e, 0xc2, + 0x13, 0xae, 0xee, 0xc9, 0xfa, 0x4f, 0x43, 0xdd, 0xfd, 0x84, 0xf3, 0xe4, 0x89, 0x11, 0x75, 0x8a, + 0x8a, 0x7b, 0x42, 0x53, 0xa3, 0xe2, 0xa2, 0x2a, 0x1b, 0x25, 0x69, 0xa8, 0xfa, 0xfe, 0x56, 0x6b, + 0x1a, 0x4b, 0x75, 0xf0, 0x22, 0xd0, 0xbc, 0x5c, 0xe7, 0xf1, 0xe3, 0x98, 0x17, 0xa9, 0x0c, 0xd9, + 0xa4, 0x60, 0x42, 0xc2, 0x0b, 0x50, 0xa7, 0xc3, 0x61, 0xce, 0x84, 0xd8, 0xb3, 0x0f, 0xed, 0x76, + 0x23, 0xe8, 0x7d, 0x2d, 0x5a, 0xdd, 0xe4, 0x41, 0x8e, 0x8a, 0x08, 0xc7, 0x7c, 0x6c, 0x44, 0xcc, + 0xa7, 0x2b, 0x86, 0x8f, 0x44, 0x4e, 0x33, 0x26, 0xb0, 0x1f, 0xc7, 0xbe, 0x26, 0x86, 0xa5, 0x82, + 0x77, 0x05, 0x9c, 0x4d, 0x0f, 0x91, 0xf1, 0x54, 0x30, 0x78, 0x0a, 0xea, 0x54, 0x97, 0x94, 0xc9, + 0x6e, 0xdf, 0xc1, 0xba, 0x47, 0x5c, 0xf6, 0x88, 0xfd, 0x74, 0x1a, 0x34, 0xde, 0xdf, 0xba, 0x3b, + 0x86, 0x7b, 0x1e, 0x96, 0x14, 0xcf, 0x01, 0x50, 0xa9, 0x0e, 0x68, 0x4e, 0xc7, 0xc2, 0x04, 0xf7, + 0x06, 0xa6, 0x9f, 0xb2, 0x6a, 0xac, 0x4e, 0x40, 0x2d, 0x53, 0x15, 0xe3, 0x74, 0x80, 0x2b, 0x06, + 0x8f, 0x35, 0x29, 0xd8, 0x9a, 0x2d, 0x5a, 0x56, 0x68, 0x08, 0xfd, 0x99, 0x0d, 0xb6, 0x95, 0x24, + 0xbc, 0x03, 0x75, 0x13, 0x03, 0xb6, 0x2b, 0xf9, 0x15, 0x93, 0x74, 0x3b, 0xff, 0x40, 0xea, 0x90, + 0x9e, 0x05, 0x6f, 0x40, 0x4d, 0x67, 0x80, 0x47, 0x3f, 0xd3, 0x36, 0x1a, 0x76, 0xdb, 0x7f, 0x03, + 0x4b, 0xf9, 0xe0, 0x6c, 0xb6, 0x44, 0xf6, 0x7c, 0x89, 0xec, 0xcf, 0x25, 0xb2, 0x5f, 0x57, 0xc8, + 0x9a, 0xaf, 0x90, 0xf5, 0xb1, 0x42, 0xd6, 0x75, 0xe7, 0xd7, 0xd5, 0xbe, 0xe8, 0x97, 0xa5, 0x36, + 0x1c, 0xd5, 0xd4, 0x72, 0x8e, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xd8, 0x15, 0x4c, 0x2c, 0xdc, + 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -270,7 +271,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Account(ctx context.Context, in *QueryAccountRequest, opts ...grpc.CallOption) (*QueryAccountResponse, error) { out := new(QueryAccountResponse) - err := c.cc.Invoke(ctx, "/cosmos.auth.Query/Account", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.auth.v1beta1.Query/Account", in, out, opts...) if err != nil { return nil, err } @@ -279,7 +280,7 @@ func (c *queryClient) Account(ctx context.Context, in *QueryAccountRequest, opts func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/cosmos.auth.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.auth.v1beta1.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -319,7 +320,7 @@ func _Query_Account_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.auth.Query/Account", + FullMethod: "/cosmos.auth.v1beta1.Query/Account", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Account(ctx, req.(*QueryAccountRequest)) @@ -337,7 +338,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.auth.Query/Params", + FullMethod: "/cosmos.auth.v1beta1.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -346,7 +347,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.auth.Query", + ServiceName: "cosmos.auth.v1beta1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -359,7 +360,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/auth/query.proto", + Metadata: "cosmos/auth/v1beta1/query.proto", } func (m *QueryAccountRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/auth/vesting/types/codec.go b/x/auth/vesting/types/codec.go index 2889f48fef..6f22a9f4bc 100644 --- a/x/auth/vesting/types/codec.go +++ b/x/auth/vesting/types/codec.go @@ -21,7 +21,7 @@ func RegisterCodec(cdc *codec.LegacyAmino) { // Interfaces and creates a registry of it's concrete implementations func RegisterInterfaces(registry types.InterfaceRegistry) { registry.RegisterInterface( - "cosmos_sdk.auth.vesting.v1.VestingAccount", + "cosmos.vesting.v1beta1.VestingAccount", (*exported.VestingAccount)(nil), &ContinuousVestingAccount{}, &DelayedVestingAccount{}, diff --git a/x/auth/vesting/types/vesting.pb.go b/x/auth/vesting/types/vesting.pb.go index bafa583a4b..ab103ed2b0 100644 --- a/x/auth/vesting/types/vesting.pb.go +++ b/x/auth/vesting/types/vesting.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/vesting/vesting.proto +// source: cosmos/vesting/v1beta1/vesting.proto package types @@ -39,7 +39,7 @@ type BaseVestingAccount struct { func (m *BaseVestingAccount) Reset() { *m = BaseVestingAccount{} } func (*BaseVestingAccount) ProtoMessage() {} func (*BaseVestingAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_ae36726ee12abd18, []int{0} + return fileDescriptor_89e80273ca606d6e, []int{0} } func (m *BaseVestingAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +78,7 @@ type ContinuousVestingAccount struct { func (m *ContinuousVestingAccount) Reset() { *m = ContinuousVestingAccount{} } func (*ContinuousVestingAccount) ProtoMessage() {} func (*ContinuousVestingAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_ae36726ee12abd18, []int{1} + return fileDescriptor_89e80273ca606d6e, []int{1} } func (m *ContinuousVestingAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -117,7 +117,7 @@ type DelayedVestingAccount struct { func (m *DelayedVestingAccount) Reset() { *m = DelayedVestingAccount{} } func (*DelayedVestingAccount) ProtoMessage() {} func (*DelayedVestingAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_ae36726ee12abd18, []int{2} + return fileDescriptor_89e80273ca606d6e, []int{2} } func (m *DelayedVestingAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -155,7 +155,7 @@ type Period struct { func (m *Period) Reset() { *m = Period{} } func (*Period) ProtoMessage() {} func (*Period) Descriptor() ([]byte, []int) { - return fileDescriptor_ae36726ee12abd18, []int{3} + return fileDescriptor_89e80273ca606d6e, []int{3} } func (m *Period) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -209,7 +209,7 @@ type PeriodicVestingAccount struct { func (m *PeriodicVestingAccount) Reset() { *m = PeriodicVestingAccount{} } func (*PeriodicVestingAccount) ProtoMessage() {} func (*PeriodicVestingAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_ae36726ee12abd18, []int{4} + return fileDescriptor_89e80273ca606d6e, []int{4} } func (m *PeriodicVestingAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -239,53 +239,57 @@ func (m *PeriodicVestingAccount) XXX_DiscardUnknown() { var xxx_messageInfo_PeriodicVestingAccount proto.InternalMessageInfo func init() { - proto.RegisterType((*BaseVestingAccount)(nil), "cosmos.vesting.BaseVestingAccount") - proto.RegisterType((*ContinuousVestingAccount)(nil), "cosmos.vesting.ContinuousVestingAccount") - proto.RegisterType((*DelayedVestingAccount)(nil), "cosmos.vesting.DelayedVestingAccount") - proto.RegisterType((*Period)(nil), "cosmos.vesting.Period") - proto.RegisterType((*PeriodicVestingAccount)(nil), "cosmos.vesting.PeriodicVestingAccount") + proto.RegisterType((*BaseVestingAccount)(nil), "cosmos.vesting.v1beta1.BaseVestingAccount") + proto.RegisterType((*ContinuousVestingAccount)(nil), "cosmos.vesting.v1beta1.ContinuousVestingAccount") + proto.RegisterType((*DelayedVestingAccount)(nil), "cosmos.vesting.v1beta1.DelayedVestingAccount") + proto.RegisterType((*Period)(nil), "cosmos.vesting.v1beta1.Period") + proto.RegisterType((*PeriodicVestingAccount)(nil), "cosmos.vesting.v1beta1.PeriodicVestingAccount") } -func init() { proto.RegisterFile("cosmos/vesting/vesting.proto", fileDescriptor_ae36726ee12abd18) } +func init() { + proto.RegisterFile("cosmos/vesting/v1beta1/vesting.proto", fileDescriptor_89e80273ca606d6e) +} -var fileDescriptor_ae36726ee12abd18 = []byte{ - // 567 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x94, 0xb1, 0x6e, 0x13, 0x31, - 0x18, 0xc7, 0xcf, 0x49, 0x08, 0xc5, 0x29, 0x49, 0xeb, 0x36, 0xe1, 0x54, 0xa1, 0xbb, 0xe8, 0xa6, - 0x2c, 0x5c, 0xa0, 0x30, 0x65, 0xeb, 0x15, 0x21, 0xa1, 0x32, 0xa0, 0x13, 0xea, 0xd0, 0x25, 0x72, - 0x72, 0xe6, 0x62, 0x91, 0x3b, 0x47, 0x67, 0x07, 0x91, 0x81, 0x4e, 0x48, 0x30, 0xb2, 0x20, 0x31, - 0x56, 0x8c, 0x3c, 0x00, 0xcf, 0xd0, 0x31, 0x23, 0x53, 0x40, 0xc9, 0x1b, 0xe4, 0x09, 0x50, 0x6c, - 0x5f, 0x42, 0xae, 0x11, 0x52, 0x19, 0x10, 0x4b, 0x72, 0xfe, 0xec, 0xef, 0xff, 0xfd, 0xfc, 0xf9, - 0x6f, 0xc3, 0xbb, 0x5d, 0xc6, 0x23, 0xc6, 0x9b, 0xaf, 0x09, 0x17, 0x34, 0x0e, 0xd3, 0x7f, 0x77, - 0x90, 0x30, 0xc1, 0x50, 0x59, 0xcd, 0xba, 0x3a, 0x7a, 0xb0, 0x1f, 0xb2, 0x90, 0xc9, 0xa9, 0xe6, - 0xe2, 0x4b, 0xad, 0x3a, 0xd8, 0xd3, 0x1a, 0x7a, 0xb1, 0x0a, 0xd6, 0x74, 0x10, 0x0f, 0x45, 0x4f, - 0xfe, 0xa8, 0xb8, 0xf3, 0xa5, 0x00, 0x91, 0x87, 0x39, 0x39, 0x55, 0x92, 0x47, 0xdd, 0x2e, 0x1b, - 0xc6, 0x02, 0x1d, 0xc1, 0xed, 0x0e, 0xe6, 0xa4, 0x8d, 0xd5, 0xd8, 0x04, 0x75, 0xd0, 0x28, 0x1d, - 0x9a, 0xae, 0xd6, 0x94, 0x02, 0x8b, 0x34, 0xbd, 0xde, 0x2b, 0x8c, 0x27, 0x36, 0xf0, 0x4b, 0x9d, - 0x55, 0x08, 0xbd, 0x03, 0x70, 0x87, 0x25, 0x34, 0xa4, 0x31, 0xee, 0xb7, 0x35, 0xb1, 0x99, 0xab, - 0xe7, 0x1b, 0xa5, 0xc3, 0xed, 0x54, 0xe7, 0x98, 0xd1, 0xd8, 0x3b, 0xb9, 0x9c, 0xd8, 0xc6, 0x7c, - 0x62, 0xdf, 0x19, 0xe1, 0xa8, 0xdf, 0x72, 0xb2, 0x39, 0xce, 0xd7, 0x1f, 0x76, 0x23, 0xa4, 0xa2, - 0x37, 0xec, 0xb8, 0x5d, 0x16, 0x35, 0xd7, 0x76, 0x77, 0x8f, 0x07, 0xaf, 0x9a, 0x62, 0x34, 0x20, - 0x4a, 0x8b, 0xfb, 0x95, 0x34, 0x5d, 0x6f, 0x08, 0x9d, 0xc3, 0x72, 0x40, 0xfa, 0x24, 0xc4, 0x82, - 0x04, 0xed, 0x97, 0x09, 0x21, 0x66, 0x7e, 0x03, 0xc3, 0x53, 0xcd, 0x50, 0x55, 0x0c, 0xeb, 0x19, - 0xd7, 0x23, 0xb8, 0xbd, 0x4c, 0x7e, 0x92, 0x10, 0x82, 0xde, 0x03, 0xb8, 0xbb, 0x92, 0x4b, 0xfb, - 0x50, 0xd8, 0xc0, 0xf0, 0x4c, 0x33, 0x98, 0x59, 0x86, 0xbf, 0x6a, 0xc4, 0xce, 0x32, 0x3f, 0xed, - 0x84, 0x0b, 0xb7, 0x48, 0x1c, 0xb4, 0x05, 0x8d, 0x88, 0x79, 0xa3, 0x0e, 0x1a, 0x79, 0x6f, 0x6f, - 0x3e, 0xb1, 0x2b, 0xaa, 0x5a, 0x3a, 0xe3, 0xf8, 0x37, 0x49, 0x1c, 0xbc, 0xa0, 0x11, 0x69, 0x6d, - 0x7d, 0xb8, 0xb0, 0x8d, 0xcf, 0x17, 0xb6, 0xe1, 0x7c, 0x03, 0xd0, 0x3c, 0x66, 0xb1, 0xa0, 0xf1, - 0x90, 0x0d, 0x79, 0xc6, 0x2a, 0x67, 0x70, 0x5f, 0x5a, 0x45, 0x53, 0x66, 0x2c, 0xe3, 0xb8, 0xeb, - 0x9e, 0x75, 0xaf, 0x9a, 0x4d, 0x9b, 0x07, 0x75, 0xae, 0xda, 0xf0, 0x11, 0x84, 0x5c, 0xe0, 0x44, - 0x28, 0xe8, 0x9c, 0x84, 0xae, 0xce, 0x27, 0xf6, 0xae, 0x82, 0x5e, 0xcd, 0x39, 0xfe, 0x2d, 0x39, - 0xc8, 0x80, 0xbf, 0x85, 0xd5, 0xc7, 0xa4, 0x8f, 0x47, 0xcb, 0x26, 0xfc, 0x03, 0xe8, 0xdf, 0xca, - 0x9f, 0xc3, 0xe2, 0x73, 0x92, 0x50, 0x16, 0xa0, 0x1a, 0x2c, 0xf6, 0x49, 0x1c, 0x8a, 0x9e, 0xac, - 0x90, 0xf7, 0xf5, 0x08, 0x9d, 0xc2, 0x22, 0x8e, 0x64, 0xe5, 0x4d, 0x37, 0xe3, 0xfe, 0xc2, 0x11, - 0xd7, 0x3a, 0x75, 0xad, 0xd6, 0x2a, 0xc8, 0xfa, 0x9f, 0x72, 0xb0, 0xa6, 0x00, 0x68, 0xf7, 0x7f, - 0x3f, 0x35, 0xd4, 0x86, 0x95, 0x14, 0x66, 0x20, 0x99, 0xb9, 0xbe, 0xa9, 0xb5, 0x2c, 0x8c, 0xda, - 0x92, 0x67, 0xe9, 0xfb, 0x52, 0x53, 0xb2, 0x99, 0x64, 0xc7, 0x2f, 0xeb, 0x88, 0x5a, 0xce, 0x57, - 0xe7, 0xe2, 0x9d, 0x5c, 0x4e, 0x2d, 0x30, 0x9e, 0x5a, 0xe0, 0xe7, 0xd4, 0x02, 0x1f, 0x67, 0x96, - 0x31, 0x9e, 0x59, 0xc6, 0xf7, 0x99, 0x65, 0x9c, 0x3d, 0xf8, 0x63, 0xa7, 0xdf, 0xa8, 0xe7, 0x33, - 0x7d, 0x9c, 0x65, 0xe3, 0x3b, 0x45, 0xf9, 0x90, 0x3e, 0xfc, 0x15, 0x00, 0x00, 0xff, 0xff, 0xb4, - 0x69, 0xaa, 0x1c, 0xbb, 0x05, 0x00, 0x00, +var fileDescriptor_89e80273ca606d6e = []byte{ + // 593 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x95, 0xbf, 0x6f, 0xd3, 0x40, + 0x14, 0xc7, 0x7d, 0x49, 0x08, 0xe5, 0x02, 0x4d, 0x6b, 0x9a, 0x60, 0x3a, 0xd8, 0x91, 0xc5, 0x10, + 0x21, 0xe1, 0x90, 0xc2, 0x94, 0x0d, 0x17, 0x21, 0x55, 0x65, 0x40, 0x16, 0x62, 0x60, 0x89, 0xfc, + 0xe3, 0x70, 0x4e, 0xc4, 0xbe, 0xc8, 0x77, 0xa9, 0xc8, 0x1f, 0x80, 0x84, 0xd4, 0x05, 0x24, 0x06, + 0xc6, 0x2e, 0x2c, 0xfc, 0x11, 0xcc, 0x1d, 0x23, 0x26, 0xa6, 0x80, 0x92, 0xff, 0x20, 0x7f, 0x01, + 0xf2, 0xdd, 0xd9, 0x01, 0x17, 0x88, 0xca, 0x80, 0xd4, 0x29, 0x79, 0xf7, 0xde, 0xfb, 0xde, 0xe7, + 0xbd, 0x7b, 0x77, 0x86, 0xb7, 0x7c, 0x42, 0x23, 0x42, 0x3b, 0x47, 0x88, 0x32, 0x1c, 0x87, 0x9d, + 0xa3, 0xae, 0x87, 0x98, 0xdb, 0xcd, 0x6c, 0x6b, 0x94, 0x10, 0x46, 0xd4, 0xa6, 0x88, 0xb2, 0xb2, + 0x55, 0x19, 0xb5, 0xbb, 0x13, 0x92, 0x90, 0xf0, 0x90, 0x4e, 0xfa, 0x4f, 0x44, 0xef, 0xea, 0x52, + 0xd3, 0x73, 0x29, 0xca, 0x05, 0x7d, 0x82, 0xe3, 0x82, 0xdf, 0x1d, 0xb3, 0x41, 0xee, 0x4f, 0x0d, + 0xe1, 0x37, 0xbf, 0x54, 0xa0, 0x6a, 0xbb, 0x14, 0x3d, 0x13, 0xbb, 0x3d, 0xf0, 0x7d, 0x32, 0x8e, + 0x99, 0x7a, 0x00, 0xaf, 0xa6, 0x8a, 0x7d, 0x57, 0xd8, 0x1a, 0x68, 0x81, 0x76, 0x6d, 0xaf, 0x65, + 0x49, 0x36, 0x2e, 0x20, 0xd5, 0xac, 0x34, 0x5d, 0xe6, 0xd9, 0x95, 0xe9, 0xcc, 0x00, 0x4e, 0xcd, + 0x5b, 0x2d, 0xa9, 0xef, 0x00, 0xdc, 0x22, 0x09, 0x0e, 0x71, 0xec, 0x0e, 0xfb, 0xb2, 0x28, 0xad, + 0xd4, 0x2a, 0xb7, 0x6b, 0x7b, 0x37, 0x33, 0xbd, 0x34, 0x3e, 0xd7, 0xdb, 0x27, 0x38, 0xb6, 0x0f, + 0x4f, 0x67, 0x86, 0xb2, 0x9c, 0x19, 0x37, 0x26, 0x6e, 0x34, 0xec, 0x99, 0x45, 0x01, 0xf3, 0xd3, + 0x37, 0xa3, 0x1d, 0x62, 0x36, 0x18, 0x7b, 0x96, 0x4f, 0xa2, 0x8e, 0xac, 0x52, 0xfc, 0xdc, 0xa1, + 0xc1, 0xcb, 0x0e, 0x9b, 0x8c, 0x10, 0xe5, 0x5a, 0xd4, 0xa9, 0x67, 0xe9, 0xb2, 0x4a, 0xf5, 0x18, + 0xc0, 0xcd, 0x00, 0x0d, 0x51, 0xe8, 0x32, 0x14, 0xf4, 0x5f, 0x24, 0x08, 0x69, 0xe5, 0x75, 0x44, + 0x07, 0x92, 0xa8, 0x21, 0x88, 0x7e, 0x4d, 0x3f, 0x1f, 0xcf, 0xb5, 0x3c, 0xf9, 0x51, 0x82, 0x90, + 0xfa, 0x1e, 0xc0, 0xed, 0x95, 0x5c, 0xd6, 0xa2, 0xca, 0x3a, 0xa0, 0xc7, 0x12, 0x48, 0x2b, 0x02, + 0xfd, 0x53, 0x8f, 0xb6, 0xf2, 0xfc, 0xac, 0x49, 0x16, 0xdc, 0x40, 0x71, 0xd0, 0x67, 0x38, 0x42, + 0xda, 0xa5, 0x16, 0x68, 0x97, 0xed, 0xeb, 0xcb, 0x99, 0x51, 0x17, 0xbb, 0x65, 0x1e, 0xd3, 0xb9, + 0x8c, 0xe2, 0xe0, 0x29, 0x8e, 0x50, 0x6f, 0xe3, 0xcd, 0x89, 0xa1, 0x7c, 0x38, 0x31, 0x14, 0xf3, + 0x33, 0x80, 0xda, 0x3e, 0x89, 0x19, 0x8e, 0xc7, 0x64, 0x4c, 0x0b, 0xa3, 0xe5, 0xc1, 0x1d, 0x3e, + 0x5a, 0x92, 0xb2, 0x30, 0x62, 0xb7, 0xad, 0xdf, 0x8f, 0xbf, 0x75, 0x76, 0x48, 0xe5, 0xb0, 0xa9, + 0xde, 0xd9, 0xf1, 0xbd, 0x0f, 0x21, 0x65, 0x6e, 0xc2, 0x04, 0x7c, 0x89, 0xc3, 0x37, 0x96, 0x33, + 0x63, 0x5b, 0xc0, 0xaf, 0x7c, 0xa6, 0x73, 0x85, 0x1b, 0x85, 0x02, 0x5e, 0x03, 0xd8, 0x78, 0x88, + 0x86, 0xee, 0x24, 0xef, 0xc6, 0x7f, 0xa4, 0xff, 0x89, 0xe3, 0x18, 0xc0, 0xea, 0x13, 0x94, 0x60, + 0x12, 0xa8, 0x4d, 0x58, 0x1d, 0xa2, 0x38, 0x64, 0x03, 0xbe, 0x55, 0xd9, 0x91, 0x96, 0xea, 0xc3, + 0xaa, 0x1b, 0x71, 0x84, 0xb5, 0x77, 0xea, 0x6e, 0x3a, 0x30, 0xe7, 0x1a, 0x0a, 0x29, 0xdd, 0xab, + 0x70, 0x9a, 0x8f, 0x25, 0xd8, 0x14, 0x34, 0xd8, 0xbf, 0x28, 0x87, 0xaa, 0x86, 0xb0, 0x9e, 0x41, + 0x8d, 0x38, 0x3b, 0x95, 0x57, 0x5d, 0xff, 0x13, 0x94, 0x28, 0xd1, 0xd6, 0xe5, 0xf5, 0x6a, 0x0a, + 0xf9, 0x82, 0x88, 0xe9, 0x6c, 0xca, 0x15, 0x11, 0x4e, 0x57, 0xa7, 0x66, 0x1f, 0x9e, 0xce, 0x75, + 0x30, 0x9d, 0xeb, 0xe0, 0xfb, 0x5c, 0x07, 0x6f, 0x17, 0xba, 0x32, 0x5d, 0xe8, 0xca, 0xd7, 0x85, + 0xae, 0x3c, 0xef, 0xfe, 0xb5, 0xf3, 0xaf, 0xe4, 0x2b, 0x2d, 0x3f, 0x0f, 0xfc, 0x20, 0xbc, 0x2a, + 0x7f, 0xa7, 0xef, 0xfd, 0x08, 0x00, 0x00, 0xff, 0xff, 0x97, 0xc5, 0xe2, 0xb4, 0x3d, 0x06, 0x00, + 0x00, } func (m *BaseVestingAccount) Marshal() (dAtA []byte, err error) { diff --git a/x/bank/types/bank.pb.go b/x/bank/types/bank.pb.go index 93c2f65a08..798194f886 100644 --- a/x/bank/types/bank.pb.go +++ b/x/bank/types/bank.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/bank/bank.proto +// source: cosmos/bank/v1beta1/bank.proto package types @@ -36,7 +36,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_717c78e54d4b5794, []int{0} + return fileDescriptor_dd052eee12edf988, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -88,7 +88,7 @@ type SendEnabled struct { func (m *SendEnabled) Reset() { *m = SendEnabled{} } func (*SendEnabled) ProtoMessage() {} func (*SendEnabled) Descriptor() ([]byte, []int) { - return fileDescriptor_717c78e54d4b5794, []int{1} + return fileDescriptor_dd052eee12edf988, []int{1} } func (m *SendEnabled) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -131,67 +131,6 @@ func (m *SendEnabled) GetEnabled() bool { return false } -// MsgSend - high level transaction of the coin module -type MsgSend struct { - FromAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=from_address,json=fromAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"from_address,omitempty" yaml:"from_address"` - ToAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,2,opt,name=to_address,json=toAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"to_address,omitempty" yaml:"to_address"` - Amount github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,3,rep,name=amount,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"amount"` -} - -func (m *MsgSend) Reset() { *m = MsgSend{} } -func (m *MsgSend) String() string { return proto.CompactTextString(m) } -func (*MsgSend) ProtoMessage() {} -func (*MsgSend) Descriptor() ([]byte, []int) { - return fileDescriptor_717c78e54d4b5794, []int{2} -} -func (m *MsgSend) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgSend) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgSend.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgSend) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgSend.Merge(m, src) -} -func (m *MsgSend) XXX_Size() int { - return m.Size() -} -func (m *MsgSend) XXX_DiscardUnknown() { - xxx_messageInfo_MsgSend.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgSend proto.InternalMessageInfo - -func (m *MsgSend) GetFromAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { - if m != nil { - return m.FromAddress - } - return nil -} - -func (m *MsgSend) GetToAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { - if m != nil { - return m.ToAddress - } - return nil -} - -func (m *MsgSend) GetAmount() github_com_cosmos_cosmos_sdk_types.Coins { - if m != nil { - return m.Amount - } - return nil -} - // Input models transaction input type Input struct { Address github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=address,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"address,omitempty"` @@ -202,7 +141,7 @@ func (m *Input) Reset() { *m = Input{} } func (m *Input) String() string { return proto.CompactTextString(m) } func (*Input) ProtoMessage() {} func (*Input) Descriptor() ([]byte, []int) { - return fileDescriptor_717c78e54d4b5794, []int{3} + return fileDescriptor_dd052eee12edf988, []int{2} } func (m *Input) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -255,7 +194,7 @@ func (m *Output) Reset() { *m = Output{} } func (m *Output) String() string { return proto.CompactTextString(m) } func (*Output) ProtoMessage() {} func (*Output) Descriptor() ([]byte, []int) { - return fileDescriptor_717c78e54d4b5794, []int{4} + return fileDescriptor_dd052eee12edf988, []int{3} } func (m *Output) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -298,59 +237,6 @@ func (m *Output) GetCoins() github_com_cosmos_cosmos_sdk_types.Coins { return nil } -// MsgMultiSend - high level transaction of the coin module -type MsgMultiSend struct { - Inputs []Input `protobuf:"bytes,1,rep,name=inputs,proto3" json:"inputs"` - Outputs []Output `protobuf:"bytes,2,rep,name=outputs,proto3" json:"outputs"` -} - -func (m *MsgMultiSend) Reset() { *m = MsgMultiSend{} } -func (m *MsgMultiSend) String() string { return proto.CompactTextString(m) } -func (*MsgMultiSend) ProtoMessage() {} -func (*MsgMultiSend) Descriptor() ([]byte, []int) { - return fileDescriptor_717c78e54d4b5794, []int{5} -} -func (m *MsgMultiSend) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgMultiSend) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgMultiSend.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgMultiSend) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgMultiSend.Merge(m, src) -} -func (m *MsgMultiSend) XXX_Size() int { - return m.Size() -} -func (m *MsgMultiSend) XXX_DiscardUnknown() { - xxx_messageInfo_MsgMultiSend.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgMultiSend proto.InternalMessageInfo - -func (m *MsgMultiSend) GetInputs() []Input { - if m != nil { - return m.Inputs - } - return nil -} - -func (m *MsgMultiSend) GetOutputs() []Output { - if m != nil { - return m.Outputs - } - return nil -} - // Supply represents a struct that passively keeps track of the total supply // amounts in the network. type Supply struct { @@ -360,7 +246,7 @@ type Supply struct { func (m *Supply) Reset() { *m = Supply{} } func (*Supply) ProtoMessage() {} func (*Supply) Descriptor() ([]byte, []int) { - return fileDescriptor_717c78e54d4b5794, []int{6} + return fileDescriptor_dd052eee12edf988, []int{4} } func (m *Supply) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -401,7 +287,7 @@ func (m *DenomUnits) Reset() { *m = DenomUnits{} } func (m *DenomUnits) String() string { return proto.CompactTextString(m) } func (*DenomUnits) ProtoMessage() {} func (*DenomUnits) Descriptor() ([]byte, []int) { - return fileDescriptor_717c78e54d4b5794, []int{7} + return fileDescriptor_dd052eee12edf988, []int{5} } func (m *DenomUnits) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -464,7 +350,7 @@ func (m *Metadata) Reset() { *m = Metadata{} } func (m *Metadata) String() string { return proto.CompactTextString(m) } func (*Metadata) ProtoMessage() {} func (*Metadata) Descriptor() ([]byte, []int) { - return fileDescriptor_717c78e54d4b5794, []int{8} + return fileDescriptor_dd052eee12edf988, []int{6} } func (m *Metadata) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -522,65 +408,56 @@ func (m *Metadata) GetDisplay() string { } func init() { - proto.RegisterType((*Params)(nil), "cosmos.bank.Params") - proto.RegisterType((*SendEnabled)(nil), "cosmos.bank.SendEnabled") - proto.RegisterType((*MsgSend)(nil), "cosmos.bank.MsgSend") - proto.RegisterType((*Input)(nil), "cosmos.bank.Input") - proto.RegisterType((*Output)(nil), "cosmos.bank.Output") - proto.RegisterType((*MsgMultiSend)(nil), "cosmos.bank.MsgMultiSend") - proto.RegisterType((*Supply)(nil), "cosmos.bank.Supply") - proto.RegisterType((*DenomUnits)(nil), "cosmos.bank.DenomUnits") - proto.RegisterType((*Metadata)(nil), "cosmos.bank.Metadata") + proto.RegisterType((*Params)(nil), "cosmos.bank.v1beta1.Params") + proto.RegisterType((*SendEnabled)(nil), "cosmos.bank.v1beta1.SendEnabled") + proto.RegisterType((*Input)(nil), "cosmos.bank.v1beta1.Input") + proto.RegisterType((*Output)(nil), "cosmos.bank.v1beta1.Output") + proto.RegisterType((*Supply)(nil), "cosmos.bank.v1beta1.Supply") + proto.RegisterType((*DenomUnits)(nil), "cosmos.bank.v1beta1.DenomUnits") + proto.RegisterType((*Metadata)(nil), "cosmos.bank.v1beta1.Metadata") } -func init() { proto.RegisterFile("cosmos/bank/bank.proto", fileDescriptor_717c78e54d4b5794) } +func init() { proto.RegisterFile("cosmos/bank/v1beta1/bank.proto", fileDescriptor_dd052eee12edf988) } -var fileDescriptor_717c78e54d4b5794 = []byte{ - // 697 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x55, 0xcf, 0x6b, 0x13, 0x4d, - 0x18, 0xce, 0xa6, 0x69, 0x92, 0xbe, 0xc9, 0x77, 0xf8, 0xa6, 0xe5, 0xfb, 0xd6, 0x82, 0xd9, 0xb8, - 0x20, 0xa4, 0x62, 0x37, 0xd5, 0x22, 0x48, 0x6e, 0x4d, 0xad, 0x5a, 0x24, 0x28, 0x5b, 0x15, 0x51, - 0x30, 0x4c, 0xb2, 0xd3, 0xb8, 0x74, 0x77, 0x67, 0xc9, 0xcc, 0x42, 0x83, 0xff, 0x80, 0x47, 0x0f, - 0x1e, 0x3c, 0xf6, 0xe2, 0xc5, 0x93, 0x82, 0x37, 0xff, 0x81, 0x82, 0x97, 0xe2, 0xc9, 0x53, 0x94, - 0xf6, 0xe2, 0x39, 0x47, 0x4f, 0x32, 0x33, 0xbb, 0xcd, 0x2e, 0xa8, 0xd4, 0x1f, 0x17, 0x2f, 0x65, - 0xdf, 0xf7, 0x7d, 0xde, 0xe7, 0x79, 0xe6, 0x9d, 0xbe, 0x13, 0xf8, 0xaf, 0x4f, 0x99, 0x4f, 0x59, - 0xb3, 0x87, 0x83, 0x1d, 0xf9, 0xc7, 0x0a, 0x87, 0x94, 0x53, 0x54, 0x51, 0x79, 0x4b, 0xa4, 0x16, - 0x17, 0x06, 0x74, 0x40, 0x65, 0xbe, 0x29, 0xbe, 0x14, 0x64, 0xf1, 0x94, 0x82, 0x74, 0x55, 0x21, - 0xc6, 0xab, 0xd2, 0x7c, 0xcc, 0x9a, 0x4e, 0x9a, 0xef, 0x34, 0x28, 0xde, 0xc2, 0x43, 0xec, 0x33, - 0xf4, 0x10, 0xaa, 0x8c, 0x04, 0x4e, 0x97, 0x04, 0xb8, 0xe7, 0x11, 0x47, 0xd7, 0xea, 0x33, 0x8d, - 0xca, 0x45, 0xdd, 0x4a, 0x89, 0x5a, 0x5b, 0x24, 0x70, 0x36, 0x54, 0xbd, 0x7d, 0x66, 0x32, 0x36, - 0x4e, 0x8f, 0xb0, 0xef, 0xb5, 0xcc, 0x74, 0xdf, 0x79, 0xea, 0xbb, 0x9c, 0xf8, 0x21, 0x1f, 0x99, - 0x76, 0x85, 0x4d, 0xf1, 0xe8, 0x01, 0x2c, 0x38, 0x64, 0x1b, 0x47, 0x1e, 0xef, 0x66, 0x74, 0xf2, - 0x75, 0xad, 0x51, 0x6e, 0x2f, 0x4d, 0xc6, 0xc6, 0x59, 0xc5, 0xf6, 0x2d, 0x54, 0x9a, 0x15, 0xc5, - 0x80, 0x94, 0x99, 0x56, 0xe1, 0xf9, 0x9e, 0x91, 0x33, 0xaf, 0x41, 0x25, 0x95, 0x44, 0x0b, 0x30, - 0xeb, 0x90, 0x80, 0xfa, 0xba, 0x56, 0xd7, 0x1a, 0x73, 0xb6, 0x0a, 0x90, 0x0e, 0xa5, 0x8c, 0xb4, - 0x9d, 0x84, 0xad, 0xb2, 0x20, 0xf9, 0xbc, 0x67, 0x68, 0xe6, 0xdb, 0x3c, 0x94, 0x3a, 0x6c, 0x20, - 0xc8, 0xd0, 0x0e, 0x54, 0xb7, 0x87, 0xd4, 0xef, 0x62, 0xc7, 0x19, 0x12, 0xc6, 0x24, 0x59, 0xb5, - 0x7d, 0x7d, 0x32, 0x36, 0xe6, 0x95, 0xdf, 0x74, 0xd5, 0xfc, 0x32, 0x36, 0x96, 0x07, 0x2e, 0x7f, - 0x14, 0xf5, 0xac, 0x3e, 0xf5, 0x9b, 0x99, 0x99, 0x2f, 0x33, 0x67, 0xa7, 0xc9, 0x47, 0x21, 0x61, - 0xd6, 0x5a, 0xbf, 0xbf, 0xa6, 0x3a, 0xec, 0x8a, 0xe8, 0x8f, 0x03, 0x44, 0x00, 0x38, 0x3d, 0x96, - 0xca, 0x4b, 0xa9, 0xab, 0x93, 0xb1, 0xf1, 0xaf, 0x92, 0x9a, 0xd6, 0x7e, 0x41, 0x68, 0x8e, 0xd3, - 0x44, 0xe6, 0x2e, 0x14, 0xb1, 0x4f, 0xa3, 0x80, 0xeb, 0x33, 0xf2, 0x96, 0xab, 0xc9, 0x2d, 0xaf, - 0x53, 0x37, 0x68, 0xaf, 0xec, 0x8f, 0x8d, 0xdc, 0xcb, 0x8f, 0x46, 0xe3, 0x04, 0xfc, 0xa2, 0x81, - 0xd9, 0x31, 0x5b, 0xab, 0x20, 0xa7, 0xf7, 0x4a, 0x83, 0xd9, 0xcd, 0x20, 0x8c, 0x38, 0xba, 0x01, - 0xa5, 0xec, 0xd8, 0x2e, 0xfc, 0xbc, 0xed, 0x84, 0x01, 0xdd, 0x86, 0xd9, 0xbe, 0x50, 0xd3, 0xf3, - 0x7f, 0xc4, 0xb3, 0x22, 0x8b, 0x2d, 0xbf, 0xd6, 0xa0, 0x78, 0x33, 0xe2, 0x7f, 0x95, 0xe7, 0xc7, - 0x50, 0xed, 0xb0, 0x41, 0x27, 0xf2, 0xb8, 0x2b, 0xff, 0x51, 0x57, 0xa0, 0xe8, 0x8a, 0xa9, 0xb3, - 0x78, 0x75, 0x51, 0x66, 0x75, 0xe5, 0x85, 0xb4, 0x0b, 0x42, 0xd2, 0x8e, 0x71, 0x68, 0x15, 0x4a, - 0x54, 0x1e, 0x3a, 0xf1, 0x37, 0x9f, 0x69, 0x51, 0x03, 0x89, 0x7b, 0x12, 0x64, 0x2c, 0xfe, 0x42, - 0x83, 0xe2, 0x56, 0x14, 0x86, 0xde, 0x48, 0x9c, 0x91, 0x53, 0x8e, 0xbd, 0x58, 0xf6, 0xb7, 0xcf, - 0x28, 0xc9, 0x5a, 0x1b, 0x4f, 0xf6, 0x8c, 0x5c, 0xb2, 0x90, 0xef, 0xdf, 0x2c, 0x5f, 0x3a, 0xf7, - 0x43, 0x86, 0x5d, 0xf5, 0x5a, 0x92, 0xdd, 0x90, 0x0e, 0x39, 0x71, 0x2c, 0xe5, 0x6d, 0xd3, 0xbc, - 0x07, 0x70, 0x45, 0xac, 0xfd, 0x9d, 0xc0, 0xe5, 0xec, 0x3b, 0x2f, 0xc2, 0x22, 0x94, 0x45, 0x5f, - 0x40, 0x02, 0x2e, 0x57, 0xee, 0x1f, 0xfb, 0x38, 0x16, 0xaf, 0x05, 0xf6, 0x5c, 0xcc, 0x08, 0x93, - 0xab, 0x32, 0x67, 0x27, 0xa1, 0xf9, 0x4c, 0x83, 0x72, 0x87, 0x70, 0xec, 0x60, 0x8e, 0x51, 0x1d, - 0x2a, 0x0e, 0x61, 0xfd, 0xa1, 0x1b, 0x72, 0x97, 0x06, 0x31, 0x7d, 0x3a, 0x85, 0x2e, 0x0b, 0x44, - 0x40, 0xfd, 0x6e, 0x24, 0x9c, 0xc4, 0xf3, 0xfe, 0x3f, 0x33, 0xef, 0xa9, 0x51, 0x1b, 0x9c, 0xa9, - 0x69, 0x04, 0x85, 0x1e, 0x66, 0x44, 0x9f, 0x91, 0xa4, 0xf2, 0x5b, 0xd8, 0x72, 0x5c, 0x16, 0x7a, - 0x78, 0xa4, 0x17, 0x64, 0x3a, 0x09, 0xdb, 0xeb, 0xfb, 0x87, 0x35, 0xed, 0xe0, 0xb0, 0xa6, 0x7d, - 0x3a, 0xac, 0x69, 0x4f, 0x8f, 0x6a, 0xb9, 0x83, 0xa3, 0x5a, 0xee, 0xc3, 0x51, 0x2d, 0x77, 0x7f, - 0xe9, 0x24, 0x03, 0x94, 0x37, 0xd1, 0x2b, 0xca, 0x5f, 0x87, 0xd5, 0xaf, 0x01, 0x00, 0x00, 0xff, - 0xff, 0xde, 0xcf, 0x77, 0x95, 0x8a, 0x06, 0x00, 0x00, +var fileDescriptor_dd052eee12edf988 = []byte{ + // 586 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x54, 0xbf, 0x6f, 0xd3, 0x4e, + 0x14, 0xf7, 0x35, 0x69, 0x9a, 0x5e, 0xfa, 0x5d, 0xfc, 0xcd, 0xe0, 0x46, 0xc2, 0x36, 0x96, 0x90, + 0x52, 0x44, 0x1c, 0x02, 0x62, 0xc9, 0x44, 0x53, 0x2a, 0x54, 0x21, 0x04, 0x72, 0x85, 0x84, 0x60, + 0x88, 0x2e, 0xbe, 0x6b, 0xb0, 0x6a, 0xdf, 0x59, 0xb9, 0x33, 0x6a, 0xfe, 0x03, 0x46, 0x46, 0x06, + 0x86, 0xcc, 0x8c, 0x88, 0x15, 0xe6, 0x8e, 0x15, 0x2c, 0x4c, 0x01, 0x25, 0x0b, 0x73, 0x47, 0x26, + 0x74, 0x77, 0xce, 0x8f, 0x4a, 0x01, 0x75, 0x60, 0x61, 0x8a, 0xdf, 0x7b, 0x9f, 0xf7, 0xf9, 0x7c, + 0xf2, 0xde, 0xb3, 0xa1, 0x1d, 0x32, 0x9e, 0x30, 0xde, 0xec, 0x21, 0x7a, 0xdc, 0x7c, 0xd9, 0xea, + 0x11, 0x81, 0x5a, 0x2a, 0xf0, 0xd3, 0x01, 0x13, 0xcc, 0xfc, 0x5f, 0xd7, 0x7d, 0x95, 0xca, 0xeb, + 0xb5, 0x6a, 0x9f, 0xf5, 0x99, 0xaa, 0x37, 0xe5, 0x93, 0x86, 0xd6, 0xb6, 0x35, 0xb4, 0xab, 0x0b, + 0x79, 0x9f, 0x2e, 0x2d, 0x54, 0x38, 0x99, 0xab, 0x84, 0x2c, 0xa2, 0xba, 0xee, 0x7d, 0x01, 0xb0, + 0xf4, 0x18, 0x0d, 0x50, 0xc2, 0xcd, 0x23, 0xb8, 0xc5, 0x09, 0xc5, 0x5d, 0x42, 0x51, 0x2f, 0x26, + 0xd8, 0x02, 0x6e, 0xa1, 0x5e, 0xb9, 0xe5, 0xfa, 0x2b, 0x7c, 0xf8, 0x87, 0x84, 0xe2, 0x7d, 0x8d, + 0xeb, 0x5c, 0x3d, 0x1f, 0x3b, 0x57, 0x86, 0x28, 0x89, 0xdb, 0xde, 0x72, 0xff, 0x0d, 0x96, 0x44, + 0x82, 0x24, 0xa9, 0x18, 0x7a, 0x41, 0x85, 0x2f, 0xf0, 0xe6, 0x73, 0x58, 0xc5, 0xe4, 0x08, 0x65, + 0xb1, 0xe8, 0x5e, 0xd0, 0x5b, 0x73, 0x41, 0xbd, 0xdc, 0xd9, 0x39, 0x1f, 0x3b, 0xd7, 0x34, 0xdb, + 0x2a, 0xd4, 0x32, 0xab, 0x99, 0x03, 0x96, 0xcc, 0xb4, 0x8b, 0x6f, 0x46, 0x8e, 0xe1, 0xdd, 0x87, + 0x95, 0xa5, 0xa4, 0x59, 0x85, 0xeb, 0x98, 0x50, 0x96, 0x58, 0xc0, 0x05, 0xf5, 0xcd, 0x40, 0x07, + 0xa6, 0x05, 0x37, 0x2e, 0x48, 0x07, 0xb3, 0xb0, 0x5d, 0x96, 0x24, 0x3f, 0x46, 0x0e, 0xf0, 0x3e, + 0x02, 0xb8, 0x7e, 0x40, 0xd3, 0x4c, 0x98, 0x0f, 0xe0, 0x06, 0xc2, 0x78, 0x40, 0x38, 0x57, 0x2c, + 0x5b, 0x9d, 0xd6, 0xcf, 0xb1, 0xd3, 0xe8, 0x47, 0xe2, 0x45, 0xd6, 0xf3, 0x43, 0x96, 0xe4, 0x63, + 0xcf, 0x7f, 0x1a, 0x1c, 0x1f, 0x37, 0xc5, 0x30, 0x25, 0xdc, 0xdf, 0x0d, 0xc3, 0x5d, 0xdd, 0x18, + 0xcc, 0x18, 0x4c, 0x04, 0xd7, 0xe5, 0x0e, 0xb8, 0xb5, 0xa6, 0x66, 0xbc, 0xbd, 0x98, 0x31, 0x27, + 0xf3, 0x19, 0xef, 0xb1, 0x88, 0x76, 0x6e, 0x9e, 0x8e, 0x1d, 0xe3, 0xdd, 0x37, 0xa7, 0x7e, 0x09, + 0x25, 0xd9, 0xc0, 0x03, 0xcd, 0xdc, 0x2e, 0x2a, 0xff, 0x9f, 0x00, 0x2c, 0x3d, 0xca, 0xc4, 0xbf, + 0xfb, 0x07, 0xde, 0x03, 0x58, 0x3a, 0xcc, 0xd2, 0x34, 0x1e, 0x4a, 0x4d, 0xc1, 0x04, 0x8a, 0xf3, + 0xc3, 0xfc, 0xbb, 0x9a, 0x8a, 0xb9, 0xbd, 0xff, 0x6a, 0xe4, 0x18, 0xb3, 0xe5, 0x7f, 0xfe, 0xd0, + 0xb8, 0x73, 0xfd, 0x8f, 0x0c, 0x27, 0xfa, 0xe5, 0x25, 0x27, 0x29, 0x1b, 0x08, 0x82, 0x7d, 0x6d, + 0xf4, 0xc0, 0x7b, 0x0a, 0xe1, 0x3d, 0x79, 0x62, 0x4f, 0x68, 0x24, 0xf8, 0x6f, 0xae, 0xaf, 0x06, + 0xcb, 0xb2, 0x8f, 0x12, 0x2a, 0xd4, 0xf9, 0xfd, 0x17, 0xcc, 0x63, 0x79, 0x99, 0x28, 0x8e, 0x10, + 0x27, 0xdc, 0x2a, 0xb8, 0x85, 0xfa, 0x66, 0x30, 0x0b, 0xbd, 0xb7, 0x00, 0x96, 0x1f, 0x12, 0x81, + 0x30, 0x12, 0xc8, 0x74, 0x61, 0x05, 0x13, 0x1e, 0x0e, 0xa2, 0x54, 0x44, 0x8c, 0xe6, 0xf4, 0xcb, + 0x29, 0xf3, 0xae, 0x44, 0x50, 0x96, 0x74, 0x33, 0xe9, 0x24, 0x5f, 0x96, 0xb3, 0xf2, 0x8d, 0x5e, + 0x18, 0x0e, 0x20, 0x5e, 0x98, 0x37, 0x61, 0x51, 0xce, 0xd7, 0x2a, 0x28, 0x72, 0xf5, 0x2c, 0xed, + 0xe1, 0x88, 0xa7, 0x31, 0x1a, 0x5a, 0x45, 0x95, 0x9e, 0x85, 0x9d, 0xbd, 0xd3, 0x89, 0x0d, 0xce, + 0x26, 0x36, 0xf8, 0x3e, 0xb1, 0xc1, 0xeb, 0xa9, 0x6d, 0x9c, 0x4d, 0x6d, 0xe3, 0xeb, 0xd4, 0x36, + 0x9e, 0xed, 0x5c, 0x66, 0x90, 0x6a, 0x23, 0xbd, 0x92, 0xfa, 0x32, 0xdd, 0xfe, 0x15, 0x00, 0x00, + 0xff, 0xff, 0xe3, 0xc7, 0xfe, 0xdc, 0x21, 0x05, 0x00, 0x00, } func (this *SendEnabled) Equal(that interface{}) bool { @@ -610,41 +487,6 @@ func (this *SendEnabled) Equal(that interface{}) bool { } return true } -func (this *MsgSend) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*MsgSend) - if !ok { - that2, ok := that.(MsgSend) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if !bytes.Equal(this.FromAddress, that1.FromAddress) { - return false - } - if !bytes.Equal(this.ToAddress, that1.ToAddress) { - return false - } - if len(this.Amount) != len(that1.Amount) { - return false - } - for i := range this.Amount { - if !this.Amount[i].Equal(&that1.Amount[i]) { - return false - } - } - return true -} func (this *Input) Equal(that interface{}) bool { if that == nil { return this == nil @@ -709,43 +551,6 @@ func (this *Output) Equal(that interface{}) bool { } return true } -func (this *MsgMultiSend) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*MsgMultiSend) - if !ok { - that2, ok := that.(MsgMultiSend) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if len(this.Inputs) != len(that1.Inputs) { - return false - } - for i := range this.Inputs { - if !this.Inputs[i].Equal(&that1.Inputs[i]) { - return false - } - } - if len(this.Outputs) != len(that1.Outputs) { - return false - } - for i := range this.Outputs { - if !this.Outputs[i].Equal(&that1.Outputs[i]) { - return false - } - } - return true -} func (this *Supply) Equal(that interface{}) bool { if that == nil { return this == nil @@ -862,57 +667,6 @@ func (m *SendEnabled) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *MsgSend) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *MsgSend) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgSend) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Amount) > 0 { - for iNdEx := len(m.Amount) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Amount[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintBank(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - } - } - if len(m.ToAddress) > 0 { - i -= len(m.ToAddress) - copy(dAtA[i:], m.ToAddress) - i = encodeVarintBank(dAtA, i, uint64(len(m.ToAddress))) - i-- - dAtA[i] = 0x12 - } - if len(m.FromAddress) > 0 { - i -= len(m.FromAddress) - copy(dAtA[i:], m.FromAddress) - i = encodeVarintBank(dAtA, i, uint64(len(m.FromAddress))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - func (m *Input) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -1001,57 +755,6 @@ func (m *Output) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func (m *MsgMultiSend) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *MsgMultiSend) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgMultiSend) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Outputs) > 0 { - for iNdEx := len(m.Outputs) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Outputs[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintBank(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - } - if len(m.Inputs) > 0 { - for iNdEx := len(m.Inputs) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Inputs[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintBank(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - } - } - return len(dAtA) - i, nil -} - func (m *Supply) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -1236,29 +939,6 @@ func (m *SendEnabled) Size() (n int) { return n } -func (m *MsgSend) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.FromAddress) - if l > 0 { - n += 1 + l + sovBank(uint64(l)) - } - l = len(m.ToAddress) - if l > 0 { - n += 1 + l + sovBank(uint64(l)) - } - if len(m.Amount) > 0 { - for _, e := range m.Amount { - l = e.Size() - n += 1 + l + sovBank(uint64(l)) - } - } - return n -} - func (m *Input) Size() (n int) { if m == nil { return 0 @@ -1297,27 +977,6 @@ func (m *Output) Size() (n int) { return n } -func (m *MsgMultiSend) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if len(m.Inputs) > 0 { - for _, e := range m.Inputs { - l = e.Size() - n += 1 + l + sovBank(uint64(l)) - } - } - if len(m.Outputs) > 0 { - for _, e := range m.Outputs { - l = e.Size() - n += 1 + l + sovBank(uint64(l)) - } - } - return n -} - func (m *Supply) Size() (n int) { if m == nil { return 0 @@ -1600,161 +1259,6 @@ func (m *SendEnabled) Unmarshal(dAtA []byte) error { } return nil } -func (m *MsgSend) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowBank - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgSend: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgSend: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field FromAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowBank - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthBank - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthBank - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.FromAddress = append(m.FromAddress[:0], dAtA[iNdEx:postIndex]...) - if m.FromAddress == nil { - m.FromAddress = []byte{} - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ToAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowBank - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthBank - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthBank - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.ToAddress = append(m.ToAddress[:0], dAtA[iNdEx:postIndex]...) - if m.ToAddress == nil { - m.ToAddress = []byte{} - } - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowBank - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthBank - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthBank - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Amount = append(m.Amount, types.Coin{}) - if err := m.Amount[len(m.Amount)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipBank(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthBank - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthBank - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} func (m *Input) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -1997,127 +1501,6 @@ func (m *Output) Unmarshal(dAtA []byte) error { } return nil } -func (m *MsgMultiSend) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowBank - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgMultiSend: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgMultiSend: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Inputs", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowBank - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthBank - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthBank - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Inputs = append(m.Inputs, Input{}) - if err := m.Inputs[len(m.Inputs)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Outputs", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowBank - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthBank - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthBank - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Outputs = append(m.Outputs, Output{}) - if err := m.Outputs[len(m.Outputs)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipBank(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthBank - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthBank - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} func (m *Supply) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/x/bank/types/codec.go b/x/bank/types/codec.go index cb703fee77..c7f4e73d49 100644 --- a/x/bank/types/codec.go +++ b/x/bank/types/codec.go @@ -24,7 +24,7 @@ func RegisterInterfaces(registry types.InterfaceRegistry) { ) registry.RegisterInterface( - "cosmos_sdk.bank.v1.bank", + "cosmos.bank.v1beta1.SupplyI", (*exported.SupplyI)(nil), &Supply{}, ) diff --git a/x/bank/types/genesis.pb.go b/x/bank/types/genesis.pb.go index 62b1aea776..864f3191fa 100644 --- a/x/bank/types/genesis.pb.go +++ b/x/bank/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/bank/genesis.proto +// source: cosmos/bank/v1beta1/genesis.proto package types @@ -37,7 +37,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_f22ff2f01147af72, []int{0} + return fileDescriptor_8f007de11b420c6e, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -105,7 +105,7 @@ func (m *Balance) Reset() { *m = Balance{} } func (m *Balance) String() string { return proto.CompactTextString(m) } func (*Balance) ProtoMessage() {} func (*Balance) Descriptor() ([]byte, []int) { - return fileDescriptor_f22ff2f01147af72, []int{1} + return fileDescriptor_8f007de11b420c6e, []int{1} } func (m *Balance) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -135,39 +135,40 @@ func (m *Balance) XXX_DiscardUnknown() { var xxx_messageInfo_Balance proto.InternalMessageInfo func init() { - proto.RegisterType((*GenesisState)(nil), "cosmos.bank.GenesisState") - proto.RegisterType((*Balance)(nil), "cosmos.bank.Balance") + proto.RegisterType((*GenesisState)(nil), "cosmos.bank.v1beta1.GenesisState") + proto.RegisterType((*Balance)(nil), "cosmos.bank.v1beta1.Balance") } -func init() { proto.RegisterFile("cosmos/bank/genesis.proto", fileDescriptor_f22ff2f01147af72) } +func init() { proto.RegisterFile("cosmos/bank/v1beta1/genesis.proto", fileDescriptor_8f007de11b420c6e) } -var fileDescriptor_f22ff2f01147af72 = []byte{ - // 391 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4c, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x4a, 0xcc, 0xcb, 0xd6, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, - 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x86, 0x48, 0xe9, 0x81, 0xa4, 0xa4, 0x44, 0xd2, 0xf3, - 0xd3, 0xf3, 0xc1, 0xe2, 0xfa, 0x20, 0x16, 0x44, 0x89, 0x94, 0x30, 0x54, 0x37, 0x54, 0x25, 0x44, - 0x50, 0x0c, 0xd9, 0x48, 0x10, 0x01, 0x11, 0x57, 0x3a, 0xcf, 0xc4, 0xc5, 0xe3, 0x0e, 0xb1, 0x21, - 0xb8, 0x24, 0xb1, 0x24, 0x55, 0xc8, 0x9a, 0x8b, 0xad, 0x20, 0xb1, 0x28, 0x31, 0xb7, 0x58, 0x82, - 0x51, 0x81, 0x51, 0x83, 0xdb, 0x48, 0x58, 0x0f, 0xc9, 0x46, 0xbd, 0x00, 0xb0, 0x94, 0x13, 0xdf, - 0x89, 0x7b, 0xf2, 0x0c, 0xbf, 0xee, 0xc9, 0xb3, 0x41, 0xf8, 0x41, 0x50, 0x2d, 0x42, 0x8e, 0x5c, - 0x1c, 0x49, 0x89, 0x39, 0x89, 0x79, 0xc9, 0xa9, 0xc5, 0x12, 0x4c, 0x0a, 0xcc, 0x1a, 0xdc, 0x46, - 0x22, 0x28, 0xda, 0x9d, 0x20, 0x92, 0x4e, 0xfc, 0x50, 0xfd, 0xec, 0x50, 0x81, 0x20, 0xb8, 0x36, - 0xa1, 0x30, 0x2e, 0xb6, 0xe2, 0xd2, 0x82, 0x82, 0x9c, 0x4a, 0x09, 0x66, 0xb0, 0x01, 0x3c, 0x30, - 0x03, 0x9c, 0xf3, 0x33, 0xf3, 0x9c, 0x0c, 0x40, 0x1a, 0x57, 0xdd, 0x97, 0xd7, 0x48, 0xcf, 0x2c, - 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x47, 0xf1, 0xae, 0x6e, 0x71, 0x4a, 0xb6, 0x7e, - 0x49, 0x65, 0x41, 0x2a, 0x44, 0x43, 0x71, 0x10, 0xd4, 0x34, 0xa1, 0x74, 0x2e, 0xbe, 0x94, 0xd4, - 0xbc, 0xfc, 0xdc, 0xf8, 0xdc, 0xd4, 0x92, 0xc4, 0x94, 0xc4, 0x92, 0x44, 0x09, 0x16, 0xb0, 0xf9, - 0xa2, 0x28, 0x0e, 0xf4, 0x85, 0x4a, 0x3a, 0x69, 0x82, 0x2c, 0xfa, 0x74, 0x4f, 0x5e, 0xb4, 0x32, - 0x31, 0x37, 0xc7, 0x4a, 0x09, 0x55, 0xab, 0xd2, 0xaf, 0x7b, 0xf2, 0x1c, 0x30, 0xa5, 0x41, 0xbc, - 0x60, 0x49, 0x18, 0x57, 0x69, 0x13, 0x23, 0x17, 0xcc, 0x5b, 0x42, 0xde, 0x5c, 0xec, 0x89, 0x29, - 0x29, 0x45, 0xa9, 0xc5, 0x90, 0xd0, 0xe4, 0x71, 0x32, 0xfc, 0x75, 0x4f, 0x5e, 0x97, 0x08, 0xb7, - 0x3b, 0x26, 0x27, 0x3b, 0x42, 0x34, 0x06, 0xc1, 0x4c, 0x10, 0x0a, 0xe1, 0x62, 0x4d, 0x06, 0x79, - 0x09, 0x1a, 0xb2, 0x94, 0x06, 0x0c, 0xc4, 0x30, 0x2b, 0x96, 0x8e, 0x05, 0xf2, 0x0c, 0x4e, 0xce, - 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, - 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x89, 0xd7, 0xc0, 0x0a, 0x48, - 0x82, 0x02, 0x9b, 0x9b, 0xc4, 0x06, 0x4e, 0x52, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6f, - 0xbb, 0xec, 0xe0, 0xbf, 0x02, 0x00, 0x00, +var fileDescriptor_8f007de11b420c6e = []byte{ + // 415 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0x31, 0x6f, 0xda, 0x40, + 0x14, 0x80, 0x6d, 0xa0, 0x06, 0x1d, 0x94, 0x4a, 0x6e, 0x2b, 0xb9, 0xb4, 0xb5, 0xa9, 0x27, 0x18, + 0xb0, 0x0b, 0xdd, 0xd8, 0x30, 0x43, 0x55, 0x55, 0x91, 0x22, 0x67, 0xcb, 0x12, 0x9d, 0xed, 0x93, + 0x63, 0x81, 0x7d, 0x16, 0x77, 0x44, 0xe1, 0x1f, 0x64, 0xcc, 0x4f, 0xc8, 0x9c, 0x3f, 0x91, 0x95, + 0x91, 0x31, 0x93, 0x13, 0xc1, 0x3f, 0x88, 0x32, 0x31, 0x45, 0xbe, 0xb3, 0x9d, 0x44, 0x41, 0x51, + 0x86, 0x4c, 0xf6, 0xf9, 0x7d, 0xef, 0x7b, 0xf7, 0x9e, 0x1f, 0xf8, 0xe5, 0x62, 0x12, 0x62, 0x62, + 0x3a, 0x30, 0x9a, 0x98, 0x27, 0x7d, 0x07, 0x51, 0xd8, 0x37, 0x7d, 0x14, 0x21, 0x12, 0x10, 0x23, + 0x9e, 0x61, 0x8a, 0xe5, 0xcf, 0x1c, 0x31, 0x52, 0xc4, 0xc8, 0x90, 0xd6, 0x17, 0x1f, 0xfb, 0x98, + 0xc5, 0xcd, 0xf4, 0x8d, 0xa3, 0x2d, 0xb5, 0xb0, 0x11, 0x54, 0xd8, 0x5c, 0x1c, 0x44, 0x2f, 0xe2, + 0x4f, 0xaa, 0x31, 0x2f, 0x8b, 0xeb, 0xf7, 0x25, 0xd0, 0xf8, 0xcb, 0x8b, 0x1f, 0x50, 0x48, 0x91, + 0x3c, 0x06, 0x52, 0x0c, 0x67, 0x30, 0x24, 0x8a, 0xd8, 0x16, 0x3b, 0xf5, 0xc1, 0x77, 0x63, 0xc7, + 0x65, 0x8c, 0x7d, 0x86, 0x58, 0xcd, 0x65, 0xa2, 0x09, 0xdb, 0x44, 0x93, 0xf8, 0xd9, 0xce, 0x52, + 0xe5, 0x7f, 0xa0, 0xe6, 0xc0, 0x29, 0x8c, 0x5c, 0x44, 0x94, 0x52, 0xbb, 0xdc, 0xa9, 0x0f, 0x7e, + 0xec, 0xd4, 0x58, 0x1c, 0xb2, 0x3e, 0x65, 0x9e, 0x6a, 0xf6, 0xc1, 0x2e, 0xd2, 0x65, 0x17, 0x48, + 0x64, 0x1e, 0xc7, 0xd3, 0x85, 0x52, 0x66, 0xa2, 0x6f, 0x8f, 0x22, 0x82, 0x0a, 0xd1, 0x18, 0x07, + 0x91, 0xf5, 0x3b, 0xb5, 0x5c, 0xde, 0x68, 0x1d, 0x3f, 0xa0, 0xc7, 0x73, 0xc7, 0x70, 0x71, 0x68, + 0x66, 0xed, 0xf3, 0x47, 0x8f, 0x78, 0x13, 0x93, 0x2e, 0x62, 0x44, 0x58, 0x02, 0xb1, 0x33, 0xb5, + 0x8c, 0x41, 0xd3, 0x43, 0x11, 0x0e, 0x8f, 0x42, 0x44, 0xa1, 0x07, 0x29, 0x54, 0x2a, 0xac, 0xd8, + 0xcf, 0x9d, 0xb7, 0xde, 0xcb, 0x20, 0xab, 0x9b, 0x16, 0xbc, 0x4b, 0xb4, 0xaf, 0x0b, 0x18, 0x4e, + 0x87, 0xfa, 0x73, 0x85, 0xbe, 0x4d, 0xb4, 0x5a, 0x8e, 0xda, 0x1f, 0x59, 0x30, 0x3f, 0xea, 0x57, + 0x22, 0xc8, 0x7b, 0x95, 0xff, 0x83, 0x2a, 0xf4, 0xbc, 0x19, 0x22, 0x7c, 0xe4, 0x0d, 0xab, 0xbf, + 0x4d, 0xb4, 0xde, 0x1b, 0x7a, 0x18, 0xb9, 0xee, 0x88, 0x27, 0xda, 0xb9, 0x41, 0x86, 0xe0, 0x43, + 0xfa, 0xf7, 0xf3, 0xb1, 0xbf, 0xeb, 0xb4, 0xb8, 0x79, 0x58, 0x39, 0xbb, 0xd0, 0x04, 0x6b, 0xbc, + 0x5c, 0xab, 0xe2, 0x6a, 0xad, 0x8a, 0xb7, 0x6b, 0x55, 0x3c, 0xdf, 0xa8, 0xc2, 0x6a, 0xa3, 0x0a, + 0xd7, 0x1b, 0x55, 0x38, 0xec, 0xbe, 0x2a, 0x3c, 0xe5, 0xab, 0xc8, 0xbc, 0x8e, 0xc4, 0x96, 0xf0, + 0xcf, 0x43, 0x00, 0x00, 0x00, 0xff, 0xff, 0x71, 0xf1, 0xcb, 0x90, 0x14, 0x03, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/bank/types/query.pb.go b/x/bank/types/query.pb.go index 30613d449d..be317b67e3 100644 --- a/x/bank/types/query.pb.go +++ b/x/bank/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/bank/query.proto +// source: cosmos/bank/v1beta1/query.proto package types @@ -43,7 +43,7 @@ func (m *QueryBalanceRequest) Reset() { *m = QueryBalanceRequest{} } func (m *QueryBalanceRequest) String() string { return proto.CompactTextString(m) } func (*QueryBalanceRequest) ProtoMessage() {} func (*QueryBalanceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_1b02ea4db7d9aa9f, []int{0} + return fileDescriptor_9c6fc1939682df13, []int{0} } func (m *QueryBalanceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -96,7 +96,7 @@ func (m *QueryBalanceResponse) Reset() { *m = QueryBalanceResponse{} } func (m *QueryBalanceResponse) String() string { return proto.CompactTextString(m) } func (*QueryBalanceResponse) ProtoMessage() {} func (*QueryBalanceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_1b02ea4db7d9aa9f, []int{1} + return fileDescriptor_9c6fc1939682df13, []int{1} } func (m *QueryBalanceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -144,7 +144,7 @@ func (m *QueryAllBalancesRequest) Reset() { *m = QueryAllBalancesRequest func (m *QueryAllBalancesRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllBalancesRequest) ProtoMessage() {} func (*QueryAllBalancesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_1b02ea4db7d9aa9f, []int{2} + return fileDescriptor_9c6fc1939682df13, []int{2} } func (m *QueryAllBalancesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -199,7 +199,7 @@ func (m *QueryAllBalancesResponse) Reset() { *m = QueryAllBalancesRespon func (m *QueryAllBalancesResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllBalancesResponse) ProtoMessage() {} func (*QueryAllBalancesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_1b02ea4db7d9aa9f, []int{3} + return fileDescriptor_9c6fc1939682df13, []int{3} } func (m *QueryAllBalancesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -250,7 +250,7 @@ func (m *QueryTotalSupplyRequest) Reset() { *m = QueryTotalSupplyRequest func (m *QueryTotalSupplyRequest) String() string { return proto.CompactTextString(m) } func (*QueryTotalSupplyRequest) ProtoMessage() {} func (*QueryTotalSupplyRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_1b02ea4db7d9aa9f, []int{4} + return fileDescriptor_9c6fc1939682df13, []int{4} } func (m *QueryTotalSupplyRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -289,7 +289,7 @@ func (m *QueryTotalSupplyResponse) Reset() { *m = QueryTotalSupplyRespon func (m *QueryTotalSupplyResponse) String() string { return proto.CompactTextString(m) } func (*QueryTotalSupplyResponse) ProtoMessage() {} func (*QueryTotalSupplyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_1b02ea4db7d9aa9f, []int{5} + return fileDescriptor_9c6fc1939682df13, []int{5} } func (m *QueryTotalSupplyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -335,7 +335,7 @@ func (m *QuerySupplyOfRequest) Reset() { *m = QuerySupplyOfRequest{} } func (m *QuerySupplyOfRequest) String() string { return proto.CompactTextString(m) } func (*QuerySupplyOfRequest) ProtoMessage() {} func (*QuerySupplyOfRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_1b02ea4db7d9aa9f, []int{6} + return fileDescriptor_9c6fc1939682df13, []int{6} } func (m *QuerySupplyOfRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -381,7 +381,7 @@ func (m *QuerySupplyOfResponse) Reset() { *m = QuerySupplyOfResponse{} } func (m *QuerySupplyOfResponse) String() string { return proto.CompactTextString(m) } func (*QuerySupplyOfResponse) ProtoMessage() {} func (*QuerySupplyOfResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_1b02ea4db7d9aa9f, []int{7} + return fileDescriptor_9c6fc1939682df13, []int{7} } func (m *QuerySupplyOfResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -411,53 +411,54 @@ func (m *QuerySupplyOfResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QuerySupplyOfResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*QueryBalanceRequest)(nil), "cosmos.bank.QueryBalanceRequest") - proto.RegisterType((*QueryBalanceResponse)(nil), "cosmos.bank.QueryBalanceResponse") - proto.RegisterType((*QueryAllBalancesRequest)(nil), "cosmos.bank.QueryAllBalancesRequest") - proto.RegisterType((*QueryAllBalancesResponse)(nil), "cosmos.bank.QueryAllBalancesResponse") - proto.RegisterType((*QueryTotalSupplyRequest)(nil), "cosmos.bank.QueryTotalSupplyRequest") - proto.RegisterType((*QueryTotalSupplyResponse)(nil), "cosmos.bank.QueryTotalSupplyResponse") - proto.RegisterType((*QuerySupplyOfRequest)(nil), "cosmos.bank.QuerySupplyOfRequest") - proto.RegisterType((*QuerySupplyOfResponse)(nil), "cosmos.bank.QuerySupplyOfResponse") + proto.RegisterType((*QueryBalanceRequest)(nil), "cosmos.bank.v1beta1.QueryBalanceRequest") + proto.RegisterType((*QueryBalanceResponse)(nil), "cosmos.bank.v1beta1.QueryBalanceResponse") + proto.RegisterType((*QueryAllBalancesRequest)(nil), "cosmos.bank.v1beta1.QueryAllBalancesRequest") + proto.RegisterType((*QueryAllBalancesResponse)(nil), "cosmos.bank.v1beta1.QueryAllBalancesResponse") + proto.RegisterType((*QueryTotalSupplyRequest)(nil), "cosmos.bank.v1beta1.QueryTotalSupplyRequest") + proto.RegisterType((*QueryTotalSupplyResponse)(nil), "cosmos.bank.v1beta1.QueryTotalSupplyResponse") + proto.RegisterType((*QuerySupplyOfRequest)(nil), "cosmos.bank.v1beta1.QuerySupplyOfRequest") + proto.RegisterType((*QuerySupplyOfResponse)(nil), "cosmos.bank.v1beta1.QuerySupplyOfResponse") } -func init() { proto.RegisterFile("cosmos/bank/query.proto", fileDescriptor_1b02ea4db7d9aa9f) } +func init() { proto.RegisterFile("cosmos/bank/v1beta1/query.proto", fileDescriptor_9c6fc1939682df13) } -var fileDescriptor_1b02ea4db7d9aa9f = []byte{ - // 521 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0x3f, 0x6f, 0xd3, 0x40, - 0x1c, 0xf5, 0x15, 0x35, 0x29, 0xbf, 0x74, 0xba, 0x06, 0x35, 0xb5, 0x84, 0x13, 0x4e, 0xfc, 0x09, - 0x12, 0xb5, 0x21, 0x4c, 0x30, 0x20, 0xc5, 0x1d, 0x19, 0x28, 0x2e, 0x30, 0x54, 0x2c, 0x17, 0xc7, - 0x98, 0xa8, 0xce, 0x9d, 0x9b, 0xb3, 0xa5, 0xe6, 0x5b, 0xf0, 0x15, 0x58, 0x19, 0xf9, 0x14, 0x1d, - 0x3b, 0x22, 0x86, 0x80, 0x92, 0x8d, 0x8f, 0xc0, 0x84, 0x7c, 0x77, 0x2e, 0x4e, 0x6c, 0x85, 0x0e, - 0x74, 0xb3, 0xef, 0xde, 0xbd, 0xdf, 0x7b, 0xf7, 0x9e, 0x0d, 0xbb, 0x3e, 0x17, 0x63, 0x2e, 0x9c, - 0x01, 0x65, 0x27, 0xce, 0x69, 0x1a, 0x4c, 0xa6, 0x76, 0x3c, 0xe1, 0x09, 0xc7, 0x0d, 0xb5, 0x61, - 0x67, 0x1b, 0xe6, 0x6d, 0x8d, 0x92, 0x00, 0x27, 0xa6, 0xe1, 0x88, 0xd1, 0x64, 0xc4, 0x99, 0xc2, - 0x9a, 0xcd, 0x90, 0x87, 0x5c, 0x3e, 0x3a, 0xd9, 0x93, 0x5e, 0xdd, 0xd1, 0x87, 0x34, 0x91, 0x5c, - 0x24, 0x67, 0xb0, 0xf3, 0x3a, 0x23, 0x71, 0x69, 0x44, 0x99, 0x1f, 0x78, 0xc1, 0x69, 0x1a, 0x88, - 0x04, 0xbf, 0x84, 0x3a, 0x1d, 0x0e, 0x27, 0x81, 0x10, 0x2d, 0xd4, 0x41, 0xdd, 0x6d, 0xf7, 0xc9, - 0xef, 0x59, 0x7b, 0x3f, 0x1c, 0x25, 0x1f, 0xd3, 0x81, 0xed, 0xf3, 0xb1, 0xb3, 0xc4, 0xb5, 0x2f, - 0x86, 0x27, 0x4e, 0x32, 0x8d, 0x03, 0x61, 0xf7, 0x7d, 0xbf, 0xaf, 0x0e, 0x7a, 0x39, 0x03, 0x6e, - 0xc2, 0xe6, 0x30, 0x60, 0x7c, 0xdc, 0xda, 0xe8, 0xa0, 0xee, 0x4d, 0x4f, 0xbd, 0x90, 0x17, 0xd0, - 0x5c, 0x9e, 0x2c, 0x62, 0xce, 0x44, 0x80, 0xef, 0x43, 0x7d, 0xa0, 0x96, 0xe4, 0xe8, 0x46, 0x6f, - 0xdb, 0xd6, 0x8a, 0x0f, 0xf8, 0x88, 0x79, 0xf9, 0x26, 0xf9, 0x8c, 0x60, 0x57, 0x12, 0xf4, 0xa3, - 0x48, 0x73, 0x88, 0x6b, 0x91, 0xff, 0x0c, 0xe0, 0xef, 0x0d, 0x4b, 0x0f, 0x8d, 0xde, 0x5e, 0xae, - 0x49, 0x45, 0x74, 0x48, 0xc3, 0xfc, 0xea, 0xbc, 0x02, 0x98, 0x7c, 0x45, 0xd0, 0x2a, 0x6b, 0xd4, - 0x46, 0x8f, 0x61, 0x4b, 0x7b, 0xc9, 0x54, 0xde, 0x58, 0x75, 0xea, 0x3e, 0x3e, 0x9f, 0xb5, 0x8d, - 0x2f, 0x3f, 0xda, 0xdd, 0x2b, 0xe8, 0xce, 0x0e, 0x08, 0xef, 0x92, 0x0f, 0x3f, 0xaf, 0xd0, 0x6c, - 0x56, 0x69, 0x56, 0x5a, 0x96, 0x44, 0xef, 0xe9, 0x7b, 0x7d, 0xc3, 0x13, 0x1a, 0x1d, 0xa5, 0x71, - 0x1c, 0x4d, 0xb5, 0x37, 0x32, 0xd1, 0x76, 0x96, 0xb6, 0xb4, 0x9d, 0x77, 0x50, 0x13, 0x72, 0xe5, - 0x3f, 0x99, 0xd1, 0x6c, 0xe4, 0x91, 0xee, 0x89, 0x1a, 0xf7, 0xea, 0x43, 0x9e, 0xf1, 0x65, 0xab, - 0x50, 0xb1, 0x55, 0x0c, 0x6e, 0xad, 0xa0, 0xb5, 0xbc, 0xb7, 0x50, 0xa3, 0x63, 0x9e, 0xb2, 0xa4, - 0xaa, 0x55, 0xae, 0x93, 0xc9, 0xfb, 0x3e, 0x6b, 0x3f, 0xb8, 0xa2, 0x3c, 0x4f, 0x93, 0xf5, 0x7e, - 0x6d, 0xc0, 0xa6, 0x1c, 0x88, 0x0f, 0xa1, 0xae, 0x23, 0xc6, 0x1d, 0xbb, 0xf0, 0xb1, 0xda, 0x15, - 0xdf, 0x97, 0x79, 0x67, 0x0d, 0x42, 0x09, 0x26, 0x06, 0x7e, 0x0f, 0x8d, 0x42, 0x6f, 0xf0, 0xdd, - 0xf2, 0x99, 0x72, 0xf5, 0xcd, 0x7b, 0xff, 0x40, 0x15, 0xd9, 0x0b, 0x31, 0x56, 0xb1, 0x97, 0x0b, - 0x50, 0xc5, 0x5e, 0xd1, 0x05, 0x62, 0xe0, 0x23, 0xd8, 0xca, 0x23, 0xc0, 0x15, 0x66, 0x57, 0xc2, - 0x34, 0xc9, 0x3a, 0x48, 0x4e, 0xea, 0x1e, 0x9c, 0xcf, 0x2d, 0x74, 0x31, 0xb7, 0xd0, 0xcf, 0xb9, - 0x85, 0x3e, 0x2d, 0x2c, 0xe3, 0x62, 0x61, 0x19, 0xdf, 0x16, 0x96, 0x71, 0xfc, 0x70, 0x6d, 0x6e, - 0x67, 0xea, 0x77, 0x2a, 0xe3, 0x1b, 0xd4, 0xe4, 0x8f, 0xef, 0xe9, 0x9f, 0x00, 0x00, 0x00, 0xff, - 0xff, 0xd4, 0x4d, 0xf4, 0x62, 0x6a, 0x05, 0x00, 0x00, +var fileDescriptor_9c6fc1939682df13 = []byte{ + // 544 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x31, 0x72, 0xd3, 0x40, + 0x14, 0x95, 0xc8, 0xc4, 0x0e, 0xdf, 0x54, 0x1b, 0x33, 0x38, 0x2e, 0xa4, 0x8c, 0x0a, 0xe2, 0x64, + 0x62, 0x09, 0x3b, 0x27, 0xb0, 0x32, 0x03, 0x45, 0x0a, 0x40, 0x50, 0x51, 0xb1, 0x92, 0x17, 0xa1, + 0x89, 0xac, 0x55, 0xbc, 0x12, 0x13, 0x0f, 0x05, 0x57, 0xe0, 0x1c, 0x29, 0x38, 0x47, 0x0a, 0x8a, + 0x94, 0x0c, 0x85, 0x61, 0xec, 0x5b, 0x50, 0x31, 0xd2, 0xee, 0x0a, 0x39, 0x36, 0x8a, 0x9a, 0x54, + 0x96, 0xd7, 0xef, 0xbf, 0xff, 0xdf, 0xfb, 0x4f, 0x6b, 0xd0, 0x3d, 0xca, 0x26, 0x94, 0x59, 0x2e, + 0x8e, 0xce, 0xad, 0x4f, 0x03, 0x97, 0x24, 0x78, 0x60, 0x5d, 0xa4, 0x64, 0x3a, 0x33, 0xe3, 0x29, + 0x4d, 0x28, 0xda, 0xe5, 0x00, 0x33, 0x03, 0x98, 0x02, 0xd0, 0x3d, 0x2a, 0xaa, 0x18, 0xe1, 0xe8, + 0xa2, 0x36, 0xc6, 0x7e, 0x10, 0xe1, 0x24, 0xa0, 0x11, 0x27, 0xe8, 0xb6, 0x7d, 0xea, 0xd3, 0xfc, + 0xd1, 0xca, 0x9e, 0xc4, 0xa9, 0x56, 0x66, 0x90, 0xb5, 0x1e, 0x0d, 0x44, 0x95, 0x71, 0x09, 0xbb, + 0xaf, 0x33, 0x5e, 0x1b, 0x87, 0x38, 0xf2, 0x88, 0x43, 0x2e, 0x52, 0xc2, 0x12, 0x74, 0x06, 0x4d, + 0x3c, 0x1e, 0x4f, 0x09, 0x63, 0x1d, 0x75, 0x5f, 0xed, 0x3d, 0xb2, 0x07, 0x7f, 0xe6, 0x7a, 0xdf, + 0x0f, 0x92, 0x8f, 0xa9, 0x6b, 0x7a, 0x74, 0x62, 0x09, 0x5a, 0xfe, 0xd1, 0x67, 0xe3, 0x73, 0x2b, + 0x99, 0xc5, 0x84, 0x99, 0x23, 0xcf, 0x1b, 0xf1, 0x42, 0x47, 0x32, 0xa0, 0x36, 0x6c, 0x8f, 0x49, + 0x44, 0x27, 0x9d, 0x07, 0xfb, 0x6a, 0xef, 0xa1, 0xc3, 0xbf, 0x18, 0x67, 0xd0, 0x5e, 0xed, 0xcc, + 0x62, 0x1a, 0x31, 0x82, 0x4e, 0xa0, 0xe9, 0xf2, 0xa3, 0xbc, 0x75, 0x6b, 0xb8, 0x67, 0x16, 0xd6, + 0x30, 0x22, 0xad, 0x31, 0x4f, 0x69, 0x10, 0x39, 0x12, 0x69, 0x7c, 0x53, 0xe1, 0x49, 0xce, 0x36, + 0x0a, 0x43, 0x41, 0xc8, 0xee, 0x45, 0xcb, 0x73, 0x80, 0x7f, 0xce, 0xe7, 0x82, 0x5a, 0xc3, 0xa7, + 0x2b, 0x03, 0xf2, 0xa5, 0xca, 0x31, 0x5f, 0x61, 0x5f, 0x9a, 0xea, 0x94, 0x2a, 0x8d, 0xef, 0x2a, + 0x74, 0xd6, 0x07, 0x16, 0x16, 0xf8, 0xb0, 0x23, 0x84, 0x65, 0x23, 0x6f, 0x55, 0x7a, 0x60, 0x3f, + 0xbb, 0x9e, 0xeb, 0xca, 0xd5, 0x2f, 0xbd, 0x57, 0x43, 0x51, 0x56, 0xc0, 0x9c, 0x82, 0x1c, 0xbd, + 0xd8, 0xa0, 0xe6, 0xe0, 0x4e, 0x35, 0x7c, 0xca, 0x15, 0x39, 0x7b, 0xc2, 0xfe, 0xb7, 0x34, 0xc1, + 0xe1, 0x9b, 0x34, 0x8e, 0xc3, 0x99, 0x50, 0x6d, 0x7c, 0x11, 0x42, 0x57, 0x7e, 0x12, 0x42, 0x3d, + 0x68, 0xb0, 0xfc, 0xe4, 0x3e, 0x64, 0x0a, 0x6a, 0xe3, 0x58, 0x04, 0x8d, 0xf7, 0x7e, 0xf9, 0x41, + 0xe6, 0xa2, 0x88, 0xa5, 0x5a, 0x8e, 0xe5, 0x67, 0x78, 0x7c, 0x0b, 0x2d, 0x66, 0x75, 0xa1, 0x81, + 0x27, 0x34, 0x8d, 0x92, 0x3b, 0x63, 0x69, 0x5b, 0xd9, 0xac, 0x3f, 0xe7, 0xfa, 0x41, 0xcd, 0x59, + 0x1d, 0xc1, 0x3c, 0xbc, 0xda, 0x82, 0xed, 0xbc, 0x3b, 0x7a, 0x0f, 0x4d, 0x11, 0x0b, 0xd4, 0x33, + 0x37, 0x5c, 0x0d, 0xe6, 0x86, 0xb7, 0xb6, 0x7b, 0x58, 0x03, 0xc9, 0xd5, 0x18, 0x0a, 0x0a, 0xa1, + 0x55, 0xca, 0x1e, 0x3a, 0xfe, 0x7f, 0xed, 0xfa, 0x3b, 0xd5, 0xed, 0xd7, 0x44, 0x97, 0xbb, 0x95, + 0x02, 0x50, 0xd5, 0x6d, 0x3d, 0x42, 0x55, 0xdd, 0x36, 0xa4, 0xca, 0x50, 0x90, 0x07, 0x3b, 0x72, + 0x7f, 0xa8, 0xc2, 0x94, 0x5b, 0x89, 0xe8, 0x1e, 0xd5, 0x81, 0xca, 0x26, 0xf6, 0xe9, 0xf5, 0x42, + 0x53, 0x6f, 0x16, 0x9a, 0xfa, 0x7b, 0xa1, 0xa9, 0x5f, 0x97, 0x9a, 0x72, 0xb3, 0xd4, 0x94, 0x1f, + 0x4b, 0x4d, 0x79, 0x77, 0x58, 0xb9, 0xf7, 0x4b, 0xfe, 0x27, 0x90, 0xaf, 0xdf, 0x6d, 0xe4, 0xd7, + 0xf0, 0xc9, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x74, 0xd8, 0x3c, 0x1b, 0x20, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -492,7 +493,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Balance(ctx context.Context, in *QueryBalanceRequest, opts ...grpc.CallOption) (*QueryBalanceResponse, error) { out := new(QueryBalanceResponse) - err := c.cc.Invoke(ctx, "/cosmos.bank.Query/Balance", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.bank.v1beta1.Query/Balance", in, out, opts...) if err != nil { return nil, err } @@ -501,7 +502,7 @@ func (c *queryClient) Balance(ctx context.Context, in *QueryBalanceRequest, opts func (c *queryClient) AllBalances(ctx context.Context, in *QueryAllBalancesRequest, opts ...grpc.CallOption) (*QueryAllBalancesResponse, error) { out := new(QueryAllBalancesResponse) - err := c.cc.Invoke(ctx, "/cosmos.bank.Query/AllBalances", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.bank.v1beta1.Query/AllBalances", in, out, opts...) if err != nil { return nil, err } @@ -510,7 +511,7 @@ func (c *queryClient) AllBalances(ctx context.Context, in *QueryAllBalancesReque func (c *queryClient) TotalSupply(ctx context.Context, in *QueryTotalSupplyRequest, opts ...grpc.CallOption) (*QueryTotalSupplyResponse, error) { out := new(QueryTotalSupplyResponse) - err := c.cc.Invoke(ctx, "/cosmos.bank.Query/TotalSupply", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.bank.v1beta1.Query/TotalSupply", in, out, opts...) if err != nil { return nil, err } @@ -519,7 +520,7 @@ func (c *queryClient) TotalSupply(ctx context.Context, in *QueryTotalSupplyReque func (c *queryClient) SupplyOf(ctx context.Context, in *QuerySupplyOfRequest, opts ...grpc.CallOption) (*QuerySupplyOfResponse, error) { out := new(QuerySupplyOfResponse) - err := c.cc.Invoke(ctx, "/cosmos.bank.Query/SupplyOf", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.bank.v1beta1.Query/SupplyOf", in, out, opts...) if err != nil { return nil, err } @@ -569,7 +570,7 @@ func _Query_Balance_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.bank.Query/Balance", + FullMethod: "/cosmos.bank.v1beta1.Query/Balance", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Balance(ctx, req.(*QueryBalanceRequest)) @@ -587,7 +588,7 @@ func _Query_AllBalances_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.bank.Query/AllBalances", + FullMethod: "/cosmos.bank.v1beta1.Query/AllBalances", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AllBalances(ctx, req.(*QueryAllBalancesRequest)) @@ -605,7 +606,7 @@ func _Query_TotalSupply_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.bank.Query/TotalSupply", + FullMethod: "/cosmos.bank.v1beta1.Query/TotalSupply", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).TotalSupply(ctx, req.(*QueryTotalSupplyRequest)) @@ -623,7 +624,7 @@ func _Query_SupplyOf_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.bank.Query/SupplyOf", + FullMethod: "/cosmos.bank.v1beta1.Query/SupplyOf", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).SupplyOf(ctx, req.(*QuerySupplyOfRequest)) @@ -632,7 +633,7 @@ func _Query_SupplyOf_Handler(srv interface{}, ctx context.Context, dec func(inte } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.bank.Query", + ServiceName: "cosmos.bank.v1beta1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -653,7 +654,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/bank/query.proto", + Metadata: "cosmos/bank/v1beta1/query.proto", } func (m *QueryBalanceRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/bank/types/tx.pb.go b/x/bank/types/tx.pb.go new file mode 100644 index 0000000000..52fc8f1497 --- /dev/null +++ b/x/bank/types/tx.pb.go @@ -0,0 +1,772 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: cosmos/bank/v1beta1/tx.proto + +package types + +import ( + bytes "bytes" + fmt "fmt" + github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" + types "github.com/cosmos/cosmos-sdk/types" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" + io "io" + math "math" + math_bits "math/bits" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package + +// MsgSend - high level transaction of the coin module +type MsgSend struct { + FromAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=from_address,json=fromAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"from_address,omitempty" yaml:"from_address"` + ToAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,2,opt,name=to_address,json=toAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"to_address,omitempty" yaml:"to_address"` + Amount github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,3,rep,name=amount,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"amount"` +} + +func (m *MsgSend) Reset() { *m = MsgSend{} } +func (m *MsgSend) String() string { return proto.CompactTextString(m) } +func (*MsgSend) ProtoMessage() {} +func (*MsgSend) Descriptor() ([]byte, []int) { + return fileDescriptor_1d8cb1613481f5b7, []int{0} +} +func (m *MsgSend) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgSend) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgSend.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgSend) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgSend.Merge(m, src) +} +func (m *MsgSend) XXX_Size() int { + return m.Size() +} +func (m *MsgSend) XXX_DiscardUnknown() { + xxx_messageInfo_MsgSend.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgSend proto.InternalMessageInfo + +func (m *MsgSend) GetFromAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { + if m != nil { + return m.FromAddress + } + return nil +} + +func (m *MsgSend) GetToAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { + if m != nil { + return m.ToAddress + } + return nil +} + +func (m *MsgSend) GetAmount() github_com_cosmos_cosmos_sdk_types.Coins { + if m != nil { + return m.Amount + } + return nil +} + +// MsgMultiSend - high level transaction of the coin module +type MsgMultiSend struct { + Inputs []Input `protobuf:"bytes,1,rep,name=inputs,proto3" json:"inputs"` + Outputs []Output `protobuf:"bytes,2,rep,name=outputs,proto3" json:"outputs"` +} + +func (m *MsgMultiSend) Reset() { *m = MsgMultiSend{} } +func (m *MsgMultiSend) String() string { return proto.CompactTextString(m) } +func (*MsgMultiSend) ProtoMessage() {} +func (*MsgMultiSend) Descriptor() ([]byte, []int) { + return fileDescriptor_1d8cb1613481f5b7, []int{1} +} +func (m *MsgMultiSend) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgMultiSend) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgMultiSend.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgMultiSend) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgMultiSend.Merge(m, src) +} +func (m *MsgMultiSend) XXX_Size() int { + return m.Size() +} +func (m *MsgMultiSend) XXX_DiscardUnknown() { + xxx_messageInfo_MsgMultiSend.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgMultiSend proto.InternalMessageInfo + +func (m *MsgMultiSend) GetInputs() []Input { + if m != nil { + return m.Inputs + } + return nil +} + +func (m *MsgMultiSend) GetOutputs() []Output { + if m != nil { + return m.Outputs + } + return nil +} + +func init() { + proto.RegisterType((*MsgSend)(nil), "cosmos.bank.v1beta1.MsgSend") + proto.RegisterType((*MsgMultiSend)(nil), "cosmos.bank.v1beta1.MsgMultiSend") +} + +func init() { proto.RegisterFile("cosmos/bank/v1beta1/tx.proto", fileDescriptor_1d8cb1613481f5b7) } + +var fileDescriptor_1d8cb1613481f5b7 = []byte{ + // 383 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x49, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x4f, 0x4a, 0xcc, 0xcb, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, + 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x86, 0xc8, 0xea, 0x81, 0x64, 0xf5, + 0xa0, 0xb2, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x79, 0x7d, 0x10, 0x0b, 0xa2, 0x54, 0x4a, + 0x0e, 0x6e, 0x50, 0x71, 0x2a, 0xdc, 0xa0, 0xe4, 0xfc, 0xcc, 0x3c, 0x0c, 0x79, 0x24, 0x8b, 0xc0, + 0xe6, 0x82, 0xe5, 0x95, 0x4e, 0x30, 0x71, 0xb1, 0xfb, 0x16, 0xa7, 0x07, 0xa7, 0xe6, 0xa5, 0x08, + 0x65, 0x73, 0xf1, 0xa4, 0x15, 0xe5, 0xe7, 0xc6, 0x27, 0xa6, 0xa4, 0x14, 0xa5, 0x16, 0x17, 0x4b, + 0x30, 0x2a, 0x30, 0x6a, 0xf0, 0x38, 0x79, 0x7c, 0xba, 0x27, 0x2f, 0x5c, 0x99, 0x98, 0x9b, 0x63, + 0xa5, 0x84, 0x2c, 0xab, 0xf4, 0xeb, 0x9e, 0xbc, 0x6e, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, + 0x72, 0x7e, 0xae, 0x3e, 0xd4, 0x1e, 0x08, 0xa5, 0x5b, 0x9c, 0x92, 0xad, 0x5f, 0x52, 0x59, 0x90, + 0x5a, 0xac, 0xe7, 0x98, 0x9c, 0xec, 0x08, 0xd1, 0x11, 0xc4, 0x0d, 0xd2, 0x0f, 0xe5, 0x08, 0xa5, + 0x72, 0x71, 0x95, 0xe4, 0xc3, 0xad, 0x62, 0x02, 0x5b, 0xe5, 0xf6, 0xe9, 0x9e, 0xbc, 0x20, 0xc4, + 0x2a, 0x84, 0x1c, 0x19, 0x16, 0x71, 0x96, 0xe4, 0xc3, 0xac, 0x49, 0xe6, 0x62, 0x4b, 0xcc, 0xcd, + 0x2f, 0xcd, 0x2b, 0x91, 0x60, 0x56, 0x60, 0xd6, 0xe0, 0x36, 0x92, 0xd4, 0x83, 0x87, 0x6d, 0x71, + 0x2a, 0x2c, 0x6c, 0xf5, 0x9c, 0xf3, 0x33, 0xf3, 0x9c, 0x0c, 0x4e, 0xdc, 0x93, 0x67, 0x58, 0x75, + 0x5f, 0x5e, 0x83, 0x08, 0xcb, 0x40, 0x1a, 0x8a, 0x83, 0xa0, 0x46, 0x5b, 0xb1, 0xbc, 0x58, 0x20, + 0xcf, 0xa8, 0xd4, 0xcd, 0xc8, 0xc5, 0xe3, 0x5b, 0x9c, 0xee, 0x5b, 0x9a, 0x53, 0x92, 0x09, 0x0e, + 0x4f, 0x0b, 0x2e, 0xb6, 0xcc, 0xbc, 0x82, 0xd2, 0x12, 0x50, 0x48, 0x82, 0xec, 0x96, 0xd2, 0xc3, + 0x12, 0xaf, 0x7a, 0x9e, 0x20, 0x25, 0x4e, 0x2c, 0x20, 0xcb, 0x83, 0xa0, 0xea, 0x85, 0xac, 0xb9, + 0xd8, 0xf3, 0x4b, 0x4b, 0xc0, 0x5a, 0x99, 0xc0, 0x5a, 0xa5, 0xb1, 0x6a, 0xf5, 0x07, 0xab, 0x81, + 0xea, 0x85, 0xe9, 0x80, 0xb8, 0xc6, 0xc9, 0xf9, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, + 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, + 0x18, 0xa2, 0x34, 0xf1, 0xfa, 0xaf, 0x02, 0x92, 0x54, 0xc0, 0xde, 0x4c, 0x62, 0x03, 0x27, 0x12, + 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd4, 0x04, 0xdf, 0x97, 0xaf, 0x02, 0x00, 0x00, +} + +func (this *MsgSend) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*MsgSend) + if !ok { + that2, ok := that.(MsgSend) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !bytes.Equal(this.FromAddress, that1.FromAddress) { + return false + } + if !bytes.Equal(this.ToAddress, that1.ToAddress) { + return false + } + if len(this.Amount) != len(that1.Amount) { + return false + } + for i := range this.Amount { + if !this.Amount[i].Equal(&that1.Amount[i]) { + return false + } + } + return true +} +func (this *MsgMultiSend) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*MsgMultiSend) + if !ok { + that2, ok := that.(MsgMultiSend) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if len(this.Inputs) != len(that1.Inputs) { + return false + } + for i := range this.Inputs { + if !this.Inputs[i].Equal(&that1.Inputs[i]) { + return false + } + } + if len(this.Outputs) != len(that1.Outputs) { + return false + } + for i := range this.Outputs { + if !this.Outputs[i].Equal(&that1.Outputs[i]) { + return false + } + } + return true +} +func (m *MsgSend) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgSend) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgSend) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Amount) > 0 { + for iNdEx := len(m.Amount) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Amount[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + } + if len(m.ToAddress) > 0 { + i -= len(m.ToAddress) + copy(dAtA[i:], m.ToAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.ToAddress))) + i-- + dAtA[i] = 0x12 + } + if len(m.FromAddress) > 0 { + i -= len(m.FromAddress) + copy(dAtA[i:], m.FromAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.FromAddress))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *MsgMultiSend) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgMultiSend) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgMultiSend) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Outputs) > 0 { + for iNdEx := len(m.Outputs) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Outputs[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + } + if len(m.Inputs) > 0 { + for iNdEx := len(m.Inputs) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Inputs[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func encodeVarintTx(dAtA []byte, offset int, v uint64) int { + offset -= sovTx(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *MsgSend) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.FromAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + l = len(m.ToAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + if len(m.Amount) > 0 { + for _, e := range m.Amount { + l = e.Size() + n += 1 + l + sovTx(uint64(l)) + } + } + return n +} + +func (m *MsgMultiSend) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Inputs) > 0 { + for _, e := range m.Inputs { + l = e.Size() + n += 1 + l + sovTx(uint64(l)) + } + } + if len(m.Outputs) > 0 { + for _, e := range m.Outputs { + l = e.Size() + n += 1 + l + sovTx(uint64(l)) + } + } + return n +} + +func sovTx(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozTx(x uint64) (n int) { + return sovTx(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *MsgSend) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgSend: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgSend: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field FromAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.FromAddress = append(m.FromAddress[:0], dAtA[iNdEx:postIndex]...) + if m.FromAddress == nil { + m.FromAddress = []byte{} + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ToAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ToAddress = append(m.ToAddress[:0], dAtA[iNdEx:postIndex]...) + if m.ToAddress == nil { + m.ToAddress = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Amount = append(m.Amount, types.Coin{}) + if err := m.Amount[len(m.Amount)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgMultiSend) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgMultiSend: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgMultiSend: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Inputs", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Inputs = append(m.Inputs, Input{}) + if err := m.Inputs[len(m.Inputs)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Outputs", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Outputs = append(m.Outputs, Output{}) + if err := m.Outputs[len(m.Outputs)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipTx(dAtA []byte) (n int, err error) { + l := len(dAtA) + iNdEx := 0 + depth := 0 + for iNdEx < l { + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + wireType := int(wire & 0x7) + switch wireType { + case 0: + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + iNdEx++ + if dAtA[iNdEx-1] < 0x80 { + break + } + } + case 1: + iNdEx += 8 + case 2: + var length int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + length |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if length < 0 { + return 0, ErrInvalidLengthTx + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupTx + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthTx + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthTx = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowTx = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group") +) diff --git a/x/capability/types/capability.pb.go b/x/capability/types/capability.pb.go index 33c9b798f8..a38ff08af4 100644 --- a/x/capability/types/capability.pb.go +++ b/x/capability/types/capability.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/capability/capability.proto +// source: cosmos/capability/v1beta1/capability.proto package types @@ -32,7 +32,7 @@ type Capability struct { func (m *Capability) Reset() { *m = Capability{} } func (*Capability) ProtoMessage() {} func (*Capability) Descriptor() ([]byte, []int) { - return fileDescriptor_ed9f06ee1908474a, []int{0} + return fileDescriptor_6308261edd8470a9, []int{0} } func (m *Capability) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +78,7 @@ type Owner struct { func (m *Owner) Reset() { *m = Owner{} } func (*Owner) ProtoMessage() {} func (*Owner) Descriptor() ([]byte, []int) { - return fileDescriptor_ed9f06ee1908474a, []int{1} + return fileDescriptor_6308261edd8470a9, []int{1} } func (m *Owner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -117,7 +117,7 @@ func (m *CapabilityOwners) Reset() { *m = CapabilityOwners{} } func (m *CapabilityOwners) String() string { return proto.CompactTextString(m) } func (*CapabilityOwners) ProtoMessage() {} func (*CapabilityOwners) Descriptor() ([]byte, []int) { - return fileDescriptor_ed9f06ee1908474a, []int{2} + return fileDescriptor_6308261edd8470a9, []int{2} } func (m *CapabilityOwners) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -154,35 +154,36 @@ func (m *CapabilityOwners) GetOwners() []Owner { } func init() { - proto.RegisterType((*Capability)(nil), "cosmos.capability.Capability") - proto.RegisterType((*Owner)(nil), "cosmos.capability.Owner") - proto.RegisterType((*CapabilityOwners)(nil), "cosmos.capability.CapabilityOwners") + proto.RegisterType((*Capability)(nil), "cosmos.capability.v1beta1.Capability") + proto.RegisterType((*Owner)(nil), "cosmos.capability.v1beta1.Owner") + proto.RegisterType((*CapabilityOwners)(nil), "cosmos.capability.v1beta1.CapabilityOwners") } func init() { - proto.RegisterFile("cosmos/capability/capability.proto", fileDescriptor_ed9f06ee1908474a) + proto.RegisterFile("cosmos/capability/v1beta1/capability.proto", fileDescriptor_6308261edd8470a9) } -var fileDescriptor_ed9f06ee1908474a = []byte{ - // 288 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4a, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x4e, 0x2c, 0x48, 0x4c, 0xca, 0xcc, 0xc9, 0x2c, 0xa9, 0x44, 0x62, 0xea, - 0x15, 0x14, 0xe5, 0x97, 0xe4, 0x0b, 0x09, 0x42, 0xd4, 0xe8, 0x21, 0x24, 0xa4, 0x44, 0xd2, 0xf3, - 0xd3, 0xf3, 0xc1, 0xb2, 0xfa, 0x20, 0x16, 0x44, 0xa1, 0x92, 0x15, 0x17, 0x97, 0x33, 0x5c, 0x8d, - 0x90, 0x1a, 0x17, 0x6b, 0x66, 0x5e, 0x4a, 0x6a, 0x85, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x8b, 0x93, - 0xc0, 0xa7, 0x7b, 0xf2, 0x3c, 0x95, 0x89, 0xb9, 0x39, 0x56, 0x4a, 0x60, 0x61, 0xa5, 0x20, 0x88, - 0xb4, 0x15, 0xcb, 0x8c, 0x05, 0xf2, 0x0c, 0x4a, 0x89, 0x5c, 0xac, 0xfe, 0xe5, 0x79, 0xa9, 0x45, - 0x42, 0x9a, 0x5c, 0x6c, 0xb9, 0xf9, 0x29, 0xa5, 0x39, 0xa9, 0x60, 0x7d, 0x9c, 0x4e, 0x82, 0x9f, - 0xee, 0xc9, 0xf3, 0x42, 0xf4, 0x41, 0xc4, 0x95, 0x82, 0xa0, 0x0a, 0x84, 0x94, 0xb9, 0x58, 0xf2, - 0x12, 0x73, 0x53, 0x25, 0x98, 0xc0, 0x0a, 0xf9, 0x3f, 0xdd, 0x93, 0xe7, 0x86, 0x28, 0x04, 0x89, - 0x2a, 0x05, 0x81, 0x25, 0xad, 0x38, 0x3a, 0x16, 0xc8, 0x33, 0x80, 0xad, 0xf0, 0xe2, 0x12, 0x40, - 0x38, 0x0f, 0x6c, 0x59, 0xb1, 0x90, 0x19, 0x17, 0x5b, 0x3e, 0x98, 0x25, 0xc1, 0xa8, 0xc0, 0xac, - 0xc1, 0x6d, 0x24, 0xa1, 0x87, 0xe1, 0x59, 0x3d, 0xb0, 0x52, 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, - 0x82, 0xa0, 0xaa, 0x9d, 0x3c, 0x4f, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, - 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0x4a, - 0x3f, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0x16, 0xb8, 0x60, 0x4a, - 0xb7, 0x38, 0x25, 0x5b, 0xbf, 0x02, 0x39, 0xa4, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, - 0x81, 0x67, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xdd, 0x3f, 0x01, 0xd9, 0x8b, 0x01, 0x00, 0x00, +var fileDescriptor_6308261edd8470a9 = []byte{ + // 299 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x4a, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x4f, 0x4e, 0x2c, 0x48, 0x4c, 0xca, 0xcc, 0xc9, 0x2c, 0xa9, 0xd4, 0x2f, 0x33, + 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0x44, 0x12, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x84, + 0xa8, 0xd5, 0x43, 0x92, 0x80, 0xaa, 0x95, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xab, 0xd2, 0x07, + 0xb1, 0x20, 0x1a, 0x94, 0xac, 0xb8, 0xb8, 0x9c, 0xe1, 0x6a, 0x85, 0xd4, 0xb8, 0x58, 0x33, 0xf3, + 0x52, 0x52, 0x2b, 0x24, 0x18, 0x15, 0x18, 0x35, 0x58, 0x9c, 0x04, 0x3e, 0xdd, 0x93, 0xe7, 0xa9, + 0x4c, 0xcc, 0xcd, 0xb1, 0x52, 0x02, 0x0b, 0x2b, 0x05, 0x41, 0xa4, 0xad, 0x58, 0x66, 0x2c, 0x90, + 0x67, 0x50, 0x4a, 0xe4, 0x62, 0xf5, 0x2f, 0xcf, 0x4b, 0x2d, 0x12, 0xd2, 0xe4, 0x62, 0xcb, 0xcd, + 0x4f, 0x29, 0xcd, 0x49, 0x05, 0xeb, 0xe3, 0x74, 0x12, 0xfc, 0x74, 0x4f, 0x9e, 0x17, 0xa2, 0x0f, + 0x22, 0xae, 0x14, 0x04, 0x55, 0x20, 0xa4, 0xcc, 0xc5, 0x92, 0x97, 0x98, 0x9b, 0x2a, 0xc1, 0x04, + 0x56, 0xc8, 0xff, 0xe9, 0x9e, 0x3c, 0x37, 0x44, 0x21, 0x48, 0x54, 0x29, 0x08, 0x2c, 0x69, 0xc5, + 0xd1, 0xb1, 0x40, 0x9e, 0x01, 0x6c, 0x45, 0x10, 0x97, 0x00, 0xc2, 0x79, 0x60, 0xcb, 0x8a, 0x85, + 0xec, 0xb8, 0xd8, 0xf2, 0xc1, 0x2c, 0x09, 0x46, 0x05, 0x66, 0x0d, 0x6e, 0x23, 0x05, 0x3d, 0x9c, + 0x9e, 0xd6, 0x03, 0x6b, 0x71, 0x62, 0x39, 0x71, 0x4f, 0x9e, 0x21, 0x08, 0xaa, 0xcb, 0xc9, 0xf3, + 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, + 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0xf4, 0xd3, 0x33, 0x4b, 0x32, 0x4a, + 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x61, 0x81, 0x0e, 0xa6, 0x74, 0x8b, 0x53, 0xb2, 0xf5, 0x2b, + 0x90, 0x63, 0xa0, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x1c, 0x88, 0xc6, 0x80, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x1d, 0xc9, 0xe6, 0xa8, 0xa3, 0x01, 0x00, 0x00, } func (m *Capability) Marshal() (dAtA []byte, err error) { diff --git a/x/capability/types/genesis.pb.go b/x/capability/types/genesis.pb.go index dc8c0377e5..66eecc3162 100644 --- a/x/capability/types/genesis.pb.go +++ b/x/capability/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/capability/genesis.proto +// source: cosmos/capability/v1beta1/genesis.proto package types @@ -33,7 +33,7 @@ func (m *GenesisOwners) Reset() { *m = GenesisOwners{} } func (m *GenesisOwners) String() string { return proto.CompactTextString(m) } func (*GenesisOwners) ProtoMessage() {} func (*GenesisOwners) Descriptor() ([]byte, []int) { - return fileDescriptor_b0ea5aff5facb31f, []int{0} + return fileDescriptor_94922dd16a11c23e, []int{0} } func (m *GenesisOwners) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -89,7 +89,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_b0ea5aff5facb31f, []int{1} + return fileDescriptor_94922dd16a11c23e, []int{1} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -133,31 +133,34 @@ func (m *GenesisState) GetOwners() []GenesisOwners { } func init() { - proto.RegisterType((*GenesisOwners)(nil), "cosmos.capability.GenesisOwners") - proto.RegisterType((*GenesisState)(nil), "cosmos.capability.GenesisState") + proto.RegisterType((*GenesisOwners)(nil), "cosmos.capability.v1beta1.GenesisOwners") + proto.RegisterType((*GenesisState)(nil), "cosmos.capability.v1beta1.GenesisState") } -func init() { proto.RegisterFile("cosmos/capability/genesis.proto", fileDescriptor_b0ea5aff5facb31f) } +func init() { + proto.RegisterFile("cosmos/capability/v1beta1/genesis.proto", fileDescriptor_94922dd16a11c23e) +} -var fileDescriptor_b0ea5aff5facb31f = []byte{ - // 270 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4f, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x4e, 0x2c, 0x48, 0x4c, 0xca, 0xcc, 0xc9, 0x2c, 0xa9, 0xd4, 0x4f, 0x4f, - 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x84, 0x28, 0xd0, - 0x43, 0x28, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xcb, 0xea, 0x83, 0x58, 0x10, 0x85, 0x52, - 0x4a, 0x98, 0x26, 0x21, 0x98, 0x10, 0x35, 0x4a, 0xfd, 0x8c, 0x5c, 0xbc, 0xee, 0x10, 0xe3, 0xfd, - 0xcb, 0xf3, 0x52, 0x8b, 0x8a, 0x85, 0x44, 0xb8, 0x58, 0x33, 0xf3, 0x52, 0x52, 0x2b, 0x24, 0x18, - 0x15, 0x18, 0x35, 0x58, 0x82, 0x20, 0x1c, 0xa1, 0x0c, 0x2e, 0xb6, 0x7c, 0xb0, 0xbc, 0x04, 0x93, - 0x02, 0xa3, 0x06, 0xb7, 0x91, 0xb2, 0x1e, 0x86, 0x2b, 0xf4, 0x9c, 0xe1, 0x4c, 0x88, 0x51, 0x4e, - 0xda, 0x27, 0xee, 0xc9, 0x33, 0xbc, 0xba, 0x27, 0xcf, 0x03, 0x36, 0x23, 0x1e, 0x62, 0xc0, 0xa7, - 0x7b, 0xf2, 0xc2, 0x95, 0x89, 0xb9, 0x39, 0x56, 0x4a, 0xc8, 0xa2, 0x4a, 0x41, 0x50, 0xf3, 0x95, - 0x52, 0xb8, 0x78, 0xa0, 0x0e, 0x0a, 0x2e, 0x49, 0x2c, 0x49, 0xc5, 0xe1, 0x1e, 0x3b, 0x24, 0xf7, - 0x30, 0x6b, 0x70, 0x1b, 0x29, 0x60, 0x71, 0x0f, 0x8a, 0xbf, 0x9c, 0x58, 0x40, 0x8e, 0x81, 0xd9, - 0xe2, 0xe4, 0x79, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, - 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0xfa, 0xe9, 0x99, - 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xb0, 0x00, 0x04, 0x53, 0xba, 0xc5, 0x29, - 0xd9, 0xfa, 0x15, 0xc8, 0xa1, 0x59, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x0e, 0x49, 0x63, - 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x48, 0xa3, 0xc6, 0xf7, 0xb9, 0x01, 0x00, 0x00, +var fileDescriptor_94922dd16a11c23e = []byte{ + // 282 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4f, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x4f, 0x4e, 0x2c, 0x48, 0x4c, 0xca, 0xcc, 0xc9, 0x2c, 0xa9, 0xd4, 0x2f, 0x33, + 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, + 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x84, 0x28, 0xd4, 0x43, 0x28, 0xd4, 0x83, 0x2a, 0x94, 0x12, 0x49, + 0xcf, 0x4f, 0xcf, 0x07, 0xab, 0xd2, 0x07, 0xb1, 0x20, 0x1a, 0xa4, 0xb4, 0x70, 0x9b, 0x8c, 0x64, + 0x06, 0x58, 0xad, 0xd2, 0x74, 0x46, 0x2e, 0x5e, 0x77, 0x88, 0x75, 0xfe, 0xe5, 0x79, 0xa9, 0x45, + 0xc5, 0x42, 0x22, 0x5c, 0xac, 0x99, 0x79, 0x29, 0xa9, 0x15, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x2c, + 0x41, 0x10, 0x8e, 0x50, 0x01, 0x17, 0x5b, 0x3e, 0x58, 0x5e, 0x82, 0x49, 0x81, 0x51, 0x83, 0xdb, + 0x48, 0x5b, 0x0f, 0xa7, 0xab, 0xf4, 0x9c, 0xe1, 0x42, 0x10, 0x23, 0x9d, 0xb4, 0x4f, 0xdc, 0x93, + 0x67, 0x78, 0x75, 0x4f, 0x9e, 0x07, 0x6c, 0x56, 0x3c, 0xc4, 0xa0, 0x4f, 0xf7, 0xe4, 0x85, 0x2b, + 0x13, 0x73, 0x73, 0xac, 0x94, 0x90, 0x45, 0x95, 0x82, 0xa0, 0xf6, 0x28, 0xe5, 0x70, 0xf1, 0x40, + 0x1d, 0x16, 0x5c, 0x92, 0x58, 0x92, 0x8a, 0xc3, 0x5d, 0x6e, 0x48, 0xee, 0x62, 0xd6, 0xe0, 0x36, + 0xd2, 0xc0, 0xe3, 0x2e, 0x14, 0x7f, 0x3a, 0xb1, 0x80, 0x1c, 0x05, 0xb3, 0xcd, 0xc9, 0xf3, 0xc4, + 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, + 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0xf4, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, + 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x61, 0x01, 0x0b, 0xa6, 0x74, 0x8b, 0x53, 0xb2, 0xf5, 0x2b, 0x90, + 0x43, 0xb9, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x1c, 0xb2, 0xc6, 0x80, 0x00, 0x00, 0x00, + 0xff, 0xff, 0x44, 0x83, 0x9f, 0x99, 0xe1, 0x01, 0x00, 0x00, } func (m *GenesisOwners) Marshal() (dAtA []byte, err error) { diff --git a/x/crisis/types/genesis.pb.go b/x/crisis/types/genesis.pb.go index 5195e280c1..e6920f7dec 100644 --- a/x/crisis/types/genesis.pb.go +++ b/x/crisis/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/crisis/genesis.proto +// source: cosmos/crisis/v1beta1/genesis.proto package types @@ -34,7 +34,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_174b7a013a29fb57, []int{0} + return fileDescriptor_7a9c2781aa8a27ae, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -64,27 +64,31 @@ func (m *GenesisState) XXX_DiscardUnknown() { var xxx_messageInfo_GenesisState proto.InternalMessageInfo func init() { - proto.RegisterType((*GenesisState)(nil), "cosmos.crisis.GenesisState") + proto.RegisterType((*GenesisState)(nil), "cosmos.crisis.v1beta1.GenesisState") } -func init() { proto.RegisterFile("cosmos/crisis/genesis.proto", fileDescriptor_174b7a013a29fb57) } +func init() { + proto.RegisterFile("cosmos/crisis/v1beta1/genesis.proto", fileDescriptor_7a9c2781aa8a27ae) +} -var fileDescriptor_174b7a013a29fb57 = []byte{ - // 222 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4e, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x2e, 0xca, 0x2c, 0xce, 0x2c, 0xd6, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, - 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x85, 0x48, 0xea, 0x41, 0x24, 0xa5, 0x44, - 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x32, 0xfa, 0x20, 0x16, 0x44, 0x91, 0x94, 0x30, 0xcc, 0x04, 0x88, - 0x5a, 0xb0, 0xa0, 0x52, 0x3b, 0x23, 0x17, 0x8f, 0x3b, 0xc4, 0xac, 0xe0, 0x92, 0xc4, 0x92, 0x54, - 0xa1, 0x72, 0x2e, 0x9e, 0xe4, 0xfc, 0xbc, 0xe2, 0x92, 0xc4, 0xbc, 0x92, 0xf8, 0xb4, 0xd4, 0x54, - 0x09, 0x66, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x1e, 0x3d, 0xa8, 0x2e, 0xe7, 0xfc, 0xcc, 0x3c, 0x27, - 0xb7, 0x13, 0xf7, 0xe4, 0x19, 0x6e, 0xdd, 0x93, 0x57, 0x4f, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, - 0x4b, 0xce, 0xcf, 0xd5, 0x47, 0x31, 0x5c, 0xb7, 0x38, 0x25, 0x5b, 0xbf, 0xa4, 0xb2, 0x20, 0x15, - 0xa2, 0xe1, 0xd3, 0x3d, 0x79, 0xe1, 0xca, 0xc4, 0xdc, 0x1c, 0x2b, 0x25, 0x64, 0xa3, 0x95, 0x82, - 0xb8, 0x61, 0x5c, 0xb7, 0xd4, 0x54, 0x27, 0xd7, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, - 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, - 0x63, 0x88, 0xd2, 0xc6, 0x6b, 0x4d, 0x05, 0x2c, 0x48, 0xc0, 0xf6, 0x25, 0xb1, 0x81, 0xfd, 0x65, - 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xd8, 0x7d, 0x6a, 0xff, 0x30, 0x01, 0x00, 0x00, +var fileDescriptor_7a9c2781aa8a27ae = []byte{ + // 251 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4e, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x4f, 0x2e, 0xca, 0x2c, 0xce, 0x2c, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, + 0x34, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, + 0x12, 0x85, 0x28, 0xd2, 0x83, 0x28, 0xd2, 0x83, 0x2a, 0x92, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, + 0xab, 0xd0, 0x07, 0xb1, 0x20, 0x8a, 0xa5, 0xe4, 0xa0, 0x26, 0x26, 0x25, 0x16, 0xa7, 0xc2, 0xcd, + 0x4b, 0xce, 0xcf, 0xcc, 0x83, 0xc8, 0x2b, 0x4d, 0x65, 0xe4, 0xe2, 0x71, 0x87, 0x18, 0x1f, 0x5c, + 0x92, 0x58, 0x92, 0x2a, 0xd4, 0xc2, 0xc8, 0xc5, 0x93, 0x9c, 0x9f, 0x57, 0x5c, 0x92, 0x98, 0x57, + 0x12, 0x9f, 0x96, 0x9a, 0x2a, 0xc1, 0xac, 0xc0, 0xa8, 0xc1, 0x6d, 0x24, 0xa9, 0x07, 0xb5, 0x15, + 0x64, 0x10, 0xcc, 0x4e, 0x3d, 0xe7, 0xfc, 0xcc, 0x3c, 0x27, 0xb7, 0x13, 0xf7, 0xe4, 0x19, 0x6e, + 0xdd, 0x93, 0x57, 0x4f, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x87, 0xf9, + 0x03, 0x4c, 0xe9, 0x16, 0xa7, 0x64, 0xeb, 0x97, 0x54, 0x16, 0xa4, 0x16, 0x83, 0x35, 0x7c, 0xba, + 0x27, 0x2f, 0x5c, 0x99, 0x98, 0x9b, 0x63, 0xa5, 0x84, 0x6c, 0x8f, 0x52, 0x10, 0x37, 0x8c, 0xeb, + 0x96, 0x9a, 0xea, 0xe4, 0x7a, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, + 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0xda, + 0x78, 0xad, 0xa9, 0x80, 0x85, 0x1d, 0xd8, 0xbe, 0x24, 0x36, 0xb0, 0x2f, 0x8d, 0x01, 0x01, 0x00, + 0x00, 0xff, 0xff, 0x08, 0x1c, 0xb6, 0x7f, 0x59, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/crisis/types/crisis.pb.go b/x/crisis/types/tx.pb.go similarity index 71% rename from x/crisis/types/crisis.pb.go rename to x/crisis/types/tx.pb.go index 7ed33013e1..0157664c82 100644 --- a/x/crisis/types/crisis.pb.go +++ b/x/crisis/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/crisis/crisis.proto +// source: cosmos/crisis/v1beta1/tx.proto package types @@ -36,7 +36,7 @@ func (m *MsgVerifyInvariant) Reset() { *m = MsgVerifyInvariant{} } func (m *MsgVerifyInvariant) String() string { return proto.CompactTextString(m) } func (*MsgVerifyInvariant) ProtoMessage() {} func (*MsgVerifyInvariant) Descriptor() ([]byte, []int) { - return fileDescriptor_cc68222b2e6ddda9, []int{0} + return fileDescriptor_61276163172fe867, []int{0} } func (m *MsgVerifyInvariant) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -87,31 +87,32 @@ func (m *MsgVerifyInvariant) GetInvariantRoute() string { } func init() { - proto.RegisterType((*MsgVerifyInvariant)(nil), "cosmos.crisis.MsgVerifyInvariant") + proto.RegisterType((*MsgVerifyInvariant)(nil), "cosmos.crisis.v1beta1.MsgVerifyInvariant") } -func init() { proto.RegisterFile("cosmos/crisis/crisis.proto", fileDescriptor_cc68222b2e6ddda9) } +func init() { proto.RegisterFile("cosmos/crisis/v1beta1/tx.proto", fileDescriptor_61276163172fe867) } -var fileDescriptor_cc68222b2e6ddda9 = []byte{ - // 282 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4a, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x2e, 0xca, 0x2c, 0xce, 0x84, 0x51, 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, - 0x42, 0xbc, 0x10, 0x39, 0x3d, 0x88, 0xa0, 0x94, 0x48, 0x7a, 0x7e, 0x7a, 0x3e, 0x58, 0x46, 0x1f, - 0xc4, 0x82, 0x28, 0x52, 0x6a, 0x60, 0xe2, 0x12, 0xf2, 0x2d, 0x4e, 0x0f, 0x4b, 0x2d, 0xca, 0x4c, - 0xab, 0xf4, 0xcc, 0x2b, 0x4b, 0x2c, 0xca, 0x4c, 0xcc, 0x2b, 0x11, 0xf2, 0xe4, 0x62, 0x2b, 0x4e, - 0xcd, 0x4b, 0x49, 0x2d, 0x92, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x71, 0x32, 0xfc, 0x75, 0x4f, 0x5e, - 0x37, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0x66, 0x2d, 0x98, 0xd2, - 0x2d, 0x4e, 0xc9, 0xd6, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x73, 0x4c, 0x4e, 0x76, 0x4c, 0x49, - 0x29, 0x4a, 0x2d, 0x2e, 0x0e, 0x82, 0x1a, 0x20, 0x14, 0xc2, 0x25, 0x9a, 0x09, 0x33, 0x37, 0x3e, - 0x37, 0x3f, 0xa5, 0x34, 0x27, 0x35, 0x3e, 0x2f, 0x31, 0x37, 0x55, 0x82, 0x49, 0x81, 0x51, 0x83, - 0xd3, 0x49, 0xe1, 0xd3, 0x3d, 0x79, 0x99, 0xca, 0xc4, 0xdc, 0x1c, 0x2b, 0x25, 0xac, 0xca, 0x94, - 0x82, 0x84, 0xe1, 0xe2, 0xbe, 0x60, 0x61, 0xbf, 0xc4, 0xdc, 0x54, 0x21, 0x67, 0x2e, 0x7e, 0x84, - 0xf2, 0xa2, 0xfc, 0xd2, 0x92, 0x54, 0x09, 0x66, 0xb0, 0x79, 0x52, 0x9f, 0xee, 0xc9, 0x8b, 0xa1, - 0x9b, 0x07, 0x56, 0xa0, 0x14, 0xc4, 0x07, 0x17, 0x09, 0x02, 0x09, 0x58, 0xb1, 0xbc, 0x58, 0x20, - 0xcf, 0xe8, 0xe4, 0x7a, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, - 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0xda, 0x78, - 0x7d, 0x5c, 0x01, 0x0b, 0x75, 0xb0, 0xd7, 0x93, 0xd8, 0xc0, 0x01, 0x6a, 0x0c, 0x08, 0x00, 0x00, - 0xff, 0xff, 0xe1, 0xbb, 0x7c, 0x71, 0x93, 0x01, 0x00, 0x00, +var fileDescriptor_61276163172fe867 = []byte{ + // 296 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x4f, 0x2e, 0xca, 0x2c, 0xce, 0x2c, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, + 0x34, 0xd4, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x85, 0xc8, 0xeb, 0x41, + 0xe4, 0xf5, 0xa0, 0xf2, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x15, 0xfa, 0x20, 0x16, 0x44, + 0xb1, 0x52, 0x03, 0x13, 0x97, 0x90, 0x6f, 0x71, 0x7a, 0x58, 0x6a, 0x51, 0x66, 0x5a, 0xa5, 0x67, + 0x5e, 0x59, 0x62, 0x51, 0x66, 0x62, 0x5e, 0x89, 0x90, 0x27, 0x17, 0x5b, 0x71, 0x6a, 0x5e, 0x4a, + 0x6a, 0x91, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x8f, 0x93, 0xe1, 0xaf, 0x7b, 0xf2, 0xba, 0xe9, 0x99, + 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0x30, 0x27, 0x80, 0x29, 0xdd, 0xe2, 0x94, + 0x6c, 0xfd, 0x92, 0xca, 0x82, 0xd4, 0x62, 0x3d, 0xc7, 0xe4, 0x64, 0xc7, 0x94, 0x94, 0xa2, 0xd4, + 0xe2, 0xe2, 0x20, 0xa8, 0x01, 0x42, 0x21, 0x5c, 0xa2, 0x99, 0x30, 0x73, 0xe3, 0x73, 0xf3, 0x53, + 0x4a, 0x73, 0x52, 0xe3, 0xf3, 0x12, 0x73, 0x53, 0x25, 0x98, 0x14, 0x18, 0x35, 0x38, 0x9d, 0x14, + 0x3e, 0xdd, 0x93, 0x97, 0xa9, 0x4c, 0xcc, 0xcd, 0xb1, 0x52, 0xc2, 0xaa, 0x4c, 0x29, 0x48, 0x18, + 0x2e, 0xee, 0x0b, 0x16, 0xf6, 0x4b, 0xcc, 0x4d, 0x15, 0x72, 0xe6, 0xe2, 0x47, 0x28, 0x2f, 0xca, + 0x2f, 0x2d, 0x49, 0x95, 0x60, 0x06, 0x9b, 0x27, 0xf5, 0xe9, 0x9e, 0xbc, 0x18, 0xba, 0x79, 0x60, + 0x05, 0x4a, 0x41, 0x7c, 0x70, 0x91, 0x20, 0x90, 0x80, 0x15, 0xcb, 0x8b, 0x05, 0xf2, 0x8c, 0x4e, + 0xae, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, + 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x8d, 0xd7, 0xc7, 0x15, + 0xb0, 0x18, 0x00, 0x7b, 0x3d, 0x89, 0x0d, 0x1c, 0xa0, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, + 0xb0, 0xb6, 0x10, 0xbd, 0x9f, 0x01, 0x00, 0x00, } func (this *MsgVerifyInvariant) Equal(that interface{}) bool { @@ -167,29 +168,29 @@ func (m *MsgVerifyInvariant) MarshalToSizedBuffer(dAtA []byte) (int, error) { if len(m.InvariantRoute) > 0 { i -= len(m.InvariantRoute) copy(dAtA[i:], m.InvariantRoute) - i = encodeVarintCrisis(dAtA, i, uint64(len(m.InvariantRoute))) + i = encodeVarintTx(dAtA, i, uint64(len(m.InvariantRoute))) i-- dAtA[i] = 0x1a } if len(m.InvariantModuleName) > 0 { i -= len(m.InvariantModuleName) copy(dAtA[i:], m.InvariantModuleName) - i = encodeVarintCrisis(dAtA, i, uint64(len(m.InvariantModuleName))) + i = encodeVarintTx(dAtA, i, uint64(len(m.InvariantModuleName))) i-- dAtA[i] = 0x12 } if len(m.Sender) > 0 { i -= len(m.Sender) copy(dAtA[i:], m.Sender) - i = encodeVarintCrisis(dAtA, i, uint64(len(m.Sender))) + i = encodeVarintTx(dAtA, i, uint64(len(m.Sender))) i-- dAtA[i] = 0xa } return len(dAtA) - i, nil } -func encodeVarintCrisis(dAtA []byte, offset int, v uint64) int { - offset -= sovCrisis(v) +func encodeVarintTx(dAtA []byte, offset int, v uint64) int { + offset -= sovTx(v) base := offset for v >= 1<<7 { dAtA[offset] = uint8(v&0x7f | 0x80) @@ -207,24 +208,24 @@ func (m *MsgVerifyInvariant) Size() (n int) { _ = l l = len(m.Sender) if l > 0 { - n += 1 + l + sovCrisis(uint64(l)) + n += 1 + l + sovTx(uint64(l)) } l = len(m.InvariantModuleName) if l > 0 { - n += 1 + l + sovCrisis(uint64(l)) + n += 1 + l + sovTx(uint64(l)) } l = len(m.InvariantRoute) if l > 0 { - n += 1 + l + sovCrisis(uint64(l)) + n += 1 + l + sovTx(uint64(l)) } return n } -func sovCrisis(x uint64) (n int) { +func sovTx(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } -func sozCrisis(x uint64) (n int) { - return sovCrisis(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +func sozTx(x uint64) (n int) { + return sovTx(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } func (m *MsgVerifyInvariant) Unmarshal(dAtA []byte) error { l := len(dAtA) @@ -234,7 +235,7 @@ func (m *MsgVerifyInvariant) Unmarshal(dAtA []byte) error { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCrisis + return ErrIntOverflowTx } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -262,7 +263,7 @@ func (m *MsgVerifyInvariant) Unmarshal(dAtA []byte) error { var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCrisis + return ErrIntOverflowTx } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -275,11 +276,11 @@ func (m *MsgVerifyInvariant) Unmarshal(dAtA []byte) error { } } if byteLen < 0 { - return ErrInvalidLengthCrisis + return ErrInvalidLengthTx } postIndex := iNdEx + byteLen if postIndex < 0 { - return ErrInvalidLengthCrisis + return ErrInvalidLengthTx } if postIndex > l { return io.ErrUnexpectedEOF @@ -296,7 +297,7 @@ func (m *MsgVerifyInvariant) Unmarshal(dAtA []byte) error { var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCrisis + return ErrIntOverflowTx } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -310,11 +311,11 @@ func (m *MsgVerifyInvariant) Unmarshal(dAtA []byte) error { } intStringLen := int(stringLen) if intStringLen < 0 { - return ErrInvalidLengthCrisis + return ErrInvalidLengthTx } postIndex := iNdEx + intStringLen if postIndex < 0 { - return ErrInvalidLengthCrisis + return ErrInvalidLengthTx } if postIndex > l { return io.ErrUnexpectedEOF @@ -328,7 +329,7 @@ func (m *MsgVerifyInvariant) Unmarshal(dAtA []byte) error { var stringLen uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return ErrIntOverflowCrisis + return ErrIntOverflowTx } if iNdEx >= l { return io.ErrUnexpectedEOF @@ -342,11 +343,11 @@ func (m *MsgVerifyInvariant) Unmarshal(dAtA []byte) error { } intStringLen := int(stringLen) if intStringLen < 0 { - return ErrInvalidLengthCrisis + return ErrInvalidLengthTx } postIndex := iNdEx + intStringLen if postIndex < 0 { - return ErrInvalidLengthCrisis + return ErrInvalidLengthTx } if postIndex > l { return io.ErrUnexpectedEOF @@ -355,15 +356,15 @@ func (m *MsgVerifyInvariant) Unmarshal(dAtA []byte) error { iNdEx = postIndex default: iNdEx = preIndex - skippy, err := skipCrisis(dAtA[iNdEx:]) + skippy, err := skipTx(dAtA[iNdEx:]) if err != nil { return err } if skippy < 0 { - return ErrInvalidLengthCrisis + return ErrInvalidLengthTx } if (iNdEx + skippy) < 0 { - return ErrInvalidLengthCrisis + return ErrInvalidLengthTx } if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF @@ -377,7 +378,7 @@ func (m *MsgVerifyInvariant) Unmarshal(dAtA []byte) error { } return nil } -func skipCrisis(dAtA []byte) (n int, err error) { +func skipTx(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 depth := 0 @@ -385,7 +386,7 @@ func skipCrisis(dAtA []byte) (n int, err error) { var wire uint64 for shift := uint(0); ; shift += 7 { if shift >= 64 { - return 0, ErrIntOverflowCrisis + return 0, ErrIntOverflowTx } if iNdEx >= l { return 0, io.ErrUnexpectedEOF @@ -402,7 +403,7 @@ func skipCrisis(dAtA []byte) (n int, err error) { case 0: for shift := uint(0); ; shift += 7 { if shift >= 64 { - return 0, ErrIntOverflowCrisis + return 0, ErrIntOverflowTx } if iNdEx >= l { return 0, io.ErrUnexpectedEOF @@ -418,7 +419,7 @@ func skipCrisis(dAtA []byte) (n int, err error) { var length int for shift := uint(0); ; shift += 7 { if shift >= 64 { - return 0, ErrIntOverflowCrisis + return 0, ErrIntOverflowTx } if iNdEx >= l { return 0, io.ErrUnexpectedEOF @@ -431,14 +432,14 @@ func skipCrisis(dAtA []byte) (n int, err error) { } } if length < 0 { - return 0, ErrInvalidLengthCrisis + return 0, ErrInvalidLengthTx } iNdEx += length case 3: depth++ case 4: if depth == 0 { - return 0, ErrUnexpectedEndOfGroupCrisis + return 0, ErrUnexpectedEndOfGroupTx } depth-- case 5: @@ -447,7 +448,7 @@ func skipCrisis(dAtA []byte) (n int, err error) { return 0, fmt.Errorf("proto: illegal wireType %d", wireType) } if iNdEx < 0 { - return 0, ErrInvalidLengthCrisis + return 0, ErrInvalidLengthTx } if depth == 0 { return iNdEx, nil @@ -457,7 +458,7 @@ func skipCrisis(dAtA []byte) (n int, err error) { } var ( - ErrInvalidLengthCrisis = fmt.Errorf("proto: negative length found during unmarshaling") - ErrIntOverflowCrisis = fmt.Errorf("proto: integer overflow") - ErrUnexpectedEndOfGroupCrisis = fmt.Errorf("proto: unexpected end of group") + ErrInvalidLengthTx = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowTx = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group") ) diff --git a/x/distribution/types/distribution.pb.go b/x/distribution/types/distribution.pb.go index 99aac37200..2149d45380 100644 --- a/x/distribution/types/distribution.pb.go +++ b/x/distribution/types/distribution.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/distribution/distribution.proto +// source: cosmos/distribution/v1beta1/distribution.proto package types @@ -26,211 +26,6 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package -// msg struct for changing the withdraw address for a delegator (or validator self-delegation) -type MsgSetWithdrawAddress struct { - DelegatorAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=delegator_address,json=delegatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"delegator_address,omitempty" yaml:"delegator_address"` - WithdrawAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,2,opt,name=withdraw_address,json=withdrawAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"withdraw_address,omitempty" yaml:"withdraw_address"` -} - -func (m *MsgSetWithdrawAddress) Reset() { *m = MsgSetWithdrawAddress{} } -func (m *MsgSetWithdrawAddress) String() string { return proto.CompactTextString(m) } -func (*MsgSetWithdrawAddress) ProtoMessage() {} -func (*MsgSetWithdrawAddress) Descriptor() ([]byte, []int) { - return fileDescriptor_49870d4e3df20cf9, []int{0} -} -func (m *MsgSetWithdrawAddress) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgSetWithdrawAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgSetWithdrawAddress.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgSetWithdrawAddress) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgSetWithdrawAddress.Merge(m, src) -} -func (m *MsgSetWithdrawAddress) XXX_Size() int { - return m.Size() -} -func (m *MsgSetWithdrawAddress) XXX_DiscardUnknown() { - xxx_messageInfo_MsgSetWithdrawAddress.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgSetWithdrawAddress proto.InternalMessageInfo - -func (m *MsgSetWithdrawAddress) GetDelegatorAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { - if m != nil { - return m.DelegatorAddress - } - return nil -} - -func (m *MsgSetWithdrawAddress) GetWithdrawAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { - if m != nil { - return m.WithdrawAddress - } - return nil -} - -// msg struct for delegation withdraw from a single validator -type MsgWithdrawDelegatorReward struct { - DelegatorAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=delegator_address,json=delegatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"delegator_address,omitempty" yaml:"delegator_address"` - ValidatorAddress github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,2,opt,name=validator_address,json=validatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"validator_address,omitempty" yaml:"validator_address"` -} - -func (m *MsgWithdrawDelegatorReward) Reset() { *m = MsgWithdrawDelegatorReward{} } -func (m *MsgWithdrawDelegatorReward) String() string { return proto.CompactTextString(m) } -func (*MsgWithdrawDelegatorReward) ProtoMessage() {} -func (*MsgWithdrawDelegatorReward) Descriptor() ([]byte, []int) { - return fileDescriptor_49870d4e3df20cf9, []int{1} -} -func (m *MsgWithdrawDelegatorReward) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgWithdrawDelegatorReward) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgWithdrawDelegatorReward.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgWithdrawDelegatorReward) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgWithdrawDelegatorReward.Merge(m, src) -} -func (m *MsgWithdrawDelegatorReward) XXX_Size() int { - return m.Size() -} -func (m *MsgWithdrawDelegatorReward) XXX_DiscardUnknown() { - xxx_messageInfo_MsgWithdrawDelegatorReward.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgWithdrawDelegatorReward proto.InternalMessageInfo - -func (m *MsgWithdrawDelegatorReward) GetDelegatorAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { - if m != nil { - return m.DelegatorAddress - } - return nil -} - -func (m *MsgWithdrawDelegatorReward) GetValidatorAddress() github_com_cosmos_cosmos_sdk_types.ValAddress { - if m != nil { - return m.ValidatorAddress - } - return nil -} - -// msg struct for validator withdraw -type MsgWithdrawValidatorCommission struct { - ValidatorAddress github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,1,opt,name=validator_address,json=validatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"validator_address,omitempty" yaml:"validator_address"` -} - -func (m *MsgWithdrawValidatorCommission) Reset() { *m = MsgWithdrawValidatorCommission{} } -func (m *MsgWithdrawValidatorCommission) String() string { return proto.CompactTextString(m) } -func (*MsgWithdrawValidatorCommission) ProtoMessage() {} -func (*MsgWithdrawValidatorCommission) Descriptor() ([]byte, []int) { - return fileDescriptor_49870d4e3df20cf9, []int{2} -} -func (m *MsgWithdrawValidatorCommission) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgWithdrawValidatorCommission) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgWithdrawValidatorCommission.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgWithdrawValidatorCommission) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgWithdrawValidatorCommission.Merge(m, src) -} -func (m *MsgWithdrawValidatorCommission) XXX_Size() int { - return m.Size() -} -func (m *MsgWithdrawValidatorCommission) XXX_DiscardUnknown() { - xxx_messageInfo_MsgWithdrawValidatorCommission.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgWithdrawValidatorCommission proto.InternalMessageInfo - -func (m *MsgWithdrawValidatorCommission) GetValidatorAddress() github_com_cosmos_cosmos_sdk_types.ValAddress { - if m != nil { - return m.ValidatorAddress - } - return nil -} - -// MsgFundCommunityPool defines a Msg type that allows an account to directly -// fund the community pool. -type MsgFundCommunityPool struct { - Amount github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,1,rep,name=amount,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"amount"` - Depositor github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,2,opt,name=depositor,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"depositor,omitempty"` -} - -func (m *MsgFundCommunityPool) Reset() { *m = MsgFundCommunityPool{} } -func (m *MsgFundCommunityPool) String() string { return proto.CompactTextString(m) } -func (*MsgFundCommunityPool) ProtoMessage() {} -func (*MsgFundCommunityPool) Descriptor() ([]byte, []int) { - return fileDescriptor_49870d4e3df20cf9, []int{3} -} -func (m *MsgFundCommunityPool) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgFundCommunityPool) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgFundCommunityPool.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgFundCommunityPool) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgFundCommunityPool.Merge(m, src) -} -func (m *MsgFundCommunityPool) XXX_Size() int { - return m.Size() -} -func (m *MsgFundCommunityPool) XXX_DiscardUnknown() { - xxx_messageInfo_MsgFundCommunityPool.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgFundCommunityPool proto.InternalMessageInfo - -func (m *MsgFundCommunityPool) GetAmount() github_com_cosmos_cosmos_sdk_types.Coins { - if m != nil { - return m.Amount - } - return nil -} - -func (m *MsgFundCommunityPool) GetDepositor() github_com_cosmos_cosmos_sdk_types.AccAddress { - if m != nil { - return m.Depositor - } - return nil -} - // Params defines the set of distribution parameters. type Params struct { CommunityTax github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,1,opt,name=community_tax,json=communityTax,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"community_tax" yaml:"community_tax"` @@ -242,7 +37,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_49870d4e3df20cf9, []int{4} + return fileDescriptor_cd78a31ea281a992, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -299,7 +94,7 @@ func (m *ValidatorHistoricalRewards) Reset() { *m = ValidatorHistoricalR func (m *ValidatorHistoricalRewards) String() string { return proto.CompactTextString(m) } func (*ValidatorHistoricalRewards) ProtoMessage() {} func (*ValidatorHistoricalRewards) Descriptor() ([]byte, []int) { - return fileDescriptor_49870d4e3df20cf9, []int{5} + return fileDescriptor_cd78a31ea281a992, []int{1} } func (m *ValidatorHistoricalRewards) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -354,7 +149,7 @@ func (m *ValidatorCurrentRewards) Reset() { *m = ValidatorCurrentRewards func (m *ValidatorCurrentRewards) String() string { return proto.CompactTextString(m) } func (*ValidatorCurrentRewards) ProtoMessage() {} func (*ValidatorCurrentRewards) Descriptor() ([]byte, []int) { - return fileDescriptor_49870d4e3df20cf9, []int{6} + return fileDescriptor_cd78a31ea281a992, []int{2} } func (m *ValidatorCurrentRewards) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -407,7 +202,7 @@ func (m *ValidatorAccumulatedCommission) Reset() { *m = ValidatorAccumul func (m *ValidatorAccumulatedCommission) String() string { return proto.CompactTextString(m) } func (*ValidatorAccumulatedCommission) ProtoMessage() {} func (*ValidatorAccumulatedCommission) Descriptor() ([]byte, []int) { - return fileDescriptor_49870d4e3df20cf9, []int{7} + return fileDescriptor_cd78a31ea281a992, []int{3} } func (m *ValidatorAccumulatedCommission) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -453,7 +248,7 @@ func (m *ValidatorOutstandingRewards) Reset() { *m = ValidatorOutstandin func (m *ValidatorOutstandingRewards) String() string { return proto.CompactTextString(m) } func (*ValidatorOutstandingRewards) ProtoMessage() {} func (*ValidatorOutstandingRewards) Descriptor() ([]byte, []int) { - return fileDescriptor_49870d4e3df20cf9, []int{8} + return fileDescriptor_cd78a31ea281a992, []int{4} } func (m *ValidatorOutstandingRewards) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -502,7 +297,7 @@ func (m *ValidatorSlashEvent) Reset() { *m = ValidatorSlashEvent{} } func (m *ValidatorSlashEvent) String() string { return proto.CompactTextString(m) } func (*ValidatorSlashEvent) ProtoMessage() {} func (*ValidatorSlashEvent) Descriptor() ([]byte, []int) { - return fileDescriptor_49870d4e3df20cf9, []int{9} + return fileDescriptor_cd78a31ea281a992, []int{5} } func (m *ValidatorSlashEvent) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -546,7 +341,7 @@ type ValidatorSlashEvents struct { func (m *ValidatorSlashEvents) Reset() { *m = ValidatorSlashEvents{} } func (*ValidatorSlashEvents) ProtoMessage() {} func (*ValidatorSlashEvents) Descriptor() ([]byte, []int) { - return fileDescriptor_49870d4e3df20cf9, []int{10} + return fileDescriptor_cd78a31ea281a992, []int{6} } func (m *ValidatorSlashEvents) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -591,7 +386,7 @@ func (m *FeePool) Reset() { *m = FeePool{} } func (m *FeePool) String() string { return proto.CompactTextString(m) } func (*FeePool) ProtoMessage() {} func (*FeePool) Descriptor() ([]byte, []int) { - return fileDescriptor_49870d4e3df20cf9, []int{11} + return fileDescriptor_cd78a31ea281a992, []int{7} } func (m *FeePool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -638,7 +433,7 @@ type CommunityPoolSpendProposal struct { func (m *CommunityPoolSpendProposal) Reset() { *m = CommunityPoolSpendProposal{} } func (*CommunityPoolSpendProposal) ProtoMessage() {} func (*CommunityPoolSpendProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_49870d4e3df20cf9, []int{12} + return fileDescriptor_cd78a31ea281a992, []int{8} } func (m *CommunityPoolSpendProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -684,7 +479,7 @@ func (m *DelegatorStartingInfo) Reset() { *m = DelegatorStartingInfo{} } func (m *DelegatorStartingInfo) String() string { return proto.CompactTextString(m) } func (*DelegatorStartingInfo) ProtoMessage() {} func (*DelegatorStartingInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_49870d4e3df20cf9, []int{13} + return fileDescriptor_cd78a31ea281a992, []int{9} } func (m *DelegatorStartingInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -738,7 +533,7 @@ func (m *DelegationDelegatorReward) Reset() { *m = DelegationDelegatorRe func (m *DelegationDelegatorReward) String() string { return proto.CompactTextString(m) } func (*DelegationDelegatorReward) ProtoMessage() {} func (*DelegationDelegatorReward) Descriptor() ([]byte, []int) { - return fileDescriptor_49870d4e3df20cf9, []int{14} + return fileDescriptor_cd78a31ea281a992, []int{10} } func (m *DelegationDelegatorReward) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -782,212 +577,91 @@ func (m *DelegationDelegatorReward) GetReward() github_com_cosmos_cosmos_sdk_typ } func init() { - proto.RegisterType((*MsgSetWithdrawAddress)(nil), "cosmos.distribution.MsgSetWithdrawAddress") - proto.RegisterType((*MsgWithdrawDelegatorReward)(nil), "cosmos.distribution.MsgWithdrawDelegatorReward") - proto.RegisterType((*MsgWithdrawValidatorCommission)(nil), "cosmos.distribution.MsgWithdrawValidatorCommission") - proto.RegisterType((*MsgFundCommunityPool)(nil), "cosmos.distribution.MsgFundCommunityPool") - proto.RegisterType((*Params)(nil), "cosmos.distribution.Params") - proto.RegisterType((*ValidatorHistoricalRewards)(nil), "cosmos.distribution.ValidatorHistoricalRewards") - proto.RegisterType((*ValidatorCurrentRewards)(nil), "cosmos.distribution.ValidatorCurrentRewards") - proto.RegisterType((*ValidatorAccumulatedCommission)(nil), "cosmos.distribution.ValidatorAccumulatedCommission") - proto.RegisterType((*ValidatorOutstandingRewards)(nil), "cosmos.distribution.ValidatorOutstandingRewards") - proto.RegisterType((*ValidatorSlashEvent)(nil), "cosmos.distribution.ValidatorSlashEvent") - proto.RegisterType((*ValidatorSlashEvents)(nil), "cosmos.distribution.ValidatorSlashEvents") - proto.RegisterType((*FeePool)(nil), "cosmos.distribution.FeePool") - proto.RegisterType((*CommunityPoolSpendProposal)(nil), "cosmos.distribution.CommunityPoolSpendProposal") - proto.RegisterType((*DelegatorStartingInfo)(nil), "cosmos.distribution.DelegatorStartingInfo") - proto.RegisterType((*DelegationDelegatorReward)(nil), "cosmos.distribution.DelegationDelegatorReward") + proto.RegisterType((*Params)(nil), "cosmos.distribution.v1beta1.Params") + proto.RegisterType((*ValidatorHistoricalRewards)(nil), "cosmos.distribution.v1beta1.ValidatorHistoricalRewards") + proto.RegisterType((*ValidatorCurrentRewards)(nil), "cosmos.distribution.v1beta1.ValidatorCurrentRewards") + proto.RegisterType((*ValidatorAccumulatedCommission)(nil), "cosmos.distribution.v1beta1.ValidatorAccumulatedCommission") + proto.RegisterType((*ValidatorOutstandingRewards)(nil), "cosmos.distribution.v1beta1.ValidatorOutstandingRewards") + proto.RegisterType((*ValidatorSlashEvent)(nil), "cosmos.distribution.v1beta1.ValidatorSlashEvent") + proto.RegisterType((*ValidatorSlashEvents)(nil), "cosmos.distribution.v1beta1.ValidatorSlashEvents") + proto.RegisterType((*FeePool)(nil), "cosmos.distribution.v1beta1.FeePool") + proto.RegisterType((*CommunityPoolSpendProposal)(nil), "cosmos.distribution.v1beta1.CommunityPoolSpendProposal") + proto.RegisterType((*DelegatorStartingInfo)(nil), "cosmos.distribution.v1beta1.DelegatorStartingInfo") + proto.RegisterType((*DelegationDelegatorReward)(nil), "cosmos.distribution.v1beta1.DelegationDelegatorReward") } func init() { - proto.RegisterFile("cosmos/distribution/distribution.proto", fileDescriptor_49870d4e3df20cf9) + proto.RegisterFile("cosmos/distribution/v1beta1/distribution.proto", fileDescriptor_cd78a31ea281a992) } -var fileDescriptor_49870d4e3df20cf9 = []byte{ - // 1126 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x57, 0xcd, 0x6f, 0x1b, 0x45, - 0x14, 0xf7, 0xb8, 0xae, 0x9b, 0x4c, 0xd3, 0xa4, 0xdd, 0xd8, 0x49, 0x70, 0xc0, 0x1b, 0x8d, 0x44, - 0x15, 0x09, 0xc5, 0xa1, 0xf4, 0x96, 0x03, 0x52, 0x9c, 0x0f, 0x01, 0x6a, 0x48, 0xb4, 0x09, 0x41, - 0x42, 0x08, 0x6b, 0xbc, 0x3b, 0x71, 0x46, 0x59, 0xef, 0xac, 0x66, 0xc6, 0xf9, 0xe8, 0x05, 0xa9, - 0xe2, 0xeb, 0x80, 0x44, 0x91, 0x38, 0x70, 0x40, 0xa8, 0x07, 0x0e, 0xd0, 0x7f, 0x82, 0x6b, 0x8f, - 0xbd, 0x81, 0x38, 0xb8, 0x28, 0xb9, 0x71, 0x8c, 0xc4, 0x01, 0x4e, 0x68, 0x67, 0x66, 0x77, 0x6d, - 0xc7, 0x85, 0x38, 0x8a, 0xe8, 0xcd, 0xfb, 0xe6, 0xcd, 0xef, 0xf7, 0x9b, 0xf7, 0xde, 0xbc, 0x37, - 0x86, 0xb7, 0x5d, 0x26, 0x9a, 0x4c, 0xcc, 0x7b, 0x54, 0x48, 0x4e, 0xeb, 0x2d, 0x49, 0x59, 0xd0, - 0xf5, 0x51, 0x09, 0x39, 0x93, 0xcc, 0x1a, 0xd7, 0x7e, 0x95, 0xce, 0xa5, 0x52, 0xa1, 0xc1, 0x1a, - 0x4c, 0xad, 0xcf, 0x47, 0xbf, 0xb4, 0x6b, 0xc9, 0xb8, 0xce, 0x9b, 0x1d, 0xca, 0x88, 0xbe, 0xcc, - 0xc2, 0xe2, 0x9a, 0x68, 0x6c, 0x12, 0xf9, 0x3e, 0x95, 0xbb, 0x1e, 0xc7, 0x07, 0x8b, 0x9e, 0xc7, - 0x89, 0x10, 0xd6, 0x7d, 0x78, 0xcb, 0x23, 0x3e, 0x69, 0x60, 0xc9, 0x78, 0x0d, 0x6b, 0xe3, 0x14, - 0x98, 0x01, 0xb3, 0x23, 0xd5, 0xb5, 0xd3, 0xb6, 0x3d, 0x75, 0x84, 0x9b, 0xfe, 0x02, 0x3a, 0xe3, - 0x82, 0xfe, 0x6e, 0xdb, 0x73, 0x0d, 0x2a, 0x77, 0x5b, 0xf5, 0x8a, 0xcb, 0x9a, 0xf3, 0x5d, 0xa4, - 0x73, 0xc2, 0xdb, 0x9b, 0x97, 0x47, 0x21, 0x11, 0x95, 0x45, 0xd7, 0x35, 0x4c, 0xce, 0xcd, 0x04, - 0x24, 0xe6, 0x3e, 0x80, 0x37, 0x0f, 0x8c, 0x9c, 0x84, 0x3a, 0xab, 0xa8, 0xef, 0x9d, 0xb6, 0xed, - 0x49, 0x4d, 0xdd, 0xeb, 0x71, 0x01, 0xe6, 0xb1, 0x83, 0xee, 0x43, 0xa3, 0x6f, 0xb2, 0xb0, 0xb4, - 0x26, 0x1a, 0x71, 0x2c, 0x96, 0x63, 0x61, 0x0e, 0x39, 0xc0, 0xdc, 0x7b, 0xa1, 0x31, 0xb9, 0x0f, - 0x6f, 0xed, 0x63, 0x9f, 0x7a, 0x5d, 0xdc, 0xd9, 0x5e, 0xee, 0x33, 0x2e, 0xe7, 0xe5, 0xde, 0xc6, - 0x7e, 0xc2, 0x9d, 0x80, 0xc4, 0x61, 0xf9, 0x0e, 0xc0, 0x72, 0x47, 0x58, 0xb6, 0xe3, 0xf5, 0x25, - 0xd6, 0x6c, 0x52, 0x21, 0x28, 0x0b, 0xfa, 0xcb, 0x03, 0xff, 0x8f, 0xbc, 0x9f, 0x01, 0x2c, 0xac, - 0x89, 0xc6, 0x6a, 0x2b, 0xf0, 0x22, 0x45, 0xad, 0x80, 0xca, 0xa3, 0x0d, 0xc6, 0x7c, 0x6b, 0x1b, - 0xe6, 0x71, 0x93, 0xb5, 0x02, 0x39, 0x05, 0x66, 0xae, 0xcc, 0x5e, 0x7f, 0x63, 0xa4, 0x62, 0x8a, - 0x7f, 0x89, 0xd1, 0xa0, 0xfa, 0xfa, 0x93, 0xb6, 0x9d, 0x79, 0xfc, 0xcc, 0x9e, 0x3d, 0x07, 0x7f, - 0xb4, 0x41, 0x38, 0x06, 0xcd, 0x5a, 0x87, 0xc3, 0x1e, 0x09, 0x99, 0xa0, 0x92, 0x71, 0x93, 0x83, - 0x3b, 0x83, 0xe7, 0x38, 0xc5, 0x40, 0xbf, 0x5c, 0x81, 0xf9, 0x0d, 0xcc, 0x71, 0x53, 0x58, 0x7b, - 0xf0, 0x86, 0x1b, 0x1f, 0xa2, 0x26, 0xf1, 0xa1, 0x0a, 0xe2, 0x70, 0x75, 0x35, 0x12, 0xfb, 0x5b, - 0xdb, 0xbe, 0x7d, 0x0e, 0x8e, 0x65, 0xe2, 0x9e, 0xb6, 0xed, 0x82, 0x0e, 0x79, 0x17, 0x18, 0x72, - 0x46, 0x92, 0xef, 0x2d, 0x7c, 0x68, 0x7d, 0x0c, 0x0b, 0x75, 0x2c, 0x48, 0x2d, 0xe4, 0x2c, 0x64, - 0x82, 0xf0, 0x1a, 0x57, 0x85, 0xae, 0xce, 0x34, 0x5c, 0x5d, 0x1b, 0x98, 0x73, 0x5a, 0x73, 0xf6, - 0xc3, 0x44, 0x8e, 0x15, 0x99, 0x37, 0x8c, 0xd5, 0xdc, 0xa8, 0x07, 0x00, 0x16, 0xeb, 0x2c, 0x68, - 0x89, 0x33, 0x12, 0xae, 0x28, 0x09, 0xef, 0x0e, 0x2c, 0xe1, 0x65, 0x23, 0xa1, 0x1f, 0x28, 0x72, - 0xc6, 0x95, 0xbd, 0x47, 0xc4, 0x16, 0x2c, 0x76, 0x35, 0x93, 0x1a, 0x09, 0x70, 0xdd, 0x27, 0xde, - 0x54, 0x6e, 0x06, 0xcc, 0x0e, 0x55, 0x67, 0x52, 0xd4, 0xbe, 0x6e, 0xc8, 0x19, 0xef, 0xec, 0x23, - 0x2b, 0xda, 0xba, 0x90, 0xfb, 0xf6, 0x91, 0x9d, 0x41, 0x0f, 0xb2, 0xb0, 0x94, 0xdc, 0x97, 0xb7, - 0xa8, 0x90, 0x8c, 0x53, 0x17, 0xfb, 0x9a, 0x59, 0x58, 0xdf, 0x03, 0x38, 0xe9, 0xb6, 0x9a, 0x2d, - 0x1f, 0x4b, 0xba, 0x4f, 0x8c, 0xcc, 0x1a, 0xc7, 0x92, 0x32, 0x53, 0xb3, 0x63, 0x71, 0xcd, 0x2e, - 0x13, 0x57, 0x95, 0xed, 0x7b, 0x51, 0x48, 0x4e, 0xdb, 0x76, 0xd9, 0xe4, 0xb7, 0xff, 0x6e, 0xf4, - 0xf8, 0x99, 0xfd, 0xda, 0xf9, 0x82, 0xa6, 0x6b, 0xbb, 0x98, 0x02, 0x69, 0x71, 0x4e, 0x04, 0x63, - 0x2d, 0xc1, 0x31, 0x4e, 0x76, 0x08, 0x27, 0x81, 0x4b, 0x6a, 0xae, 0xba, 0x4b, 0x51, 0x71, 0xdc, - 0xa8, 0x96, 0x4e, 0xdb, 0xf6, 0x84, 0x96, 0xd0, 0xe3, 0x80, 0x9c, 0xd1, 0xc4, 0xb2, 0xa4, 0x0c, - 0x5f, 0x03, 0x38, 0x99, 0x36, 0x8d, 0x16, 0xe7, 0x24, 0x90, 0x71, 0x04, 0x3e, 0x82, 0xd7, 0xb4, - 0x6e, 0xf1, 0xbc, 0x03, 0xdf, 0x35, 0xf7, 0x74, 0xa0, 0xe3, 0xc4, 0xa0, 0xd6, 0x04, 0xcc, 0x87, - 0x84, 0x53, 0xa6, 0x8b, 0x3a, 0xe7, 0x98, 0x2f, 0xf4, 0x19, 0x80, 0xe5, 0x44, 0xd3, 0xa2, 0x6b, - 0x4e, 0x4f, 0xbc, 0x8e, 0x9e, 0xe6, 0x41, 0xe8, 0x26, 0x5f, 0x97, 0xaa, 0xae, 0x03, 0x17, 0x7d, - 0x05, 0xe0, 0x74, 0x22, 0x64, 0xbd, 0x25, 0x85, 0xc4, 0x81, 0x47, 0x83, 0x46, 0x1c, 0xa0, 0xf0, - 0x3f, 0x03, 0xb4, 0x62, 0x2a, 0x62, 0x34, 0x4e, 0x87, 0xf2, 0x46, 0x17, 0x0d, 0x19, 0xfa, 0x09, - 0xc0, 0xf1, 0x44, 0xd1, 0xa6, 0x8f, 0xc5, 0xee, 0xca, 0x3e, 0x09, 0xa4, 0xb5, 0x0a, 0xd3, 0xde, - 0x5b, 0x33, 0x41, 0x8d, 0xba, 0x53, 0xae, 0x3a, 0x9d, 0x8e, 0xe5, 0x5e, 0x0f, 0xe4, 0x8c, 0x25, - 0xa6, 0x0d, 0x65, 0xb1, 0xde, 0x81, 0x43, 0x3b, 0x1c, 0xbb, 0xd1, 0x5b, 0xc5, 0x74, 0x9a, 0xca, - 0x60, 0xd7, 0xdc, 0x49, 0xf6, 0xa3, 0x1f, 0x00, 0x2c, 0xf4, 0xd1, 0x2a, 0xac, 0x4f, 0x01, 0x9c, - 0x48, 0xb5, 0x88, 0x68, 0xa5, 0x46, 0xd4, 0x92, 0x09, 0xe3, 0x6c, 0xa5, 0xcf, 0xdb, 0xa9, 0xd2, - 0x07, 0xab, 0xfa, 0xaa, 0x89, 0xef, 0x2b, 0xbd, 0x27, 0xec, 0x44, 0x45, 0x4e, 0x61, 0xbf, 0x8f, - 0x0e, 0xd3, 0x06, 0x1e, 0x02, 0x78, 0x6d, 0x95, 0x10, 0x35, 0x95, 0x3e, 0x01, 0x70, 0x34, 0xed, - 0xca, 0x21, 0x63, 0xfe, 0xf3, 0x12, 0x7b, 0xcf, 0x10, 0x17, 0x7b, 0x5b, 0x79, 0xb4, 0x69, 0xe0, - 0xfc, 0xa6, 0x73, 0x25, 0x92, 0x81, 0x3e, 0xcf, 0xc2, 0x52, 0xd7, 0xb8, 0xdc, 0x0c, 0x49, 0xe0, - 0xe9, 0xd6, 0x88, 0x7d, 0xab, 0x00, 0xaf, 0x4a, 0x2a, 0x7d, 0xa2, 0xe7, 0x8f, 0xa3, 0x3f, 0xac, - 0x19, 0x78, 0xdd, 0x23, 0xc2, 0xe5, 0x34, 0x4c, 0xb3, 0xe7, 0x74, 0x9a, 0xa2, 0xd9, 0xc8, 0x89, - 0x4b, 0x43, 0x4a, 0x02, 0xa9, 0x9a, 0xf8, 0xc5, 0x66, 0x63, 0x82, 0xd1, 0x31, 0xc4, 0x73, 0x97, - 0x39, 0xc4, 0x17, 0x86, 0xbe, 0x78, 0x64, 0x67, 0x54, 0x72, 0xfe, 0x02, 0xb0, 0x98, 0x3c, 0xf5, - 0x36, 0x25, 0xe6, 0x92, 0x06, 0x8d, 0xb7, 0x83, 0x1d, 0xd5, 0xfd, 0x42, 0x4e, 0xf6, 0x29, 0x8b, - 0x66, 0x49, 0x67, 0xc1, 0x77, 0x74, 0xbf, 0x1e, 0x07, 0xe4, 0x8c, 0xc6, 0x16, 0x53, 0xee, 0x5b, - 0xf0, 0xaa, 0x90, 0x78, 0x8f, 0x98, 0x5a, 0x7f, 0x73, 0xe0, 0x91, 0x36, 0xa2, 0x89, 0x14, 0x08, - 0x72, 0x34, 0x98, 0xb5, 0x02, 0xf3, 0xbb, 0x84, 0x36, 0x76, 0x75, 0x90, 0x73, 0xd5, 0xb9, 0x3f, - 0xda, 0xf6, 0x98, 0xcb, 0x49, 0xd4, 0xb5, 0x83, 0x9a, 0x5e, 0x4a, 0x45, 0xf6, 0x2c, 0x20, 0xc7, - 0x6c, 0x46, 0x7f, 0x02, 0xf8, 0x92, 0x39, 0x3b, 0x65, 0x41, 0x9f, 0x07, 0xef, 0x8b, 0x7a, 0xd5, - 0x59, 0x1f, 0xc2, 0x7c, 0xf2, 0x1a, 0xb9, 0xbc, 0xce, 0x6b, 0x30, 0xab, 0xeb, 0x3f, 0x1e, 0x97, - 0xc1, 0x93, 0xe3, 0x32, 0x78, 0x7a, 0x5c, 0x06, 0xbf, 0x1f, 0x97, 0xc1, 0xc3, 0x93, 0x72, 0xe6, - 0xe9, 0x49, 0x39, 0xf3, 0xeb, 0x49, 0x39, 0xf3, 0xc1, 0x9d, 0x7f, 0x85, 0x3c, 0xec, 0xfe, 0x5b, - 0xa6, 0x18, 0xea, 0x79, 0xf5, 0x87, 0xea, 0xee, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xd9, 0xca, - 0xc4, 0x1b, 0xba, 0x0d, 0x00, 0x00, +var fileDescriptor_cd78a31ea281a992 = []byte{ + // 1017 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcf, 0x6f, 0x1b, 0x45, + 0x14, 0xf6, 0x26, 0xae, 0x9b, 0x4e, 0xd3, 0x04, 0x36, 0x4e, 0xe2, 0x3a, 0x65, 0xd7, 0x1a, 0x09, + 0x14, 0x09, 0xc5, 0x6e, 0xe8, 0x2d, 0x07, 0xa4, 0xac, 0x9b, 0x08, 0x10, 0x25, 0xd1, 0x36, 0xf4, + 0xc0, 0x65, 0x35, 0xde, 0x9d, 0xd8, 0xa3, 0xec, 0xee, 0x2c, 0x33, 0x63, 0x27, 0x41, 0x42, 0x48, + 0x3d, 0x71, 0x41, 0x80, 0xe0, 0xc0, 0x01, 0x50, 0x8f, 0xfc, 0xfa, 0x43, 0x7a, 0xec, 0x0d, 0xc4, + 0xc1, 0xa0, 0xe4, 0xc6, 0xd1, 0x37, 0x38, 0xa1, 0x9d, 0x19, 0xef, 0x3a, 0xc6, 0xaa, 0x6c, 0xa4, + 0x9e, 0xec, 0xf9, 0xe6, 0xcd, 0xf7, 0xbe, 0xf9, 0xde, 0xcc, 0x9b, 0x05, 0x75, 0x9f, 0xf2, 0x88, + 0xf2, 0x46, 0x40, 0xb8, 0x60, 0xa4, 0xd5, 0x15, 0x84, 0xc6, 0x8d, 0xde, 0x76, 0x0b, 0x0b, 0xb4, + 0x7d, 0x05, 0xac, 0x27, 0x8c, 0x0a, 0x6a, 0x6e, 0xa8, 0xf8, 0xfa, 0x95, 0x29, 0x1d, 0x5f, 0x2d, + 0xb7, 0x69, 0x9b, 0xca, 0xb8, 0x46, 0xfa, 0x4f, 0x2d, 0xa9, 0x5a, 0x3a, 0x45, 0x0b, 0x71, 0x9c, + 0x51, 0xfb, 0x94, 0x68, 0x4a, 0xf8, 0xeb, 0x3c, 0x28, 0x1d, 0x22, 0x86, 0x22, 0x6e, 0x9e, 0x80, + 0x5b, 0x3e, 0x8d, 0xa2, 0x6e, 0x4c, 0xc4, 0xb9, 0x27, 0xd0, 0x59, 0xc5, 0xa8, 0x19, 0x9b, 0x37, + 0x9c, 0xfd, 0xa7, 0x7d, 0xbb, 0xf0, 0x7b, 0xdf, 0x7e, 0xad, 0x4d, 0x44, 0xa7, 0xdb, 0xaa, 0xfb, + 0x34, 0x6a, 0x68, 0x52, 0xf5, 0xb3, 0xc5, 0x83, 0x93, 0x86, 0x38, 0x4f, 0x30, 0xaf, 0xdf, 0xc7, + 0xfe, 0xa0, 0x6f, 0x97, 0xcf, 0x51, 0x14, 0xee, 0xc0, 0x2b, 0x64, 0xd0, 0x5d, 0xcc, 0xc6, 0x47, + 0xe8, 0xcc, 0xfc, 0x04, 0x94, 0x53, 0x49, 0x5e, 0xc2, 0x68, 0x42, 0x39, 0x66, 0x1e, 0xc3, 0xa7, + 0x88, 0x05, 0x95, 0x39, 0x99, 0xf3, 0xc1, 0xcc, 0x39, 0x37, 0x54, 0xce, 0x49, 0x9c, 0xd0, 0x35, + 0x53, 0xf8, 0x50, 0xa3, 0xae, 0x04, 0xcd, 0xc7, 0x06, 0x58, 0x6d, 0xd1, 0xb8, 0xcb, 0xff, 0x23, + 0x61, 0x5e, 0x4a, 0x78, 0x6f, 0x66, 0x09, 0x77, 0xb4, 0x84, 0x49, 0xa4, 0xd0, 0x5d, 0x91, 0xf8, + 0x98, 0x88, 0x23, 0xb0, 0x7a, 0x4a, 0x44, 0x27, 0x60, 0xe8, 0xd4, 0x43, 0x41, 0xc0, 0x3c, 0x1c, + 0xa3, 0x56, 0x88, 0x83, 0x4a, 0xb1, 0x66, 0x6c, 0x2e, 0x38, 0xb5, 0x9c, 0x75, 0x62, 0x18, 0x74, + 0x57, 0x86, 0xf8, 0x6e, 0x10, 0xb0, 0x3d, 0x85, 0xee, 0x14, 0xbf, 0x79, 0x62, 0x17, 0xe0, 0xe7, + 0x73, 0xa0, 0xfa, 0x08, 0x85, 0x24, 0x40, 0x82, 0xb2, 0xb7, 0x08, 0x17, 0x94, 0x11, 0x1f, 0x85, + 0x2a, 0x33, 0x37, 0x7f, 0x36, 0xc0, 0xba, 0xdf, 0x8d, 0xba, 0x21, 0x12, 0xa4, 0x87, 0xb5, 0x4c, + 0x8f, 0x21, 0x41, 0x68, 0xc5, 0xa8, 0xcd, 0x6f, 0xde, 0x7c, 0xe3, 0x8e, 0x3e, 0x9e, 0xf5, 0xd4, + 0xbd, 0xe1, 0x31, 0x4b, 0xf7, 0xda, 0xa4, 0x24, 0x76, 0xde, 0x4f, 0xfd, 0x19, 0xf4, 0x6d, 0x4b, + 0x17, 0x7b, 0x32, 0x15, 0xfc, 0xe9, 0x0f, 0xfb, 0xf5, 0xe9, 0x1c, 0x4c, 0x59, 0xb9, 0xbb, 0x9a, + 0x13, 0x29, 0xa5, 0x6e, 0x4a, 0x63, 0x36, 0xc1, 0x32, 0xc3, 0xc7, 0x98, 0xe1, 0xd8, 0xc7, 0x9e, + 0x4f, 0xbb, 0xb1, 0x90, 0x27, 0xe5, 0x96, 0x53, 0x1d, 0xf4, 0xed, 0x35, 0x25, 0x61, 0x2c, 0x00, + 0xba, 0x4b, 0x19, 0xd2, 0x94, 0xc0, 0xf7, 0x06, 0x58, 0xcf, 0x1c, 0x69, 0x76, 0x19, 0xc3, 0xb1, + 0x18, 0xda, 0x71, 0x02, 0xae, 0x2b, 0xdd, 0x7c, 0xaa, 0xdd, 0xdf, 0x4b, 0x77, 0x3f, 0xeb, 0xde, + 0x86, 0x19, 0xcc, 0x35, 0x50, 0x4a, 0x30, 0x23, 0x54, 0x1d, 0xf7, 0xa2, 0xab, 0x47, 0xf0, 0x2b, + 0x03, 0x58, 0x99, 0xc0, 0x5d, 0x5f, 0x5b, 0x81, 0x83, 0x26, 0x8d, 0x22, 0xc2, 0x39, 0xa1, 0xb1, + 0xf9, 0x21, 0x00, 0x7e, 0x36, 0x7a, 0x71, 0x52, 0x47, 0x92, 0xc0, 0x6f, 0x0d, 0xb0, 0x91, 0xa9, + 0x3a, 0xe8, 0x0a, 0x2e, 0x50, 0x1c, 0x90, 0xb8, 0x3d, 0xb4, 0xee, 0xe3, 0xd9, 0xac, 0xdb, 0xd3, + 0x07, 0x67, 0x69, 0x58, 0x35, 0xb9, 0x14, 0xfe, 0x5f, 0x33, 0xe1, 0x8f, 0x06, 0x58, 0xc9, 0xe4, + 0x3d, 0x0c, 0x11, 0xef, 0xec, 0xf5, 0x70, 0x2c, 0xcc, 0x7d, 0xf0, 0x52, 0x6f, 0x08, 0x7b, 0xda, + 0xee, 0xb4, 0xa3, 0x15, 0x9d, 0x8d, 0x41, 0xdf, 0x5e, 0x57, 0xd9, 0xc7, 0x23, 0xa0, 0xbb, 0x9c, + 0x41, 0x87, 0x12, 0x31, 0xdf, 0x01, 0x0b, 0xc7, 0x0c, 0xf9, 0x69, 0xaf, 0xd5, 0xdd, 0xa9, 0x3e, + 0x5b, 0x6b, 0x70, 0xb3, 0xf5, 0xf0, 0x17, 0x03, 0x94, 0x27, 0x68, 0xe5, 0xe6, 0x67, 0x06, 0x58, + 0xcb, 0xb5, 0xf0, 0x74, 0xc6, 0xc3, 0x72, 0x4a, 0x7b, 0x7a, 0xb7, 0xfe, 0x9c, 0xde, 0x5f, 0x9f, + 0xc0, 0xe9, 0xbc, 0xaa, 0x7d, 0x7e, 0x65, 0x7c, 0xa7, 0xa3, 0xec, 0xd0, 0x2d, 0xf7, 0x26, 0xe8, + 0xd1, 0x2d, 0xe4, 0x3b, 0x03, 0x5c, 0xdf, 0xc7, 0xf8, 0x90, 0xd2, 0xd0, 0xfc, 0xd2, 0x00, 0x4b, + 0x79, 0x47, 0x4f, 0x28, 0x0d, 0xa7, 0xaa, 0xf6, 0xbb, 0x5a, 0xc5, 0xea, 0xf8, 0x9b, 0x90, 0x32, + 0xcc, 0x5c, 0xf4, 0xfc, 0x81, 0x4a, 0x35, 0xc1, 0xaf, 0xe7, 0x40, 0xb5, 0x39, 0x8a, 0x3c, 0x4c, + 0x70, 0x1c, 0xa8, 0x1e, 0x8b, 0x42, 0xb3, 0x0c, 0xae, 0x09, 0x22, 0x42, 0xac, 0x1e, 0x32, 0x57, + 0x0d, 0xcc, 0x1a, 0xb8, 0x19, 0x60, 0xee, 0x33, 0x92, 0xe4, 0x25, 0x75, 0x47, 0x21, 0xf3, 0x00, + 0xdc, 0x60, 0xd8, 0x27, 0x09, 0xc1, 0xb1, 0x90, 0xaf, 0xc1, 0xa2, 0xb3, 0xfd, 0x4f, 0xdf, 0xde, + 0x9a, 0x42, 0xe9, 0xae, 0xef, 0xa7, 0x9d, 0x18, 0x73, 0xee, 0xe6, 0x1c, 0xa6, 0x0f, 0x4a, 0x28, + 0x92, 0x4d, 0xab, 0x28, 0x2d, 0xbb, 0x3d, 0xd1, 0x32, 0xe9, 0xd7, 0x5d, 0x7d, 0x5b, 0x37, 0xa7, + 0x48, 0xa6, 0x3c, 0xd1, 0xd4, 0x3b, 0x0b, 0x9f, 0x3e, 0xb1, 0x0b, 0xb2, 0x6c, 0x7f, 0x1b, 0x60, + 0xf5, 0x3e, 0x0e, 0x71, 0x5b, 0x56, 0x55, 0x20, 0x26, 0x48, 0xdc, 0x7e, 0x3b, 0x3e, 0x96, 0x6d, + 0x34, 0x61, 0xb8, 0x47, 0x68, 0xfa, 0x42, 0x8d, 0x5e, 0x89, 0x91, 0x36, 0x3a, 0x16, 0x00, 0xdd, + 0xa5, 0x21, 0xa2, 0x2f, 0xc4, 0x11, 0xb8, 0xc6, 0x05, 0x3a, 0xc1, 0xfa, 0x36, 0xbc, 0x39, 0xf3, + 0x43, 0xb9, 0xa8, 0x12, 0x49, 0x12, 0xe8, 0x2a, 0x32, 0x73, 0x0f, 0x94, 0x3a, 0x98, 0xb4, 0x3b, + 0xca, 0xf1, 0xa2, 0xb3, 0xf5, 0x57, 0xdf, 0x5e, 0xf6, 0x19, 0x4e, 0xdb, 0x7f, 0xec, 0xa9, 0xa9, + 0x5c, 0xe4, 0xd8, 0x04, 0x74, 0xf5, 0x62, 0xf8, 0x78, 0x0e, 0xdc, 0xd6, 0x7b, 0x27, 0x34, 0xce, + 0x5c, 0xd0, 0xef, 0xed, 0x47, 0xe0, 0xe5, 0xfc, 0x1e, 0x20, 0x55, 0x28, 0xe9, 0xc0, 0xa2, 0xf3, + 0x60, 0xd0, 0xb7, 0x2b, 0xe3, 0x57, 0x45, 0x87, 0xc0, 0x29, 0xab, 0xff, 0x08, 0x85, 0xc3, 0xea, + 0xe7, 0xbd, 0x47, 0x23, 0x26, 0x01, 0xa5, 0xec, 0x1b, 0xe7, 0x05, 0x75, 0x6d, 0x9d, 0xc0, 0x39, + 0xf8, 0xe1, 0xc2, 0x32, 0x9e, 0x5e, 0x58, 0xc6, 0xb3, 0x0b, 0xcb, 0xf8, 0xf3, 0xc2, 0x32, 0xbe, + 0xb8, 0xb4, 0x0a, 0xcf, 0x2e, 0xad, 0xc2, 0x6f, 0x97, 0x56, 0xe1, 0x83, 0xed, 0xe7, 0x52, 0x9e, + 0x5d, 0xfd, 0x1a, 0x95, 0x19, 0x5a, 0x25, 0xf9, 0xb1, 0x78, 0xef, 0xdf, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x07, 0x68, 0xf1, 0xe3, 0xb1, 0x0a, 0x00, 0x00, } -func (this *MsgSetWithdrawAddress) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*MsgSetWithdrawAddress) - if !ok { - that2, ok := that.(MsgSetWithdrawAddress) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if !bytes.Equal(this.DelegatorAddress, that1.DelegatorAddress) { - return false - } - if !bytes.Equal(this.WithdrawAddress, that1.WithdrawAddress) { - return false - } - return true -} -func (this *MsgWithdrawDelegatorReward) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*MsgWithdrawDelegatorReward) - if !ok { - that2, ok := that.(MsgWithdrawDelegatorReward) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if !bytes.Equal(this.DelegatorAddress, that1.DelegatorAddress) { - return false - } - if !bytes.Equal(this.ValidatorAddress, that1.ValidatorAddress) { - return false - } - return true -} -func (this *MsgWithdrawValidatorCommission) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*MsgWithdrawValidatorCommission) - if !ok { - that2, ok := that.(MsgWithdrawValidatorCommission) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if !bytes.Equal(this.ValidatorAddress, that1.ValidatorAddress) { - return false - } - return true -} -func (this *MsgFundCommunityPool) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*MsgFundCommunityPool) - if !ok { - that2, ok := that.(MsgFundCommunityPool) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if len(this.Amount) != len(that1.Amount) { - return false - } - for i := range this.Amount { - if !this.Amount[i].Equal(&that1.Amount[i]) { - return false - } - } - if !bytes.Equal(this.Depositor, that1.Depositor) { - return false - } - return true -} func (this *Params) Equal(that interface{}) bool { if that == nil { return this == nil @@ -1328,154 +1002,6 @@ func (this *DelegationDelegatorReward) Equal(that interface{}) bool { } return true } -func (m *MsgSetWithdrawAddress) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *MsgSetWithdrawAddress) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgSetWithdrawAddress) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.WithdrawAddress) > 0 { - i -= len(m.WithdrawAddress) - copy(dAtA[i:], m.WithdrawAddress) - i = encodeVarintDistribution(dAtA, i, uint64(len(m.WithdrawAddress))) - i-- - dAtA[i] = 0x12 - } - if len(m.DelegatorAddress) > 0 { - i -= len(m.DelegatorAddress) - copy(dAtA[i:], m.DelegatorAddress) - i = encodeVarintDistribution(dAtA, i, uint64(len(m.DelegatorAddress))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *MsgWithdrawDelegatorReward) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *MsgWithdrawDelegatorReward) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgWithdrawDelegatorReward) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.ValidatorAddress) > 0 { - i -= len(m.ValidatorAddress) - copy(dAtA[i:], m.ValidatorAddress) - i = encodeVarintDistribution(dAtA, i, uint64(len(m.ValidatorAddress))) - i-- - dAtA[i] = 0x12 - } - if len(m.DelegatorAddress) > 0 { - i -= len(m.DelegatorAddress) - copy(dAtA[i:], m.DelegatorAddress) - i = encodeVarintDistribution(dAtA, i, uint64(len(m.DelegatorAddress))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *MsgWithdrawValidatorCommission) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *MsgWithdrawValidatorCommission) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgWithdrawValidatorCommission) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.ValidatorAddress) > 0 { - i -= len(m.ValidatorAddress) - copy(dAtA[i:], m.ValidatorAddress) - i = encodeVarintDistribution(dAtA, i, uint64(len(m.ValidatorAddress))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *MsgFundCommunityPool) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *MsgFundCommunityPool) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgFundCommunityPool) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Depositor) > 0 { - i -= len(m.Depositor) - copy(dAtA[i:], m.Depositor) - i = encodeVarintDistribution(dAtA, i, uint64(len(m.Depositor))) - i-- - dAtA[i] = 0x12 - } - if len(m.Amount) > 0 { - for iNdEx := len(m.Amount) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Amount[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintDistribution(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - } - } - return len(dAtA) - i, nil -} - func (m *Params) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -1965,72 +1491,6 @@ func encodeVarintDistribution(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) return base } -func (m *MsgSetWithdrawAddress) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.DelegatorAddress) - if l > 0 { - n += 1 + l + sovDistribution(uint64(l)) - } - l = len(m.WithdrawAddress) - if l > 0 { - n += 1 + l + sovDistribution(uint64(l)) - } - return n -} - -func (m *MsgWithdrawDelegatorReward) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.DelegatorAddress) - if l > 0 { - n += 1 + l + sovDistribution(uint64(l)) - } - l = len(m.ValidatorAddress) - if l > 0 { - n += 1 + l + sovDistribution(uint64(l)) - } - return n -} - -func (m *MsgWithdrawValidatorCommission) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.ValidatorAddress) - if l > 0 { - n += 1 + l + sovDistribution(uint64(l)) - } - return n -} - -func (m *MsgFundCommunityPool) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if len(m.Amount) > 0 { - for _, e := range m.Amount { - l = e.Size() - n += 1 + l + sovDistribution(uint64(l)) - } - } - l = len(m.Depositor) - if l > 0 { - n += 1 + l + sovDistribution(uint64(l)) - } - return n -} - func (m *Params) Size() (n int) { if m == nil { return 0 @@ -2228,456 +1688,6 @@ func sovDistribution(x uint64) (n int) { func sozDistribution(x uint64) (n int) { return sovDistribution(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } -func (m *MsgSetWithdrawAddress) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowDistribution - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgSetWithdrawAddress: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgSetWithdrawAddress: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DelegatorAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowDistribution - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthDistribution - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthDistribution - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.DelegatorAddress = append(m.DelegatorAddress[:0], dAtA[iNdEx:postIndex]...) - if m.DelegatorAddress == nil { - m.DelegatorAddress = []byte{} - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field WithdrawAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowDistribution - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthDistribution - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthDistribution - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.WithdrawAddress = append(m.WithdrawAddress[:0], dAtA[iNdEx:postIndex]...) - if m.WithdrawAddress == nil { - m.WithdrawAddress = []byte{} - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipDistribution(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthDistribution - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthDistribution - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *MsgWithdrawDelegatorReward) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowDistribution - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgWithdrawDelegatorReward: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgWithdrawDelegatorReward: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DelegatorAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowDistribution - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthDistribution - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthDistribution - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.DelegatorAddress = append(m.DelegatorAddress[:0], dAtA[iNdEx:postIndex]...) - if m.DelegatorAddress == nil { - m.DelegatorAddress = []byte{} - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ValidatorAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowDistribution - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthDistribution - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthDistribution - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.ValidatorAddress = append(m.ValidatorAddress[:0], dAtA[iNdEx:postIndex]...) - if m.ValidatorAddress == nil { - m.ValidatorAddress = []byte{} - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipDistribution(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthDistribution - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthDistribution - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *MsgWithdrawValidatorCommission) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowDistribution - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgWithdrawValidatorCommission: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgWithdrawValidatorCommission: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ValidatorAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowDistribution - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthDistribution - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthDistribution - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.ValidatorAddress = append(m.ValidatorAddress[:0], dAtA[iNdEx:postIndex]...) - if m.ValidatorAddress == nil { - m.ValidatorAddress = []byte{} - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipDistribution(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthDistribution - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthDistribution - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *MsgFundCommunityPool) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowDistribution - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgFundCommunityPool: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgFundCommunityPool: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowDistribution - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthDistribution - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthDistribution - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Amount = append(m.Amount, types.Coin{}) - if err := m.Amount[len(m.Amount)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Depositor", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowDistribution - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthDistribution - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthDistribution - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Depositor = append(m.Depositor[:0], dAtA[iNdEx:postIndex]...) - if m.Depositor == nil { - m.Depositor = []byte{} - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipDistribution(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthDistribution - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthDistribution - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} func (m *Params) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/x/distribution/types/genesis.pb.go b/x/distribution/types/genesis.pb.go index e45c6688e7..35e2bcf722 100644 --- a/x/distribution/types/genesis.pb.go +++ b/x/distribution/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/distribution/genesis.proto +// source: cosmos/distribution/v1beta1/genesis.proto package types @@ -38,7 +38,7 @@ func (m *DelegatorWithdrawInfo) Reset() { *m = DelegatorWithdrawInfo{} } func (m *DelegatorWithdrawInfo) String() string { return proto.CompactTextString(m) } func (*DelegatorWithdrawInfo) ProtoMessage() {} func (*DelegatorWithdrawInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_7a45655a6b48d269, []int{0} + return fileDescriptor_76eed0f9489db580, []int{0} } func (m *DelegatorWithdrawInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -92,7 +92,7 @@ func (m *ValidatorOutstandingRewardsRecord) Reset() { *m = ValidatorOuts func (m *ValidatorOutstandingRewardsRecord) String() string { return proto.CompactTextString(m) } func (*ValidatorOutstandingRewardsRecord) ProtoMessage() {} func (*ValidatorOutstandingRewardsRecord) Descriptor() ([]byte, []int) { - return fileDescriptor_7a45655a6b48d269, []int{1} + return fileDescriptor_76eed0f9489db580, []int{1} } func (m *ValidatorOutstandingRewardsRecord) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -146,7 +146,7 @@ func (m *ValidatorAccumulatedCommissionRecord) Reset() { *m = ValidatorA func (m *ValidatorAccumulatedCommissionRecord) String() string { return proto.CompactTextString(m) } func (*ValidatorAccumulatedCommissionRecord) ProtoMessage() {} func (*ValidatorAccumulatedCommissionRecord) Descriptor() ([]byte, []int) { - return fileDescriptor_7a45655a6b48d269, []int{2} + return fileDescriptor_76eed0f9489db580, []int{2} } func (m *ValidatorAccumulatedCommissionRecord) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -201,7 +201,7 @@ func (m *ValidatorHistoricalRewardsRecord) Reset() { *m = ValidatorHisto func (m *ValidatorHistoricalRewardsRecord) String() string { return proto.CompactTextString(m) } func (*ValidatorHistoricalRewardsRecord) ProtoMessage() {} func (*ValidatorHistoricalRewardsRecord) Descriptor() ([]byte, []int) { - return fileDescriptor_7a45655a6b48d269, []int{3} + return fileDescriptor_76eed0f9489db580, []int{3} } func (m *ValidatorHistoricalRewardsRecord) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -262,7 +262,7 @@ func (m *ValidatorCurrentRewardsRecord) Reset() { *m = ValidatorCurrentR func (m *ValidatorCurrentRewardsRecord) String() string { return proto.CompactTextString(m) } func (*ValidatorCurrentRewardsRecord) ProtoMessage() {} func (*ValidatorCurrentRewardsRecord) Descriptor() ([]byte, []int) { - return fileDescriptor_7a45655a6b48d269, []int{4} + return fileDescriptor_76eed0f9489db580, []int{4} } func (m *ValidatorCurrentRewardsRecord) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -317,7 +317,7 @@ func (m *DelegatorStartingInfoRecord) Reset() { *m = DelegatorStartingIn func (m *DelegatorStartingInfoRecord) String() string { return proto.CompactTextString(m) } func (*DelegatorStartingInfoRecord) ProtoMessage() {} func (*DelegatorStartingInfoRecord) Descriptor() ([]byte, []int) { - return fileDescriptor_7a45655a6b48d269, []int{5} + return fileDescriptor_76eed0f9489db580, []int{5} } func (m *DelegatorStartingInfoRecord) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -380,7 +380,7 @@ func (m *ValidatorSlashEventRecord) Reset() { *m = ValidatorSlashEventRe func (m *ValidatorSlashEventRecord) String() string { return proto.CompactTextString(m) } func (*ValidatorSlashEventRecord) ProtoMessage() {} func (*ValidatorSlashEventRecord) Descriptor() ([]byte, []int) { - return fileDescriptor_7a45655a6b48d269, []int{6} + return fileDescriptor_76eed0f9489db580, []int{6} } func (m *ValidatorSlashEventRecord) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -455,7 +455,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_7a45655a6b48d269, []int{7} + return fileDescriptor_76eed0f9489db580, []int{7} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -555,88 +555,92 @@ func (m *GenesisState) GetValidatorSlashEvents() []ValidatorSlashEventRecord { } func init() { - proto.RegisterType((*DelegatorWithdrawInfo)(nil), "cosmos.distribution.DelegatorWithdrawInfo") - proto.RegisterType((*ValidatorOutstandingRewardsRecord)(nil), "cosmos.distribution.ValidatorOutstandingRewardsRecord") - proto.RegisterType((*ValidatorAccumulatedCommissionRecord)(nil), "cosmos.distribution.ValidatorAccumulatedCommissionRecord") - proto.RegisterType((*ValidatorHistoricalRewardsRecord)(nil), "cosmos.distribution.ValidatorHistoricalRewardsRecord") - proto.RegisterType((*ValidatorCurrentRewardsRecord)(nil), "cosmos.distribution.ValidatorCurrentRewardsRecord") - proto.RegisterType((*DelegatorStartingInfoRecord)(nil), "cosmos.distribution.DelegatorStartingInfoRecord") - proto.RegisterType((*ValidatorSlashEventRecord)(nil), "cosmos.distribution.ValidatorSlashEventRecord") - proto.RegisterType((*GenesisState)(nil), "cosmos.distribution.GenesisState") + proto.RegisterType((*DelegatorWithdrawInfo)(nil), "cosmos.distribution.v1beta1.DelegatorWithdrawInfo") + proto.RegisterType((*ValidatorOutstandingRewardsRecord)(nil), "cosmos.distribution.v1beta1.ValidatorOutstandingRewardsRecord") + proto.RegisterType((*ValidatorAccumulatedCommissionRecord)(nil), "cosmos.distribution.v1beta1.ValidatorAccumulatedCommissionRecord") + proto.RegisterType((*ValidatorHistoricalRewardsRecord)(nil), "cosmos.distribution.v1beta1.ValidatorHistoricalRewardsRecord") + proto.RegisterType((*ValidatorCurrentRewardsRecord)(nil), "cosmos.distribution.v1beta1.ValidatorCurrentRewardsRecord") + proto.RegisterType((*DelegatorStartingInfoRecord)(nil), "cosmos.distribution.v1beta1.DelegatorStartingInfoRecord") + proto.RegisterType((*ValidatorSlashEventRecord)(nil), "cosmos.distribution.v1beta1.ValidatorSlashEventRecord") + proto.RegisterType((*GenesisState)(nil), "cosmos.distribution.v1beta1.GenesisState") } -func init() { proto.RegisterFile("cosmos/distribution/genesis.proto", fileDescriptor_7a45655a6b48d269) } +func init() { + proto.RegisterFile("cosmos/distribution/v1beta1/genesis.proto", fileDescriptor_76eed0f9489db580) +} -var fileDescriptor_7a45655a6b48d269 = []byte{ - // 1085 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0xcd, 0x6f, 0x1b, 0x45, - 0x14, 0xcf, 0x6e, 0x5a, 0xa7, 0x4c, 0x5c, 0xd2, 0x6e, 0xd2, 0xc4, 0x75, 0x5b, 0x6f, 0xb2, 0x20, - 0x14, 0x51, 0xba, 0xa6, 0x29, 0x45, 0x02, 0x71, 0x20, 0x9b, 0xd2, 0x52, 0x09, 0x48, 0xd8, 0xa0, - 0x82, 0xe0, 0x60, 0x6d, 0x76, 0x27, 0xf6, 0xa8, 0xeb, 0x1d, 0x6b, 0x67, 0xec, 0x10, 0x38, 0x70, - 0xe3, 0xc4, 0x01, 0x09, 0x89, 0x23, 0x47, 0x54, 0x71, 0x42, 0x08, 0x04, 0xfc, 0x07, 0x39, 0xf6, - 0xc8, 0xc9, 0x45, 0xc9, 0x7f, 0x90, 0x63, 0x4e, 0x68, 0x3e, 0xf6, 0xcb, 0x5e, 0xaf, 0xdd, 0x1e, - 0x68, 0x6e, 0xde, 0xdd, 0x37, 0xef, 0xf7, 0x31, 0x6f, 0xde, 0x3c, 0x83, 0x15, 0x17, 0x93, 0x36, - 0x26, 0x75, 0x0f, 0x11, 0x1a, 0xa2, 0x9d, 0x2e, 0x45, 0x38, 0xa8, 0x37, 0x61, 0x00, 0x09, 0x22, - 0x66, 0x27, 0xc4, 0x14, 0x6b, 0xf3, 0x22, 0xc4, 0x4c, 0x87, 0x54, 0x17, 0x9a, 0xb8, 0x89, 0xf9, - 0xf7, 0x3a, 0xfb, 0x25, 0x42, 0xab, 0x32, 0xb4, 0x2e, 0x57, 0x88, 0x97, 0xaf, 0xe4, 0x41, 0xa4, - 0x1f, 0x44, 0x9c, 0xf1, 0x9d, 0x0a, 0x2e, 0xdd, 0x81, 0x3e, 0x6c, 0x3a, 0x14, 0x87, 0x9f, 0x22, - 0xda, 0xf2, 0x42, 0x67, 0xef, 0x7e, 0xb0, 0x8b, 0xb5, 0xaf, 0xc0, 0x45, 0x2f, 0xfa, 0xd0, 0x70, - 0x3c, 0x2f, 0x84, 0x84, 0x54, 0x94, 0x65, 0x65, 0xb5, 0x6c, 0x7d, 0x78, 0xdc, 0xd7, 0x2b, 0xfb, - 0x4e, 0xdb, 0x7f, 0xdb, 0x18, 0x0a, 0x31, 0x4e, 0xfa, 0xfa, 0x8d, 0x26, 0xa2, 0xad, 0xee, 0x8e, - 0xe9, 0xe2, 0x76, 0x3d, 0x43, 0xee, 0x06, 0xf1, 0x1e, 0xd6, 0xe9, 0x7e, 0x07, 0x12, 0x73, 0xdd, - 0x75, 0xd7, 0xc5, 0x0a, 0xfb, 0x42, 0x9c, 0x44, 0xbe, 0xd1, 0xf6, 0xc0, 0x85, 0x3d, 0xc9, 0x25, - 0x86, 0x56, 0x39, 0xf4, 0x07, 0xc7, 0x7d, 0x7d, 0x49, 0x40, 0x0f, 0x46, 0x3c, 0x03, 0xf2, 0x5c, - 0x94, 0x43, 0xbe, 0x30, 0xfe, 0x50, 0xc1, 0xca, 0x03, 0xc7, 0x47, 0x1e, 0x63, 0xb3, 0xd9, 0xa5, - 0x84, 0x3a, 0x81, 0x87, 0x82, 0xa6, 0x0d, 0xf7, 0x9c, 0xd0, 0x23, 0x36, 0x74, 0x71, 0xe8, 0x31, - 0x6b, 0x7a, 0x51, 0xd0, 0x68, 0x6b, 0x86, 0x42, 0x26, 0x25, 0xf8, 0xc0, 0xf1, 0x63, 0x6b, 0xe2, - 0x24, 0x91, 0x35, 0x3f, 0x28, 0x60, 0x1e, 0x27, 0xc4, 0x1a, 0xa1, 0x60, 0x56, 0x51, 0x97, 0xa7, - 0x57, 0x67, 0xd7, 0xe6, 0x4c, 0x59, 0x05, 0x77, 0xa0, 0xbb, 0x81, 0x51, 0x60, 0x7d, 0x7c, 0xd0, - 0xd7, 0xa7, 0x8e, 0xfb, 0x7a, 0x55, 0x70, 0xca, 0x59, 0x69, 0xfc, 0xf2, 0x44, 0xbf, 0x3e, 0x01, - 0x2b, 0x99, 0x91, 0xd8, 0x1a, 0x1e, 0xf2, 0xc5, 0xf8, 0x4b, 0x05, 0x2f, 0xc7, 0xbe, 0xad, 0xbb, - 0x6e, 0xb7, 0xdd, 0xf5, 0x1d, 0x0a, 0xbd, 0x0d, 0xdc, 0x6e, 0x23, 0x42, 0x10, 0x0e, 0x4e, 0x87, - 0x75, 0xb3, 0x4e, 0xc2, 0x8d, 0x57, 0xd4, 0xec, 0xda, 0x2d, 0x33, 0xe7, 0xa8, 0x99, 0xc5, 0x62, - 0xac, 0x77, 0xa4, 0xad, 0x9a, 0xe0, 0x9b, 0xca, 0xca, 0x98, 0xd6, 0xc6, 0x58, 0x91, 0x66, 0x61, - 0xfc, 0xa9, 0x82, 0xe5, 0x38, 0xfe, 0x7d, 0x44, 0x28, 0x0e, 0x91, 0xeb, 0xf8, 0xa7, 0xa7, 0xe2, - 0x16, 0x41, 0xa9, 0x03, 0x43, 0x84, 0x85, 0x61, 0x67, 0x6c, 0xf9, 0xa4, 0x7d, 0x03, 0x66, 0xa2, - 0xe2, 0x9b, 0xe6, 0x4e, 0xd6, 0x8b, 0x9d, 0x1c, 0xd2, 0x66, 0xbd, 0x21, 0x5d, 0x7c, 0x51, 0xd0, - 0x8f, 0x0a, 0xf2, 0xa4, 0xaf, 0x57, 0x0b, 0x1c, 0x89, 0x50, 0x8d, 0x1f, 0x55, 0x70, 0x2d, 0x8e, - 0xdb, 0xe8, 0x86, 0x21, 0x0c, 0xe8, 0xe9, 0xb1, 0x6d, 0x3f, 0xb1, 0x47, 0x14, 0xda, 0x6b, 0xc5, - 0xf6, 0x64, 0x05, 0x58, 0x37, 0x47, 0x7a, 0xb3, 0x34, 0x4a, 0x73, 0x6c, 0xcc, 0x4f, 0xd3, 0xe0, - 0x4a, 0xdc, 0xd4, 0xb7, 0xa9, 0x13, 0x52, 0x14, 0x34, 0x59, 0x53, 0x4f, 0x6c, 0x79, 0x6e, 0xad, - 0x3d, 0x77, 0x4b, 0xd4, 0xff, 0x67, 0x4b, 0xbe, 0x55, 0xc0, 0x79, 0x22, 0xed, 0x68, 0xa0, 0x60, - 0x17, 0xcb, 0xc2, 0x7d, 0x35, 0x77, 0x67, 0x72, 0x1d, 0xb4, 0x6e, 0xcb, 0x7d, 0x59, 0x10, 0x44, - 0x33, 0xe9, 0x18, 0xc9, 0x4b, 0xf9, 0xc6, 0x97, 0x49, 0xea, 0xc9, 0xf8, 0x5d, 0x05, 0x97, 0xe3, - 0x5d, 0xdc, 0xf6, 0x1d, 0xd2, 0x7a, 0xaf, 0xc7, 0x37, 0xf2, 0x34, 0x1c, 0xf6, 0x16, 0x44, 0xcd, - 0x16, 0x8d, 0x0e, 0xbb, 0x78, 0x4a, 0x35, 0x81, 0xe9, 0x4c, 0x13, 0x78, 0x08, 0xce, 0x42, 0x46, - 0xbd, 0x72, 0x86, 0x3b, 0xb9, 0x5a, 0x5c, 0xe3, 0x89, 0x54, 0xeb, 0xba, 0xf4, 0xb1, 0x2c, 0xd4, - 0xf0, 0x24, 0x4c, 0xc1, 0x7c, 0x9e, 0x2f, 0x02, 0xc3, 0x38, 0x2a, 0x83, 0xf2, 0x3d, 0x31, 0x26, - 0x6d, 0x53, 0x87, 0x42, 0xed, 0x13, 0x50, 0xea, 0x38, 0xa1, 0xd3, 0x16, 0xf6, 0xcc, 0xae, 0x5d, - 0xc9, 0x85, 0xdf, 0xe2, 0x21, 0x96, 0x2e, 0x11, 0xcf, 0x0b, 0x44, 0xb1, 0x90, 0x41, 0x96, 0x44, - 0x80, 0x2d, 0x73, 0x69, 0x5f, 0x80, 0x73, 0xbb, 0x10, 0x36, 0x3a, 0x18, 0xfb, 0xf2, 0xe8, 0x5e, - 0xcd, 0xcd, 0x7b, 0x17, 0xc2, 0x2d, 0x8c, 0x7d, 0xcb, 0x90, 0x89, 0xe7, 0x44, 0xe2, 0x68, 0x2d, - 0x4b, 0x3d, 0x23, 0x63, 0xec, 0x99, 0x5d, 0xf1, 0x43, 0xfb, 0x59, 0x01, 0x95, 0xe4, 0x64, 0xc5, - 0x33, 0x0c, 0x2b, 0x1f, 0xd6, 0x47, 0xa7, 0xc7, 0x97, 0x63, 0x7a, 0x4a, 0xb3, 0xde, 0x95, 0xd8, - 0xfa, 0xe0, 0x99, 0xcd, 0x66, 0xce, 0x56, 0x66, 0x3a, 0x83, 0xbd, 0xe8, 0xe5, 0xbd, 0x26, 0xda, - 0xd7, 0xe0, 0x62, 0x27, 0x84, 0x3d, 0x84, 0xbb, 0xa4, 0xd1, 0x09, 0x71, 0x07, 0x13, 0x18, 0xf2, - 0x5d, 0x2e, 0x5b, 0x1f, 0x25, 0x55, 0x38, 0x14, 0xc2, 0x90, 0xcc, 0x09, 0xaa, 0x70, 0x03, 0x07, - 0x24, 0x2e, 0xc3, 0x28, 0xcb, 0x96, 0x4c, 0xa2, 0xfd, 0x3a, 0x62, 0xca, 0x39, 0xcb, 0x0d, 0x7a, - 0xb3, 0xb8, 0xca, 0x46, 0xcd, 0x6d, 0xd6, 0xbd, 0xf1, 0xc3, 0xd0, 0x49, 0x5f, 0x1f, 0x3f, 0x00, - 0xe6, 0x8d, 0x40, 0xda, 0x13, 0x05, 0xac, 0xa4, 0xce, 0x64, 0x72, 0xc3, 0x37, 0xdc, 0xf8, 0xe6, - 0x27, 0x95, 0x12, 0x17, 0xf0, 0xd6, 0x33, 0xcc, 0x1c, 0x52, 0xc3, 0x67, 0x52, 0xc3, 0xea, 0x50, - 0x17, 0xc8, 0x47, 0x64, 0x8a, 0x26, 0x1a, 0xcd, 0x6c, 0xbd, 0x57, 0x18, 0x45, 0xb4, 0x03, 0x05, - 0x5c, 0x4d, 0xf0, 0x5a, 0xf1, 0xc5, 0x1c, 0xef, 0xce, 0x0c, 0x17, 0x77, 0xfb, 0x29, 0xc7, 0x00, - 0x29, 0x6c, 0x53, 0x0a, 0x7b, 0x69, 0x50, 0xd8, 0x30, 0x10, 0xd3, 0x34, 0x76, 0x66, 0xb2, 0xab, - 0xbd, 0x91, 0x11, 0xda, 0xdf, 0x0a, 0xb8, 0x9c, 0x20, 0xb8, 0xe2, 0x1e, 0x8d, 0x75, 0x9c, 0xe3, - 0x3a, 0xd6, 0x9e, 0xe6, 0xbe, 0x96, 0x22, 0xee, 0x4b, 0x11, 0xcb, 0x83, 0x22, 0x06, 0x20, 0x98, - 0x82, 0xe2, 0xd9, 0xc5, 0x5e, 0xea, 0xe5, 0x7f, 0xd6, 0x7e, 0xcb, 0x74, 0x90, 0xcc, 0x05, 0x44, - 0x2a, 0x2f, 0x70, 0xea, 0xaf, 0x4f, 0x7e, 0xa1, 0x49, 0xe2, 0x77, 0x47, 0xf5, 0x91, 0x6c, 0x7e, - 0xc6, 0xbb, 0x68, 0xb4, 0x48, 0x75, 0x93, 0xf4, 0x47, 0xa2, 0x3d, 0x52, 0xc0, 0x62, 0xe2, 0x06, - 0x61, 0xad, 0xbd, 0xc1, 0x9b, 0x3a, 0xa9, 0x00, 0x4e, 0xd9, 0x9c, 0xf4, 0xe6, 0x90, 0x84, 0x2d, - 0x49, 0xf8, 0xda, 0xa0, 0xd3, 0xe9, 0xdc, 0x8c, 0xee, 0xe8, 0x8b, 0xd6, 0x5e, 0xe8, 0x0d, 0x7f, - 0x22, 0xd6, 0xe6, 0xa3, 0xc3, 0x9a, 0x72, 0x70, 0x58, 0x53, 0x1e, 0x1f, 0xd6, 0x94, 0x7f, 0x0f, - 0x6b, 0xca, 0xf7, 0x47, 0xb5, 0xa9, 0xc7, 0x47, 0xb5, 0xa9, 0x7f, 0x8e, 0x6a, 0x53, 0x9f, 0xdf, - 0x2c, 0xec, 0x6d, 0x5f, 0x66, 0xff, 0x70, 0xf3, 0x56, 0xb7, 0x53, 0xe2, 0x7f, 0xb5, 0x6f, 0xfd, - 0x17, 0x00, 0x00, 0xff, 0xff, 0x48, 0x83, 0xa5, 0x19, 0xf7, 0x0f, 0x00, 0x00, +var fileDescriptor_76eed0f9489db580 = []byte{ + // 1113 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0x4b, 0x6c, 0x1b, 0x45, + 0x18, 0xce, 0xda, 0xad, 0x53, 0x26, 0x0e, 0x6d, 0xb7, 0x69, 0xe2, 0xba, 0xad, 0x37, 0xdd, 0xf6, + 0x10, 0x54, 0x75, 0x4d, 0x42, 0x79, 0xa8, 0x3c, 0x44, 0x36, 0xa5, 0xa5, 0x12, 0x90, 0xb0, 0x91, + 0x0a, 0x42, 0x48, 0xd6, 0x78, 0x77, 0x62, 0x8f, 0xb0, 0x77, 0xac, 0x9d, 0xb1, 0x43, 0xe1, 0xc4, + 0x89, 0x0b, 0x42, 0xdc, 0x39, 0xc0, 0x09, 0x21, 0x90, 0x10, 0x47, 0x84, 0x38, 0x00, 0xa7, 0x1e, + 0x73, 0xe4, 0x64, 0x50, 0x72, 0xe0, 0x9e, 0x63, 0x4e, 0x68, 0x1e, 0xfb, 0xf2, 0x63, 0xe3, 0x04, + 0x09, 0x72, 0xb2, 0x77, 0xf7, 0xf7, 0xff, 0x3d, 0xe6, 0xdf, 0xff, 0xff, 0x0d, 0x9e, 0x72, 0x09, + 0x6d, 0x13, 0x5a, 0xf5, 0x30, 0x65, 0x01, 0xae, 0x77, 0x19, 0x26, 0x7e, 0xb5, 0xb7, 0x5c, 0x47, + 0x0c, 0x2e, 0x57, 0x1b, 0xc8, 0x47, 0x14, 0x53, 0xab, 0x13, 0x10, 0x46, 0xf4, 0xcb, 0x32, 0xd4, + 0x4a, 0x86, 0x5a, 0x2a, 0xb4, 0x3c, 0xd7, 0x20, 0x0d, 0x22, 0xe2, 0xaa, 0xfc, 0x9b, 0xfc, 0x49, + 0xb9, 0xa2, 0xb2, 0xd7, 0x21, 0x45, 0x51, 0x56, 0x97, 0x60, 0x5f, 0x3d, 0xb7, 0xb2, 0xd0, 0x53, + 0x38, 0x22, 0xde, 0xfc, 0x2c, 0x07, 0x2e, 0xde, 0x45, 0x2d, 0xd4, 0x80, 0x8c, 0x04, 0xef, 0x60, + 0xd6, 0xf4, 0x02, 0xb8, 0xfd, 0xc0, 0xdf, 0x22, 0xfa, 0x47, 0xe0, 0xbc, 0x17, 0x3e, 0xa8, 0x41, + 0xcf, 0x0b, 0x10, 0xa5, 0x25, 0x6d, 0x51, 0x5b, 0x2a, 0xda, 0x6f, 0xee, 0xf7, 0x8d, 0xd2, 0x23, + 0xd8, 0x6e, 0xdd, 0x31, 0x87, 0x42, 0xcc, 0x83, 0xbe, 0x71, 0xab, 0x81, 0x59, 0xb3, 0x5b, 0xb7, + 0x5c, 0xd2, 0xae, 0x2a, 0x3e, 0xf2, 0xe3, 0x16, 0xf5, 0x3e, 0xa8, 0xb2, 0x47, 0x1d, 0x44, 0xad, + 0x55, 0xd7, 0x5d, 0x95, 0xbf, 0x70, 0xce, 0x45, 0x49, 0xd4, 0x1d, 0x7d, 0x1b, 0x9c, 0xdb, 0x56, + 0x5c, 0x22, 0xe8, 0x9c, 0x80, 0x7e, 0x63, 0xbf, 0x6f, 0x2c, 0x48, 0xe8, 0xc1, 0x88, 0x63, 0x20, + 0x9f, 0x0d, 0x73, 0xa8, 0x1b, 0xe6, 0xef, 0x39, 0x70, 0xed, 0x21, 0x6c, 0x61, 0x8f, 0xb3, 0x59, + 0xef, 0x32, 0xca, 0xa0, 0xef, 0x61, 0xbf, 0xe1, 0xa0, 0x6d, 0x18, 0x78, 0xd4, 0x41, 0x2e, 0x09, + 0x3c, 0x6e, 0x4d, 0x2f, 0x0c, 0x1a, 0x6f, 0xcd, 0x50, 0xc8, 0xa4, 0x04, 0x1f, 0xc2, 0x56, 0x64, + 0x4d, 0x94, 0x24, 0xb4, 0xe6, 0x6b, 0x0d, 0x5c, 0x20, 0x31, 0xb1, 0x5a, 0x20, 0x99, 0x95, 0x72, + 0x8b, 0xf9, 0xa5, 0x99, 0x95, 0x2b, 0xea, 0xfc, 0x2d, 0x5e, 0x1f, 0x61, 0x29, 0x59, 0x77, 0x91, + 0xbb, 0x46, 0xb0, 0x6f, 0xbf, 0xfd, 0xb8, 0x6f, 0x4c, 0xed, 0xf7, 0x8d, 0xb2, 0x24, 0x38, 0x22, + 0x8d, 0xf9, 0xdd, 0x9f, 0xc6, 0xcd, 0x09, 0x28, 0xaa, 0x8c, 0xd4, 0xd1, 0xc9, 0x90, 0x49, 0xe6, + 0xaf, 0x39, 0x70, 0x23, 0x32, 0x71, 0xd5, 0x75, 0xbb, 0xed, 0x6e, 0x0b, 0x32, 0xe4, 0xad, 0x91, + 0x76, 0x1b, 0x53, 0x8a, 0x89, 0x7f, 0x02, 0x7c, 0xfc, 0x52, 0x03, 0x33, 0x30, 0xe6, 0x26, 0xca, + 0x6b, 0x66, 0xe5, 0x45, 0x2b, 0xe3, 0x95, 0xb4, 0xb2, 0x45, 0xd9, 0x2f, 0x29, 0x7b, 0x75, 0xc9, + 0x3b, 0x91, 0x9d, 0x33, 0xae, 0x1c, 0x62, 0x49, 0x92, 0x0d, 0xb7, 0x70, 0x31, 0x8a, 0x7f, 0x1d, + 0x53, 0x46, 0x02, 0xec, 0xc2, 0xd6, 0xc9, 0x29, 0xc3, 0x79, 0x50, 0xe8, 0xa0, 0x00, 0x13, 0x69, + 0xdc, 0x29, 0x47, 0x5d, 0xe9, 0x9f, 0x6a, 0x60, 0x3a, 0x2c, 0xc9, 0xbc, 0xb0, 0xf4, 0xf9, 0xc9, + 0x2c, 0x1d, 0x12, 0x69, 0xdf, 0x56, 0x76, 0x3e, 0x29, 0x75, 0x84, 0x15, 0x7a, 0xd0, 0x37, 0xca, + 0x19, 0xd6, 0x84, 0xe8, 0xe6, 0x57, 0x39, 0x70, 0x35, 0x8a, 0x5b, 0xeb, 0x06, 0x01, 0xf2, 0xd9, + 0xc9, 0xf1, 0xef, 0x93, 0x84, 0x4f, 0xb2, 0xf4, 0x6e, 0x4f, 0xe6, 0x53, 0x5a, 0x89, 0xbd, 0x3c, + 0xd6, 0xa4, 0x85, 0x71, 0xe2, 0x23, 0x87, 0xbe, 0xc9, 0x83, 0xcb, 0x51, 0xef, 0xdf, 0x64, 0x30, + 0x60, 0xd8, 0x6f, 0xf0, 0xde, 0x1f, 0xfb, 0xf3, 0xbf, 0x4d, 0x80, 0x91, 0x67, 0x93, 0xfb, 0x6f, + 0xce, 0xe6, 0x73, 0x0d, 0xcc, 0x52, 0x65, 0x47, 0x0d, 0xfb, 0x5b, 0x44, 0x55, 0xf2, 0x4a, 0xe6, + 0x09, 0x8d, 0x74, 0xd2, 0x7e, 0x56, 0x9d, 0xcf, 0x9c, 0x24, 0x9c, 0x4a, 0xcb, 0xc9, 0x5e, 0x1c, + 0x7d, 0x00, 0x45, 0x9a, 0xb8, 0x32, 0x7f, 0xc9, 0x81, 0x4b, 0xd1, 0x69, 0x6e, 0xb6, 0x20, 0x6d, + 0xbe, 0xd6, 0x13, 0x07, 0x7a, 0x12, 0xda, 0x40, 0x13, 0xe1, 0x46, 0x93, 0x85, 0x6d, 0x40, 0x5e, + 0x25, 0xda, 0x43, 0x3e, 0xd5, 0x1e, 0x28, 0x38, 0x8d, 0x38, 0xf5, 0xd2, 0x29, 0xe1, 0xe8, 0xd3, + 0x93, 0xd5, 0x7c, 0x2c, 0xd9, 0xbe, 0xa9, 0xfc, 0x2c, 0x4a, 0x55, 0x22, 0x19, 0x57, 0x72, 0x61, + 0x94, 0x3f, 0x12, 0xcb, 0xfc, 0x7e, 0x16, 0x14, 0xef, 0xcb, 0xc5, 0x6b, 0x93, 0x41, 0x86, 0xf4, + 0xf7, 0x41, 0xa1, 0x03, 0x03, 0xd8, 0x96, 0x36, 0xcd, 0xac, 0x5c, 0xcf, 0xa4, 0xb1, 0x21, 0x42, + 0x6d, 0x43, 0x21, 0xcf, 0x4a, 0x64, 0x99, 0x80, 0x43, 0x17, 0x64, 0x80, 0xa3, 0x72, 0xea, 0x2e, + 0x38, 0xb3, 0x85, 0x50, 0xad, 0x43, 0x48, 0x4b, 0xbd, 0xda, 0x37, 0x32, 0xf3, 0xdf, 0x43, 0x68, + 0x83, 0x90, 0x96, 0x6d, 0x2a, 0x80, 0xb3, 0x12, 0x20, 0xcc, 0xc1, 0x21, 0xa6, 0x55, 0x8c, 0x33, + 0xbd, 0x25, 0xbf, 0xe8, 0x3f, 0x68, 0xa0, 0x14, 0xbf, 0x79, 0xd1, 0x2a, 0xc4, 0xcb, 0x8a, 0x37, + 0xde, 0xfc, 0xe4, 0xe5, 0x9a, 0x5c, 0xfa, 0xec, 0x57, 0x15, 0x07, 0x63, 0xf0, 0xdd, 0x4e, 0x23, + 0xa4, 0x2b, 0x37, 0x99, 0xc1, 0x99, 0xf7, 0x46, 0xdd, 0xa6, 0xfa, 0xc7, 0xe0, 0x7c, 0x27, 0x40, + 0x3d, 0x4c, 0xba, 0xb4, 0xd6, 0x09, 0x48, 0x87, 0x50, 0x14, 0x88, 0x2a, 0x28, 0xda, 0x6f, 0xc5, + 0x55, 0x3a, 0x14, 0xc2, 0x91, 0xac, 0x09, 0xaa, 0x74, 0x8d, 0xf8, 0x34, 0x2a, 0xd3, 0x30, 0xcb, + 0x86, 0x4a, 0xa2, 0xff, 0x34, 0x66, 0x69, 0x3a, 0x2d, 0x8c, 0x7a, 0x65, 0xb2, 0x2a, 0x1c, 0xb7, + 0x0e, 0xda, 0xf7, 0x0f, 0x5f, 0xab, 0x0e, 0xfa, 0xc6, 0xe1, 0x7b, 0xe5, 0xa8, 0x65, 0x4a, 0xff, + 0x5b, 0x03, 0xd7, 0x12, 0xef, 0x6e, 0xbc, 0x23, 0xd4, 0xdc, 0x68, 0x77, 0xa0, 0xa5, 0x82, 0x10, + 0xb2, 0xfa, 0x2f, 0xb6, 0x17, 0xa5, 0xe5, 0x5d, 0xa5, 0x65, 0x69, 0xa8, 0x6b, 0x8c, 0x46, 0xe6, + 0xca, 0x26, 0x5a, 0xf6, 0x1c, 0xa3, 0x97, 0x19, 0x45, 0xf5, 0x1d, 0x0d, 0x5c, 0x89, 0xf1, 0x9a, + 0xd1, 0x64, 0x8f, 0x4e, 0x6b, 0x5a, 0x88, 0x7c, 0xf9, 0x98, 0xfb, 0x84, 0x12, 0xb8, 0xae, 0x04, + 0x5e, 0x1f, 0x14, 0x38, 0x0c, 0xc8, 0xb5, 0x1d, 0xba, 0x85, 0x39, 0xe5, 0xde, 0xd8, 0x08, 0xfd, + 0x37, 0x0d, 0x5c, 0x8a, 0x11, 0x5c, 0x39, 0x87, 0x23, 0x3d, 0x67, 0x84, 0x9e, 0x3b, 0xc7, 0x99, + 0xfb, 0x4a, 0xcc, 0x03, 0x25, 0x66, 0x71, 0x50, 0xcc, 0x00, 0x14, 0x57, 0x92, 0xbd, 0x0c, 0x39, + 0x0b, 0xbd, 0xd1, 0x8f, 0xf5, 0x9f, 0x53, 0x9d, 0x26, 0x35, 0xc0, 0x68, 0xe9, 0x09, 0x21, 0xe1, + 0x85, 0xa3, 0x0f, 0x46, 0x25, 0xe0, 0xde, 0xb8, 0x7e, 0x93, 0xc6, 0xe1, 0xfc, 0xb3, 0x56, 0x95, + 0x44, 0xd7, 0x49, 0x3e, 0xa4, 0xfa, 0x8f, 0x1a, 0x98, 0x8f, 0x5d, 0xa1, 0x7c, 0x34, 0xd4, 0xc4, + 0x50, 0xa0, 0x25, 0x20, 0xa8, 0x3f, 0x77, 0xd4, 0x09, 0xa4, 0x88, 0xdb, 0x8a, 0xf8, 0xd5, 0x41, + 0xe7, 0x93, 0x18, 0x9c, 0xf6, 0xf8, 0xc1, 0xed, 0xcc, 0xf5, 0x86, 0x1f, 0x51, 0x7b, 0xfd, 0xdb, + 0xdd, 0x8a, 0xf6, 0x78, 0xb7, 0xa2, 0xed, 0xec, 0x56, 0xb4, 0xbf, 0x76, 0x2b, 0xda, 0x17, 0x7b, + 0x95, 0xa9, 0x9d, 0xbd, 0xca, 0xd4, 0x1f, 0x7b, 0x95, 0xa9, 0xf7, 0x96, 0x33, 0x7b, 0xe1, 0x87, + 0xe9, 0xff, 0xfd, 0xa2, 0x35, 0xd6, 0x0b, 0xe2, 0x9f, 0xfe, 0x33, 0xff, 0x04, 0x00, 0x00, 0xff, + 0xff, 0xcd, 0xd9, 0xe6, 0xed, 0x99, 0x10, 0x00, 0x00, } func (this *DelegatorWithdrawInfo) Equal(that interface{}) bool { diff --git a/x/distribution/types/query.pb.go b/x/distribution/types/query.pb.go index ed67841208..539426f7c3 100644 --- a/x/distribution/types/query.pb.go +++ b/x/distribution/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/distribution/query.proto +// source: cosmos/distribution/v1beta1/query.proto package types @@ -39,7 +39,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{0} + return fileDescriptor_5efd02cbc06efdc9, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +78,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{1} + return fileDescriptor_5efd02cbc06efdc9, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -126,7 +126,7 @@ func (m *QueryValidatorOutstandingRewardsRequest) Reset() { func (m *QueryValidatorOutstandingRewardsRequest) String() string { return proto.CompactTextString(m) } func (*QueryValidatorOutstandingRewardsRequest) ProtoMessage() {} func (*QueryValidatorOutstandingRewardsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{2} + return fileDescriptor_5efd02cbc06efdc9, []int{2} } func (m *QueryValidatorOutstandingRewardsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -173,7 +173,7 @@ func (m *QueryValidatorOutstandingRewardsResponse) Reset() { func (m *QueryValidatorOutstandingRewardsResponse) String() string { return proto.CompactTextString(m) } func (*QueryValidatorOutstandingRewardsResponse) ProtoMessage() {} func (*QueryValidatorOutstandingRewardsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{3} + return fileDescriptor_5efd02cbc06efdc9, []int{3} } func (m *QueryValidatorOutstandingRewardsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -219,7 +219,7 @@ func (m *QueryValidatorCommissionRequest) Reset() { *m = QueryValidatorC func (m *QueryValidatorCommissionRequest) String() string { return proto.CompactTextString(m) } func (*QueryValidatorCommissionRequest) ProtoMessage() {} func (*QueryValidatorCommissionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{4} + return fileDescriptor_5efd02cbc06efdc9, []int{4} } func (m *QueryValidatorCommissionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -265,7 +265,7 @@ func (m *QueryValidatorCommissionResponse) Reset() { *m = QueryValidator func (m *QueryValidatorCommissionResponse) String() string { return proto.CompactTextString(m) } func (*QueryValidatorCommissionResponse) ProtoMessage() {} func (*QueryValidatorCommissionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{5} + return fileDescriptor_5efd02cbc06efdc9, []int{5} } func (m *QueryValidatorCommissionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -317,7 +317,7 @@ func (m *QueryValidatorSlashesRequest) Reset() { *m = QueryValidatorSlas func (m *QueryValidatorSlashesRequest) String() string { return proto.CompactTextString(m) } func (*QueryValidatorSlashesRequest) ProtoMessage() {} func (*QueryValidatorSlashesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{6} + return fileDescriptor_5efd02cbc06efdc9, []int{6} } func (m *QueryValidatorSlashesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -386,7 +386,7 @@ func (m *QueryValidatorSlashesResponse) Reset() { *m = QueryValidatorSla func (m *QueryValidatorSlashesResponse) String() string { return proto.CompactTextString(m) } func (*QueryValidatorSlashesResponse) ProtoMessage() {} func (*QueryValidatorSlashesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{7} + return fileDescriptor_5efd02cbc06efdc9, []int{7} } func (m *QueryValidatorSlashesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -441,7 +441,7 @@ func (m *QueryDelegationRewardsRequest) Reset() { *m = QueryDelegationRe func (m *QueryDelegationRewardsRequest) String() string { return proto.CompactTextString(m) } func (*QueryDelegationRewardsRequest) ProtoMessage() {} func (*QueryDelegationRewardsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{8} + return fileDescriptor_5efd02cbc06efdc9, []int{8} } func (m *QueryDelegationRewardsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -494,7 +494,7 @@ func (m *QueryDelegationRewardsResponse) Reset() { *m = QueryDelegationR func (m *QueryDelegationRewardsResponse) String() string { return proto.CompactTextString(m) } func (*QueryDelegationRewardsResponse) ProtoMessage() {} func (*QueryDelegationRewardsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{9} + return fileDescriptor_5efd02cbc06efdc9, []int{9} } func (m *QueryDelegationRewardsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -540,7 +540,7 @@ func (m *QueryDelegationTotalRewardsRequest) Reset() { *m = QueryDelegat func (m *QueryDelegationTotalRewardsRequest) String() string { return proto.CompactTextString(m) } func (*QueryDelegationTotalRewardsRequest) ProtoMessage() {} func (*QueryDelegationTotalRewardsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{10} + return fileDescriptor_5efd02cbc06efdc9, []int{10} } func (m *QueryDelegationTotalRewardsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -588,7 +588,7 @@ func (m *QueryDelegationTotalRewardsResponse) Reset() { *m = QueryDelega func (m *QueryDelegationTotalRewardsResponse) String() string { return proto.CompactTextString(m) } func (*QueryDelegationTotalRewardsResponse) ProtoMessage() {} func (*QueryDelegationTotalRewardsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{11} + return fileDescriptor_5efd02cbc06efdc9, []int{11} } func (m *QueryDelegationTotalRewardsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -641,7 +641,7 @@ func (m *QueryDelegatorValidatorsRequest) Reset() { *m = QueryDelegatorV func (m *QueryDelegatorValidatorsRequest) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorValidatorsRequest) ProtoMessage() {} func (*QueryDelegatorValidatorsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{12} + return fileDescriptor_5efd02cbc06efdc9, []int{12} } func (m *QueryDelegatorValidatorsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -687,7 +687,7 @@ func (m *QueryDelegatorValidatorsResponse) Reset() { *m = QueryDelegator func (m *QueryDelegatorValidatorsResponse) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorValidatorsResponse) ProtoMessage() {} func (*QueryDelegatorValidatorsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{13} + return fileDescriptor_5efd02cbc06efdc9, []int{13} } func (m *QueryDelegatorValidatorsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -733,7 +733,7 @@ func (m *QueryDelegatorWithdrawAddressRequest) Reset() { *m = QueryDeleg func (m *QueryDelegatorWithdrawAddressRequest) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorWithdrawAddressRequest) ProtoMessage() {} func (*QueryDelegatorWithdrawAddressRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{14} + return fileDescriptor_5efd02cbc06efdc9, []int{14} } func (m *QueryDelegatorWithdrawAddressRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -779,7 +779,7 @@ func (m *QueryDelegatorWithdrawAddressResponse) Reset() { *m = QueryDele func (m *QueryDelegatorWithdrawAddressResponse) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorWithdrawAddressResponse) ProtoMessage() {} func (*QueryDelegatorWithdrawAddressResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{15} + return fileDescriptor_5efd02cbc06efdc9, []int{15} } func (m *QueryDelegatorWithdrawAddressResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -823,7 +823,7 @@ func (m *QueryCommunityPoolRequest) Reset() { *m = QueryCommunityPoolReq func (m *QueryCommunityPoolRequest) String() string { return proto.CompactTextString(m) } func (*QueryCommunityPoolRequest) ProtoMessage() {} func (*QueryCommunityPoolRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{16} + return fileDescriptor_5efd02cbc06efdc9, []int{16} } func (m *QueryCommunityPoolRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -862,7 +862,7 @@ func (m *QueryCommunityPoolResponse) Reset() { *m = QueryCommunityPoolRe func (m *QueryCommunityPoolResponse) String() string { return proto.CompactTextString(m) } func (*QueryCommunityPoolResponse) ProtoMessage() {} func (*QueryCommunityPoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_2111c1b119d22af6, []int{17} + return fileDescriptor_5efd02cbc06efdc9, []int{17} } func (m *QueryCommunityPoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -899,89 +899,93 @@ func (m *QueryCommunityPoolResponse) GetPool() github_com_cosmos_cosmos_sdk_type } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.distribution.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.distribution.QueryParamsResponse") - proto.RegisterType((*QueryValidatorOutstandingRewardsRequest)(nil), "cosmos.distribution.QueryValidatorOutstandingRewardsRequest") - proto.RegisterType((*QueryValidatorOutstandingRewardsResponse)(nil), "cosmos.distribution.QueryValidatorOutstandingRewardsResponse") - proto.RegisterType((*QueryValidatorCommissionRequest)(nil), "cosmos.distribution.QueryValidatorCommissionRequest") - proto.RegisterType((*QueryValidatorCommissionResponse)(nil), "cosmos.distribution.QueryValidatorCommissionResponse") - proto.RegisterType((*QueryValidatorSlashesRequest)(nil), "cosmos.distribution.QueryValidatorSlashesRequest") - proto.RegisterType((*QueryValidatorSlashesResponse)(nil), "cosmos.distribution.QueryValidatorSlashesResponse") - proto.RegisterType((*QueryDelegationRewardsRequest)(nil), "cosmos.distribution.QueryDelegationRewardsRequest") - proto.RegisterType((*QueryDelegationRewardsResponse)(nil), "cosmos.distribution.QueryDelegationRewardsResponse") - proto.RegisterType((*QueryDelegationTotalRewardsRequest)(nil), "cosmos.distribution.QueryDelegationTotalRewardsRequest") - proto.RegisterType((*QueryDelegationTotalRewardsResponse)(nil), "cosmos.distribution.QueryDelegationTotalRewardsResponse") - proto.RegisterType((*QueryDelegatorValidatorsRequest)(nil), "cosmos.distribution.QueryDelegatorValidatorsRequest") - proto.RegisterType((*QueryDelegatorValidatorsResponse)(nil), "cosmos.distribution.QueryDelegatorValidatorsResponse") - proto.RegisterType((*QueryDelegatorWithdrawAddressRequest)(nil), "cosmos.distribution.QueryDelegatorWithdrawAddressRequest") - proto.RegisterType((*QueryDelegatorWithdrawAddressResponse)(nil), "cosmos.distribution.QueryDelegatorWithdrawAddressResponse") - proto.RegisterType((*QueryCommunityPoolRequest)(nil), "cosmos.distribution.QueryCommunityPoolRequest") - proto.RegisterType((*QueryCommunityPoolResponse)(nil), "cosmos.distribution.QueryCommunityPoolResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.distribution.v1beta1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.distribution.v1beta1.QueryParamsResponse") + proto.RegisterType((*QueryValidatorOutstandingRewardsRequest)(nil), "cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsRequest") + proto.RegisterType((*QueryValidatorOutstandingRewardsResponse)(nil), "cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse") + proto.RegisterType((*QueryValidatorCommissionRequest)(nil), "cosmos.distribution.v1beta1.QueryValidatorCommissionRequest") + proto.RegisterType((*QueryValidatorCommissionResponse)(nil), "cosmos.distribution.v1beta1.QueryValidatorCommissionResponse") + proto.RegisterType((*QueryValidatorSlashesRequest)(nil), "cosmos.distribution.v1beta1.QueryValidatorSlashesRequest") + proto.RegisterType((*QueryValidatorSlashesResponse)(nil), "cosmos.distribution.v1beta1.QueryValidatorSlashesResponse") + proto.RegisterType((*QueryDelegationRewardsRequest)(nil), "cosmos.distribution.v1beta1.QueryDelegationRewardsRequest") + proto.RegisterType((*QueryDelegationRewardsResponse)(nil), "cosmos.distribution.v1beta1.QueryDelegationRewardsResponse") + proto.RegisterType((*QueryDelegationTotalRewardsRequest)(nil), "cosmos.distribution.v1beta1.QueryDelegationTotalRewardsRequest") + proto.RegisterType((*QueryDelegationTotalRewardsResponse)(nil), "cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse") + proto.RegisterType((*QueryDelegatorValidatorsRequest)(nil), "cosmos.distribution.v1beta1.QueryDelegatorValidatorsRequest") + proto.RegisterType((*QueryDelegatorValidatorsResponse)(nil), "cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse") + proto.RegisterType((*QueryDelegatorWithdrawAddressRequest)(nil), "cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressRequest") + proto.RegisterType((*QueryDelegatorWithdrawAddressResponse)(nil), "cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse") + proto.RegisterType((*QueryCommunityPoolRequest)(nil), "cosmos.distribution.v1beta1.QueryCommunityPoolRequest") + proto.RegisterType((*QueryCommunityPoolResponse)(nil), "cosmos.distribution.v1beta1.QueryCommunityPoolResponse") } -func init() { proto.RegisterFile("cosmos/distribution/query.proto", fileDescriptor_2111c1b119d22af6) } +func init() { + proto.RegisterFile("cosmos/distribution/v1beta1/query.proto", fileDescriptor_5efd02cbc06efdc9) +} -var fileDescriptor_2111c1b119d22af6 = []byte{ - // 936 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xcd, 0x6f, 0xdc, 0x44, - 0x14, 0xdf, 0xd9, 0xa6, 0xa9, 0x78, 0x6d, 0x49, 0x3a, 0xa9, 0xd0, 0xd6, 0xa1, 0xbb, 0x91, 0x0b, - 0x64, 0x25, 0x54, 0x9b, 0x24, 0x20, 0x48, 0x05, 0x87, 0xa4, 0x41, 0xaa, 0x84, 0x04, 0xdb, 0x05, - 0x15, 0xa8, 0xa0, 0xd5, 0xc4, 0x1e, 0x79, 0x2d, 0xbc, 0x9e, 0xad, 0x67, 0x9c, 0x10, 0xf1, 0x21, - 0x90, 0x0a, 0x88, 0x03, 0x12, 0x12, 0x57, 0xae, 0x5c, 0xfa, 0x97, 0xf4, 0x58, 0x6e, 0x9c, 0x5a, - 0x94, 0xfc, 0x17, 0x9c, 0xd0, 0xce, 0x8c, 0xbd, 0xeb, 0xc4, 0xf6, 0x7e, 0x34, 0xda, 0xdb, 0xee, - 0x9b, 0xf7, 0x7e, 0xef, 0xf7, 0x3e, 0xe6, 0xcd, 0x33, 0x34, 0x1c, 0xc6, 0xbb, 0x8c, 0xdb, 0xae, - 0xcf, 0x45, 0xe4, 0xef, 0xc6, 0xc2, 0x67, 0xa1, 0xfd, 0x20, 0xa6, 0xd1, 0x81, 0xd5, 0x8b, 0x98, - 0x60, 0x78, 0x49, 0x29, 0x58, 0xc3, 0x0a, 0xc6, 0x55, 0x6d, 0x25, 0x15, 0xed, 0x1e, 0xf1, 0xfc, - 0x90, 0xf4, 0x0f, 0x94, 0x8d, 0x71, 0xd9, 0x63, 0x1e, 0x93, 0x3f, 0xed, 0xfe, 0x2f, 0x2d, 0xd5, - 0x48, 0xb6, 0x06, 0x54, 0xc2, 0xd7, 0xf2, 0xfc, 0x0f, 0xff, 0x51, 0x7a, 0xe6, 0x65, 0xc0, 0xb7, - 0xfb, 0xce, 0x5a, 0x24, 0x22, 0x5d, 0xde, 0xa6, 0x0f, 0x62, 0xca, 0x85, 0xd9, 0x82, 0xa5, 0x8c, - 0x94, 0xf7, 0x58, 0xc8, 0x29, 0xde, 0x84, 0xf9, 0x9e, 0x94, 0xd4, 0xd0, 0x0a, 0x6a, 0x9e, 0x5f, - 0x5f, 0xb6, 0x72, 0x82, 0xb0, 0x94, 0xd1, 0xf6, 0xdc, 0xe3, 0xa7, 0x8d, 0x4a, 0x5b, 0x1b, 0x98, - 0xbf, 0x22, 0x58, 0x95, 0x90, 0x77, 0x48, 0xe0, 0xbb, 0x44, 0xb0, 0xe8, 0xa3, 0x58, 0x70, 0x41, - 0x42, 0xd7, 0x0f, 0xbd, 0x36, 0xdd, 0x27, 0x91, 0x9b, 0x78, 0xc7, 0xf7, 0xe0, 0xd2, 0x5e, 0xa2, - 0x75, 0x9f, 0xb8, 0x6e, 0x44, 0xb9, 0xf2, 0x78, 0x61, 0x7b, 0xed, 0xbf, 0xa7, 0x8d, 0xeb, 0x9e, - 0x2f, 0x3a, 0xf1, 0xae, 0xe5, 0xb0, 0xae, 0x9d, 0x09, 0xfd, 0x3a, 0x77, 0xbf, 0xb2, 0xc5, 0x41, - 0x8f, 0x72, 0xeb, 0x0e, 0x09, 0xb6, 0x94, 0x61, 0x7b, 0x31, 0xc5, 0xd2, 0x12, 0xf3, 0x5b, 0x68, - 0x8e, 0xa6, 0xa2, 0x43, 0x6e, 0xc1, 0xb9, 0x48, 0x89, 0x74, 0xcc, 0x6f, 0xe4, 0xc6, 0x5c, 0x02, - 0xa5, 0x13, 0x91, 0xc0, 0x98, 0x3f, 0x22, 0x68, 0x64, 0xdd, 0xdf, 0x64, 0xdd, 0xae, 0xcf, 0xb9, - 0xcf, 0xc2, 0x59, 0x65, 0xe0, 0x3b, 0x58, 0x29, 0xa6, 0xa0, 0x23, 0xff, 0x1c, 0xc0, 0x49, 0xa5, - 0x3a, 0xf8, 0x8d, 0xf2, 0xe0, 0xb7, 0x1c, 0x27, 0xee, 0xc6, 0x01, 0x11, 0xd4, 0x1d, 0x00, 0xea, - 0xf8, 0x87, 0xc0, 0xcc, 0x5f, 0xaa, 0xf0, 0x72, 0xd6, 0xff, 0xc7, 0x01, 0xe1, 0x1d, 0x3a, 0xab, - 0x0e, 0xc0, 0xab, 0xb0, 0xc0, 0x05, 0x89, 0x84, 0x1f, 0x7a, 0xf7, 0x3b, 0xd4, 0xf7, 0x3a, 0xa2, - 0x56, 0x5d, 0x41, 0xcd, 0xb9, 0xf6, 0x8b, 0x89, 0xf8, 0x96, 0x94, 0xe2, 0x6b, 0x70, 0x91, 0xca, - 0x62, 0x26, 0x6a, 0x67, 0xa4, 0xda, 0x05, 0x25, 0xd4, 0x4a, 0x9b, 0x00, 0x83, 0xab, 0x5a, 0x9b, - 0x93, 0x99, 0xba, 0x92, 0x64, 0x4a, 0xdd, 0xf9, 0x16, 0xf1, 0xa8, 0x0e, 0xae, 0x3d, 0xa4, 0x6c, - 0xfe, 0x85, 0xe0, 0x6a, 0x41, 0x26, 0x74, 0x19, 0x6e, 0xc1, 0x39, 0xae, 0x44, 0x35, 0xb4, 0x72, - 0xa6, 0x79, 0x7e, 0xbd, 0x59, 0x5e, 0x03, 0x69, 0xff, 0xfe, 0x1e, 0x0d, 0x45, 0xd2, 0x78, 0xda, - 0x1c, 0xdf, 0xc8, 0xd0, 0xac, 0x4a, 0x9a, 0x46, 0x1e, 0x4d, 0xe5, 0x39, 0xc3, 0xf3, 0x59, 0xc2, - 0x73, 0x87, 0x06, 0xd4, 0x93, 0xb2, 0x93, 0x97, 0xd6, 0x55, 0x67, 0x53, 0x97, 0x6c, 0xcb, 0x71, - 0xd2, 0x92, 0xa5, 0x58, 0x49, 0xc9, 0x72, 0x5b, 0xa2, 0x7a, 0x7a, 0x57, 0xe2, 0x07, 0x04, 0xf5, - 0xa2, 0x08, 0x75, 0x29, 0xee, 0x0d, 0xcf, 0x82, 0x7e, 0x29, 0x16, 0x92, 0xec, 0xed, 0x50, 0xe7, - 0x26, 0xf3, 0xc3, 0xed, 0x8d, 0x7e, 0xc6, 0x1f, 0x3d, 0x6b, 0xbc, 0x3e, 0x06, 0x1b, 0x6d, 0xc3, - 0x07, 0x93, 0xe1, 0x21, 0x02, 0xf3, 0x18, 0x85, 0x4f, 0x98, 0x20, 0xc1, 0x6c, 0x33, 0x6d, 0xfe, - 0x8d, 0xe0, 0x5a, 0x29, 0x0d, 0x9d, 0x8e, 0x0f, 0x8f, 0xa7, 0xc3, 0xca, 0xed, 0xcc, 0x01, 0xca, - 0x4e, 0xe2, 0x49, 0x21, 0x1d, 0x1b, 0x8c, 0xf8, 0x2e, 0x9c, 0x15, 0x7d, 0x3f, 0xb5, 0xea, 0x29, - 0x26, 0x57, 0x41, 0x0e, 0x86, 0x6e, 0xca, 0x21, 0xbd, 0x30, 0x33, 0xcb, 0x6b, 0xac, 0x87, 0x6e, - 0x2e, 0x05, 0x9d, 0xd3, 0xdb, 0x00, 0x69, 0x67, 0xaa, 0xb4, 0x4e, 0xd5, 0xde, 0x43, 0x20, 0xe6, - 0xcf, 0x08, 0x5e, 0xc9, 0xfa, 0xfd, 0xd4, 0x17, 0x1d, 0x37, 0x22, 0xfb, 0x89, 0xf6, 0x8c, 0xe2, - 0xff, 0x09, 0xc1, 0xab, 0x23, 0x88, 0xe8, 0x2c, 0x7c, 0x01, 0x8b, 0xfb, 0xfa, 0xe8, 0xf9, 0x89, - 0x2c, 0xec, 0x67, 0xbd, 0x98, 0xcb, 0x70, 0x45, 0xd2, 0xe8, 0x3f, 0x51, 0x71, 0xe8, 0x8b, 0x83, - 0x16, 0x63, 0x41, 0xb2, 0xf9, 0xec, 0x81, 0x91, 0x77, 0xa8, 0x89, 0x7d, 0x06, 0x73, 0x3d, 0xc6, - 0x82, 0x53, 0xbd, 0xfe, 0x12, 0x71, 0xfd, 0xd1, 0x0b, 0x70, 0x56, 0x3a, 0xc6, 0x5f, 0xc2, 0xbc, - 0xda, 0xa0, 0xf0, 0x6a, 0xee, 0x7d, 0x3a, 0xb9, 0xae, 0x19, 0xcd, 0xd1, 0x8a, 0x2a, 0x00, 0xb3, - 0x82, 0xff, 0x44, 0xb0, 0x5c, 0xb2, 0xad, 0xe0, 0x77, 0x8b, 0xb1, 0x46, 0xaf, 0x6e, 0xc6, 0x7b, - 0x53, 0x5a, 0xa7, 0xf4, 0x1e, 0x22, 0x58, 0xca, 0xd9, 0x4a, 0xf0, 0x9b, 0x63, 0x00, 0x9f, 0xd8, - 0xa3, 0x8c, 0xb7, 0x26, 0xb4, 0x4a, 0x69, 0x7c, 0x03, 0x8b, 0xc7, 0x5f, 0x64, 0xbc, 0x36, 0x06, - 0x58, 0x76, 0x8f, 0x31, 0xd6, 0x27, 0x31, 0x49, 0x9d, 0x7f, 0x0f, 0x97, 0x4e, 0x3c, 0x42, 0xb8, - 0x04, 0xaa, 0xe8, 0x4d, 0x36, 0x36, 0x26, 0xb2, 0x49, 0xfd, 0xff, 0x86, 0xe0, 0xa5, 0xfc, 0xd9, - 0x8f, 0xdf, 0x1e, 0x07, 0x31, 0xe7, 0xd1, 0x32, 0xde, 0x99, 0xdc, 0x30, 0xd3, 0x13, 0x39, 0x43, - 0xb3, 0xac, 0x27, 0x8a, 0xc7, 0x7c, 0x59, 0x4f, 0x94, 0x4c, 0x66, 0xb3, 0x82, 0xff, 0x40, 0x50, - 0x2b, 0x1a, 0x5d, 0x78, 0x73, 0x0c, 0xd4, 0xfc, 0xb9, 0x6b, 0xdc, 0x98, 0xc6, 0x34, 0x65, 0x15, - 0xc1, 0xc5, 0xcc, 0xac, 0xc2, 0x56, 0x31, 0x5c, 0xde, 0xc4, 0x33, 0xec, 0xb1, 0xf5, 0x13, 0x9f, - 0xdb, 0x1f, 0x3c, 0x3e, 0xac, 0xa3, 0x27, 0x87, 0x75, 0xf4, 0xef, 0x61, 0x1d, 0xfd, 0x7e, 0x54, - 0xaf, 0x3c, 0x39, 0xaa, 0x57, 0xfe, 0x39, 0xaa, 0x57, 0xee, 0xae, 0x95, 0x4e, 0xbe, 0xaf, 0xb3, - 0x9f, 0xa3, 0x72, 0x10, 0xee, 0xce, 0xcb, 0x0f, 0xd1, 0x8d, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, - 0x6d, 0x56, 0x99, 0x70, 0x32, 0x0f, 0x00, 0x00, +var fileDescriptor_5efd02cbc06efdc9 = []byte{ + // 969 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xcd, 0x6f, 0x1b, 0x45, + 0x14, 0xf7, 0xb8, 0x69, 0x2a, 0xbd, 0xb6, 0x34, 0x9d, 0x56, 0xc8, 0x6c, 0x8a, 0x13, 0x6d, 0x80, + 0x44, 0xa0, 0xae, 0x9b, 0x54, 0x2a, 0x1f, 0x05, 0x81, 0xdd, 0x14, 0x90, 0x38, 0x90, 0x1a, 0x14, + 0x2a, 0x84, 0xa8, 0xc6, 0xbb, 0xa3, 0xf5, 0xaa, 0xeb, 0x1d, 0x77, 0x67, 0x36, 0x21, 0x47, 0xa0, + 0x45, 0x42, 0x08, 0xc4, 0xa1, 0x57, 0x4e, 0xdc, 0x10, 0x7f, 0x01, 0x12, 0xf7, 0x1e, 0x7b, 0xe4, + 0xd4, 0xa2, 0x44, 0xe2, 0x8f, 0xe0, 0x84, 0x3c, 0x1f, 0x6b, 0x6f, 0xb2, 0x5e, 0x7f, 0x84, 0xfa, + 0x94, 0xe8, 0xed, 0x7b, 0xbf, 0xf9, 0xbd, 0xdf, 0x9b, 0xf7, 0xe6, 0x19, 0x56, 0x5d, 0xc6, 0x3b, + 0x8c, 0xd7, 0xbc, 0x80, 0x8b, 0x38, 0x68, 0x25, 0x22, 0x60, 0x51, 0x6d, 0x67, 0xbd, 0x45, 0x05, + 0x59, 0xaf, 0xdd, 0x4b, 0x68, 0xbc, 0xe7, 0x74, 0x63, 0x26, 0x18, 0x5e, 0x54, 0x8e, 0xce, 0xa0, + 0xa3, 0xa3, 0x1d, 0xad, 0x57, 0x35, 0x4a, 0x8b, 0x70, 0xaa, 0xa2, 0x52, 0x8c, 0x2e, 0xf1, 0x83, + 0x88, 0x48, 0x6f, 0x09, 0x64, 0x5d, 0xf4, 0x99, 0xcf, 0xe4, 0xbf, 0xb5, 0xde, 0x7f, 0xda, 0x5a, + 0x1d, 0x44, 0x30, 0xb1, 0x2e, 0x0b, 0x4c, 0x94, 0x53, 0xc4, 0x33, 0xc3, 0x49, 0xfa, 0xdb, 0x17, + 0x01, 0xdf, 0xea, 0xf1, 0xd8, 0x22, 0x31, 0xe9, 0xf0, 0x26, 0xbd, 0x97, 0x50, 0x2e, 0xec, 0xdb, + 0x70, 0x21, 0x63, 0xe5, 0x5d, 0x16, 0x71, 0x8a, 0xeb, 0x30, 0xdf, 0x95, 0x96, 0x0a, 0x5a, 0x46, + 0x6b, 0xa7, 0x37, 0x56, 0x9c, 0x82, 0x64, 0x1d, 0x15, 0xdc, 0x98, 0x7b, 0xf4, 0x64, 0xa9, 0xd4, + 0xd4, 0x81, 0xf6, 0xf7, 0x08, 0x56, 0x25, 0xf4, 0x36, 0x09, 0x03, 0x8f, 0x08, 0x16, 0x7f, 0x9c, + 0x08, 0x2e, 0x48, 0xe4, 0x05, 0x91, 0xdf, 0xa4, 0xbb, 0x24, 0xf6, 0x0c, 0x0b, 0xfc, 0x25, 0x9c, + 0xdf, 0x31, 0x5e, 0x77, 0x88, 0xe7, 0xc5, 0x94, 0xab, 0x93, 0xcf, 0x34, 0xd6, 0xff, 0x7d, 0xb2, + 0x74, 0xd9, 0x0f, 0x44, 0x3b, 0x69, 0x39, 0x2e, 0xeb, 0xd4, 0x74, 0xd6, 0xea, 0xcf, 0x65, 0xee, + 0xdd, 0xad, 0x89, 0xbd, 0x2e, 0xe5, 0xce, 0x36, 0x09, 0xeb, 0x2a, 0xb0, 0xb9, 0x90, 0x62, 0x69, + 0x8b, 0x7d, 0x1f, 0xc1, 0xda, 0x68, 0x2e, 0x3a, 0xf7, 0xdb, 0x70, 0x2a, 0x56, 0x26, 0x9d, 0xfc, + 0x1b, 0x85, 0xc9, 0x17, 0x40, 0x6a, 0x45, 0x0c, 0x9c, 0xfd, 0x35, 0x82, 0xa5, 0x2c, 0x8d, 0x1b, + 0xac, 0xd3, 0x09, 0x38, 0x0f, 0x58, 0x34, 0x2b, 0x29, 0x1e, 0x20, 0x58, 0x1e, 0xce, 0x41, 0x4b, + 0x40, 0x00, 0xdc, 0xd4, 0xaa, 0x55, 0xb8, 0x3e, 0x9e, 0x0a, 0x75, 0xd7, 0x4d, 0x3a, 0x49, 0x48, + 0x04, 0xf5, 0xfa, 0xc0, 0x5a, 0x88, 0x01, 0x50, 0xfb, 0x61, 0x19, 0x2e, 0x65, 0x79, 0x7c, 0x12, + 0x12, 0xde, 0xa6, 0xb3, 0xba, 0x13, 0x78, 0x15, 0xce, 0x71, 0x41, 0x62, 0x11, 0x44, 0xfe, 0x9d, + 0x36, 0x0d, 0xfc, 0xb6, 0xa8, 0x94, 0x97, 0xd1, 0xda, 0x5c, 0xf3, 0x39, 0x63, 0xfe, 0x50, 0x5a, + 0xf1, 0x0a, 0x9c, 0xa5, 0xb2, 0xaa, 0xc6, 0xed, 0x84, 0x74, 0x3b, 0xa3, 0x8c, 0xda, 0xe9, 0x7d, + 0x80, 0x7e, 0x5f, 0x57, 0xe6, 0xa4, 0x62, 0xaf, 0x18, 0xc5, 0x7a, 0x2d, 0xec, 0xa8, 0xd1, 0xd1, + 0x6f, 0x19, 0x9f, 0xea, 0x4c, 0x9b, 0x03, 0x91, 0xf6, 0x1f, 0x08, 0x5e, 0x1c, 0x22, 0x8b, 0xae, + 0xcd, 0x16, 0x9c, 0xe2, 0xca, 0x54, 0x41, 0xcb, 0x27, 0xd6, 0x4e, 0x6f, 0x5c, 0x19, 0xaf, 0x30, + 0x12, 0xe7, 0xe6, 0x0e, 0x8d, 0x84, 0xb9, 0x96, 0x1a, 0x06, 0x7f, 0x90, 0xe1, 0x5e, 0x96, 0xdc, + 0x57, 0x47, 0x72, 0x57, 0x74, 0x32, 0xe4, 0x9f, 0x1a, 0xf2, 0x9b, 0x34, 0xa4, 0xbe, 0xb4, 0x1d, + 0x6d, 0x74, 0x4f, 0x7d, 0x9b, 0xba, 0xa8, 0x75, 0xd7, 0x4d, 0x8b, 0x9a, 0x62, 0x99, 0xa2, 0xe6, + 0x5e, 0x9a, 0xf2, 0xff, 0xd7, 0x3d, 0x3f, 0x22, 0xa8, 0x0e, 0xcb, 0x50, 0xd7, 0xe7, 0xee, 0xe0, + 0xf8, 0xe8, 0xd5, 0xe7, 0x52, 0x46, 0x4a, 0x23, 0xe2, 0x26, 0x75, 0x6f, 0xb0, 0x20, 0x6a, 0x5c, + 0xed, 0xd5, 0xe2, 0xb7, 0xa7, 0x4b, 0xaf, 0x8d, 0x41, 0x4d, 0xc7, 0xf0, 0xfe, 0x44, 0xb9, 0x8f, + 0xc0, 0x3e, 0xc4, 0xe7, 0x53, 0x26, 0x48, 0x38, 0x5b, 0xd9, 0xed, 0x7f, 0x10, 0xac, 0x14, 0xd2, + 0xd0, 0xda, 0x6c, 0x1f, 0xd6, 0xe6, 0x5a, 0xe1, 0xdd, 0xed, 0xa3, 0x6d, 0x9a, 0x13, 0x15, 0xe2, + 0xa1, 0xc1, 0x8a, 0x7d, 0x38, 0x29, 0x7a, 0xe7, 0x55, 0xca, 0xcf, 0x4a, 0x71, 0x85, 0xdf, 0x9f, + 0xe0, 0x29, 0xa1, 0xb4, 0xbf, 0x66, 0x26, 0x76, 0xa2, 0x07, 0x78, 0x2e, 0x05, 0x2d, 0xf4, 0x2d, + 0x80, 0xf4, 0xee, 0x2a, 0xad, 0xa7, 0x6a, 0x80, 0x01, 0x10, 0xfb, 0x3b, 0x04, 0x2f, 0x65, 0xcf, + 0xfd, 0x2c, 0x10, 0x6d, 0x2f, 0x26, 0xbb, 0xc6, 0x7b, 0x46, 0xf9, 0x3f, 0x40, 0xf0, 0xf2, 0x08, + 0x22, 0x5a, 0x85, 0x2f, 0x60, 0x61, 0x57, 0x7f, 0x3a, 0x3e, 0x91, 0x73, 0xbb, 0xd9, 0x53, 0xec, + 0x45, 0x78, 0x41, 0xd2, 0xe8, 0x3d, 0x73, 0x49, 0x14, 0x88, 0xbd, 0x2d, 0xc6, 0x42, 0xb3, 0x57, + 0x7d, 0x8b, 0xc0, 0xca, 0xfb, 0xaa, 0x99, 0x51, 0x98, 0xeb, 0x32, 0x16, 0x3e, 0xbb, 0x09, 0x21, + 0xe1, 0x37, 0xfe, 0x04, 0x38, 0x29, 0x59, 0xe0, 0x0e, 0xcc, 0xab, 0x2d, 0x0d, 0xd7, 0x0a, 0x5b, + 0xee, 0xe8, 0x8a, 0x68, 0x5d, 0x19, 0x3f, 0x40, 0x65, 0x67, 0x97, 0xf0, 0xef, 0x08, 0x16, 0x0b, + 0x16, 0x23, 0xbc, 0x39, 0x1a, 0x73, 0xf4, 0xda, 0x68, 0xdd, 0x3c, 0x26, 0x4a, 0x4a, 0xf7, 0x21, + 0x82, 0x0b, 0x39, 0xfb, 0x10, 0x7e, 0x7b, 0x82, 0x03, 0x8e, 0xac, 0x72, 0xd6, 0x3b, 0x53, 0x46, + 0xa7, 0xb4, 0x7e, 0x40, 0xb0, 0x70, 0x78, 0x0f, 0xc0, 0x6f, 0x4e, 0x80, 0x9a, 0x5d, 0xa9, 0xac, + 0xb7, 0xa6, 0x09, 0x4d, 0xd9, 0xfc, 0x84, 0xe0, 0xfc, 0x91, 0x67, 0x0f, 0x8f, 0x81, 0x39, 0x6c, + 0x1b, 0xb0, 0xae, 0x4f, 0x15, 0x9b, 0x12, 0xfa, 0x05, 0xc1, 0xf3, 0xf9, 0x0f, 0x0e, 0x7e, 0x77, + 0x12, 0xe4, 0x9c, 0x17, 0xd3, 0x7a, 0x6f, 0x7a, 0x80, 0xcc, 0xad, 0xca, 0x19, 0xd2, 0xe3, 0xdc, + 0xaa, 0xe1, 0xcf, 0xcb, 0x38, 0xb7, 0xaa, 0xe0, 0x65, 0xb0, 0x4b, 0xf8, 0x57, 0x04, 0x95, 0x61, + 0xa3, 0x13, 0xd7, 0x27, 0x40, 0xcf, 0x9f, 0xff, 0x56, 0xe3, 0x38, 0x10, 0x29, 0xcb, 0x6f, 0x10, + 0x9c, 0xcd, 0xcc, 0x4e, 0x7c, 0x6d, 0x34, 0x6e, 0xde, 0x28, 0xb6, 0x5e, 0x9f, 0x38, 0xce, 0x90, + 0x68, 0x7c, 0xf4, 0x68, 0xbf, 0x8a, 0x1e, 0xef, 0x57, 0xd1, 0xdf, 0xfb, 0x55, 0xf4, 0xf3, 0x41, + 0xb5, 0xf4, 0xf8, 0xa0, 0x5a, 0xfa, 0xeb, 0xa0, 0x5a, 0xfa, 0x7c, 0xbd, 0x70, 0x18, 0x7f, 0x95, + 0xfd, 0x55, 0x2e, 0x67, 0x73, 0x6b, 0x5e, 0xfe, 0x0e, 0xbf, 0xfa, 0x5f, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x54, 0xd9, 0x7d, 0xe9, 0x61, 0x10, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1026,7 +1030,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -1035,7 +1039,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) ValidatorOutstandingRewards(ctx context.Context, in *QueryValidatorOutstandingRewardsRequest, opts ...grpc.CallOption) (*QueryValidatorOutstandingRewardsResponse, error) { out := new(QueryValidatorOutstandingRewardsResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.Query/ValidatorOutstandingRewards", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/ValidatorOutstandingRewards", in, out, opts...) if err != nil { return nil, err } @@ -1044,7 +1048,7 @@ func (c *queryClient) ValidatorOutstandingRewards(ctx context.Context, in *Query func (c *queryClient) ValidatorCommission(ctx context.Context, in *QueryValidatorCommissionRequest, opts ...grpc.CallOption) (*QueryValidatorCommissionResponse, error) { out := new(QueryValidatorCommissionResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.Query/ValidatorCommission", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/ValidatorCommission", in, out, opts...) if err != nil { return nil, err } @@ -1053,7 +1057,7 @@ func (c *queryClient) ValidatorCommission(ctx context.Context, in *QueryValidato func (c *queryClient) ValidatorSlashes(ctx context.Context, in *QueryValidatorSlashesRequest, opts ...grpc.CallOption) (*QueryValidatorSlashesResponse, error) { out := new(QueryValidatorSlashesResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.Query/ValidatorSlashes", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/ValidatorSlashes", in, out, opts...) if err != nil { return nil, err } @@ -1062,7 +1066,7 @@ func (c *queryClient) ValidatorSlashes(ctx context.Context, in *QueryValidatorSl func (c *queryClient) DelegationRewards(ctx context.Context, in *QueryDelegationRewardsRequest, opts ...grpc.CallOption) (*QueryDelegationRewardsResponse, error) { out := new(QueryDelegationRewardsResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.Query/DelegationRewards", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/DelegationRewards", in, out, opts...) if err != nil { return nil, err } @@ -1071,7 +1075,7 @@ func (c *queryClient) DelegationRewards(ctx context.Context, in *QueryDelegation func (c *queryClient) DelegationTotalRewards(ctx context.Context, in *QueryDelegationTotalRewardsRequest, opts ...grpc.CallOption) (*QueryDelegationTotalRewardsResponse, error) { out := new(QueryDelegationTotalRewardsResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.Query/DelegationTotalRewards", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/DelegationTotalRewards", in, out, opts...) if err != nil { return nil, err } @@ -1080,7 +1084,7 @@ func (c *queryClient) DelegationTotalRewards(ctx context.Context, in *QueryDeleg func (c *queryClient) DelegatorValidators(ctx context.Context, in *QueryDelegatorValidatorsRequest, opts ...grpc.CallOption) (*QueryDelegatorValidatorsResponse, error) { out := new(QueryDelegatorValidatorsResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.Query/DelegatorValidators", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/DelegatorValidators", in, out, opts...) if err != nil { return nil, err } @@ -1089,7 +1093,7 @@ func (c *queryClient) DelegatorValidators(ctx context.Context, in *QueryDelegato func (c *queryClient) DelegatorWithdrawAddress(ctx context.Context, in *QueryDelegatorWithdrawAddressRequest, opts ...grpc.CallOption) (*QueryDelegatorWithdrawAddressResponse, error) { out := new(QueryDelegatorWithdrawAddressResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.Query/DelegatorWithdrawAddress", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/DelegatorWithdrawAddress", in, out, opts...) if err != nil { return nil, err } @@ -1098,7 +1102,7 @@ func (c *queryClient) DelegatorWithdrawAddress(ctx context.Context, in *QueryDel func (c *queryClient) CommunityPool(ctx context.Context, in *QueryCommunityPoolRequest, opts ...grpc.CallOption) (*QueryCommunityPoolResponse, error) { out := new(QueryCommunityPoolResponse) - err := c.cc.Invoke(ctx, "/cosmos.distribution.Query/CommunityPool", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.distribution.v1beta1.Query/CommunityPool", in, out, opts...) if err != nil { return nil, err } @@ -1173,7 +1177,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.Query/Params", + FullMethod: "/cosmos.distribution.v1beta1.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -1191,7 +1195,7 @@ func _Query_ValidatorOutstandingRewards_Handler(srv interface{}, ctx context.Con } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.Query/ValidatorOutstandingRewards", + FullMethod: "/cosmos.distribution.v1beta1.Query/ValidatorOutstandingRewards", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ValidatorOutstandingRewards(ctx, req.(*QueryValidatorOutstandingRewardsRequest)) @@ -1209,7 +1213,7 @@ func _Query_ValidatorCommission_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.Query/ValidatorCommission", + FullMethod: "/cosmos.distribution.v1beta1.Query/ValidatorCommission", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ValidatorCommission(ctx, req.(*QueryValidatorCommissionRequest)) @@ -1227,7 +1231,7 @@ func _Query_ValidatorSlashes_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.Query/ValidatorSlashes", + FullMethod: "/cosmos.distribution.v1beta1.Query/ValidatorSlashes", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ValidatorSlashes(ctx, req.(*QueryValidatorSlashesRequest)) @@ -1245,7 +1249,7 @@ func _Query_DelegationRewards_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.Query/DelegationRewards", + FullMethod: "/cosmos.distribution.v1beta1.Query/DelegationRewards", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DelegationRewards(ctx, req.(*QueryDelegationRewardsRequest)) @@ -1263,7 +1267,7 @@ func _Query_DelegationTotalRewards_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.Query/DelegationTotalRewards", + FullMethod: "/cosmos.distribution.v1beta1.Query/DelegationTotalRewards", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DelegationTotalRewards(ctx, req.(*QueryDelegationTotalRewardsRequest)) @@ -1281,7 +1285,7 @@ func _Query_DelegatorValidators_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.Query/DelegatorValidators", + FullMethod: "/cosmos.distribution.v1beta1.Query/DelegatorValidators", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DelegatorValidators(ctx, req.(*QueryDelegatorValidatorsRequest)) @@ -1299,7 +1303,7 @@ func _Query_DelegatorWithdrawAddress_Handler(srv interface{}, ctx context.Contex } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.Query/DelegatorWithdrawAddress", + FullMethod: "/cosmos.distribution.v1beta1.Query/DelegatorWithdrawAddress", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DelegatorWithdrawAddress(ctx, req.(*QueryDelegatorWithdrawAddressRequest)) @@ -1317,7 +1321,7 @@ func _Query_CommunityPool_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.distribution.Query/CommunityPool", + FullMethod: "/cosmos.distribution.v1beta1.Query/CommunityPool", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).CommunityPool(ctx, req.(*QueryCommunityPoolRequest)) @@ -1326,7 +1330,7 @@ func _Query_CommunityPool_Handler(srv interface{}, ctx context.Context, dec func } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.distribution.Query", + ServiceName: "cosmos.distribution.v1beta1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1367,7 +1371,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/distribution/query.proto", + Metadata: "cosmos/distribution/v1beta1/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/distribution/types/tx.pb.go b/x/distribution/types/tx.pb.go new file mode 100644 index 0000000000..e86f560c7c --- /dev/null +++ b/x/distribution/types/tx.pb.go @@ -0,0 +1,1152 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: cosmos/distribution/v1beta1/tx.proto + +package types + +import ( + bytes "bytes" + fmt "fmt" + github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" + types "github.com/cosmos/cosmos-sdk/types" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" + io "io" + math "math" + math_bits "math/bits" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package + +// msg struct for changing the withdraw address for a delegator (or validator self-delegation) +type MsgSetWithdrawAddress struct { + DelegatorAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=delegator_address,json=delegatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"delegator_address,omitempty" yaml:"delegator_address"` + WithdrawAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,2,opt,name=withdraw_address,json=withdrawAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"withdraw_address,omitempty" yaml:"withdraw_address"` +} + +func (m *MsgSetWithdrawAddress) Reset() { *m = MsgSetWithdrawAddress{} } +func (m *MsgSetWithdrawAddress) String() string { return proto.CompactTextString(m) } +func (*MsgSetWithdrawAddress) ProtoMessage() {} +func (*MsgSetWithdrawAddress) Descriptor() ([]byte, []int) { + return fileDescriptor_ed4f433d965e58ca, []int{0} +} +func (m *MsgSetWithdrawAddress) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgSetWithdrawAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgSetWithdrawAddress.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgSetWithdrawAddress) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgSetWithdrawAddress.Merge(m, src) +} +func (m *MsgSetWithdrawAddress) XXX_Size() int { + return m.Size() +} +func (m *MsgSetWithdrawAddress) XXX_DiscardUnknown() { + xxx_messageInfo_MsgSetWithdrawAddress.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgSetWithdrawAddress proto.InternalMessageInfo + +func (m *MsgSetWithdrawAddress) GetDelegatorAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { + if m != nil { + return m.DelegatorAddress + } + return nil +} + +func (m *MsgSetWithdrawAddress) GetWithdrawAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { + if m != nil { + return m.WithdrawAddress + } + return nil +} + +// msg struct for delegation withdraw from a single validator +type MsgWithdrawDelegatorReward struct { + DelegatorAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=delegator_address,json=delegatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"delegator_address,omitempty" yaml:"delegator_address"` + ValidatorAddress github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,2,opt,name=validator_address,json=validatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"validator_address,omitempty" yaml:"validator_address"` +} + +func (m *MsgWithdrawDelegatorReward) Reset() { *m = MsgWithdrawDelegatorReward{} } +func (m *MsgWithdrawDelegatorReward) String() string { return proto.CompactTextString(m) } +func (*MsgWithdrawDelegatorReward) ProtoMessage() {} +func (*MsgWithdrawDelegatorReward) Descriptor() ([]byte, []int) { + return fileDescriptor_ed4f433d965e58ca, []int{1} +} +func (m *MsgWithdrawDelegatorReward) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgWithdrawDelegatorReward) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgWithdrawDelegatorReward.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgWithdrawDelegatorReward) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgWithdrawDelegatorReward.Merge(m, src) +} +func (m *MsgWithdrawDelegatorReward) XXX_Size() int { + return m.Size() +} +func (m *MsgWithdrawDelegatorReward) XXX_DiscardUnknown() { + xxx_messageInfo_MsgWithdrawDelegatorReward.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgWithdrawDelegatorReward proto.InternalMessageInfo + +func (m *MsgWithdrawDelegatorReward) GetDelegatorAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { + if m != nil { + return m.DelegatorAddress + } + return nil +} + +func (m *MsgWithdrawDelegatorReward) GetValidatorAddress() github_com_cosmos_cosmos_sdk_types.ValAddress { + if m != nil { + return m.ValidatorAddress + } + return nil +} + +// msg struct for validator withdraw +type MsgWithdrawValidatorCommission struct { + ValidatorAddress github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,1,opt,name=validator_address,json=validatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"validator_address,omitempty" yaml:"validator_address"` +} + +func (m *MsgWithdrawValidatorCommission) Reset() { *m = MsgWithdrawValidatorCommission{} } +func (m *MsgWithdrawValidatorCommission) String() string { return proto.CompactTextString(m) } +func (*MsgWithdrawValidatorCommission) ProtoMessage() {} +func (*MsgWithdrawValidatorCommission) Descriptor() ([]byte, []int) { + return fileDescriptor_ed4f433d965e58ca, []int{2} +} +func (m *MsgWithdrawValidatorCommission) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgWithdrawValidatorCommission) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgWithdrawValidatorCommission.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgWithdrawValidatorCommission) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgWithdrawValidatorCommission.Merge(m, src) +} +func (m *MsgWithdrawValidatorCommission) XXX_Size() int { + return m.Size() +} +func (m *MsgWithdrawValidatorCommission) XXX_DiscardUnknown() { + xxx_messageInfo_MsgWithdrawValidatorCommission.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgWithdrawValidatorCommission proto.InternalMessageInfo + +func (m *MsgWithdrawValidatorCommission) GetValidatorAddress() github_com_cosmos_cosmos_sdk_types.ValAddress { + if m != nil { + return m.ValidatorAddress + } + return nil +} + +// MsgFundCommunityPool defines a Msg type that allows an account to directly +// fund the community pool. +type MsgFundCommunityPool struct { + Amount github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,1,rep,name=amount,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"amount"` + Depositor github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,2,opt,name=depositor,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"depositor,omitempty"` +} + +func (m *MsgFundCommunityPool) Reset() { *m = MsgFundCommunityPool{} } +func (m *MsgFundCommunityPool) String() string { return proto.CompactTextString(m) } +func (*MsgFundCommunityPool) ProtoMessage() {} +func (*MsgFundCommunityPool) Descriptor() ([]byte, []int) { + return fileDescriptor_ed4f433d965e58ca, []int{3} +} +func (m *MsgFundCommunityPool) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgFundCommunityPool) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgFundCommunityPool.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgFundCommunityPool) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgFundCommunityPool.Merge(m, src) +} +func (m *MsgFundCommunityPool) XXX_Size() int { + return m.Size() +} +func (m *MsgFundCommunityPool) XXX_DiscardUnknown() { + xxx_messageInfo_MsgFundCommunityPool.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgFundCommunityPool proto.InternalMessageInfo + +func (m *MsgFundCommunityPool) GetAmount() github_com_cosmos_cosmos_sdk_types.Coins { + if m != nil { + return m.Amount + } + return nil +} + +func (m *MsgFundCommunityPool) GetDepositor() github_com_cosmos_cosmos_sdk_types.AccAddress { + if m != nil { + return m.Depositor + } + return nil +} + +func init() { + proto.RegisterType((*MsgSetWithdrawAddress)(nil), "cosmos.distribution.v1beta1.MsgSetWithdrawAddress") + proto.RegisterType((*MsgWithdrawDelegatorReward)(nil), "cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward") + proto.RegisterType((*MsgWithdrawValidatorCommission)(nil), "cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission") + proto.RegisterType((*MsgFundCommunityPool)(nil), "cosmos.distribution.v1beta1.MsgFundCommunityPool") +} + +func init() { + proto.RegisterFile("cosmos/distribution/v1beta1/tx.proto", fileDescriptor_ed4f433d965e58ca) +} + +var fileDescriptor_ed4f433d965e58ca = []byte{ + // 449 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x94, 0xb1, 0x6e, 0xd4, 0x30, + 0x1c, 0xc6, 0xe3, 0x20, 0x55, 0xc2, 0x20, 0xd1, 0x46, 0x45, 0x1c, 0x87, 0xe4, 0x54, 0x11, 0xc3, + 0x2d, 0x4d, 0x08, 0x6c, 0x6c, 0xbd, 0x22, 0x26, 0xa2, 0xa2, 0x43, 0x2a, 0x12, 0x0b, 0x72, 0x62, + 0x2b, 0xb5, 0x48, 0xf2, 0x3f, 0xc5, 0x4e, 0xd3, 0xeb, 0x33, 0x30, 0x30, 0x30, 0xf2, 0x00, 0x88, + 0x27, 0xe9, 0xc0, 0xd0, 0x91, 0x29, 0xa0, 0xdc, 0x1b, 0x74, 0x64, 0x42, 0x49, 0x9c, 0xd0, 0x6b, + 0x11, 0x2a, 0x0c, 0x30, 0x25, 0x8a, 0x3f, 0x7f, 0xbf, 0x2f, 0x7f, 0xeb, 0x33, 0xbe, 0x1f, 0x81, + 0x4c, 0x41, 0x7a, 0x4c, 0x48, 0x95, 0x8b, 0xb0, 0x50, 0x02, 0x32, 0xef, 0xd0, 0x0f, 0xb9, 0xa2, + 0xbe, 0xa7, 0x8e, 0xdc, 0x79, 0x0e, 0x0a, 0xac, 0x7b, 0x9d, 0xca, 0x3d, 0xaf, 0x72, 0xb5, 0x6a, + 0xbc, 0x19, 0x43, 0x0c, 0xad, 0xce, 0x6b, 0xde, 0xba, 0x2d, 0x63, 0xa2, 0x8d, 0x43, 0x2a, 0xf9, + 0x60, 0x18, 0x81, 0xc8, 0xba, 0x75, 0xe7, 0xad, 0x89, 0x6f, 0x07, 0x32, 0x7e, 0xc1, 0xd5, 0x4b, + 0xa1, 0x0e, 0x58, 0x4e, 0xcb, 0x1d, 0xc6, 0x72, 0x2e, 0xa5, 0x75, 0x8c, 0x37, 0x18, 0x4f, 0x78, + 0x4c, 0x15, 0xe4, 0xaf, 0x69, 0xf7, 0x71, 0x84, 0xb6, 0xd0, 0xe4, 0xe6, 0x34, 0x38, 0xab, 0xec, + 0xd1, 0x82, 0xa6, 0xc9, 0x63, 0xe7, 0x92, 0xc4, 0xf9, 0x5e, 0xd9, 0xdb, 0xb1, 0x50, 0x07, 0x45, + 0xe8, 0x46, 0x90, 0x7a, 0x9a, 0xdf, 0x3d, 0xb6, 0x25, 0x7b, 0xe3, 0xa9, 0xc5, 0x9c, 0x4b, 0x77, + 0x27, 0x8a, 0x34, 0x69, 0xb6, 0x3e, 0x98, 0xf4, 0xec, 0x12, 0xaf, 0x97, 0x3a, 0xce, 0x80, 0x36, + 0x5b, 0xf4, 0xb3, 0xb3, 0xca, 0xbe, 0xd3, 0xa1, 0x2f, 0x2a, 0xfe, 0x82, 0x7c, 0xab, 0x5c, 0xfd, + 0x69, 0xe7, 0xbd, 0x89, 0xc7, 0x81, 0x8c, 0xfb, 0x59, 0x3c, 0xe9, 0x83, 0xcd, 0x78, 0x49, 0x73, + 0xf6, 0x5f, 0x67, 0x72, 0x8c, 0x37, 0x0e, 0x69, 0x22, 0xd8, 0x0a, 0xdb, 0xbc, 0xc8, 0xbe, 0x24, + 0xb9, 0x2a, 0x7b, 0x9f, 0x26, 0x03, 0x7b, 0x30, 0xe9, 0xc7, 0xf2, 0x01, 0x61, 0x72, 0x6e, 0x2c, + 0xfb, 0xfd, 0xfa, 0x2e, 0xa4, 0xa9, 0x90, 0x52, 0x40, 0xf6, 0xeb, 0x78, 0xe8, 0xdf, 0xc4, 0xfb, + 0x8c, 0xf0, 0x66, 0x20, 0xe3, 0xa7, 0x45, 0xc6, 0x9a, 0x44, 0x45, 0x26, 0xd4, 0xe2, 0x39, 0x40, + 0x62, 0x45, 0x78, 0x8d, 0xa6, 0x50, 0x64, 0x6a, 0x84, 0xb6, 0xae, 0x4d, 0x6e, 0x3c, 0xbc, 0xeb, + 0xea, 0x06, 0x35, 0x75, 0xe8, 0x9b, 0xe3, 0xee, 0x82, 0xc8, 0xa6, 0x0f, 0x4e, 0x2a, 0xdb, 0xf8, + 0xf4, 0xd5, 0x9e, 0x5c, 0x21, 0x4c, 0xb3, 0x41, 0xce, 0xb4, 0xb5, 0xb5, 0x87, 0xaf, 0x33, 0x3e, + 0x07, 0x29, 0x14, 0xe4, 0xfa, 0x40, 0xfc, 0x3f, 0x3f, 0xf0, 0x9f, 0x1e, 0xd3, 0xbd, 0x8f, 0x35, + 0x41, 0x27, 0x35, 0x41, 0xa7, 0x35, 0x41, 0xdf, 0x6a, 0x82, 0xde, 0x2d, 0x89, 0x71, 0xba, 0x24, + 0xc6, 0x97, 0x25, 0x31, 0x5e, 0xf9, 0xbf, 0xf5, 0x3d, 0x5a, 0xbd, 0x42, 0x5a, 0x4c, 0xb8, 0xd6, + 0x76, 0xfd, 0xd1, 0x8f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xce, 0x95, 0x71, 0x58, 0x66, 0x04, 0x00, + 0x00, +} + +func (this *MsgSetWithdrawAddress) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*MsgSetWithdrawAddress) + if !ok { + that2, ok := that.(MsgSetWithdrawAddress) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !bytes.Equal(this.DelegatorAddress, that1.DelegatorAddress) { + return false + } + if !bytes.Equal(this.WithdrawAddress, that1.WithdrawAddress) { + return false + } + return true +} +func (this *MsgWithdrawDelegatorReward) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*MsgWithdrawDelegatorReward) + if !ok { + that2, ok := that.(MsgWithdrawDelegatorReward) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !bytes.Equal(this.DelegatorAddress, that1.DelegatorAddress) { + return false + } + if !bytes.Equal(this.ValidatorAddress, that1.ValidatorAddress) { + return false + } + return true +} +func (this *MsgWithdrawValidatorCommission) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*MsgWithdrawValidatorCommission) + if !ok { + that2, ok := that.(MsgWithdrawValidatorCommission) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !bytes.Equal(this.ValidatorAddress, that1.ValidatorAddress) { + return false + } + return true +} +func (this *MsgFundCommunityPool) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*MsgFundCommunityPool) + if !ok { + that2, ok := that.(MsgFundCommunityPool) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if len(this.Amount) != len(that1.Amount) { + return false + } + for i := range this.Amount { + if !this.Amount[i].Equal(&that1.Amount[i]) { + return false + } + } + if !bytes.Equal(this.Depositor, that1.Depositor) { + return false + } + return true +} +func (m *MsgSetWithdrawAddress) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgSetWithdrawAddress) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgSetWithdrawAddress) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.WithdrawAddress) > 0 { + i -= len(m.WithdrawAddress) + copy(dAtA[i:], m.WithdrawAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.WithdrawAddress))) + i-- + dAtA[i] = 0x12 + } + if len(m.DelegatorAddress) > 0 { + i -= len(m.DelegatorAddress) + copy(dAtA[i:], m.DelegatorAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.DelegatorAddress))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *MsgWithdrawDelegatorReward) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgWithdrawDelegatorReward) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgWithdrawDelegatorReward) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.ValidatorAddress) > 0 { + i -= len(m.ValidatorAddress) + copy(dAtA[i:], m.ValidatorAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.ValidatorAddress))) + i-- + dAtA[i] = 0x12 + } + if len(m.DelegatorAddress) > 0 { + i -= len(m.DelegatorAddress) + copy(dAtA[i:], m.DelegatorAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.DelegatorAddress))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *MsgWithdrawValidatorCommission) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgWithdrawValidatorCommission) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgWithdrawValidatorCommission) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.ValidatorAddress) > 0 { + i -= len(m.ValidatorAddress) + copy(dAtA[i:], m.ValidatorAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.ValidatorAddress))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *MsgFundCommunityPool) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgFundCommunityPool) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgFundCommunityPool) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Depositor) > 0 { + i -= len(m.Depositor) + copy(dAtA[i:], m.Depositor) + i = encodeVarintTx(dAtA, i, uint64(len(m.Depositor))) + i-- + dAtA[i] = 0x12 + } + if len(m.Amount) > 0 { + for iNdEx := len(m.Amount) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Amount[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func encodeVarintTx(dAtA []byte, offset int, v uint64) int { + offset -= sovTx(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *MsgSetWithdrawAddress) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.DelegatorAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + l = len(m.WithdrawAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + return n +} + +func (m *MsgWithdrawDelegatorReward) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.DelegatorAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + l = len(m.ValidatorAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + return n +} + +func (m *MsgWithdrawValidatorCommission) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.ValidatorAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + return n +} + +func (m *MsgFundCommunityPool) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Amount) > 0 { + for _, e := range m.Amount { + l = e.Size() + n += 1 + l + sovTx(uint64(l)) + } + } + l = len(m.Depositor) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + return n +} + +func sovTx(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozTx(x uint64) (n int) { + return sovTx(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *MsgSetWithdrawAddress) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgSetWithdrawAddress: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgSetWithdrawAddress: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DelegatorAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.DelegatorAddress = append(m.DelegatorAddress[:0], dAtA[iNdEx:postIndex]...) + if m.DelegatorAddress == nil { + m.DelegatorAddress = []byte{} + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field WithdrawAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.WithdrawAddress = append(m.WithdrawAddress[:0], dAtA[iNdEx:postIndex]...) + if m.WithdrawAddress == nil { + m.WithdrawAddress = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgWithdrawDelegatorReward) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgWithdrawDelegatorReward: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgWithdrawDelegatorReward: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DelegatorAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.DelegatorAddress = append(m.DelegatorAddress[:0], dAtA[iNdEx:postIndex]...) + if m.DelegatorAddress == nil { + m.DelegatorAddress = []byte{} + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ValidatorAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ValidatorAddress = append(m.ValidatorAddress[:0], dAtA[iNdEx:postIndex]...) + if m.ValidatorAddress == nil { + m.ValidatorAddress = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgWithdrawValidatorCommission) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgWithdrawValidatorCommission: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgWithdrawValidatorCommission: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ValidatorAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ValidatorAddress = append(m.ValidatorAddress[:0], dAtA[iNdEx:postIndex]...) + if m.ValidatorAddress == nil { + m.ValidatorAddress = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgFundCommunityPool) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgFundCommunityPool: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgFundCommunityPool: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Amount = append(m.Amount, types.Coin{}) + if err := m.Amount[len(m.Amount)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Depositor", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Depositor = append(m.Depositor[:0], dAtA[iNdEx:postIndex]...) + if m.Depositor == nil { + m.Depositor = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipTx(dAtA []byte) (n int, err error) { + l := len(dAtA) + iNdEx := 0 + depth := 0 + for iNdEx < l { + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + wireType := int(wire & 0x7) + switch wireType { + case 0: + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + iNdEx++ + if dAtA[iNdEx-1] < 0x80 { + break + } + } + case 1: + iNdEx += 8 + case 2: + var length int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + length |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if length < 0 { + return 0, ErrInvalidLengthTx + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupTx + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthTx + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthTx = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowTx = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group") +) diff --git a/x/evidence/types/codec.go b/x/evidence/types/codec.go index 2363d1ca3a..60d9a5b998 100644 --- a/x/evidence/types/codec.go +++ b/x/evidence/types/codec.go @@ -19,7 +19,7 @@ func RegisterCodec(cdc *codec.LegacyAmino) { func RegisterInterfaces(registry types.InterfaceRegistry) { registry.RegisterImplementations((*sdk.Msg)(nil), &MsgSubmitEvidence{}) registry.RegisterInterface( - "cosmos_sdk.evidence.v1.Evidence", + "cosmos.evidence.v1beta1.Evidence", (*exported.Evidence)(nil), &Equivocation{}, ) diff --git a/x/evidence/types/evidence.pb.go b/x/evidence/types/evidence.pb.go index 6ffe3d3698..bc908746ea 100644 --- a/x/evidence/types/evidence.pb.go +++ b/x/evidence/types/evidence.pb.go @@ -1,18 +1,16 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/evidence/evidence.proto +// source: cosmos/evidence/v1beta1/evidence.proto package types import ( bytes "bytes" fmt "fmt" - types "github.com/cosmos/cosmos-sdk/codec/types" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" _ "github.com/golang/protobuf/ptypes/timestamp" - _ "github.com/regen-network/cosmos-proto" io "io" math "math" math_bits "math/bits" @@ -31,46 +29,6 @@ var _ = time.Kitchen // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package -// MsgSubmitEvidence defines an sdk.Msg type that supports submitting arbitrary -// Evidence. -type MsgSubmitEvidence struct { - Submitter github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=submitter,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"submitter,omitempty"` - Evidence *types.Any `protobuf:"bytes,2,opt,name=evidence,proto3" json:"evidence,omitempty"` -} - -func (m *MsgSubmitEvidence) Reset() { *m = MsgSubmitEvidence{} } -func (m *MsgSubmitEvidence) String() string { return proto.CompactTextString(m) } -func (*MsgSubmitEvidence) ProtoMessage() {} -func (*MsgSubmitEvidence) Descriptor() ([]byte, []int) { - return fileDescriptor_a2cafccc38cf08ce, []int{0} -} -func (m *MsgSubmitEvidence) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgSubmitEvidence) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgSubmitEvidence.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgSubmitEvidence) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgSubmitEvidence.Merge(m, src) -} -func (m *MsgSubmitEvidence) XXX_Size() int { - return m.Size() -} -func (m *MsgSubmitEvidence) XXX_DiscardUnknown() { - xxx_messageInfo_MsgSubmitEvidence.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgSubmitEvidence proto.InternalMessageInfo - // Equivocation implements the Evidence interface and defines evidence of double // signing misbehavior. type Equivocation struct { @@ -83,7 +41,7 @@ type Equivocation struct { func (m *Equivocation) Reset() { *m = Equivocation{} } func (*Equivocation) ProtoMessage() {} func (*Equivocation) Descriptor() ([]byte, []int) { - return fileDescriptor_a2cafccc38cf08ce, []int{1} + return fileDescriptor_dd143e71a177f0dd, []int{0} } func (m *Equivocation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -113,69 +71,38 @@ func (m *Equivocation) XXX_DiscardUnknown() { var xxx_messageInfo_Equivocation proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgSubmitEvidence)(nil), "cosmos.evidence.MsgSubmitEvidence") - proto.RegisterType((*Equivocation)(nil), "cosmos.evidence.Equivocation") + proto.RegisterType((*Equivocation)(nil), "cosmos.evidence.v1beta1.Equivocation") } -func init() { proto.RegisterFile("cosmos/evidence/evidence.proto", fileDescriptor_a2cafccc38cf08ce) } - -var fileDescriptor_a2cafccc38cf08ce = []byte{ - // 416 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x52, 0x3f, 0xeb, 0xd3, 0x40, - 0x18, 0xce, 0xf9, 0xab, 0x3f, 0xe2, 0x59, 0xd0, 0x5f, 0x28, 0x12, 0x3b, 0xdc, 0x95, 0x4c, 0x5d, - 0x7a, 0x41, 0x5d, 0xa4, 0x83, 0xd0, 0x48, 0x27, 0x51, 0x21, 0x3a, 0xb9, 0x94, 0xfc, 0x39, 0xd3, - 0x60, 0x93, 0x8b, 0xb9, 0x4b, 0x35, 0xf8, 0x05, 0x1c, 0x3b, 0x3a, 0x76, 0x14, 0x67, 0x3f, 0x44, - 0x71, 0xea, 0xe8, 0x14, 0x25, 0xfd, 0x06, 0x8e, 0x05, 0x41, 0x7a, 0xb9, 0xb4, 0x60, 0x41, 0x9c, - 0x72, 0xef, 0xfb, 0x3e, 0xf7, 0x3c, 0xcf, 0xfb, 0xe4, 0x20, 0x0a, 0x18, 0x4f, 0x18, 0xb7, 0xe9, - 0x32, 0x0e, 0x69, 0x1a, 0xd0, 0xe3, 0x81, 0x64, 0x39, 0x13, 0xcc, 0xb8, 0xd5, 0xcc, 0x49, 0xdb, - 0xee, 0xf7, 0x22, 0x16, 0x31, 0x39, 0xb3, 0x0f, 0xa7, 0x06, 0xd6, 0xc7, 0x11, 0x63, 0xd1, 0x82, - 0xda, 0xb2, 0xf2, 0x8b, 0xd7, 0xb6, 0x88, 0x13, 0xca, 0x85, 0x97, 0x64, 0x0a, 0x70, 0xf7, 0x6f, - 0x80, 0x97, 0x96, 0xed, 0xa8, 0x91, 0x98, 0x35, 0xa4, 0x4a, 0x4f, 0x16, 0xd6, 0x17, 0x00, 0xaf, - 0x9e, 0xf2, 0xe8, 0x45, 0xe1, 0x27, 0xb1, 0x98, 0x2a, 0x0b, 0xc6, 0x73, 0x78, 0x83, 0xcb, 0x8e, - 0xa0, 0xb9, 0x09, 0x06, 0x60, 0xd8, 0x75, 0xee, 0xed, 0x2b, 0x3c, 0x8a, 0x62, 0x31, 0x2f, 0x7c, - 0x12, 0xb0, 0x44, 0xb1, 0xa8, 0xcf, 0x88, 0x87, 0x6f, 0x6c, 0x51, 0x66, 0x94, 0x93, 0x49, 0x10, - 0x4c, 0xc2, 0x30, 0xa7, 0x9c, 0xbb, 0x27, 0x0e, 0xe3, 0x11, 0xd4, 0xdb, 0xfd, 0xcc, 0x6b, 0x03, - 0x30, 0xbc, 0x79, 0xbf, 0x47, 0x1a, 0xbf, 0xa4, 0xf5, 0x4b, 0x26, 0x69, 0xe9, 0x74, 0xbf, 0x7d, - 0x1d, 0xe9, 0xad, 0x0d, 0xf7, 0x78, 0x67, 0xdc, 0xf9, 0xb8, 0xc6, 0x9a, 0xf5, 0x1b, 0xc0, 0xee, - 0xf4, 0x6d, 0x11, 0x2f, 0x59, 0xe0, 0x89, 0x98, 0xa5, 0xc6, 0x1d, 0x78, 0x39, 0xa7, 0x71, 0x34, - 0x17, 0xd2, 0xe4, 0x85, 0xab, 0x2a, 0xe3, 0x21, 0xec, 0x1c, 0xe2, 0x51, 0x52, 0xfd, 0x33, 0xa9, - 0x97, 0x6d, 0x76, 0x8e, 0xbe, 0xa9, 0xb0, 0xb6, 0xfa, 0x81, 0x81, 0x2b, 0x6f, 0x18, 0x3d, 0x78, - 0x3d, 0x63, 0xef, 0x68, 0x6e, 0x5e, 0x48, 0xc2, 0xa6, 0x30, 0x3e, 0xc0, 0xab, 0x80, 0xa5, 0x9c, - 0xa6, 0xbc, 0xe0, 0x33, 0xaf, 0x59, 0xcf, 0xec, 0xc8, 0x5c, 0x9e, 0xfd, 0xaa, 0xb0, 0x59, 0x7a, - 0xc9, 0x62, 0x6c, 0x9d, 0x41, 0xac, 0x7d, 0x85, 0xc9, 0x7f, 0x64, 0xf6, 0x98, 0xa5, 0xbc, 0x0d, - 0xed, 0xf6, 0x91, 0x45, 0x75, 0xc6, 0xfa, 0x61, 0xf7, 0x4f, 0x6b, 0xac, 0x39, 0x4f, 0x3e, 0xd7, - 0x08, 0x6c, 0x6a, 0x04, 0xb6, 0x35, 0x02, 0x3f, 0x6b, 0x04, 0x56, 0x3b, 0xa4, 0x6d, 0x77, 0x48, - 0xfb, 0xbe, 0x43, 0xda, 0xab, 0x7f, 0xff, 0x9d, 0xf7, 0xa7, 0x07, 0x28, 0x45, 0xfd, 0x4b, 0x99, - 0xc6, 0x83, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x46, 0x6e, 0x6c, 0xb7, 0xa0, 0x02, 0x00, 0x00, +func init() { + proto.RegisterFile("cosmos/evidence/v1beta1/evidence.proto", fileDescriptor_dd143e71a177f0dd) } -func (this *MsgSubmitEvidence) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*MsgSubmitEvidence) - if !ok { - that2, ok := that.(MsgSubmitEvidence) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if !bytes.Equal(this.Submitter, that1.Submitter) { - return false - } - if !this.Evidence.Equal(that1.Evidence) { - return false - } - return true +var fileDescriptor_dd143e71a177f0dd = []byte{ + // 336 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4b, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x4f, 0x2d, 0xcb, 0x4c, 0x49, 0xcd, 0x4b, 0x4e, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, + 0x2d, 0x49, 0x34, 0x84, 0x0b, 0xe8, 0x15, 0x14, 0xe5, 0x97, 0xe4, 0x0b, 0x89, 0x43, 0xd4, 0xe9, + 0xc1, 0x85, 0xa1, 0xea, 0xa4, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x6a, 0xf4, 0x41, 0x2c, 0x88, + 0x72, 0x29, 0xf9, 0xf4, 0xfc, 0xfc, 0xf4, 0x9c, 0x54, 0x7d, 0x30, 0x2f, 0xa9, 0x34, 0x4d, 0xbf, + 0x24, 0x33, 0x37, 0xb5, 0xb8, 0x24, 0x31, 0xb7, 0x00, 0xa2, 0x40, 0xe9, 0x2f, 0x23, 0x17, 0x8f, + 0x6b, 0x61, 0x69, 0x66, 0x59, 0x7e, 0x72, 0x62, 0x49, 0x66, 0x7e, 0x9e, 0x90, 0x18, 0x17, 0x5b, + 0x46, 0x6a, 0x66, 0x7a, 0x46, 0x89, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x73, 0x10, 0x94, 0x27, 0x64, + 0xc1, 0xc5, 0x02, 0xd2, 0x2b, 0xc1, 0xa4, 0xc0, 0xa8, 0xc1, 0x6d, 0x24, 0xa5, 0x07, 0x31, 0x58, + 0x0f, 0x66, 0xb0, 0x5e, 0x08, 0xcc, 0x60, 0x27, 0x8e, 0x13, 0xf7, 0xe4, 0x19, 0x26, 0xdc, 0x97, + 0x67, 0x0c, 0x02, 0xeb, 0x10, 0x12, 0xe1, 0x62, 0x2d, 0xc8, 0x2f, 0x4f, 0x2d, 0x92, 0x60, 0x06, + 0x1b, 0x08, 0xe1, 0x08, 0x55, 0x73, 0x09, 0x26, 0xe7, 0xe7, 0x15, 0xa7, 0xe6, 0x15, 0x97, 0x16, + 0xc7, 0x27, 0xa6, 0xa4, 0x14, 0xa5, 0x16, 0x17, 0x4b, 0xb0, 0x28, 0x30, 0x6a, 0xf0, 0x38, 0xf9, + 0x7d, 0xba, 0x27, 0x2f, 0x51, 0x99, 0x98, 0x9b, 0x63, 0xa5, 0x84, 0xa1, 0x44, 0xe9, 0xd7, 0x3d, + 0x79, 0xbd, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x68, 0xb0, 0x41, + 0x28, 0xdd, 0xe2, 0x94, 0x6c, 0xfd, 0x92, 0xca, 0x82, 0xd4, 0x62, 0x3d, 0xe7, 0xfc, 0xbc, 0x62, + 0x47, 0x88, 0x96, 0x20, 0x01, 0xb8, 0x29, 0x50, 0x11, 0x2b, 0x8e, 0x8e, 0x05, 0xf2, 0x0c, 0x33, + 0x16, 0xc8, 0x33, 0x38, 0x79, 0xaf, 0x78, 0x24, 0xc7, 0x78, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, + 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, + 0xc7, 0x72, 0x0c, 0x51, 0xba, 0x78, 0x6d, 0xaa, 0x40, 0xc4, 0x16, 0xd8, 0xd2, 0x24, 0x36, 0x70, + 0x68, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x4a, 0x92, 0x83, 0xd6, 0xcd, 0x01, 0x00, 0x00, } + func (this *Equivocation) Equal(that interface{}) bool { if that == nil { return this == nil @@ -209,48 +136,6 @@ func (this *Equivocation) Equal(that interface{}) bool { } return true } -func (m *MsgSubmitEvidence) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *MsgSubmitEvidence) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgSubmitEvidence) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.Evidence != nil { - { - size, err := m.Evidence.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintEvidence(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - if len(m.Submitter) > 0 { - i -= len(m.Submitter) - copy(dAtA[i:], m.Submitter) - i = encodeVarintEvidence(dAtA, i, uint64(len(m.Submitter))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - func (m *Equivocation) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -283,12 +168,12 @@ func (m *Equivocation) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x18 } - n2, err2 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) - if err2 != nil { - return 0, err2 + n1, err1 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) + if err1 != nil { + return 0, err1 } - i -= n2 - i = encodeVarintEvidence(dAtA, i, uint64(n2)) + i -= n1 + i = encodeVarintEvidence(dAtA, i, uint64(n1)) i-- dAtA[i] = 0x12 if m.Height != 0 { @@ -310,23 +195,6 @@ func encodeVarintEvidence(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) return base } -func (m *MsgSubmitEvidence) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.Submitter) - if l > 0 { - n += 1 + l + sovEvidence(uint64(l)) - } - if m.Evidence != nil { - l = m.Evidence.Size() - n += 1 + l + sovEvidence(uint64(l)) - } - return n -} - func (m *Equivocation) Size() (n int) { if m == nil { return 0 @@ -354,129 +222,6 @@ func sovEvidence(x uint64) (n int) { func sozEvidence(x uint64) (n int) { return sovEvidence(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } -func (m *MsgSubmitEvidence) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvidence - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgSubmitEvidence: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgSubmitEvidence: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Submitter", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvidence - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthEvidence - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthEvidence - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Submitter = append(m.Submitter[:0], dAtA[iNdEx:postIndex]...) - if m.Submitter == nil { - m.Submitter = []byte{} - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Evidence", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowEvidence - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthEvidence - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthEvidence - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Evidence == nil { - m.Evidence = &types.Any{} - } - if err := m.Evidence.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipEvidence(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthEvidence - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthEvidence - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} func (m *Equivocation) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/x/evidence/types/genesis.pb.go b/x/evidence/types/genesis.pb.go index f842db337c..b2c3657f6e 100644 --- a/x/evidence/types/genesis.pb.go +++ b/x/evidence/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/evidence/genesis.proto +// source: cosmos/evidence/v1beta1/genesis.proto package types @@ -32,7 +32,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_948832e7dde7529c, []int{0} + return fileDescriptor_c610c52c26e0e202, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -69,25 +69,28 @@ func (m *GenesisState) GetEvidence() []*types.Any { } func init() { - proto.RegisterType((*GenesisState)(nil), "cosmos.evidence.GenesisState") + proto.RegisterType((*GenesisState)(nil), "cosmos.evidence.v1beta1.GenesisState") } -func init() { proto.RegisterFile("cosmos/evidence/genesis.proto", fileDescriptor_948832e7dde7529c) } +func init() { + proto.RegisterFile("cosmos/evidence/v1beta1/genesis.proto", fileDescriptor_c610c52c26e0e202) +} -var fileDescriptor_948832e7dde7529c = []byte{ - // 183 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4d, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x2d, 0xcb, 0x4c, 0x49, 0xcd, 0x4b, 0x4e, 0xd5, 0x4f, 0x4f, 0xcd, 0x4b, - 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x87, 0x48, 0xeb, 0xc1, 0xa4, - 0xa5, 0x24, 0xd3, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0xc1, 0xd2, 0x49, 0xa5, 0x69, 0xfa, 0x89, - 0x79, 0x95, 0x10, 0xb5, 0x4a, 0x0e, 0x5c, 0x3c, 0xee, 0x10, 0xcd, 0xc1, 0x25, 0x89, 0x25, 0xa9, - 0x42, 0x06, 0x5c, 0x1c, 0x30, 0x6d, 0x12, 0x8c, 0x0a, 0xcc, 0x1a, 0xdc, 0x46, 0x22, 0x7a, 0x10, - 0xdd, 0x7a, 0x30, 0xdd, 0x7a, 0x8e, 0x79, 0x95, 0x41, 0x70, 0x55, 0x4e, 0xee, 0x27, 0x1e, 0xc9, - 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, - 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x9b, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, - 0x9c, 0x9f, 0xab, 0x0f, 0x75, 0x31, 0x84, 0xd2, 0x2d, 0x4e, 0xc9, 0xd6, 0xaf, 0x40, 0x38, 0xbf, - 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x6c, 0x81, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x31, - 0xaa, 0x2f, 0xff, 0xde, 0x00, 0x00, 0x00, +var fileDescriptor_c610c52c26e0e202 = []byte{ + // 195 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4d, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x4f, 0x2d, 0xcb, 0x4c, 0x49, 0xcd, 0x4b, 0x4e, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, + 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, + 0xc9, 0x17, 0x12, 0x87, 0x28, 0xd3, 0x83, 0x29, 0xd3, 0x83, 0x2a, 0x93, 0x92, 0x4c, 0xcf, 0xcf, + 0x4f, 0xcf, 0x49, 0xd5, 0x07, 0x2b, 0x4b, 0x2a, 0x4d, 0xd3, 0x4f, 0xcc, 0xab, 0x84, 0xe8, 0x51, + 0x72, 0xe0, 0xe2, 0x71, 0x87, 0x18, 0x12, 0x5c, 0x92, 0x58, 0x92, 0x2a, 0x64, 0xc0, 0xc5, 0x01, + 0xd3, 0x2e, 0xc1, 0xa8, 0xc0, 0xac, 0xc1, 0x6d, 0x24, 0xa2, 0x07, 0xd1, 0xad, 0x07, 0xd3, 0xad, + 0xe7, 0x98, 0x57, 0x19, 0x04, 0x57, 0xe5, 0xe4, 0x7e, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, + 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, + 0x72, 0x0c, 0x51, 0xba, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0x50, + 0x1f, 0x40, 0x28, 0xdd, 0xe2, 0x94, 0x6c, 0xfd, 0x0a, 0x84, 0x77, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, + 0x93, 0xd8, 0xc0, 0x16, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x9c, 0x4b, 0xa9, 0xfe, 0xee, + 0x00, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/evidence/types/query.pb.go b/x/evidence/types/query.pb.go index 312fc57932..08e0648431 100644 --- a/x/evidence/types/query.pb.go +++ b/x/evidence/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/evidence/query.proto +// source: cosmos/evidence/v1beta1/query.proto package types @@ -41,7 +41,7 @@ func (m *QueryEvidenceRequest) Reset() { *m = QueryEvidenceRequest{} } func (m *QueryEvidenceRequest) String() string { return proto.CompactTextString(m) } func (*QueryEvidenceRequest) ProtoMessage() {} func (*QueryEvidenceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6afffc78347cbc5e, []int{0} + return fileDescriptor_07043de1a84d215a, []int{0} } func (m *QueryEvidenceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -87,7 +87,7 @@ func (m *QueryEvidenceResponse) Reset() { *m = QueryEvidenceResponse{} } func (m *QueryEvidenceResponse) String() string { return proto.CompactTextString(m) } func (*QueryEvidenceResponse) ProtoMessage() {} func (*QueryEvidenceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6afffc78347cbc5e, []int{1} + return fileDescriptor_07043de1a84d215a, []int{1} } func (m *QueryEvidenceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -133,7 +133,7 @@ func (m *QueryAllEvidenceRequest) Reset() { *m = QueryAllEvidenceRequest func (m *QueryAllEvidenceRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllEvidenceRequest) ProtoMessage() {} func (*QueryAllEvidenceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6afffc78347cbc5e, []int{2} + return fileDescriptor_07043de1a84d215a, []int{2} } func (m *QueryAllEvidenceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -181,7 +181,7 @@ func (m *QueryAllEvidenceResponse) Reset() { *m = QueryAllEvidenceRespon func (m *QueryAllEvidenceResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllEvidenceResponse) ProtoMessage() {} func (*QueryAllEvidenceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6afffc78347cbc5e, []int{3} + return fileDescriptor_07043de1a84d215a, []int{3} } func (m *QueryAllEvidenceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -225,41 +225,44 @@ func (m *QueryAllEvidenceResponse) GetPagination() *query.PageResponse { } func init() { - proto.RegisterType((*QueryEvidenceRequest)(nil), "cosmos.evidence.QueryEvidenceRequest") - proto.RegisterType((*QueryEvidenceResponse)(nil), "cosmos.evidence.QueryEvidenceResponse") - proto.RegisterType((*QueryAllEvidenceRequest)(nil), "cosmos.evidence.QueryAllEvidenceRequest") - proto.RegisterType((*QueryAllEvidenceResponse)(nil), "cosmos.evidence.QueryAllEvidenceResponse") + proto.RegisterType((*QueryEvidenceRequest)(nil), "cosmos.evidence.v1beta1.QueryEvidenceRequest") + proto.RegisterType((*QueryEvidenceResponse)(nil), "cosmos.evidence.v1beta1.QueryEvidenceResponse") + proto.RegisterType((*QueryAllEvidenceRequest)(nil), "cosmos.evidence.v1beta1.QueryAllEvidenceRequest") + proto.RegisterType((*QueryAllEvidenceResponse)(nil), "cosmos.evidence.v1beta1.QueryAllEvidenceResponse") } -func init() { proto.RegisterFile("cosmos/evidence/query.proto", fileDescriptor_6afffc78347cbc5e) } +func init() { + proto.RegisterFile("cosmos/evidence/v1beta1/query.proto", fileDescriptor_07043de1a84d215a) +} -var fileDescriptor_6afffc78347cbc5e = []byte{ - // 402 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x41, 0x4f, 0xdb, 0x30, - 0x1c, 0xc5, 0x93, 0x4d, 0x9b, 0x2a, 0xb7, 0xd3, 0x24, 0xab, 0xd3, 0xda, 0x4c, 0xcb, 0xa6, 0x48, - 0x9b, 0xba, 0x43, 0xed, 0xa9, 0x70, 0x00, 0x6e, 0xad, 0x84, 0x28, 0x37, 0x88, 0x38, 0x81, 0x10, - 0x4a, 0x1a, 0x93, 0x44, 0xa4, 0x76, 0x5a, 0x3b, 0xa8, 0xf9, 0x06, 0x1c, 0xf9, 0x58, 0x88, 0x53, - 0x8f, 0x9c, 0x10, 0x6a, 0xbf, 0x05, 0x27, 0x54, 0x27, 0xa6, 0xa1, 0x8d, 0x54, 0x4e, 0xf9, 0x27, - 0x7e, 0x79, 0xef, 0xe7, 0x17, 0x07, 0xfc, 0x18, 0x30, 0x3e, 0x64, 0x1c, 0x93, 0xeb, 0xd0, 0x23, - 0x74, 0x40, 0xf0, 0x28, 0x21, 0xe3, 0x14, 0xc5, 0x63, 0x26, 0x18, 0xfc, 0x9a, 0x2d, 0x22, 0xb5, - 0x68, 0xfc, 0xcc, 0xd5, 0x52, 0x84, 0x63, 0xc7, 0x0f, 0xa9, 0x23, 0x42, 0x46, 0x33, 0xbd, 0x51, - 0xf7, 0x99, 0xcf, 0xe4, 0x88, 0x17, 0x53, 0xfe, 0xb4, 0xe9, 0x33, 0xe6, 0x47, 0x04, 0xcb, 0x3b, - 0x37, 0xb9, 0xc4, 0x0e, 0xcd, 0x03, 0xac, 0x04, 0xd4, 0x8f, 0x17, 0x56, 0xfb, 0x79, 0x80, 0x4d, - 0x46, 0x09, 0xe1, 0x02, 0x9e, 0x83, 0x2f, 0x2a, 0xf3, 0x22, 0x70, 0x78, 0xd0, 0xd0, 0x7f, 0xeb, - 0xad, 0x5a, 0x6f, 0xe7, 0xf9, 0xf1, 0xd7, 0xb6, 0x1f, 0x8a, 0x20, 0x71, 0xd1, 0x80, 0x0d, 0xb1, - 0x20, 0xd4, 0x23, 0xe3, 0x61, 0x48, 0x45, 0x71, 0x8c, 0x42, 0x97, 0x63, 0x37, 0x15, 0x84, 0xa3, - 0x3e, 0x99, 0xf4, 0x16, 0x83, 0x5d, 0x53, 0x76, 0x7d, 0x87, 0x07, 0xd6, 0x21, 0xf8, 0xb6, 0x12, - 0xcb, 0x63, 0x46, 0x39, 0x81, 0xff, 0x41, 0x45, 0x09, 0x65, 0x64, 0xb5, 0x53, 0x47, 0x19, 0x3d, - 0x52, 0xf4, 0xa8, 0x4b, 0x53, 0xfb, 0x55, 0x65, 0x9d, 0x80, 0xef, 0xd2, 0xaa, 0x1b, 0x45, 0xab, - 0x9b, 0xd8, 0x05, 0x60, 0xd9, 0x50, 0x6e, 0xd7, 0x44, 0x79, 0xa5, 0x59, 0xcd, 0x47, 0x8e, 0xaf, - 0xe4, 0x76, 0x41, 0x6c, 0xdd, 0xe8, 0xa0, 0xb1, 0x6e, 0x5b, 0x0a, 0xf9, 0x71, 0x33, 0x24, 0xdc, - 0x7b, 0x43, 0xf2, 0x41, 0x92, 0x18, 0x65, 0x24, 0x59, 0x42, 0x11, 0xa5, 0x73, 0xaf, 0x83, 0x4f, - 0x12, 0x05, 0x9e, 0x81, 0x8a, 0x62, 0x81, 0x7f, 0xd0, 0xca, 0xd1, 0x40, 0x65, 0xdf, 0xd1, 0xf8, - 0xbb, 0x49, 0x96, 0x05, 0x5a, 0x1a, 0xf4, 0x40, 0xb5, 0xb0, 0x57, 0xd8, 0x2a, 0x7f, 0x71, 0xbd, - 0x65, 0xe3, 0xdf, 0x3b, 0x94, 0x2a, 0xa5, 0x77, 0x70, 0x37, 0x33, 0xf5, 0xe9, 0xcc, 0xd4, 0x9f, - 0x66, 0xa6, 0x7e, 0x3b, 0x37, 0xb5, 0xe9, 0xdc, 0xd4, 0x1e, 0xe6, 0xa6, 0x76, 0xda, 0x2e, 0x1c, - 0xab, 0xfc, 0x90, 0x67, 0x97, 0x36, 0xf7, 0xae, 0xf0, 0x64, 0xf9, 0x7f, 0x88, 0x34, 0x26, 0xdc, - 0xfd, 0x2c, 0x9b, 0xde, 0x7a, 0x09, 0x00, 0x00, 0xff, 0xff, 0xbd, 0x1c, 0xab, 0xe8, 0x3f, 0x03, +var fileDescriptor_07043de1a84d215a = []byte{ + // 418 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0x41, 0xcf, 0xd2, 0x30, + 0x18, 0xc7, 0x37, 0x8d, 0x86, 0x14, 0xbc, 0x34, 0x18, 0x70, 0x87, 0x69, 0x66, 0xa2, 0xc6, 0x84, + 0x16, 0xd0, 0x83, 0x57, 0x48, 0x14, 0xbc, 0xe9, 0x8e, 0x26, 0xc6, 0x74, 0x50, 0xb7, 0x85, 0xd1, + 0x0e, 0xda, 0x11, 0xf6, 0x2d, 0xbc, 0xf8, 0x9d, 0x3c, 0x72, 0xf4, 0x64, 0x0c, 0xdc, 0xfc, 0x08, + 0x9e, 0xcc, 0xd6, 0x16, 0x26, 0xf0, 0xbe, 0xbc, 0xef, 0x69, 0xcf, 0x96, 0xe7, 0xff, 0xff, 0xff, + 0xf6, 0x3c, 0x2d, 0x78, 0x3a, 0xe1, 0x62, 0xce, 0x05, 0xa6, 0xab, 0x78, 0x4a, 0xd9, 0x84, 0xe2, + 0x55, 0x2f, 0xa0, 0x92, 0xf4, 0xf0, 0x22, 0xa3, 0xcb, 0x1c, 0xa5, 0x4b, 0x2e, 0x39, 0x6c, 0xa9, + 0x26, 0x64, 0x9a, 0x90, 0x6e, 0x72, 0x5e, 0x6a, 0x75, 0x40, 0x04, 0x55, 0x8a, 0xbd, 0x3e, 0x25, + 0x61, 0xcc, 0x88, 0x8c, 0x39, 0x53, 0x26, 0x4e, 0x33, 0xe4, 0x21, 0x2f, 0x4b, 0x5c, 0x54, 0xfa, + 0xeb, 0xa3, 0x90, 0xf3, 0x30, 0xa1, 0xb8, 0x7c, 0x0b, 0xb2, 0xaf, 0x98, 0x30, 0x9d, 0xea, 0x65, + 0xa0, 0xf9, 0xb1, 0xb0, 0x7c, 0xab, 0x53, 0x7d, 0xba, 0xc8, 0xa8, 0x90, 0xf0, 0x33, 0x78, 0x60, + 0x40, 0xbe, 0x44, 0x44, 0x44, 0x6d, 0xfb, 0x89, 0xfd, 0xa2, 0x31, 0x7c, 0xf3, 0xf7, 0xd7, 0xe3, + 0xd7, 0x61, 0x2c, 0xa3, 0x2c, 0x40, 0x13, 0x3e, 0xc7, 0x92, 0xb2, 0x29, 0x5d, 0xce, 0x63, 0x26, + 0xab, 0x65, 0x12, 0x07, 0x02, 0x07, 0xb9, 0xa4, 0x02, 0x8d, 0xe9, 0x7a, 0x58, 0x14, 0x7e, 0xc3, + 0xd8, 0x8d, 0x89, 0x88, 0xbc, 0xf7, 0xe0, 0xe1, 0x51, 0xac, 0x48, 0x39, 0x13, 0x14, 0x76, 0x41, + 0xcd, 0x34, 0x96, 0x91, 0xf5, 0x7e, 0x13, 0x29, 0x7a, 0x64, 0xe8, 0xd1, 0x80, 0xe5, 0xfe, 0xbe, + 0xcb, 0x23, 0xa0, 0x55, 0x5a, 0x0d, 0x92, 0xe4, 0xf8, 0x27, 0xde, 0x01, 0x70, 0x98, 0x90, 0xb6, + 0x7b, 0x86, 0xf4, 0x9c, 0x8b, 0x71, 0x22, 0xb5, 0x00, 0x3d, 0x4e, 0xf4, 0x81, 0x84, 0x46, 0xeb, + 0x57, 0x94, 0xde, 0x77, 0x1b, 0xb4, 0x4f, 0x33, 0xce, 0x12, 0xdf, 0xbd, 0x4c, 0x0c, 0x47, 0xff, + 0x61, 0xdd, 0x29, 0xb1, 0x9e, 0x5f, 0xc4, 0x52, 0x71, 0x55, 0xae, 0xfe, 0x1f, 0x1b, 0xdc, 0x2b, + 0xb9, 0xe0, 0x0c, 0xd4, 0x0c, 0x18, 0xec, 0xa0, 0x2b, 0x4e, 0x12, 0x3a, 0xb7, 0x69, 0x07, 0xdd, + 0xb4, 0x5d, 0x01, 0x78, 0x16, 0x94, 0xa0, 0x5e, 0x19, 0x04, 0xec, 0x5e, 0x6f, 0x70, 0xba, 0x17, + 0xa7, 0x77, 0x0b, 0x85, 0x49, 0x1d, 0x8e, 0x7e, 0x6c, 0x5d, 0x7b, 0xb3, 0x75, 0xed, 0xdf, 0x5b, + 0xd7, 0xfe, 0xb6, 0x73, 0xad, 0xcd, 0xce, 0xb5, 0x7e, 0xee, 0x5c, 0xeb, 0x53, 0xa7, 0x72, 0x20, + 0xf5, 0x5d, 0x51, 0x8f, 0x8e, 0x98, 0xce, 0xf0, 0xfa, 0x70, 0xed, 0x64, 0x9e, 0x52, 0x11, 0xdc, + 0x2f, 0xd7, 0xf2, 0xea, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa9, 0x7b, 0x88, 0x0a, 0x96, 0x03, 0x00, 0x00, } @@ -291,7 +294,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Evidence(ctx context.Context, in *QueryEvidenceRequest, opts ...grpc.CallOption) (*QueryEvidenceResponse, error) { out := new(QueryEvidenceResponse) - err := c.cc.Invoke(ctx, "/cosmos.evidence.Query/Evidence", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.evidence.v1beta1.Query/Evidence", in, out, opts...) if err != nil { return nil, err } @@ -300,7 +303,7 @@ func (c *queryClient) Evidence(ctx context.Context, in *QueryEvidenceRequest, op func (c *queryClient) AllEvidence(ctx context.Context, in *QueryAllEvidenceRequest, opts ...grpc.CallOption) (*QueryAllEvidenceResponse, error) { out := new(QueryAllEvidenceResponse) - err := c.cc.Invoke(ctx, "/cosmos.evidence.Query/AllEvidence", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.evidence.v1beta1.Query/AllEvidence", in, out, opts...) if err != nil { return nil, err } @@ -340,7 +343,7 @@ func _Query_Evidence_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.evidence.Query/Evidence", + FullMethod: "/cosmos.evidence.v1beta1.Query/Evidence", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Evidence(ctx, req.(*QueryEvidenceRequest)) @@ -358,7 +361,7 @@ func _Query_AllEvidence_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.evidence.Query/AllEvidence", + FullMethod: "/cosmos.evidence.v1beta1.Query/AllEvidence", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AllEvidence(ctx, req.(*QueryAllEvidenceRequest)) @@ -367,7 +370,7 @@ func _Query_AllEvidence_Handler(srv interface{}, ctx context.Context, dec func(i } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.evidence.Query", + ServiceName: "cosmos.evidence.v1beta1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -380,7 +383,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/evidence/query.proto", + Metadata: "cosmos/evidence/v1beta1/query.proto", } func (m *QueryEvidenceRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/evidence/types/tx.pb.go b/x/evidence/types/tx.pb.go new file mode 100644 index 0000000000..205e1b117a --- /dev/null +++ b/x/evidence/types/tx.pb.go @@ -0,0 +1,407 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: cosmos/evidence/v1beta1/tx.proto + +package types + +import ( + bytes "bytes" + fmt "fmt" + types "github.com/cosmos/cosmos-sdk/codec/types" + github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" + _ "github.com/regen-network/cosmos-proto" + io "io" + math "math" + math_bits "math/bits" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package + +// MsgSubmitEvidence defines an sdk.Msg type that supports submitting arbitrary +// Evidence. +type MsgSubmitEvidence struct { + Submitter github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=submitter,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"submitter,omitempty"` + Evidence *types.Any `protobuf:"bytes,2,opt,name=evidence,proto3" json:"evidence,omitempty"` +} + +func (m *MsgSubmitEvidence) Reset() { *m = MsgSubmitEvidence{} } +func (m *MsgSubmitEvidence) String() string { return proto.CompactTextString(m) } +func (*MsgSubmitEvidence) ProtoMessage() {} +func (*MsgSubmitEvidence) Descriptor() ([]byte, []int) { + return fileDescriptor_3e3242cb23c956e0, []int{0} +} +func (m *MsgSubmitEvidence) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgSubmitEvidence) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgSubmitEvidence.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgSubmitEvidence) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgSubmitEvidence.Merge(m, src) +} +func (m *MsgSubmitEvidence) XXX_Size() int { + return m.Size() +} +func (m *MsgSubmitEvidence) XXX_DiscardUnknown() { + xxx_messageInfo_MsgSubmitEvidence.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgSubmitEvidence proto.InternalMessageInfo + +func init() { + proto.RegisterType((*MsgSubmitEvidence)(nil), "cosmos.evidence.v1beta1.MsgSubmitEvidence") +} + +func init() { proto.RegisterFile("cosmos/evidence/v1beta1/tx.proto", fileDescriptor_3e3242cb23c956e0) } + +var fileDescriptor_3e3242cb23c956e0 = []byte{ + // 275 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x4f, 0x2d, 0xcb, 0x4c, 0x49, 0xcd, 0x4b, 0x4e, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, + 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x87, 0xa8, + 0xd0, 0x83, 0xa9, 0xd0, 0x83, 0xaa, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xab, 0xd1, 0x07, + 0xb1, 0x20, 0xca, 0xa5, 0x24, 0xd3, 0xf3, 0xf3, 0xd3, 0x73, 0x52, 0xf5, 0xc1, 0xbc, 0xa4, 0xd2, + 0x34, 0xfd, 0xc4, 0xbc, 0x4a, 0x98, 0x14, 0xc4, 0xa4, 0x78, 0x88, 0x1e, 0xa8, 0xb1, 0x60, 0x8e, + 0xd2, 0x2a, 0x46, 0x2e, 0x41, 0xdf, 0xe2, 0xf4, 0xe0, 0xd2, 0xa4, 0xdc, 0xcc, 0x12, 0x57, 0xa8, + 0x4d, 0x42, 0xfe, 0x5c, 0x9c, 0xc5, 0x60, 0x91, 0x92, 0xd4, 0x22, 0x09, 0x46, 0x05, 0x46, 0x0d, + 0x1e, 0x27, 0xc3, 0x5f, 0xf7, 0xe4, 0x75, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, + 0x73, 0xa1, 0xa6, 0x40, 0x29, 0xdd, 0xe2, 0x94, 0x6c, 0xfd, 0x92, 0xca, 0x82, 0xd4, 0x62, 0x3d, + 0xc7, 0xe4, 0x64, 0xc7, 0x94, 0x94, 0xa2, 0xd4, 0xe2, 0xe2, 0x20, 0x84, 0x19, 0x42, 0x76, 0x5c, + 0x1c, 0x30, 0x6f, 0x48, 0x30, 0x29, 0x30, 0x6a, 0x70, 0x1b, 0x89, 0xe8, 0x41, 0xdc, 0xab, 0x07, + 0x73, 0xaf, 0x9e, 0x63, 0x5e, 0xa5, 0x13, 0xcf, 0xa9, 0x2d, 0xba, 0x1c, 0x30, 0x67, 0x04, 0xc1, + 0xf5, 0x58, 0xb1, 0x74, 0x2c, 0x90, 0x67, 0x70, 0xf2, 0x5e, 0xf1, 0x48, 0x8e, 0xf1, 0xc4, 0x23, + 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, + 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0xf0, 0xbb, 0xae, 0x02, 0x11, 0xd2, 0x60, 0x87, + 0x26, 0xb1, 0x81, 0x2d, 0x36, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xcf, 0x20, 0xcf, 0x5a, 0x89, + 0x01, 0x00, 0x00, +} + +func (this *MsgSubmitEvidence) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*MsgSubmitEvidence) + if !ok { + that2, ok := that.(MsgSubmitEvidence) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !bytes.Equal(this.Submitter, that1.Submitter) { + return false + } + if !this.Evidence.Equal(that1.Evidence) { + return false + } + return true +} +func (m *MsgSubmitEvidence) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgSubmitEvidence) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgSubmitEvidence) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Evidence != nil { + { + size, err := m.Evidence.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if len(m.Submitter) > 0 { + i -= len(m.Submitter) + copy(dAtA[i:], m.Submitter) + i = encodeVarintTx(dAtA, i, uint64(len(m.Submitter))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func encodeVarintTx(dAtA []byte, offset int, v uint64) int { + offset -= sovTx(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *MsgSubmitEvidence) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Submitter) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + if m.Evidence != nil { + l = m.Evidence.Size() + n += 1 + l + sovTx(uint64(l)) + } + return n +} + +func sovTx(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozTx(x uint64) (n int) { + return sovTx(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *MsgSubmitEvidence) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgSubmitEvidence: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgSubmitEvidence: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Submitter", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Submitter = append(m.Submitter[:0], dAtA[iNdEx:postIndex]...) + if m.Submitter == nil { + m.Submitter = []byte{} + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Evidence", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Evidence == nil { + m.Evidence = &types.Any{} + } + if err := m.Evidence.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipTx(dAtA []byte) (n int, err error) { + l := len(dAtA) + iNdEx := 0 + depth := 0 + for iNdEx < l { + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + wireType := int(wire & 0x7) + switch wireType { + case 0: + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + iNdEx++ + if dAtA[iNdEx-1] < 0x80 { + break + } + } + case 1: + iNdEx += 8 + case 2: + var length int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + length |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if length < 0 { + return 0, ErrInvalidLengthTx + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupTx + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthTx + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthTx = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowTx = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group") +) diff --git a/x/genutil/types/genesis.pb.go b/x/genutil/types/genesis.pb.go index 457d3cc4f8..b72b05a7aa 100644 --- a/x/genutil/types/genesis.pb.go +++ b/x/genutil/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/genutil/genesis.proto +// source: cosmos/genutil/v1beta1/genesis.proto package types @@ -33,7 +33,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_b1d235bdf6af29d2, []int{0} + return fileDescriptor_31771d25e8d8f90f, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -70,27 +70,30 @@ func (m *GenesisState) GetGenTxs() []encoding_json.RawMessage { } func init() { - proto.RegisterType((*GenesisState)(nil), "cosmos.genutil.GenesisState") + proto.RegisterType((*GenesisState)(nil), "cosmos.genutil.v1beta1.GenesisState") } -func init() { proto.RegisterFile("cosmos/genutil/genesis.proto", fileDescriptor_b1d235bdf6af29d2) } +func init() { + proto.RegisterFile("cosmos/genutil/v1beta1/genesis.proto", fileDescriptor_31771d25e8d8f90f) +} -var fileDescriptor_b1d235bdf6af29d2 = []byte{ - // 222 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x49, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x4f, 0x4f, 0xcd, 0x2b, 0x2d, 0xc9, 0xcc, 0x01, 0xd1, 0xa9, 0xc5, 0x99, 0xc5, - 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, 0x42, 0x7c, 0x10, 0x59, 0x3d, 0xa8, 0xac, 0x94, 0x48, 0x7a, - 0x7e, 0x7a, 0x3e, 0x58, 0x4a, 0x1f, 0xc4, 0x82, 0xa8, 0x52, 0x4a, 0xe0, 0xe2, 0x71, 0x87, 0x68, - 0x0b, 0x2e, 0x49, 0x2c, 0x49, 0x15, 0x0a, 0xe0, 0x62, 0x4f, 0x4f, 0xcd, 0x8b, 0x2f, 0xa9, 0x28, - 0x96, 0x60, 0x54, 0x60, 0xd6, 0xe0, 0x71, 0x32, 0x7f, 0x75, 0x4f, 0x9e, 0x2d, 0x3d, 0x35, 0xaf, - 0xa4, 0xa2, 0xf8, 0xd3, 0x3d, 0x79, 0xde, 0xca, 0xc4, 0xdc, 0x1c, 0x2b, 0x25, 0x08, 0x5f, 0xe9, - 0xd7, 0x3d, 0x79, 0x89, 0xd4, 0xbc, 0xe4, 0xfc, 0x94, 0xcc, 0xbc, 0x74, 0xfd, 0xac, 0xe2, 0xfc, - 0x3c, 0xbd, 0xa0, 0xc4, 0x72, 0xdf, 0xd4, 0xe2, 0xe2, 0xc4, 0xf4, 0xd4, 0x20, 0x90, 0xa6, 0x90, - 0x8a, 0x62, 0x27, 0xb7, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, - 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xd2, 0x49, - 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x87, 0x7a, 0x05, 0x42, 0xe9, 0x16, - 0xa7, 0x64, 0xeb, 0x57, 0xc0, 0xfd, 0x55, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x76, 0xb0, - 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0xcd, 0xef, 0x65, 0x54, 0xf6, 0x00, 0x00, 0x00, +var fileDescriptor_31771d25e8d8f90f = []byte{ + // 234 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x49, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x4f, 0x4f, 0xcd, 0x2b, 0x2d, 0xc9, 0xcc, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, + 0x49, 0x34, 0x04, 0xf1, 0x53, 0x8b, 0x33, 0x8b, 0xf5, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0xc4, + 0x20, 0xaa, 0xf4, 0xa0, 0xaa, 0xf4, 0xa0, 0xaa, 0xa4, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x4a, + 0xf4, 0x41, 0x2c, 0x88, 0x6a, 0xa5, 0x04, 0x2e, 0x1e, 0x77, 0x88, 0xf6, 0xe0, 0x92, 0xc4, 0x92, + 0x54, 0xa1, 0x00, 0x2e, 0xf6, 0xf4, 0xd4, 0xbc, 0xf8, 0x92, 0x8a, 0x62, 0x09, 0x46, 0x05, 0x66, + 0x0d, 0x1e, 0x27, 0xf3, 0x57, 0xf7, 0xe4, 0xd9, 0xd2, 0x53, 0xf3, 0x4a, 0x2a, 0x8a, 0x3f, 0xdd, + 0x93, 0xe7, 0xad, 0x4c, 0xcc, 0xcd, 0xb1, 0x52, 0x82, 0xf0, 0x95, 0x7e, 0xdd, 0x93, 0x97, 0x48, + 0xcd, 0x4b, 0xce, 0x4f, 0xc9, 0xcc, 0x4b, 0xd7, 0xcf, 0x2a, 0xce, 0xcf, 0xd3, 0x0b, 0x4a, 0x2c, + 0xf7, 0x4d, 0x2d, 0x2e, 0x4e, 0x4c, 0x4f, 0x0d, 0x02, 0x69, 0x0a, 0xa9, 0x28, 0x76, 0x72, 0x3b, + 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, + 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0x9d, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, + 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xa8, 0xd7, 0x20, 0x94, 0x6e, 0x71, 0x4a, 0xb6, 0x7e, 0x05, + 0xdc, 0x9f, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x07, 0x1b, 0x03, 0x02, 0x00, 0x00, + 0xff, 0xff, 0x6b, 0x84, 0x7a, 0x20, 0x06, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/gov/types/codec.go b/x/gov/types/codec.go index c2509dc34c..e38fedeeee 100644 --- a/x/gov/types/codec.go +++ b/x/gov/types/codec.go @@ -24,7 +24,7 @@ func RegisterInterfaces(registry types.InterfaceRegistry) { &MsgDeposit{}, ) registry.RegisterInterface( - "cosmos_sdk.gov.v1.Content", + "cosmos.gov.v1beta1.Content", (*Content)(nil), &TextProposal{}, ) diff --git a/x/gov/types/genesis.pb.go b/x/gov/types/genesis.pb.go index c0abc54092..a4ff77af73 100644 --- a/x/gov/types/genesis.pb.go +++ b/x/gov/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/gov/genesis.proto +// source: cosmos/gov/v1beta1/genesis.proto package types @@ -38,7 +38,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_b3a5f07e3880dc71, []int{0} + return fileDescriptor_43cd825e0fa7a627, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -117,40 +117,41 @@ func (m *GenesisState) GetTallyParams() TallyParams { } func init() { - proto.RegisterType((*GenesisState)(nil), "cosmos.gov.GenesisState") + proto.RegisterType((*GenesisState)(nil), "cosmos.gov.v1beta1.GenesisState") } -func init() { proto.RegisterFile("cosmos/gov/genesis.proto", fileDescriptor_b3a5f07e3880dc71) } +func init() { proto.RegisterFile("cosmos/gov/v1beta1/genesis.proto", fileDescriptor_43cd825e0fa7a627) } -var fileDescriptor_b3a5f07e3880dc71 = []byte{ - // 424 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x92, 0x41, 0x6f, 0x94, 0x40, - 0x14, 0xc7, 0xc1, 0xee, 0xd6, 0x76, 0x76, 0xd7, 0xd4, 0x29, 0x46, 0x6c, 0x15, 0x36, 0x9c, 0xb8, - 0x08, 0x49, 0x4d, 0x2f, 0xde, 0x24, 0x35, 0xc6, 0x5b, 0x43, 0x8d, 0x26, 0x7a, 0x20, 0xb4, 0x90, - 0x91, 0x08, 0x7d, 0x84, 0x37, 0x12, 0xf7, 0x5b, 0xf8, 0x39, 0xfc, 0x24, 0xbd, 0xd9, 0xa3, 0x27, - 0x34, 0xec, 0x37, 0xe8, 0x27, 0x30, 0xcc, 0x0c, 0xed, 0xb4, 0xe9, 0x69, 0x97, 0xf7, 0xfe, 0xbf, - 0x5f, 0xe6, 0xbd, 0x3c, 0x62, 0x9f, 0x01, 0x56, 0x80, 0x21, 0x83, 0x36, 0x64, 0xf9, 0x79, 0x8e, - 0x05, 0x06, 0x75, 0x03, 0x1c, 0x28, 0x91, 0x9d, 0x80, 0x41, 0xbb, 0x67, 0x31, 0x60, 0x20, 0xca, - 0xe1, 0xf0, 0x4f, 0x26, 0xf6, 0x2c, 0x9d, 0x85, 0x56, 0x56, 0xbd, 0xdf, 0x13, 0x32, 0x7f, 0x27, - 0x4d, 0x27, 0x3c, 0xe5, 0x39, 0x65, 0xc4, 0x42, 0x9e, 0x36, 0xbc, 0x38, 0x67, 0x49, 0xdd, 0x40, - 0x0d, 0x98, 0x96, 0x49, 0x91, 0xd9, 0xe6, 0xd2, 0xf4, 0x27, 0xd1, 0x61, 0xdf, 0xb9, 0xf4, 0x44, - 0xf5, 0x8f, 0x55, 0xfb, 0xfd, 0xd1, 0x55, 0xe7, 0xee, 0xaf, 0xd2, 0xaa, 0x7c, 0xed, 0xdd, 0xc7, - 0x7a, 0x31, 0xc5, 0xbb, 0x48, 0x46, 0xdf, 0x90, 0xad, 0x2c, 0xaf, 0x01, 0x0b, 0x8e, 0xf6, 0x83, - 0xe5, 0x86, 0x3f, 0x3b, 0xd8, 0x0d, 0x6e, 0x86, 0x08, 0x8e, 0x64, 0x2f, 0xda, 0xb9, 0xe8, 0x5c, - 0xe3, 0xd7, 0x5f, 0x77, 0x4b, 0x15, 0x30, 0xbe, 0xc6, 0xe8, 0x21, 0x99, 0xb6, 0xc0, 0x73, 0xb4, - 0x37, 0x04, 0xbf, 0xa3, 0xf3, 0x1f, 0x81, 0xe7, 0xd1, 0x42, 0xc1, 0xd3, 0xe1, 0x0b, 0x63, 0x99, - 0xa6, 0x6f, 0xc9, 0xf6, 0xf8, 0x3a, 0xb4, 0x27, 0x02, 0xb5, 0x74, 0x74, 0x7c, 0x64, 0xf4, 0x58, - 0xe1, 0xdb, 0x63, 0x05, 0xe3, 0x1b, 0x92, 0x26, 0xe4, 0x91, 0x7a, 0x49, 0x52, 0xa7, 0x4d, 0x5a, - 0xa1, 0x3d, 0x5d, 0x9a, 0xfe, 0xec, 0xe0, 0xd9, 0x3d, 0x63, 0x1c, 0x8b, 0x40, 0xf4, 0x62, 0x10, - 0x5e, 0x75, 0xee, 0x13, 0xb9, 0xac, 0xdb, 0xb8, 0x17, 0x2f, 0x32, 0x3d, 0x4d, 0xbf, 0x90, 0x45, - 0x0b, 0x72, 0x99, 0xd2, 0xbf, 0x29, 0xfc, 0xf6, 0x9d, 0x31, 0x87, 0xb5, 0x4a, 0xfd, 0x73, 0xa5, - 0xb7, 0xa4, 0xfe, 0x16, 0xec, 0xc5, 0xf3, 0x56, 0xcb, 0xd2, 0x4f, 0x64, 0xce, 0xd3, 0xb2, 0x5c, - 0x8d, 0xee, 0x87, 0xc2, 0xfd, 0x54, 0x77, 0x7f, 0x18, 0xfa, 0x4a, 0xbd, 0xaf, 0xd4, 0xbb, 0x52, - 0xad, 0xa3, 0x5e, 0x3c, 0xe3, 0x5a, 0x32, 0xba, 0xe8, 0x1d, 0xf3, 0xb2, 0x77, 0xcc, 0x7f, 0xbd, - 0x63, 0xfe, 0x5c, 0x3b, 0xc6, 0xe5, 0xda, 0x31, 0xfe, 0xac, 0x1d, 0xe3, 0xb3, 0xcf, 0x0a, 0xfe, - 0xf5, 0xfb, 0x69, 0x70, 0x06, 0x55, 0xa8, 0x8e, 0x51, 0xfe, 0xbc, 0xc4, 0xec, 0x5b, 0xf8, 0x43, - 0x5c, 0x26, 0x5f, 0xd5, 0x39, 0x9e, 0x6e, 0x8a, 0xe3, 0x7c, 0xf5, 0x3f, 0x00, 0x00, 0xff, 0xff, - 0xd7, 0xec, 0x8f, 0xa2, 0xf0, 0x02, 0x00, 0x00, +var fileDescriptor_43cd825e0fa7a627 = []byte{ + // 439 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0xc1, 0x6e, 0xd3, 0x40, + 0x10, 0x86, 0x63, 0x9a, 0x94, 0x76, 0x93, 0x20, 0x58, 0x82, 0x64, 0x35, 0xc1, 0x36, 0x3e, 0xe5, + 0x82, 0xad, 0x16, 0x71, 0x41, 0xe2, 0x62, 0x55, 0x42, 0x3d, 0x20, 0x55, 0x2e, 0xe2, 0xc0, 0x25, + 0xda, 0xc4, 0xab, 0xc5, 0x22, 0xe9, 0x58, 0x9e, 0xc5, 0x22, 0x6f, 0xc1, 0x73, 0xf0, 0x24, 0x3d, + 0xf6, 0xc8, 0xc9, 0x20, 0xe7, 0x0d, 0xfa, 0x02, 0x20, 0xef, 0xae, 0xc1, 0x05, 0xc3, 0x29, 0xf1, + 0xce, 0x3f, 0xdf, 0xb7, 0x3b, 0x1a, 0xe2, 0xad, 0x00, 0x37, 0x80, 0xa1, 0x80, 0x22, 0x2c, 0x8e, + 0x97, 0x5c, 0xb2, 0xe3, 0x50, 0xf0, 0x4b, 0x8e, 0x29, 0x06, 0x59, 0x0e, 0x12, 0x28, 0xd5, 0x89, + 0x40, 0x40, 0x11, 0x98, 0xc4, 0xd1, 0x44, 0x80, 0x00, 0x55, 0x0e, 0xeb, 0x7f, 0x3a, 0x79, 0x34, + 0xeb, 0x62, 0x41, 0xa1, 0xab, 0xfe, 0x8f, 0x3e, 0x19, 0xbd, 0xd2, 0xe4, 0x0b, 0xc9, 0x24, 0xa7, + 0x82, 0x4c, 0x50, 0xb2, 0x5c, 0xa6, 0x97, 0x62, 0x91, 0xe5, 0x90, 0x01, 0xb2, 0xf5, 0x22, 0x4d, + 0x6c, 0xcb, 0xb3, 0xe6, 0xfd, 0xe8, 0x79, 0x55, 0xba, 0xf4, 0xc2, 0xd4, 0xcf, 0x4d, 0xf9, 0xec, + 0xf4, 0xa6, 0x74, 0xa7, 0x5b, 0xb6, 0x59, 0xbf, 0xf0, 0xbb, 0x7a, 0xfd, 0x98, 0xe2, 0x9f, 0x2d, + 0x09, 0x3d, 0x23, 0x07, 0x09, 0xcf, 0x00, 0x53, 0x89, 0xf6, 0x1d, 0x6f, 0x6f, 0x3e, 0x3c, 0x99, + 0x06, 0x7f, 0x3f, 0x2a, 0x38, 0xd5, 0x99, 0xe8, 0xfe, 0x55, 0xe9, 0xf6, 0xbe, 0x7c, 0x73, 0x0f, + 0xcc, 0x01, 0xc6, 0xbf, 0xda, 0xe9, 0x4b, 0x32, 0x28, 0x40, 0x72, 0xb4, 0xf7, 0x14, 0xc7, 0xee, + 0xe2, 0xbc, 0x05, 0xc9, 0xa3, 0xb1, 0x81, 0x0c, 0xea, 0x2f, 0x8c, 0x75, 0x17, 0x7d, 0x4d, 0x0e, + 0x9b, 0xdb, 0xa2, 0xdd, 0x57, 0x88, 0x59, 0x17, 0xa2, 0xb9, 0x7c, 0xf4, 0xc0, 0x60, 0x0e, 0x9b, + 0x13, 0x8c, 0x7f, 0x13, 0xa8, 0x20, 0xf7, 0xcc, 0xcd, 0x16, 0x19, 0xcb, 0xd9, 0x06, 0xed, 0x81, + 0x67, 0xcd, 0x87, 0x27, 0x4f, 0xfe, 0xf3, 0xbc, 0x73, 0x15, 0x8c, 0x1e, 0xd7, 0xe0, 0x9b, 0xd2, + 0x7d, 0xa4, 0x87, 0x79, 0x1b, 0xe3, 0xc7, 0xe3, 0xa4, 0x9d, 0xa6, 0x2b, 0x32, 0x2e, 0x40, 0x0f, + 0x5b, 0x7b, 0xf6, 0x95, 0xc7, 0xfb, 0xc7, 0xf3, 0xeb, 0xf1, 0x6b, 0xcd, 0xcc, 0x68, 0x26, 0x5a, + 0x73, 0x0b, 0xe2, 0xc7, 0xa3, 0xa2, 0x95, 0xa5, 0x0b, 0x32, 0x92, 0x6c, 0xbd, 0xde, 0x36, 0x8e, + 0xbb, 0xca, 0xe1, 0x76, 0x39, 0xde, 0xd4, 0x39, 0xa3, 0x98, 0x1a, 0xc5, 0x43, 0xad, 0x68, 0x23, + 0xfc, 0x78, 0x28, 0x5b, 0xc9, 0xe8, 0xaa, 0x72, 0xac, 0xeb, 0xca, 0xb1, 0xbe, 0x57, 0x8e, 0xf5, + 0x79, 0xe7, 0xf4, 0xae, 0x77, 0x4e, 0xef, 0xeb, 0xce, 0xe9, 0xbd, 0x9b, 0x8b, 0x54, 0xbe, 0xff, + 0xb8, 0x0c, 0x56, 0xb0, 0x09, 0xcd, 0x12, 0xeb, 0x9f, 0xa7, 0x98, 0x7c, 0x08, 0x3f, 0xa9, 0x8d, + 0x96, 0xdb, 0x8c, 0xe3, 0x72, 0x5f, 0x2d, 0xf3, 0xb3, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x23, + 0x30, 0xcd, 0xfb, 0x38, 0x03, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/gov/types/gov.pb.go b/x/gov/types/gov.pb.go index 6e0d3ec8b9..56080ffe72 100644 --- a/x/gov/types/gov.pb.go +++ b/x/gov/types/gov.pb.go @@ -1,14 +1,14 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/gov/gov.proto +// source: cosmos/gov/v1beta1/gov.proto package types import ( bytes "bytes" fmt "fmt" - types "github.com/cosmos/cosmos-sdk/codec/types" + types1 "github.com/cosmos/cosmos-sdk/codec/types" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" - types1 "github.com/cosmos/cosmos-sdk/types" + types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" @@ -66,7 +66,7 @@ var VoteOption_value = map[string]int32{ } func (VoteOption) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_67fb57f9a603bed5, []int{0} + return fileDescriptor_6e82113c1a9a4b7c, []int{0} } // ProposalStatus is a type alias that represents a proposal status as a byte @@ -106,127 +106,9 @@ var ProposalStatus_value = map[string]int32{ } func (ProposalStatus) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_67fb57f9a603bed5, []int{1} + return fileDescriptor_6e82113c1a9a4b7c, []int{1} } -// MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary -// proposal Content. -type MsgSubmitProposal struct { - Content *types.Any `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"` - InitialDeposit github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,2,rep,name=initial_deposit,json=initialDeposit,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"initial_deposit" yaml:"initial_deposit"` - Proposer github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,3,opt,name=proposer,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"proposer,omitempty"` -} - -func (m *MsgSubmitProposal) Reset() { *m = MsgSubmitProposal{} } -func (*MsgSubmitProposal) ProtoMessage() {} -func (*MsgSubmitProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_67fb57f9a603bed5, []int{0} -} -func (m *MsgSubmitProposal) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgSubmitProposal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgSubmitProposal.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgSubmitProposal) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgSubmitProposal.Merge(m, src) -} -func (m *MsgSubmitProposal) XXX_Size() int { - return m.Size() -} -func (m *MsgSubmitProposal) XXX_DiscardUnknown() { - xxx_messageInfo_MsgSubmitProposal.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgSubmitProposal proto.InternalMessageInfo - -// MsgVote defines a message to cast a vote -type MsgVote struct { - ProposalID uint64 `protobuf:"varint,1,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id" yaml:"proposal_id"` - Voter github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,2,opt,name=voter,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"voter,omitempty"` - Option VoteOption `protobuf:"varint,3,opt,name=option,proto3,enum=cosmos.gov.VoteOption" json:"option,omitempty"` -} - -func (m *MsgVote) Reset() { *m = MsgVote{} } -func (*MsgVote) ProtoMessage() {} -func (*MsgVote) Descriptor() ([]byte, []int) { - return fileDescriptor_67fb57f9a603bed5, []int{1} -} -func (m *MsgVote) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgVote) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgVote.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgVote) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgVote.Merge(m, src) -} -func (m *MsgVote) XXX_Size() int { - return m.Size() -} -func (m *MsgVote) XXX_DiscardUnknown() { - xxx_messageInfo_MsgVote.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgVote proto.InternalMessageInfo - -// MsgDeposit defines a message to submit a deposit to an existing proposal -type MsgDeposit struct { - ProposalID uint64 `protobuf:"varint,1,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id" yaml:"proposal_id"` - Depositor github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,2,opt,name=depositor,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"depositor,omitempty"` - Amount github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,3,rep,name=amount,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"amount"` -} - -func (m *MsgDeposit) Reset() { *m = MsgDeposit{} } -func (*MsgDeposit) ProtoMessage() {} -func (*MsgDeposit) Descriptor() ([]byte, []int) { - return fileDescriptor_67fb57f9a603bed5, []int{2} -} -func (m *MsgDeposit) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgDeposit) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgDeposit.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgDeposit) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgDeposit.Merge(m, src) -} -func (m *MsgDeposit) XXX_Size() int { - return m.Size() -} -func (m *MsgDeposit) XXX_DiscardUnknown() { - xxx_messageInfo_MsgDeposit.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgDeposit proto.InternalMessageInfo - // TextProposal defines a standard text proposal whose changes need to be // manually updated in case of approval type TextProposal struct { @@ -237,7 +119,7 @@ type TextProposal struct { func (m *TextProposal) Reset() { *m = TextProposal{} } func (*TextProposal) ProtoMessage() {} func (*TextProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_67fb57f9a603bed5, []int{3} + return fileDescriptor_6e82113c1a9a4b7c, []int{0} } func (m *TextProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -276,7 +158,7 @@ type Deposit struct { func (m *Deposit) Reset() { *m = Deposit{} } func (*Deposit) ProtoMessage() {} func (*Deposit) Descriptor() ([]byte, []int) { - return fileDescriptor_67fb57f9a603bed5, []int{4} + return fileDescriptor_6e82113c1a9a4b7c, []int{1} } func (m *Deposit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -308,8 +190,8 @@ var xxx_messageInfo_Deposit proto.InternalMessageInfo // Proposal defines the core field members of a governance proposal type Proposal struct { ProposalID uint64 `protobuf:"varint,1,opt,name=proposal_id,json=proposalId,proto3" json:"id" yaml:"id"` - Content *types.Any `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"` - Status ProposalStatus `protobuf:"varint,3,opt,name=status,proto3,enum=cosmos.gov.ProposalStatus" json:"status,omitempty" yaml:"proposal_status"` + Content *types1.Any `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"` + Status ProposalStatus `protobuf:"varint,3,opt,name=status,proto3,enum=cosmos.gov.v1beta1.ProposalStatus" json:"status,omitempty" yaml:"proposal_status"` FinalTallyResult TallyResult `protobuf:"bytes,4,opt,name=final_tally_result,json=finalTallyResult,proto3" json:"final_tally_result" yaml:"final_tally_result"` SubmitTime time.Time `protobuf:"bytes,5,opt,name=submit_time,json=submitTime,proto3,stdtime" json:"submit_time" yaml:"submit_time"` DepositEndTime time.Time `protobuf:"bytes,6,opt,name=deposit_end_time,json=depositEndTime,proto3,stdtime" json:"deposit_end_time" yaml:"deposit_end_time"` @@ -321,7 +203,7 @@ type Proposal struct { func (m *Proposal) Reset() { *m = Proposal{} } func (*Proposal) ProtoMessage() {} func (*Proposal) Descriptor() ([]byte, []int) { - return fileDescriptor_67fb57f9a603bed5, []int{5} + return fileDescriptor_6e82113c1a9a4b7c, []int{2} } func (m *Proposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -361,7 +243,7 @@ type TallyResult struct { func (m *TallyResult) Reset() { *m = TallyResult{} } func (*TallyResult) ProtoMessage() {} func (*TallyResult) Descriptor() ([]byte, []int) { - return fileDescriptor_67fb57f9a603bed5, []int{6} + return fileDescriptor_6e82113c1a9a4b7c, []int{3} } func (m *TallyResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -395,13 +277,13 @@ var xxx_messageInfo_TallyResult proto.InternalMessageInfo type Vote struct { ProposalID uint64 `protobuf:"varint,1,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id,omitempty" yaml:"proposal_id"` Voter github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,2,opt,name=voter,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"voter,omitempty"` - Option VoteOption `protobuf:"varint,3,opt,name=option,proto3,enum=cosmos.gov.VoteOption" json:"option,omitempty"` + Option VoteOption `protobuf:"varint,3,opt,name=option,proto3,enum=cosmos.gov.v1beta1.VoteOption" json:"option,omitempty"` } func (m *Vote) Reset() { *m = Vote{} } func (*Vote) ProtoMessage() {} func (*Vote) Descriptor() ([]byte, []int) { - return fileDescriptor_67fb57f9a603bed5, []int{7} + return fileDescriptor_6e82113c1a9a4b7c, []int{4} } func (m *Vote) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -441,7 +323,7 @@ type DepositParams struct { func (m *DepositParams) Reset() { *m = DepositParams{} } func (*DepositParams) ProtoMessage() {} func (*DepositParams) Descriptor() ([]byte, []int) { - return fileDescriptor_67fb57f9a603bed5, []int{8} + return fileDescriptor_6e82113c1a9a4b7c, []int{5} } func (m *DepositParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -479,7 +361,7 @@ type VotingParams struct { func (m *VotingParams) Reset() { *m = VotingParams{} } func (*VotingParams) ProtoMessage() {} func (*VotingParams) Descriptor() ([]byte, []int) { - return fileDescriptor_67fb57f9a603bed5, []int{9} + return fileDescriptor_6e82113c1a9a4b7c, []int{6} } func (m *VotingParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -521,7 +403,7 @@ type TallyParams struct { func (m *TallyParams) Reset() { *m = TallyParams{} } func (*TallyParams) ProtoMessage() {} func (*TallyParams) Descriptor() ([]byte, []int) { - return fileDescriptor_67fb57f9a603bed5, []int{10} + return fileDescriptor_6e82113c1a9a4b7c, []int{7} } func (m *TallyParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -551,219 +433,111 @@ func (m *TallyParams) XXX_DiscardUnknown() { var xxx_messageInfo_TallyParams proto.InternalMessageInfo func init() { - proto.RegisterEnum("cosmos.gov.VoteOption", VoteOption_name, VoteOption_value) - proto.RegisterEnum("cosmos.gov.ProposalStatus", ProposalStatus_name, ProposalStatus_value) - proto.RegisterType((*MsgSubmitProposal)(nil), "cosmos.gov.MsgSubmitProposal") - proto.RegisterType((*MsgVote)(nil), "cosmos.gov.MsgVote") - proto.RegisterType((*MsgDeposit)(nil), "cosmos.gov.MsgDeposit") - proto.RegisterType((*TextProposal)(nil), "cosmos.gov.TextProposal") - proto.RegisterType((*Deposit)(nil), "cosmos.gov.Deposit") - proto.RegisterType((*Proposal)(nil), "cosmos.gov.Proposal") - proto.RegisterType((*TallyResult)(nil), "cosmos.gov.TallyResult") - proto.RegisterType((*Vote)(nil), "cosmos.gov.Vote") - proto.RegisterType((*DepositParams)(nil), "cosmos.gov.DepositParams") - proto.RegisterType((*VotingParams)(nil), "cosmos.gov.VotingParams") - proto.RegisterType((*TallyParams)(nil), "cosmos.gov.TallyParams") + proto.RegisterEnum("cosmos.gov.v1beta1.VoteOption", VoteOption_name, VoteOption_value) + proto.RegisterEnum("cosmos.gov.v1beta1.ProposalStatus", ProposalStatus_name, ProposalStatus_value) + proto.RegisterType((*TextProposal)(nil), "cosmos.gov.v1beta1.TextProposal") + proto.RegisterType((*Deposit)(nil), "cosmos.gov.v1beta1.Deposit") + proto.RegisterType((*Proposal)(nil), "cosmos.gov.v1beta1.Proposal") + proto.RegisterType((*TallyResult)(nil), "cosmos.gov.v1beta1.TallyResult") + proto.RegisterType((*Vote)(nil), "cosmos.gov.v1beta1.Vote") + proto.RegisterType((*DepositParams)(nil), "cosmos.gov.v1beta1.DepositParams") + proto.RegisterType((*VotingParams)(nil), "cosmos.gov.v1beta1.VotingParams") + proto.RegisterType((*TallyParams)(nil), "cosmos.gov.v1beta1.TallyParams") } -func init() { proto.RegisterFile("cosmos/gov/gov.proto", fileDescriptor_67fb57f9a603bed5) } +func init() { proto.RegisterFile("cosmos/gov/v1beta1/gov.proto", fileDescriptor_6e82113c1a9a4b7c) } -var fileDescriptor_67fb57f9a603bed5 = []byte{ - // 1468 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x58, 0xcf, 0x6b, 0x1b, 0xd7, - 0x16, 0xd6, 0xc8, 0xbf, 0x8f, 0x64, 0x7b, 0x72, 0xed, 0x67, 0x2b, 0xf3, 0xde, 0x9b, 0x51, 0xf4, - 0xc2, 0xc3, 0x84, 0x44, 0xce, 0x73, 0x56, 0x2f, 0x81, 0x47, 0x24, 0x6b, 0x92, 0x28, 0xc4, 0x92, - 0x18, 0x4d, 0x14, 0x92, 0xb7, 0x18, 0xc6, 0xd2, 0x44, 0x9e, 0x56, 0x33, 0x57, 0xd5, 0x5c, 0xb9, - 0x36, 0xd9, 0xb4, 0xbb, 0xa2, 0x42, 0x48, 0x77, 0xdd, 0x08, 0x0a, 0xcd, 0xa2, 0xed, 0xaa, 0x85, - 0xfe, 0x11, 0xa6, 0x74, 0x11, 0x4a, 0x17, 0xa1, 0x0b, 0xa5, 0x71, 0xa0, 0x14, 0x2f, 0xba, 0xc8, - 0xb2, 0x9b, 0x96, 0xb9, 0xf7, 0x8e, 0x35, 0x92, 0x4d, 0x1d, 0xf5, 0x07, 0x85, 0x2e, 0x02, 0xd2, - 0xb9, 0xe7, 0xfb, 0xee, 0x39, 0x9f, 0xce, 0x77, 0x66, 0x62, 0x58, 0xac, 0x62, 0xcf, 0xc1, 0xde, - 0x6a, 0x1d, 0x6f, 0xfb, 0xff, 0xd2, 0xcd, 0x16, 0x26, 0x18, 0x01, 0x8b, 0xa6, 0xeb, 0x78, 0x5b, - 0x5a, 0xe0, 0x19, 0x3c, 0x44, 0x13, 0xa4, 0xc5, 0x3a, 0xae, 0x63, 0xfa, 0x71, 0xd5, 0xff, 0xc4, - 0xa3, 0xa7, 0x59, 0x8e, 0xc1, 0x0e, 0x06, 0x00, 0x4a, 0x1d, 0xe3, 0x7a, 0xc3, 0x5a, 0xa5, 0xdf, - 0x36, 0xdb, 0xf7, 0x57, 0x89, 0xed, 0x58, 0x1e, 0x31, 0x9d, 0x66, 0x80, 0x1d, 0x4e, 0x30, 0xdd, - 0x5d, 0x7e, 0x24, 0x0f, 0x1f, 0xd5, 0xda, 0x2d, 0x93, 0xd8, 0xd8, 0x65, 0xe7, 0xa9, 0x8f, 0xa3, - 0x70, 0x6a, 0xc3, 0xab, 0x97, 0xdb, 0x9b, 0x8e, 0x4d, 0x4a, 0x2d, 0xdc, 0xc4, 0x9e, 0xd9, 0x40, - 0x57, 0x60, 0xaa, 0x8a, 0x5d, 0x62, 0xb9, 0x24, 0x21, 0x24, 0x85, 0x95, 0xd8, 0xda, 0x62, 0x9a, - 0xf1, 0xa4, 0x03, 0x9e, 0x74, 0xc6, 0xdd, 0xcd, 0xc6, 0xbe, 0xf8, 0xfc, 0xc2, 0xd4, 0x3a, 0x4b, - 0xd4, 0x02, 0x04, 0x7a, 0x5b, 0x80, 0x79, 0xdb, 0xb5, 0x89, 0x6d, 0x36, 0x8c, 0x9a, 0xd5, 0xc4, - 0x9e, 0x4d, 0x12, 0xd1, 0xe4, 0xd8, 0x4a, 0x6c, 0x2d, 0x9e, 0xe6, 0x7d, 0xad, 0x63, 0xdb, 0xcd, - 0xde, 0xdc, 0xeb, 0x29, 0x91, 0x97, 0x3d, 0x65, 0x69, 0xd7, 0x74, 0x1a, 0x97, 0x53, 0x43, 0x90, - 0xd4, 0x27, 0xcf, 0x94, 0x95, 0xba, 0x4d, 0xb6, 0xda, 0x9b, 0xe9, 0x2a, 0x76, 0x56, 0x07, 0x94, - 0xbc, 0xe0, 0xd5, 0x5e, 0x5f, 0x25, 0xbb, 0x4d, 0x8b, 0x51, 0x79, 0xda, 0x1c, 0x47, 0xe7, 0x18, - 0x18, 0x6d, 0xc0, 0x74, 0x93, 0x36, 0x63, 0xb5, 0x12, 0x63, 0x49, 0x61, 0x25, 0x9e, 0xfd, 0xcf, - 0x8f, 0x3d, 0xe5, 0xc2, 0x2b, 0xf0, 0x65, 0xaa, 0xd5, 0x4c, 0xad, 0xd6, 0xb2, 0x3c, 0x4f, 0x3b, - 0xa4, 0xb8, 0x3c, 0xfe, 0xfd, 0x07, 0x8a, 0x90, 0xea, 0x09, 0x30, 0xb5, 0xe1, 0xd5, 0x2b, 0x98, - 0x58, 0x48, 0x87, 0x58, 0x93, 0xab, 0x65, 0xd8, 0x35, 0xaa, 0xd2, 0x78, 0xf6, 0xd2, 0x7e, 0x4f, - 0x81, 0x40, 0xc4, 0x7c, 0xee, 0xa0, 0xa7, 0x84, 0x93, 0x5e, 0xf6, 0x14, 0xc4, 0x5a, 0x0d, 0x05, - 0x53, 0x1a, 0x04, 0xdf, 0xf2, 0x35, 0x74, 0x1d, 0x26, 0xb6, 0x31, 0xb1, 0x5a, 0x89, 0xe8, 0xaf, - 0xad, 0x99, 0xe1, 0x51, 0x1a, 0x26, 0x71, 0xd3, 0xff, 0x99, 0x69, 0xf7, 0x73, 0x6b, 0x4b, 0xe9, - 0xfe, 0x54, 0xa6, 0xfd, 0x06, 0x8a, 0xf4, 0x54, 0xe3, 0x59, 0xbc, 0xc1, 0xf7, 0xa2, 0x00, 0x1b, - 0x5e, 0x3d, 0x10, 0xf1, 0x8f, 0xe9, 0xb1, 0x08, 0x33, 0xfc, 0x27, 0xc6, 0xbf, 0xa1, 0xcf, 0x3e, - 0x07, 0xaa, 0xc0, 0xa4, 0xe9, 0xe0, 0xb6, 0x4b, 0x12, 0x63, 0xc7, 0x4c, 0xd9, 0x45, 0x7f, 0xca, - 0x46, 0x9a, 0x25, 0xce, 0xc6, 0x35, 0xb9, 0x03, 0x71, 0xdd, 0xda, 0xe9, 0x5b, 0x63, 0x11, 0x26, - 0x88, 0x4d, 0x1a, 0x16, 0x95, 0x63, 0x46, 0x63, 0x5f, 0x50, 0x12, 0x62, 0x35, 0xcb, 0xab, 0xb6, - 0x6c, 0x26, 0x7a, 0x94, 0x9e, 0x85, 0x43, 0x97, 0xe7, 0x7d, 0xb6, 0xaf, 0xfa, 0x7e, 0x49, 0xfd, - 0x24, 0xc0, 0x54, 0xa0, 0xb4, 0x7a, 0x9c, 0xd2, 0x67, 0x07, 0x95, 0xfe, 0xeb, 0x49, 0xfb, 0xdd, - 0x24, 0x4c, 0x1f, 0xea, 0x9a, 0x3d, 0x4e, 0x82, 0x33, 0x47, 0x86, 0x2d, 0x4a, 0x67, 0x6c, 0x86, - 0xaf, 0x8c, 0xa1, 0xfe, 0x43, 0x6b, 0x2b, 0x3a, 0xf2, 0xda, 0x2a, 0xc0, 0xa4, 0x47, 0x4c, 0xd2, - 0xf6, 0xb8, 0x65, 0xa4, 0xb0, 0x65, 0x82, 0x1a, 0xca, 0x34, 0x23, 0x2b, 0xf5, 0xd7, 0xd6, 0x61, - 0xd1, 0x0c, 0x9c, 0xd2, 0x38, 0x0b, 0xda, 0x02, 0x74, 0xdf, 0x76, 0xcd, 0x86, 0x41, 0xcc, 0x46, - 0x63, 0xd7, 0x68, 0x59, 0x5e, 0xbb, 0x41, 0x12, 0xe3, 0xb4, 0xae, 0xe5, 0x30, 0xb7, 0xee, 0x9f, - 0x6b, 0xf4, 0x38, 0x7b, 0x86, 0xef, 0xc4, 0xd3, 0x8c, 0xfc, 0x28, 0x41, 0x4a, 0x13, 0x69, 0x30, - 0x04, 0x42, 0xff, 0x87, 0x98, 0x47, 0xf7, 0xb7, 0xe1, 0x3f, 0x18, 0x12, 0x13, 0xf4, 0x0a, 0xe9, - 0x48, 0xeb, 0x7a, 0xf0, 0xd4, 0xc8, 0xca, 0xfc, 0x16, 0x3e, 0x4f, 0x21, 0x70, 0xea, 0xd1, 0x33, - 0x45, 0xd0, 0x80, 0x45, 0x7c, 0x00, 0xb2, 0x41, 0xe4, 0xf3, 0x60, 0x58, 0x6e, 0x8d, 0xdd, 0x30, - 0x79, 0xe2, 0x0d, 0xff, 0xe2, 0x37, 0x2c, 0xb3, 0x1b, 0x86, 0x19, 0xd8, 0x35, 0x73, 0x3c, 0xac, - 0xba, 0x35, 0x7a, 0xd5, 0x03, 0x98, 0x25, 0x98, 0x84, 0x9e, 0x1a, 0x53, 0xc7, 0x0c, 0xdd, 0x0d, - 0xce, 0xbc, 0xc8, 0x98, 0x07, 0x00, 0xa3, 0x3d, 0x33, 0xe2, 0x14, 0x1b, 0x58, 0xb0, 0x01, 0xa7, - 0xb6, 0x31, 0xb1, 0xdd, 0xba, 0xff, 0x43, 0xb6, 0xb8, 0x94, 0xd3, 0x27, 0x36, 0x7a, 0x96, 0x97, - 0x93, 0x60, 0xe5, 0x1c, 0xa1, 0x60, 0x9d, 0xce, 0xb3, 0x78, 0xd9, 0x0f, 0xd3, 0x56, 0xef, 0x03, - 0x0f, 0xf5, 0x45, 0x9d, 0x39, 0xf1, 0xae, 0xd4, 0xe0, 0x03, 0x73, 0x88, 0x80, 0xdd, 0x34, 0xcb, - 0xa2, 0x5c, 0x52, 0x6e, 0xb4, 0xbd, 0x28, 0xc4, 0xc2, 0x03, 0x73, 0x15, 0xc6, 0x76, 0x2d, 0x8f, - 0x6d, 0xb0, 0x6c, 0xda, 0x67, 0xfd, 0xa6, 0xa7, 0xfc, 0xfb, 0x15, 0x84, 0xcb, 0xbb, 0x44, 0xf3, - 0xa1, 0xe8, 0x06, 0x4c, 0x99, 0x9b, 0x1e, 0x31, 0x6d, 0xbe, 0xeb, 0x46, 0x66, 0x09, 0xe0, 0xe8, - 0x7f, 0x10, 0x75, 0x31, 0xb5, 0xdc, 0xe8, 0x24, 0x51, 0x17, 0xa3, 0x3a, 0xc4, 0x5d, 0x6c, 0xbc, - 0x69, 0x93, 0x2d, 0x63, 0xdb, 0x22, 0x98, 0x1a, 0x6c, 0x26, 0xab, 0x8e, 0xc6, 0xf4, 0xb2, 0xa7, - 0x2c, 0x30, 0x51, 0xc3, 0x5c, 0x29, 0x0d, 0x5c, 0x7c, 0xc7, 0x26, 0x5b, 0x15, 0x8b, 0x60, 0x2e, - 0xe5, 0x97, 0x02, 0x8c, 0xd3, 0x17, 0x80, 0xdf, 0x69, 0x65, 0xff, 0xc9, 0x4f, 0xfc, 0xcf, 0xa2, - 0x30, 0xcb, 0x1d, 0x50, 0x32, 0x5b, 0xa6, 0xe3, 0xa1, 0x87, 0x02, 0xc4, 0x1c, 0xdb, 0x3d, 0xf4, - 0xa0, 0x70, 0x8c, 0x07, 0x0d, 0x5f, 0xdd, 0x83, 0x9e, 0xf2, 0xb7, 0x50, 0xe2, 0x79, 0xec, 0xd8, - 0xc4, 0x72, 0x9a, 0x64, 0xb7, 0xdf, 0x75, 0xe8, 0x78, 0x34, 0x6b, 0x82, 0x63, 0xbb, 0x81, 0x31, - 0x1f, 0x0a, 0x80, 0x1c, 0x73, 0x27, 0x20, 0x32, 0x9a, 0x56, 0xcb, 0xc6, 0x35, 0xbe, 0xe0, 0x4f, - 0x1f, 0xb1, 0x4b, 0x8e, 0xbf, 0xdf, 0xb2, 0x11, 0x38, 0xe8, 0x29, 0xff, 0x38, 0x0a, 0x1e, 0xa8, - 0x95, 0xaf, 0xda, 0xa3, 0x59, 0xa9, 0xf7, 0x7d, 0x43, 0x89, 0x8e, 0xb9, 0x13, 0x28, 0xc4, 0xc2, - 0xef, 0x0a, 0x10, 0xaf, 0x50, 0x97, 0x71, 0xc9, 0x1e, 0x00, 0x77, 0x5d, 0x50, 0x9b, 0x70, 0x52, - 0x6d, 0x57, 0x78, 0x6d, 0xcb, 0x03, 0xb8, 0x81, 0xb2, 0x16, 0x07, 0x4c, 0x1e, 0xae, 0x28, 0xce, - 0x62, 0xbc, 0x9a, 0xc7, 0x81, 0xb7, 0x79, 0x31, 0xf7, 0x60, 0xf2, 0x8d, 0x36, 0x6e, 0xb5, 0x1d, - 0x5a, 0x45, 0x3c, 0x9b, 0x1d, 0xc1, 0x09, 0x39, 0xab, 0x7a, 0xd0, 0x53, 0x44, 0x86, 0xef, 0x57, - 0xa3, 0x71, 0x46, 0x54, 0x85, 0x19, 0xb2, 0xd5, 0xb2, 0xbc, 0x2d, 0xdc, 0xa8, 0xf1, 0x81, 0x55, - 0x47, 0xa6, 0x5f, 0x38, 0xa4, 0x08, 0xdd, 0xd0, 0xe7, 0x45, 0x3a, 0x8c, 0x53, 0x23, 0xb3, 0xd7, - 0xf6, 0xab, 0x23, 0xf3, 0xcf, 0xf9, 0xe8, 0x10, 0x35, 0x65, 0x3b, 0xf7, 0x83, 0x00, 0xd0, 0x77, - 0x01, 0x3a, 0x0f, 0xcb, 0x95, 0xa2, 0xae, 0x1a, 0xc5, 0x92, 0x9e, 0x2f, 0x16, 0x8c, 0xdb, 0x85, - 0x72, 0x49, 0x5d, 0xcf, 0x5f, 0xcb, 0xab, 0x39, 0x31, 0x22, 0xcd, 0x77, 0xba, 0xc9, 0x18, 0x4b, - 0x54, 0x7d, 0x0a, 0x94, 0x82, 0xf9, 0x70, 0xf6, 0x5d, 0xb5, 0x2c, 0x0a, 0xd2, 0x6c, 0xa7, 0x9b, - 0x9c, 0x61, 0x59, 0x77, 0x2d, 0x0f, 0x9d, 0x83, 0x85, 0x70, 0x4e, 0x26, 0x5b, 0xd6, 0x33, 0xf9, - 0x82, 0x18, 0x95, 0x4e, 0x75, 0xba, 0xc9, 0x59, 0x96, 0x97, 0xe1, 0x3b, 0x2f, 0x09, 0x73, 0xe1, - 0xdc, 0x42, 0x51, 0x1c, 0x93, 0xe2, 0x9d, 0x6e, 0x72, 0x9a, 0xa5, 0x15, 0x30, 0x5a, 0x83, 0xc4, - 0x60, 0x86, 0x71, 0x27, 0xaf, 0xdf, 0x30, 0x2a, 0xaa, 0x5e, 0x14, 0xc7, 0xa5, 0xc5, 0x4e, 0x37, - 0x29, 0x06, 0xb9, 0xc1, 0x82, 0x92, 0xe2, 0xef, 0x7c, 0x28, 0x47, 0x3e, 0x7a, 0x2c, 0x47, 0x3e, - 0x7d, 0x2c, 0x47, 0xce, 0x7d, 0x1d, 0x85, 0xb9, 0xc1, 0xb7, 0x16, 0x94, 0x86, 0xbf, 0x97, 0xb4, - 0x62, 0xa9, 0x58, 0xce, 0xdc, 0x32, 0xca, 0x7a, 0x46, 0xbf, 0x5d, 0x1e, 0x6a, 0x9c, 0xb6, 0xc4, - 0x92, 0x0b, 0xb6, 0xff, 0xbf, 0x40, 0x79, 0x38, 0x3f, 0xa7, 0x96, 0x8a, 0xe5, 0xbc, 0x6e, 0x94, - 0x54, 0x2d, 0x5f, 0xcc, 0x89, 0x82, 0xb4, 0xdc, 0xe9, 0x26, 0x17, 0x18, 0x64, 0xc0, 0x25, 0xe8, - 0xbf, 0xf0, 0xcf, 0x61, 0x70, 0xa5, 0xa8, 0xe7, 0x0b, 0xd7, 0x03, 0x6c, 0x54, 0x5a, 0xea, 0x74, - 0x93, 0x88, 0x61, 0x2b, 0xa1, 0x91, 0x46, 0xe7, 0x61, 0x69, 0x18, 0x5a, 0xca, 0x94, 0xcb, 0x6a, - 0x4e, 0x1c, 0x93, 0xc4, 0x4e, 0x37, 0x19, 0x67, 0x98, 0x92, 0xe9, 0x79, 0x56, 0x0d, 0x5d, 0x84, - 0xc4, 0x70, 0xb6, 0xa6, 0xde, 0x54, 0xd7, 0x75, 0x35, 0x27, 0x8e, 0x4b, 0xa8, 0xd3, 0x4d, 0xce, - 0xb1, 0x7c, 0xcd, 0x7a, 0xcd, 0xaa, 0x12, 0xeb, 0x58, 0xfe, 0x6b, 0x99, 0xfc, 0x2d, 0x35, 0x27, - 0x4e, 0x84, 0xf9, 0xaf, 0x99, 0x76, 0xc3, 0xaa, 0x0d, 0xca, 0x9a, 0x2d, 0xec, 0x3d, 0x97, 0x23, - 0x4f, 0x9f, 0xcb, 0x91, 0xb7, 0xf6, 0xe5, 0xc8, 0xde, 0xbe, 0x2c, 0x3c, 0xd9, 0x97, 0x85, 0x6f, - 0xf7, 0x65, 0xe1, 0xd1, 0x0b, 0x39, 0xf2, 0xe4, 0x85, 0x1c, 0x79, 0xfa, 0x42, 0x8e, 0xdc, 0xfb, - 0xe5, 0x4d, 0xb7, 0x43, 0xff, 0x62, 0x40, 0x67, 0x76, 0x73, 0x92, 0x2e, 0x87, 0x4b, 0x3f, 0x07, - 0x00, 0x00, 0xff, 0xff, 0xc6, 0x9e, 0x45, 0x50, 0x4c, 0x10, 0x00, 0x00, +var fileDescriptor_6e82113c1a9a4b7c = []byte{ + // 1392 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x3f, 0x6c, 0xdb, 0xc6, + 0x17, 0x16, 0xe5, 0x7f, 0xf1, 0x49, 0xb6, 0x99, 0xb3, 0x7f, 0xb6, 0xcc, 0x5f, 0x4a, 0x32, 0x6c, + 0x50, 0x18, 0x41, 0x22, 0x27, 0x2e, 0x50, 0xa0, 0x09, 0x50, 0x44, 0xb4, 0x98, 0x44, 0x45, 0x20, + 0x09, 0x14, 0xa3, 0x20, 0xe9, 0x40, 0xd0, 0xe2, 0x45, 0x66, 0x2b, 0xf2, 0x54, 0xf1, 0xe4, 0xda, + 0xe8, 0xd2, 0xa1, 0x43, 0xa0, 0x16, 0x45, 0xc6, 0x02, 0x85, 0x80, 0x02, 0xcd, 0x50, 0x74, 0xea, + 0xd0, 0xb9, 0xb3, 0xd1, 0x29, 0x28, 0x32, 0x04, 0x1d, 0x94, 0xc6, 0x59, 0x0a, 0x0f, 0x1d, 0x3c, + 0x76, 0x2a, 0xc8, 0x3b, 0x5a, 0x94, 0x64, 0xd4, 0x11, 0xda, 0xc9, 0xe4, 0xbb, 0xf7, 0x7d, 0xef, + 0xdd, 0x77, 0xf7, 0x3d, 0x5a, 0xe0, 0x5c, 0x0d, 0xfb, 0x2e, 0xf6, 0xd7, 0xeb, 0x78, 0x67, 0x7d, + 0xe7, 0xea, 0x16, 0x22, 0xd6, 0xd5, 0xe0, 0x39, 0xdb, 0x6c, 0x61, 0x82, 0x21, 0xa4, 0xab, 0xd9, + 0x20, 0xc2, 0x56, 0x05, 0x91, 0x21, 0xb6, 0x2c, 0x1f, 0x1d, 0x43, 0x6a, 0xd8, 0xf1, 0x28, 0x46, + 0x58, 0xaa, 0xe3, 0x3a, 0x0e, 0x1f, 0xd7, 0x83, 0x27, 0x16, 0x5d, 0xa5, 0x28, 0x93, 0x2e, 0x30, + 0x5a, 0xba, 0x24, 0xd5, 0x31, 0xae, 0x37, 0xd0, 0x7a, 0xf8, 0xb6, 0xd5, 0x7e, 0xb8, 0x4e, 0x1c, + 0x17, 0xf9, 0xc4, 0x72, 0x9b, 0x11, 0x76, 0x38, 0xc1, 0xf2, 0xf6, 0xd8, 0x92, 0x38, 0xbc, 0x64, + 0xb7, 0x5b, 0x16, 0x71, 0x30, 0x6b, 0x46, 0xb9, 0x07, 0xd2, 0x06, 0xda, 0x25, 0xe5, 0x16, 0x6e, + 0x62, 0xdf, 0x6a, 0xc0, 0x25, 0x30, 0x45, 0x1c, 0xd2, 0x40, 0x19, 0x4e, 0xe6, 0xd6, 0x66, 0x75, + 0xfa, 0x02, 0x65, 0x90, 0xb2, 0x91, 0x5f, 0x6b, 0x39, 0xcd, 0x00, 0x9a, 0x49, 0x86, 0x6b, 0xf1, + 0xd0, 0xb5, 0x85, 0x3f, 0xbe, 0x95, 0xb8, 0x5f, 0x7f, 0xba, 0x3c, 0xb3, 0x89, 0x3d, 0x82, 0x3c, + 0xa2, 0x7c, 0x99, 0x04, 0x33, 0x79, 0xd4, 0xc4, 0xbe, 0x43, 0xa0, 0x06, 0x52, 0x4d, 0x56, 0xc0, + 0x74, 0xec, 0x90, 0x7a, 0x52, 0xbd, 0x70, 0xd0, 0x93, 0x40, 0x54, 0xb7, 0x90, 0x3f, 0xea, 0x49, + 0x70, 0xcf, 0x72, 0x1b, 0xd7, 0x94, 0x58, 0xaa, 0xa2, 0x83, 0xe8, 0xad, 0x60, 0xc3, 0x12, 0x98, + 0xb5, 0x29, 0x23, 0x6e, 0x85, 0x3d, 0xa4, 0xd5, 0xab, 0x7f, 0xf5, 0xa4, 0xcb, 0x75, 0x87, 0x6c, + 0xb7, 0xb7, 0xb2, 0x35, 0xec, 0x32, 0xdd, 0xd8, 0x9f, 0xcb, 0xbe, 0xfd, 0xd1, 0x3a, 0xd9, 0x6b, + 0x22, 0x3f, 0x9b, 0xab, 0xd5, 0x72, 0xb6, 0xdd, 0x42, 0xbe, 0xaf, 0xf7, 0x39, 0x60, 0x0d, 0x4c, + 0x5b, 0x2e, 0x6e, 0x7b, 0x24, 0x33, 0x21, 0x4f, 0xac, 0xa5, 0x36, 0x56, 0xb3, 0x4c, 0xf7, 0xe0, + 0xe8, 0xa2, 0xf3, 0xcc, 0x6e, 0x62, 0xc7, 0x53, 0xaf, 0xec, 0xf7, 0xa4, 0xc4, 0x0f, 0x2f, 0xa4, + 0xb5, 0xd7, 0x28, 0x16, 0x00, 0x7c, 0x9d, 0x51, 0x5f, 0x9b, 0x0c, 0x94, 0x51, 0x3e, 0x9f, 0x01, + 0x67, 0x8e, 0x45, 0x56, 0x4f, 0xd2, 0xe3, 0xfc, 0xa0, 0x1e, 0x87, 0x3d, 0x29, 0xe9, 0xd8, 0x47, + 0x3d, 0x69, 0x96, 0xaa, 0x32, 0x2c, 0xc6, 0x75, 0x30, 0x53, 0xa3, 0x52, 0x87, 0x52, 0xa4, 0x36, + 0x96, 0xb2, 0xf4, 0xa8, 0xb3, 0xd1, 0x51, 0x67, 0x73, 0xde, 0x9e, 0x9a, 0xfa, 0xa5, 0x7f, 0x26, + 0x7a, 0x84, 0x80, 0x55, 0x30, 0xed, 0x13, 0x8b, 0xb4, 0xfd, 0xcc, 0x84, 0xcc, 0xad, 0xcd, 0x6f, + 0x28, 0xd9, 0xd1, 0x7b, 0x9c, 0x8d, 0x7a, 0xa9, 0x84, 0x99, 0xaa, 0x70, 0xd4, 0x93, 0x96, 0x87, + 0x4e, 0x88, 0x92, 0x28, 0x3a, 0x63, 0x83, 0x4d, 0x00, 0x1f, 0x3a, 0x9e, 0xd5, 0x30, 0x89, 0xd5, + 0x68, 0xec, 0x99, 0x2d, 0xe4, 0xb7, 0x1b, 0x24, 0x33, 0x19, 0xf6, 0x27, 0x9d, 0x54, 0xc3, 0x08, + 0xf2, 0xf4, 0x30, 0x4d, 0x3d, 0x1f, 0x48, 0x7c, 0xd4, 0x93, 0x56, 0x69, 0x91, 0x51, 0x22, 0x45, + 0xe7, 0xc3, 0x60, 0x0c, 0x04, 0x3f, 0x00, 0x29, 0xbf, 0xbd, 0xe5, 0x3a, 0xc4, 0x0c, 0x4c, 0x91, + 0x99, 0x0a, 0x4b, 0x09, 0x23, 0x52, 0x18, 0x91, 0x63, 0x54, 0x91, 0x55, 0x61, 0x97, 0x2d, 0x06, + 0x56, 0x1e, 0xbf, 0x90, 0x38, 0x1d, 0xd0, 0x48, 0x00, 0x80, 0x0e, 0xe0, 0xd9, 0x65, 0x31, 0x91, + 0x67, 0xd3, 0x0a, 0xd3, 0xa7, 0x56, 0x78, 0x93, 0x55, 0x58, 0xa1, 0x15, 0x86, 0x19, 0x68, 0x99, + 0x79, 0x16, 0xd6, 0x3c, 0x3b, 0x2c, 0xf5, 0x88, 0x03, 0x73, 0x04, 0x13, 0xab, 0x61, 0xb2, 0x85, + 0xcc, 0xcc, 0x69, 0x57, 0xf2, 0x36, 0xab, 0xb3, 0x44, 0xeb, 0x0c, 0xa0, 0x95, 0xb1, 0xae, 0x6a, + 0x3a, 0xc4, 0x46, 0x6e, 0x6d, 0x80, 0xb3, 0x3b, 0x98, 0x38, 0x5e, 0x3d, 0x38, 0xde, 0x16, 0x13, + 0xf6, 0xcc, 0xa9, 0xdb, 0xbe, 0xc0, 0xda, 0xc9, 0xd0, 0x76, 0x46, 0x28, 0xe8, 0xbe, 0x17, 0x68, + 0xbc, 0x12, 0x84, 0xc3, 0x8d, 0x3f, 0x04, 0x2c, 0xd4, 0x97, 0x78, 0xf6, 0xd4, 0x5a, 0x0a, 0xab, + 0xb5, 0x3c, 0x50, 0x6b, 0x50, 0xe1, 0x39, 0x1a, 0x65, 0x02, 0x33, 0x1b, 0xee, 0x27, 0x41, 0x2a, + 0x7e, 0x7d, 0x6e, 0x80, 0x89, 0x3d, 0xe4, 0xd3, 0x61, 0xa7, 0x66, 0x03, 0xd6, 0xdf, 0x7a, 0xd2, + 0x5b, 0xaf, 0x21, 0x5c, 0xc1, 0x23, 0x7a, 0x00, 0x85, 0xb7, 0xc1, 0x8c, 0xb5, 0xe5, 0x13, 0xcb, + 0x61, 0x63, 0x71, 0x6c, 0x96, 0x08, 0x0e, 0xdf, 0x03, 0x49, 0x0f, 0x87, 0x86, 0x1c, 0x9f, 0x24, + 0xe9, 0x61, 0x58, 0x07, 0x69, 0x0f, 0x9b, 0x9f, 0x38, 0x64, 0xdb, 0xdc, 0x41, 0x04, 0x87, 0xb6, + 0x9b, 0x55, 0xb5, 0xf1, 0x98, 0x8e, 0x7a, 0xd2, 0x22, 0x15, 0x35, 0xce, 0xa5, 0xe8, 0xc0, 0xc3, + 0xf7, 0x1c, 0xb2, 0x5d, 0x45, 0x04, 0x33, 0x29, 0x9f, 0x71, 0x60, 0xb2, 0x8a, 0x09, 0xfa, 0xaf, + 0xa6, 0xfb, 0x2d, 0x30, 0xb5, 0x83, 0x09, 0xfa, 0x17, 0x93, 0x9d, 0xe2, 0xe1, 0x3b, 0x60, 0x1a, + 0xd3, 0xef, 0x14, 0x1d, 0x6e, 0xe2, 0x49, 0x83, 0x27, 0xe8, 0xbc, 0x14, 0x66, 0xe9, 0x2c, 0x9b, + 0x6d, 0xeb, 0xe7, 0x24, 0x98, 0x63, 0x4e, 0x28, 0x5b, 0x2d, 0xcb, 0xf5, 0xe1, 0x37, 0x1c, 0x48, + 0xb9, 0x8e, 0x77, 0x6c, 0x4c, 0xee, 0x34, 0x63, 0x9a, 0x81, 0xe4, 0x87, 0x3d, 0xe9, 0x7f, 0x31, + 0xd4, 0x25, 0xec, 0x3a, 0x04, 0xb9, 0x4d, 0xb2, 0xd7, 0x97, 0x22, 0xb6, 0x3c, 0x9e, 0x5f, 0x81, + 0xeb, 0x78, 0x91, 0x5b, 0xbf, 0xe2, 0x00, 0x74, 0xad, 0xdd, 0x88, 0xc8, 0x6c, 0xa2, 0x96, 0x83, + 0x6d, 0xf6, 0x4d, 0x58, 0x1d, 0xf1, 0x50, 0x9e, 0x7d, 0xfe, 0xe9, 0xbd, 0x38, 0xec, 0x49, 0xe7, + 0x46, 0xc1, 0x03, 0xbd, 0xb2, 0x69, 0x3c, 0x9a, 0xa5, 0x7c, 0x1d, 0xb8, 0x8c, 0x77, 0xad, 0xdd, + 0x48, 0x2e, 0x1a, 0xfe, 0x82, 0x03, 0xe9, 0x6a, 0x68, 0x3d, 0xa6, 0xdf, 0xa7, 0x80, 0x59, 0x31, + 0xea, 0x8d, 0x3b, 0xad, 0xb7, 0xeb, 0xac, 0xb7, 0x95, 0x01, 0xdc, 0x40, 0x5b, 0x4b, 0x03, 0xce, + 0x8f, 0x77, 0x94, 0xa6, 0x31, 0xd6, 0xcd, 0x93, 0xc8, 0xf0, 0xac, 0x99, 0x07, 0x60, 0xfa, 0xe3, + 0x36, 0x6e, 0xb5, 0xdd, 0xb0, 0x8b, 0xb4, 0xaa, 0x8e, 0x61, 0x8f, 0x3c, 0xaa, 0x1d, 0xf6, 0x24, + 0x9e, 0xe2, 0xfb, 0xdd, 0xe8, 0x8c, 0x11, 0xd6, 0xc0, 0x2c, 0xd9, 0x6e, 0x21, 0x7f, 0x1b, 0x37, + 0x6c, 0x76, 0x8b, 0xb5, 0xb1, 0xe9, 0x17, 0x8f, 0x29, 0x62, 0x15, 0xfa, 0xbc, 0xd0, 0x00, 0x93, + 0xa1, 0xbb, 0x27, 0x42, 0xfe, 0x1b, 0x63, 0xf3, 0xcf, 0x07, 0xe8, 0x18, 0x75, 0xc8, 0x76, 0xf1, + 0x4f, 0x0e, 0x80, 0xbe, 0x25, 0xe0, 0x25, 0xb0, 0x52, 0x2d, 0x19, 0x9a, 0x59, 0x2a, 0x1b, 0x85, + 0x52, 0xd1, 0xbc, 0x5b, 0xac, 0x94, 0xb5, 0xcd, 0xc2, 0xcd, 0x82, 0x96, 0xe7, 0x13, 0xc2, 0x42, + 0xa7, 0x2b, 0xa7, 0x68, 0xa2, 0x16, 0x50, 0x40, 0x05, 0x2c, 0xc4, 0xb3, 0xef, 0x6b, 0x15, 0x9e, + 0x13, 0xe6, 0x3a, 0x5d, 0x79, 0x96, 0x66, 0xdd, 0x47, 0x3e, 0xbc, 0x08, 0x16, 0xe3, 0x39, 0x39, + 0xb5, 0x62, 0xe4, 0x0a, 0x45, 0x3e, 0x29, 0x9c, 0xed, 0x74, 0xe5, 0x39, 0x9a, 0x97, 0x63, 0x83, + 0x50, 0x06, 0xf3, 0xf1, 0xdc, 0x62, 0x89, 0x9f, 0x10, 0xd2, 0x9d, 0xae, 0x7c, 0x86, 0xa6, 0x15, + 0x31, 0xdc, 0x00, 0x99, 0xc1, 0x0c, 0xf3, 0x5e, 0xc1, 0xb8, 0x6d, 0x56, 0x35, 0xa3, 0xc4, 0x4f, + 0x0a, 0x4b, 0x9d, 0xae, 0xcc, 0x47, 0xb9, 0xd1, 0xd4, 0x12, 0xd2, 0x8f, 0xbe, 0x13, 0x13, 0xdf, + 0x3f, 0x11, 0x13, 0x3f, 0x3e, 0x11, 0x13, 0x17, 0x9f, 0x25, 0xc1, 0xfc, 0xe0, 0x3f, 0x38, 0x30, + 0x0b, 0xfe, 0x5f, 0xd6, 0x4b, 0xe5, 0x52, 0x25, 0x77, 0xc7, 0xac, 0x18, 0x39, 0xe3, 0x6e, 0x65, + 0x68, 0xe3, 0xe1, 0x96, 0x68, 0x72, 0xd1, 0x69, 0xc0, 0xeb, 0x40, 0x1c, 0xce, 0xcf, 0x6b, 0xe5, + 0x52, 0xa5, 0x60, 0x98, 0x65, 0x4d, 0x2f, 0x94, 0xf2, 0x3c, 0x27, 0xac, 0x74, 0xba, 0xf2, 0x22, + 0x85, 0x0c, 0xb8, 0x04, 0xbe, 0x0b, 0xde, 0x18, 0x06, 0x57, 0x4b, 0x46, 0xa1, 0x78, 0x2b, 0xc2, + 0x26, 0x85, 0xe5, 0x4e, 0x57, 0x86, 0x14, 0x5b, 0x8d, 0x5d, 0x69, 0x78, 0x09, 0x2c, 0x0f, 0x43, + 0xcb, 0xb9, 0x4a, 0x45, 0xcb, 0xf3, 0x13, 0x02, 0xdf, 0xe9, 0xca, 0x69, 0x8a, 0x29, 0x5b, 0xbe, + 0x8f, 0x6c, 0x78, 0x05, 0x64, 0x86, 0xb3, 0x75, 0xed, 0x7d, 0x6d, 0xd3, 0xd0, 0xf2, 0xfc, 0xa4, + 0x00, 0x3b, 0x5d, 0x79, 0x9e, 0xe6, 0xeb, 0xe8, 0x43, 0x54, 0x23, 0xe8, 0x44, 0xfe, 0x9b, 0xb9, + 0xc2, 0x1d, 0x2d, 0xcf, 0x4f, 0xc5, 0xf9, 0x6f, 0x5a, 0x4e, 0x03, 0xd9, 0x83, 0xb2, 0xaa, 0xc5, + 0xfd, 0x97, 0x62, 0xe2, 0xf9, 0x4b, 0x31, 0xf1, 0xd9, 0x81, 0x98, 0xd8, 0x3f, 0x10, 0xb9, 0xa7, + 0x07, 0x22, 0xf7, 0xfb, 0x81, 0xc8, 0x3d, 0x7e, 0x25, 0x26, 0x9e, 0xbe, 0x12, 0x13, 0xcf, 0x5f, + 0x89, 0x89, 0x07, 0xff, 0x3c, 0xe9, 0x76, 0xc3, 0xdf, 0x5a, 0xe1, 0x9d, 0xdd, 0x9a, 0x0e, 0x87, + 0xc3, 0xdb, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0xc9, 0x24, 0xef, 0x4e, 0x86, 0x0d, 0x00, 0x00, } -func (this *MsgSubmitProposal) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*MsgSubmitProposal) - if !ok { - that2, ok := that.(MsgSubmitProposal) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if !this.Content.Equal(that1.Content) { - return false - } - if len(this.InitialDeposit) != len(that1.InitialDeposit) { - return false - } - for i := range this.InitialDeposit { - if !this.InitialDeposit[i].Equal(&that1.InitialDeposit[i]) { - return false - } - } - if !bytes.Equal(this.Proposer, that1.Proposer) { - return false - } - return true -} -func (this *MsgVote) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*MsgVote) - if !ok { - that2, ok := that.(MsgVote) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if this.ProposalID != that1.ProposalID { - return false - } - if !bytes.Equal(this.Voter, that1.Voter) { - return false - } - if this.Option != that1.Option { - return false - } - return true -} -func (this *MsgDeposit) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*MsgDeposit) - if !ok { - that2, ok := that.(MsgDeposit) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if this.ProposalID != that1.ProposalID { - return false - } - if !bytes.Equal(this.Depositor, that1.Depositor) { - return false - } - if len(this.Amount) != len(that1.Amount) { - return false - } - for i := range this.Amount { - if !this.Amount[i].Equal(&that1.Amount[i]) { - return false - } - } - return true -} func (this *TextProposal) Equal(that interface{}) bool { if that == nil { return this == nil @@ -942,151 +716,6 @@ func (this *Vote) Equal(that interface{}) bool { } return true } -func (m *MsgSubmitProposal) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *MsgSubmitProposal) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgSubmitProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Proposer) > 0 { - i -= len(m.Proposer) - copy(dAtA[i:], m.Proposer) - i = encodeVarintGov(dAtA, i, uint64(len(m.Proposer))) - i-- - dAtA[i] = 0x1a - } - if len(m.InitialDeposit) > 0 { - for iNdEx := len(m.InitialDeposit) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.InitialDeposit[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGov(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - } - if m.Content != nil { - { - size, err := m.Content.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGov(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *MsgVote) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *MsgVote) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgVote) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.Option != 0 { - i = encodeVarintGov(dAtA, i, uint64(m.Option)) - i-- - dAtA[i] = 0x18 - } - if len(m.Voter) > 0 { - i -= len(m.Voter) - copy(dAtA[i:], m.Voter) - i = encodeVarintGov(dAtA, i, uint64(len(m.Voter))) - i-- - dAtA[i] = 0x12 - } - if m.ProposalID != 0 { - i = encodeVarintGov(dAtA, i, uint64(m.ProposalID)) - i-- - dAtA[i] = 0x8 - } - return len(dAtA) - i, nil -} - -func (m *MsgDeposit) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *MsgDeposit) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgDeposit) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Amount) > 0 { - for iNdEx := len(m.Amount) - 1; iNdEx >= 0; iNdEx-- { - { - size, err := m.Amount[iNdEx].MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintGov(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - } - } - if len(m.Depositor) > 0 { - i -= len(m.Depositor) - copy(dAtA[i:], m.Depositor) - i = encodeVarintGov(dAtA, i, uint64(len(m.Depositor))) - i-- - dAtA[i] = 0x12 - } - if m.ProposalID != 0 { - i = encodeVarintGov(dAtA, i, uint64(m.ProposalID)) - i-- - dAtA[i] = 0x8 - } - return len(dAtA) - i, nil -} - func (m *TextProposal) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -1193,21 +822,21 @@ func (m *Proposal) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n2, err2 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.VotingEndTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.VotingEndTime):]) + n1, err1 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.VotingEndTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.VotingEndTime):]) + if err1 != nil { + return 0, err1 + } + i -= n1 + i = encodeVarintGov(dAtA, i, uint64(n1)) + i-- + dAtA[i] = 0x4a + n2, err2 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.VotingStartTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.VotingStartTime):]) if err2 != nil { return 0, err2 } i -= n2 i = encodeVarintGov(dAtA, i, uint64(n2)) i-- - dAtA[i] = 0x4a - n3, err3 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.VotingStartTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.VotingStartTime):]) - if err3 != nil { - return 0, err3 - } - i -= n3 - i = encodeVarintGov(dAtA, i, uint64(n3)) - i-- dAtA[i] = 0x42 if len(m.TotalDeposit) > 0 { for iNdEx := len(m.TotalDeposit) - 1; iNdEx >= 0; iNdEx-- { @@ -1223,21 +852,21 @@ func (m *Proposal) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x3a } } - n4, err4 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.DepositEndTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.DepositEndTime):]) + n3, err3 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.DepositEndTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.DepositEndTime):]) + if err3 != nil { + return 0, err3 + } + i -= n3 + i = encodeVarintGov(dAtA, i, uint64(n3)) + i-- + dAtA[i] = 0x32 + n4, err4 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.SubmitTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.SubmitTime):]) if err4 != nil { return 0, err4 } i -= n4 i = encodeVarintGov(dAtA, i, uint64(n4)) i-- - dAtA[i] = 0x32 - n5, err5 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.SubmitTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.SubmitTime):]) - if err5 != nil { - return 0, err5 - } - i -= n5 - i = encodeVarintGov(dAtA, i, uint64(n5)) - i-- dAtA[i] = 0x2a { size, err := m.FinalTallyResult.MarshalToSizedBuffer(dAtA[:i]) @@ -1397,12 +1026,12 @@ func (m *DepositParams) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n8, err8 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.MaxDepositPeriod, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.MaxDepositPeriod):]) - if err8 != nil { - return 0, err8 + n7, err7 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.MaxDepositPeriod, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.MaxDepositPeriod):]) + if err7 != nil { + return 0, err7 } - i -= n8 - i = encodeVarintGov(dAtA, i, uint64(n8)) + i -= n7 + i = encodeVarintGov(dAtA, i, uint64(n7)) i-- dAtA[i] = 0x12 if len(m.MinDeposit) > 0 { @@ -1442,12 +1071,12 @@ func (m *VotingParams) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n9, err9 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.VotingPeriod, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.VotingPeriod):]) - if err9 != nil { - return 0, err9 + n8, err8 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.VotingPeriod, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.VotingPeriod):]) + if err8 != nil { + return 0, err8 } - i -= n9 - i = encodeVarintGov(dAtA, i, uint64(n9)) + i -= n8 + i = encodeVarintGov(dAtA, i, uint64(n8)) i-- dAtA[i] = 0xa return len(dAtA) - i, nil @@ -1517,70 +1146,6 @@ func encodeVarintGov(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) return base } -func (m *MsgSubmitProposal) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.Content != nil { - l = m.Content.Size() - n += 1 + l + sovGov(uint64(l)) - } - if len(m.InitialDeposit) > 0 { - for _, e := range m.InitialDeposit { - l = e.Size() - n += 1 + l + sovGov(uint64(l)) - } - } - l = len(m.Proposer) - if l > 0 { - n += 1 + l + sovGov(uint64(l)) - } - return n -} - -func (m *MsgVote) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.ProposalID != 0 { - n += 1 + sovGov(uint64(m.ProposalID)) - } - l = len(m.Voter) - if l > 0 { - n += 1 + l + sovGov(uint64(l)) - } - if m.Option != 0 { - n += 1 + sovGov(uint64(m.Option)) - } - return n -} - -func (m *MsgDeposit) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.ProposalID != 0 { - n += 1 + sovGov(uint64(m.ProposalID)) - } - l = len(m.Depositor) - if l > 0 { - n += 1 + l + sovGov(uint64(l)) - } - if len(m.Amount) > 0 { - for _, e := range m.Amount { - l = e.Size() - n += 1 + l + sovGov(uint64(l)) - } - } - return n -} - func (m *TextProposal) Size() (n int) { if m == nil { return 0 @@ -1740,428 +1305,6 @@ func sovGov(x uint64) (n int) { func sozGov(x uint64) (n int) { return sovGov(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } -func (m *MsgSubmitProposal) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGov - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgSubmitProposal: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgSubmitProposal: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Content", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGov - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGov - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGov - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if m.Content == nil { - m.Content = &types.Any{} - } - if err := m.Content.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field InitialDeposit", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGov - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGov - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGov - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.InitialDeposit = append(m.InitialDeposit, types1.Coin{}) - if err := m.InitialDeposit[len(m.InitialDeposit)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Proposer", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGov - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthGov - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthGov - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Proposer = append(m.Proposer[:0], dAtA[iNdEx:postIndex]...) - if m.Proposer == nil { - m.Proposer = []byte{} - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGov(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthGov - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthGov - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *MsgVote) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGov - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgVote: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgVote: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ProposalID", wireType) - } - m.ProposalID = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGov - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.ProposalID |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Voter", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGov - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthGov - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthGov - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Voter = append(m.Voter[:0], dAtA[iNdEx:postIndex]...) - if m.Voter == nil { - m.Voter = []byte{} - } - iNdEx = postIndex - case 3: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field Option", wireType) - } - m.Option = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGov - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.Option |= VoteOption(b&0x7F) << shift - if b < 0x80 { - break - } - } - default: - iNdEx = preIndex - skippy, err := skipGov(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthGov - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthGov - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *MsgDeposit) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGov - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgDeposit: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgDeposit: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ProposalID", wireType) - } - m.ProposalID = 0 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGov - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - m.ProposalID |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Depositor", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGov - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthGov - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthGov - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Depositor = append(m.Depositor[:0], dAtA[iNdEx:postIndex]...) - if m.Depositor == nil { - m.Depositor = []byte{} - } - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowGov - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthGov - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthGov - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Amount = append(m.Amount, types1.Coin{}) - if err := m.Amount[len(m.Amount)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipGov(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthGov - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthGov - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} func (m *TextProposal) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -2390,7 +1533,7 @@ func (m *Deposit) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Amount = append(m.Amount, types1.Coin{}) + m.Amount = append(m.Amount, types.Coin{}) if err := m.Amount[len(m.Amount)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } @@ -2497,7 +1640,7 @@ func (m *Proposal) Unmarshal(dAtA []byte) error { return io.ErrUnexpectedEOF } if m.Content == nil { - m.Content = &types.Any{} + m.Content = &types1.Any{} } if err := m.Content.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err @@ -2650,7 +1793,7 @@ func (m *Proposal) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.TotalDeposit = append(m.TotalDeposit, types1.Coin{}) + m.TotalDeposit = append(m.TotalDeposit, types.Coin{}) if err := m.TotalDeposit[len(m.TotalDeposit)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } @@ -3117,7 +2260,7 @@ func (m *DepositParams) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.MinDeposit = append(m.MinDeposit, types1.Coin{}) + m.MinDeposit = append(m.MinDeposit, types.Coin{}) if err := m.MinDeposit[len(m.MinDeposit)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } diff --git a/x/gov/types/query.pb.go b/x/gov/types/query.pb.go index 4744ee3efd..aab46225a3 100644 --- a/x/gov/types/query.pb.go +++ b/x/gov/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/gov/query.proto +// source: cosmos/gov/v1beta1/query.proto package types @@ -40,7 +40,7 @@ func (m *QueryProposalRequest) Reset() { *m = QueryProposalRequest{} } func (m *QueryProposalRequest) String() string { return proto.CompactTextString(m) } func (*QueryProposalRequest) ProtoMessage() {} func (*QueryProposalRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6efb1c1bc2595eda, []int{0} + return fileDescriptor_e35c0d133e91c0a2, []int{0} } func (m *QueryProposalRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -85,7 +85,7 @@ func (m *QueryProposalResponse) Reset() { *m = QueryProposalResponse{} } func (m *QueryProposalResponse) String() string { return proto.CompactTextString(m) } func (*QueryProposalResponse) ProtoMessage() {} func (*QueryProposalResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6efb1c1bc2595eda, []int{1} + return fileDescriptor_e35c0d133e91c0a2, []int{1} } func (m *QueryProposalResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -124,7 +124,7 @@ func (m *QueryProposalResponse) GetProposal() Proposal { // QueryProposalsRequest is the request type for the Query/Proposals RPC method. type QueryProposalsRequest struct { // proposal_status defines the status of the proposals. - ProposalStatus ProposalStatus `protobuf:"varint,1,opt,name=proposal_status,json=proposalStatus,proto3,enum=cosmos.gov.ProposalStatus" json:"proposal_status,omitempty"` + ProposalStatus ProposalStatus `protobuf:"varint,1,opt,name=proposal_status,json=proposalStatus,proto3,enum=cosmos.gov.v1beta1.ProposalStatus" json:"proposal_status,omitempty"` // voter defines the voter address for the proposals. Voter github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,2,opt,name=voter,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"voter,omitempty"` // depositor defines the deposit addresses from the proposals. @@ -137,7 +137,7 @@ func (m *QueryProposalsRequest) Reset() { *m = QueryProposalsRequest{} } func (m *QueryProposalsRequest) String() string { return proto.CompactTextString(m) } func (*QueryProposalsRequest) ProtoMessage() {} func (*QueryProposalsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6efb1c1bc2595eda, []int{2} + return fileDescriptor_e35c0d133e91c0a2, []int{2} } func (m *QueryProposalsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -205,7 +205,7 @@ func (m *QueryProposalsResponse) Reset() { *m = QueryProposalsResponse{} func (m *QueryProposalsResponse) String() string { return proto.CompactTextString(m) } func (*QueryProposalsResponse) ProtoMessage() {} func (*QueryProposalsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6efb1c1bc2595eda, []int{3} + return fileDescriptor_e35c0d133e91c0a2, []int{3} } func (m *QueryProposalsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -260,7 +260,7 @@ func (m *QueryVoteRequest) Reset() { *m = QueryVoteRequest{} } func (m *QueryVoteRequest) String() string { return proto.CompactTextString(m) } func (*QueryVoteRequest) ProtoMessage() {} func (*QueryVoteRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6efb1c1bc2595eda, []int{4} + return fileDescriptor_e35c0d133e91c0a2, []int{4} } func (m *QueryVoteRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -313,7 +313,7 @@ func (m *QueryVoteResponse) Reset() { *m = QueryVoteResponse{} } func (m *QueryVoteResponse) String() string { return proto.CompactTextString(m) } func (*QueryVoteResponse) ProtoMessage() {} func (*QueryVoteResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6efb1c1bc2595eda, []int{5} + return fileDescriptor_e35c0d133e91c0a2, []int{5} } func (m *QueryVoteResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -361,7 +361,7 @@ func (m *QueryVotesRequest) Reset() { *m = QueryVotesRequest{} } func (m *QueryVotesRequest) String() string { return proto.CompactTextString(m) } func (*QueryVotesRequest) ProtoMessage() {} func (*QueryVotesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6efb1c1bc2595eda, []int{6} + return fileDescriptor_e35c0d133e91c0a2, []int{6} } func (m *QueryVotesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -416,7 +416,7 @@ func (m *QueryVotesResponse) Reset() { *m = QueryVotesResponse{} } func (m *QueryVotesResponse) String() string { return proto.CompactTextString(m) } func (*QueryVotesResponse) ProtoMessage() {} func (*QueryVotesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6efb1c1bc2595eda, []int{7} + return fileDescriptor_e35c0d133e91c0a2, []int{7} } func (m *QueryVotesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -469,7 +469,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6efb1c1bc2595eda, []int{8} + return fileDescriptor_e35c0d133e91c0a2, []int{8} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -519,7 +519,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6efb1c1bc2595eda, []int{9} + return fileDescriptor_e35c0d133e91c0a2, []int{9} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -581,7 +581,7 @@ func (m *QueryDepositRequest) Reset() { *m = QueryDepositRequest{} } func (m *QueryDepositRequest) String() string { return proto.CompactTextString(m) } func (*QueryDepositRequest) ProtoMessage() {} func (*QueryDepositRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6efb1c1bc2595eda, []int{10} + return fileDescriptor_e35c0d133e91c0a2, []int{10} } func (m *QueryDepositRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -634,7 +634,7 @@ func (m *QueryDepositResponse) Reset() { *m = QueryDepositResponse{} } func (m *QueryDepositResponse) String() string { return proto.CompactTextString(m) } func (*QueryDepositResponse) ProtoMessage() {} func (*QueryDepositResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6efb1c1bc2595eda, []int{11} + return fileDescriptor_e35c0d133e91c0a2, []int{11} } func (m *QueryDepositResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -682,7 +682,7 @@ func (m *QueryDepositsRequest) Reset() { *m = QueryDepositsRequest{} } func (m *QueryDepositsRequest) String() string { return proto.CompactTextString(m) } func (*QueryDepositsRequest) ProtoMessage() {} func (*QueryDepositsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6efb1c1bc2595eda, []int{12} + return fileDescriptor_e35c0d133e91c0a2, []int{12} } func (m *QueryDepositsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -736,7 +736,7 @@ func (m *QueryDepositsResponse) Reset() { *m = QueryDepositsResponse{} } func (m *QueryDepositsResponse) String() string { return proto.CompactTextString(m) } func (*QueryDepositsResponse) ProtoMessage() {} func (*QueryDepositsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6efb1c1bc2595eda, []int{13} + return fileDescriptor_e35c0d133e91c0a2, []int{13} } func (m *QueryDepositsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -789,7 +789,7 @@ func (m *QueryTallyResultRequest) Reset() { *m = QueryTallyResultRequest func (m *QueryTallyResultRequest) String() string { return proto.CompactTextString(m) } func (*QueryTallyResultRequest) ProtoMessage() {} func (*QueryTallyResultRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6efb1c1bc2595eda, []int{14} + return fileDescriptor_e35c0d133e91c0a2, []int{14} } func (m *QueryTallyResultRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -835,7 +835,7 @@ func (m *QueryTallyResultResponse) Reset() { *m = QueryTallyResultRespon func (m *QueryTallyResultResponse) String() string { return proto.CompactTextString(m) } func (*QueryTallyResultResponse) ProtoMessage() {} func (*QueryTallyResultResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6efb1c1bc2595eda, []int{15} + return fileDescriptor_e35c0d133e91c0a2, []int{15} } func (m *QueryTallyResultResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -872,79 +872,81 @@ func (m *QueryTallyResultResponse) GetTally() TallyResult { } func init() { - proto.RegisterType((*QueryProposalRequest)(nil), "cosmos.gov.QueryProposalRequest") - proto.RegisterType((*QueryProposalResponse)(nil), "cosmos.gov.QueryProposalResponse") - proto.RegisterType((*QueryProposalsRequest)(nil), "cosmos.gov.QueryProposalsRequest") - proto.RegisterType((*QueryProposalsResponse)(nil), "cosmos.gov.QueryProposalsResponse") - proto.RegisterType((*QueryVoteRequest)(nil), "cosmos.gov.QueryVoteRequest") - proto.RegisterType((*QueryVoteResponse)(nil), "cosmos.gov.QueryVoteResponse") - proto.RegisterType((*QueryVotesRequest)(nil), "cosmos.gov.QueryVotesRequest") - proto.RegisterType((*QueryVotesResponse)(nil), "cosmos.gov.QueryVotesResponse") - proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.gov.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.gov.QueryParamsResponse") - proto.RegisterType((*QueryDepositRequest)(nil), "cosmos.gov.QueryDepositRequest") - proto.RegisterType((*QueryDepositResponse)(nil), "cosmos.gov.QueryDepositResponse") - proto.RegisterType((*QueryDepositsRequest)(nil), "cosmos.gov.QueryDepositsRequest") - proto.RegisterType((*QueryDepositsResponse)(nil), "cosmos.gov.QueryDepositsResponse") - proto.RegisterType((*QueryTallyResultRequest)(nil), "cosmos.gov.QueryTallyResultRequest") - proto.RegisterType((*QueryTallyResultResponse)(nil), "cosmos.gov.QueryTallyResultResponse") + proto.RegisterType((*QueryProposalRequest)(nil), "cosmos.gov.v1beta1.QueryProposalRequest") + proto.RegisterType((*QueryProposalResponse)(nil), "cosmos.gov.v1beta1.QueryProposalResponse") + proto.RegisterType((*QueryProposalsRequest)(nil), "cosmos.gov.v1beta1.QueryProposalsRequest") + proto.RegisterType((*QueryProposalsResponse)(nil), "cosmos.gov.v1beta1.QueryProposalsResponse") + proto.RegisterType((*QueryVoteRequest)(nil), "cosmos.gov.v1beta1.QueryVoteRequest") + proto.RegisterType((*QueryVoteResponse)(nil), "cosmos.gov.v1beta1.QueryVoteResponse") + proto.RegisterType((*QueryVotesRequest)(nil), "cosmos.gov.v1beta1.QueryVotesRequest") + proto.RegisterType((*QueryVotesResponse)(nil), "cosmos.gov.v1beta1.QueryVotesResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.gov.v1beta1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.gov.v1beta1.QueryParamsResponse") + proto.RegisterType((*QueryDepositRequest)(nil), "cosmos.gov.v1beta1.QueryDepositRequest") + proto.RegisterType((*QueryDepositResponse)(nil), "cosmos.gov.v1beta1.QueryDepositResponse") + proto.RegisterType((*QueryDepositsRequest)(nil), "cosmos.gov.v1beta1.QueryDepositsRequest") + proto.RegisterType((*QueryDepositsResponse)(nil), "cosmos.gov.v1beta1.QueryDepositsResponse") + proto.RegisterType((*QueryTallyResultRequest)(nil), "cosmos.gov.v1beta1.QueryTallyResultRequest") + proto.RegisterType((*QueryTallyResultResponse)(nil), "cosmos.gov.v1beta1.QueryTallyResultResponse") } -func init() { proto.RegisterFile("cosmos/gov/query.proto", fileDescriptor_6efb1c1bc2595eda) } +func init() { proto.RegisterFile("cosmos/gov/v1beta1/query.proto", fileDescriptor_e35c0d133e91c0a2) } -var fileDescriptor_6efb1c1bc2595eda = []byte{ - // 808 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x56, 0xdf, 0x4f, 0xd3, 0x50, - 0x14, 0x5e, 0xc7, 0x06, 0xdb, 0x19, 0x20, 0x5e, 0x10, 0x66, 0x23, 0xdb, 0xac, 0x3e, 0x10, 0x23, - 0x5b, 0x84, 0xa0, 0xc2, 0x8b, 0x32, 0xfc, 0x19, 0x12, 0x81, 0x49, 0x7c, 0xe0, 0x85, 0x94, 0xb5, - 0xa9, 0x8d, 0x63, 0xb7, 0xf4, 0xde, 0x2d, 0x2e, 0x31, 0xbe, 0x9a, 0x98, 0x68, 0xfc, 0x57, 0xfc, - 0x2f, 0x78, 0xe4, 0xd1, 0x27, 0x62, 0xc0, 0xbf, 0xc2, 0x27, 0xd3, 0xfb, 0xa3, 0x6b, 0xd7, 0x75, - 0x4e, 0x31, 0x3e, 0x31, 0xce, 0xfd, 0xce, 0x77, 0xbf, 0xf3, 0x9d, 0xd3, 0xd3, 0xc2, 0x6c, 0x1d, - 0x93, 0x43, 0x4c, 0x2a, 0x16, 0x6e, 0x57, 0x8e, 0x5a, 0xa6, 0xdb, 0x29, 0x3b, 0x2e, 0xa6, 0x18, - 0x01, 0x8f, 0x97, 0x2d, 0xdc, 0x56, 0xe7, 0x05, 0x86, 0x9d, 0x57, 0x1c, 0xdd, 0xb2, 0x9b, 0x3a, - 0xb5, 0x71, 0x93, 0x43, 0xd5, 0x19, 0x0b, 0x5b, 0x98, 0xfd, 0xac, 0x78, 0xbf, 0x64, 0x34, 0x40, - 0x6c, 0xe1, 0x36, 0x8f, 0x6a, 0xf7, 0x60, 0x66, 0xc7, 0x63, 0xd9, 0x76, 0xb1, 0x83, 0x89, 0xde, - 0xa8, 0x99, 0x47, 0x2d, 0x93, 0x50, 0x54, 0x84, 0x9c, 0x23, 0x42, 0xfb, 0xb6, 0x91, 0x57, 0x4a, - 0xca, 0x42, 0xaa, 0x06, 0x32, 0xf4, 0xdc, 0xd0, 0xb6, 0xe0, 0x4a, 0x4f, 0x22, 0x71, 0x70, 0x93, - 0x98, 0xe8, 0x2e, 0x64, 0x24, 0x8c, 0xa5, 0xe5, 0x96, 0x66, 0xca, 0x5d, 0xed, 0x65, 0x89, 0xaf, - 0xa6, 0x8e, 0x4f, 0x8b, 0x89, 0x9a, 0x8f, 0xd5, 0xbe, 0x26, 0x7b, 0x18, 0x89, 0xd4, 0xb2, 0x01, - 0x97, 0x7c, 0x2d, 0x84, 0xea, 0xb4, 0x45, 0x18, 0xf1, 0xe4, 0x92, 0xda, 0x8f, 0xf8, 0x25, 0x43, - 0xd4, 0x26, 0x9d, 0xd0, 0xff, 0xe8, 0x29, 0xa4, 0xdb, 0x98, 0x9a, 0x6e, 0x3e, 0x59, 0x52, 0x16, - 0xc6, 0xab, 0x77, 0x7e, 0x9e, 0x16, 0x17, 0x2d, 0x9b, 0xbe, 0x6e, 0x1d, 0x94, 0xeb, 0xf8, 0xb0, - 0x22, 0xcc, 0xe1, 0x7f, 0x16, 0x89, 0xf1, 0xa6, 0x42, 0x3b, 0x8e, 0x49, 0xca, 0xeb, 0xf5, 0xfa, - 0xba, 0x61, 0xb8, 0x26, 0x21, 0x35, 0x9e, 0x8f, 0xb6, 0x20, 0x6b, 0x98, 0x0e, 0x26, 0x36, 0xc5, - 0x6e, 0x7e, 0xe4, 0x6f, 0xc9, 0xba, 0x1c, 0x68, 0x15, 0xa0, 0xdb, 0xc2, 0x7c, 0x8a, 0x59, 0x76, - 0x55, 0x56, 0xc6, 0x47, 0x60, 0x5b, 0xb7, 0x4c, 0xe1, 0x46, 0x2d, 0x00, 0xd6, 0x3e, 0x2b, 0x30, - 0xdb, 0xeb, 0x99, 0x68, 0xc3, 0x7d, 0xc8, 0x4a, 0x07, 0x3c, 0xbb, 0x46, 0x7e, 0xd3, 0x87, 0x2e, - 0x18, 0xad, 0x85, 0xf4, 0x24, 0x99, 0x1e, 0xb5, 0x9f, 0x1e, 0x7e, 0x53, 0x48, 0xd0, 0x3b, 0x98, - 0x62, 0x7a, 0x5e, 0x61, 0x6a, 0x0e, 0x3b, 0x4a, 0xff, 0xac, 0x35, 0xda, 0x03, 0xb8, 0x1c, 0xb8, - 0x5d, 0x18, 0x71, 0x0b, 0x52, 0xde, 0xa9, 0x98, 0xc5, 0xa9, 0xa0, 0x07, 0x1e, 0x4e, 0xd4, 0xcf, - 0x30, 0x1a, 0x0e, 0x10, 0x90, 0xa1, 0xf5, 0xaf, 0xf6, 0x31, 0x6c, 0xc8, 0x06, 0xbe, 0x07, 0x14, - 0xbc, 0x50, 0x48, 0xbe, 0xcd, 0x0d, 0x91, 0x7d, 0x8b, 0xd3, 0xcc, 0x41, 0x17, 0xea, 0xd7, 0x8a, - 0xb8, 0x7f, 0x5b, 0x77, 0xf5, 0xc3, 0x50, 0xc5, 0x2c, 0xb0, 0xef, 0x39, 0xcd, 0x2a, 0xce, 0x7a, - 0x69, 0x5e, 0x68, 0xb7, 0xe3, 0x98, 0xda, 0x0f, 0x05, 0xa6, 0x43, 0x79, 0x42, 0xf8, 0x06, 0x4c, - 0xb4, 0x31, 0xb5, 0x9b, 0xd6, 0x3e, 0x07, 0x0b, 0xd3, 0xf3, 0x3d, 0x05, 0xd8, 0x4d, 0x8b, 0x27, - 0x8a, 0x42, 0xc6, 0xdb, 0x81, 0x18, 0x7a, 0x02, 0x93, 0xe2, 0xe1, 0x90, 0x2c, 0x3d, 0x96, 0x7a, - 0x2c, 0x8f, 0x38, 0x22, 0x44, 0x33, 0x61, 0x04, 0x83, 0xe8, 0x21, 0x8c, 0x53, 0xbd, 0xd1, 0xe8, - 0x48, 0x96, 0x11, 0xc6, 0x32, 0x17, 0x64, 0xd9, 0xf5, 0xce, 0x43, 0x1c, 0x39, 0xda, 0x0d, 0x69, - 0x1f, 0x64, 0x99, 0xe2, 0xb6, 0xa1, 0x27, 0x22, 0xb4, 0x23, 0x92, 0x17, 0xdf, 0x11, 0xda, 0xa6, - 0x58, 0xd3, 0xbe, 0x10, 0x61, 0xf8, 0x32, 0x8c, 0x09, 0x90, 0xb0, 0x7a, 0xba, 0x8f, 0x49, 0xa2, - 0x34, 0x89, 0xd4, 0xdc, 0x30, 0xd9, 0x7f, 0x19, 0xf4, 0x8f, 0x8a, 0xd8, 0xee, 0xdd, 0x4b, 0x45, - 0x09, 0x2b, 0x90, 0x11, 0xc2, 0xe4, 0xbc, 0x0f, 0xa8, 0xc1, 0x87, 0x5e, 0x68, 0xea, 0xd7, 0x60, - 0x8e, 0x69, 0x61, 0xed, 0xaf, 0x99, 0xa4, 0xd5, 0xa0, 0x7f, 0xf0, 0xde, 0xcb, 0x47, 0x73, 0xfd, - 0x6e, 0xa4, 0xd9, 0xf8, 0x88, 0x5e, 0x44, 0x47, 0x8d, 0xe3, 0xe5, 0xe3, 0xcb, 0xb0, 0x4b, 0x9f, - 0xd2, 0x90, 0x66, 0x8c, 0x68, 0x07, 0x32, 0x72, 0x2b, 0xa3, 0x52, 0x30, 0xb7, 0xdf, 0x1b, 0x5a, - 0xbd, 0x3e, 0x00, 0xc1, 0xf5, 0x68, 0x09, 0xb4, 0x0b, 0x59, 0xff, 0xd5, 0x80, 0xe2, 0x33, 0xe4, - 0x08, 0xa8, 0xda, 0x20, 0x88, 0xcf, 0xfa, 0x18, 0x52, 0xde, 0x1a, 0x42, 0xd7, 0x22, 0xe8, 0xc0, - 0xde, 0x57, 0xe7, 0x63, 0x4e, 0x7d, 0x9a, 0x67, 0x90, 0x66, 0x7b, 0x0f, 0xf5, 0x47, 0xfa, 0xa2, - 0x0a, 0x71, 0xc7, 0x3e, 0xd3, 0x26, 0x8c, 0x8a, 0x87, 0x3e, 0x8a, 0x0d, 0xad, 0x36, 0xb5, 0x18, - 0x7b, 0xee, 0x93, 0xbd, 0x80, 0x31, 0x31, 0x74, 0x28, 0x8a, 0x0e, 0x6f, 0x02, 0xb5, 0x14, 0x0f, - 0xf0, 0xf9, 0x76, 0x20, 0x23, 0x87, 0x1e, 0xc5, 0xe2, 0x49, 0x7c, 0x5b, 0x7b, 0x9f, 0x18, 0x2d, - 0x81, 0xf6, 0x20, 0x17, 0x98, 0x27, 0x74, 0x23, 0x92, 0x13, 0x9d, 0x6c, 0xf5, 0xe6, 0x60, 0x90, - 0xe4, 0xae, 0x56, 0x8f, 0xcf, 0x0a, 0xca, 0xc9, 0x59, 0x41, 0xf9, 0x7e, 0x56, 0x50, 0xbe, 0x9c, - 0x17, 0x12, 0x27, 0xe7, 0x85, 0xc4, 0xb7, 0xf3, 0x42, 0x62, 0x6f, 0x61, 0xe0, 0xfa, 0x7a, 0xcb, - 0xbe, 0x2c, 0xd9, 0x12, 0x3b, 0x18, 0x65, 0x1f, 0x97, 0xcb, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, - 0x93, 0x13, 0x79, 0x06, 0xcd, 0x0a, 0x00, 0x00, +var fileDescriptor_e35c0d133e91c0a2 = []byte{ + // 845 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x56, 0x5d, 0x4f, 0x13, 0x59, + 0x18, 0xee, 0x94, 0x16, 0xda, 0xb7, 0xc0, 0xee, 0x9e, 0x65, 0x77, 0x9b, 0x59, 0xd2, 0xb2, 0x93, + 0x5d, 0xe8, 0xa2, 0x4c, 0x43, 0xd5, 0x98, 0x68, 0x34, 0xd2, 0x18, 0xd0, 0x90, 0x28, 0x16, 0xfc, + 0x88, 0x26, 0x92, 0x69, 0x67, 0x32, 0x56, 0x4b, 0xcf, 0xd0, 0x73, 0xda, 0xd8, 0x84, 0xc4, 0x4b, + 0xaf, 0x4c, 0x4c, 0xfc, 0x01, 0x5e, 0xf8, 0x5f, 0x0c, 0x97, 0x5c, 0x7a, 0x45, 0x0c, 0xfc, 0x0b, + 0xe3, 0x85, 0x99, 0xf3, 0x31, 0x9d, 0x29, 0x6d, 0x67, 0x44, 0xe2, 0x15, 0xe5, 0x3d, 0xcf, 0xf3, + 0xbc, 0x9f, 0xe7, 0x3d, 0x03, 0xb9, 0x1a, 0x26, 0x3b, 0x98, 0x14, 0x6d, 0xdc, 0x29, 0x76, 0x96, + 0xab, 0x16, 0x35, 0x96, 0x8b, 0xbb, 0x6d, 0xab, 0xd5, 0xd5, 0x9d, 0x16, 0xa6, 0x18, 0x21, 0x7e, + 0xae, 0xdb, 0xb8, 0xa3, 0x8b, 0x73, 0x75, 0x51, 0x70, 0xaa, 0x06, 0xb1, 0x38, 0xd8, 0xa3, 0x3a, + 0x86, 0x5d, 0x6f, 0x1a, 0xb4, 0x8e, 0x9b, 0x9c, 0xaf, 0xce, 0xd8, 0xd8, 0xc6, 0xec, 0x67, 0xd1, + 0xfd, 0x25, 0xac, 0xb3, 0x03, 0xbc, 0xba, 0x1e, 0xd8, 0xa9, 0x76, 0x19, 0x66, 0xee, 0xb9, 0xaa, + 0x1b, 0x2d, 0xec, 0x60, 0x62, 0x34, 0x2a, 0xd6, 0x6e, 0xdb, 0x22, 0x14, 0xe5, 0x21, 0xe3, 0x08, + 0xd3, 0x76, 0xdd, 0xcc, 0x2a, 0x73, 0x4a, 0x21, 0x51, 0x01, 0x69, 0xba, 0x6d, 0x6a, 0x0f, 0xe1, + 0x8f, 0x3e, 0x22, 0x71, 0x70, 0x93, 0x58, 0xe8, 0x3a, 0xa4, 0x24, 0x8c, 0xd1, 0x32, 0xa5, 0x59, + 0xfd, 0x64, 0x62, 0xba, 0xe4, 0x95, 0x13, 0xfb, 0x87, 0xf9, 0x58, 0xc5, 0xe3, 0x68, 0x1f, 0xe3, + 0x7d, 0xca, 0x44, 0xc6, 0xb4, 0x0e, 0xbf, 0x78, 0x31, 0x11, 0x6a, 0xd0, 0x36, 0x61, 0x0e, 0xa6, + 0x4b, 0xda, 0x28, 0x07, 0x9b, 0x0c, 0x59, 0x99, 0x76, 0x02, 0xff, 0xa3, 0x35, 0x48, 0x76, 0x30, + 0xb5, 0x5a, 0xd9, 0xf8, 0x9c, 0x52, 0x98, 0x2c, 0x2f, 0x7f, 0x39, 0xcc, 0x2f, 0xd9, 0x75, 0xfa, + 0xac, 0x5d, 0xd5, 0x6b, 0x78, 0xa7, 0x28, 0x8a, 0xc6, 0xff, 0x2c, 0x11, 0xf3, 0x45, 0x91, 0x76, + 0x1d, 0x8b, 0xe8, 0x2b, 0xb5, 0xda, 0x8a, 0x69, 0xb6, 0x2c, 0x42, 0x2a, 0x9c, 0x8f, 0xee, 0x42, + 0xda, 0xb4, 0x1c, 0x4c, 0xea, 0x14, 0xb7, 0xb2, 0x63, 0xa7, 0x15, 0xeb, 0x69, 0xa0, 0x55, 0x80, + 0x5e, 0x6b, 0xb3, 0x09, 0x56, 0xc2, 0x79, 0x99, 0xa1, 0x3b, 0x07, 0x3a, 0x1f, 0x1a, 0x2f, 0x51, + 0xc3, 0xb6, 0x44, 0x89, 0x2a, 0x3e, 0xa6, 0xf6, 0x41, 0x81, 0x3f, 0xfb, 0x0b, 0x29, 0x7a, 0x74, + 0x03, 0xd2, 0xb2, 0x1c, 0x6e, 0x0d, 0xc7, 0x22, 0x36, 0xa9, 0x47, 0x42, 0x6b, 0x81, 0x20, 0xe3, + 0x2c, 0xc8, 0x85, 0xd0, 0x20, 0xb9, 0xfb, 0x40, 0x94, 0x7b, 0xf0, 0x2b, 0x0b, 0xf2, 0x01, 0xa6, + 0x56, 0xd4, 0xe1, 0x3b, 0xb3, 0xe6, 0x69, 0x6b, 0xf0, 0x9b, 0xcf, 0xbb, 0xa8, 0x4e, 0x09, 0x12, + 0xee, 0xa9, 0x98, 0xde, 0xec, 0xa0, 0xc2, 0xb8, 0x78, 0x51, 0x14, 0x86, 0xd5, 0xf6, 0x7c, 0x42, + 0x24, 0x72, 0x1e, 0xab, 0x03, 0xaa, 0x78, 0x9a, 0x56, 0xbf, 0x53, 0x00, 0xf9, 0xdd, 0x8b, 0x44, + 0x2e, 0xf2, 0x32, 0xc9, 0x16, 0x87, 0x65, 0xc2, 0xc1, 0x67, 0xd7, 0xda, 0x4b, 0x22, 0xa8, 0x0d, + 0xa3, 0x65, 0xec, 0x04, 0x8a, 0xc2, 0x0c, 0xdb, 0x6e, 0x53, 0x58, 0x51, 0xd2, 0x2e, 0xcd, 0x35, + 0x6d, 0x75, 0x1d, 0x4b, 0xfb, 0xaa, 0xc0, 0xef, 0x01, 0x9e, 0xc8, 0x66, 0x1d, 0xa6, 0x3a, 0x98, + 0xd6, 0x9b, 0xf6, 0x36, 0x07, 0x8b, 0xfe, 0xcc, 0x0d, 0xc9, 0xaa, 0xde, 0xb4, 0xb9, 0x80, 0xc8, + 0x6e, 0xb2, 0xe3, 0xb3, 0xa1, 0x3b, 0x30, 0x2d, 0x6e, 0x9c, 0x54, 0xe3, 0x89, 0xfe, 0x33, 0x48, + 0xed, 0x26, 0x47, 0x06, 0xe4, 0xa6, 0x4c, 0xbf, 0x11, 0xdd, 0x82, 0x49, 0x6a, 0x34, 0x1a, 0x5d, + 0xa9, 0x36, 0xc6, 0xd4, 0xf2, 0x83, 0xd4, 0xb6, 0x5c, 0x5c, 0x40, 0x2b, 0x43, 0x7b, 0x26, 0xed, + 0xb5, 0x4c, 0x5f, 0x78, 0x8d, 0x3c, 0x4c, 0x81, 0x45, 0x14, 0xff, 0xf1, 0x45, 0xa4, 0x6d, 0x8a, + 0xb7, 0xc1, 0x0b, 0x44, 0x34, 0xe2, 0x2a, 0x4c, 0x08, 0x90, 0x68, 0xc1, 0xdf, 0x23, 0x8a, 0x26, + 0x52, 0x94, 0x0c, 0xed, 0x55, 0x50, 0xf4, 0xe7, 0xdf, 0x95, 0xf7, 0x8a, 0x78, 0x5f, 0x7a, 0x11, + 0x88, 0xbc, 0xae, 0x41, 0x4a, 0x44, 0x29, 0x6f, 0x4c, 0x84, 0xc4, 0x3c, 0xca, 0xd9, 0xdd, 0x9b, + 0x2b, 0xf0, 0x17, 0x0b, 0x90, 0x0d, 0x4a, 0xc5, 0x22, 0xed, 0x06, 0xfd, 0x8e, 0x67, 0x39, 0x7b, + 0x92, 0xeb, 0xf5, 0x2d, 0xc9, 0x06, 0x4d, 0x74, 0x6d, 0xf8, 0x70, 0x72, 0x9e, 0xdc, 0x0a, 0x8c, + 0x53, 0x7a, 0x33, 0x0e, 0x49, 0xa6, 0x8c, 0x0c, 0x48, 0xc9, 0x77, 0x01, 0x15, 0x06, 0x69, 0x0c, + 0xfa, 0xa0, 0x50, 0xff, 0x8f, 0x80, 0xe4, 0x71, 0x6a, 0x31, 0x64, 0x42, 0xda, 0x7b, 0xb4, 0x50, + 0x38, 0x53, 0x0e, 0x91, 0xba, 0x18, 0x05, 0xea, 0x79, 0xb9, 0x0f, 0x09, 0x77, 0xfb, 0xa1, 0x7f, + 0x87, 0xb2, 0x7c, 0x8f, 0x92, 0xfa, 0x5f, 0x08, 0xca, 0x93, 0x7d, 0x04, 0x49, 0xb6, 0x86, 0xd1, + 0x68, 0x86, 0x17, 0xf4, 0x7c, 0x18, 0xcc, 0x53, 0x7e, 0x02, 0xe3, 0x62, 0xdd, 0x0c, 0xe7, 0x04, + 0x96, 0xad, 0xba, 0x10, 0x8a, 0xf3, 0xc4, 0x9f, 0xc2, 0x84, 0x98, 0x6c, 0x34, 0x9c, 0x15, 0xdc, + 0x49, 0x6a, 0x21, 0x1c, 0xe8, 0xe9, 0x1b, 0x90, 0x92, 0x37, 0x0e, 0x85, 0xf2, 0x48, 0xf8, 0xd8, + 0xf4, 0x5f, 0x5f, 0x2d, 0x86, 0x9e, 0x43, 0xc6, 0x37, 0xbf, 0xe8, 0xdc, 0x50, 0xee, 0xc9, 0x9b, + 0xa5, 0x9e, 0x8f, 0x06, 0x96, 0xbe, 0xca, 0xe5, 0xfd, 0xa3, 0x9c, 0x72, 0x70, 0x94, 0x53, 0x3e, + 0x1f, 0xe5, 0x94, 0xb7, 0xc7, 0xb9, 0xd8, 0xc1, 0x71, 0x2e, 0xf6, 0xe9, 0x38, 0x17, 0x7b, 0x5c, + 0x18, 0xb9, 0x70, 0x5f, 0xb2, 0x0f, 0x71, 0xb6, 0x76, 0xab, 0xe3, 0xec, 0x1b, 0xfc, 0xc2, 0xb7, + 0x00, 0x00, 0x00, 0xff, 0xff, 0x9a, 0x58, 0xb0, 0xc3, 0x19, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -987,7 +989,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Proposal(ctx context.Context, in *QueryProposalRequest, opts ...grpc.CallOption) (*QueryProposalResponse, error) { out := new(QueryProposalResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.Query/Proposal", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Query/Proposal", in, out, opts...) if err != nil { return nil, err } @@ -996,7 +998,7 @@ func (c *queryClient) Proposal(ctx context.Context, in *QueryProposalRequest, op func (c *queryClient) Proposals(ctx context.Context, in *QueryProposalsRequest, opts ...grpc.CallOption) (*QueryProposalsResponse, error) { out := new(QueryProposalsResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.Query/Proposals", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Query/Proposals", in, out, opts...) if err != nil { return nil, err } @@ -1005,7 +1007,7 @@ func (c *queryClient) Proposals(ctx context.Context, in *QueryProposalsRequest, func (c *queryClient) Vote(ctx context.Context, in *QueryVoteRequest, opts ...grpc.CallOption) (*QueryVoteResponse, error) { out := new(QueryVoteResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.Query/Vote", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Query/Vote", in, out, opts...) if err != nil { return nil, err } @@ -1014,7 +1016,7 @@ func (c *queryClient) Vote(ctx context.Context, in *QueryVoteRequest, opts ...gr func (c *queryClient) Votes(ctx context.Context, in *QueryVotesRequest, opts ...grpc.CallOption) (*QueryVotesResponse, error) { out := new(QueryVotesResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.Query/Votes", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Query/Votes", in, out, opts...) if err != nil { return nil, err } @@ -1023,7 +1025,7 @@ func (c *queryClient) Votes(ctx context.Context, in *QueryVotesRequest, opts ... func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -1032,7 +1034,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) Deposit(ctx context.Context, in *QueryDepositRequest, opts ...grpc.CallOption) (*QueryDepositResponse, error) { out := new(QueryDepositResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.Query/Deposit", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Query/Deposit", in, out, opts...) if err != nil { return nil, err } @@ -1041,7 +1043,7 @@ func (c *queryClient) Deposit(ctx context.Context, in *QueryDepositRequest, opts func (c *queryClient) Deposits(ctx context.Context, in *QueryDepositsRequest, opts ...grpc.CallOption) (*QueryDepositsResponse, error) { out := new(QueryDepositsResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.Query/Deposits", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Query/Deposits", in, out, opts...) if err != nil { return nil, err } @@ -1050,7 +1052,7 @@ func (c *queryClient) Deposits(ctx context.Context, in *QueryDepositsRequest, op func (c *queryClient) TallyResult(ctx context.Context, in *QueryTallyResultRequest, opts ...grpc.CallOption) (*QueryTallyResultResponse, error) { out := new(QueryTallyResultResponse) - err := c.cc.Invoke(ctx, "/cosmos.gov.Query/TallyResult", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.gov.v1beta1.Query/TallyResult", in, out, opts...) if err != nil { return nil, err } @@ -1120,7 +1122,7 @@ func _Query_Proposal_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.Query/Proposal", + FullMethod: "/cosmos.gov.v1beta1.Query/Proposal", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Proposal(ctx, req.(*QueryProposalRequest)) @@ -1138,7 +1140,7 @@ func _Query_Proposals_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.Query/Proposals", + FullMethod: "/cosmos.gov.v1beta1.Query/Proposals", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Proposals(ctx, req.(*QueryProposalsRequest)) @@ -1156,7 +1158,7 @@ func _Query_Vote_Handler(srv interface{}, ctx context.Context, dec func(interfac } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.Query/Vote", + FullMethod: "/cosmos.gov.v1beta1.Query/Vote", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Vote(ctx, req.(*QueryVoteRequest)) @@ -1174,7 +1176,7 @@ func _Query_Votes_Handler(srv interface{}, ctx context.Context, dec func(interfa } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.Query/Votes", + FullMethod: "/cosmos.gov.v1beta1.Query/Votes", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Votes(ctx, req.(*QueryVotesRequest)) @@ -1192,7 +1194,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.Query/Params", + FullMethod: "/cosmos.gov.v1beta1.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -1210,7 +1212,7 @@ func _Query_Deposit_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.Query/Deposit", + FullMethod: "/cosmos.gov.v1beta1.Query/Deposit", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Deposit(ctx, req.(*QueryDepositRequest)) @@ -1228,7 +1230,7 @@ func _Query_Deposits_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.Query/Deposits", + FullMethod: "/cosmos.gov.v1beta1.Query/Deposits", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Deposits(ctx, req.(*QueryDepositsRequest)) @@ -1246,7 +1248,7 @@ func _Query_TallyResult_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.gov.Query/TallyResult", + FullMethod: "/cosmos.gov.v1beta1.Query/TallyResult", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).TallyResult(ctx, req.(*QueryTallyResultRequest)) @@ -1255,7 +1257,7 @@ func _Query_TallyResult_Handler(srv interface{}, ctx context.Context, dec func(i } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.gov.Query", + ServiceName: "cosmos.gov.v1beta1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1292,7 +1294,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/gov/query.proto", + Metadata: "cosmos/gov/v1beta1/query.proto", } func (m *QueryProposalRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/gov/types/tx.pb.go b/x/gov/types/tx.pb.go new file mode 100644 index 0000000000..b29dc5fbd6 --- /dev/null +++ b/x/gov/types/tx.pb.go @@ -0,0 +1,1025 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: cosmos/gov/v1beta1/tx.proto + +package types + +import ( + bytes "bytes" + fmt "fmt" + types "github.com/cosmos/cosmos-sdk/codec/types" + github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" + types1 "github.com/cosmos/cosmos-sdk/types" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" + _ "github.com/regen-network/cosmos-proto" + io "io" + math "math" + math_bits "math/bits" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package + +// MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary +// proposal Content. +type MsgSubmitProposal struct { + Content *types.Any `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"` + InitialDeposit github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,2,rep,name=initial_deposit,json=initialDeposit,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"initial_deposit" yaml:"initial_deposit"` + Proposer github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,3,opt,name=proposer,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"proposer,omitempty"` +} + +func (m *MsgSubmitProposal) Reset() { *m = MsgSubmitProposal{} } +func (*MsgSubmitProposal) ProtoMessage() {} +func (*MsgSubmitProposal) Descriptor() ([]byte, []int) { + return fileDescriptor_3c053992595e3dce, []int{0} +} +func (m *MsgSubmitProposal) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgSubmitProposal) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgSubmitProposal.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgSubmitProposal) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgSubmitProposal.Merge(m, src) +} +func (m *MsgSubmitProposal) XXX_Size() int { + return m.Size() +} +func (m *MsgSubmitProposal) XXX_DiscardUnknown() { + xxx_messageInfo_MsgSubmitProposal.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgSubmitProposal proto.InternalMessageInfo + +// MsgVote defines a message to cast a vote +type MsgVote struct { + ProposalID uint64 `protobuf:"varint,1,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id" yaml:"proposal_id"` + Voter github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,2,opt,name=voter,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"voter,omitempty"` + Option VoteOption `protobuf:"varint,3,opt,name=option,proto3,enum=cosmos.gov.v1beta1.VoteOption" json:"option,omitempty"` +} + +func (m *MsgVote) Reset() { *m = MsgVote{} } +func (*MsgVote) ProtoMessage() {} +func (*MsgVote) Descriptor() ([]byte, []int) { + return fileDescriptor_3c053992595e3dce, []int{1} +} +func (m *MsgVote) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgVote) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgVote.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgVote) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgVote.Merge(m, src) +} +func (m *MsgVote) XXX_Size() int { + return m.Size() +} +func (m *MsgVote) XXX_DiscardUnknown() { + xxx_messageInfo_MsgVote.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgVote proto.InternalMessageInfo + +// MsgDeposit defines a message to submit a deposit to an existing proposal +type MsgDeposit struct { + ProposalID uint64 `protobuf:"varint,1,opt,name=proposal_id,json=proposalId,proto3" json:"proposal_id" yaml:"proposal_id"` + Depositor github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,2,opt,name=depositor,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"depositor,omitempty"` + Amount github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,3,rep,name=amount,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"amount"` +} + +func (m *MsgDeposit) Reset() { *m = MsgDeposit{} } +func (*MsgDeposit) ProtoMessage() {} +func (*MsgDeposit) Descriptor() ([]byte, []int) { + return fileDescriptor_3c053992595e3dce, []int{2} +} +func (m *MsgDeposit) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgDeposit) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgDeposit.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgDeposit) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgDeposit.Merge(m, src) +} +func (m *MsgDeposit) XXX_Size() int { + return m.Size() +} +func (m *MsgDeposit) XXX_DiscardUnknown() { + xxx_messageInfo_MsgDeposit.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgDeposit proto.InternalMessageInfo + +func init() { + proto.RegisterType((*MsgSubmitProposal)(nil), "cosmos.gov.v1beta1.MsgSubmitProposal") + proto.RegisterType((*MsgVote)(nil), "cosmos.gov.v1beta1.MsgVote") + proto.RegisterType((*MsgDeposit)(nil), "cosmos.gov.v1beta1.MsgDeposit") +} + +func init() { proto.RegisterFile("cosmos/gov/v1beta1/tx.proto", fileDescriptor_3c053992595e3dce) } + +var fileDescriptor_3c053992595e3dce = []byte{ + // 525 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x53, 0xcf, 0x6b, 0x13, 0x41, + 0x14, 0xde, 0x4d, 0x6b, 0xa2, 0x13, 0xa9, 0x38, 0x14, 0x49, 0xab, 0xcc, 0x86, 0x9c, 0x72, 0xc9, + 0xac, 0x49, 0xc1, 0x43, 0x3d, 0x25, 0x2d, 0x48, 0x85, 0x58, 0x89, 0xe2, 0xc1, 0x4b, 0xd8, 0x1f, + 0xe3, 0x38, 0x98, 0xec, 0x5b, 0x32, 0x93, 0xd0, 0xdc, 0xfc, 0x0b, 0xc4, 0xbf, 0x40, 0x3c, 0x7b, + 0x16, 0xff, 0x86, 0xe0, 0xa9, 0xc7, 0x9e, 0x56, 0x9b, 0x80, 0x88, 0xc7, 0x1e, 0x3d, 0x49, 0x66, + 0x66, 0x6b, 0x51, 0xf1, 0x27, 0x9e, 0x76, 0xdf, 0x7c, 0xef, 0xfb, 0x76, 0xbe, 0x6f, 0xdf, 0x43, + 0x57, 0x23, 0x90, 0x43, 0x90, 0x3e, 0x87, 0x89, 0x3f, 0x69, 0x86, 0x4c, 0x05, 0x4d, 0x5f, 0x1d, + 0xd0, 0x74, 0x04, 0x0a, 0x30, 0x36, 0x20, 0xe5, 0x30, 0xa1, 0x16, 0xdc, 0x24, 0x96, 0x10, 0x06, + 0x92, 0x9d, 0x32, 0x22, 0x10, 0x89, 0xe1, 0x6c, 0x5e, 0xfb, 0x81, 0xe0, 0x92, 0x6f, 0xd0, 0x0d, + 0x83, 0xf6, 0x75, 0xe5, 0x5b, 0x79, 0x03, 0xad, 0x73, 0xe0, 0x60, 0xce, 0x97, 0x6f, 0x39, 0x81, + 0x03, 0xf0, 0x01, 0xf3, 0x75, 0x15, 0x8e, 0x1f, 0xf9, 0x41, 0x32, 0x35, 0x50, 0xed, 0x4d, 0x01, + 0x5d, 0xee, 0x4a, 0x7e, 0x6f, 0x1c, 0x0e, 0x85, 0xba, 0x3b, 0x82, 0x14, 0x64, 0x30, 0xc0, 0x37, + 0x51, 0x29, 0x82, 0x44, 0xb1, 0x44, 0x55, 0xdc, 0xaa, 0x5b, 0x2f, 0xb7, 0xd6, 0xa9, 0x91, 0xa0, + 0xb9, 0x04, 0x6d, 0x27, 0xd3, 0x4e, 0xf9, 0xed, 0xeb, 0x46, 0x69, 0xc7, 0x34, 0xf6, 0x72, 0x06, + 0x7e, 0xe6, 0xa2, 0x4b, 0x22, 0x11, 0x4a, 0x04, 0x83, 0x7e, 0xcc, 0x52, 0x90, 0x42, 0x55, 0x0a, + 0xd5, 0x95, 0x7a, 0xb9, 0xb5, 0x41, 0xed, 0x65, 0x97, 0xbe, 0xf3, 0x30, 0xe8, 0x0e, 0x88, 0xa4, + 0x73, 0x7b, 0x96, 0x79, 0xce, 0x49, 0xe6, 0x5d, 0x99, 0x06, 0xc3, 0xc1, 0x76, 0xed, 0x1b, 0x7e, + 0xed, 0xd5, 0x3b, 0xaf, 0xce, 0x85, 0x7a, 0x3c, 0x0e, 0x69, 0x04, 0x43, 0xeb, 0xd9, 0x3e, 0x1a, + 0x32, 0x7e, 0xe2, 0xab, 0x69, 0xca, 0xa4, 0x96, 0x92, 0xbd, 0x35, 0xcb, 0xde, 0x35, 0x64, 0xdc, + 0x45, 0xe7, 0x53, 0xed, 0x8c, 0x8d, 0x2a, 0x2b, 0x55, 0xb7, 0x7e, 0xb1, 0xd3, 0xfc, 0x9c, 0x79, + 0x8d, 0xdf, 0xd0, 0x6b, 0x47, 0x51, 0x3b, 0x8e, 0x47, 0x4c, 0xca, 0xde, 0xa9, 0xc4, 0xf6, 0xea, + 0xc7, 0x97, 0x9e, 0x5b, 0xfb, 0xe0, 0xa2, 0x52, 0x57, 0xf2, 0x07, 0xa0, 0x18, 0xbe, 0x8f, 0xca, + 0xa9, 0x8d, 0xae, 0x2f, 0x62, 0x1d, 0xd9, 0x6a, 0x67, 0x6b, 0x9e, 0x79, 0x28, 0x4f, 0x74, 0x6f, + 0xf7, 0x53, 0xe6, 0x9d, 0x6d, 0x3a, 0xc9, 0x3c, 0x6c, 0xac, 0x9e, 0x39, 0xac, 0xf5, 0x50, 0x5e, + 0xed, 0xc5, 0xf8, 0x16, 0x3a, 0x37, 0x01, 0xc5, 0x46, 0x95, 0xc2, 0xdf, 0xde, 0xd9, 0xf0, 0xf1, + 0x0d, 0x54, 0x84, 0x54, 0x09, 0x48, 0xb4, 0xfb, 0xb5, 0x16, 0xa1, 0xdf, 0x8f, 0x24, 0x5d, 0x1a, + 0xd9, 0xd7, 0x5d, 0x3d, 0xdb, 0x6d, 0x8d, 0xbe, 0x28, 0x20, 0xd4, 0x95, 0x3c, 0x0f, 0xf3, 0xff, + 0x78, 0xdd, 0x47, 0x17, 0xec, 0xaf, 0x86, 0x7f, 0xf0, 0xfb, 0x55, 0x03, 0x47, 0xa8, 0x18, 0x0c, + 0x61, 0x9c, 0xa8, 0xca, 0xca, 0xaf, 0x46, 0xef, 0xfa, 0x72, 0xf4, 0xfe, 0x68, 0xc0, 0xac, 0xb4, + 0x09, 0xa8, 0x73, 0x67, 0x76, 0x4c, 0x9c, 0xa3, 0x63, 0xe2, 0x3c, 0x9d, 0x13, 0x67, 0x36, 0x27, + 0xee, 0xe1, 0x9c, 0xb8, 0xef, 0xe7, 0xc4, 0x7d, 0xbe, 0x20, 0xce, 0xe1, 0x82, 0x38, 0x47, 0x0b, + 0xe2, 0x3c, 0xfc, 0xb9, 0xfa, 0x81, 0x5e, 0x75, 0xfd, 0x8d, 0xb0, 0xa8, 0x77, 0x6c, 0xeb, 0x4b, + 0x00, 0x00, 0x00, 0xff, 0xff, 0x70, 0x5e, 0xd0, 0x13, 0x56, 0x04, 0x00, 0x00, +} + +func (this *MsgSubmitProposal) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*MsgSubmitProposal) + if !ok { + that2, ok := that.(MsgSubmitProposal) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !this.Content.Equal(that1.Content) { + return false + } + if len(this.InitialDeposit) != len(that1.InitialDeposit) { + return false + } + for i := range this.InitialDeposit { + if !this.InitialDeposit[i].Equal(&that1.InitialDeposit[i]) { + return false + } + } + if !bytes.Equal(this.Proposer, that1.Proposer) { + return false + } + return true +} +func (this *MsgVote) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*MsgVote) + if !ok { + that2, ok := that.(MsgVote) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if this.ProposalID != that1.ProposalID { + return false + } + if !bytes.Equal(this.Voter, that1.Voter) { + return false + } + if this.Option != that1.Option { + return false + } + return true +} +func (this *MsgDeposit) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*MsgDeposit) + if !ok { + that2, ok := that.(MsgDeposit) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if this.ProposalID != that1.ProposalID { + return false + } + if !bytes.Equal(this.Depositor, that1.Depositor) { + return false + } + if len(this.Amount) != len(that1.Amount) { + return false + } + for i := range this.Amount { + if !this.Amount[i].Equal(&that1.Amount[i]) { + return false + } + } + return true +} +func (m *MsgSubmitProposal) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgSubmitProposal) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgSubmitProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Proposer) > 0 { + i -= len(m.Proposer) + copy(dAtA[i:], m.Proposer) + i = encodeVarintTx(dAtA, i, uint64(len(m.Proposer))) + i-- + dAtA[i] = 0x1a + } + if len(m.InitialDeposit) > 0 { + for iNdEx := len(m.InitialDeposit) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.InitialDeposit[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + } + if m.Content != nil { + { + size, err := m.Content.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *MsgVote) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgVote) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgVote) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Option != 0 { + i = encodeVarintTx(dAtA, i, uint64(m.Option)) + i-- + dAtA[i] = 0x18 + } + if len(m.Voter) > 0 { + i -= len(m.Voter) + copy(dAtA[i:], m.Voter) + i = encodeVarintTx(dAtA, i, uint64(len(m.Voter))) + i-- + dAtA[i] = 0x12 + } + if m.ProposalID != 0 { + i = encodeVarintTx(dAtA, i, uint64(m.ProposalID)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *MsgDeposit) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgDeposit) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgDeposit) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Amount) > 0 { + for iNdEx := len(m.Amount) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Amount[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + } + if len(m.Depositor) > 0 { + i -= len(m.Depositor) + copy(dAtA[i:], m.Depositor) + i = encodeVarintTx(dAtA, i, uint64(len(m.Depositor))) + i-- + dAtA[i] = 0x12 + } + if m.ProposalID != 0 { + i = encodeVarintTx(dAtA, i, uint64(m.ProposalID)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func encodeVarintTx(dAtA []byte, offset int, v uint64) int { + offset -= sovTx(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *MsgSubmitProposal) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Content != nil { + l = m.Content.Size() + n += 1 + l + sovTx(uint64(l)) + } + if len(m.InitialDeposit) > 0 { + for _, e := range m.InitialDeposit { + l = e.Size() + n += 1 + l + sovTx(uint64(l)) + } + } + l = len(m.Proposer) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + return n +} + +func (m *MsgVote) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.ProposalID != 0 { + n += 1 + sovTx(uint64(m.ProposalID)) + } + l = len(m.Voter) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + if m.Option != 0 { + n += 1 + sovTx(uint64(m.Option)) + } + return n +} + +func (m *MsgDeposit) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.ProposalID != 0 { + n += 1 + sovTx(uint64(m.ProposalID)) + } + l = len(m.Depositor) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + if len(m.Amount) > 0 { + for _, e := range m.Amount { + l = e.Size() + n += 1 + l + sovTx(uint64(l)) + } + } + return n +} + +func sovTx(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozTx(x uint64) (n int) { + return sovTx(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *MsgSubmitProposal) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgSubmitProposal: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgSubmitProposal: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Content", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Content == nil { + m.Content = &types.Any{} + } + if err := m.Content.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field InitialDeposit", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.InitialDeposit = append(m.InitialDeposit, types1.Coin{}) + if err := m.InitialDeposit[len(m.InitialDeposit)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Proposer", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Proposer = append(m.Proposer[:0], dAtA[iNdEx:postIndex]...) + if m.Proposer == nil { + m.Proposer = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgVote) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgVote: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgVote: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ProposalID", wireType) + } + m.ProposalID = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.ProposalID |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Voter", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Voter = append(m.Voter[:0], dAtA[iNdEx:postIndex]...) + if m.Voter == nil { + m.Voter = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Option", wireType) + } + m.Option = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Option |= VoteOption(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgDeposit) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgDeposit: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgDeposit: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ProposalID", wireType) + } + m.ProposalID = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.ProposalID |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Depositor", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Depositor = append(m.Depositor[:0], dAtA[iNdEx:postIndex]...) + if m.Depositor == nil { + m.Depositor = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Amount = append(m.Amount, types1.Coin{}) + if err := m.Amount[len(m.Amount)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipTx(dAtA []byte) (n int, err error) { + l := len(dAtA) + iNdEx := 0 + depth := 0 + for iNdEx < l { + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + wireType := int(wire & 0x7) + switch wireType { + case 0: + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + iNdEx++ + if dAtA[iNdEx-1] < 0x80 { + break + } + } + case 1: + iNdEx += 8 + case 2: + var length int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + length |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if length < 0 { + return 0, ErrInvalidLengthTx + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupTx + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthTx + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthTx = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowTx = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group") +) diff --git a/x/ibc-transfer/types/transfer.pb.go b/x/ibc-transfer/types/transfer.pb.go index c7c6ac6acc..9df6167135 100644 --- a/x/ibc-transfer/types/transfer.pb.go +++ b/x/ibc-transfer/types/transfer.pb.go @@ -269,38 +269,39 @@ func init() { func init() { proto.RegisterFile("ibc/transfer/transfer.proto", fileDescriptor_08134a70fd29e656) } var fileDescriptor_08134a70fd29e656 = []byte{ - // 485 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x53, 0xcf, 0x6e, 0xd3, 0x30, - 0x18, 0x6f, 0x68, 0xda, 0x0d, 0xb7, 0x43, 0x60, 0xc6, 0x08, 0x05, 0x25, 0x55, 0x4e, 0xb9, 0x34, - 0xd1, 0xe0, 0x80, 0xc4, 0x89, 0x76, 0x08, 0x31, 0x21, 0xa4, 0xc9, 0xea, 0x89, 0xcb, 0x94, 0x38, - 0x1f, 0x69, 0xd4, 0xc6, 0xae, 0x6c, 0x07, 0x98, 0x78, 0x09, 0x9e, 0x82, 0x67, 0xd9, 0x71, 0x47, - 0x4e, 0x11, 0x6a, 0xdf, 0xa0, 0x47, 0x4e, 0x28, 0x71, 0x5a, 0x16, 0xa9, 0xda, 0xc9, 0xfe, 0xfd, - 0xf9, 0xbe, 0x7c, 0x7f, 0x1c, 0xf4, 0x3c, 0x8d, 0x68, 0xa0, 0x44, 0xc8, 0xe4, 0x17, 0x10, 0xbb, - 0x8b, 0xbf, 0x14, 0x5c, 0x71, 0xdc, 0x4f, 0x23, 0xea, 0x6f, 0xb9, 0xc1, 0x71, 0xc2, 0x13, 0x5e, - 0x09, 0x41, 0x79, 0xd3, 0x9e, 0xc1, 0x63, 0xca, 0x65, 0xc6, 0x65, 0xa0, 0x0f, 0x4d, 0xba, 0xbf, - 0xda, 0xa8, 0xf7, 0x49, 0x26, 0xd3, 0x3a, 0x14, 0xbf, 0x46, 0x3d, 0xc9, 0x73, 0x41, 0xe1, 0x72, - 0xc9, 0x85, 0xb2, 0x8c, 0xa1, 0xe1, 0xdd, 0x9f, 0x9c, 0x6c, 0x0a, 0x07, 0x5f, 0x85, 0xd9, 0xe2, - 0x8d, 0x7b, 0x4b, 0x74, 0x09, 0xd2, 0xe8, 0x82, 0x0b, 0x85, 0xdf, 0xa2, 0x07, 0xb5, 0x46, 0x67, - 0x21, 0x63, 0xb0, 0xb0, 0xee, 0x55, 0xb1, 0xcf, 0x36, 0x85, 0xf3, 0xa4, 0x11, 0x5b, 0xeb, 0x2e, - 0x39, 0xd2, 0xc4, 0x99, 0xc6, 0xd8, 0x43, 0x1d, 0xc5, 0xe7, 0xc0, 0xac, 0xf6, 0xd0, 0xf0, 0x7a, - 0x2f, 0xfb, 0x7e, 0x5d, 0xe8, 0x19, 0x4f, 0xd9, 0xc4, 0xbc, 0x2e, 0x9c, 0x16, 0xd1, 0x06, 0x7c, - 0x8e, 0xba, 0x12, 0x58, 0x0c, 0xc2, 0x32, 0x87, 0x86, 0xd7, 0x9f, 0x9c, 0xfe, 0x2d, 0x9c, 0x51, - 0x92, 0xaa, 0x59, 0x1e, 0xf9, 0x94, 0x67, 0x41, 0xa3, 0xd1, 0x91, 0x8c, 0xe7, 0x81, 0xba, 0x5a, - 0x82, 0xf4, 0xc7, 0x94, 0x8e, 0xe3, 0x58, 0x80, 0x94, 0xa4, 0x4e, 0x80, 0x07, 0xe8, 0x50, 0x00, - 0x85, 0xf4, 0x2b, 0x08, 0xab, 0x53, 0x16, 0x4c, 0x76, 0xb8, 0x6c, 0x49, 0xa5, 0x19, 0xf0, 0x5c, - 0x5d, 0xce, 0x20, 0x4d, 0x66, 0xca, 0xea, 0x0e, 0x0d, 0xcf, 0xbc, 0xdd, 0x52, 0x53, 0x77, 0xc9, - 0x51, 0x4d, 0x7c, 0xa8, 0x30, 0x3e, 0x47, 0x8f, 0xb6, 0x8e, 0xf2, 0x94, 0x2a, 0xcc, 0x96, 0xd6, - 0x41, 0x95, 0xe4, 0xc5, 0xa6, 0x70, 0xac, 0x66, 0x92, 0x9d, 0xc5, 0x25, 0x0f, 0x6b, 0x6e, 0xba, - 0xa3, 0x7e, 0xa0, 0xa7, 0xef, 0x73, 0x96, 0xa4, 0xd1, 0x02, 0xa6, 0xe5, 0x10, 0x2e, 0x42, 0x3a, - 0x07, 0xf5, 0x2e, 0x54, 0x21, 0x3e, 0x46, 0x9d, 0x18, 0x18, 0xcf, 0xf4, 0xb6, 0x88, 0x06, 0xf8, - 0x04, 0x75, 0xc3, 0x8c, 0xe7, 0x4c, 0x55, 0x8b, 0x30, 0x49, 0x8d, 0x4a, 0xbe, 0x1e, 0x5e, 0xbb, - 0xb2, 0xef, 0x9b, 0x84, 0xd9, 0x9c, 0x84, 0x3b, 0x45, 0xee, 0x9e, 0x8f, 0x8f, 0xe9, 0x9c, 0xf1, - 0x6f, 0x0b, 0x88, 0x13, 0xc8, 0x80, 0x29, 0x6c, 0xa1, 0x03, 0x99, 0x53, 0x0a, 0x52, 0x56, 0x95, - 0x1c, 0x92, 0x2d, 0x2c, 0x2b, 0x04, 0x21, 0xb8, 0xd0, 0x6f, 0x82, 0x68, 0x30, 0xf9, 0x78, 0xbd, - 0xb2, 0x8d, 0x9b, 0x95, 0x6d, 0xfc, 0x59, 0xd9, 0xc6, 0xcf, 0xb5, 0xdd, 0xba, 0x59, 0xdb, 0xad, - 0xdf, 0x6b, 0xbb, 0xf5, 0xf9, 0xf4, 0xce, 0x65, 0x7e, 0x0f, 0xd2, 0x88, 0x8e, 0xfe, 0xff, 0x0a, - 0xe5, 0x6e, 0xa3, 0x6e, 0xf5, 0x9e, 0x5f, 0xfd, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x1b, 0xc4, 0xe2, - 0x00, 0x27, 0x03, 0x00, 0x00, + // 505 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x53, 0x4f, 0x6f, 0xd3, 0x30, + 0x1c, 0x6d, 0xe8, 0x9f, 0x0d, 0x77, 0x43, 0x60, 0x8d, 0x91, 0x15, 0x94, 0x56, 0x39, 0xf5, 0xd2, + 0x44, 0x05, 0x21, 0x24, 0x4e, 0xb4, 0x43, 0x88, 0x09, 0x21, 0x4d, 0x56, 0x4f, 0x5c, 0xa6, 0xc4, + 0xf9, 0x91, 0x5a, 0x6d, 0xec, 0xca, 0x76, 0x06, 0x13, 0x5f, 0x82, 0xef, 0xc2, 0x97, 0xd8, 0x71, + 0x47, 0x4e, 0x11, 0x6a, 0xbf, 0x41, 0x8f, 0x9c, 0x50, 0x62, 0xb7, 0xac, 0xd2, 0xb4, 0x93, 0xfd, + 0xde, 0xfb, 0xf9, 0x97, 0xe7, 0xf7, 0x73, 0xd0, 0x73, 0x16, 0xd3, 0x50, 0xcb, 0x88, 0xab, 0xaf, + 0x20, 0xb7, 0x9b, 0x60, 0x21, 0x85, 0x16, 0xf8, 0x80, 0xc5, 0x34, 0xd8, 0x70, 0x9d, 0xa3, 0x54, + 0xa4, 0xa2, 0x12, 0xc2, 0x72, 0x67, 0x6a, 0x3a, 0x1e, 0x15, 0x2a, 0x13, 0x2a, 0x8c, 0x23, 0x05, + 0xe1, 0xe5, 0x30, 0x06, 0x1d, 0x0d, 0x43, 0x2a, 0x18, 0x37, 0xba, 0xff, 0xab, 0x8e, 0xda, 0x9f, + 0x55, 0x3a, 0xb1, 0x5d, 0xf0, 0x1b, 0xd4, 0x56, 0x22, 0x97, 0x14, 0x2e, 0x16, 0x42, 0x6a, 0xd7, + 0xe9, 0x39, 0xfd, 0x87, 0xe3, 0xe3, 0x75, 0xd1, 0xc5, 0x57, 0x51, 0x36, 0x7f, 0xeb, 0xdf, 0x12, + 0x7d, 0x82, 0x0c, 0x3a, 0x17, 0x52, 0xe3, 0x77, 0xe8, 0x91, 0xd5, 0xe8, 0x34, 0xe2, 0x1c, 0xe6, + 0xee, 0x83, 0xea, 0xec, 0xc9, 0xba, 0xe8, 0x3e, 0xdd, 0x39, 0x6b, 0x75, 0x9f, 0x1c, 0x1a, 0xe2, + 0xd4, 0x60, 0xfc, 0x1a, 0x35, 0xb5, 0x98, 0x01, 0x77, 0xeb, 0x3d, 0xa7, 0xdf, 0x7e, 0x79, 0x12, + 0x18, 0xeb, 0x41, 0x69, 0x3d, 0xb0, 0xd6, 0x83, 0x53, 0xc1, 0xf8, 0xb8, 0x71, 0x5d, 0x74, 0x6b, + 0xc4, 0x54, 0xe3, 0x33, 0xd4, 0x52, 0xc0, 0x13, 0x90, 0x6e, 0xa3, 0xe7, 0xf4, 0x0f, 0xc6, 0xc3, + 0xbf, 0x45, 0x77, 0x90, 0x32, 0x3d, 0xcd, 0xe3, 0x80, 0x8a, 0x2c, 0xb4, 0x01, 0x98, 0x65, 0xa0, + 0x92, 0x59, 0xa8, 0xaf, 0x16, 0xa0, 0x82, 0x11, 0xa5, 0xa3, 0x24, 0x91, 0xa0, 0x14, 0xb1, 0x0d, + 0x70, 0x07, 0xed, 0x4b, 0xa0, 0xc0, 0x2e, 0x41, 0xba, 0xcd, 0xd2, 0x3d, 0xd9, 0xe2, 0xf2, 0x7e, + 0x9a, 0x65, 0x20, 0x72, 0x7d, 0x31, 0x05, 0x96, 0x4e, 0xb5, 0xdb, 0xea, 0x39, 0xfd, 0xc6, 0xed, + 0xfb, 0xed, 0xea, 0x3e, 0x39, 0xb4, 0xc4, 0xc7, 0x0a, 0xe3, 0x33, 0xf4, 0x64, 0x53, 0x51, 0xae, + 0x4a, 0x47, 0xd9, 0xc2, 0xdd, 0xab, 0x9a, 0xbc, 0x58, 0x17, 0x5d, 0x77, 0xb7, 0xc9, 0xb6, 0xc4, + 0x27, 0x8f, 0x2d, 0x37, 0xd9, 0x52, 0x3f, 0xd0, 0xb3, 0x0f, 0x39, 0x4f, 0x59, 0x3c, 0x87, 0x49, + 0x19, 0xc2, 0x79, 0x44, 0x67, 0xa0, 0xdf, 0x47, 0x3a, 0xc2, 0x47, 0xa8, 0x99, 0x00, 0x17, 0x99, + 0x19, 0x1d, 0x31, 0x00, 0x1f, 0xa3, 0x56, 0x94, 0x89, 0x9c, 0xeb, 0x6a, 0x2a, 0x0d, 0x62, 0x51, + 0xc9, 0xdb, 0xf0, 0xea, 0x55, 0xf9, 0x5d, 0x49, 0x34, 0x76, 0x93, 0xf0, 0x27, 0xc8, 0xbf, 0xe3, + 0xe3, 0x23, 0x3a, 0xe3, 0xe2, 0xdb, 0x1c, 0x92, 0x14, 0x32, 0xe0, 0x1a, 0xbb, 0x68, 0x4f, 0xe5, + 0x94, 0x82, 0x52, 0x95, 0x93, 0x7d, 0xb2, 0x81, 0xa5, 0x43, 0x90, 0x52, 0x48, 0xf3, 0x40, 0x88, + 0x01, 0xe3, 0x4f, 0xd7, 0x4b, 0xcf, 0xb9, 0x59, 0x7a, 0xce, 0x9f, 0xa5, 0xe7, 0xfc, 0x5c, 0x79, + 0xb5, 0x9b, 0x95, 0x57, 0xfb, 0xbd, 0xf2, 0x6a, 0x5f, 0x86, 0xf7, 0x0e, 0xf3, 0x7b, 0xc8, 0x62, + 0x3a, 0xf8, 0xff, 0x8b, 0x94, 0xb3, 0x8d, 0x5b, 0xd5, 0xe3, 0x7e, 0xf5, 0x2f, 0x00, 0x00, 0xff, + 0xff, 0x0d, 0x50, 0xec, 0xf7, 0x3f, 0x03, 0x00, 0x00, } func (m *MsgTransfer) Marshal() (dAtA []byte, err error) { diff --git a/x/ibc/03-connection/types/query.pb.go b/x/ibc/03-connection/types/query.pb.go index 14a201fe0f..045fea4661 100644 --- a/x/ibc/03-connection/types/query.pb.go +++ b/x/ibc/03-connection/types/query.pb.go @@ -392,41 +392,42 @@ func init() { func init() { proto.RegisterFile("ibc/connection/query.proto", fileDescriptor_5ee60d8b08ce3606) } var fileDescriptor_5ee60d8b08ce3606 = []byte{ - // 542 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0xc1, 0x6e, 0xd3, 0x40, - 0x10, 0xcd, 0x26, 0x6d, 0xd5, 0x4c, 0x02, 0x94, 0x55, 0x55, 0x8c, 0xa5, 0x38, 0xc1, 0x42, 0x90, - 0x1e, 0x62, 0xa3, 0x54, 0x20, 0x81, 0xc4, 0xa5, 0x14, 0x44, 0xb8, 0x10, 0x56, 0x9c, 0xb8, 0x44, - 0x89, 0xbd, 0x75, 0x56, 0x50, 0xaf, 0x9b, 0xdd, 0x48, 0xf4, 0x2f, 0xf8, 0x07, 0x7e, 0x80, 0x13, - 0x1f, 0xc0, 0x89, 0x63, 0x8f, 0x9c, 0x2a, 0xe4, 0xfc, 0x08, 0xf2, 0xae, 0xd3, 0x75, 0x93, 0x54, - 0xe1, 0xd2, 0x53, 0xd6, 0x33, 0xef, 0xcd, 0xbc, 0x7d, 0xb3, 0x19, 0xb0, 0xd9, 0x28, 0xf0, 0x03, - 0x1e, 0xc7, 0x34, 0x90, 0x8c, 0xc7, 0xfe, 0xe9, 0x94, 0x4e, 0xce, 0xbc, 0x64, 0xc2, 0x25, 0xc7, - 0xb7, 0xd9, 0x28, 0xf0, 0x4c, 0xce, 0xde, 0x8d, 0x78, 0xc4, 0x55, 0xca, 0xcf, 0x4e, 0x1a, 0x65, - 0x37, 0x02, 0x2e, 0x4e, 0xb8, 0xd0, 0x4c, 0x3f, 0x19, 0x46, 0x2c, 0x1e, 0x66, 0xf0, 0x3c, 0xdd, - 0x5c, 0x68, 0x60, 0x8e, 0x1a, 0xe0, 0xbe, 0x87, 0xbd, 0x0f, 0x19, 0xf5, 0xd5, 0x65, 0x82, 0xd0, - 0xd3, 0x29, 0x15, 0x12, 0x3f, 0x85, 0x5b, 0x06, 0x3d, 0x60, 0xa1, 0x85, 0x5a, 0xa8, 0x5d, 0x3d, - 0xdc, 0x49, 0x2f, 0x9a, 0x75, 0x83, 0xee, 0x1d, 0x91, 0xba, 0x81, 0xf5, 0x42, 0xf7, 0x07, 0x82, - 0x7b, 0x4b, 0x15, 0x45, 0xc2, 0x63, 0x41, 0xf1, 0x4b, 0x00, 0x83, 0x55, 0xf5, 0x6a, 0xdd, 0x86, - 0x77, 0xf5, 0x9e, 0x9e, 0xe1, 0xbd, 0x8e, 0x43, 0x52, 0x20, 0xe0, 0x5d, 0xd8, 0x4c, 0x26, 0x9c, - 0x1f, 0x5b, 0xe5, 0x16, 0x6a, 0xd7, 0x89, 0xfe, 0xc0, 0x0d, 0x00, 0x75, 0x18, 0x24, 0x43, 0x39, - 0xb6, 0x2a, 0x99, 0x48, 0x52, 0x55, 0x91, 0xfe, 0x50, 0x8e, 0xf1, 0x03, 0xa8, 0xeb, 0xf4, 0x98, - 0xb2, 0x68, 0x2c, 0xad, 0x8d, 0x16, 0x6a, 0x6f, 0x90, 0x9a, 0x8a, 0xbd, 0x55, 0x21, 0xf7, 0xe3, - 0x92, 0x62, 0x31, 0x37, 0xe1, 0x39, 0x80, 0xf1, 0x34, 0x57, 0x7c, 0xdf, 0xd3, 0x9e, 0x7b, 0x7a, - 0x5a, 0xfd, 0x61, 0x44, 0x73, 0x38, 0x29, 0x80, 0xdd, 0x9f, 0x08, 0xac, 0xe5, 0xb2, 0xb9, 0x13, - 0x6f, 0xa0, 0x66, 0x2e, 0x26, 0x2c, 0xd4, 0xaa, 0xb4, 0x6b, 0xdd, 0x87, 0x8b, 0x56, 0xf4, 0x42, - 0x1a, 0x4b, 0x76, 0xcc, 0x68, 0x58, 0x30, 0xb3, 0x48, 0xc4, 0x2f, 0xae, 0xe8, 0x2b, 0x2b, 0x7d, - 0xf6, 0x2a, 0x7d, 0xba, 0x6f, 0x51, 0x20, 0xde, 0x83, 0xad, 0xdc, 0x93, 0xcc, 0xb4, 0x0a, 0xc9, - 0xbf, 0xdc, 0x77, 0xd0, 0xd0, 0xba, 0xbf, 0x30, 0x1a, 0xcb, 0x15, 0xa6, 0xec, 0x43, 0x35, 0x50, - 0x39, 0xf3, 0x2a, 0xea, 0xe9, 0x45, 0x73, 0x5b, 0x13, 0x7a, 0x47, 0x64, 0x5b, 0xa7, 0x7b, 0xa1, - 0xfb, 0x1d, 0x81, 0x73, 0x5d, 0xb1, 0xdc, 0x8a, 0x7d, 0xd8, 0x29, 0xbc, 0xb3, 0x6c, 0x88, 0xda, - 0x8f, 0x2a, 0xb9, 0x63, 0xe2, 0xd9, 0x28, 0xc5, 0x4d, 0x3d, 0x80, 0xee, 0xaf, 0x32, 0x6c, 0x2a, - 0x95, 0x78, 0x00, 0x60, 0x34, 0xe2, 0x47, 0x8b, 0x03, 0x59, 0xfd, 0x57, 0xb1, 0x1f, 0xaf, 0xc5, - 0xe9, 0xbb, 0xba, 0x25, 0x3c, 0x82, 0x5a, 0xc1, 0x04, 0xbc, 0x8e, 0x39, 0xf7, 0xdc, 0x6e, 0xaf, - 0x07, 0x5e, 0xf6, 0x90, 0x70, 0x77, 0xc9, 0x6e, 0xdc, 0x59, 0x5d, 0xe0, 0x9a, 0x19, 0xdb, 0xde, - 0xff, 0xc2, 0xe7, 0x5d, 0x0f, 0xfb, 0xbf, 0x53, 0x07, 0x9d, 0xa7, 0x0e, 0xfa, 0x9b, 0x3a, 0xe8, - 0xdb, 0xcc, 0x29, 0x9d, 0xcf, 0x9c, 0xd2, 0x9f, 0x99, 0x53, 0xfa, 0xf4, 0x2c, 0x62, 0x72, 0x3c, - 0x1d, 0x79, 0x01, 0x3f, 0xf1, 0xf3, 0x75, 0xa5, 0x7f, 0x3a, 0x22, 0xfc, 0xec, 0x7f, 0xf5, 0xb3, - 0x1d, 0xf5, 0xe4, 0xa0, 0x53, 0x58, 0x53, 0xf2, 0x2c, 0xa1, 0x62, 0xb4, 0xa5, 0x56, 0xd4, 0xc1, - 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x3a, 0x7c, 0xa2, 0x33, 0x26, 0x05, 0x00, 0x00, + // 556 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0xcf, 0x6e, 0xd3, 0x30, + 0x1c, 0xae, 0xdb, 0x6d, 0x5a, 0x7f, 0x2d, 0x30, 0xac, 0x69, 0x44, 0x91, 0x9a, 0x96, 0x08, 0x6d, + 0x1d, 0x52, 0x13, 0xd6, 0x09, 0x6e, 0x5c, 0xc6, 0x18, 0x94, 0x0b, 0x25, 0x47, 0x2e, 0x55, 0xfe, + 0x78, 0xa9, 0x05, 0x8b, 0xb3, 0xda, 0x45, 0xec, 0x2d, 0x78, 0x07, 0x5e, 0x80, 0x67, 0x80, 0x0b, + 0xc7, 0x1d, 0x39, 0x4d, 0xa8, 0x7d, 0x11, 0x14, 0x3b, 0x9d, 0xb3, 0xb6, 0x53, 0xb9, 0xec, 0x54, + 0xc7, 0xbf, 0xef, 0xfb, 0xf9, 0xf3, 0xf7, 0xb9, 0x3f, 0x30, 0x69, 0x10, 0xba, 0x21, 0x4b, 0x12, + 0x12, 0x0a, 0xca, 0x12, 0xf7, 0x7c, 0x4c, 0x46, 0x17, 0x4e, 0x3a, 0x62, 0x82, 0xe1, 0xfb, 0x34, + 0x08, 0x1d, 0x5d, 0x33, 0xb7, 0x63, 0x16, 0x33, 0x59, 0x72, 0xb3, 0x95, 0x42, 0x99, 0x4f, 0x43, + 0xc6, 0xcf, 0x18, 0x77, 0x03, 0x9f, 0x13, 0x45, 0x77, 0xbf, 0x1c, 0x04, 0x44, 0xf8, 0x07, 0x6e, + 0xea, 0xc7, 0x34, 0xf1, 0x33, 0x6e, 0x8e, 0x6d, 0xce, 0x9d, 0xa6, 0x97, 0x0a, 0x60, 0xbf, 0x87, + 0x9d, 0x0f, 0x59, 0x8b, 0x57, 0xd7, 0x05, 0x8f, 0x9c, 0x8f, 0x09, 0x17, 0xf8, 0x39, 0xdc, 0xd3, + 0xe8, 0x01, 0x8d, 0x0c, 0xd4, 0x42, 0xed, 0xea, 0xd1, 0xd6, 0xe4, 0xaa, 0x59, 0xd7, 0xe8, 0xde, + 0xb1, 0x57, 0xd7, 0xb0, 0x5e, 0x64, 0xff, 0x40, 0xf0, 0x68, 0xa1, 0x23, 0x4f, 0x59, 0xc2, 0x09, + 0x7e, 0x09, 0xa0, 0xb1, 0xb2, 0x5f, 0xad, 0xdb, 0x70, 0x6e, 0x5e, 0xda, 0xd1, 0xbc, 0xd7, 0x49, + 0xe4, 0x15, 0x08, 0x78, 0x1b, 0xd6, 0xd3, 0x11, 0x63, 0xa7, 0x46, 0xb9, 0x85, 0xda, 0x75, 0x4f, + 0x7d, 0xe0, 0x06, 0x80, 0x5c, 0x0c, 0x52, 0x5f, 0x0c, 0x8d, 0x4a, 0x26, 0xd2, 0xab, 0xca, 0x9d, + 0xbe, 0x2f, 0x86, 0xf8, 0x31, 0xd4, 0x55, 0x79, 0x48, 0x68, 0x3c, 0x14, 0xc6, 0x5a, 0x0b, 0xb5, + 0xd7, 0xbc, 0x9a, 0xdc, 0x7b, 0x2b, 0xb7, 0x6c, 0x7f, 0x41, 0x31, 0x9f, 0x99, 0x70, 0x02, 0xa0, + 0x3d, 0xcd, 0x15, 0xef, 0x3a, 0x2a, 0x00, 0x27, 0x0b, 0xc0, 0x51, 0xf9, 0xe5, 0x01, 0x38, 0x7d, + 0x3f, 0x26, 0x39, 0xd7, 0x2b, 0x30, 0xed, 0x5f, 0x08, 0x8c, 0xc5, 0x33, 0x72, 0x5b, 0x4e, 0xa0, + 0xa6, 0x6f, 0xc9, 0x0d, 0xd4, 0xaa, 0xb4, 0x6b, 0xdd, 0x27, 0xf3, 0xbe, 0xf4, 0x22, 0x92, 0x08, + 0x7a, 0x4a, 0x49, 0x54, 0x70, 0xb6, 0x48, 0xc4, 0x6f, 0x6e, 0x88, 0x2d, 0x4b, 0xb1, 0x7b, 0x2b, + 0xc5, 0x2a, 0x11, 0x45, 0xb5, 0x78, 0x07, 0x36, 0x72, 0xb7, 0x32, 0x3b, 0x2b, 0x5e, 0xfe, 0x65, + 0xbf, 0x83, 0x86, 0xba, 0xc4, 0x67, 0x4a, 0x12, 0xb1, 0xc4, 0xae, 0x7d, 0xa8, 0x86, 0xb2, 0xa6, + 0xdf, 0x4b, 0x7d, 0x72, 0xd5, 0xdc, 0x54, 0x84, 0xde, 0xb1, 0xb7, 0xa9, 0xca, 0xbd, 0xc8, 0xfe, + 0x8e, 0xc0, 0xba, 0xad, 0x59, 0xee, 0xcb, 0x3e, 0x6c, 0x15, 0x5e, 0x60, 0x16, 0xaf, 0x32, 0xa7, + 0xea, 0x3d, 0xd0, 0xfb, 0x59, 0xc8, 0xfc, 0xae, 0x9e, 0x46, 0xf7, 0x67, 0x19, 0xd6, 0xa5, 0x4a, + 0x3c, 0x00, 0xd0, 0x1a, 0xf1, 0xee, 0x7c, 0x3a, 0xcb, 0xff, 0x44, 0xe6, 0xde, 0x4a, 0x9c, 0xba, + 0xab, 0x5d, 0xc2, 0x01, 0xd4, 0x0a, 0x26, 0xe0, 0x55, 0xcc, 0x99, 0xe7, 0x66, 0x7b, 0x35, 0xf0, + 0xfa, 0x0c, 0x01, 0x0f, 0x17, 0xec, 0xc6, 0x9d, 0xe5, 0x0d, 0x6e, 0xc9, 0xd8, 0x74, 0xfe, 0x17, + 0x3e, 0x3b, 0xf5, 0xa8, 0xff, 0x7b, 0x62, 0xa1, 0xcb, 0x89, 0x85, 0xfe, 0x4e, 0x2c, 0xf4, 0x6d, + 0x6a, 0x95, 0x2e, 0xa7, 0x56, 0xe9, 0xcf, 0xd4, 0x2a, 0x7d, 0x7c, 0x11, 0x53, 0x31, 0x1c, 0x07, + 0x4e, 0xc8, 0xce, 0xdc, 0x7c, 0xaa, 0xa9, 0x9f, 0x0e, 0x8f, 0x3e, 0xb9, 0x5f, 0xdd, 0x6c, 0x7a, + 0x3d, 0x3b, 0xec, 0x14, 0x06, 0x98, 0xb8, 0x48, 0x09, 0x0f, 0x36, 0xe4, 0xf0, 0x3a, 0xfc, 0x17, + 0x00, 0x00, 0xff, 0xff, 0x77, 0xdb, 0xec, 0x23, 0x4d, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/ibc/04-channel/types/query.pb.go b/x/ibc/04-channel/types/query.pb.go index a4b2440ac3..f96e6f9e40 100644 --- a/x/ibc/04-channel/types/query.pb.go +++ b/x/ibc/04-channel/types/query.pb.go @@ -1181,65 +1181,67 @@ func init() { func init() { proto.RegisterFile("ibc/channel/query.proto", fileDescriptor_2150995751d4f15a) } var fileDescriptor_2150995751d4f15a = []byte{ - // 928 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0x41, 0x6f, 0xe3, 0x44, - 0x14, 0x8e, 0x9b, 0x6c, 0xda, 0xbc, 0x14, 0xb1, 0x4c, 0x5b, 0x48, 0xcd, 0xd6, 0x4d, 0xcd, 0x25, - 0xec, 0x6e, 0x1d, 0xd4, 0xe5, 0xc2, 0xde, 0xb6, 0xdd, 0x03, 0x39, 0x80, 0xb2, 0xb3, 0xda, 0x0b, - 0x12, 0x8a, 0x5c, 0x67, 0x36, 0xb1, 0xd2, 0xcc, 0xb8, 0x99, 0xe9, 0xd2, 0xc2, 0x6f, 0x40, 0x42, - 0x5c, 0xb8, 0x71, 0x84, 0x13, 0x48, 0xdc, 0xf8, 0x09, 0x1c, 0xf7, 0xc8, 0x85, 0x0a, 0xa5, 0x7f, - 0x83, 0x03, 0xf2, 0xcc, 0xd8, 0xb1, 0x1d, 0xbb, 0xca, 0x1e, 0x2c, 0x38, 0x25, 0x7e, 0xf3, 0xcd, - 0x7b, 0xdf, 0xfb, 0xe6, 0x9b, 0xf1, 0x18, 0xde, 0xf3, 0x4f, 0xbd, 0xae, 0x37, 0x76, 0x29, 0x25, - 0x67, 0xdd, 0xf3, 0x0b, 0x32, 0xbb, 0x72, 0x82, 0x19, 0x13, 0x0c, 0x35, 0xfd, 0x53, 0xcf, 0xd1, - 0x03, 0xe6, 0xf6, 0x88, 0x8d, 0x98, 0x8c, 0x77, 0xc3, 0x7f, 0x0a, 0x62, 0xee, 0x79, 0x8c, 0x4f, - 0x19, 0x57, 0xd3, 0xba, 0x81, 0x3b, 0xf2, 0xa9, 0x2b, 0x7c, 0x46, 0xf5, 0xf0, 0x6e, 0x32, 0xb5, - 0xfe, 0x55, 0x43, 0xf6, 0x18, 0xb6, 0x9e, 0x85, 0x93, 0x4e, 0x54, 0x14, 0x93, 0xf3, 0x0b, 0xc2, - 0x05, 0xfa, 0x00, 0xd6, 0x03, 0x36, 0x13, 0x03, 0x7f, 0xd8, 0x32, 0xda, 0x46, 0xa7, 0x71, 0x0c, - 0xf3, 0xeb, 0xfd, 0x7a, 0x9f, 0xcd, 0x44, 0xef, 0x29, 0xae, 0x87, 0x43, 0xbd, 0x21, 0x7a, 0x08, - 0xa0, 0x93, 0x85, 0xb8, 0x35, 0x89, 0x7b, 0x6b, 0x7e, 0xbd, 0xdf, 0xd0, 0xc9, 0x7a, 0x4f, 0x71, - 0x43, 0x03, 0x7a, 0x43, 0xfb, 0x47, 0x03, 0xb6, 0xd3, 0xa5, 0x78, 0xc0, 0x28, 0x27, 0xc8, 0x81, - 0x75, 0x8d, 0x92, 0xb5, 0x9a, 0x47, 0xdb, 0x4e, 0xa2, 0x63, 0x27, 0x82, 0x47, 0x20, 0xb4, 0x0d, - 0x77, 0x82, 0x19, 0x63, 0x2f, 0x65, 0xc5, 0x4d, 0xac, 0x1e, 0xd0, 0x1e, 0x80, 0xfc, 0x33, 0x08, - 0x5c, 0x31, 0x6e, 0x55, 0x43, 0x32, 0xb8, 0x21, 0x23, 0x7d, 0x57, 0x8c, 0xd1, 0x01, 0x6c, 0xaa, - 0xe1, 0x31, 0xf1, 0x47, 0x63, 0xd1, 0xaa, 0xb5, 0x8d, 0x4e, 0x0d, 0x37, 0x65, 0xec, 0x53, 0x19, - 0xb2, 0x9f, 0xa5, 0xf9, 0xf1, 0x48, 0x8b, 0x4f, 0x00, 0x16, 0x8a, 0x6a, 0x8a, 0xbb, 0x8e, 0x52, - 0xdc, 0x51, 0x0b, 0xd5, 0x77, 0x47, 0x44, 0xc3, 0x71, 0x02, 0x6c, 0xff, 0x6c, 0xc0, 0x4e, 0x26, - 0xa7, 0x6e, 0xfa, 0x31, 0x6c, 0xe8, 0x7e, 0x78, 0xcb, 0x68, 0x57, 0x3b, 0xcd, 0x23, 0x2b, 0xd5, - 0x75, 0x6f, 0x48, 0xa8, 0xf0, 0x5f, 0xfa, 0x64, 0x18, 0xf5, 0x1f, 0xe3, 0xd1, 0xe3, 0x14, 0xa1, - 0x35, 0x49, 0xc8, 0xcc, 0x23, 0xa4, 0x6a, 0x25, 0x19, 0xa1, 0x77, 0xa1, 0xae, 0x15, 0x08, 0x25, - 0xaa, 0x62, 0xfd, 0x64, 0x7f, 0x03, 0x96, 0x22, 0xca, 0x28, 0x25, 0x5e, 0x08, 0xcd, 0xca, 0x60, - 0x01, 0x78, 0xf1, 0xa0, 0x72, 0x05, 0x4e, 0x44, 0x32, 0x32, 0xad, 0xbd, 0x89, 0x4c, 0xbf, 0x19, - 0xb0, 0x5f, 0x58, 0xfd, 0x7f, 0x2a, 0xd8, 0xb7, 0x06, 0xdc, 0x93, 0x9c, 0xfb, 0xae, 0x37, 0x21, - 0xe2, 0x84, 0x4d, 0xa7, 0xbe, 0x98, 0x12, 0x2a, 0xca, 0xdb, 0x42, 0xc8, 0x84, 0x0d, 0x1e, 0x66, - 0xa7, 0x1e, 0x91, 0x6c, 0x6a, 0x38, 0x7e, 0xb6, 0x7f, 0x30, 0x60, 0xaf, 0x80, 0x8f, 0x56, 0x50, - 0x2e, 0x60, 0x14, 0x95, 0x9c, 0x36, 0x71, 0x22, 0x52, 0xda, 0xbe, 0xfa, 0xa5, 0x88, 0x19, 0x2f, - 0x51, 0xaa, 0xb4, 0x1b, 0xab, 0x6f, 0xe2, 0xc6, 0xdf, 0x0d, 0xbd, 0x17, 0x72, 0xf8, 0x6a, 0x29, - 0x8f, 0xa1, 0xb9, 0x10, 0x2e, 0xf2, 0x63, 0x3b, 0xe5, 0x47, 0x35, 0xf9, 0x89, 0x37, 0x49, 0xac, - 0x44, 0x72, 0x52, 0x29, 0xa6, 0xfc, 0xde, 0x80, 0x83, 0x04, 0xf5, 0x27, 0xde, 0x84, 0xb2, 0xaf, - 0xce, 0xc8, 0x70, 0x44, 0xfe, 0x43, 0x67, 0xfe, 0x64, 0x80, 0x7d, 0x1b, 0x29, 0xad, 0x69, 0x07, - 0xde, 0x76, 0xd3, 0x43, 0xda, 0xa3, 0xd9, 0x70, 0x69, 0x46, 0xfd, 0x27, 0xda, 0xd2, 0x2f, 0xe8, - 0x8c, 0x9c, 0xb9, 0x57, 0x64, 0xa8, 0x18, 0x97, 0xe9, 0xd3, 0x2f, 0xe1, 0xfd, 0x40, 0x16, 0x19, - 0x2c, 0xbc, 0x31, 0x88, 0xa4, 0xe3, 0xad, 0x6a, 0xbb, 0xda, 0xa9, 0x1d, 0xef, 0xcd, 0xaf, 0xf7, - 0x77, 0xb3, 0x6e, 0x7c, 0x1e, 0x81, 0xf0, 0x6e, 0x50, 0x34, 0x84, 0xee, 0xc3, 0xdd, 0x8c, 0x7a, - 0x5c, 0x76, 0xbe, 0x81, 0x97, 0xe2, 0xf6, 0x0b, 0xbd, 0x4d, 0x97, 0xbb, 0xd7, 0x2b, 0x74, 0x0f, - 0x1a, 0x0b, 0x66, 0xa1, 0xe7, 0x6b, 0x78, 0x11, 0x48, 0x78, 0x72, 0x2d, 0xe5, 0x49, 0xa1, 0xcf, - 0xf6, 0xcf, 0xc9, 0x65, 0x4c, 0x0c, 0x13, 0x8f, 0xf8, 0xaf, 0x48, 0x89, 0xb7, 0x8d, 0x5f, 0x0d, - 0x68, 0x17, 0x97, 0xd5, 0x0d, 0x1d, 0xc1, 0x0e, 0x25, 0x97, 0x0b, 0xbd, 0x07, 0x33, 0x05, 0x90, - 0x2c, 0x6a, 0x78, 0x8b, 0x2e, 0xcf, 0x2d, 0xcd, 0x7c, 0x3c, 0x7a, 0x01, 0xab, 0x16, 0x4e, 0xce, - 0xfc, 0x70, 0x21, 0x85, 0x2b, 0xca, 0x54, 0xe9, 0x95, 0x3e, 0x2e, 0xa2, 0xa2, 0xa1, 0x2a, 0x94, - 0x5f, 0xf0, 0x92, 0xeb, 0x1e, 0xfd, 0x55, 0x87, 0x3b, 0xb2, 0x30, 0xea, 0xc3, 0xba, 0x46, 0xa0, - 0xf4, 0xf9, 0x99, 0x73, 0x2b, 0x35, 0x0f, 0x6e, 0x41, 0xa8, 0x25, 0xb5, 0x2b, 0xe8, 0x39, 0x6c, - 0x44, 0x97, 0x07, 0x54, 0x3c, 0x21, 0xda, 0xd3, 0xa6, 0x7d, 0x1b, 0x24, 0x4e, 0x7a, 0x0e, 0x68, - 0xf9, 0x6e, 0x82, 0x1e, 0xe4, 0xcc, 0x2d, 0xba, 0x3f, 0x99, 0x0f, 0x57, 0x03, 0xc7, 0x25, 0x27, - 0x70, 0x37, 0xbb, 0xe5, 0xd1, 0x87, 0xcb, 0x39, 0x0a, 0xae, 0x1f, 0xe6, 0xfd, 0x55, 0xa0, 0x71, - 0x31, 0x0a, 0xef, 0x2c, 0xbd, 0xed, 0xd0, 0x0a, 0x29, 0xe2, 0xee, 0x1e, 0xac, 0x84, 0x8d, 0xeb, - 0x7d, 0x0d, 0x3b, 0xb9, 0x6f, 0x03, 0xe4, 0x14, 0xe5, 0xc9, 0x7f, 0x97, 0x99, 0xdd, 0x95, 0xf1, - 0x49, 0x61, 0xb3, 0x47, 0x5c, 0x9e, 0xb0, 0x05, 0x2f, 0x81, 0x3c, 0x61, 0x8b, 0x4e, 0x4c, 0xbb, - 0x82, 0x04, 0x6c, 0xe5, 0x9c, 0x40, 0x28, 0xc7, 0x0c, 0xc5, 0xe7, 0xa3, 0x79, 0xb8, 0x22, 0x3a, - 0xaa, 0x7a, 0xfc, 0xd9, 0x1f, 0x73, 0xcb, 0x78, 0x3d, 0xb7, 0x8c, 0xbf, 0xe7, 0x96, 0xf1, 0xdd, - 0x8d, 0x55, 0x79, 0x7d, 0x63, 0x55, 0xfe, 0xbc, 0xb1, 0x2a, 0x5f, 0x3c, 0x1a, 0xf9, 0x62, 0x7c, - 0x71, 0xea, 0x78, 0x6c, 0xda, 0xd5, 0x1f, 0x8d, 0xea, 0xe7, 0x90, 0x0f, 0x27, 0xdd, 0xcb, 0x6e, - 0xf8, 0xa5, 0xf8, 0xd1, 0xc7, 0x87, 0xd1, 0xc7, 0xa2, 0xb8, 0x0a, 0x08, 0x3f, 0xad, 0xcb, 0x6f, - 0xc5, 0x47, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x46, 0x7e, 0x04, 0x78, 0xa3, 0x0e, 0x00, 0x00, + // 948 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x57, 0xcf, 0x6f, 0xe3, 0x44, + 0x14, 0x8e, 0x9b, 0x6c, 0xda, 0xbc, 0x14, 0xb1, 0x4c, 0x5b, 0x48, 0xcd, 0xd6, 0x4d, 0x8d, 0x04, + 0xa1, 0xbb, 0xb5, 0xd9, 0x2e, 0x27, 0x6e, 0xdb, 0xae, 0x80, 0x1c, 0x40, 0xc1, 0xab, 0xbd, 0x20, + 0x41, 0xe4, 0x38, 0xb3, 0x89, 0x95, 0xc6, 0xe3, 0x66, 0xa6, 0xa5, 0xe5, 0x2f, 0xe0, 0x82, 0x84, + 0xb8, 0x70, 0xe3, 0xc8, 0x91, 0x13, 0x27, 0x0e, 0xdc, 0x90, 0x38, 0xee, 0x91, 0x0b, 0x15, 0x4a, + 0xff, 0x0d, 0x0e, 0xc8, 0xf3, 0xc3, 0xb1, 0x13, 0xbb, 0x44, 0x95, 0x2c, 0xb4, 0xa7, 0xc4, 0x6f, + 0xbe, 0x37, 0xef, 0x7b, 0xdf, 0xbc, 0x37, 0x3f, 0xe0, 0x0d, 0xbf, 0xe7, 0xd9, 0xde, 0xd0, 0x0d, + 0x02, 0x7c, 0x62, 0x9f, 0x9e, 0xe1, 0xc9, 0xa5, 0x15, 0x4e, 0x08, 0x23, 0xa8, 0xee, 0xf7, 0x3c, + 0x4b, 0x0e, 0xe8, 0x9b, 0x03, 0x32, 0x20, 0xdc, 0x6e, 0x47, 0xff, 0x04, 0x44, 0xdf, 0xf7, 0x08, + 0x1d, 0x13, 0x6a, 0xf7, 0x5c, 0x8a, 0x85, 0xaf, 0x7d, 0xfe, 0xb0, 0x87, 0x99, 0xfb, 0xd0, 0x0e, + 0xdd, 0x81, 0x1f, 0xb8, 0xcc, 0x27, 0x81, 0xc4, 0x6e, 0x27, 0xe3, 0xc8, 0x5f, 0x31, 0x64, 0x0e, + 0x61, 0xe3, 0xb3, 0xc8, 0xf9, 0x58, 0x58, 0x1d, 0x7c, 0x7a, 0x86, 0x29, 0x43, 0x6f, 0xc1, 0x6a, + 0x48, 0x26, 0xac, 0xeb, 0xf7, 0x1b, 0x5a, 0x53, 0x6b, 0xd5, 0x8e, 0x60, 0x7a, 0xb5, 0x5b, 0xed, + 0x90, 0x09, 0x6b, 0x3f, 0x71, 0xaa, 0xd1, 0x50, 0xbb, 0x8f, 0x1e, 0x00, 0xc8, 0xc9, 0x22, 0xdc, + 0x0a, 0xc7, 0xbd, 0x32, 0xbd, 0xda, 0xad, 0xc9, 0xc9, 0xda, 0x4f, 0x9c, 0x9a, 0x04, 0xb4, 0xfb, + 0xe6, 0x8f, 0x1a, 0x6c, 0xa6, 0x43, 0xd1, 0x90, 0x04, 0x14, 0x23, 0x0b, 0x56, 0x25, 0x8a, 0xc7, + 0xaa, 0x1f, 0x6e, 0x5a, 0x89, 0xf4, 0x2d, 0x05, 0x57, 0x20, 0xb4, 0x09, 0x77, 0xc2, 0x09, 0x21, + 0xcf, 0x79, 0xc4, 0x75, 0x47, 0x7c, 0xa0, 0x1d, 0x00, 0xfe, 0xa7, 0x1b, 0xba, 0x6c, 0xd8, 0x28, + 0x47, 0x64, 0x9c, 0x1a, 0xb7, 0x74, 0x5c, 0x36, 0x44, 0x7b, 0xb0, 0x2e, 0x86, 0x87, 0xd8, 0x1f, + 0x0c, 0x59, 0xa3, 0xd2, 0xd4, 0x5a, 0x15, 0xa7, 0xce, 0x6d, 0x1f, 0x73, 0x93, 0xf9, 0x65, 0x9a, + 0x1f, 0x55, 0x5a, 0x7c, 0x08, 0x30, 0x53, 0x54, 0x52, 0x7c, 0xdb, 0x12, 0xf2, 0x5b, 0x91, 0xfc, + 0x96, 0x58, 0x3a, 0x29, 0xbf, 0xd5, 0x71, 0x07, 0x58, 0xfa, 0x3a, 0x09, 0x4f, 0xf3, 0x17, 0x0d, + 0xb6, 0xe6, 0x02, 0x48, 0x05, 0x3e, 0x80, 0x35, 0x99, 0x1c, 0x6d, 0x68, 0xcd, 0x72, 0xab, 0x7e, + 0x68, 0xa4, 0x24, 0x68, 0xf7, 0x71, 0xc0, 0xfc, 0xe7, 0x3e, 0xee, 0x2b, 0x31, 0x62, 0x3c, 0xfa, + 0x28, 0xc5, 0x6e, 0x85, 0xb3, 0x7b, 0xe7, 0x3f, 0xd9, 0x89, 0xc0, 0x49, 0x7a, 0xe8, 0x75, 0xa8, + 0x4a, 0x6d, 0x22, 0xf1, 0xca, 0x8e, 0xfc, 0x32, 0xbf, 0xd1, 0xc0, 0x10, 0xb4, 0x49, 0x10, 0x60, + 0x2f, 0xc2, 0xce, 0x2b, 0x64, 0x00, 0x78, 0xf1, 0xa0, 0x28, 0x18, 0x27, 0x61, 0x99, 0x53, 0x70, + 0xe5, 0xd6, 0x0a, 0xfe, 0xa6, 0xc1, 0x6e, 0x2e, 0x95, 0x97, 0x41, 0xcb, 0x6f, 0x35, 0xb8, 0xc7, + 0x13, 0xe8, 0xb8, 0xde, 0x08, 0xb3, 0x63, 0x32, 0x1e, 0xfb, 0x6c, 0x8c, 0x03, 0x56, 0x5c, 0xdf, + 0x21, 0x1d, 0xd6, 0x68, 0x34, 0x7b, 0xe0, 0x61, 0xce, 0xa6, 0xe2, 0xc4, 0xdf, 0xe6, 0x0f, 0x1a, + 0xec, 0xe4, 0xf0, 0x91, 0x72, 0xf2, 0xa5, 0x55, 0x56, 0xce, 0x69, 0xdd, 0x49, 0x58, 0x0a, 0x6b, + 0xc6, 0x5f, 0xf3, 0x98, 0xd1, 0x02, 0xa5, 0x4a, 0xd7, 0x69, 0xf9, 0xd6, 0x75, 0xfa, 0xbb, 0x6a, + 0x99, 0x0c, 0xf2, 0x52, 0xd7, 0x23, 0xa8, 0xcf, 0x54, 0x54, 0x95, 0xda, 0x4c, 0x55, 0xaa, 0x70, + 0x7e, 0xec, 0x8d, 0x12, 0xcb, 0x92, 0x74, 0x2a, 0xbe, 0x5c, 0xbf, 0xd7, 0x60, 0x2f, 0x91, 0xc7, + 0x63, 0x6f, 0x14, 0x90, 0xaf, 0x4e, 0x70, 0x7f, 0x80, 0xff, 0xc7, 0x9a, 0xfd, 0x49, 0x03, 0xf3, + 0x26, 0x52, 0x52, 0xe0, 0x16, 0xbc, 0xea, 0xa6, 0x87, 0x64, 0xf5, 0xce, 0x9b, 0x0b, 0x2b, 0xe1, + 0x7f, 0x54, 0xb3, 0x3f, 0x0b, 0x26, 0xf8, 0xc4, 0xbd, 0xc4, 0x7d, 0xc1, 0xb8, 0xc8, 0x0a, 0xfe, + 0x02, 0xde, 0x0c, 0x79, 0x90, 0xee, 0xac, 0x50, 0xba, 0x4a, 0x3a, 0xda, 0x28, 0x37, 0xcb, 0xad, + 0xca, 0xd1, 0xce, 0xf4, 0x6a, 0x77, 0x7b, 0xbe, 0x34, 0x9f, 0x2a, 0x90, 0xb3, 0x1d, 0xe6, 0x0d, + 0xa1, 0x7d, 0xb8, 0x3b, 0xa7, 0x1e, 0xe5, 0x99, 0xaf, 0x39, 0x0b, 0x76, 0xf3, 0x99, 0x6c, 0xe0, + 0xc5, 0xec, 0xe5, 0x0a, 0xdd, 0x83, 0xda, 0x8c, 0x59, 0xd4, 0x00, 0x15, 0x67, 0x66, 0x48, 0xd4, + 0xe4, 0x4a, 0xaa, 0x26, 0x99, 0x3c, 0x02, 0x3e, 0xc5, 0x17, 0x31, 0x31, 0x07, 0x7b, 0xd8, 0x3f, + 0xc7, 0x05, 0x5e, 0x5e, 0x7e, 0xd6, 0xa0, 0x99, 0x1f, 0x56, 0x26, 0x74, 0x08, 0x5b, 0x01, 0xbe, + 0x98, 0xe9, 0xdd, 0x9d, 0x08, 0x00, 0x67, 0x51, 0x71, 0x36, 0x82, 0x45, 0xdf, 0xc2, 0x8a, 0x8f, + 0xaa, 0x43, 0x5b, 0xa4, 0x70, 0x7c, 0xe2, 0x47, 0x0b, 0xc9, 0x5c, 0x56, 0xa4, 0x4a, 0xe7, 0x72, + 0xbb, 0x50, 0x41, 0x23, 0x55, 0x02, 0x7a, 0x46, 0x0b, 0x8e, 0x7b, 0xf8, 0x57, 0x15, 0xee, 0xf0, + 0xc0, 0xa8, 0x03, 0xab, 0x12, 0x81, 0xd2, 0x9b, 0x69, 0xc6, 0x25, 0x57, 0xdf, 0xbb, 0x01, 0x21, + 0x96, 0xd4, 0x2c, 0xa1, 0xa7, 0xb0, 0xa6, 0xee, 0x18, 0x28, 0xdf, 0x41, 0xf5, 0xb4, 0x6e, 0xde, + 0x04, 0x89, 0x27, 0x3d, 0x05, 0xb4, 0x78, 0x85, 0x41, 0xf7, 0x33, 0x7c, 0xf3, 0xee, 0x5c, 0xfa, + 0x83, 0xe5, 0xc0, 0x71, 0xc8, 0x11, 0xdc, 0x9d, 0x6f, 0x79, 0xf4, 0xee, 0xe2, 0x1c, 0x39, 0x17, + 0x13, 0x7d, 0x7f, 0x19, 0x68, 0x1c, 0x2c, 0x80, 0xd7, 0x16, 0x8e, 0x3e, 0xb4, 0xc4, 0x14, 0x71, + 0x76, 0xf7, 0x97, 0xc2, 0xc6, 0xf1, 0xbe, 0x86, 0xad, 0xcc, 0xd3, 0x00, 0x59, 0x79, 0xf3, 0x64, + 0x9f, 0x65, 0xba, 0xbd, 0x34, 0x3e, 0x29, 0xec, 0xfc, 0x16, 0x97, 0x25, 0x6c, 0xce, 0x21, 0x90, + 0x25, 0x6c, 0xde, 0x8e, 0x69, 0x96, 0x10, 0x83, 0x8d, 0x8c, 0x1d, 0x08, 0x65, 0x14, 0x43, 0xfe, + 0xfe, 0xa8, 0x1f, 0x2c, 0x89, 0x56, 0x51, 0x8f, 0x3e, 0xf9, 0x63, 0x6a, 0x68, 0x2f, 0xa6, 0x86, + 0xf6, 0xf7, 0xd4, 0xd0, 0xbe, 0xbb, 0x36, 0x4a, 0x2f, 0xae, 0x8d, 0xd2, 0x9f, 0xd7, 0x46, 0xe9, + 0xf3, 0x47, 0x03, 0x9f, 0x0d, 0xcf, 0x7a, 0x96, 0x47, 0xc6, 0xb6, 0x7c, 0x90, 0x8a, 0x9f, 0x03, + 0xda, 0x1f, 0xd9, 0x17, 0x76, 0xf4, 0xf0, 0x7c, 0xef, 0xfd, 0x03, 0xf5, 0xf6, 0x64, 0x97, 0x21, + 0xa6, 0xbd, 0x2a, 0x7f, 0x7a, 0x3e, 0xfa, 0x37, 0x00, 0x00, 0xff, 0xff, 0x66, 0xf3, 0x68, 0x72, + 0xff, 0x0e, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/mint/types/genesis.pb.go b/x/mint/types/genesis.pb.go index 8ece023cd0..09e406c7f3 100644 --- a/x/mint/types/genesis.pb.go +++ b/x/mint/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/mint/genesis.proto +// source: cosmos/mint/v1beta1/genesis.proto package types @@ -33,7 +33,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_7127215efb5183f0, []int{0} + return fileDescriptor_0e215eb1d09cd648, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -77,27 +77,28 @@ func (m *GenesisState) GetParams() Params { } func init() { - proto.RegisterType((*GenesisState)(nil), "cosmos.mint.GenesisState") + proto.RegisterType((*GenesisState)(nil), "cosmos.mint.v1beta1.GenesisState") } -func init() { proto.RegisterFile("cosmos/mint/genesis.proto", fileDescriptor_7127215efb5183f0) } +func init() { proto.RegisterFile("cosmos/mint/v1beta1/genesis.proto", fileDescriptor_0e215eb1d09cd648) } -var fileDescriptor_7127215efb5183f0 = []byte{ - // 214 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4c, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0xcf, 0xcd, 0xcc, 0x2b, 0xd1, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, - 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x86, 0x48, 0xe9, 0x81, 0xa4, 0xa4, 0x44, 0xd2, 0xf3, - 0xd3, 0xf3, 0xc1, 0xe2, 0xfa, 0x20, 0x16, 0x44, 0x89, 0x94, 0x18, 0xb2, 0x6e, 0x10, 0x01, 0x11, - 0x57, 0xea, 0x60, 0xe4, 0xe2, 0x71, 0x87, 0x18, 0x16, 0x5c, 0x92, 0x58, 0x92, 0x2a, 0x64, 0xcd, - 0xc5, 0x06, 0x92, 0x4e, 0x2d, 0x92, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x36, 0x12, 0xd6, 0x43, 0x32, - 0x5c, 0xcf, 0x17, 0x2c, 0xe5, 0xc4, 0x77, 0xe2, 0x9e, 0x3c, 0xc3, 0xaf, 0x7b, 0xf2, 0x6c, 0x10, - 0x7e, 0x10, 0x54, 0x0b, 0x48, 0x73, 0x41, 0x62, 0x51, 0x62, 0x6e, 0xb1, 0x04, 0x13, 0x16, 0xcd, - 0x01, 0x60, 0x29, 0x84, 0x66, 0x08, 0x3f, 0x08, 0xaa, 0xc5, 0xc9, 0xf9, 0xc4, 0x23, 0x39, 0xc6, - 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, - 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x34, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, - 0x73, 0xf5, 0xa1, 0xfe, 0x80, 0x50, 0xba, 0xc5, 0x29, 0xd9, 0xfa, 0x15, 0x10, 0x4f, 0x95, 0x54, - 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0xbd, 0x65, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x48, 0xae, - 0x44, 0x6c, 0x2e, 0x01, 0x00, 0x00, +var fileDescriptor_0e215eb1d09cd648 = []byte{ + // 227 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4c, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0xcf, 0xcd, 0xcc, 0x2b, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, + 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x86, + 0x28, 0xd1, 0x03, 0x29, 0xd1, 0x83, 0x2a, 0x91, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xcb, 0xeb, + 0x83, 0x58, 0x10, 0xa5, 0x52, 0x72, 0xd8, 0x4c, 0x03, 0xeb, 0x03, 0xcb, 0x2b, 0xcd, 0x60, 0xe4, + 0xe2, 0x71, 0x87, 0x18, 0x1e, 0x5c, 0x92, 0x58, 0x92, 0x2a, 0xe4, 0xcc, 0xc5, 0x06, 0x92, 0x4e, + 0x2d, 0x92, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x36, 0x92, 0xd6, 0xc3, 0x62, 0x99, 0x9e, 0x2f, 0x58, + 0x89, 0x13, 0xdf, 0x89, 0x7b, 0xf2, 0x0c, 0xbf, 0xee, 0xc9, 0xb3, 0x41, 0xf8, 0x41, 0x50, 0xad, + 0x20, 0x43, 0x0a, 0x12, 0x8b, 0x12, 0x73, 0x8b, 0x25, 0x98, 0xf0, 0x18, 0x12, 0x00, 0x56, 0x82, + 0x30, 0x04, 0xc2, 0x0f, 0x82, 0x6a, 0x75, 0x72, 0x3e, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, + 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, + 0x39, 0x86, 0x28, 0xcd, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xa8, + 0xff, 0x20, 0x94, 0x6e, 0x71, 0x4a, 0xb6, 0x7e, 0x05, 0xc4, 0xb3, 0x25, 0x95, 0x05, 0xa9, 0xc5, + 0x49, 0x6c, 0x60, 0x6f, 0x1a, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xe9, 0x38, 0xec, 0x85, 0x56, + 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/mint/types/mint.pb.go b/x/mint/types/mint.pb.go index 7460185dcd..1850887d74 100644 --- a/x/mint/types/mint.pb.go +++ b/x/mint/types/mint.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/mint/mint.proto +// source: cosmos/mint/v1beta1/mint.proto package types @@ -36,7 +36,7 @@ func (m *Minter) Reset() { *m = Minter{} } func (m *Minter) String() string { return proto.CompactTextString(m) } func (*Minter) ProtoMessage() {} func (*Minter) Descriptor() ([]byte, []int) { - return fileDescriptor_22dc6d61d55f89c8, []int{0} + return fileDescriptor_2df116d183c1e223, []int{0} } func (m *Minter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -84,7 +84,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_22dc6d61d55f89c8, []int{1} + return fileDescriptor_2df116d183c1e223, []int{1} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -128,41 +128,42 @@ func (m *Params) GetBlocksPerYear() uint64 { } func init() { - proto.RegisterType((*Minter)(nil), "cosmos.mint.Minter") - proto.RegisterType((*Params)(nil), "cosmos.mint.Params") + proto.RegisterType((*Minter)(nil), "cosmos.mint.v1beta1.Minter") + proto.RegisterType((*Params)(nil), "cosmos.mint.v1beta1.Params") } -func init() { proto.RegisterFile("cosmos/mint/mint.proto", fileDescriptor_22dc6d61d55f89c8) } +func init() { proto.RegisterFile("cosmos/mint/v1beta1/mint.proto", fileDescriptor_2df116d183c1e223) } -var fileDescriptor_22dc6d61d55f89c8 = []byte{ - // 427 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xb1, 0x6e, 0xd4, 0x30, - 0x18, 0xc7, 0x63, 0x38, 0x4e, 0x3a, 0x97, 0x0a, 0x30, 0xa5, 0x8a, 0x2a, 0x48, 0xaa, 0x0c, 0xa8, - 0x0c, 0x24, 0x03, 0x5b, 0xc7, 0xf4, 0xc4, 0x80, 0x28, 0x3a, 0x79, 0x83, 0x25, 0x72, 0x12, 0x93, - 0x5a, 0x17, 0xdb, 0x91, 0xed, 0x42, 0x6e, 0xe5, 0x09, 0x18, 0x19, 0x79, 0x0b, 0x5e, 0xa1, 0x1b, - 0x1d, 0x11, 0x43, 0x84, 0xee, 0xde, 0xa0, 0x4f, 0x80, 0x62, 0x57, 0x77, 0x70, 0x20, 0xa4, 0x48, - 0x2c, 0x49, 0xbe, 0x9f, 0xbe, 0xfc, 0x7f, 0x7f, 0x0f, 0x86, 0xfb, 0x85, 0xd4, 0x5c, 0xea, 0x84, - 0x33, 0x61, 0xec, 0x23, 0x6e, 0x94, 0x34, 0x12, 0xed, 0x38, 0x1e, 0xf7, 0xe8, 0x60, 0xaf, 0x92, - 0x95, 0xb4, 0x3c, 0xe9, 0xbf, 0xdc, 0x4a, 0xf4, 0x15, 0xc0, 0xf1, 0x29, 0x13, 0x86, 0x2a, 0xf4, - 0x12, 0x4e, 0x98, 0x78, 0x5b, 0x13, 0xc3, 0xa4, 0xf0, 0xc1, 0x21, 0x38, 0x9a, 0xa4, 0xf1, 0x45, - 0x17, 0x7a, 0xdf, 0xbb, 0xf0, 0x71, 0xc5, 0xcc, 0xd9, 0x79, 0x1e, 0x17, 0x92, 0x27, 0xd7, 0x2e, - 0xf7, 0x7a, 0xaa, 0xcb, 0x79, 0x62, 0x16, 0x0d, 0xd5, 0xf1, 0x94, 0x16, 0x78, 0x13, 0x80, 0xde, - 0xc3, 0x7b, 0x44, 0x88, 0x73, 0x52, 0x67, 0x8d, 0x92, 0xef, 0x98, 0x66, 0x52, 0x68, 0xff, 0x86, - 0x4d, 0x7d, 0x31, 0x2c, 0xf5, 0xaa, 0x0b, 0xfd, 0x05, 0xe1, 0xf5, 0x71, 0xf4, 0x47, 0x60, 0x84, - 0xef, 0x3a, 0x36, 0xdb, 0xa0, 0x2f, 0x23, 0x38, 0x9e, 0x11, 0x45, 0xb8, 0x46, 0x8f, 0x20, 0xec, - 0x8f, 0x9e, 0x95, 0x54, 0x48, 0xee, 0x8e, 0x84, 0x27, 0x3d, 0x99, 0xf6, 0x00, 0x7d, 0x00, 0xf0, - 0xc1, 0xba, 0x70, 0xa6, 0x88, 0xa1, 0x59, 0x71, 0x46, 0x44, 0x45, 0xaf, 0x7b, 0xbe, 0x1a, 0xdc, - 0xf3, 0xa1, 0xeb, 0xf9, 0xd7, 0xd0, 0x08, 0xdf, 0x5f, 0x73, 0x4c, 0x0c, 0x3d, 0xb1, 0x14, 0xcd, - 0xe1, 0xee, 0x66, 0x9d, 0x93, 0xd6, 0xbf, 0x69, 0xdd, 0xcf, 0x07, 0xbb, 0xf7, 0xb6, 0xdd, 0x9c, - 0xb4, 0x11, 0xbe, 0xbd, 0x9e, 0x4f, 0x49, 0xbb, 0x25, 0x63, 0xc2, 0x1f, 0xfd, 0x37, 0x19, 0x13, - 0xbf, 0xc9, 0x98, 0x40, 0x14, 0xee, 0x54, 0x92, 0xd4, 0x59, 0x2e, 0x45, 0x49, 0x4b, 0xff, 0x96, - 0x55, 0x4d, 0x07, 0xab, 0x90, 0x53, 0xfd, 0x12, 0x15, 0x61, 0xd8, 0x4f, 0xa9, 0x1d, 0x50, 0x0a, - 0xef, 0xe4, 0xb5, 0x2c, 0xe6, 0x3a, 0x6b, 0xa8, 0xca, 0x16, 0x94, 0x28, 0x7f, 0x7c, 0x08, 0x8e, - 0x46, 0xe9, 0xc1, 0x55, 0x17, 0xee, 0xbb, 0x9f, 0xb7, 0x16, 0x22, 0xbc, 0xeb, 0xc8, 0x8c, 0xaa, - 0xd7, 0x94, 0xa8, 0xe3, 0xd1, 0xa7, 0xcf, 0xa1, 0x97, 0x9e, 0x5c, 0x2c, 0x03, 0x70, 0xb9, 0x0c, - 0xc0, 0x8f, 0x65, 0x00, 0x3e, 0xae, 0x02, 0xef, 0x72, 0x15, 0x78, 0xdf, 0x56, 0x81, 0xf7, 0xe6, - 0xc9, 0x3f, 0xdb, 0xb6, 0xee, 0xe2, 0xd9, 0xd2, 0xf9, 0xd8, 0xde, 0xab, 0x67, 0x3f, 0x03, 0x00, - 0x00, 0xff, 0xff, 0x5e, 0x81, 0xfe, 0x84, 0x94, 0x03, 0x00, 0x00, +var fileDescriptor_2df116d183c1e223 = []byte{ + // 437 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xc1, 0x6e, 0xd3, 0x30, + 0x1c, 0xc6, 0x63, 0x28, 0x95, 0x6a, 0x98, 0x00, 0x6f, 0xa0, 0x68, 0x82, 0x64, 0xca, 0x01, 0x8d, + 0x03, 0x89, 0x26, 0x6e, 0x3b, 0x66, 0x15, 0x07, 0xc4, 0x50, 0xe5, 0x1b, 0x5c, 0xa2, 0x7f, 0x52, + 0x93, 0x59, 0x8d, 0xed, 0xca, 0xf6, 0x46, 0x7b, 0xe5, 0x09, 0x38, 0x72, 0xe4, 0x2d, 0x78, 0x85, + 0xdd, 0xd8, 0x11, 0x71, 0xa8, 0x50, 0xfb, 0x06, 0x7b, 0x02, 0x14, 0xbb, 0x6a, 0xa1, 0x20, 0xa4, + 0x4a, 0x9c, 0x92, 0xef, 0xfb, 0xff, 0xf3, 0xfd, 0xbe, 0x58, 0x32, 0x8e, 0x2a, 0x65, 0x84, 0x32, + 0x99, 0xe0, 0xd2, 0x66, 0x17, 0x47, 0x25, 0xb3, 0x70, 0xe4, 0x44, 0x3a, 0xd6, 0xca, 0x2a, 0xb2, + 0xeb, 0xe7, 0xa9, 0xb3, 0x96, 0xf3, 0xfd, 0xbd, 0x5a, 0xd5, 0xca, 0xcd, 0xb3, 0xf6, 0xcd, 0xaf, + 0x26, 0x5f, 0x11, 0xee, 0x9e, 0x72, 0x69, 0x99, 0x26, 0xaf, 0x70, 0x8f, 0xcb, 0x77, 0x0d, 0x58, + 0xae, 0x64, 0x88, 0x0e, 0xd0, 0x61, 0x2f, 0x4f, 0x2f, 0x67, 0x71, 0xf0, 0x7d, 0x16, 0x3f, 0xa9, + 0xb9, 0x3d, 0x3b, 0x2f, 0xd3, 0x4a, 0x89, 0x6c, 0xc9, 0xf6, 0x8f, 0x67, 0x66, 0x38, 0xca, 0xec, + 0x74, 0xcc, 0x4c, 0xda, 0x67, 0x15, 0x5d, 0x07, 0x90, 0xf7, 0xf8, 0x3e, 0x48, 0x79, 0x0e, 0x4d, + 0x31, 0xd6, 0xea, 0x82, 0x1b, 0xae, 0xa4, 0x09, 0x6f, 0xb8, 0xd4, 0x97, 0xdb, 0xa5, 0x5e, 0xcf, + 0xe2, 0x70, 0x0a, 0xa2, 0x39, 0x4e, 0xfe, 0x08, 0x4c, 0xe8, 0x3d, 0xef, 0x0d, 0xd6, 0xd6, 0x97, + 0x0e, 0xee, 0x0e, 0x40, 0x83, 0x30, 0xe4, 0x31, 0xc6, 0xed, 0x11, 0x14, 0x43, 0x26, 0x95, 0xf0, + 0xbf, 0x44, 0x7b, 0xad, 0xd3, 0x6f, 0x0d, 0xf2, 0x01, 0xe1, 0x07, 0xab, 0xc2, 0x85, 0x06, 0xcb, + 0x8a, 0xea, 0x0c, 0x64, 0xcd, 0x96, 0x3d, 0x5f, 0x6f, 0xdd, 0xf3, 0x91, 0xef, 0xf9, 0xd7, 0xd0, + 0x84, 0xee, 0xae, 0x7c, 0x0a, 0x96, 0x9d, 0x38, 0x97, 0x8c, 0xf0, 0xce, 0x7a, 0x5d, 0xc0, 0x24, + 0xbc, 0xe9, 0xd8, 0x2f, 0xb6, 0x66, 0xef, 0x6d, 0xb2, 0x05, 0x4c, 0x12, 0x7a, 0x67, 0xa5, 0x4f, + 0x61, 0xb2, 0x01, 0xe3, 0x32, 0xec, 0xfc, 0x37, 0x18, 0x97, 0xbf, 0xc1, 0xb8, 0x24, 0x0c, 0xdf, + 0xae, 0x15, 0x34, 0x45, 0xa9, 0xe4, 0x90, 0x0d, 0xc3, 0x5b, 0x0e, 0xd5, 0xdf, 0x1a, 0x45, 0x3c, + 0xea, 0x97, 0xa8, 0x84, 0xe2, 0x56, 0xe5, 0x4e, 0x90, 0x1c, 0xdf, 0x2d, 0x1b, 0x55, 0x8d, 0x4c, + 0x31, 0x66, 0xba, 0x98, 0x32, 0xd0, 0x61, 0xf7, 0x00, 0x1d, 0x76, 0xf2, 0xfd, 0xeb, 0x59, 0xfc, + 0xd0, 0x7f, 0xbc, 0xb1, 0x90, 0xd0, 0x1d, 0xef, 0x0c, 0x98, 0x7e, 0xc3, 0x40, 0x1f, 0x77, 0x3e, + 0x7d, 0x8e, 0x83, 0xfc, 0xe4, 0x72, 0x1e, 0xa1, 0xab, 0x79, 0x84, 0x7e, 0xcc, 0x23, 0xf4, 0x71, + 0x11, 0x05, 0x57, 0x8b, 0x28, 0xf8, 0xb6, 0x88, 0x82, 0xb7, 0x4f, 0xff, 0xd9, 0x76, 0xe2, 0x2f, + 0xa2, 0x2b, 0x5d, 0x76, 0xdd, 0xbd, 0x7a, 0xfe, 0x33, 0x00, 0x00, 0xff, 0xff, 0x34, 0x52, 0xcf, + 0x87, 0xa4, 0x03, 0x00, 0x00, } func (m *Minter) Marshal() (dAtA []byte, err error) { diff --git a/x/mint/types/query.pb.go b/x/mint/types/query.pb.go index 99316255a5..ab2799f797 100644 --- a/x/mint/types/query.pb.go +++ b/x/mint/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/mint/query.proto +// source: cosmos/mint/v1beta1/query.proto package types @@ -37,7 +37,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ec77771d7d9ad084, []int{0} + return fileDescriptor_d0a1e393be338aea, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -76,7 +76,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_ec77771d7d9ad084, []int{1} + return fileDescriptor_d0a1e393be338aea, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -120,7 +120,7 @@ func (m *QueryInflationRequest) Reset() { *m = QueryInflationRequest{} } func (m *QueryInflationRequest) String() string { return proto.CompactTextString(m) } func (*QueryInflationRequest) ProtoMessage() {} func (*QueryInflationRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ec77771d7d9ad084, []int{2} + return fileDescriptor_d0a1e393be338aea, []int{2} } func (m *QueryInflationRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -159,7 +159,7 @@ func (m *QueryInflationResponse) Reset() { *m = QueryInflationResponse{} func (m *QueryInflationResponse) String() string { return proto.CompactTextString(m) } func (*QueryInflationResponse) ProtoMessage() {} func (*QueryInflationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_ec77771d7d9ad084, []int{3} + return fileDescriptor_d0a1e393be338aea, []int{3} } func (m *QueryInflationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -196,7 +196,7 @@ func (m *QueryAnnualProvisionsRequest) Reset() { *m = QueryAnnualProvisi func (m *QueryAnnualProvisionsRequest) String() string { return proto.CompactTextString(m) } func (*QueryAnnualProvisionsRequest) ProtoMessage() {} func (*QueryAnnualProvisionsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ec77771d7d9ad084, []int{4} + return fileDescriptor_d0a1e393be338aea, []int{4} } func (m *QueryAnnualProvisionsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -235,7 +235,7 @@ func (m *QueryAnnualProvisionsResponse) Reset() { *m = QueryAnnualProvis func (m *QueryAnnualProvisionsResponse) String() string { return proto.CompactTextString(m) } func (*QueryAnnualProvisionsResponse) ProtoMessage() {} func (*QueryAnnualProvisionsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_ec77771d7d9ad084, []int{5} + return fileDescriptor_d0a1e393be338aea, []int{5} } func (m *QueryAnnualProvisionsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -265,42 +265,42 @@ func (m *QueryAnnualProvisionsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryAnnualProvisionsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.mint.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.mint.QueryParamsResponse") - proto.RegisterType((*QueryInflationRequest)(nil), "cosmos.mint.QueryInflationRequest") - proto.RegisterType((*QueryInflationResponse)(nil), "cosmos.mint.QueryInflationResponse") - proto.RegisterType((*QueryAnnualProvisionsRequest)(nil), "cosmos.mint.QueryAnnualProvisionsRequest") - proto.RegisterType((*QueryAnnualProvisionsResponse)(nil), "cosmos.mint.QueryAnnualProvisionsResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.mint.v1beta1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.mint.v1beta1.QueryParamsResponse") + proto.RegisterType((*QueryInflationRequest)(nil), "cosmos.mint.v1beta1.QueryInflationRequest") + proto.RegisterType((*QueryInflationResponse)(nil), "cosmos.mint.v1beta1.QueryInflationResponse") + proto.RegisterType((*QueryAnnualProvisionsRequest)(nil), "cosmos.mint.v1beta1.QueryAnnualProvisionsRequest") + proto.RegisterType((*QueryAnnualProvisionsResponse)(nil), "cosmos.mint.v1beta1.QueryAnnualProvisionsResponse") } -func init() { proto.RegisterFile("cosmos/mint/query.proto", fileDescriptor_ec77771d7d9ad084) } +func init() { proto.RegisterFile("cosmos/mint/v1beta1/query.proto", fileDescriptor_d0a1e393be338aea) } -var fileDescriptor_ec77771d7d9ad084 = []byte{ - // 370 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4f, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0xcf, 0xcd, 0xcc, 0x2b, 0xd1, 0x2f, 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, - 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x86, 0x48, 0xe8, 0x81, 0x24, 0xa4, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, - 0xc1, 0xe2, 0xfa, 0x20, 0x16, 0x44, 0x89, 0x94, 0x18, 0xb2, 0x5e, 0x10, 0x01, 0x11, 0x57, 0x12, - 0xe1, 0x12, 0x0a, 0x04, 0x99, 0x14, 0x90, 0x58, 0x94, 0x98, 0x5b, 0x1c, 0x94, 0x5a, 0x58, 0x9a, - 0x5a, 0x5c, 0xa2, 0xe4, 0xc1, 0x25, 0x8c, 0x22, 0x5a, 0x5c, 0x90, 0x9f, 0x57, 0x9c, 0x2a, 0x64, - 0xc8, 0xc5, 0x56, 0x00, 0x16, 0x91, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x36, 0x12, 0xd6, 0x43, 0xb2, - 0x58, 0x0f, 0xa2, 0xd8, 0x89, 0xe5, 0xc4, 0x3d, 0x79, 0x86, 0x20, 0xa8, 0x42, 0x25, 0x71, 0x2e, - 0x51, 0xb0, 0x49, 0x9e, 0x79, 0x69, 0x39, 0x89, 0x25, 0x99, 0xf9, 0x79, 0x30, 0x2b, 0xd2, 0xb8, - 0xc4, 0xd0, 0x25, 0xa0, 0xb6, 0xf8, 0x70, 0x71, 0x66, 0xc2, 0x04, 0xc1, 0x16, 0xf1, 0x38, 0xe9, - 0x81, 0xcc, 0xbc, 0x75, 0x4f, 0x5e, 0x2d, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, - 0x57, 0x1f, 0xea, 0x21, 0x08, 0xa5, 0x5b, 0x9c, 0x92, 0xad, 0x5f, 0x52, 0x59, 0x90, 0x5a, 0xac, - 0xe7, 0x92, 0x9a, 0x1c, 0x84, 0x30, 0x40, 0x49, 0x8e, 0x4b, 0x06, 0x6c, 0x8f, 0x63, 0x5e, 0x5e, - 0x69, 0x62, 0x4e, 0x40, 0x51, 0x7e, 0x59, 0x66, 0x71, 0x66, 0x7e, 0x1e, 0xdc, 0xab, 0x35, 0x5c, - 0xb2, 0x38, 0xe4, 0xa1, 0xce, 0x89, 0xe6, 0x12, 0x4c, 0x04, 0xcb, 0xc5, 0x17, 0xc0, 0x25, 0xc9, - 0x74, 0x96, 0x40, 0x22, 0x9a, 0x25, 0x46, 0xb3, 0x99, 0xb8, 0x58, 0xc1, 0xd6, 0x0b, 0xf9, 0x72, - 0xb1, 0x41, 0x02, 0x50, 0x48, 0x1e, 0x25, 0x54, 0x31, 0x63, 0x47, 0x4a, 0x01, 0xb7, 0x02, 0x88, - 0x9b, 0x95, 0x18, 0x84, 0xc2, 0xb8, 0x38, 0xe1, 0x21, 0x2b, 0xa4, 0x84, 0xa9, 0x01, 0x3d, 0x3e, - 0xa4, 0x94, 0xf1, 0xaa, 0x81, 0x9b, 0x9b, 0xcd, 0x25, 0x80, 0x1e, 0x52, 0x42, 0x9a, 0x98, 0x5a, - 0x71, 0x84, 0xb6, 0x94, 0x16, 0x31, 0x4a, 0x61, 0x96, 0x39, 0x39, 0x9f, 0x78, 0x24, 0xc7, 0x78, - 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, - 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x26, 0xde, 0x10, 0xaf, 0x80, 0x24, 0x73, 0x70, 0xc0, 0x27, - 0xb1, 0x81, 0x13, 0xba, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0xd6, 0x16, 0x13, 0xf8, 0x3e, 0x03, - 0x00, 0x00, +var fileDescriptor_d0a1e393be338aea = []byte{ + // 383 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4f, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0xcf, 0xcd, 0xcc, 0x2b, 0xd1, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, + 0x2f, 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x86, 0x28, 0xd0, + 0x03, 0x29, 0xd0, 0x83, 0x2a, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xcb, 0xeb, 0x83, 0x58, + 0x10, 0xa5, 0x52, 0x72, 0xd8, 0xcc, 0x02, 0xeb, 0x03, 0xcb, 0x2b, 0x89, 0x70, 0x09, 0x05, 0x82, + 0x4c, 0x0e, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0x0e, 0x4a, 0x2d, 0x2c, 0x4d, 0x2d, 0x2e, 0x51, 0x0a, + 0xe0, 0x12, 0x46, 0x11, 0x2d, 0x2e, 0xc8, 0xcf, 0x2b, 0x4e, 0x15, 0xb2, 0xe4, 0x62, 0x2b, 0x00, + 0x8b, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x1b, 0x49, 0xeb, 0x61, 0x71, 0x88, 0x1e, 0x44, 0x93, + 0x13, 0xcb, 0x89, 0x7b, 0xf2, 0x0c, 0x41, 0x50, 0x0d, 0x4a, 0xe2, 0x5c, 0xa2, 0x60, 0x13, 0x3d, + 0xf3, 0xd2, 0x72, 0x12, 0x4b, 0x32, 0xf3, 0xf3, 0x60, 0x56, 0xa5, 0x71, 0x89, 0xa1, 0x4b, 0x40, + 0x6d, 0xf3, 0xe1, 0xe2, 0xcc, 0x84, 0x09, 0x82, 0x2d, 0xe4, 0x71, 0xd2, 0x03, 0x99, 0x79, 0xeb, + 0x9e, 0xbc, 0x5a, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xd4, 0x83, + 0x10, 0x4a, 0xb7, 0x38, 0x25, 0x5b, 0xbf, 0xa4, 0xb2, 0x20, 0xb5, 0x58, 0xcf, 0x25, 0x35, 0x39, + 0x08, 0x61, 0x80, 0x92, 0x1c, 0x97, 0x0c, 0xd8, 0x1e, 0xc7, 0xbc, 0xbc, 0xd2, 0xc4, 0x9c, 0x80, + 0xa2, 0xfc, 0xb2, 0xcc, 0xe2, 0xcc, 0xfc, 0x3c, 0xb8, 0x97, 0x6b, 0xb8, 0x64, 0x71, 0xc8, 0x43, + 0x9d, 0x13, 0xcd, 0x25, 0x98, 0x08, 0x96, 0x8b, 0x2f, 0x80, 0x4b, 0x92, 0xe9, 0x2c, 0x81, 0x44, + 0x34, 0x4b, 0x8c, 0x4e, 0x33, 0x71, 0xb1, 0x82, 0xad, 0x17, 0x8a, 0xe5, 0x62, 0x83, 0x04, 0xa0, + 0x90, 0x3a, 0xd6, 0xd0, 0xc5, 0x8c, 0x2d, 0x29, 0x0d, 0xc2, 0x0a, 0x21, 0x7e, 0x50, 0x62, 0x10, + 0x4a, 0xe3, 0xe2, 0x84, 0x87, 0xb4, 0x90, 0x16, 0x6e, 0x8d, 0xe8, 0xf1, 0x24, 0xa5, 0x4d, 0x94, + 0x5a, 0xb8, 0x3d, 0xd5, 0x5c, 0x02, 0xe8, 0x21, 0x29, 0x64, 0x88, 0xdb, 0x08, 0x1c, 0xb1, 0x22, + 0x65, 0x44, 0x8a, 0x16, 0x98, 0xe5, 0x4e, 0xce, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, + 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, + 0xc7, 0x10, 0xa5, 0x89, 0x37, 0x86, 0x2a, 0x20, 0xd9, 0x04, 0x1c, 0x51, 0x49, 0x6c, 0xe0, 0x0c, + 0x62, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xdf, 0xed, 0xdc, 0xd3, 0x8e, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -333,7 +333,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/cosmos.mint.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.mint.v1beta1.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -342,7 +342,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) Inflation(ctx context.Context, in *QueryInflationRequest, opts ...grpc.CallOption) (*QueryInflationResponse, error) { out := new(QueryInflationResponse) - err := c.cc.Invoke(ctx, "/cosmos.mint.Query/Inflation", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.mint.v1beta1.Query/Inflation", in, out, opts...) if err != nil { return nil, err } @@ -351,7 +351,7 @@ func (c *queryClient) Inflation(ctx context.Context, in *QueryInflationRequest, func (c *queryClient) AnnualProvisions(ctx context.Context, in *QueryAnnualProvisionsRequest, opts ...grpc.CallOption) (*QueryAnnualProvisionsResponse, error) { out := new(QueryAnnualProvisionsResponse) - err := c.cc.Invoke(ctx, "/cosmos.mint.Query/AnnualProvisions", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.mint.v1beta1.Query/AnnualProvisions", in, out, opts...) if err != nil { return nil, err } @@ -396,7 +396,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.mint.Query/Params", + FullMethod: "/cosmos.mint.v1beta1.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -414,7 +414,7 @@ func _Query_Inflation_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.mint.Query/Inflation", + FullMethod: "/cosmos.mint.v1beta1.Query/Inflation", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Inflation(ctx, req.(*QueryInflationRequest)) @@ -432,7 +432,7 @@ func _Query_AnnualProvisions_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.mint.Query/AnnualProvisions", + FullMethod: "/cosmos.mint.v1beta1.Query/AnnualProvisions", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AnnualProvisions(ctx, req.(*QueryAnnualProvisionsRequest)) @@ -441,7 +441,7 @@ func _Query_AnnualProvisions_Handler(srv interface{}, ctx context.Context, dec f } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.mint.Query", + ServiceName: "cosmos.mint.v1beta1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -458,7 +458,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/mint/query.proto", + Metadata: "cosmos/mint/v1beta1/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/params/types/proposal/params.pb.go b/x/params/types/proposal/params.pb.go index 6ed21b9a1a..5a4ea0274b 100644 --- a/x/params/types/proposal/params.pb.go +++ b/x/params/types/proposal/params.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/params/params.proto +// source: cosmos/params/v1beta1/params.proto package proposal @@ -34,7 +34,7 @@ type ParameterChangeProposal struct { func (m *ParameterChangeProposal) Reset() { *m = ParameterChangeProposal{} } func (*ParameterChangeProposal) ProtoMessage() {} func (*ParameterChangeProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_5ac7103bc6a10dd8, []int{0} + return fileDescriptor_53a944ecb0483e4c, []int{0} } func (m *ParameterChangeProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -73,7 +73,7 @@ type ParamChange struct { func (m *ParamChange) Reset() { *m = ParamChange{} } func (*ParamChange) ProtoMessage() {} func (*ParamChange) Descriptor() ([]byte, []int) { - return fileDescriptor_5ac7103bc6a10dd8, []int{1} + return fileDescriptor_53a944ecb0483e4c, []int{1} } func (m *ParamChange) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -124,33 +124,36 @@ func (m *ParamChange) GetValue() string { } func init() { - proto.RegisterType((*ParameterChangeProposal)(nil), "cosmos.params.ParameterChangeProposal") - proto.RegisterType((*ParamChange)(nil), "cosmos.params.ParamChange") + proto.RegisterType((*ParameterChangeProposal)(nil), "cosmos.params.v1beta1.ParameterChangeProposal") + proto.RegisterType((*ParamChange)(nil), "cosmos.params.v1beta1.ParamChange") } -func init() { proto.RegisterFile("cosmos/params/params.proto", fileDescriptor_5ac7103bc6a10dd8) } +func init() { + proto.RegisterFile("cosmos/params/v1beta1/params.proto", fileDescriptor_53a944ecb0483e4c) +} -var fileDescriptor_5ac7103bc6a10dd8 = []byte{ - // 296 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4a, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x85, 0x51, 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, - 0x42, 0xbc, 0x10, 0x39, 0x3d, 0x88, 0xa0, 0x94, 0x48, 0x7a, 0x7e, 0x7a, 0x3e, 0x58, 0x46, 0x1f, - 0xc4, 0x82, 0x28, 0x52, 0x9a, 0xce, 0xc8, 0x25, 0x1e, 0x00, 0x52, 0x90, 0x5a, 0x92, 0x5a, 0xe4, - 0x9c, 0x91, 0x98, 0x97, 0x9e, 0x1a, 0x50, 0x94, 0x5f, 0x90, 0x5f, 0x9c, 0x98, 0x23, 0x24, 0xc2, - 0xc5, 0x5a, 0x92, 0x59, 0x92, 0x93, 0x2a, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x04, 0xe1, 0x08, - 0x29, 0x70, 0x71, 0xa7, 0xa4, 0x16, 0x27, 0x17, 0x65, 0x16, 0x94, 0x64, 0xe6, 0xe7, 0x49, 0x30, - 0x81, 0xe5, 0x90, 0x85, 0x84, 0xac, 0xb8, 0xd8, 0x93, 0xc1, 0x26, 0x15, 0x4b, 0x30, 0x2b, 0x30, - 0x6b, 0x70, 0x1b, 0x49, 0xe9, 0xa1, 0x38, 0x45, 0x0f, 0x6c, 0x21, 0xc4, 0x32, 0x27, 0x96, 0x13, - 0xf7, 0xe4, 0x19, 0x82, 0x60, 0x1a, 0xac, 0x38, 0x3a, 0x16, 0xc8, 0x33, 0xcc, 0x58, 0x20, 0xcf, - 0xa0, 0x14, 0xce, 0xc5, 0x8d, 0xa4, 0x4e, 0x48, 0x8a, 0x8b, 0xa3, 0xb8, 0x34, 0xa9, 0xb8, 0x20, - 0x31, 0x19, 0xe6, 0x1e, 0x38, 0x5f, 0x48, 0x80, 0x8b, 0x39, 0x3b, 0xb5, 0x12, 0xea, 0x14, 0x10, - 0x13, 0xe4, 0xf4, 0xb2, 0xc4, 0x9c, 0xd2, 0x54, 0x09, 0x66, 0x88, 0xd3, 0xc1, 0x1c, 0x2b, 0x16, - 0x90, 0xc1, 0x4e, 0x41, 0x2b, 0x1e, 0xc9, 0x31, 0x9e, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, - 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, - 0x1c, 0x43, 0x94, 0x49, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0x34, - 0x70, 0x21, 0x94, 0x6e, 0x71, 0x4a, 0xb6, 0x7e, 0x05, 0x2c, 0xa4, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, - 0xf5, 0x0b, 0xa0, 0x41, 0x95, 0xc4, 0x06, 0x0e, 0x4d, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, - 0x67, 0x91, 0x5a, 0x29, 0x90, 0x01, 0x00, 0x00, +var fileDescriptor_53a944ecb0483e4c = []byte{ + // 307 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4a, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, + 0x34, 0x84, 0x72, 0xf5, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0x44, 0x21, 0x6a, 0xf4, 0xa0, 0x82, + 0x50, 0x35, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x15, 0xfa, 0x20, 0x16, 0x44, 0xb1, 0xd2, + 0x7c, 0x46, 0x2e, 0xf1, 0x00, 0x90, 0xc2, 0xd4, 0x92, 0xd4, 0x22, 0xe7, 0x8c, 0xc4, 0xbc, 0xf4, + 0xd4, 0x80, 0xa2, 0xfc, 0x82, 0xfc, 0xe2, 0xc4, 0x1c, 0x21, 0x11, 0x2e, 0xd6, 0x92, 0xcc, 0x92, + 0x9c, 0x54, 0x09, 0x46, 0x05, 0x46, 0x0d, 0xce, 0x20, 0x08, 0x47, 0x48, 0x81, 0x8b, 0x3b, 0x25, + 0xb5, 0x38, 0xb9, 0x28, 0xb3, 0xa0, 0x24, 0x33, 0x3f, 0x4f, 0x82, 0x09, 0x2c, 0x87, 0x2c, 0x24, + 0xe4, 0xc4, 0xc5, 0x9e, 0x0c, 0x36, 0xa9, 0x58, 0x82, 0x59, 0x81, 0x59, 0x83, 0xdb, 0x48, 0x49, + 0x0f, 0xab, 0x93, 0xf4, 0xc0, 0x16, 0x43, 0x2c, 0x75, 0x62, 0x39, 0x71, 0x4f, 0x9e, 0x21, 0x08, + 0xa6, 0xd1, 0x8a, 0xa3, 0x63, 0x81, 0x3c, 0xc3, 0x8c, 0x05, 0xf2, 0x0c, 0x4a, 0xe1, 0x5c, 0xdc, + 0x48, 0xea, 0x84, 0xa4, 0xb8, 0x38, 0x8a, 0x4b, 0x93, 0x8a, 0x0b, 0x12, 0x93, 0x61, 0xee, 0x82, + 0xf3, 0x85, 0x04, 0xb8, 0x98, 0xb3, 0x53, 0x2b, 0xa1, 0x4e, 0x02, 0x31, 0x41, 0x5e, 0x28, 0x4b, + 0xcc, 0x29, 0x4d, 0x95, 0x60, 0x86, 0x78, 0x01, 0xcc, 0xb1, 0x62, 0x01, 0x19, 0xec, 0x14, 0xb4, + 0xe2, 0x91, 0x1c, 0xe3, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, + 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x99, 0xa4, + 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x43, 0x03, 0x1d, 0x42, 0xe9, 0x16, + 0xa7, 0x64, 0xeb, 0x57, 0xc0, 0x62, 0xa0, 0xa4, 0xb2, 0x20, 0xb5, 0x58, 0xbf, 0x00, 0x1a, 0x64, + 0x49, 0x6c, 0xe0, 0x50, 0x35, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xb7, 0x26, 0x09, 0x3d, 0xa8, + 0x01, 0x00, 0x00, } func (this *ParameterChangeProposal) Equal(that interface{}) bool { diff --git a/x/params/types/proposal/query.pb.go b/x/params/types/proposal/query.pb.go index 71b6e6830a..8d7279a67c 100644 --- a/x/params/types/proposal/query.pb.go +++ b/x/params/types/proposal/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/params/query.proto +// source: cosmos/params/v1beta1/query.proto package proposal @@ -40,7 +40,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3bc356506c43c13a, []int{0} + return fileDescriptor_2b32979c1792ccc4, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -93,7 +93,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3bc356506c43c13a, []int{1} + return fileDescriptor_2b32979c1792ccc4, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -130,32 +130,32 @@ func (m *QueryParamsResponse) GetParam() ParamChange { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.params.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.params.QueryParamsResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.params.v1beta1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.params.v1beta1.QueryParamsResponse") } -func init() { proto.RegisterFile("cosmos/params/query.proto", fileDescriptor_3bc356506c43c13a) } +func init() { proto.RegisterFile("cosmos/params/v1beta1/query.proto", fileDescriptor_2b32979c1792ccc4) } -var fileDescriptor_3bc356506c43c13a = []byte{ - // 273 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4c, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2f, 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, - 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x85, 0x48, 0xe9, 0x41, 0xa4, 0xa4, 0x44, 0xd2, 0xf3, - 0xd3, 0xf3, 0xc1, 0x32, 0xfa, 0x20, 0x16, 0x44, 0x91, 0x94, 0x14, 0xaa, 0x7e, 0x08, 0x05, 0x91, - 0x53, 0x72, 0xe2, 0x12, 0x0a, 0x04, 0x99, 0x17, 0x00, 0x16, 0x0c, 0x4a, 0x2d, 0x2c, 0x4d, 0x2d, - 0x2e, 0x11, 0x92, 0xe2, 0xe2, 0x28, 0x2e, 0x4d, 0x2a, 0x2e, 0x48, 0x4c, 0x4e, 0x95, 0x60, 0x54, - 0x60, 0xd4, 0xe0, 0x0c, 0x82, 0xf3, 0x85, 0x04, 0xb8, 0x98, 0xb3, 0x53, 0x2b, 0x25, 0x98, 0xc0, - 0xc2, 0x20, 0xa6, 0x92, 0x2f, 0x97, 0x30, 0x8a, 0x19, 0xc5, 0x05, 0xf9, 0x79, 0xc5, 0xa9, 0x42, - 0x66, 0x5c, 0xac, 0x60, 0xab, 0xc0, 0x26, 0x70, 0x1b, 0x49, 0xe9, 0xa1, 0xb8, 0x55, 0x0f, 0xac, - 0xda, 0x39, 0x23, 0x31, 0x2f, 0x3d, 0xd5, 0x89, 0xe5, 0xc4, 0x3d, 0x79, 0x86, 0x20, 0x88, 0x72, - 0xa3, 0x28, 0x2e, 0x56, 0xb0, 0x71, 0x42, 0x81, 0x5c, 0x6c, 0x10, 0x23, 0x85, 0x14, 0xd1, 0xf4, - 0x62, 0x3a, 0x59, 0x4a, 0x09, 0x9f, 0x12, 0x88, 0x8b, 0x94, 0x18, 0x9c, 0xfc, 0x4e, 0x3c, 0x92, - 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, - 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0xca, 0x24, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, - 0x39, 0x3f, 0x57, 0x1f, 0x1a, 0x5e, 0x10, 0x4a, 0xb7, 0x38, 0x25, 0x5b, 0xbf, 0x02, 0x16, 0x78, - 0x25, 0x95, 0x05, 0xa9, 0xc5, 0xfa, 0x05, 0x45, 0xf9, 0x05, 0xf9, 0xc5, 0x89, 0x39, 0x49, 0x6c, - 0xe0, 0x50, 0x34, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x85, 0xc8, 0x5e, 0x08, 0xa3, 0x01, 0x00, - 0x00, +var fileDescriptor_2b32979c1792ccc4 = []byte{ + // 284 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x90, 0xb1, 0x4e, 0xc3, 0x30, + 0x10, 0x86, 0x13, 0xa0, 0x15, 0x98, 0x05, 0x19, 0x90, 0xaa, 0x0c, 0x06, 0x32, 0x01, 0x12, 0xb6, + 0x5a, 0x98, 0x19, 0xc2, 0x8e, 0x20, 0x12, 0x0b, 0x9b, 0x13, 0xac, 0x14, 0x4a, 0x7a, 0x6e, 0xce, + 0x41, 0xe4, 0x2d, 0x78, 0xac, 0x8e, 0x1d, 0x99, 0x10, 0x4a, 0x5e, 0x04, 0xc5, 0x0e, 0x48, 0x88, + 0x22, 0x75, 0xf2, 0xf9, 0xf4, 0xdd, 0xe7, 0xf3, 0x4f, 0x8e, 0x52, 0xc0, 0x1c, 0x50, 0x68, 0x59, + 0xc8, 0x1c, 0xc5, 0xcb, 0x30, 0x51, 0x46, 0x0e, 0xc5, 0xac, 0x54, 0x45, 0xc5, 0x75, 0x01, 0x06, + 0xe8, 0xbe, 0x43, 0xb8, 0x43, 0x78, 0x87, 0x04, 0x7b, 0x19, 0x64, 0x60, 0x09, 0xd1, 0x56, 0x0e, + 0x0e, 0xc2, 0xe5, 0xbe, 0x6e, 0xd6, 0x32, 0x61, 0x44, 0xe8, 0x6d, 0xeb, 0xbf, 0xb1, 0xcd, 0x58, + 0xcd, 0x4a, 0x85, 0x86, 0x06, 0x64, 0x13, 0xcb, 0x04, 0xb5, 0x4c, 0xd5, 0xc0, 0x3f, 0xf4, 0x8f, + 0xb7, 0xe2, 0x9f, 0x3b, 0xdd, 0x21, 0xeb, 0x13, 0x55, 0x0d, 0xd6, 0x6c, 0xbb, 0x2d, 0xc3, 0x3b, + 0xb2, 0xfb, 0xcb, 0x81, 0x1a, 0xa6, 0xa8, 0xe8, 0x25, 0xe9, 0xd9, 0xa7, 0xac, 0x61, 0x7b, 0x14, + 0xf2, 0xa5, 0xbb, 0x73, 0x3b, 0x75, 0x35, 0x96, 0xd3, 0x4c, 0x45, 0x1b, 0xf3, 0x8f, 0x03, 0x2f, + 0x76, 0x63, 0xa3, 0x27, 0xd2, 0xb3, 0x5a, 0x2a, 0x49, 0xdf, 0xa9, 0xe9, 0xc9, 0x3f, 0x8e, 0xbf, + 0x5f, 0x08, 0x4e, 0x57, 0x41, 0xdd, 0xa6, 0xa1, 0x17, 0x5d, 0xcf, 0x6b, 0xe6, 0x2f, 0x6a, 0xe6, + 0x7f, 0xd6, 0xcc, 0x7f, 0x6b, 0x98, 0xb7, 0x68, 0x98, 0xf7, 0xde, 0x30, 0xef, 0xfe, 0x22, 0x7b, + 0x34, 0xe3, 0x32, 0xe1, 0x29, 0xe4, 0xa2, 0xcb, 0xd3, 0x1d, 0x67, 0xf8, 0x30, 0x11, 0xaf, 0xdf, + 0xe1, 0x9a, 0x4a, 0x2b, 0x14, 0xba, 0x00, 0x0d, 0x28, 0x9f, 0x93, 0xbe, 0x4d, 0xf7, 0xfc, 0x2b, + 0x00, 0x00, 0xff, 0xff, 0x4d, 0x73, 0x35, 0x50, 0xd3, 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -184,7 +184,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/cosmos.params.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.params.v1beta1.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -219,7 +219,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.params.Query/Params", + FullMethod: "/cosmos.params.v1beta1.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -228,7 +228,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.params.Query", + ServiceName: "cosmos.params.v1beta1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -237,7 +237,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/params/query.proto", + Metadata: "cosmos/params/v1beta1/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/slashing/types/genesis.pb.go b/x/slashing/types/genesis.pb.go index bf2515d8b1..8250f377a4 100644 --- a/x/slashing/types/genesis.pb.go +++ b/x/slashing/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/slashing/genesis.proto +// source: cosmos/slashing/v1beta1/genesis.proto package types @@ -34,7 +34,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_4742afabdd32b41b, []int{0} + return fileDescriptor_1923b9188b635394, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -94,7 +94,7 @@ func (m *SigningInfo) Reset() { *m = SigningInfo{} } func (m *SigningInfo) String() string { return proto.CompactTextString(m) } func (*SigningInfo) ProtoMessage() {} func (*SigningInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_4742afabdd32b41b, []int{1} + return fileDescriptor_1923b9188b635394, []int{1} } func (m *SigningInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -147,7 +147,7 @@ func (m *ValidatorMissedBlocks) Reset() { *m = ValidatorMissedBlocks{} } func (m *ValidatorMissedBlocks) String() string { return proto.CompactTextString(m) } func (*ValidatorMissedBlocks) ProtoMessage() {} func (*ValidatorMissedBlocks) Descriptor() ([]byte, []int) { - return fileDescriptor_4742afabdd32b41b, []int{2} + return fileDescriptor_1923b9188b635394, []int{2} } func (m *ValidatorMissedBlocks) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -200,7 +200,7 @@ func (m *MissedBlock) Reset() { *m = MissedBlock{} } func (m *MissedBlock) String() string { return proto.CompactTextString(m) } func (*MissedBlock) ProtoMessage() {} func (*MissedBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_4742afabdd32b41b, []int{3} + return fileDescriptor_1923b9188b635394, []int{3} } func (m *MissedBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -244,43 +244,45 @@ func (m *MissedBlock) GetMissed() bool { } func init() { - proto.RegisterType((*GenesisState)(nil), "cosmos.slashing.GenesisState") - proto.RegisterType((*SigningInfo)(nil), "cosmos.slashing.SigningInfo") - proto.RegisterType((*ValidatorMissedBlocks)(nil), "cosmos.slashing.ValidatorMissedBlocks") - proto.RegisterType((*MissedBlock)(nil), "cosmos.slashing.MissedBlock") + proto.RegisterType((*GenesisState)(nil), "cosmos.slashing.v1beta1.GenesisState") + proto.RegisterType((*SigningInfo)(nil), "cosmos.slashing.v1beta1.SigningInfo") + proto.RegisterType((*ValidatorMissedBlocks)(nil), "cosmos.slashing.v1beta1.ValidatorMissedBlocks") + proto.RegisterType((*MissedBlock)(nil), "cosmos.slashing.v1beta1.MissedBlock") } -func init() { proto.RegisterFile("cosmos/slashing/genesis.proto", fileDescriptor_4742afabdd32b41b) } +func init() { + proto.RegisterFile("cosmos/slashing/v1beta1/genesis.proto", fileDescriptor_1923b9188b635394) +} -var fileDescriptor_4742afabdd32b41b = []byte{ - // 421 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x52, 0x41, 0x8b, 0xd3, 0x40, - 0x18, 0xcd, 0xb4, 0x18, 0x75, 0xd2, 0x55, 0x18, 0xe2, 0x1a, 0x96, 0xdd, 0x74, 0x09, 0xac, 0xec, - 0xa5, 0x09, 0xd4, 0x9b, 0x1e, 0x84, 0x5c, 0x8a, 0x07, 0x41, 0x52, 0xf0, 0xe0, 0x25, 0x4c, 0x9b, - 0x34, 0x1d, 0x9a, 0x64, 0x4a, 0xbe, 0x58, 0xda, 0xab, 0xbf, 0x40, 0xbc, 0xfa, 0x17, 0xfc, 0x21, - 0x3d, 0xf6, 0xe8, 0xa9, 0x48, 0xfb, 0x0f, 0x3c, 0x7a, 0x92, 0xce, 0x24, 0x34, 0x4d, 0x5b, 0x61, - 0x4f, 0x9d, 0x8f, 0xf7, 0xbe, 0xf7, 0x5e, 0x5f, 0x3e, 0x7c, 0x33, 0xe4, 0x90, 0x70, 0x70, 0x20, - 0xa6, 0x30, 0x66, 0x69, 0xe4, 0x44, 0x61, 0x1a, 0x02, 0x03, 0x7b, 0x9a, 0xf1, 0x9c, 0x93, 0xe7, - 0x12, 0xb6, 0x4b, 0xf8, 0x4a, 0x8f, 0x78, 0xc4, 0x05, 0xe6, 0xec, 0x5e, 0x92, 0x76, 0x65, 0xd6, - 0x55, 0xca, 0x87, 0xc4, 0xad, 0x1f, 0x0d, 0xdc, 0xea, 0x49, 0xe1, 0x7e, 0x4e, 0xf3, 0x90, 0xbc, - 0xc3, 0xea, 0x94, 0x66, 0x34, 0x01, 0x03, 0xdd, 0xa2, 0x7b, 0xad, 0xfb, 0xd2, 0xae, 0x19, 0xd9, - 0x1f, 0x05, 0xec, 0x3e, 0x5b, 0xae, 0xdb, 0xca, 0xdf, 0x75, 0x5b, 0x95, 0xb3, 0x57, 0xac, 0x11, - 0x1f, 0x5f, 0x00, 0x8b, 0x52, 0x96, 0x46, 0x3e, 0x4b, 0x47, 0x1c, 0x8c, 0xc6, 0x6d, 0xf3, 0x5e, - 0xeb, 0x5e, 0x1f, 0xe9, 0xf4, 0x25, 0xeb, 0x7d, 0x3a, 0xe2, 0xee, 0xf5, 0x4e, 0xec, 0xcf, 0xba, - 0xad, 0x2f, 0x68, 0x12, 0xbf, 0xb1, 0x0e, 0x04, 0x2c, 0xaf, 0x05, 0x7b, 0x2a, 0x10, 0x86, 0x2f, - 0x12, 0x06, 0x10, 0x06, 0xfe, 0x20, 0xe6, 0xc3, 0x09, 0x18, 0x4d, 0x61, 0xf0, 0xea, 0xc8, 0xe0, - 0x13, 0x8d, 0x59, 0x40, 0x73, 0x9e, 0x7d, 0x10, 0x74, 0x57, 0xb0, 0xeb, 0x56, 0x07, 0x52, 0x96, - 0xd7, 0x4a, 0x2a, 0x5c, 0xeb, 0x27, 0xc2, 0x5a, 0x25, 0x26, 0x31, 0xf0, 0x63, 0x1a, 0x04, 0x59, - 0x08, 0xb2, 0x9d, 0xa7, 0x5e, 0x39, 0x92, 0xaf, 0x08, 0x5f, 0xce, 0x4a, 0x3f, 0xbf, 0x9a, 0xdf, - 0x68, 0x88, 0x1e, 0xef, 0xce, 0xc7, 0xab, 0x16, 0x71, 0x57, 0xa4, 0xbb, 0x91, 0xe9, 0x4e, 0x4b, - 0x5a, 0x9e, 0x3e, 0x3b, 0xb1, 0x6c, 0x7d, 0x47, 0xf8, 0xc5, 0xc9, 0x3f, 0xfd, 0x9f, 0xe0, 0x7e, - 0xbd, 0xcd, 0x73, 0x9f, 0xab, 0xa2, 0xf7, 0xa0, 0x0e, 0xdf, 0x62, 0xad, 0xb2, 0x4a, 0x74, 0xfc, - 0x88, 0xa5, 0x41, 0x38, 0x17, 0x39, 0x9a, 0x9e, 0x1c, 0xc8, 0x25, 0x56, 0xe5, 0x92, 0x68, 0xeb, - 0x89, 0x57, 0x4c, 0x6e, 0x6f, 0xb9, 0x31, 0xd1, 0x6a, 0x63, 0xa2, 0xdf, 0x1b, 0x13, 0x7d, 0xdb, - 0x9a, 0xca, 0x6a, 0x6b, 0x2a, 0xbf, 0xb6, 0xa6, 0xf2, 0xb9, 0x13, 0xb1, 0x7c, 0xfc, 0x65, 0x60, - 0x0f, 0x79, 0xe2, 0x14, 0x37, 0x2e, 0x7f, 0x3a, 0x10, 0x4c, 0x9c, 0xf9, 0xfe, 0xe0, 0xf3, 0xc5, - 0x34, 0x84, 0x81, 0x2a, 0xce, 0xfd, 0xf5, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7f, 0x5e, 0xb8, - 0x08, 0x56, 0x03, 0x00, 0x00, +var fileDescriptor_1923b9188b635394 = []byte{ + // 428 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x53, 0xbf, 0x6e, 0xd3, 0x40, + 0x18, 0xf7, 0x25, 0xc2, 0xc0, 0x39, 0x65, 0x38, 0x99, 0x62, 0x55, 0x60, 0x57, 0x16, 0x45, 0x5d, + 0x62, 0xab, 0x65, 0x83, 0xcd, 0x4b, 0xc4, 0x80, 0x84, 0x5c, 0x89, 0x81, 0x25, 0x3a, 0xc7, 0xd7, + 0xeb, 0xa9, 0xb6, 0x2f, 0xf8, 0x33, 0x51, 0xfb, 0x0a, 0x4c, 0xcc, 0xbc, 0x06, 0x3c, 0x44, 0xc7, + 0x8c, 0x4c, 0x11, 0x4a, 0xde, 0x80, 0x91, 0x09, 0xe5, 0xce, 0x21, 0x4e, 0x14, 0x13, 0x31, 0xd9, + 0x9f, 0xf4, 0xfb, 0xf7, 0xfd, 0x4e, 0x1f, 0x3e, 0x19, 0x49, 0xc8, 0x25, 0x84, 0x90, 0x51, 0xb8, + 0x12, 0x05, 0x0f, 0x27, 0x67, 0x09, 0xab, 0xe8, 0x59, 0xc8, 0x59, 0xc1, 0x40, 0x40, 0x30, 0x2e, + 0x65, 0x25, 0xc9, 0x13, 0x0d, 0x0b, 0x56, 0xb0, 0xa0, 0x86, 0x1d, 0xd9, 0x5c, 0x72, 0xa9, 0x30, + 0xe1, 0xf2, 0x4f, 0xc3, 0x8f, 0x5e, 0xb4, 0xa9, 0xfe, 0xe5, 0x2b, 0x9c, 0xff, 0xad, 0x83, 0x7b, + 0x03, 0x6d, 0x74, 0x51, 0xd1, 0x8a, 0x91, 0x01, 0x36, 0xc7, 0xb4, 0xa4, 0x39, 0x38, 0xe8, 0x18, + 0x9d, 0x5a, 0xe7, 0x5e, 0xd0, 0x62, 0x1c, 0xbc, 0x53, 0xb0, 0xe8, 0xd1, 0xdd, 0xcc, 0x33, 0x7e, + 0xcf, 0x3c, 0x53, 0xcf, 0x71, 0x4d, 0x27, 0x1c, 0x1f, 0x80, 0xe0, 0x85, 0x28, 0xf8, 0x50, 0x14, + 0x97, 0x12, 0x9c, 0xce, 0x71, 0xf7, 0xd4, 0x3a, 0x7f, 0xde, 0xaa, 0x77, 0xa1, 0xd1, 0x6f, 0x8a, + 0x4b, 0x19, 0x3d, 0x5d, 0x8a, 0xfe, 0x9a, 0x79, 0xf6, 0x2d, 0xcd, 0xb3, 0x57, 0xfe, 0x86, 0x90, + 0x1f, 0xf7, 0x60, 0x0d, 0x05, 0xf2, 0x11, 0x1f, 0xe4, 0x02, 0x80, 0xa5, 0xc3, 0x24, 0x93, 0xa3, + 0x6b, 0x70, 0xba, 0xca, 0x28, 0x68, 0x35, 0x7a, 0x4f, 0x33, 0x91, 0xd2, 0x4a, 0x96, 0x6f, 0x15, + 0x2d, 0x52, 0xac, 0x6d, 0xcb, 0x0d, 0x49, 0x3f, 0xee, 0xe5, 0x0d, 0xac, 0xff, 0x1d, 0x61, 0xab, + 0x11, 0x97, 0x38, 0xf8, 0x3e, 0x4d, 0xd3, 0x92, 0x81, 0x6e, 0xed, 0x61, 0xbc, 0x1a, 0xc9, 0x67, + 0x84, 0x0f, 0x27, 0x2b, 0xbf, 0x61, 0x73, 0x0f, 0xa7, 0xa3, 0xfa, 0xed, 0xef, 0x8f, 0xd9, 0x2c, + 0xe6, 0xa4, 0x4e, 0xf9, 0x4c, 0xa7, 0xdc, 0x2d, 0xed, 0xc7, 0xf6, 0x64, 0x07, 0xd9, 0xff, 0x8a, + 0xf0, 0xe3, 0x9d, 0xcb, 0xff, 0x63, 0x01, 0xbe, 0xdd, 0xee, 0xbe, 0x67, 0x6c, 0xe8, 0xfe, 0x57, + 0xa7, 0xaf, 0xb1, 0xd5, 0xa0, 0x12, 0x1b, 0xdf, 0x13, 0x45, 0xca, 0x6e, 0x54, 0x9e, 0x6e, 0xac, + 0x07, 0x72, 0x88, 0x4d, 0x4d, 0x52, 0xed, 0x3d, 0x88, 0xeb, 0x29, 0x1a, 0xdc, 0xcd, 0x5d, 0x34, + 0x9d, 0xbb, 0xe8, 0xe7, 0xdc, 0x45, 0x5f, 0x16, 0xae, 0x31, 0x5d, 0xb8, 0xc6, 0x8f, 0x85, 0x6b, + 0x7c, 0xe8, 0x73, 0x51, 0x5d, 0x7d, 0x4a, 0x82, 0x91, 0xcc, 0xc3, 0xfa, 0x26, 0xf4, 0xa7, 0x0f, + 0xe9, 0x75, 0x78, 0xb3, 0x3e, 0x90, 0xea, 0x76, 0xcc, 0x20, 0x31, 0xd5, 0x59, 0xbc, 0xfc, 0x13, + 0x00, 0x00, 0xff, 0xff, 0xc1, 0x5d, 0x5c, 0xef, 0x96, 0x03, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/slashing/types/query.pb.go b/x/slashing/types/query.pb.go index 7135b308e6..6e0b591435 100644 --- a/x/slashing/types/query.pb.go +++ b/x/slashing/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/slashing/query.proto +// source: cosmos/slashing/v1beta1/query.proto package types @@ -38,7 +38,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_12bf00fd6c136588, []int{0} + return fileDescriptor_791b11d41a861ed0, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -76,7 +76,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_12bf00fd6c136588, []int{1} + return fileDescriptor_791b11d41a861ed0, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -122,7 +122,7 @@ func (m *QuerySigningInfoRequest) Reset() { *m = QuerySigningInfoRequest func (m *QuerySigningInfoRequest) String() string { return proto.CompactTextString(m) } func (*QuerySigningInfoRequest) ProtoMessage() {} func (*QuerySigningInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_12bf00fd6c136588, []int{2} + return fileDescriptor_791b11d41a861ed0, []int{2} } func (m *QuerySigningInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -168,7 +168,7 @@ func (m *QuerySigningInfoResponse) Reset() { *m = QuerySigningInfoRespon func (m *QuerySigningInfoResponse) String() string { return proto.CompactTextString(m) } func (*QuerySigningInfoResponse) ProtoMessage() {} func (*QuerySigningInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_12bf00fd6c136588, []int{3} + return fileDescriptor_791b11d41a861ed0, []int{3} } func (m *QuerySigningInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -213,7 +213,7 @@ func (m *QuerySigningInfosRequest) Reset() { *m = QuerySigningInfosReque func (m *QuerySigningInfosRequest) String() string { return proto.CompactTextString(m) } func (*QuerySigningInfosRequest) ProtoMessage() {} func (*QuerySigningInfosRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_12bf00fd6c136588, []int{4} + return fileDescriptor_791b11d41a861ed0, []int{4} } func (m *QuerySigningInfosRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -260,7 +260,7 @@ func (m *QuerySigningInfosResponse) Reset() { *m = QuerySigningInfosResp func (m *QuerySigningInfosResponse) String() string { return proto.CompactTextString(m) } func (*QuerySigningInfosResponse) ProtoMessage() {} func (*QuerySigningInfosResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_12bf00fd6c136588, []int{5} + return fileDescriptor_791b11d41a861ed0, []int{5} } func (m *QuerySigningInfosResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -304,47 +304,50 @@ func (m *QuerySigningInfosResponse) GetPagination() *query.PageResponse { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.slashing.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.slashing.QueryParamsResponse") - proto.RegisterType((*QuerySigningInfoRequest)(nil), "cosmos.slashing.QuerySigningInfoRequest") - proto.RegisterType((*QuerySigningInfoResponse)(nil), "cosmos.slashing.QuerySigningInfoResponse") - proto.RegisterType((*QuerySigningInfosRequest)(nil), "cosmos.slashing.QuerySigningInfosRequest") - proto.RegisterType((*QuerySigningInfosResponse)(nil), "cosmos.slashing.QuerySigningInfosResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.slashing.v1beta1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.slashing.v1beta1.QueryParamsResponse") + proto.RegisterType((*QuerySigningInfoRequest)(nil), "cosmos.slashing.v1beta1.QuerySigningInfoRequest") + proto.RegisterType((*QuerySigningInfoResponse)(nil), "cosmos.slashing.v1beta1.QuerySigningInfoResponse") + proto.RegisterType((*QuerySigningInfosRequest)(nil), "cosmos.slashing.v1beta1.QuerySigningInfosRequest") + proto.RegisterType((*QuerySigningInfosResponse)(nil), "cosmos.slashing.v1beta1.QuerySigningInfosResponse") } -func init() { proto.RegisterFile("cosmos/slashing/query.proto", fileDescriptor_12bf00fd6c136588) } +func init() { + proto.RegisterFile("cosmos/slashing/v1beta1/query.proto", fileDescriptor_791b11d41a861ed0) +} -var fileDescriptor_12bf00fd6c136588 = []byte{ - // 459 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x53, 0xb1, 0x8e, 0xd3, 0x40, - 0x10, 0xb5, 0x8f, 0x23, 0xc5, 0x24, 0x02, 0xb4, 0x9c, 0x74, 0x77, 0x46, 0xf8, 0x90, 0x01, 0xe9, - 0x40, 0x3a, 0x5b, 0x0a, 0xa2, 0x80, 0x06, 0x11, 0x0a, 0x84, 0x44, 0x71, 0x18, 0x99, 0x82, 0x26, - 0xda, 0xd8, 0xce, 0x66, 0x85, 0xb3, 0xeb, 0x78, 0x9d, 0x88, 0xfc, 0x05, 0x25, 0x3f, 0xc1, 0x7f, - 0xa4, 0x4c, 0x49, 0x15, 0xa1, 0xe4, 0x2f, 0xa8, 0x50, 0x76, 0xd7, 0x89, 0x13, 0x47, 0x21, 0x57, - 0x79, 0x3d, 0xf3, 0x66, 0xde, 0x7b, 0x3b, 0xb3, 0xf0, 0x20, 0xe4, 0xa2, 0xcf, 0x85, 0x27, 0x12, - 0x2c, 0x7a, 0x94, 0x11, 0x6f, 0x30, 0x8c, 0xb3, 0xb1, 0x9b, 0x66, 0x3c, 0xe7, 0xe8, 0xae, 0x4a, - 0xba, 0x45, 0xd2, 0x7a, 0xa8, 0xd1, 0x12, 0xe4, 0xa5, 0x98, 0x50, 0x86, 0x73, 0xca, 0x99, 0xc2, - 0x5b, 0x27, 0x84, 0x13, 0x2e, 0x8f, 0xde, 0xf2, 0xa4, 0xa3, 0xf6, 0x36, 0x45, 0x71, 0x50, 0x79, - 0xe7, 0x04, 0xd0, 0xa7, 0x65, 0xbf, 0x6b, 0x9c, 0xe1, 0xbe, 0xf0, 0xe3, 0xc1, 0x30, 0x16, 0xb9, - 0xf3, 0x11, 0xee, 0x6f, 0x44, 0x45, 0xca, 0x99, 0x88, 0xd1, 0x4b, 0xa8, 0xa5, 0x32, 0x72, 0x66, - 0x3e, 0x32, 0x2f, 0xeb, 0xcd, 0x53, 0x77, 0x4b, 0xa3, 0xab, 0x0a, 0x5a, 0xc7, 0x93, 0xd9, 0x85, - 0xe1, 0x6b, 0xb0, 0x93, 0xc2, 0xa9, 0xec, 0xf6, 0x99, 0x12, 0x46, 0x19, 0xf9, 0xc0, 0xba, 0x5c, - 0x13, 0xa1, 0x00, 0x1a, 0x21, 0x67, 0xa2, 0x8d, 0xa3, 0x28, 0x8b, 0x85, 0xea, 0xdb, 0x68, 0x35, - 0xff, 0xce, 0x2e, 0x5c, 0x42, 0xf3, 0xde, 0xb0, 0xe3, 0x86, 0xbc, 0xef, 0x69, 0x0f, 0xea, 0x73, - 0x25, 0xa2, 0x6f, 0x5e, 0x3e, 0x4e, 0x63, 0xe1, 0xbe, 0xe3, 0x4c, 0xbc, 0x55, 0x95, 0x7e, 0x3d, - 0x5c, 0xff, 0x38, 0x03, 0x38, 0xab, 0x32, 0x6a, 0x13, 0x01, 0xdc, 0x1b, 0xe1, 0xa4, 0x2d, 0x54, - 0xaa, 0x4d, 0x59, 0x97, 0x6b, 0x3b, 0x4f, 0x2b, 0x76, 0xbe, 0xe0, 0x84, 0x46, 0x38, 0xe7, 0x59, - 0xa9, 0x91, 0x36, 0x77, 0x67, 0x84, 0x93, 0x52, 0xd4, 0x09, 0xaa, 0x94, 0xc5, 0x75, 0xa2, 0x57, - 0x00, 0xeb, 0x71, 0x69, 0xb2, 0xf3, 0x82, 0x4c, 0xcd, 0xfc, 0x1a, 0x93, 0x58, 0xc3, 0xfd, 0x12, - 0xd8, 0xf9, 0x69, 0xc2, 0xf9, 0x8e, 0xbe, 0xda, 0xcb, 0x1b, 0x38, 0xd6, 0xfa, 0x6f, 0xdd, 0x54, - 0xbf, 0x2c, 0x44, 0xaf, 0x37, 0x94, 0x1d, 0x49, 0x65, 0xd6, 0x2e, 0x65, 0x8a, 0xb0, 0x2c, 0xad, - 0xf9, 0xeb, 0x08, 0x6e, 0x4b, 0x69, 0x28, 0x80, 0x9a, 0x1a, 0x3c, 0x7a, 0x5c, 0x91, 0x50, 0xdd, - 0x2e, 0xeb, 0xc9, 0x7e, 0x90, 0xa2, 0x72, 0x0c, 0x14, 0x41, 0xbd, 0xa4, 0x1b, 0x5d, 0xee, 0x2e, - 0xab, 0x6e, 0x95, 0xf5, 0xec, 0x00, 0xe4, 0x8a, 0x85, 0x40, 0xa3, 0x7c, 0xb7, 0xe8, 0xff, 0xc5, - 0x2b, 0x23, 0xcf, 0x0f, 0x81, 0x16, 0x44, 0xad, 0xf7, 0x93, 0xb9, 0x6d, 0x4e, 0xe7, 0xb6, 0xf9, - 0x67, 0x6e, 0x9b, 0x3f, 0x16, 0xb6, 0x31, 0x5d, 0xd8, 0xc6, 0xef, 0x85, 0x6d, 0x7c, 0xbd, 0xda, - 0xbb, 0xeb, 0xdf, 0xd7, 0x8f, 0x57, 0xae, 0x7d, 0xa7, 0x26, 0x9f, 0xee, 0x8b, 0x7f, 0x01, 0x00, - 0x00, 0xff, 0xff, 0x59, 0xd0, 0x27, 0x68, 0x3f, 0x04, 0x00, 0x00, +var fileDescriptor_791b11d41a861ed0 = []byte{ + // 474 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xcf, 0x6e, 0xd3, 0x30, + 0x18, 0x4f, 0xc6, 0xe8, 0xe1, 0x6b, 0x85, 0x90, 0x99, 0xb4, 0xd1, 0x43, 0x8a, 0x82, 0x34, 0x10, + 0x50, 0x87, 0x96, 0x33, 0x07, 0x8a, 0x44, 0xc5, 0x0d, 0xca, 0x9f, 0x03, 0x12, 0xaa, 0x9c, 0xd6, + 0xf3, 0x2c, 0x5a, 0x3b, 0x8b, 0xdd, 0x42, 0xdf, 0x82, 0x17, 0xe1, 0x3d, 0x76, 0xdc, 0x91, 0x0b, + 0x13, 0x6a, 0xdf, 0x82, 0x13, 0xaa, 0xed, 0x26, 0x99, 0x42, 0xc6, 0xba, 0x53, 0xdd, 0x2f, 0xdf, + 0xef, 0x9f, 0xfd, 0xd9, 0x70, 0x7f, 0x24, 0xd5, 0x54, 0xaa, 0x48, 0x4d, 0x88, 0x3a, 0xe6, 0x82, + 0x45, 0xf3, 0x4e, 0x4c, 0x35, 0xe9, 0x44, 0x27, 0x33, 0x9a, 0x2e, 0x70, 0x92, 0x4a, 0x2d, 0xd1, + 0xbe, 0x6d, 0xc2, 0x9b, 0x26, 0xec, 0x9a, 0x9a, 0x8f, 0x1c, 0x3a, 0x26, 0x8a, 0x5a, 0x44, 0x86, + 0x4f, 0x08, 0xe3, 0x82, 0x68, 0x2e, 0x85, 0x25, 0x69, 0xee, 0x31, 0xc9, 0xa4, 0x59, 0x46, 0xeb, + 0x95, 0xab, 0x1e, 0x56, 0xe9, 0x67, 0x5a, 0xa6, 0x2f, 0xdc, 0x03, 0xf4, 0x76, 0xcd, 0xff, 0x86, + 0xa4, 0x64, 0xaa, 0x06, 0xf4, 0x64, 0x46, 0x95, 0x0e, 0xdf, 0xc3, 0x9d, 0x0b, 0x55, 0x95, 0x48, + 0xa1, 0x28, 0x7a, 0x0e, 0xb5, 0xc4, 0x54, 0x0e, 0xfc, 0x7b, 0xfe, 0xc3, 0x7a, 0xb7, 0x85, 0x2b, + 0x02, 0x60, 0x0b, 0xec, 0xed, 0x9e, 0x9e, 0xb7, 0xbc, 0x81, 0x03, 0x85, 0x09, 0xec, 0x1b, 0xd6, + 0x77, 0x9c, 0x09, 0x2e, 0xd8, 0x6b, 0x71, 0x24, 0x9d, 0x20, 0xfa, 0x00, 0x8d, 0x91, 0x14, 0x6a, + 0x48, 0xc6, 0xe3, 0x94, 0x2a, 0xcb, 0xdf, 0xe8, 0x75, 0xff, 0x9c, 0xb7, 0x30, 0xe3, 0xfa, 0x78, + 0x16, 0xe3, 0x91, 0x9c, 0x46, 0x2e, 0x93, 0xfd, 0x69, 0xab, 0xf1, 0x97, 0x48, 0x2f, 0x12, 0xaa, + 0xf0, 0x4b, 0x29, 0xd4, 0x0b, 0x8b, 0x1c, 0xd4, 0x47, 0xf9, 0x9f, 0x70, 0x01, 0x07, 0x65, 0x45, + 0x17, 0xe6, 0x33, 0xdc, 0x9e, 0x93, 0xc9, 0x50, 0xd9, 0x4f, 0x43, 0x2e, 0x8e, 0xa4, 0x8b, 0xd5, + 0xae, 0x8c, 0xf5, 0x91, 0x4c, 0xf8, 0x98, 0x68, 0x99, 0x16, 0x08, 0x5d, 0xc8, 0x5b, 0x73, 0x32, + 0x29, 0x54, 0xc3, 0xb8, 0x2c, 0xbd, 0xd9, 0x5e, 0xf4, 0x0a, 0x20, 0x3f, 0x46, 0x27, 0x7a, 0xb8, + 0x11, 0x5d, 0x9f, 0x39, 0xb6, 0x53, 0x92, 0xef, 0x26, 0xa3, 0x0e, 0x3b, 0x28, 0x20, 0xc3, 0x1f, + 0x3e, 0xdc, 0xfd, 0x87, 0x88, 0x0b, 0xd8, 0x87, 0x5d, 0x17, 0xea, 0xc6, 0x75, 0x43, 0x19, 0x02, + 0xd4, 0xbf, 0x60, 0x77, 0xc7, 0xd8, 0x7d, 0xf0, 0x5f, 0xbb, 0xd6, 0x45, 0xd1, 0x6f, 0xf7, 0xd7, + 0x0e, 0xdc, 0x34, 0x7e, 0x11, 0x85, 0x9a, 0x1d, 0x11, 0xf4, 0xb8, 0xd2, 0x57, 0x79, 0x2e, 0x9b, + 0x4f, 0xae, 0xd6, 0x6c, 0xa5, 0x43, 0x0f, 0x69, 0xa8, 0x17, 0x42, 0xa1, 0xa7, 0x97, 0xc3, 0xcb, + 0x73, 0xd9, 0xec, 0x6c, 0x81, 0xc8, 0x54, 0xbf, 0x42, 0xa3, 0x78, 0x20, 0xe8, 0xea, 0x24, 0x59, + 0xd0, 0xee, 0x36, 0x90, 0x8d, 0x70, 0xaf, 0x7f, 0xba, 0x0c, 0xfc, 0xb3, 0x65, 0xe0, 0xff, 0x5e, + 0x06, 0xfe, 0xf7, 0x55, 0xe0, 0x9d, 0xad, 0x02, 0xef, 0xe7, 0x2a, 0xf0, 0x3e, 0xb5, 0x2f, 0xbd, + 0x45, 0xdf, 0xf2, 0x67, 0xc2, 0x5c, 0xa8, 0xb8, 0x66, 0x1e, 0x87, 0x67, 0x7f, 0x03, 0x00, 0x00, + 0xff, 0xff, 0x5d, 0x6e, 0xeb, 0xc5, 0xc6, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -377,7 +380,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/cosmos.slashing.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.slashing.v1beta1.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -386,7 +389,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) SigningInfo(ctx context.Context, in *QuerySigningInfoRequest, opts ...grpc.CallOption) (*QuerySigningInfoResponse, error) { out := new(QuerySigningInfoResponse) - err := c.cc.Invoke(ctx, "/cosmos.slashing.Query/SigningInfo", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.slashing.v1beta1.Query/SigningInfo", in, out, opts...) if err != nil { return nil, err } @@ -395,7 +398,7 @@ func (c *queryClient) SigningInfo(ctx context.Context, in *QuerySigningInfoReque func (c *queryClient) SigningInfos(ctx context.Context, in *QuerySigningInfosRequest, opts ...grpc.CallOption) (*QuerySigningInfosResponse, error) { out := new(QuerySigningInfosResponse) - err := c.cc.Invoke(ctx, "/cosmos.slashing.Query/SigningInfos", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.slashing.v1beta1.Query/SigningInfos", in, out, opts...) if err != nil { return nil, err } @@ -440,7 +443,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.slashing.Query/Params", + FullMethod: "/cosmos.slashing.v1beta1.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -458,7 +461,7 @@ func _Query_SigningInfo_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.slashing.Query/SigningInfo", + FullMethod: "/cosmos.slashing.v1beta1.Query/SigningInfo", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).SigningInfo(ctx, req.(*QuerySigningInfoRequest)) @@ -476,7 +479,7 @@ func _Query_SigningInfos_Handler(srv interface{}, ctx context.Context, dec func( } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.slashing.Query/SigningInfos", + FullMethod: "/cosmos.slashing.v1beta1.Query/SigningInfos", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).SigningInfos(ctx, req.(*QuerySigningInfosRequest)) @@ -485,7 +488,7 @@ func _Query_SigningInfos_Handler(srv interface{}, ctx context.Context, dec func( } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.slashing.Query", + ServiceName: "cosmos.slashing.v1beta1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -502,7 +505,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/slashing/query.proto", + Metadata: "cosmos/slashing/v1beta1/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/slashing/types/slashing.pb.go b/x/slashing/types/slashing.pb.go index 93d5ed02b5..2ddc8ea0b1 100644 --- a/x/slashing/types/slashing.pb.go +++ b/x/slashing/types/slashing.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/slashing/slashing.proto +// source: cosmos/slashing/v1beta1/slashing.proto package types @@ -30,51 +30,6 @@ var _ = time.Kitchen // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package -// MsgUnjail - struct for unjailing jailed validator -type MsgUnjail struct { - ValidatorAddr github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,1,opt,name=validator_addr,json=validatorAddr,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"address" yaml:"address"` -} - -func (m *MsgUnjail) Reset() { *m = MsgUnjail{} } -func (m *MsgUnjail) String() string { return proto.CompactTextString(m) } -func (*MsgUnjail) ProtoMessage() {} -func (*MsgUnjail) Descriptor() ([]byte, []int) { - return fileDescriptor_3d04e6c6c2071212, []int{0} -} -func (m *MsgUnjail) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgUnjail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgUnjail.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgUnjail) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgUnjail.Merge(m, src) -} -func (m *MsgUnjail) XXX_Size() int { - return m.Size() -} -func (m *MsgUnjail) XXX_DiscardUnknown() { - xxx_messageInfo_MsgUnjail.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgUnjail proto.InternalMessageInfo - -func (m *MsgUnjail) GetValidatorAddr() github_com_cosmos_cosmos_sdk_types.ValAddress { - if m != nil { - return m.ValidatorAddr - } - return nil -} - // ValidatorSigningInfo defines the signing info for a validator type ValidatorSigningInfo struct { Address github_com_cosmos_cosmos_sdk_types.ConsAddress `protobuf:"bytes,1,opt,name=address,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ConsAddress" json:"address,omitempty"` @@ -93,7 +48,7 @@ type ValidatorSigningInfo struct { func (m *ValidatorSigningInfo) Reset() { *m = ValidatorSigningInfo{} } func (*ValidatorSigningInfo) ProtoMessage() {} func (*ValidatorSigningInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_3d04e6c6c2071212, []int{1} + return fileDescriptor_1078e5d96a74cc52, []int{0} } func (m *ValidatorSigningInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -177,7 +132,7 @@ func (m *Params) Reset() { *m = Params{} } func (m *Params) String() string { return proto.CompactTextString(m) } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_3d04e6c6c2071212, []int{2} + return fileDescriptor_1078e5d96a74cc52, []int{1} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -221,85 +176,59 @@ func (m *Params) GetDowntimeJailDuration() time.Duration { } func init() { - proto.RegisterType((*MsgUnjail)(nil), "cosmos.slashing.MsgUnjail") - proto.RegisterType((*ValidatorSigningInfo)(nil), "cosmos.slashing.ValidatorSigningInfo") - proto.RegisterType((*Params)(nil), "cosmos.slashing.Params") + proto.RegisterType((*ValidatorSigningInfo)(nil), "cosmos.slashing.v1beta1.ValidatorSigningInfo") + proto.RegisterType((*Params)(nil), "cosmos.slashing.v1beta1.Params") } -func init() { proto.RegisterFile("cosmos/slashing/slashing.proto", fileDescriptor_3d04e6c6c2071212) } - -var fileDescriptor_3d04e6c6c2071212 = []byte{ - // 693 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0xbd, 0x6f, 0xd3, 0x4e, - 0x18, 0xce, 0x35, 0xfd, 0xf5, 0x57, 0x2e, 0xa1, 0x48, 0x6e, 0x4a, 0x43, 0x00, 0x5f, 0xf0, 0x80, - 0xc2, 0x50, 0x47, 0x2a, 0x5b, 0x37, 0xdc, 0x0a, 0xf1, 0x4d, 0x71, 0x3f, 0x90, 0x18, 0xb0, 0x9c, - 0xf8, 0xe2, 0x1c, 0xb5, 0xef, 0x22, 0xdf, 0x99, 0xb6, 0x6c, 0x30, 0x31, 0x76, 0xec, 0xd8, 0x91, - 0x3f, 0x82, 0x3f, 0xa0, 0x63, 0x47, 0xc4, 0x60, 0x50, 0xba, 0x20, 0xc6, 0x6c, 0x74, 0x42, 0xbe, - 0xb3, 0xdb, 0xa8, 0x4d, 0x51, 0x3b, 0xd9, 0xef, 0xf3, 0xbc, 0x5f, 0xf7, 0x3e, 0xef, 0x1d, 0xd4, - 0xdb, 0x8c, 0x87, 0x8c, 0x37, 0x79, 0xe0, 0xf2, 0x2e, 0xa1, 0xfe, 0xf1, 0x8f, 0xd9, 0x8b, 0x98, - 0x60, 0xda, 0x35, 0xc5, 0x9b, 0x39, 0x5c, 0xab, 0xf8, 0xcc, 0x67, 0x92, 0x6b, 0xa6, 0x7f, 0xca, - 0xad, 0xa6, 0xfb, 0x8c, 0xf9, 0x01, 0x6e, 0x4a, 0xab, 0x15, 0x77, 0x9a, 0x5e, 0x1c, 0xb9, 0x82, - 0x30, 0x9a, 0xf1, 0xe8, 0x34, 0x2f, 0x48, 0x88, 0xb9, 0x70, 0xc3, 0x9e, 0x72, 0x30, 0x3e, 0x01, - 0x78, 0xe5, 0x39, 0xf7, 0xd7, 0xe8, 0x3b, 0x97, 0x04, 0x5a, 0x0c, 0xa7, 0xde, 0xbb, 0x01, 0xf1, - 0x5c, 0xc1, 0x22, 0xc7, 0xf5, 0xbc, 0xa8, 0x0a, 0xea, 0xa0, 0x51, 0xb6, 0x5e, 0xfc, 0x4e, 0xd0, - 0xff, 0xa9, 0x8d, 0x39, 0x1f, 0x24, 0x68, 0x6a, 0xdb, 0x0d, 0x83, 0x05, 0x23, 0x03, 0x8c, 0xa3, - 0x04, 0xcd, 0xf9, 0x44, 0x74, 0xe3, 0x96, 0xd9, 0x66, 0x61, 0x33, 0x3b, 0x99, 0xfa, 0xcc, 0x71, - 0x6f, 0xa3, 0x29, 0xb6, 0x7b, 0x98, 0x9b, 0xeb, 0x6e, 0xf0, 0x40, 0x45, 0xd8, 0x57, 0x8f, 0xab, - 0xa4, 0x88, 0xf1, 0xb5, 0x08, 0x2b, 0xeb, 0x39, 0xb2, 0x42, 0x7c, 0x4a, 0xa8, 0xff, 0x98, 0x76, - 0x98, 0xf6, 0x0c, 0xe6, 0x55, 0xb3, 0x46, 0xe6, 0x8f, 0x12, 0x64, 0x5e, 0xa0, 0xd6, 0x22, 0xa3, - 0x3c, 0x2f, 0x96, 0xa7, 0xd0, 0x16, 0x60, 0x99, 0x0b, 0x37, 0x12, 0x4e, 0x17, 0x13, 0xbf, 0x2b, - 0xaa, 0x63, 0x75, 0xd0, 0x28, 0x5a, 0xb3, 0x83, 0x04, 0x4d, 0xab, 0x03, 0x0d, 0xb3, 0x86, 0x5d, - 0x92, 0xe6, 0x23, 0x69, 0xa5, 0xb1, 0x84, 0x7a, 0x78, 0xcb, 0x61, 0x9d, 0x0e, 0xc7, 0xa2, 0x5a, - 0x3c, 0x1d, 0x3b, 0xcc, 0x1a, 0x76, 0x49, 0x9a, 0x2f, 0xa5, 0xa5, 0xbd, 0x85, 0xe5, 0x74, 0xba, - 0xd8, 0x73, 0x62, 0x2a, 0x48, 0x50, 0x1d, 0xaf, 0x83, 0x46, 0x69, 0xbe, 0x66, 0x2a, 0x6d, 0xcc, - 0x5c, 0x1b, 0x73, 0x35, 0xd7, 0xc6, 0x42, 0xfb, 0x09, 0x2a, 0x9c, 0xe4, 0x1e, 0x8e, 0x36, 0x76, - 0x7e, 0x20, 0x60, 0x97, 0x14, 0xb4, 0x96, 0x22, 0x9a, 0x0e, 0xa1, 0x60, 0x61, 0x8b, 0x0b, 0x46, - 0xb1, 0x57, 0xfd, 0xaf, 0x0e, 0x1a, 0x93, 0xf6, 0x10, 0xa2, 0xad, 0xc2, 0x99, 0x90, 0x70, 0x8e, - 0x3d, 0xa7, 0x15, 0xb0, 0xf6, 0x06, 0x77, 0xda, 0x2c, 0xa6, 0x02, 0x47, 0xd5, 0x09, 0x79, 0x88, - 0xfa, 0x20, 0x41, 0xb7, 0x54, 0xa1, 0x91, 0x6e, 0x86, 0x3d, 0xad, 0x70, 0x4b, 0xc2, 0x8b, 0x0a, - 0x5d, 0x98, 0xdc, 0xdd, 0x43, 0x85, 0x5f, 0x7b, 0x08, 0x18, 0x7f, 0xc6, 0xe1, 0xc4, 0xb2, 0x1b, - 0xb9, 0x21, 0xd7, 0x5e, 0xc1, 0x0a, 0x27, 0x3e, 0x3d, 0xc9, 0xb1, 0x49, 0xa8, 0xc7, 0x36, 0xa5, - 0x7a, 0x45, 0x0b, 0x0d, 0x12, 0x74, 0x33, 0x1b, 0xf5, 0x08, 0x2f, 0xc3, 0xd6, 0x14, 0xac, 0x0a, - 0xbd, 0x96, 0xa0, 0xf6, 0x11, 0xa4, 0xed, 0x53, 0x27, 0x8b, 0xe8, 0xe1, 0x28, 0x4f, 0x3a, 0xa6, - 0x76, 0x33, 0x9d, 0xd5, 0xf7, 0x04, 0xdd, 0xbd, 0xc0, 0x5a, 0x2c, 0xe1, 0xf6, 0xf0, 0x61, 0x47, - 0x24, 0x35, 0x6c, 0x2d, 0x24, 0x74, 0x45, 0xc2, 0xcb, 0x38, 0xca, 0x7a, 0xf8, 0x00, 0xaf, 0x7b, - 0x6c, 0x93, 0xa6, 0x97, 0xc7, 0x49, 0x27, 0xef, 0xe4, 0xd7, 0x4c, 0xee, 0x41, 0x69, 0xfe, 0xc6, - 0x19, 0x2d, 0x97, 0x32, 0x07, 0xeb, 0x5e, 0x26, 0xe5, 0x6d, 0x55, 0x74, 0x74, 0x1a, 0x63, 0x37, - 0x15, 0xb5, 0x92, 0x93, 0x4f, 0x5c, 0x12, 0xe4, 0x09, 0xb4, 0x1d, 0x00, 0x6b, 0xf2, 0x15, 0x70, - 0x3a, 0x91, 0xdb, 0x4e, 0x21, 0xc7, 0x63, 0x71, 0x2b, 0xc0, 0xb2, 0x79, 0xb9, 0x4c, 0x65, 0x6b, - 0xe5, 0xd2, 0x43, 0xb8, 0x93, 0xe9, 0x70, 0x6e, 0x66, 0xc3, 0x9e, 0x95, 0xe4, 0xc3, 0x8c, 0x5b, - 0x92, 0x54, 0x3a, 0x19, 0xed, 0x33, 0x80, 0xb3, 0x67, 0x02, 0x55, 0xeb, 0x72, 0xfd, 0xca, 0xd6, - 0xf2, 0xa5, 0xfb, 0xd1, 0xcf, 0xe9, 0x47, 0xa5, 0x35, 0xec, 0x99, 0x53, 0xcd, 0x28, 0xdc, 0x7a, - 0xfa, 0xa5, 0xaf, 0x83, 0xfd, 0xbe, 0x0e, 0x0e, 0xfa, 0x3a, 0xf8, 0xd9, 0xd7, 0xc1, 0xce, 0xa1, - 0x5e, 0x38, 0x38, 0xd4, 0x0b, 0xdf, 0x0e, 0xf5, 0xc2, 0x9b, 0x7f, 0x3f, 0x4b, 0x5b, 0x27, 0xaf, - 0xaf, 0xec, 0xa4, 0x35, 0x21, 0xe5, 0xbb, 0xff, 0x37, 0x00, 0x00, 0xff, 0xff, 0xa1, 0x37, 0x9f, - 0x23, 0x9d, 0x05, 0x00, 0x00, +func init() { + proto.RegisterFile("cosmos/slashing/v1beta1/slashing.proto", fileDescriptor_1078e5d96a74cc52) } -func (this *MsgUnjail) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*MsgUnjail) - if !ok { - that2, ok := that.(MsgUnjail) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if !bytes.Equal(this.ValidatorAddr, that1.ValidatorAddr) { - return false - } - return true +var fileDescriptor_1078e5d96a74cc52 = []byte{ + // 652 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0xbf, 0x53, 0x13, 0x41, + 0x14, 0xce, 0x12, 0x44, 0x66, 0x93, 0xea, 0x08, 0x26, 0x46, 0xbd, 0x8b, 0x57, 0x30, 0xb1, 0xe0, + 0x6e, 0xc0, 0x8e, 0xce, 0x83, 0x71, 0xfc, 0x35, 0x8a, 0x07, 0xea, 0x8c, 0x85, 0x37, 0x7b, 0xd9, + 0xcd, 0x65, 0xe5, 0x6e, 0x37, 0x73, 0xbb, 0x11, 0xb0, 0xb3, 0xb3, 0xa4, 0xa4, 0xa4, 0xf4, 0x8f, + 0xf0, 0x0f, 0xa0, 0xa4, 0x74, 0x2c, 0xa2, 0x13, 0x1a, 0x6b, 0x3a, 0xad, 0x9c, 0xdb, 0xbd, 0x83, + 0x0c, 0x04, 0x47, 0xaa, 0xe4, 0x7d, 0xef, 0xbd, 0xef, 0x7d, 0xfb, 0xbd, 0x97, 0xc0, 0x85, 0x0e, + 0x17, 0x09, 0x17, 0xae, 0x88, 0x91, 0xe8, 0x51, 0x16, 0xb9, 0x1f, 0x96, 0x42, 0x22, 0xd1, 0xd2, + 0x29, 0xe0, 0xf4, 0x53, 0x2e, 0xb9, 0x51, 0xd7, 0x75, 0xce, 0x29, 0x9c, 0xd7, 0x35, 0x6b, 0x11, + 0x8f, 0xb8, 0xaa, 0x71, 0xb3, 0x6f, 0xba, 0xbc, 0x69, 0x46, 0x9c, 0x47, 0x31, 0x71, 0x55, 0x14, + 0x0e, 0xba, 0x2e, 0x1e, 0xa4, 0x48, 0x52, 0xce, 0xf2, 0xbc, 0x75, 0x3e, 0x2f, 0x69, 0x42, 0x84, + 0x44, 0x49, 0x5f, 0x17, 0xd8, 0x5f, 0xcb, 0xb0, 0xf6, 0x1a, 0xc5, 0x14, 0x23, 0xc9, 0xd3, 0x0d, + 0x1a, 0x31, 0xca, 0xa2, 0xc7, 0xac, 0xcb, 0x8d, 0x67, 0xf0, 0x3a, 0xc2, 0x38, 0x25, 0x42, 0x34, + 0x40, 0x0b, 0xb4, 0xab, 0xde, 0xf2, 0x9f, 0xa1, 0xe5, 0x44, 0x54, 0xf6, 0x06, 0xa1, 0xd3, 0xe1, + 0x89, 0x9b, 0x3f, 0x48, 0x7f, 0x2c, 0x0a, 0xbc, 0xe5, 0xca, 0xdd, 0x3e, 0x11, 0xce, 0x2a, 0x67, + 0xe2, 0x81, 0xee, 0xf4, 0x0b, 0x0a, 0x63, 0x05, 0x56, 0x85, 0x44, 0xa9, 0x0c, 0x7a, 0x84, 0x46, + 0x3d, 0xd9, 0x98, 0x6a, 0x81, 0x76, 0xd9, 0xab, 0x9f, 0x0c, 0xad, 0xb9, 0x5d, 0x94, 0xc4, 0x2b, + 0xf6, 0x78, 0xd6, 0xf6, 0x2b, 0x2a, 0x7c, 0xa4, 0xa2, 0xac, 0x97, 0x32, 0x4c, 0x76, 0x02, 0xde, + 0xed, 0x0a, 0x22, 0x1b, 0xe5, 0xf3, 0xbd, 0xe3, 0x59, 0xdb, 0xaf, 0xa8, 0xf0, 0x85, 0x8a, 0x8c, + 0x77, 0xb0, 0xfa, 0x1e, 0xd1, 0x98, 0xe0, 0x60, 0xc0, 0x24, 0x8d, 0x1b, 0xd3, 0x2d, 0xd0, 0xae, + 0x2c, 0x37, 0x1d, 0x6d, 0x8b, 0x53, 0xd8, 0xe2, 0x6c, 0x16, 0xb6, 0x78, 0xd6, 0xe1, 0xd0, 0x2a, + 0x9d, 0x71, 0x8f, 0x77, 0xdb, 0x7b, 0x3f, 0x2c, 0xe0, 0x57, 0x34, 0xf4, 0x2a, 0x43, 0x0c, 0x13, + 0x42, 0xc9, 0x93, 0x50, 0x48, 0xce, 0x08, 0x6e, 0x5c, 0x6b, 0x81, 0xf6, 0xac, 0x3f, 0x86, 0x18, + 0x9b, 0x70, 0x3e, 0xa1, 0x42, 0x10, 0x1c, 0x84, 0x31, 0xef, 0x6c, 0x89, 0xa0, 0xc3, 0x07, 0x4c, + 0x92, 0xb4, 0x31, 0xa3, 0x1e, 0xd1, 0x3a, 0x19, 0x5a, 0xb7, 0xf5, 0xa0, 0x89, 0x65, 0xb6, 0x3f, + 0xa7, 0x71, 0x4f, 0xc1, 0xab, 0x1a, 0x5d, 0x99, 0xdd, 0x3f, 0xb0, 0x4a, 0xbf, 0x0e, 0x2c, 0x60, + 0xff, 0x9e, 0x86, 0x33, 0xeb, 0x28, 0x45, 0x89, 0x30, 0x5e, 0xc2, 0x9a, 0xa0, 0x11, 0x3b, 0xe3, + 0xd8, 0xa6, 0x0c, 0xf3, 0x6d, 0xb5, 0xbd, 0xb2, 0x67, 0x9d, 0x0c, 0xad, 0x5b, 0xb9, 0xd5, 0x13, + 0xaa, 0x6c, 0xdf, 0xd0, 0xb0, 0x1e, 0xf4, 0x46, 0x81, 0xc6, 0x27, 0x90, 0xc9, 0x67, 0x41, 0xde, + 0xd1, 0x27, 0x69, 0x41, 0x3a, 0xa5, 0x4e, 0xe2, 0x79, 0xe6, 0xd5, 0xf7, 0xa1, 0xb5, 0xf0, 0x1f, + 0x67, 0xb1, 0x46, 0x3a, 0xe3, 0x8f, 0x9d, 0x40, 0x6a, 0xfb, 0x46, 0x42, 0xd9, 0x86, 0x82, 0xd7, + 0x49, 0x9a, 0x6b, 0xf8, 0x08, 0x6f, 0x60, 0xbe, 0xcd, 0xb2, 0xbb, 0x0d, 0x32, 0xe7, 0x83, 0xe2, + 0xc2, 0xd5, 0x1d, 0x54, 0x96, 0x6f, 0x5e, 0xd8, 0xe5, 0x5a, 0x5e, 0xe0, 0xdd, 0xcb, 0x57, 0x79, + 0x47, 0x0f, 0x9d, 0x4c, 0x63, 0xef, 0x67, 0x4b, 0xad, 0x15, 0xc9, 0x27, 0x88, 0xc6, 0x05, 0x81, + 0xb1, 0x07, 0x60, 0x53, 0xfd, 0x10, 0x83, 0x6e, 0x8a, 0x3a, 0x19, 0x14, 0x60, 0x3e, 0x08, 0x63, + 0xa2, 0xc4, 0xab, 0x63, 0xaa, 0x7a, 0x1b, 0x57, 0x36, 0xe1, 0x6e, 0xbe, 0x87, 0x4b, 0x99, 0x6d, + 0xbf, 0xae, 0x92, 0x0f, 0xf3, 0xdc, 0x9a, 0x4a, 0x65, 0xce, 0x18, 0x9f, 0x01, 0xac, 0x5f, 0x68, + 0xd4, 0xd2, 0xd5, 0xf9, 0x55, 0xbd, 0xf5, 0x2b, 0xeb, 0x31, 0x2f, 0xd1, 0xa3, 0x69, 0x6d, 0x7f, + 0xfe, 0x9c, 0x18, 0x8d, 0x7b, 0x4f, 0xbf, 0x8c, 0x4c, 0x70, 0x38, 0x32, 0xc1, 0xd1, 0xc8, 0x04, + 0x3f, 0x47, 0x26, 0xd8, 0x3b, 0x36, 0x4b, 0x47, 0xc7, 0x66, 0xe9, 0xdb, 0xb1, 0x59, 0x7a, 0xbb, + 0xf8, 0xcf, 0xf1, 0x3b, 0x67, 0x7f, 0x84, 0x4a, 0x49, 0x38, 0xa3, 0xd6, 0x77, 0xff, 0x6f, 0x00, + 0x00, 0x00, 0xff, 0xff, 0xe2, 0x97, 0xe5, 0x36, 0x28, 0x05, 0x00, 0x00, } + func (this *ValidatorSigningInfo) Equal(that interface{}) bool { if that == nil { return this == nil @@ -375,36 +304,6 @@ func (this *Params) Equal(that interface{}) bool { } return true } -func (m *MsgUnjail) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *MsgUnjail) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgUnjail) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if len(m.ValidatorAddr) > 0 { - i -= len(m.ValidatorAddr) - copy(dAtA[i:], m.ValidatorAddr) - i = encodeVarintSlashing(dAtA, i, uint64(len(m.ValidatorAddr))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - func (m *ValidatorSigningInfo) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -545,19 +444,6 @@ func encodeVarintSlashing(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) return base } -func (m *MsgUnjail) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.ValidatorAddr) - if l > 0 { - n += 1 + l + sovSlashing(uint64(l)) - } - return n -} - func (m *ValidatorSigningInfo) Size() (n int) { if m == nil { return 0 @@ -611,93 +497,6 @@ func sovSlashing(x uint64) (n int) { func sozSlashing(x uint64) (n int) { return sovSlashing(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } -func (m *MsgUnjail) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowSlashing - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgUnjail: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgUnjail: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ValidatorAddr", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowSlashing - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthSlashing - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthSlashing - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.ValidatorAddr = append(m.ValidatorAddr[:0], dAtA[iNdEx:postIndex]...) - if m.ValidatorAddr == nil { - m.ValidatorAddr = []byte{} - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipSlashing(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthSlashing - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthSlashing - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} func (m *ValidatorSigningInfo) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/x/slashing/types/tx.pb.go b/x/slashing/types/tx.pb.go new file mode 100644 index 0000000000..8fa0772622 --- /dev/null +++ b/x/slashing/types/tx.pb.go @@ -0,0 +1,352 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: cosmos/slashing/v1beta1/tx.proto + +package types + +import ( + bytes "bytes" + fmt "fmt" + github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" + io "io" + math "math" + math_bits "math/bits" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package + +// MsgUnjail - struct for unjailing jailed validator +type MsgUnjail struct { + ValidatorAddr github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,1,opt,name=validator_addr,json=validatorAddr,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"address" yaml:"address"` +} + +func (m *MsgUnjail) Reset() { *m = MsgUnjail{} } +func (m *MsgUnjail) String() string { return proto.CompactTextString(m) } +func (*MsgUnjail) ProtoMessage() {} +func (*MsgUnjail) Descriptor() ([]byte, []int) { + return fileDescriptor_3c5611c0c4a59d9d, []int{0} +} +func (m *MsgUnjail) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgUnjail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgUnjail.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgUnjail) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgUnjail.Merge(m, src) +} +func (m *MsgUnjail) XXX_Size() int { + return m.Size() +} +func (m *MsgUnjail) XXX_DiscardUnknown() { + xxx_messageInfo_MsgUnjail.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgUnjail proto.InternalMessageInfo + +func (m *MsgUnjail) GetValidatorAddr() github_com_cosmos_cosmos_sdk_types.ValAddress { + if m != nil { + return m.ValidatorAddr + } + return nil +} + +func init() { + proto.RegisterType((*MsgUnjail)(nil), "cosmos.slashing.v1beta1.MsgUnjail") +} + +func init() { proto.RegisterFile("cosmos/slashing/v1beta1/tx.proto", fileDescriptor_3c5611c0c4a59d9d) } + +var fileDescriptor_3c5611c0c4a59d9d = []byte{ + // 231 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x2f, 0xce, 0x49, 0x2c, 0xce, 0xc8, 0xcc, 0x4b, 0xd7, 0x2f, 0x33, 0x4c, 0x4a, + 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x87, 0xa8, + 0xd0, 0x83, 0xa9, 0xd0, 0x83, 0xaa, 0x90, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xab, 0xd1, 0x07, + 0xb1, 0x20, 0xca, 0x95, 0x9a, 0x18, 0xb9, 0x38, 0x7d, 0x8b, 0xd3, 0x43, 0xf3, 0xb2, 0x12, 0x33, + 0x73, 0x84, 0x4a, 0xb9, 0xf8, 0xca, 0x12, 0x73, 0x32, 0x53, 0x12, 0x4b, 0xf2, 0x8b, 0xe2, 0x13, + 0x53, 0x52, 0x8a, 0x24, 0x18, 0x15, 0x18, 0x35, 0x78, 0x9c, 0xfc, 0x5e, 0xdd, 0x93, 0x67, 0x07, + 0xf1, 0x53, 0x8b, 0x8b, 0x3f, 0xdd, 0x93, 0xe7, 0xab, 0x4c, 0xcc, 0xcd, 0xb1, 0x52, 0x82, 0x0a, + 0x28, 0xfd, 0xba, 0x27, 0xaf, 0x9b, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, + 0x0f, 0x75, 0x22, 0x84, 0xd2, 0x2d, 0x4e, 0xc9, 0xd6, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x0b, + 0x4b, 0xcc, 0x71, 0x84, 0xe8, 0x08, 0xe2, 0x85, 0xdb, 0x02, 0x12, 0x71, 0xf2, 0x5e, 0xf1, 0x48, + 0x8e, 0xf1, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, + 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0xf0, 0x9b, 0x5d, 0x81, + 0x08, 0x0b, 0xb0, 0x35, 0x49, 0x6c, 0x60, 0x8f, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x04, + 0x61, 0xe5, 0x85, 0x2b, 0x01, 0x00, 0x00, +} + +func (this *MsgUnjail) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*MsgUnjail) + if !ok { + that2, ok := that.(MsgUnjail) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !bytes.Equal(this.ValidatorAddr, that1.ValidatorAddr) { + return false + } + return true +} +func (m *MsgUnjail) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgUnjail) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgUnjail) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.ValidatorAddr) > 0 { + i -= len(m.ValidatorAddr) + copy(dAtA[i:], m.ValidatorAddr) + i = encodeVarintTx(dAtA, i, uint64(len(m.ValidatorAddr))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func encodeVarintTx(dAtA []byte, offset int, v uint64) int { + offset -= sovTx(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *MsgUnjail) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.ValidatorAddr) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + return n +} + +func sovTx(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozTx(x uint64) (n int) { + return sovTx(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *MsgUnjail) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgUnjail: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgUnjail: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ValidatorAddr", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ValidatorAddr = append(m.ValidatorAddr[:0], dAtA[iNdEx:postIndex]...) + if m.ValidatorAddr == nil { + m.ValidatorAddr = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipTx(dAtA []byte) (n int, err error) { + l := len(dAtA) + iNdEx := 0 + depth := 0 + for iNdEx < l { + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + wireType := int(wire & 0x7) + switch wireType { + case 0: + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + iNdEx++ + if dAtA[iNdEx-1] < 0x80 { + break + } + } + case 1: + iNdEx += 8 + case 2: + var length int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + length |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if length < 0 { + return 0, ErrInvalidLengthTx + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupTx + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthTx + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthTx = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowTx = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group") +) diff --git a/x/staking/keeper/validator.go b/x/staking/keeper/validator.go index e29100b43b..b9006abf30 100644 --- a/x/staking/keeper/validator.go +++ b/x/staking/keeper/validator.go @@ -368,7 +368,7 @@ func (k Keeper) GetUnbondingValidators(ctx sdk.Context, endTime time.Time, endHe return []sdk.ValAddress{} } - addrs := sdk.ValAddresses{} + addrs := types.ValAddresses{} k.cdc.MustUnmarshalBinaryBare(bz, &addrs) return addrs.Addresses @@ -378,7 +378,7 @@ func (k Keeper) GetUnbondingValidators(ctx sdk.Context, endTime time.Time, endHe // the unbonding validator queue by a given height and time. func (k Keeper) SetUnbondingValidatorsQueue(ctx sdk.Context, endTime time.Time, endHeight int64, addrs []sdk.ValAddress) { store := ctx.KVStore(k.storeKey) - bz := k.cdc.MustMarshalBinaryBare(&sdk.ValAddresses{Addresses: addrs}) + bz := k.cdc.MustMarshalBinaryBare(&types.ValAddresses{Addresses: addrs}) store.Set(types.GetValidatorQueueKey(endTime, endHeight), bz) } @@ -450,7 +450,7 @@ func (k Keeper) UnbondAllMatureValidators(ctx sdk.Context) { // We only unbond if the height and time are less than the current height // and time. if keyHeight <= blockHeight && (keyTime.Before(blockTime) || keyTime.Equal(blockTime)) { - addrs := sdk.ValAddresses{} + addrs := types.ValAddresses{} k.cdc.MustUnmarshalBinaryBare(unbondingValIterator.Value(), &addrs) for _, valAddr := range addrs.Addresses { diff --git a/x/staking/types/genesis.pb.go b/x/staking/types/genesis.pb.go index 164e314c0f..db510cc87e 100644 --- a/x/staking/types/genesis.pb.go +++ b/x/staking/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/staking/genesis.proto +// source: cosmos/staking/v1beta1/genesis.proto package types @@ -40,7 +40,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_10c2ca02caf42801, []int{0} + return fileDescriptor_9b3dec8894f2831b, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -128,7 +128,7 @@ func (m *LastValidatorPower) Reset() { *m = LastValidatorPower{} } func (m *LastValidatorPower) String() string { return proto.CompactTextString(m) } func (*LastValidatorPower) ProtoMessage() {} func (*LastValidatorPower) Descriptor() ([]byte, []int) { - return fileDescriptor_10c2ca02caf42801, []int{1} + return fileDescriptor_9b3dec8894f2831b, []int{1} } func (m *LastValidatorPower) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -172,47 +172,49 @@ func (m *LastValidatorPower) GetPower() int64 { } func init() { - proto.RegisterType((*GenesisState)(nil), "cosmos.staking.GenesisState") - proto.RegisterType((*LastValidatorPower)(nil), "cosmos.staking.LastValidatorPower") + proto.RegisterType((*GenesisState)(nil), "cosmos.staking.v1beta1.GenesisState") + proto.RegisterType((*LastValidatorPower)(nil), "cosmos.staking.v1beta1.LastValidatorPower") } -func init() { proto.RegisterFile("cosmos/staking/genesis.proto", fileDescriptor_10c2ca02caf42801) } +func init() { + proto.RegisterFile("cosmos/staking/v1beta1/genesis.proto", fileDescriptor_9b3dec8894f2831b) +} -var fileDescriptor_10c2ca02caf42801 = []byte{ - // 517 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x41, 0x8b, 0xd3, 0x40, - 0x14, 0xc7, 0x3b, 0xd6, 0xcd, 0xd6, 0x69, 0x2d, 0x3a, 0xdb, 0xd5, 0x58, 0x4a, 0x52, 0x22, 0x48, - 0x0f, 0x6e, 0x82, 0xeb, 0x6d, 0x05, 0xc1, 0x20, 0xca, 0xe2, 0x1e, 0xca, 0xa8, 0x8b, 0x78, 0x29, - 0xd3, 0xcd, 0x10, 0xc3, 0xa6, 0x99, 0x90, 0x99, 0xba, 0xbb, 0x5f, 0xc0, 0xb3, 0x08, 0x7e, 0xa7, - 0x3d, 0xee, 0x51, 0x3c, 0x04, 0x69, 0xbf, 0xc1, 0x1e, 0x7b, 0x92, 0xcc, 0xa4, 0xd9, 0x34, 0x2d, - 0xe2, 0x29, 0x9d, 0xff, 0x7b, 0xff, 0xdf, 0xfb, 0x67, 0x9a, 0x07, 0x7b, 0x27, 0x8c, 0x4f, 0x18, - 0x77, 0xb8, 0x20, 0xa7, 0x41, 0xe4, 0x3b, 0x3e, 0x8d, 0x28, 0x0f, 0xb8, 0x1d, 0x27, 0x4c, 0x30, - 0xd4, 0x56, 0x55, 0x3b, 0xaf, 0x76, 0x3b, 0x3e, 0xf3, 0x99, 0x2c, 0x39, 0xd9, 0x2f, 0xd5, 0xd5, - 0xad, 0x32, 0xf2, 0xa7, 0xaa, 0x5a, 0xdf, 0x34, 0xd8, 0x7a, 0xab, 0xa8, 0xef, 0x05, 0x11, 0x14, - 0xbd, 0x84, 0x5a, 0x4c, 0x12, 0x32, 0xe1, 0x3a, 0xe8, 0x83, 0x41, 0x73, 0xff, 0x81, 0xbd, 0x3a, - 0xc5, 0x1e, 0xca, 0xaa, 0xdb, 0xbe, 0x4c, 0xcd, 0xda, 0x22, 0x35, 0x35, 0x75, 0xc6, 0xb9, 0x0b, - 0x71, 0x78, 0x2f, 0x24, 0x5c, 0x8c, 0x04, 0x13, 0x24, 0x1c, 0xc5, 0xec, 0x8c, 0x26, 0xfa, 0xad, - 0x3e, 0x18, 0xb4, 0xdc, 0xc3, 0xcc, 0xf1, 0x3b, 0x35, 0x9f, 0xf8, 0x81, 0xf8, 0x32, 0x1d, 0xdb, - 0x27, 0x6c, 0xe2, 0xe4, 0xd9, 0xd4, 0x63, 0x8f, 0x7b, 0xa7, 0x8e, 0xb8, 0x88, 0x29, 0xb7, 0x0f, - 0x23, 0x71, 0x9d, 0x9a, 0x0f, 0x2f, 0xc8, 0x24, 0x3c, 0xb0, 0xaa, 0x3c, 0x0b, 0xb7, 0x33, 0xe9, - 0x43, 0xa6, 0x0c, 0x33, 0x01, 0xfd, 0x00, 0x70, 0x57, 0x76, 0x7d, 0x25, 0x61, 0xe0, 0x11, 0xc1, - 0x12, 0xd5, 0xc9, 0xf5, 0x7a, 0xbf, 0x3e, 0x68, 0xee, 0x5b, 0xd5, 0x97, 0x38, 0x22, 0x5c, 0x1c, - 0x2f, 0x7b, 0x25, 0xc3, 0x3d, 0xc8, 0xe2, 0x5d, 0xa7, 0x66, 0xaf, 0x34, 0xb4, 0x8a, 0xb3, 0x16, - 0xa9, 0x89, 0xd6, 0xbd, 0x78, 0x27, 0x5c, 0xd3, 0x38, 0x3a, 0x82, 0xb0, 0xf0, 0x73, 0xfd, 0xb6, - 0x0c, 0xf2, 0xa8, 0x1a, 0xa4, 0x30, 0xb9, 0xf7, 0xf3, 0x0b, 0xbd, 0x53, 0x48, 0xb8, 0xe4, 0x47, - 0x43, 0xd8, 0xf4, 0x68, 0x48, 0x7d, 0x22, 0x02, 0x16, 0x71, 0x7d, 0x4b, 0xe2, 0xba, 0x55, 0xdc, - 0xeb, 0xa2, 0xc5, 0x45, 0x39, 0x0f, 0xde, 0x68, 0xb8, 0x8c, 0x40, 0x3f, 0x01, 0xdc, 0x9d, 0x46, - 0x63, 0x16, 0x79, 0x41, 0xe4, 0x8f, 0xca, 0x70, 0x4d, 0xc2, 0x1f, 0x57, 0xe1, 0x1f, 0x97, 0xcd, - 0xa5, 0x29, 0x2f, 0x56, 0x6f, 0x6d, 0x23, 0x2f, 0xbb, 0xb5, 0x9d, 0x0d, 0x66, 0xdc, 0x99, 0xae, - 0x8b, 0x1c, 0x7d, 0x82, 0x77, 0x13, 0x5a, 0x8e, 0xb3, 0x2d, 0xe3, 0xf4, 0xaa, 0x71, 0x70, 0xa9, - 0xc9, 0xed, 0xe4, 0x6f, 0xdb, 0x2a, 0xab, 0x78, 0x15, 0x84, 0xba, 0xb0, 0x41, 0xcf, 0x63, 0x96, - 0x08, 0xea, 0xe9, 0x8d, 0x3e, 0x18, 0x34, 0x70, 0x71, 0xb6, 0xce, 0xe0, 0x86, 0x3f, 0x16, 0xbd, - 0x83, 0xdb, 0xc4, 0xf3, 0x12, 0xca, 0xd5, 0x3a, 0xb4, 0xdc, 0x67, 0x8b, 0xd4, 0xdc, 0xfb, 0x8f, - 0x0f, 0xf8, 0x98, 0x84, 0xaf, 0x94, 0x11, 0x2f, 0x09, 0xa8, 0x03, 0xb7, 0x6e, 0xf6, 0xa1, 0x8e, - 0xd5, 0xc1, 0x7d, 0x73, 0x39, 0x33, 0xc0, 0xd5, 0xcc, 0x00, 0x7f, 0x66, 0x06, 0xf8, 0x3e, 0x37, - 0x6a, 0x57, 0x73, 0xa3, 0xf6, 0x6b, 0x6e, 0xd4, 0x3e, 0x3f, 0xfd, 0xe7, 0x9c, 0xf3, 0x62, 0xa3, - 0xe5, 0xc4, 0xb1, 0x26, 0x17, 0xfa, 0xf9, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x4e, 0xd7, 0x71, - 0x39, 0x34, 0x04, 0x00, 0x00, +var fileDescriptor_9b3dec8894f2831b = []byte{ + // 528 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0xcf, 0x6e, 0xd3, 0x3e, + 0x1c, 0xaf, 0x7f, 0xfd, 0x2d, 0x2b, 0x6e, 0x99, 0xc0, 0xeb, 0x20, 0xaa, 0x50, 0x52, 0xa2, 0x09, + 0x55, 0xc0, 0x12, 0x75, 0xdc, 0xc6, 0x89, 0x08, 0x0d, 0x4d, 0x70, 0x98, 0xcc, 0x98, 0x10, 0x97, + 0xe2, 0x2e, 0x56, 0x88, 0x96, 0xc6, 0x51, 0xec, 0xee, 0xcf, 0x5b, 0x70, 0x46, 0xe2, 0x35, 0x78, + 0x86, 0x1d, 0x77, 0x44, 0x1c, 0x22, 0xd4, 0xbe, 0xc1, 0x8e, 0x3d, 0xa1, 0xd8, 0x69, 0x96, 0xad, + 0x0d, 0xe2, 0x94, 0xf8, 0xa3, 0xcf, 0x3f, 0x7f, 0x13, 0x1b, 0x6e, 0x1e, 0x31, 0x3e, 0x62, 0xdc, + 0xe1, 0x82, 0x1c, 0x07, 0x91, 0xef, 0x9c, 0xf4, 0x87, 0x54, 0x90, 0xbe, 0xe3, 0xd3, 0x88, 0xf2, + 0x80, 0xdb, 0x71, 0xc2, 0x04, 0x43, 0x0f, 0x14, 0xcb, 0xce, 0x59, 0x76, 0xce, 0xea, 0xb4, 0x7d, + 0xe6, 0x33, 0x49, 0x71, 0xb2, 0x37, 0xc5, 0xee, 0x54, 0x79, 0xce, 0xd5, 0x92, 0x65, 0xfd, 0xd0, + 0x60, 0xeb, 0x8d, 0x4a, 0x79, 0x2f, 0x88, 0xa0, 0x68, 0x17, 0x6a, 0x31, 0x49, 0xc8, 0x88, 0xeb, + 0xa0, 0x0b, 0x7a, 0xcd, 0x6d, 0xc3, 0x5e, 0x9e, 0x6a, 0xef, 0x4b, 0x96, 0xbb, 0x76, 0x91, 0x9a, + 0xb5, 0x59, 0x6a, 0x6a, 0x6a, 0x8d, 0x73, 0x35, 0xe2, 0xf0, 0x5e, 0x48, 0xb8, 0x18, 0x08, 0x26, + 0x48, 0x38, 0x88, 0xd9, 0x29, 0x4d, 0xf4, 0xff, 0xba, 0xa0, 0xd7, 0x72, 0xf7, 0x32, 0xc5, 0xaf, + 0xd4, 0x7c, 0xe2, 0x07, 0xe2, 0xcb, 0x78, 0x68, 0x1f, 0xb1, 0x91, 0x93, 0x77, 0x55, 0x8f, 0x2d, + 0xee, 0x1d, 0x3b, 0xe2, 0x3c, 0xa6, 0xdc, 0xde, 0x8b, 0xc4, 0x55, 0x6a, 0x3e, 0x3c, 0x27, 0xa3, + 0x70, 0xc7, 0xba, 0xed, 0x67, 0xe1, 0xb5, 0x0c, 0x3a, 0xc8, 0x90, 0xfd, 0x0c, 0x40, 0xdf, 0x00, + 0xdc, 0x90, 0xac, 0x13, 0x12, 0x06, 0x1e, 0x11, 0x2c, 0x51, 0x4c, 0xae, 0xd7, 0xbb, 0xf5, 0x5e, + 0x73, 0xfb, 0x69, 0xd5, 0x66, 0xde, 0x11, 0x2e, 0x0e, 0xe7, 0x1a, 0xe9, 0xe5, 0xee, 0x64, 0x35, + 0xaf, 0x52, 0xf3, 0x51, 0x29, 0xfc, 0xb6, 0xad, 0x35, 0x4b, 0x4d, 0xb4, 0xa8, 0xc5, 0xeb, 0xe1, + 0x02, 0xc6, 0xd1, 0x01, 0x84, 0x85, 0x9e, 0xeb, 0xff, 0xcb, 0x42, 0x8f, 0xab, 0x0a, 0x15, 0x62, + 0xf7, 0x7e, 0x3e, 0xe0, 0x3b, 0x05, 0x84, 0x4b, 0x3e, 0xe8, 0x23, 0x6c, 0x7a, 0x34, 0xa4, 0x3e, + 0x11, 0x01, 0x8b, 0xb8, 0xbe, 0x22, 0x6d, 0xad, 0x2a, 0xdb, 0xd7, 0x05, 0xd5, 0x45, 0xb9, 0x2f, + 0xbc, 0xc6, 0x70, 0xd9, 0x0a, 0x7d, 0x07, 0x70, 0x63, 0x1c, 0x0d, 0x59, 0xe4, 0x05, 0x91, 0x3f, + 0x28, 0x87, 0x68, 0x32, 0xe4, 0x59, 0x55, 0xc8, 0x87, 0xb9, 0xa8, 0x94, 0xf6, 0xf2, 0xe6, 0x34, + 0x97, 0xfa, 0x66, 0xd3, 0x5c, 0x5f, 0x22, 0xc6, 0xed, 0xf1, 0x22, 0xc8, 0xd1, 0x67, 0x78, 0x37, + 0xa1, 0xe5, 0x5a, 0xab, 0xb2, 0xd6, 0x66, 0x55, 0x2d, 0x5c, 0x22, 0xbb, 0xed, 0x7c, 0xf7, 0xad, + 0x32, 0x8a, 0x6f, 0x1a, 0xa2, 0x0e, 0x6c, 0xd0, 0xb3, 0x98, 0x25, 0x82, 0x7a, 0x7a, 0xa3, 0x0b, + 0x7a, 0x0d, 0x5c, 0xac, 0xad, 0x53, 0xb8, 0xe4, 0xc3, 0xa3, 0xb7, 0x70, 0x95, 0x78, 0x5e, 0x42, + 0xb9, 0x3a, 0x3e, 0x2d, 0xb7, 0x3f, 0x4b, 0xcd, 0xad, 0x7f, 0xf8, 0xd1, 0x0f, 0x49, 0xf8, 0x4a, + 0x09, 0xf1, 0xdc, 0x01, 0xb5, 0xe1, 0xca, 0xf5, 0xb9, 0xa9, 0x63, 0xb5, 0x70, 0x77, 0x2f, 0x26, + 0x06, 0xb8, 0x9c, 0x18, 0xe0, 0xf7, 0xc4, 0x00, 0x5f, 0xa7, 0x46, 0xed, 0x72, 0x6a, 0xd4, 0x7e, + 0x4e, 0x8d, 0xda, 0xa7, 0xe7, 0x7f, 0xcd, 0x39, 0x2b, 0x6e, 0x02, 0x99, 0x38, 0xd4, 0xe4, 0x05, + 0xf0, 0xe2, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9f, 0xd8, 0x82, 0x11, 0x7c, 0x04, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/staking/types/query.pb.go b/x/staking/types/query.pb.go index 15423d4ddf..5999295b75 100644 --- a/x/staking/types/query.pb.go +++ b/x/staking/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/staking/query.proto +// source: cosmos/staking/v1beta1/query.proto package types @@ -42,7 +42,7 @@ func (m *QueryValidatorsRequest) Reset() { *m = QueryValidatorsRequest{} func (m *QueryValidatorsRequest) String() string { return proto.CompactTextString(m) } func (*QueryValidatorsRequest) ProtoMessage() {} func (*QueryValidatorsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{0} + return fileDescriptor_f270127f442bbcd8, []int{0} } func (m *QueryValidatorsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -87,7 +87,7 @@ func (m *QueryValidatorsRequest) GetPagination() *query.PageRequest { // QueryValidatorsResponse is response type for the Query/Validators RPC method type QueryValidatorsResponse struct { - // validators contains all the queried validators + // validators contains all the queried validators. Validators []Validator `protobuf:"bytes,1,rep,name=validators,proto3" json:"validators"` // pagination defines the pagination in the response. Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` @@ -97,7 +97,7 @@ func (m *QueryValidatorsResponse) Reset() { *m = QueryValidatorsResponse func (m *QueryValidatorsResponse) String() string { return proto.CompactTextString(m) } func (*QueryValidatorsResponse) ProtoMessage() {} func (*QueryValidatorsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{1} + return fileDescriptor_f270127f442bbcd8, []int{1} } func (m *QueryValidatorsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -150,7 +150,7 @@ func (m *QueryValidatorRequest) Reset() { *m = QueryValidatorRequest{} } func (m *QueryValidatorRequest) String() string { return proto.CompactTextString(m) } func (*QueryValidatorRequest) ProtoMessage() {} func (*QueryValidatorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{2} + return fileDescriptor_f270127f442bbcd8, []int{2} } func (m *QueryValidatorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -196,7 +196,7 @@ func (m *QueryValidatorResponse) Reset() { *m = QueryValidatorResponse{} func (m *QueryValidatorResponse) String() string { return proto.CompactTextString(m) } func (*QueryValidatorResponse) ProtoMessage() {} func (*QueryValidatorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{3} + return fileDescriptor_f270127f442bbcd8, []int{3} } func (m *QueryValidatorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -244,7 +244,7 @@ func (m *QueryValidatorDelegationsRequest) Reset() { *m = QueryValidator func (m *QueryValidatorDelegationsRequest) String() string { return proto.CompactTextString(m) } func (*QueryValidatorDelegationsRequest) ProtoMessage() {} func (*QueryValidatorDelegationsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{4} + return fileDescriptor_f270127f442bbcd8, []int{4} } func (m *QueryValidatorDelegationsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -298,7 +298,7 @@ func (m *QueryValidatorDelegationsResponse) Reset() { *m = QueryValidato func (m *QueryValidatorDelegationsResponse) String() string { return proto.CompactTextString(m) } func (*QueryValidatorDelegationsResponse) ProtoMessage() {} func (*QueryValidatorDelegationsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{5} + return fileDescriptor_f270127f442bbcd8, []int{5} } func (m *QueryValidatorDelegationsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -357,7 +357,7 @@ func (m *QueryValidatorUnbondingDelegationsRequest) String() string { } func (*QueryValidatorUnbondingDelegationsRequest) ProtoMessage() {} func (*QueryValidatorUnbondingDelegationsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{6} + return fileDescriptor_f270127f442bbcd8, []int{6} } func (m *QueryValidatorUnbondingDelegationsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -415,7 +415,7 @@ func (m *QueryValidatorUnbondingDelegationsResponse) String() string { } func (*QueryValidatorUnbondingDelegationsResponse) ProtoMessage() {} func (*QueryValidatorUnbondingDelegationsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{7} + return fileDescriptor_f270127f442bbcd8, []int{7} } func (m *QueryValidatorUnbondingDelegationsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -470,7 +470,7 @@ func (m *QueryDelegationRequest) Reset() { *m = QueryDelegationRequest{} func (m *QueryDelegationRequest) String() string { return proto.CompactTextString(m) } func (*QueryDelegationRequest) ProtoMessage() {} func (*QueryDelegationRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{8} + return fileDescriptor_f270127f442bbcd8, []int{8} } func (m *QueryDelegationRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -523,7 +523,7 @@ func (m *QueryDelegationResponse) Reset() { *m = QueryDelegationResponse func (m *QueryDelegationResponse) String() string { return proto.CompactTextString(m) } func (*QueryDelegationResponse) ProtoMessage() {} func (*QueryDelegationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{9} + return fileDescriptor_f270127f442bbcd8, []int{9} } func (m *QueryDelegationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -571,7 +571,7 @@ func (m *QueryUnbondingDelegationRequest) Reset() { *m = QueryUnbondingD func (m *QueryUnbondingDelegationRequest) String() string { return proto.CompactTextString(m) } func (*QueryUnbondingDelegationRequest) ProtoMessage() {} func (*QueryUnbondingDelegationRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{10} + return fileDescriptor_f270127f442bbcd8, []int{10} } func (m *QueryUnbondingDelegationRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -624,7 +624,7 @@ func (m *QueryUnbondingDelegationResponse) Reset() { *m = QueryUnbonding func (m *QueryUnbondingDelegationResponse) String() string { return proto.CompactTextString(m) } func (*QueryUnbondingDelegationResponse) ProtoMessage() {} func (*QueryUnbondingDelegationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{11} + return fileDescriptor_f270127f442bbcd8, []int{11} } func (m *QueryUnbondingDelegationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -672,7 +672,7 @@ func (m *QueryDelegatorDelegationsRequest) Reset() { *m = QueryDelegator func (m *QueryDelegatorDelegationsRequest) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorDelegationsRequest) ProtoMessage() {} func (*QueryDelegatorDelegationsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{12} + return fileDescriptor_f270127f442bbcd8, []int{12} } func (m *QueryDelegatorDelegationsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -727,7 +727,7 @@ func (m *QueryDelegatorDelegationsResponse) Reset() { *m = QueryDelegato func (m *QueryDelegatorDelegationsResponse) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorDelegationsResponse) ProtoMessage() {} func (*QueryDelegatorDelegationsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{13} + return fileDescriptor_f270127f442bbcd8, []int{13} } func (m *QueryDelegatorDelegationsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -786,7 +786,7 @@ func (m *QueryDelegatorUnbondingDelegationsRequest) String() string { } func (*QueryDelegatorUnbondingDelegationsRequest) ProtoMessage() {} func (*QueryDelegatorUnbondingDelegationsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{14} + return fileDescriptor_f270127f442bbcd8, []int{14} } func (m *QueryDelegatorUnbondingDelegationsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -844,7 +844,7 @@ func (m *QueryDelegatorUnbondingDelegationsResponse) String() string { } func (*QueryDelegatorUnbondingDelegationsResponse) ProtoMessage() {} func (*QueryDelegatorUnbondingDelegationsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{15} + return fileDescriptor_f270127f442bbcd8, []int{15} } func (m *QueryDelegatorUnbondingDelegationsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -903,7 +903,7 @@ func (m *QueryRedelegationsRequest) Reset() { *m = QueryRedelegationsReq func (m *QueryRedelegationsRequest) String() string { return proto.CompactTextString(m) } func (*QueryRedelegationsRequest) ProtoMessage() {} func (*QueryRedelegationsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{16} + return fileDescriptor_f270127f442bbcd8, []int{16} } func (m *QueryRedelegationsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -971,7 +971,7 @@ func (m *QueryRedelegationsResponse) Reset() { *m = QueryRedelegationsRe func (m *QueryRedelegationsResponse) String() string { return proto.CompactTextString(m) } func (*QueryRedelegationsResponse) ProtoMessage() {} func (*QueryRedelegationsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{17} + return fileDescriptor_f270127f442bbcd8, []int{17} } func (m *QueryRedelegationsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1026,7 +1026,7 @@ func (m *QueryDelegatorValidatorsRequest) Reset() { *m = QueryDelegatorV func (m *QueryDelegatorValidatorsRequest) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorValidatorsRequest) ProtoMessage() {} func (*QueryDelegatorValidatorsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{18} + return fileDescriptor_f270127f442bbcd8, []int{18} } func (m *QueryDelegatorValidatorsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1081,7 +1081,7 @@ func (m *QueryDelegatorValidatorsResponse) Reset() { *m = QueryDelegator func (m *QueryDelegatorValidatorsResponse) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorValidatorsResponse) ProtoMessage() {} func (*QueryDelegatorValidatorsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{19} + return fileDescriptor_f270127f442bbcd8, []int{19} } func (m *QueryDelegatorValidatorsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1136,7 +1136,7 @@ func (m *QueryDelegatorValidatorRequest) Reset() { *m = QueryDelegatorVa func (m *QueryDelegatorValidatorRequest) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorValidatorRequest) ProtoMessage() {} func (*QueryDelegatorValidatorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{20} + return fileDescriptor_f270127f442bbcd8, []int{20} } func (m *QueryDelegatorValidatorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1189,7 +1189,7 @@ func (m *QueryDelegatorValidatorResponse) Reset() { *m = QueryDelegatorV func (m *QueryDelegatorValidatorResponse) String() string { return proto.CompactTextString(m) } func (*QueryDelegatorValidatorResponse) ProtoMessage() {} func (*QueryDelegatorValidatorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{21} + return fileDescriptor_f270127f442bbcd8, []int{21} } func (m *QueryDelegatorValidatorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1235,7 +1235,7 @@ func (m *QueryHistoricalInfoRequest) Reset() { *m = QueryHistoricalInfoR func (m *QueryHistoricalInfoRequest) String() string { return proto.CompactTextString(m) } func (*QueryHistoricalInfoRequest) ProtoMessage() {} func (*QueryHistoricalInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{22} + return fileDescriptor_f270127f442bbcd8, []int{22} } func (m *QueryHistoricalInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1281,7 +1281,7 @@ func (m *QueryHistoricalInfoResponse) Reset() { *m = QueryHistoricalInfo func (m *QueryHistoricalInfoResponse) String() string { return proto.CompactTextString(m) } func (*QueryHistoricalInfoResponse) ProtoMessage() {} func (*QueryHistoricalInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{23} + return fileDescriptor_f270127f442bbcd8, []int{23} } func (m *QueryHistoricalInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1325,7 +1325,7 @@ func (m *QueryPoolRequest) Reset() { *m = QueryPoolRequest{} } func (m *QueryPoolRequest) String() string { return proto.CompactTextString(m) } func (*QueryPoolRequest) ProtoMessage() {} func (*QueryPoolRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{24} + return fileDescriptor_f270127f442bbcd8, []int{24} } func (m *QueryPoolRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1364,7 +1364,7 @@ func (m *QueryPoolResponse) Reset() { *m = QueryPoolResponse{} } func (m *QueryPoolResponse) String() string { return proto.CompactTextString(m) } func (*QueryPoolResponse) ProtoMessage() {} func (*QueryPoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{25} + return fileDescriptor_f270127f442bbcd8, []int{25} } func (m *QueryPoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1408,7 +1408,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{26} + return fileDescriptor_f270127f442bbcd8, []int{26} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1447,7 +1447,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_802d43a0c79dce0e, []int{27} + return fileDescriptor_f270127f442bbcd8, []int{27} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1484,108 +1484,112 @@ func (m *QueryParamsResponse) GetParams() Params { } func init() { - proto.RegisterType((*QueryValidatorsRequest)(nil), "cosmos.staking.QueryValidatorsRequest") - proto.RegisterType((*QueryValidatorsResponse)(nil), "cosmos.staking.QueryValidatorsResponse") - proto.RegisterType((*QueryValidatorRequest)(nil), "cosmos.staking.QueryValidatorRequest") - proto.RegisterType((*QueryValidatorResponse)(nil), "cosmos.staking.QueryValidatorResponse") - proto.RegisterType((*QueryValidatorDelegationsRequest)(nil), "cosmos.staking.QueryValidatorDelegationsRequest") - proto.RegisterType((*QueryValidatorDelegationsResponse)(nil), "cosmos.staking.QueryValidatorDelegationsResponse") - proto.RegisterType((*QueryValidatorUnbondingDelegationsRequest)(nil), "cosmos.staking.QueryValidatorUnbondingDelegationsRequest") - proto.RegisterType((*QueryValidatorUnbondingDelegationsResponse)(nil), "cosmos.staking.QueryValidatorUnbondingDelegationsResponse") - proto.RegisterType((*QueryDelegationRequest)(nil), "cosmos.staking.QueryDelegationRequest") - proto.RegisterType((*QueryDelegationResponse)(nil), "cosmos.staking.QueryDelegationResponse") - proto.RegisterType((*QueryUnbondingDelegationRequest)(nil), "cosmos.staking.QueryUnbondingDelegationRequest") - proto.RegisterType((*QueryUnbondingDelegationResponse)(nil), "cosmos.staking.QueryUnbondingDelegationResponse") - proto.RegisterType((*QueryDelegatorDelegationsRequest)(nil), "cosmos.staking.QueryDelegatorDelegationsRequest") - proto.RegisterType((*QueryDelegatorDelegationsResponse)(nil), "cosmos.staking.QueryDelegatorDelegationsResponse") - proto.RegisterType((*QueryDelegatorUnbondingDelegationsRequest)(nil), "cosmos.staking.QueryDelegatorUnbondingDelegationsRequest") - proto.RegisterType((*QueryDelegatorUnbondingDelegationsResponse)(nil), "cosmos.staking.QueryDelegatorUnbondingDelegationsResponse") - proto.RegisterType((*QueryRedelegationsRequest)(nil), "cosmos.staking.QueryRedelegationsRequest") - proto.RegisterType((*QueryRedelegationsResponse)(nil), "cosmos.staking.QueryRedelegationsResponse") - proto.RegisterType((*QueryDelegatorValidatorsRequest)(nil), "cosmos.staking.QueryDelegatorValidatorsRequest") - proto.RegisterType((*QueryDelegatorValidatorsResponse)(nil), "cosmos.staking.QueryDelegatorValidatorsResponse") - proto.RegisterType((*QueryDelegatorValidatorRequest)(nil), "cosmos.staking.QueryDelegatorValidatorRequest") - proto.RegisterType((*QueryDelegatorValidatorResponse)(nil), "cosmos.staking.QueryDelegatorValidatorResponse") - proto.RegisterType((*QueryHistoricalInfoRequest)(nil), "cosmos.staking.QueryHistoricalInfoRequest") - proto.RegisterType((*QueryHistoricalInfoResponse)(nil), "cosmos.staking.QueryHistoricalInfoResponse") - proto.RegisterType((*QueryPoolRequest)(nil), "cosmos.staking.QueryPoolRequest") - proto.RegisterType((*QueryPoolResponse)(nil), "cosmos.staking.QueryPoolResponse") - proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.staking.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.staking.QueryParamsResponse") + proto.RegisterType((*QueryValidatorsRequest)(nil), "cosmos.staking.v1beta1.QueryValidatorsRequest") + proto.RegisterType((*QueryValidatorsResponse)(nil), "cosmos.staking.v1beta1.QueryValidatorsResponse") + proto.RegisterType((*QueryValidatorRequest)(nil), "cosmos.staking.v1beta1.QueryValidatorRequest") + proto.RegisterType((*QueryValidatorResponse)(nil), "cosmos.staking.v1beta1.QueryValidatorResponse") + proto.RegisterType((*QueryValidatorDelegationsRequest)(nil), "cosmos.staking.v1beta1.QueryValidatorDelegationsRequest") + proto.RegisterType((*QueryValidatorDelegationsResponse)(nil), "cosmos.staking.v1beta1.QueryValidatorDelegationsResponse") + proto.RegisterType((*QueryValidatorUnbondingDelegationsRequest)(nil), "cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest") + proto.RegisterType((*QueryValidatorUnbondingDelegationsResponse)(nil), "cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse") + proto.RegisterType((*QueryDelegationRequest)(nil), "cosmos.staking.v1beta1.QueryDelegationRequest") + proto.RegisterType((*QueryDelegationResponse)(nil), "cosmos.staking.v1beta1.QueryDelegationResponse") + proto.RegisterType((*QueryUnbondingDelegationRequest)(nil), "cosmos.staking.v1beta1.QueryUnbondingDelegationRequest") + proto.RegisterType((*QueryUnbondingDelegationResponse)(nil), "cosmos.staking.v1beta1.QueryUnbondingDelegationResponse") + proto.RegisterType((*QueryDelegatorDelegationsRequest)(nil), "cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest") + proto.RegisterType((*QueryDelegatorDelegationsResponse)(nil), "cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse") + proto.RegisterType((*QueryDelegatorUnbondingDelegationsRequest)(nil), "cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest") + proto.RegisterType((*QueryDelegatorUnbondingDelegationsResponse)(nil), "cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse") + proto.RegisterType((*QueryRedelegationsRequest)(nil), "cosmos.staking.v1beta1.QueryRedelegationsRequest") + proto.RegisterType((*QueryRedelegationsResponse)(nil), "cosmos.staking.v1beta1.QueryRedelegationsResponse") + proto.RegisterType((*QueryDelegatorValidatorsRequest)(nil), "cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest") + proto.RegisterType((*QueryDelegatorValidatorsResponse)(nil), "cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse") + proto.RegisterType((*QueryDelegatorValidatorRequest)(nil), "cosmos.staking.v1beta1.QueryDelegatorValidatorRequest") + proto.RegisterType((*QueryDelegatorValidatorResponse)(nil), "cosmos.staking.v1beta1.QueryDelegatorValidatorResponse") + proto.RegisterType((*QueryHistoricalInfoRequest)(nil), "cosmos.staking.v1beta1.QueryHistoricalInfoRequest") + proto.RegisterType((*QueryHistoricalInfoResponse)(nil), "cosmos.staking.v1beta1.QueryHistoricalInfoResponse") + proto.RegisterType((*QueryPoolRequest)(nil), "cosmos.staking.v1beta1.QueryPoolRequest") + proto.RegisterType((*QueryPoolResponse)(nil), "cosmos.staking.v1beta1.QueryPoolResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.staking.v1beta1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.staking.v1beta1.QueryParamsResponse") } -func init() { proto.RegisterFile("cosmos/staking/query.proto", fileDescriptor_802d43a0c79dce0e) } +func init() { + proto.RegisterFile("cosmos/staking/v1beta1/query.proto", fileDescriptor_f270127f442bbcd8) +} -var fileDescriptor_802d43a0c79dce0e = []byte{ - // 1086 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x58, 0x4f, 0x6f, 0x1b, 0x45, - 0x14, 0xf7, 0x24, 0xc6, 0x52, 0x1e, 0x6d, 0x54, 0xc6, 0x6e, 0x48, 0xb7, 0xd4, 0x71, 0xb7, 0x50, - 0xda, 0x42, 0xed, 0x34, 0xf4, 0xd2, 0x4a, 0x08, 0x25, 0x54, 0x08, 0x84, 0x90, 0xda, 0xad, 0x08, - 0xa8, 0x20, 0x99, 0x8d, 0x77, 0x59, 0xaf, 0xe2, 0xec, 0x38, 0x3b, 0x6b, 0xa0, 0x48, 0x7c, 0x07, - 0x4e, 0x88, 0x1b, 0x77, 0x3e, 0x00, 0x1c, 0xe0, 0xc0, 0x01, 0x89, 0x1e, 0x38, 0x54, 0x02, 0x24, - 0x4e, 0x05, 0x25, 0xdf, 0x80, 0x23, 0x27, 0xe4, 0xd9, 0xb7, 0xe3, 0xfd, 0x33, 0xbb, 0xd9, 0x24, - 0x0e, 0x4a, 0x4e, 0xb6, 0x67, 0xde, 0xfb, 0xbd, 0x37, 0xbf, 0xf7, 0x67, 0xde, 0x18, 0xb4, 0x1e, - 0xe3, 0x5b, 0x8c, 0x77, 0x78, 0x60, 0x6e, 0xba, 0x9e, 0xd3, 0xd9, 0x1e, 0xd9, 0xfe, 0xc3, 0xf6, - 0xd0, 0x67, 0x01, 0xa3, 0xf3, 0xe1, 0x5e, 0x1b, 0xf7, 0xb4, 0x0b, 0x28, 0x2b, 0x64, 0x3a, 0x43, - 0xd3, 0x71, 0x3d, 0x33, 0x70, 0x99, 0x17, 0x8a, 0x6b, 0x0d, 0x87, 0x39, 0x4c, 0x7c, 0xed, 0x8c, - 0xbf, 0xe1, 0xea, 0x73, 0x29, 0x03, 0xf8, 0x19, 0xee, 0xea, 0x9b, 0xb0, 0x70, 0x6f, 0x8c, 0xb6, - 0x6e, 0x0e, 0x5c, 0xcb, 0x0c, 0x98, 0xcf, 0x0d, 0x7b, 0x7b, 0x64, 0xf3, 0x80, 0x2e, 0x40, 0x8d, - 0x07, 0x66, 0x30, 0xe2, 0x8b, 0xa4, 0x45, 0xae, 0xcc, 0x19, 0xf8, 0x8b, 0xde, 0x02, 0x98, 0x58, - 0x5e, 0x9c, 0x69, 0x91, 0x2b, 0x4f, 0xaf, 0x9c, 0x6b, 0xa3, 0xa7, 0xa1, 0xf7, 0x77, 0x4d, 0xc7, - 0x46, 0x18, 0x23, 0x26, 0xac, 0x7f, 0x45, 0xe0, 0xd9, 0x8c, 0x35, 0x3e, 0x64, 0x1e, 0xb7, 0xe9, - 0x6b, 0x00, 0x9f, 0xc8, 0xd5, 0x45, 0xd2, 0x9a, 0x8d, 0xc3, 0x46, 0x3e, 0x4b, 0xbd, 0xb5, 0xea, - 0xa3, 0x27, 0x4b, 0x15, 0x23, 0xa6, 0x42, 0x6f, 0x2b, 0xfc, 0xd2, 0x54, 0x7e, 0x85, 0x06, 0x13, - 0x8e, 0x6d, 0xc3, 0xd9, 0xa4, 0x5f, 0x11, 0x09, 0xef, 0xc3, 0xbc, 0x34, 0xd1, 0x35, 0x2d, 0xcb, - 0x17, 0x64, 0x9c, 0x5a, 0xbb, 0xf1, 0xef, 0x93, 0xa5, 0xeb, 0x8e, 0x1b, 0xf4, 0x47, 0x1b, 0xed, - 0x1e, 0xdb, 0xea, 0x20, 0xc7, 0xe1, 0xc7, 0x75, 0x6e, 0x6d, 0x76, 0x82, 0x87, 0x43, 0x9b, 0x8f, - 0x1d, 0x5e, 0xb5, 0x2c, 0xdf, 0xe6, 0xdc, 0x38, 0x2d, 0x81, 0xc6, 0x2b, 0xfa, 0x7b, 0x69, 0xe2, - 0x25, 0x13, 0xaf, 0xc2, 0x9c, 0x14, 0x15, 0xe6, 0x4a, 0x10, 0x31, 0xd1, 0xd0, 0xbf, 0x27, 0xd0, - 0x4a, 0x22, 0xdf, 0xb1, 0x07, 0xb6, 0x23, 0x0e, 0xca, 0x8f, 0xfc, 0x5c, 0x87, 0x49, 0x8f, 0xdf, - 0x08, 0x5c, 0x2c, 0xf0, 0x1c, 0xe9, 0xf1, 0xa1, 0x61, 0xc9, 0xe5, 0xae, 0x8f, 0xcb, 0x51, 0xca, - 0xe8, 0x69, 0xa6, 0x26, 0x10, 0x11, 0xc2, 0xda, 0xf9, 0x31, 0x65, 0xdf, 0xfe, 0xb5, 0x54, 0xcf, - 0xee, 0x71, 0xa3, 0x6e, 0x65, 0x17, 0x0f, 0x95, 0x5b, 0x3f, 0x11, 0xb8, 0x9a, 0x3c, 0xd5, 0xbb, - 0xde, 0x06, 0xf3, 0x2c, 0xd7, 0x73, 0x4e, 0x4a, 0x60, 0x7e, 0x26, 0x70, 0xad, 0xcc, 0x11, 0x30, - 0x42, 0x0f, 0xa0, 0x3e, 0x8a, 0xf6, 0x33, 0x01, 0xba, 0x94, 0x0e, 0x90, 0x02, 0x0a, 0x93, 0x9a, - 0x4a, 0x94, 0xe9, 0x44, 0xe2, 0x57, 0x82, 0x35, 0x17, 0x8f, 0xbb, 0xa4, 0x1d, 0xe3, 0x7e, 0x30, - 0xda, 0x57, 0x7b, 0x3d, 0x49, 0xbb, 0x04, 0x12, 0xb4, 0x67, 0x03, 0x3a, 0x33, 0xa5, 0x0e, 0xe2, - 0x61, 0x33, 0xcd, 0x66, 0x31, 0xbd, 0x0f, 0x75, 0x45, 0x8d, 0x60, 0x33, 0x29, 0x51, 0x22, 0x06, - 0xcd, 0x56, 0x81, 0xfe, 0x07, 0x81, 0x25, 0x61, 0x50, 0x11, 0xb1, 0x93, 0xcc, 0xa3, 0x8d, 0xfd, - 0x52, 0x79, 0x2c, 0x24, 0x74, 0x15, 0x6a, 0x61, 0x32, 0x22, 0x87, 0xfb, 0xc8, 0x62, 0x54, 0x9c, - 0xf4, 0xe5, 0x3b, 0xd1, 0xb9, 0xd4, 0xe5, 0x7f, 0x44, 0xfc, 0x1d, 0xa2, 0xfc, 0x7f, 0x8c, 0xfa, - 0xb2, 0xda, 0x73, 0xa4, 0xe8, 0x83, 0x43, 0xf7, 0xe5, 0x90, 0xaf, 0xa3, 0x6b, 0xc0, 0xd2, 0xfd, - 0x3d, 0x1a, 0xf0, 0xf1, 0x8b, 0x80, 0x6c, 0xc0, 0x7b, 0x1c, 0xe1, 0x98, 0x37, 0xe0, 0x7f, 0x66, - 0xe0, 0x9c, 0x38, 0x86, 0x61, 0x5b, 0xff, 0x27, 0xf3, 0x5d, 0xa0, 0xdc, 0xef, 0x75, 0xa7, 0xd5, - 0x3f, 0xce, 0x70, 0xbf, 0xb7, 0x9e, 0xb8, 0x5b, 0xbb, 0x40, 0x2d, 0x1e, 0xa4, 0x0d, 0xcc, 0x1e, - 0xd8, 0x80, 0xc5, 0x83, 0xf5, 0x82, 0xcb, 0xbb, 0xba, 0x9f, 0xdc, 0xf9, 0x81, 0x80, 0xa6, 0x22, - 0x1d, 0x73, 0xc5, 0x84, 0x05, 0xdf, 0x2e, 0x28, 0xdc, 0xe7, 0xd3, 0xe9, 0x12, 0x87, 0x49, 0x95, - 0xee, 0x59, 0xdf, 0x9e, 0x76, 0xf1, 0x7e, 0x17, 0x5d, 0x3a, 0x32, 0xf3, 0xb3, 0x2f, 0x95, 0x63, - 0x59, 0xb2, 0xdf, 0x64, 0xda, 0xfd, 0x71, 0x7b, 0xf4, 0xfc, 0x4e, 0xa0, 0x99, 0xe3, 0xe1, 0x49, - 0xbe, 0xce, 0x3f, 0xca, 0x4d, 0x98, 0x69, 0xbd, 0xb0, 0x6e, 0x62, 0x41, 0xbd, 0xe9, 0xf2, 0x80, - 0xf9, 0x6e, 0xcf, 0x1c, 0xbc, 0xe5, 0x7d, 0xcc, 0x62, 0xef, 0xe6, 0xbe, 0xed, 0x3a, 0xfd, 0x40, - 0x20, 0xcf, 0x1a, 0xf8, 0x4b, 0xbf, 0x07, 0xe7, 0x95, 0x5a, 0xe8, 0xd3, 0x0a, 0x54, 0xfb, 0x2e, - 0x0f, 0xd0, 0x9d, 0x66, 0xda, 0x9d, 0x94, 0x96, 0x90, 0xd5, 0x29, 0x9c, 0x11, 0x90, 0x77, 0x19, - 0x1b, 0xa0, 0x79, 0xfd, 0x75, 0x78, 0x26, 0xb6, 0x86, 0xe0, 0x6d, 0xa8, 0x0e, 0x19, 0x1b, 0x20, - 0x78, 0x23, 0x0d, 0x3e, 0x96, 0xc5, 0x63, 0x0a, 0x39, 0xbd, 0x01, 0x34, 0x04, 0x31, 0x7d, 0x73, - 0x2b, 0xaa, 0x33, 0xfd, 0x6d, 0xa8, 0x27, 0x56, 0x11, 0xfc, 0x26, 0xd4, 0x86, 0x62, 0x05, 0xe1, - 0x17, 0x32, 0xf0, 0x62, 0x37, 0x1a, 0x87, 0x42, 0xd9, 0x95, 0x5f, 0x4e, 0xc1, 0x53, 0x02, 0x8d, - 0x76, 0x01, 0x26, 0xa5, 0x41, 0x2f, 0xa7, 0xb5, 0xd5, 0x7f, 0x4f, 0x68, 0x2f, 0xee, 0x29, 0x87, - 0x63, 0x6b, 0x85, 0x7e, 0x08, 0x73, 0x72, 0x9d, 0xbe, 0x50, 0xac, 0x17, 0xc1, 0x5f, 0xde, 0x4b, - 0x4c, 0xa2, 0x7f, 0x01, 0x0d, 0xd5, 0x7b, 0x95, 0x2e, 0x17, 0x23, 0x64, 0x47, 0x0f, 0xed, 0xc6, - 0x3e, 0x34, 0xa4, 0xf9, 0xaf, 0x09, 0x5c, 0x28, 0x7c, 0x96, 0xd1, 0x5b, 0xc5, 0xb0, 0x05, 0xc3, - 0x90, 0x76, 0xfb, 0x20, 0xaa, 0xd2, 0xb5, 0x2e, 0xc0, 0x64, 0x23, 0x27, 0xb0, 0x99, 0x27, 0x44, - 0x4e, 0x60, 0xb3, 0xe3, 0xa2, 0x5e, 0xa1, 0x9f, 0x43, 0x5d, 0xe1, 0x02, 0xed, 0x28, 0x11, 0xf2, - 0x5f, 0x2d, 0xda, 0x72, 0x79, 0x85, 0x78, 0xd8, 0x55, 0xe3, 0x70, 0x4e, 0xd8, 0x0b, 0x66, 0xfe, - 0x9c, 0xb0, 0x17, 0xcd, 0xda, 0x18, 0xf6, 0xc2, 0x61, 0x30, 0x27, 0xec, 0x65, 0x66, 0xe0, 0x9c, - 0xb0, 0x97, 0x9a, 0x3d, 0xf5, 0x0a, 0xed, 0xc3, 0xe9, 0xc4, 0xa8, 0x41, 0xaf, 0x2a, 0xe1, 0x54, - 0x33, 0xa0, 0x76, 0xad, 0x8c, 0x68, 0x3c, 0xfe, 0x8a, 0xdb, 0x35, 0x27, 0xfe, 0xf9, 0x03, 0x84, - 0xb6, 0x5c, 0x5e, 0x41, 0xda, 0xfe, 0x14, 0x68, 0x56, 0x80, 0xb6, 0x4b, 0x22, 0x45, 0x96, 0x3b, - 0xa5, 0xe5, 0xa5, 0xe1, 0x4d, 0x98, 0x4f, 0x5e, 0x06, 0x54, 0x4d, 0x9a, 0xf2, 0x76, 0xd2, 0x5e, - 0x2a, 0x25, 0x2b, 0x8d, 0xbd, 0x03, 0xd5, 0xf1, 0xe5, 0x40, 0x5b, 0x4a, 0xb5, 0xd8, 0xbd, 0xa3, - 0x5d, 0x2c, 0x90, 0x90, 0x70, 0xf7, 0xa1, 0x16, 0x5e, 0x06, 0x54, 0x57, 0x8b, 0xc7, 0xef, 0x1b, - 0xed, 0x52, 0xa1, 0x4c, 0x04, 0xba, 0xf6, 0xc6, 0xa3, 0x9d, 0x26, 0x79, 0xbc, 0xd3, 0x24, 0x7f, - 0xef, 0x34, 0xc9, 0x97, 0xbb, 0xcd, 0xca, 0xe3, 0xdd, 0x66, 0xe5, 0xcf, 0xdd, 0x66, 0xe5, 0xc1, - 0xcb, 0x85, 0x83, 0xc4, 0x67, 0xf2, 0x2f, 0x71, 0x31, 0x52, 0x6c, 0xd4, 0xc4, 0x3f, 0xe2, 0xaf, - 0xfc, 0x17, 0x00, 0x00, 0xff, 0xff, 0xd2, 0x82, 0x78, 0x19, 0x92, 0x17, 0x00, 0x00, +var fileDescriptor_f270127f442bbcd8 = []byte{ + // 1118 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x59, 0x5f, 0x6f, 0xdb, 0x54, + 0x14, 0xcf, 0x6d, 0x43, 0xa4, 0x9e, 0xb1, 0x6a, 0xdc, 0x74, 0xa5, 0x78, 0x90, 0x76, 0x16, 0x1a, + 0x5d, 0xb7, 0x3a, 0x6a, 0x87, 0xb6, 0x82, 0x78, 0x69, 0x34, 0x06, 0x13, 0x2f, 0xc3, 0x88, 0x8a, + 0x3f, 0x42, 0x91, 0x63, 0x1b, 0xc7, 0x5a, 0x9a, 0x9b, 0xfa, 0x3a, 0x55, 0x07, 0x1f, 0x00, 0x09, + 0x09, 0x89, 0x8f, 0x81, 0x80, 0x47, 0xbe, 0x01, 0x3c, 0xec, 0x01, 0xa4, 0x22, 0x81, 0x04, 0x2f, + 0x03, 0xb5, 0x2f, 0x7c, 0x06, 0x5e, 0x40, 0xb6, 0x8f, 0x6f, 0xe2, 0xfa, 0x6f, 0xb2, 0x64, 0x5a, + 0x9e, 0x92, 0x5c, 0x9f, 0xf3, 0x3b, 0xff, 0xcf, 0x3d, 0x27, 0x06, 0x59, 0x67, 0x7c, 0x9f, 0xf1, + 0x3a, 0x77, 0xb5, 0xfb, 0x76, 0xd7, 0xaa, 0x1f, 0x6e, 0xb5, 0x4c, 0x57, 0xdb, 0xaa, 0x1f, 0xf4, + 0x4d, 0xe7, 0x81, 0xd2, 0x73, 0x98, 0xcb, 0xe8, 0x72, 0x40, 0xa3, 0x20, 0x8d, 0x82, 0x34, 0xd2, + 0x06, 0xf2, 0xb6, 0x34, 0x6e, 0x06, 0x0c, 0x82, 0xbd, 0xa7, 0x59, 0x76, 0x57, 0x73, 0x6d, 0xd6, + 0x0d, 0x30, 0xa4, 0x25, 0x8b, 0x59, 0xcc, 0xff, 0x5a, 0xf7, 0xbe, 0xe1, 0xe9, 0xcb, 0x29, 0xd2, + 0x43, 0x49, 0x3e, 0x95, 0x7c, 0x04, 0xcb, 0xef, 0x7a, 0xe8, 0x7b, 0x5a, 0xc7, 0x36, 0x34, 0x97, + 0x39, 0x5c, 0x35, 0x0f, 0xfa, 0x26, 0x77, 0xe9, 0x32, 0x54, 0xb8, 0xab, 0xb9, 0x7d, 0xbe, 0x42, + 0xd6, 0xc8, 0xfa, 0x82, 0x8a, 0xbf, 0xe8, 0x1d, 0x80, 0x81, 0x06, 0x2b, 0x73, 0x6b, 0x64, 0xfd, + 0xdc, 0xf6, 0x15, 0x05, 0xcd, 0xf0, 0xd4, 0x55, 0x02, 0xfb, 0x50, 0x9e, 0x72, 0x4f, 0xb3, 0x4c, + 0xc4, 0x54, 0x87, 0x38, 0xe5, 0xef, 0x08, 0x3c, 0x1f, 0x13, 0xcd, 0x7b, 0xac, 0xcb, 0x4d, 0xfa, + 0x16, 0xc0, 0xa1, 0x38, 0x5d, 0x21, 0x6b, 0xf3, 0xeb, 0xe7, 0xb6, 0x2f, 0x2b, 0xc9, 0xae, 0x52, + 0x04, 0x7f, 0xa3, 0xfc, 0xf0, 0xd1, 0x6a, 0x49, 0x1d, 0x62, 0xf5, 0x80, 0x62, 0xca, 0xbe, 0x92, + 0xab, 0x6c, 0xa0, 0x45, 0x44, 0xdb, 0x03, 0xb8, 0x18, 0x55, 0x36, 0x74, 0xd3, 0x07, 0xb0, 0x28, + 0xe4, 0x35, 0x35, 0xc3, 0x70, 0x7c, 0x77, 0x3d, 0xdb, 0xd8, 0xfa, 0xf7, 0xd1, 0xea, 0xa6, 0x65, + 0xbb, 0xed, 0x7e, 0x4b, 0xd1, 0xd9, 0x7e, 0x1d, 0xa3, 0x11, 0x7c, 0x6c, 0x72, 0xe3, 0x7e, 0xdd, + 0x7d, 0xd0, 0x33, 0xb9, 0xa7, 0xfd, 0xae, 0x61, 0x38, 0x26, 0xe7, 0xea, 0x79, 0x01, 0xe4, 0x9d, + 0xc8, 0xcd, 0xb3, 0xa1, 0x11, 0xee, 0x79, 0x13, 0x16, 0x04, 0xa9, 0x2f, 0x6e, 0x04, 0xef, 0x0c, + 0x38, 0xe5, 0x9f, 0x08, 0xac, 0x45, 0x25, 0xdc, 0x36, 0x3b, 0xa6, 0xe5, 0x1b, 0xcc, 0xa7, 0x6e, + 0xdf, 0xc4, 0x12, 0xe9, 0x1f, 0x02, 0x97, 0x33, 0xcc, 0x40, 0x9f, 0x7d, 0x06, 0x4b, 0x86, 0x38, + 0x6e, 0x3a, 0x78, 0x1c, 0x26, 0xd7, 0x46, 0x9a, 0xfb, 0x06, 0x50, 0x21, 0x52, 0xe3, 0x92, 0xe7, + 0xc7, 0x6f, 0xff, 0x5a, 0xad, 0xc6, 0x9f, 0x71, 0xb5, 0x6a, 0xc4, 0x0f, 0x27, 0x97, 0x85, 0xbf, + 0x10, 0xb8, 0x1a, 0x35, 0xf5, 0xfd, 0x6e, 0x8b, 0x75, 0x0d, 0xbb, 0x6b, 0xcd, 0x64, 0xe8, 0xfe, + 0x24, 0xb0, 0x51, 0xc4, 0x1e, 0x8c, 0x61, 0x0b, 0xaa, 0xfd, 0xf0, 0x79, 0x2c, 0x84, 0xd7, 0xd2, + 0x42, 0x98, 0x00, 0x89, 0xb5, 0x40, 0x05, 0xda, 0x14, 0x62, 0xf5, 0x33, 0xc1, 0xfa, 0x1d, 0x4e, + 0x13, 0x11, 0x18, 0x4c, 0x93, 0xf1, 0x02, 0xb3, 0xab, 0xeb, 0x22, 0x30, 0x02, 0xc8, 0x0f, 0x4c, + 0x3c, 0xe4, 0x73, 0x13, 0xea, 0x46, 0x87, 0xd8, 0xad, 0xe3, 0x49, 0x4f, 0x3f, 0x86, 0x6a, 0x42, + 0x69, 0x61, 0x63, 0x1a, 0xa1, 0xb2, 0x54, 0x1a, 0x2f, 0x1e, 0xf9, 0x77, 0x02, 0xab, 0xbe, 0xe0, + 0x84, 0x30, 0xce, 0xb2, 0x3f, 0xf7, 0xb1, 0xf7, 0x26, 0x9a, 0x85, 0x8e, 0xbd, 0x0b, 0x95, 0x20, + 0x43, 0xd1, 0x97, 0x63, 0xa4, 0x38, 0x02, 0x0c, 0x7a, 0xfd, 0xed, 0xd0, 0xbe, 0xe4, 0x86, 0x31, + 0x25, 0x3f, 0x4e, 0xaa, 0x61, 0xfc, 0x1a, 0xf6, 0xfa, 0x64, 0x33, 0xd0, 0x6f, 0xfa, 0xc4, 0x7a, + 0x7d, 0xe0, 0xc4, 0x27, 0xd4, 0xd4, 0x85, 0x4d, 0x39, 0x4d, 0xfd, 0x29, 0x8f, 0x91, 0x68, 0xea, + 0x39, 0xf6, 0xcc, 0x62, 0x53, 0xff, 0x6f, 0x0e, 0x5e, 0xf0, 0x6d, 0x53, 0x4d, 0xe3, 0x49, 0xc6, + 0xa6, 0x09, 0x94, 0x3b, 0x7a, 0x73, 0x52, 0xbd, 0xe8, 0x02, 0x77, 0xf4, 0xbd, 0xc8, 0x8d, 0xde, + 0x04, 0x6a, 0x70, 0xf7, 0xac, 0x80, 0xf9, 0xb1, 0x05, 0x18, 0xdc, 0xdd, 0xcb, 0x18, 0x19, 0xca, + 0x63, 0x67, 0xd7, 0x31, 0x01, 0x29, 0x29, 0x02, 0x98, 0x4d, 0x36, 0x2c, 0x3b, 0x66, 0x46, 0xf1, + 0x5f, 0x4f, 0x4b, 0xa8, 0x61, 0xb8, 0x33, 0xe5, 0x7f, 0xd1, 0x31, 0xa7, 0xda, 0x00, 0x7e, 0x0c, + 0xaf, 0x38, 0x51, 0x30, 0xf1, 0x6d, 0xec, 0xe9, 0x2f, 0xfb, 0x1f, 0x62, 0x37, 0xcc, 0x4c, 0x2c, + 0x76, 0xbf, 0x11, 0xa8, 0xa5, 0xa8, 0x3d, 0xcb, 0xe3, 0x45, 0x3b, 0x35, 0xa5, 0x26, 0xbd, 0x45, + 0xbe, 0x8a, 0xf5, 0xf8, 0xb6, 0xcd, 0x5d, 0xe6, 0xd8, 0xba, 0xd6, 0xb9, 0xdb, 0xfd, 0x94, 0x0d, + 0xfd, 0x8b, 0xd0, 0x36, 0x6d, 0xab, 0xed, 0xfa, 0x12, 0xe6, 0x55, 0xfc, 0x25, 0x7f, 0x08, 0x97, + 0x12, 0xb9, 0x50, 0xb7, 0xd7, 0xa1, 0xdc, 0xb6, 0xb9, 0x8b, 0x6a, 0x5d, 0x49, 0x53, 0xeb, 0x0c, + 0xb7, 0xcf, 0x23, 0x53, 0xb8, 0xe0, 0x43, 0xdf, 0x63, 0xac, 0x83, 0x6a, 0xc8, 0xef, 0xc0, 0x73, + 0x43, 0x67, 0x28, 0xe4, 0x26, 0x94, 0x7b, 0x8c, 0x75, 0x50, 0xc8, 0x8b, 0x69, 0x42, 0x3c, 0x1e, + 0x34, 0xdb, 0xa7, 0x97, 0x97, 0x80, 0x06, 0x60, 0x9a, 0xa3, 0xed, 0x87, 0x15, 0x2a, 0xbf, 0x07, + 0xd5, 0xc8, 0x29, 0x0a, 0x79, 0x03, 0x2a, 0x3d, 0xff, 0x04, 0xc5, 0xd4, 0x52, 0xc5, 0xf8, 0x54, + 0xe1, 0xd8, 0x16, 0xf0, 0x6c, 0x7f, 0xbf, 0x08, 0xcf, 0xf8, 0xa8, 0x94, 0x01, 0x0c, 0xea, 0x89, + 0x2a, 0x69, 0x28, 0xc9, 0x7f, 0xe6, 0x48, 0xf5, 0xc2, 0xf4, 0x38, 0x76, 0x97, 0x68, 0x07, 0x16, + 0xc4, 0x39, 0xdd, 0x2c, 0xc6, 0x1f, 0x8a, 0x53, 0x8a, 0x92, 0x0b, 0x69, 0x5f, 0x11, 0x58, 0x4a, + 0xda, 0xdf, 0xe9, 0x4e, 0x31, 0xa8, 0xf8, 0xa4, 0x24, 0xbd, 0x36, 0x06, 0xa7, 0xd0, 0xe7, 0x1b, + 0x02, 0x2f, 0x65, 0x2e, 0xa5, 0x74, 0xb7, 0x18, 0x7c, 0xc6, 0x2c, 0x27, 0x35, 0x1e, 0x07, 0x42, + 0xa8, 0xca, 0x00, 0x06, 0x0f, 0x72, 0x32, 0x23, 0xb6, 0x3b, 0xe5, 0x64, 0x46, 0x7c, 0x24, 0x96, + 0x4b, 0xf4, 0x4b, 0x02, 0xd5, 0x04, 0x9d, 0xe8, 0xad, 0x4c, 0xa8, 0xf4, 0xfd, 0x4d, 0xda, 0x19, + 0x9d, 0x31, 0x92, 0x38, 0x49, 0xcb, 0x40, 0x4e, 0xe2, 0x64, 0xac, 0x41, 0x39, 0x89, 0x93, 0xb5, + 0x79, 0x60, 0xe2, 0x64, 0x0e, 0xbe, 0x39, 0x89, 0x53, 0x64, 0x09, 0xc8, 0x49, 0x9c, 0x42, 0x73, + 0xb7, 0x5c, 0xa2, 0x47, 0x70, 0x3e, 0x32, 0x44, 0xd1, 0xad, 0x4c, 0xd8, 0xa4, 0x91, 0x57, 0xda, + 0x1e, 0x85, 0x25, 0x92, 0x41, 0x09, 0x63, 0x42, 0x4e, 0x06, 0xa5, 0x8f, 0x47, 0xd2, 0xce, 0xe8, + 0x8c, 0x42, 0x99, 0x2f, 0x08, 0xd0, 0x38, 0x05, 0xbd, 0x39, 0x22, 0x64, 0xa8, 0xca, 0xad, 0x91, + 0xf9, 0x84, 0x26, 0x9f, 0xc3, 0x62, 0xf4, 0x46, 0xa3, 0xd9, 0xee, 0x4d, 0xbc, 0x72, 0xa5, 0x1b, + 0x23, 0xf1, 0x08, 0xe1, 0x9f, 0x40, 0xd9, 0xbb, 0xe9, 0xe8, 0x7a, 0x26, 0xfb, 0xd0, 0xa5, 0x2a, + 0x5d, 0x2d, 0x40, 0x29, 0xe0, 0x75, 0xa8, 0x04, 0x37, 0x1c, 0xdd, 0xc8, 0x66, 0x1b, 0xbe, 0x54, + 0xa5, 0x6b, 0x85, 0x68, 0x43, 0x21, 0x8d, 0x3b, 0x0f, 0x4f, 0x6a, 0xe4, 0xf8, 0xa4, 0x46, 0xfe, + 0x3e, 0xa9, 0x91, 0xaf, 0x4f, 0x6b, 0xa5, 0xe3, 0xd3, 0x5a, 0xe9, 0x8f, 0xd3, 0x5a, 0xe9, 0xa3, + 0xeb, 0x99, 0xd3, 0xd4, 0x91, 0x78, 0x4b, 0xe2, 0xcf, 0x55, 0xad, 0x8a, 0xff, 0x72, 0xe4, 0xc6, + 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0xca, 0x49, 0x76, 0x50, 0xc2, 0x19, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1640,7 +1644,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Validators(ctx context.Context, in *QueryValidatorsRequest, opts ...grpc.CallOption) (*QueryValidatorsResponse, error) { out := new(QueryValidatorsResponse) - err := c.cc.Invoke(ctx, "/cosmos.staking.Query/Validators", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.staking.v1beta1.Query/Validators", in, out, opts...) if err != nil { return nil, err } @@ -1649,7 +1653,7 @@ func (c *queryClient) Validators(ctx context.Context, in *QueryValidatorsRequest func (c *queryClient) Validator(ctx context.Context, in *QueryValidatorRequest, opts ...grpc.CallOption) (*QueryValidatorResponse, error) { out := new(QueryValidatorResponse) - err := c.cc.Invoke(ctx, "/cosmos.staking.Query/Validator", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.staking.v1beta1.Query/Validator", in, out, opts...) if err != nil { return nil, err } @@ -1658,7 +1662,7 @@ func (c *queryClient) Validator(ctx context.Context, in *QueryValidatorRequest, func (c *queryClient) ValidatorDelegations(ctx context.Context, in *QueryValidatorDelegationsRequest, opts ...grpc.CallOption) (*QueryValidatorDelegationsResponse, error) { out := new(QueryValidatorDelegationsResponse) - err := c.cc.Invoke(ctx, "/cosmos.staking.Query/ValidatorDelegations", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.staking.v1beta1.Query/ValidatorDelegations", in, out, opts...) if err != nil { return nil, err } @@ -1667,7 +1671,7 @@ func (c *queryClient) ValidatorDelegations(ctx context.Context, in *QueryValidat func (c *queryClient) ValidatorUnbondingDelegations(ctx context.Context, in *QueryValidatorUnbondingDelegationsRequest, opts ...grpc.CallOption) (*QueryValidatorUnbondingDelegationsResponse, error) { out := new(QueryValidatorUnbondingDelegationsResponse) - err := c.cc.Invoke(ctx, "/cosmos.staking.Query/ValidatorUnbondingDelegations", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.staking.v1beta1.Query/ValidatorUnbondingDelegations", in, out, opts...) if err != nil { return nil, err } @@ -1676,7 +1680,7 @@ func (c *queryClient) ValidatorUnbondingDelegations(ctx context.Context, in *Que func (c *queryClient) Delegation(ctx context.Context, in *QueryDelegationRequest, opts ...grpc.CallOption) (*QueryDelegationResponse, error) { out := new(QueryDelegationResponse) - err := c.cc.Invoke(ctx, "/cosmos.staking.Query/Delegation", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.staking.v1beta1.Query/Delegation", in, out, opts...) if err != nil { return nil, err } @@ -1685,7 +1689,7 @@ func (c *queryClient) Delegation(ctx context.Context, in *QueryDelegationRequest func (c *queryClient) UnbondingDelegation(ctx context.Context, in *QueryUnbondingDelegationRequest, opts ...grpc.CallOption) (*QueryUnbondingDelegationResponse, error) { out := new(QueryUnbondingDelegationResponse) - err := c.cc.Invoke(ctx, "/cosmos.staking.Query/UnbondingDelegation", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.staking.v1beta1.Query/UnbondingDelegation", in, out, opts...) if err != nil { return nil, err } @@ -1694,7 +1698,7 @@ func (c *queryClient) UnbondingDelegation(ctx context.Context, in *QueryUnbondin func (c *queryClient) DelegatorDelegations(ctx context.Context, in *QueryDelegatorDelegationsRequest, opts ...grpc.CallOption) (*QueryDelegatorDelegationsResponse, error) { out := new(QueryDelegatorDelegationsResponse) - err := c.cc.Invoke(ctx, "/cosmos.staking.Query/DelegatorDelegations", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.staking.v1beta1.Query/DelegatorDelegations", in, out, opts...) if err != nil { return nil, err } @@ -1703,7 +1707,7 @@ func (c *queryClient) DelegatorDelegations(ctx context.Context, in *QueryDelegat func (c *queryClient) DelegatorUnbondingDelegations(ctx context.Context, in *QueryDelegatorUnbondingDelegationsRequest, opts ...grpc.CallOption) (*QueryDelegatorUnbondingDelegationsResponse, error) { out := new(QueryDelegatorUnbondingDelegationsResponse) - err := c.cc.Invoke(ctx, "/cosmos.staking.Query/DelegatorUnbondingDelegations", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.staking.v1beta1.Query/DelegatorUnbondingDelegations", in, out, opts...) if err != nil { return nil, err } @@ -1712,7 +1716,7 @@ func (c *queryClient) DelegatorUnbondingDelegations(ctx context.Context, in *Que func (c *queryClient) Redelegations(ctx context.Context, in *QueryRedelegationsRequest, opts ...grpc.CallOption) (*QueryRedelegationsResponse, error) { out := new(QueryRedelegationsResponse) - err := c.cc.Invoke(ctx, "/cosmos.staking.Query/Redelegations", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.staking.v1beta1.Query/Redelegations", in, out, opts...) if err != nil { return nil, err } @@ -1721,7 +1725,7 @@ func (c *queryClient) Redelegations(ctx context.Context, in *QueryRedelegationsR func (c *queryClient) DelegatorValidators(ctx context.Context, in *QueryDelegatorValidatorsRequest, opts ...grpc.CallOption) (*QueryDelegatorValidatorsResponse, error) { out := new(QueryDelegatorValidatorsResponse) - err := c.cc.Invoke(ctx, "/cosmos.staking.Query/DelegatorValidators", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.staking.v1beta1.Query/DelegatorValidators", in, out, opts...) if err != nil { return nil, err } @@ -1730,7 +1734,7 @@ func (c *queryClient) DelegatorValidators(ctx context.Context, in *QueryDelegato func (c *queryClient) DelegatorValidator(ctx context.Context, in *QueryDelegatorValidatorRequest, opts ...grpc.CallOption) (*QueryDelegatorValidatorResponse, error) { out := new(QueryDelegatorValidatorResponse) - err := c.cc.Invoke(ctx, "/cosmos.staking.Query/DelegatorValidator", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.staking.v1beta1.Query/DelegatorValidator", in, out, opts...) if err != nil { return nil, err } @@ -1739,7 +1743,7 @@ func (c *queryClient) DelegatorValidator(ctx context.Context, in *QueryDelegator func (c *queryClient) HistoricalInfo(ctx context.Context, in *QueryHistoricalInfoRequest, opts ...grpc.CallOption) (*QueryHistoricalInfoResponse, error) { out := new(QueryHistoricalInfoResponse) - err := c.cc.Invoke(ctx, "/cosmos.staking.Query/HistoricalInfo", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.staking.v1beta1.Query/HistoricalInfo", in, out, opts...) if err != nil { return nil, err } @@ -1748,7 +1752,7 @@ func (c *queryClient) HistoricalInfo(ctx context.Context, in *QueryHistoricalInf func (c *queryClient) Pool(ctx context.Context, in *QueryPoolRequest, opts ...grpc.CallOption) (*QueryPoolResponse, error) { out := new(QueryPoolResponse) - err := c.cc.Invoke(ctx, "/cosmos.staking.Query/Pool", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.staking.v1beta1.Query/Pool", in, out, opts...) if err != nil { return nil, err } @@ -1757,7 +1761,7 @@ func (c *queryClient) Pool(ctx context.Context, in *QueryPoolRequest, opts ...gr func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/cosmos.staking.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.staking.v1beta1.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -1857,7 +1861,7 @@ func _Query_Validators_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.staking.Query/Validators", + FullMethod: "/cosmos.staking.v1beta1.Query/Validators", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Validators(ctx, req.(*QueryValidatorsRequest)) @@ -1875,7 +1879,7 @@ func _Query_Validator_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.staking.Query/Validator", + FullMethod: "/cosmos.staking.v1beta1.Query/Validator", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Validator(ctx, req.(*QueryValidatorRequest)) @@ -1893,7 +1897,7 @@ func _Query_ValidatorDelegations_Handler(srv interface{}, ctx context.Context, d } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.staking.Query/ValidatorDelegations", + FullMethod: "/cosmos.staking.v1beta1.Query/ValidatorDelegations", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ValidatorDelegations(ctx, req.(*QueryValidatorDelegationsRequest)) @@ -1911,7 +1915,7 @@ func _Query_ValidatorUnbondingDelegations_Handler(srv interface{}, ctx context.C } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.staking.Query/ValidatorUnbondingDelegations", + FullMethod: "/cosmos.staking.v1beta1.Query/ValidatorUnbondingDelegations", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ValidatorUnbondingDelegations(ctx, req.(*QueryValidatorUnbondingDelegationsRequest)) @@ -1929,7 +1933,7 @@ func _Query_Delegation_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.staking.Query/Delegation", + FullMethod: "/cosmos.staking.v1beta1.Query/Delegation", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Delegation(ctx, req.(*QueryDelegationRequest)) @@ -1947,7 +1951,7 @@ func _Query_UnbondingDelegation_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.staking.Query/UnbondingDelegation", + FullMethod: "/cosmos.staking.v1beta1.Query/UnbondingDelegation", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).UnbondingDelegation(ctx, req.(*QueryUnbondingDelegationRequest)) @@ -1965,7 +1969,7 @@ func _Query_DelegatorDelegations_Handler(srv interface{}, ctx context.Context, d } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.staking.Query/DelegatorDelegations", + FullMethod: "/cosmos.staking.v1beta1.Query/DelegatorDelegations", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DelegatorDelegations(ctx, req.(*QueryDelegatorDelegationsRequest)) @@ -1983,7 +1987,7 @@ func _Query_DelegatorUnbondingDelegations_Handler(srv interface{}, ctx context.C } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.staking.Query/DelegatorUnbondingDelegations", + FullMethod: "/cosmos.staking.v1beta1.Query/DelegatorUnbondingDelegations", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DelegatorUnbondingDelegations(ctx, req.(*QueryDelegatorUnbondingDelegationsRequest)) @@ -2001,7 +2005,7 @@ func _Query_Redelegations_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.staking.Query/Redelegations", + FullMethod: "/cosmos.staking.v1beta1.Query/Redelegations", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Redelegations(ctx, req.(*QueryRedelegationsRequest)) @@ -2019,7 +2023,7 @@ func _Query_DelegatorValidators_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.staking.Query/DelegatorValidators", + FullMethod: "/cosmos.staking.v1beta1.Query/DelegatorValidators", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DelegatorValidators(ctx, req.(*QueryDelegatorValidatorsRequest)) @@ -2037,7 +2041,7 @@ func _Query_DelegatorValidator_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.staking.Query/DelegatorValidator", + FullMethod: "/cosmos.staking.v1beta1.Query/DelegatorValidator", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DelegatorValidator(ctx, req.(*QueryDelegatorValidatorRequest)) @@ -2055,7 +2059,7 @@ func _Query_HistoricalInfo_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.staking.Query/HistoricalInfo", + FullMethod: "/cosmos.staking.v1beta1.Query/HistoricalInfo", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).HistoricalInfo(ctx, req.(*QueryHistoricalInfoRequest)) @@ -2073,7 +2077,7 @@ func _Query_Pool_Handler(srv interface{}, ctx context.Context, dec func(interfac } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.staking.Query/Pool", + FullMethod: "/cosmos.staking.v1beta1.Query/Pool", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Pool(ctx, req.(*QueryPoolRequest)) @@ -2091,7 +2095,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.staking.Query/Params", + FullMethod: "/cosmos.staking.v1beta1.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -2100,7 +2104,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.staking.Query", + ServiceName: "cosmos.staking.v1beta1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -2161,7 +2165,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/staking/query.proto", + Metadata: "cosmos/staking/v1beta1/query.proto", } func (m *QueryValidatorsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/staking/types/staking.pb.go b/x/staking/types/staking.pb.go index 578f164dd5..7e8178d9a3 100644 --- a/x/staking/types/staking.pb.go +++ b/x/staking/types/staking.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/staking/staking.proto +// source: cosmos/staking/v1beta1/staking.proto package types @@ -8,7 +8,7 @@ import ( compress_gzip "compress/gzip" fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" - types "github.com/cosmos/cosmos-sdk/types" + types1 "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" github_com_gogo_protobuf_proto "github.com/gogo/protobuf/proto" proto "github.com/gogo/protobuf/proto" @@ -16,11 +16,13 @@ import ( github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" _ "github.com/golang/protobuf/ptypes/duration" _ "github.com/golang/protobuf/ptypes/timestamp" - types1 "github.com/tendermint/tendermint/abci/types" + types "github.com/tendermint/tendermint/abci/types" io "io" io_ioutil "io/ioutil" math "math" math_bits "math/bits" + reflect "reflect" + strings "strings" time "time" ) @@ -36,358 +38,18 @@ var _ = time.Kitchen // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package -// MsgCreateValidator defines an SDK message for creating a new validator. -type MsgCreateValidator struct { - Description Description `protobuf:"bytes,1,opt,name=description,proto3" json:"description"` - Commission CommissionRates `protobuf:"bytes,2,opt,name=commission,proto3" json:"commission"` - MinSelfDelegation github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,3,opt,name=min_self_delegation,json=minSelfDelegation,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"min_self_delegation" yaml:"min_self_delegation"` - DelegatorAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,4,opt,name=delegator_address,json=delegatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"delegator_address,omitempty" yaml:"delegator_address"` - ValidatorAddress github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,5,opt,name=validator_address,json=validatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"validator_address,omitempty" yaml:"validator_address"` - Pubkey string `protobuf:"bytes,6,opt,name=pubkey,proto3" json:"pubkey,omitempty"` - Value types.Coin `protobuf:"bytes,7,opt,name=value,proto3" json:"value"` -} - -func (m *MsgCreateValidator) Reset() { *m = MsgCreateValidator{} } -func (m *MsgCreateValidator) String() string { return proto.CompactTextString(m) } -func (*MsgCreateValidator) ProtoMessage() {} -func (*MsgCreateValidator) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{0} -} -func (m *MsgCreateValidator) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgCreateValidator) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgCreateValidator.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgCreateValidator) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgCreateValidator.Merge(m, src) -} -func (m *MsgCreateValidator) XXX_Size() int { - return m.Size() -} -func (m *MsgCreateValidator) XXX_DiscardUnknown() { - xxx_messageInfo_MsgCreateValidator.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgCreateValidator proto.InternalMessageInfo - -func (m *MsgCreateValidator) GetDescription() Description { - if m != nil { - return m.Description - } - return Description{} -} - -func (m *MsgCreateValidator) GetCommission() CommissionRates { - if m != nil { - return m.Commission - } - return CommissionRates{} -} - -func (m *MsgCreateValidator) GetDelegatorAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { - if m != nil { - return m.DelegatorAddress - } - return nil -} - -func (m *MsgCreateValidator) GetValidatorAddress() github_com_cosmos_cosmos_sdk_types.ValAddress { - if m != nil { - return m.ValidatorAddress - } - return nil -} - -func (m *MsgCreateValidator) GetPubkey() string { - if m != nil { - return m.Pubkey - } - return "" -} - -func (m *MsgCreateValidator) GetValue() types.Coin { - if m != nil { - return m.Value - } - return types.Coin{} -} - -// MsgEditValidator defines an SDK message for editing an existing validator. -type MsgEditValidator struct { - Description Description `protobuf:"bytes,1,opt,name=description,proto3" json:"description"` - ValidatorAddress github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,2,opt,name=validator_address,json=validatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"validator_address,omitempty" yaml:"address"` - // We pass a reference to the new commission rate and min self delegation as - // it's not mandatory to update. If not updated, the deserialized rate will be - // zero with no way to distinguish if an update was intended. - // - // REF: #2373 - CommissionRate *github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,3,opt,name=commission_rate,json=commissionRate,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"commission_rate,omitempty" yaml:"commission_rate"` - MinSelfDelegation *github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=min_self_delegation,json=minSelfDelegation,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"min_self_delegation,omitempty" yaml:"min_self_delegation"` -} - -func (m *MsgEditValidator) Reset() { *m = MsgEditValidator{} } -func (m *MsgEditValidator) String() string { return proto.CompactTextString(m) } -func (*MsgEditValidator) ProtoMessage() {} -func (*MsgEditValidator) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{1} -} -func (m *MsgEditValidator) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgEditValidator) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgEditValidator.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgEditValidator) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgEditValidator.Merge(m, src) -} -func (m *MsgEditValidator) XXX_Size() int { - return m.Size() -} -func (m *MsgEditValidator) XXX_DiscardUnknown() { - xxx_messageInfo_MsgEditValidator.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgEditValidator proto.InternalMessageInfo - -func (m *MsgEditValidator) GetDescription() Description { - if m != nil { - return m.Description - } - return Description{} -} - -func (m *MsgEditValidator) GetValidatorAddress() github_com_cosmos_cosmos_sdk_types.ValAddress { - if m != nil { - return m.ValidatorAddress - } - return nil -} - -// MsgDelegate defines an SDK message for performing a delegation from a -// delegate to a validator. -type MsgDelegate struct { - DelegatorAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=delegator_address,json=delegatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"delegator_address,omitempty" yaml:"delegator_address"` - ValidatorAddress github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,2,opt,name=validator_address,json=validatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"validator_address,omitempty" yaml:"validator_address"` - Amount types.Coin `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount"` -} - -func (m *MsgDelegate) Reset() { *m = MsgDelegate{} } -func (m *MsgDelegate) String() string { return proto.CompactTextString(m) } -func (*MsgDelegate) ProtoMessage() {} -func (*MsgDelegate) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{2} -} -func (m *MsgDelegate) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgDelegate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgDelegate.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgDelegate) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgDelegate.Merge(m, src) -} -func (m *MsgDelegate) XXX_Size() int { - return m.Size() -} -func (m *MsgDelegate) XXX_DiscardUnknown() { - xxx_messageInfo_MsgDelegate.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgDelegate proto.InternalMessageInfo - -func (m *MsgDelegate) GetDelegatorAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { - if m != nil { - return m.DelegatorAddress - } - return nil -} - -func (m *MsgDelegate) GetValidatorAddress() github_com_cosmos_cosmos_sdk_types.ValAddress { - if m != nil { - return m.ValidatorAddress - } - return nil -} - -func (m *MsgDelegate) GetAmount() types.Coin { - if m != nil { - return m.Amount - } - return types.Coin{} -} - -// MsgBeginRedelegate defines an SDK message for performing a redelegation from -// a delegate and source validator to a destination validator. -type MsgBeginRedelegate struct { - DelegatorAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=delegator_address,json=delegatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"delegator_address,omitempty" yaml:"delegator_address"` - ValidatorSrcAddress github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,2,opt,name=validator_src_address,json=validatorSrcAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"validator_src_address,omitempty" yaml:"validator_src_address"` - ValidatorDstAddress github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,3,opt,name=validator_dst_address,json=validatorDstAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"validator_dst_address,omitempty" yaml:"validator_dst_address"` - Amount types.Coin `protobuf:"bytes,4,opt,name=amount,proto3" json:"amount"` -} - -func (m *MsgBeginRedelegate) Reset() { *m = MsgBeginRedelegate{} } -func (m *MsgBeginRedelegate) String() string { return proto.CompactTextString(m) } -func (*MsgBeginRedelegate) ProtoMessage() {} -func (*MsgBeginRedelegate) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{3} -} -func (m *MsgBeginRedelegate) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgBeginRedelegate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgBeginRedelegate.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgBeginRedelegate) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgBeginRedelegate.Merge(m, src) -} -func (m *MsgBeginRedelegate) XXX_Size() int { - return m.Size() -} -func (m *MsgBeginRedelegate) XXX_DiscardUnknown() { - xxx_messageInfo_MsgBeginRedelegate.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgBeginRedelegate proto.InternalMessageInfo - -func (m *MsgBeginRedelegate) GetDelegatorAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { - if m != nil { - return m.DelegatorAddress - } - return nil -} - -func (m *MsgBeginRedelegate) GetValidatorSrcAddress() github_com_cosmos_cosmos_sdk_types.ValAddress { - if m != nil { - return m.ValidatorSrcAddress - } - return nil -} - -func (m *MsgBeginRedelegate) GetValidatorDstAddress() github_com_cosmos_cosmos_sdk_types.ValAddress { - if m != nil { - return m.ValidatorDstAddress - } - return nil -} - -func (m *MsgBeginRedelegate) GetAmount() types.Coin { - if m != nil { - return m.Amount - } - return types.Coin{} -} - -// MsgUndelegate defines an SDK message for performing an undelegation from a -// delegate and a validator. -type MsgUndelegate struct { - DelegatorAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=delegator_address,json=delegatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"delegator_address,omitempty" yaml:"delegator_address"` - ValidatorAddress github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,2,opt,name=validator_address,json=validatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"validator_address,omitempty" yaml:"validator_address"` - Amount types.Coin `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount"` -} - -func (m *MsgUndelegate) Reset() { *m = MsgUndelegate{} } -func (m *MsgUndelegate) String() string { return proto.CompactTextString(m) } -func (*MsgUndelegate) ProtoMessage() {} -func (*MsgUndelegate) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{4} -} -func (m *MsgUndelegate) XXX_Unmarshal(b []byte) error { - return m.Unmarshal(b) -} -func (m *MsgUndelegate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { - if deterministic { - return xxx_messageInfo_MsgUndelegate.Marshal(b, m, deterministic) - } else { - b = b[:cap(b)] - n, err := m.MarshalToSizedBuffer(b) - if err != nil { - return nil, err - } - return b[:n], nil - } -} -func (m *MsgUndelegate) XXX_Merge(src proto.Message) { - xxx_messageInfo_MsgUndelegate.Merge(m, src) -} -func (m *MsgUndelegate) XXX_Size() int { - return m.Size() -} -func (m *MsgUndelegate) XXX_DiscardUnknown() { - xxx_messageInfo_MsgUndelegate.DiscardUnknown(m) -} - -var xxx_messageInfo_MsgUndelegate proto.InternalMessageInfo - -func (m *MsgUndelegate) GetDelegatorAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { - if m != nil { - return m.DelegatorAddress - } - return nil -} - -func (m *MsgUndelegate) GetValidatorAddress() github_com_cosmos_cosmos_sdk_types.ValAddress { - if m != nil { - return m.ValidatorAddress - } - return nil -} - -func (m *MsgUndelegate) GetAmount() types.Coin { - if m != nil { - return m.Amount - } - return types.Coin{} -} - // HistoricalInfo contains the historical information that gets stored at // each height. type HistoricalInfo struct { - Header types1.Header `protobuf:"bytes,1,opt,name=header,proto3" json:"header"` - Valset []Validator `protobuf:"bytes,2,rep,name=valset,proto3" json:"valset"` + Header types.Header `protobuf:"bytes,1,opt,name=header,proto3" json:"header"` + Valset []Validator `protobuf:"bytes,2,rep,name=valset,proto3" json:"valset"` } func (m *HistoricalInfo) Reset() { *m = HistoricalInfo{} } func (m *HistoricalInfo) String() string { return proto.CompactTextString(m) } func (*HistoricalInfo) ProtoMessage() {} func (*HistoricalInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{5} + return fileDescriptor_64c30c6cf92913c9, []int{0} } func (m *HistoricalInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -416,11 +78,11 @@ func (m *HistoricalInfo) XXX_DiscardUnknown() { var xxx_messageInfo_HistoricalInfo proto.InternalMessageInfo -func (m *HistoricalInfo) GetHeader() types1.Header { +func (m *HistoricalInfo) GetHeader() types.Header { if m != nil { return m.Header } - return types1.Header{} + return types.Header{} } func (m *HistoricalInfo) GetValset() []Validator { @@ -441,7 +103,7 @@ type CommissionRates struct { func (m *CommissionRates) Reset() { *m = CommissionRates{} } func (*CommissionRates) ProtoMessage() {} func (*CommissionRates) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{6} + return fileDescriptor_64c30c6cf92913c9, []int{1} } func (m *CommissionRates) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -479,7 +141,7 @@ type Commission struct { func (m *Commission) Reset() { *m = Commission{} } func (*Commission) ProtoMessage() {} func (*Commission) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{7} + return fileDescriptor_64c30c6cf92913c9, []int{2} } func (m *Commission) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -527,7 +189,7 @@ type Description struct { func (m *Description) Reset() { *m = Description{} } func (*Description) ProtoMessage() {} func (*Description) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{8} + return fileDescriptor_64c30c6cf92913c9, []int{3} } func (m *Description) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -615,7 +277,7 @@ type Validator struct { func (m *Validator) Reset() { *m = Validator{} } func (*Validator) ProtoMessage() {} func (*Validator) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{9} + return fileDescriptor_64c30c6cf92913c9, []int{4} } func (m *Validator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -644,6 +306,50 @@ func (m *Validator) XXX_DiscardUnknown() { var xxx_messageInfo_Validator proto.InternalMessageInfo +// ValAddresses defines a repeated set of validator addresses. +type ValAddresses struct { + Addresses []github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,1,rep,name=addresses,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"addresses,omitempty"` +} + +func (m *ValAddresses) Reset() { *m = ValAddresses{} } +func (*ValAddresses) ProtoMessage() {} +func (*ValAddresses) Descriptor() ([]byte, []int) { + return fileDescriptor_64c30c6cf92913c9, []int{5} +} +func (m *ValAddresses) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ValAddresses) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ValAddresses.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ValAddresses) XXX_Merge(src proto.Message) { + xxx_messageInfo_ValAddresses.Merge(m, src) +} +func (m *ValAddresses) XXX_Size() int { + return m.Size() +} +func (m *ValAddresses) XXX_DiscardUnknown() { + xxx_messageInfo_ValAddresses.DiscardUnknown(m) +} + +var xxx_messageInfo_ValAddresses proto.InternalMessageInfo + +func (m *ValAddresses) GetAddresses() []github_com_cosmos_cosmos_sdk_types.ValAddress { + if m != nil { + return m.Addresses + } + return nil +} + // DVPair is struct that just has a delegator-validator pair with no other data. // It is intended to be used as a marshalable pointer. For example, a DVPair can // be used to construct the key to getting an UnbondingDelegation from state. @@ -655,7 +361,7 @@ type DVPair struct { func (m *DVPair) Reset() { *m = DVPair{} } func (*DVPair) ProtoMessage() {} func (*DVPair) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{10} + return fileDescriptor_64c30c6cf92913c9, []int{6} } func (m *DVPair) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -707,7 +413,7 @@ func (m *DVPairs) Reset() { *m = DVPairs{} } func (m *DVPairs) String() string { return proto.CompactTextString(m) } func (*DVPairs) ProtoMessage() {} func (*DVPairs) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{11} + return fileDescriptor_64c30c6cf92913c9, []int{7} } func (m *DVPairs) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -756,7 +462,7 @@ type DVVTriplet struct { func (m *DVVTriplet) Reset() { *m = DVVTriplet{} } func (*DVVTriplet) ProtoMessage() {} func (*DVVTriplet) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{12} + return fileDescriptor_64c30c6cf92913c9, []int{8} } func (m *DVVTriplet) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -815,7 +521,7 @@ func (m *DVVTriplets) Reset() { *m = DVVTriplets{} } func (m *DVVTriplets) String() string { return proto.CompactTextString(m) } func (*DVVTriplets) ProtoMessage() {} func (*DVVTriplets) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{13} + return fileDescriptor_64c30c6cf92913c9, []int{9} } func (m *DVVTriplets) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -863,7 +569,7 @@ type Delegation struct { func (m *Delegation) Reset() { *m = Delegation{} } func (*Delegation) ProtoMessage() {} func (*Delegation) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{14} + return fileDescriptor_64c30c6cf92913c9, []int{10} } func (m *Delegation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -917,7 +623,7 @@ type UnbondingDelegation struct { func (m *UnbondingDelegation) Reset() { *m = UnbondingDelegation{} } func (*UnbondingDelegation) ProtoMessage() {} func (*UnbondingDelegation) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{15} + return fileDescriptor_64c30c6cf92913c9, []int{11} } func (m *UnbondingDelegation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -978,7 +684,7 @@ type UnbondingDelegationEntry struct { func (m *UnbondingDelegationEntry) Reset() { *m = UnbondingDelegationEntry{} } func (*UnbondingDelegationEntry) ProtoMessage() {} func (*UnbondingDelegationEntry) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{16} + return fileDescriptor_64c30c6cf92913c9, []int{12} } func (m *UnbondingDelegationEntry) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1032,7 +738,7 @@ type RedelegationEntry struct { func (m *RedelegationEntry) Reset() { *m = RedelegationEntry{} } func (*RedelegationEntry) ProtoMessage() {} func (*RedelegationEntry) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{17} + return fileDescriptor_64c30c6cf92913c9, []int{13} } func (m *RedelegationEntry) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1087,7 +793,7 @@ type Redelegation struct { func (m *Redelegation) Reset() { *m = Redelegation{} } func (*Redelegation) ProtoMessage() {} func (*Redelegation) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{18} + return fileDescriptor_64c30c6cf92913c9, []int{14} } func (m *Redelegation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1156,7 +862,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{19} + return fileDescriptor_64c30c6cf92913c9, []int{15} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1223,14 +929,14 @@ func (m *Params) GetBondDenom() string { // DelegationResponse is equivalent to Delegation except that it contains a balance // in addition to shares which is more suitable for client responses. type DelegationResponse struct { - Delegation Delegation `protobuf:"bytes,1,opt,name=delegation,proto3" json:"delegation"` - Balance types.Coin `protobuf:"bytes,2,opt,name=balance,proto3" json:"balance"` + Delegation Delegation `protobuf:"bytes,1,opt,name=delegation,proto3" json:"delegation"` + Balance types1.Coin `protobuf:"bytes,2,opt,name=balance,proto3" json:"balance"` } func (m *DelegationResponse) Reset() { *m = DelegationResponse{} } func (*DelegationResponse) ProtoMessage() {} func (*DelegationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{20} + return fileDescriptor_64c30c6cf92913c9, []int{16} } func (m *DelegationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1266,11 +972,11 @@ func (m *DelegationResponse) GetDelegation() Delegation { return Delegation{} } -func (m *DelegationResponse) GetBalance() types.Coin { +func (m *DelegationResponse) GetBalance() types1.Coin { if m != nil { return m.Balance } - return types.Coin{} + return types1.Coin{} } // RedelegationEntryResponse is equivalent to a RedelegationEntry except that it @@ -1285,7 +991,7 @@ func (m *RedelegationEntryResponse) Reset() { *m = RedelegationEntryResp func (m *RedelegationEntryResponse) String() string { return proto.CompactTextString(m) } func (*RedelegationEntryResponse) ProtoMessage() {} func (*RedelegationEntryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{21} + return fileDescriptor_64c30c6cf92913c9, []int{17} } func (m *RedelegationEntryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1333,7 +1039,7 @@ func (m *RedelegationResponse) Reset() { *m = RedelegationResponse{} } func (m *RedelegationResponse) String() string { return proto.CompactTextString(m) } func (*RedelegationResponse) ProtoMessage() {} func (*RedelegationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{22} + return fileDescriptor_64c30c6cf92913c9, []int{18} } func (m *RedelegationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1386,7 +1092,7 @@ func (m *Pool) Reset() { *m = Pool{} } func (m *Pool) String() string { return proto.CompactTextString(m) } func (*Pool) ProtoMessage() {} func (*Pool) Descriptor() ([]byte, []int) { - return fileDescriptor_146003fcdb99b683, []int{23} + return fileDescriptor_64c30c6cf92913c9, []int{19} } func (m *Pool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1416,151 +1122,140 @@ func (m *Pool) XXX_DiscardUnknown() { var xxx_messageInfo_Pool proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgCreateValidator)(nil), "cosmos.staking.MsgCreateValidator") - proto.RegisterType((*MsgEditValidator)(nil), "cosmos.staking.MsgEditValidator") - proto.RegisterType((*MsgDelegate)(nil), "cosmos.staking.MsgDelegate") - proto.RegisterType((*MsgBeginRedelegate)(nil), "cosmos.staking.MsgBeginRedelegate") - proto.RegisterType((*MsgUndelegate)(nil), "cosmos.staking.MsgUndelegate") - proto.RegisterType((*HistoricalInfo)(nil), "cosmos.staking.HistoricalInfo") - proto.RegisterType((*CommissionRates)(nil), "cosmos.staking.CommissionRates") - proto.RegisterType((*Commission)(nil), "cosmos.staking.Commission") - proto.RegisterType((*Description)(nil), "cosmos.staking.Description") - proto.RegisterType((*Validator)(nil), "cosmos.staking.Validator") - proto.RegisterType((*DVPair)(nil), "cosmos.staking.DVPair") - proto.RegisterType((*DVPairs)(nil), "cosmos.staking.DVPairs") - proto.RegisterType((*DVVTriplet)(nil), "cosmos.staking.DVVTriplet") - proto.RegisterType((*DVVTriplets)(nil), "cosmos.staking.DVVTriplets") - proto.RegisterType((*Delegation)(nil), "cosmos.staking.Delegation") - proto.RegisterType((*UnbondingDelegation)(nil), "cosmos.staking.UnbondingDelegation") - proto.RegisterType((*UnbondingDelegationEntry)(nil), "cosmos.staking.UnbondingDelegationEntry") - proto.RegisterType((*RedelegationEntry)(nil), "cosmos.staking.RedelegationEntry") - proto.RegisterType((*Redelegation)(nil), "cosmos.staking.Redelegation") - proto.RegisterType((*Params)(nil), "cosmos.staking.Params") - proto.RegisterType((*DelegationResponse)(nil), "cosmos.staking.DelegationResponse") - proto.RegisterType((*RedelegationEntryResponse)(nil), "cosmos.staking.RedelegationEntryResponse") - proto.RegisterType((*RedelegationResponse)(nil), "cosmos.staking.RedelegationResponse") - proto.RegisterType((*Pool)(nil), "cosmos.staking.Pool") + proto.RegisterType((*HistoricalInfo)(nil), "cosmos.staking.v1beta1.HistoricalInfo") + proto.RegisterType((*CommissionRates)(nil), "cosmos.staking.v1beta1.CommissionRates") + proto.RegisterType((*Commission)(nil), "cosmos.staking.v1beta1.Commission") + proto.RegisterType((*Description)(nil), "cosmos.staking.v1beta1.Description") + proto.RegisterType((*Validator)(nil), "cosmos.staking.v1beta1.Validator") + proto.RegisterType((*ValAddresses)(nil), "cosmos.staking.v1beta1.ValAddresses") + proto.RegisterType((*DVPair)(nil), "cosmos.staking.v1beta1.DVPair") + proto.RegisterType((*DVPairs)(nil), "cosmos.staking.v1beta1.DVPairs") + proto.RegisterType((*DVVTriplet)(nil), "cosmos.staking.v1beta1.DVVTriplet") + proto.RegisterType((*DVVTriplets)(nil), "cosmos.staking.v1beta1.DVVTriplets") + proto.RegisterType((*Delegation)(nil), "cosmos.staking.v1beta1.Delegation") + proto.RegisterType((*UnbondingDelegation)(nil), "cosmos.staking.v1beta1.UnbondingDelegation") + proto.RegisterType((*UnbondingDelegationEntry)(nil), "cosmos.staking.v1beta1.UnbondingDelegationEntry") + proto.RegisterType((*RedelegationEntry)(nil), "cosmos.staking.v1beta1.RedelegationEntry") + proto.RegisterType((*Redelegation)(nil), "cosmos.staking.v1beta1.Redelegation") + proto.RegisterType((*Params)(nil), "cosmos.staking.v1beta1.Params") + proto.RegisterType((*DelegationResponse)(nil), "cosmos.staking.v1beta1.DelegationResponse") + proto.RegisterType((*RedelegationEntryResponse)(nil), "cosmos.staking.v1beta1.RedelegationEntryResponse") + proto.RegisterType((*RedelegationResponse)(nil), "cosmos.staking.v1beta1.RedelegationResponse") + proto.RegisterType((*Pool)(nil), "cosmos.staking.v1beta1.Pool") } -func init() { proto.RegisterFile("cosmos/staking/staking.proto", fileDescriptor_146003fcdb99b683) } +func init() { + proto.RegisterFile("cosmos/staking/v1beta1/staking.proto", fileDescriptor_64c30c6cf92913c9) +} -var fileDescriptor_146003fcdb99b683 = []byte{ - // 1836 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x19, 0xcd, 0x6f, 0x1b, 0x59, - 0x3d, 0x63, 0xbb, 0x4e, 0xf2, 0x73, 0x62, 0x27, 0xaf, 0x6d, 0xd6, 0xc9, 0x76, 0x33, 0xe9, 0x1c, - 0x50, 0x40, 0xbb, 0x8e, 0x28, 0x48, 0x2b, 0x05, 0x90, 0xa8, 0xed, 0x46, 0x89, 0x68, 0xa4, 0x32, - 0xed, 0x06, 0x09, 0x90, 0xac, 0xe7, 0x99, 0x57, 0x67, 0xc8, 0x7c, 0x98, 0x79, 0xcf, 0xdd, 0x04, - 0xed, 0x15, 0x09, 0x21, 0x3e, 0xf6, 0xb8, 0xc7, 0x8a, 0x3f, 0x00, 0x8e, 0xc0, 0x99, 0xcb, 0x72, - 0xab, 0x38, 0x20, 0xc4, 0x61, 0x80, 0xf6, 0x00, 0xe2, 0x84, 0x7c, 0xe0, 0xc0, 0x05, 0xf4, 0x3e, - 0xe6, 0xc3, 0x63, 0x67, 0x63, 0x87, 0xb2, 0x54, 0x6a, 0x2e, 0xad, 0xdf, 0x6f, 0x7e, 0x5f, 0xef, - 0xf7, 0xfd, 0x7e, 0x81, 0x5b, 0x56, 0x40, 0xbd, 0x80, 0xee, 0x50, 0x86, 0x4f, 0x1c, 0xbf, 0x17, - 0xff, 0xdf, 0xe8, 0x87, 0x01, 0x0b, 0x50, 0x55, 0x7e, 0x6d, 0x28, 0xe8, 0xc6, 0x8d, 0x5e, 0xd0, - 0x0b, 0xc4, 0xa7, 0x1d, 0xfe, 0x4b, 0x62, 0x6d, 0xdc, 0x66, 0xc4, 0xb7, 0x49, 0xe8, 0x39, 0x3e, - 0xdb, 0xc1, 0x5d, 0xcb, 0xd9, 0x61, 0x67, 0x7d, 0x42, 0xe5, 0xbf, 0x0a, 0x45, 0xef, 0x05, 0x41, - 0xcf, 0x25, 0x3b, 0xe2, 0xd4, 0x1d, 0x3c, 0xde, 0x61, 0x8e, 0x47, 0x28, 0xc3, 0x5e, 0x5f, 0x21, - 0x6c, 0xe6, 0x11, 0xec, 0x41, 0x88, 0x99, 0x13, 0xf8, 0xea, 0xfb, 0x75, 0xa5, 0xa7, 0x52, 0x48, - 0x00, 0x8d, 0xa8, 0x04, 0xe8, 0x90, 0xf6, 0x5a, 0x21, 0xc1, 0x8c, 0x1c, 0x61, 0xd7, 0xb1, 0x31, - 0x0b, 0x42, 0xd4, 0x82, 0x8a, 0x4d, 0xa8, 0x15, 0x3a, 0x7d, 0xce, 0xa0, 0xae, 0x6d, 0x69, 0xdb, - 0x95, 0x3b, 0x6f, 0x36, 0x46, 0xef, 0xd2, 0x68, 0xa7, 0x28, 0xcd, 0xd2, 0xc7, 0x91, 0x3e, 0x67, - 0x66, 0xa9, 0xd0, 0x3d, 0x00, 0x2b, 0xf0, 0x3c, 0x87, 0x52, 0xce, 0xa3, 0x20, 0x78, 0xe8, 0x79, - 0x1e, 0xad, 0x04, 0xc3, 0xc4, 0x8c, 0x50, 0xc5, 0x27, 0x43, 0x88, 0x3e, 0x80, 0xeb, 0x9e, 0xe3, - 0x77, 0x28, 0x71, 0x1f, 0x77, 0x6c, 0xe2, 0x92, 0x9e, 0xb8, 0x54, 0xbd, 0xb8, 0xa5, 0x6d, 0x2f, - 0x36, 0xef, 0x73, 0xf4, 0x3f, 0x46, 0xfa, 0x67, 0x7a, 0x0e, 0x3b, 0x1e, 0x74, 0x1b, 0x56, 0xe0, - 0xed, 0x8c, 0xdc, 0xf3, 0x1d, 0x6a, 0x9f, 0x28, 0x3b, 0x1e, 0xf8, 0x6c, 0x18, 0xe9, 0x1b, 0x67, - 0xd8, 0x73, 0x77, 0x8d, 0x09, 0x2c, 0x0d, 0x73, 0xd5, 0x73, 0xfc, 0x87, 0xc4, 0x7d, 0xdc, 0x4e, - 0x60, 0xe8, 0x7b, 0xb0, 0xaa, 0x30, 0x82, 0xb0, 0x83, 0x6d, 0x3b, 0x24, 0x94, 0xd6, 0x4b, 0x5b, - 0xda, 0xf6, 0x52, 0xf3, 0x70, 0x18, 0xe9, 0x75, 0xc9, 0x6d, 0x0c, 0xc5, 0xf8, 0x57, 0xa4, 0xbf, - 0x33, 0x85, 0x4e, 0x77, 0x2d, 0xeb, 0xae, 0xa4, 0x30, 0x57, 0x12, 0x26, 0x0a, 0xc2, 0x65, 0x3f, - 0x89, 0x5d, 0x92, 0xc8, 0xbe, 0x96, 0x97, 0x3d, 0x86, 0x32, 0xad, 0xec, 0x23, 0xec, 0x26, 0xb2, - 0x13, 0x26, 0xb1, 0xec, 0x35, 0x28, 0xf7, 0x07, 0xdd, 0x13, 0x72, 0x56, 0x2f, 0x73, 0x43, 0x9b, - 0xea, 0x84, 0xb6, 0xe1, 0xda, 0x13, 0xec, 0x0e, 0x48, 0x7d, 0x5e, 0xf8, 0x73, 0x29, 0xf6, 0x67, - 0x2b, 0x70, 0xe2, 0x20, 0x90, 0x08, 0xbb, 0xa5, 0xbf, 0x3d, 0xd5, 0x35, 0xe3, 0x57, 0x45, 0x58, - 0x39, 0xa4, 0xbd, 0x7b, 0xb6, 0xc3, 0x5e, 0x72, 0x78, 0xf5, 0x27, 0x59, 0xa7, 0x20, 0xac, 0xd3, - 0x1a, 0x46, 0x7a, 0x55, 0x5a, 0xe7, 0x65, 0xda, 0xc4, 0x83, 0x5a, 0x1a, 0x97, 0x9d, 0x10, 0x33, - 0xa2, 0xa2, 0xb0, 0x3d, 0x65, 0x04, 0xb6, 0x89, 0x35, 0x8c, 0xf4, 0x35, 0xa9, 0x59, 0x8e, 0x95, - 0x61, 0x56, 0xad, 0x91, 0x5c, 0x40, 0xa7, 0x93, 0x03, 0xbf, 0x24, 0x44, 0xee, 0xff, 0x0f, 0x83, - 0x5e, 0xb9, 0xee, 0x97, 0x05, 0xa8, 0x1c, 0xd2, 0x9e, 0x82, 0x93, 0xc9, 0xa9, 0xa0, 0xfd, 0x1f, - 0x53, 0xa1, 0xf0, 0xe9, 0xa4, 0xc2, 0xe7, 0xa0, 0x8c, 0xbd, 0x60, 0xe0, 0x33, 0xe1, 0xed, 0xc9, - 0x31, 0xaf, 0x30, 0x94, 0xe5, 0x7e, 0x57, 0x14, 0x55, 0xb5, 0x49, 0x7a, 0x8e, 0x6f, 0x12, 0xfb, - 0x55, 0x30, 0xe0, 0xf7, 0x35, 0xb8, 0x99, 0x9a, 0x87, 0x86, 0x56, 0xce, 0x8a, 0x5f, 0x1f, 0x46, - 0xfa, 0xad, 0xbc, 0x15, 0x33, 0x68, 0x97, 0xb0, 0xe4, 0xf5, 0x84, 0xd1, 0xc3, 0xd0, 0x9a, 0xac, - 0x87, 0x4d, 0x59, 0xa2, 0x47, 0xf1, 0x7c, 0x3d, 0x32, 0x68, 0xff, 0x95, 0x1e, 0x6d, 0xca, 0xc6, - 0x9d, 0x5a, 0x9a, 0xd2, 0xa9, 0xbf, 0x2e, 0xc0, 0xf2, 0x21, 0xed, 0xbd, 0xe7, 0xdb, 0x57, 0x09, - 0x31, 0x6b, 0x42, 0xfc, 0x48, 0x83, 0xea, 0xbe, 0x43, 0x59, 0x10, 0x3a, 0x16, 0x76, 0x0f, 0xfc, - 0xc7, 0x01, 0xfa, 0x12, 0x94, 0x8f, 0x09, 0xb6, 0x49, 0xa8, 0xca, 0xff, 0x5b, 0x8d, 0x74, 0x06, - 0x6a, 0xf0, 0x19, 0xa8, 0x21, 0x35, 0xd9, 0x17, 0x48, 0x31, 0x57, 0x49, 0x82, 0xde, 0x85, 0xf2, - 0x13, 0xec, 0x52, 0xc2, 0xea, 0x85, 0xad, 0xe2, 0x76, 0xe5, 0xce, 0x7a, 0xbe, 0x77, 0x24, 0xbd, - 0x26, 0x26, 0x94, 0xe8, 0x4a, 0x9d, 0x5f, 0x14, 0xa0, 0x96, 0x1b, 0x3c, 0x50, 0x13, 0x4a, 0xa2, - 0xa2, 0x6b, 0xa2, 0xbc, 0x36, 0x66, 0x98, 0x2b, 0xda, 0xc4, 0x32, 0x05, 0x2d, 0xfa, 0x36, 0x2c, - 0x78, 0xf8, 0x54, 0x76, 0x86, 0x82, 0xe0, 0x73, 0x77, 0x36, 0x3e, 0xc3, 0x48, 0xaf, 0xa9, 0x52, - 0xad, 0xf8, 0x18, 0xe6, 0xbc, 0x87, 0x4f, 0x45, 0x3f, 0xe8, 0x43, 0x8d, 0x43, 0xad, 0x63, 0xec, - 0xf7, 0x48, 0xb6, 0xfd, 0xec, 0xcf, 0x2c, 0x64, 0x2d, 0x15, 0x92, 0x61, 0x67, 0x98, 0xcb, 0x1e, - 0x3e, 0x6d, 0x09, 0x00, 0x97, 0xb8, 0xbb, 0xf0, 0xd1, 0x53, 0x7d, 0x4e, 0x58, 0xec, 0xb7, 0x1a, - 0x40, 0x6a, 0x31, 0xf4, 0x08, 0x56, 0x72, 0xed, 0x8b, 0x2a, 0x37, 0x5e, 0x38, 0xe0, 0x2d, 0x70, - 0x65, 0x9f, 0x45, 0xba, 0x66, 0xd6, 0xac, 0x9c, 0x0b, 0xbe, 0x05, 0x95, 0x41, 0xdf, 0xc6, 0x8c, - 0x74, 0xf8, 0x6c, 0xab, 0x26, 0xc6, 0x8d, 0x86, 0x9c, 0x6b, 0x1b, 0xf1, 0x5c, 0xdb, 0x78, 0x14, - 0x0f, 0xbe, 0xcd, 0x4d, 0xce, 0x6b, 0x18, 0xe9, 0x48, 0x5e, 0x27, 0x43, 0x6c, 0x7c, 0xf8, 0x27, - 0x5d, 0x33, 0x41, 0x42, 0x38, 0xc1, 0xe8, 0x5d, 0x2a, 0x99, 0xd9, 0x02, 0xd5, 0x61, 0xde, 0x0b, - 0x7c, 0xe7, 0x44, 0x85, 0xe2, 0xa2, 0x19, 0x1f, 0xd1, 0x06, 0x2c, 0x38, 0x36, 0xf1, 0x99, 0xc3, - 0xce, 0xa4, 0x3f, 0xcd, 0xe4, 0xcc, 0xa9, 0xde, 0x27, 0x5d, 0xea, 0xc4, 0x5e, 0x30, 0xe3, 0x23, - 0xda, 0x83, 0x15, 0x4a, 0xac, 0x41, 0xe8, 0xb0, 0xb3, 0x8e, 0x15, 0xf8, 0x0c, 0x5b, 0x4c, 0x35, - 0xed, 0x37, 0x87, 0x91, 0xfe, 0x86, 0xd4, 0x35, 0x8f, 0x61, 0x98, 0xb5, 0x18, 0xd4, 0x92, 0x10, - 0x2e, 0xc1, 0x26, 0x0c, 0x3b, 0xae, 0x1c, 0xfa, 0x16, 0xcd, 0xf8, 0x98, 0xb9, 0xcb, 0xcf, 0xe7, - 0x61, 0x31, 0x9d, 0xab, 0xde, 0x87, 0x95, 0xa0, 0x4f, 0xc2, 0x09, 0xf5, 0xe8, 0x7e, 0x2a, 0x39, - 0x8f, 0x71, 0x89, 0x92, 0x50, 0x8b, 0x79, 0xc4, 0x15, 0x61, 0x8f, 0xc7, 0x83, 0x4f, 0x89, 0x4f, - 0x07, 0xb4, 0xa3, 0xe6, 0xc6, 0x42, 0xfe, 0xca, 0x79, 0x0c, 0x83, 0x47, 0x80, 0x02, 0x3d, 0x90, - 0xd3, 0xe5, 0x1a, 0x94, 0xbf, 0x83, 0x1d, 0x97, 0xd8, 0xc2, 0xa6, 0x0b, 0xa6, 0x3a, 0xa1, 0x03, - 0x28, 0x53, 0x86, 0xd9, 0x40, 0x8e, 0xde, 0xd7, 0x9a, 0x9f, 0x9f, 0x52, 0xe7, 0x66, 0xe0, 0xdb, - 0x0f, 0x05, 0xa1, 0xa9, 0x18, 0xa0, 0x3d, 0x28, 0xb3, 0xe0, 0x84, 0xf8, 0xca, 0xa8, 0x33, 0x65, - 0xfa, 0x81, 0xcf, 0x4c, 0x45, 0x8d, 0x18, 0xa4, 0x45, 0xb9, 0x43, 0x8f, 0x71, 0x48, 0xa8, 0x1c, - 0x95, 0x9b, 0x07, 0x33, 0xa7, 0xe3, 0x1b, 0xf9, 0x4e, 0x21, 0xf9, 0x19, 0x66, 0x2d, 0x01, 0x3d, - 0x14, 0x90, 0xfc, 0xe4, 0x3c, 0x7f, 0xa9, 0xc9, 0x79, 0x0f, 0x56, 0x06, 0x7e, 0x37, 0xf0, 0x6d, - 0xc7, 0xef, 0x75, 0x8e, 0x89, 0xd3, 0x3b, 0x66, 0xf5, 0x85, 0x2d, 0x6d, 0xbb, 0x98, 0xf5, 0x56, - 0x1e, 0xc3, 0x30, 0x6b, 0x09, 0x68, 0x5f, 0x40, 0x90, 0x0d, 0xd5, 0x14, 0x4b, 0xa4, 0xec, 0xe2, - 0x85, 0x29, 0x7b, 0x5b, 0xa5, 0xec, 0xcd, 0xbc, 0x94, 0x34, 0x6b, 0x97, 0x13, 0x20, 0x27, 0x43, - 0x5f, 0x1d, 0x79, 0x46, 0x82, 0x92, 0x70, 0x6e, 0x95, 0x99, 0xfe, 0x05, 0x59, 0xf9, 0x54, 0x5e, - 0x90, 0xbb, 0x4b, 0x3f, 0x78, 0xaa, 0xcf, 0x25, 0x09, 0xfb, 0xc3, 0x02, 0x94, 0xdb, 0x47, 0x0f, - 0xb0, 0x13, 0xbe, 0xae, 0xe3, 0x43, 0xa6, 0x7a, 0x7d, 0x05, 0xe6, 0xa5, 0x2d, 0x28, 0xba, 0x03, - 0xd7, 0xfa, 0xfc, 0x47, 0x5d, 0x13, 0x0d, 0x7d, 0x6d, 0x2c, 0xa4, 0x05, 0x5e, 0xfc, 0xc2, 0x14, - 0xa8, 0xc6, 0xcf, 0x8a, 0x00, 0xed, 0xa3, 0xa3, 0x47, 0xa1, 0xd3, 0x77, 0x09, 0xbb, 0x1a, 0xaf, - 0x5f, 0x9d, 0xf1, 0x3a, 0xe3, 0xe3, 0xaf, 0x41, 0x25, 0xf5, 0x11, 0x45, 0x5f, 0x86, 0x05, 0xa6, - 0x7e, 0x2b, 0x57, 0x6f, 0x8c, 0xbb, 0x3a, 0x46, 0x57, 0xee, 0x4e, 0x28, 0x8c, 0xdf, 0x17, 0x00, - 0x2e, 0x5a, 0xce, 0xbc, 0x06, 0x03, 0xf8, 0x1e, 0x94, 0x55, 0xc7, 0x29, 0x5e, 0x6a, 0x5a, 0x55, - 0xd4, 0x19, 0x2f, 0xfd, 0xa5, 0x00, 0xd7, 0xdf, 0x8b, 0xcb, 0xee, 0x95, 0x85, 0xd1, 0x3e, 0xcc, - 0x13, 0x9f, 0x85, 0x8e, 0x30, 0x31, 0x8f, 0xd2, 0xed, 0x7c, 0x94, 0x4e, 0xb0, 0xd6, 0x3d, 0x9f, - 0x85, 0x67, 0x2a, 0x66, 0x63, 0xf2, 0x8c, 0x8d, 0x7f, 0x5a, 0x84, 0xfa, 0x79, 0x54, 0xa8, 0x05, - 0x35, 0x2b, 0x24, 0x02, 0x10, 0xb7, 0x64, 0x4d, 0xb4, 0xe4, 0x8d, 0xcc, 0xc6, 0x68, 0x14, 0xc1, - 0x30, 0xab, 0x31, 0x44, 0x35, 0xe4, 0x9e, 0x58, 0x50, 0xf1, 0x54, 0xe1, 0x58, 0x53, 0x0e, 0xd1, - 0x86, 0xea, 0xc8, 0xe9, 0x5a, 0x2a, 0xcb, 0x40, 0xb6, 0xe4, 0x6a, 0x0a, 0x15, 0x3d, 0xf9, 0xbb, - 0x50, 0x73, 0x7c, 0x87, 0x39, 0xd8, 0xed, 0x74, 0xb1, 0x8b, 0x7d, 0xeb, 0x32, 0x4f, 0x11, 0xd9, - 0x4d, 0x95, 0xd8, 0x1c, 0x3b, 0xc3, 0xac, 0x2a, 0x48, 0x53, 0x02, 0xb8, 0x47, 0x62, 0x51, 0xa5, - 0x4b, 0x0d, 0x6e, 0x31, 0x79, 0xc6, 0x23, 0x3f, 0x2e, 0xc2, 0x6a, 0xb2, 0x9f, 0xb9, 0x72, 0xc5, - 0xb4, 0xae, 0x38, 0x04, 0x90, 0x05, 0x84, 0x77, 0x8e, 0x4b, 0x78, 0x83, 0x97, 0xa0, 0x45, 0xc9, - 0xa1, 0x4d, 0x59, 0xc6, 0x1f, 0x7f, 0x2d, 0xc2, 0x52, 0xd6, 0x1f, 0x57, 0x2d, 0xfd, 0x15, 0xda, - 0x98, 0xdd, 0x4d, 0x4b, 0x62, 0x49, 0x94, 0xc4, 0xdb, 0xf9, 0x92, 0x38, 0x96, 0x4a, 0xe7, 0xd7, - 0xc2, 0x7f, 0x16, 0xa0, 0xfc, 0x00, 0x87, 0xd8, 0xa3, 0xc8, 0x1a, 0x7b, 0x45, 0xc8, 0x4d, 0xc2, - 0xfa, 0x58, 0xa2, 0xb4, 0xd5, 0x1f, 0xb4, 0x2e, 0x78, 0x44, 0x7c, 0x34, 0xf1, 0x11, 0x51, 0xf5, - 0xf0, 0x69, 0x27, 0xb9, 0x97, 0x74, 0xe2, 0x72, 0x73, 0x3d, 0xe5, 0x32, 0xfa, 0x5d, 0xee, 0x42, - 0x92, 0xa7, 0x35, 0x45, 0xef, 0x42, 0x85, 0x63, 0xa4, 0x5d, 0x81, 0x93, 0xaf, 0xa5, 0xcb, 0x87, - 0xcc, 0x47, 0xc3, 0x04, 0x0f, 0x9f, 0xde, 0x93, 0x07, 0x74, 0x1f, 0xd0, 0x71, 0xb2, 0xfa, 0xea, - 0xa4, 0x26, 0xe4, 0xf4, 0x6f, 0x0d, 0x23, 0x7d, 0x5d, 0xd2, 0x8f, 0xe3, 0x18, 0xe6, 0x6a, 0x0a, - 0x8c, 0xb9, 0x7d, 0x11, 0x80, 0xdf, 0xab, 0x63, 0x13, 0x3f, 0xf0, 0xd4, 0x13, 0xf6, 0xe6, 0x30, - 0xd2, 0x57, 0x25, 0x97, 0xf4, 0x9b, 0x61, 0x2e, 0xf2, 0x43, 0x9b, 0xff, 0xce, 0x18, 0xfe, 0x27, - 0x1a, 0xa0, 0xb4, 0xf7, 0x98, 0x84, 0xf6, 0xf9, 0x13, 0x9c, 0x3f, 0xb2, 0x32, 0x2f, 0x23, 0x6d, - 0xf2, 0x23, 0x2b, 0xa5, 0x8b, 0x1f, 0x59, 0x99, 0x54, 0x7d, 0x3b, 0xad, 0xcf, 0x85, 0x73, 0xb7, - 0x82, 0x13, 0x6a, 0xf0, 0x6f, 0x34, 0x58, 0x1f, 0x0b, 0x9c, 0x44, 0xaf, 0x23, 0x40, 0x61, 0xe6, - 0xa3, 0x30, 0xcd, 0x99, 0xd2, 0x6f, 0xea, 0xf8, 0x5b, 0x0d, 0xc7, 0x6a, 0xfc, 0xcb, 0xeb, 0x26, - 0x6a, 0xa3, 0xa8, 0xc1, 0x8d, 0xac, 0xf8, 0xe4, 0x02, 0x7b, 0xb0, 0x94, 0x95, 0xae, 0x54, 0xbf, - 0xf5, 0x49, 0xaa, 0x2b, 0xad, 0x47, 0xe8, 0xd0, 0x41, 0x9a, 0x7d, 0x72, 0xe5, 0xf9, 0xd9, 0x0b, - 0x6f, 0x1f, 0xeb, 0x90, 0xcf, 0x42, 0xa9, 0xf1, 0xbf, 0x35, 0x28, 0x3d, 0x08, 0x02, 0x17, 0x05, - 0xb0, 0xea, 0x07, 0xac, 0xc3, 0x83, 0x85, 0xd8, 0x1d, 0xb5, 0x1b, 0x91, 0x5b, 0xd0, 0xd6, 0x6c, - 0x46, 0xf9, 0x7b, 0xa4, 0x8f, 0xb3, 0x32, 0x6b, 0x7e, 0xc0, 0x9a, 0x02, 0xf2, 0x48, 0x6e, 0x4e, - 0x3e, 0x80, 0xe5, 0x51, 0x61, 0x72, 0x53, 0xf4, 0x8d, 0x99, 0x85, 0x8d, 0xb2, 0x19, 0x46, 0xfa, - 0x8d, 0x34, 0x09, 0x12, 0xb0, 0x61, 0x2e, 0x75, 0x33, 0xd2, 0x77, 0x17, 0xf8, 0xed, 0xff, 0xf1, - 0x54, 0xd7, 0x9a, 0x7b, 0x1f, 0x3f, 0xdf, 0xd4, 0x9e, 0x3d, 0xdf, 0xd4, 0xfe, 0xfc, 0x7c, 0x53, - 0xfb, 0xf0, 0xc5, 0xe6, 0xdc, 0xb3, 0x17, 0x9b, 0x73, 0x7f, 0x78, 0xb1, 0x39, 0xf7, 0xcd, 0xb7, - 0x3f, 0x51, 0x85, 0xd3, 0xe4, 0x4f, 0xfd, 0x42, 0x99, 0x6e, 0x59, 0x14, 0xa8, 0x2f, 0xfc, 0x27, - 0x00, 0x00, 0xff, 0xff, 0xb2, 0x69, 0x31, 0x7c, 0x09, 0x20, 0x00, 0x00, +var fileDescriptor_64c30c6cf92913c9 = []byte{ + // 1687 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0xcb, 0x6f, 0x1b, 0x5b, + 0x19, 0xcf, 0xd8, 0xa9, 0xe3, 0x7c, 0x4e, 0xe2, 0xf8, 0xb4, 0x0d, 0x4e, 0xe0, 0x7a, 0xd2, 0xe1, + 0x0a, 0x82, 0xc4, 0xb5, 0x49, 0x40, 0x42, 0x84, 0x05, 0xd4, 0x71, 0xab, 0x44, 0xf4, 0x42, 0xee, + 0xa4, 0x04, 0x09, 0xae, 0xb0, 0x8e, 0x67, 0x4e, 0x9c, 0x43, 0x3c, 0x33, 0x66, 0xce, 0x71, 0x6f, + 0x72, 0x75, 0x17, 0x6c, 0x90, 0x10, 0x12, 0xa2, 0x0b, 0x16, 0x5d, 0x46, 0xf0, 0x07, 0xf0, 0x1f, + 0xc0, 0xb6, 0x88, 0x4d, 0xd9, 0x20, 0x84, 0x90, 0x41, 0xed, 0x06, 0xd8, 0x80, 0xbc, 0x60, 0xc1, + 0x06, 0x74, 0x1e, 0xf3, 0xc8, 0x38, 0x6e, 0xe3, 0x80, 0x04, 0xd2, 0xed, 0xa6, 0xf5, 0xf9, 0xe6, + 0x7b, 0xfe, 0xbe, 0xc7, 0x79, 0x04, 0xde, 0x74, 0x02, 0xe6, 0x05, 0xac, 0xc1, 0x38, 0x3e, 0xa1, + 0x7e, 0xb7, 0xf1, 0x68, 0xb3, 0x43, 0x38, 0xde, 0x8c, 0xd6, 0xf5, 0x7e, 0x18, 0xf0, 0x00, 0xad, + 0x28, 0xae, 0x7a, 0x44, 0xd5, 0x5c, 0x6b, 0xb7, 0xba, 0x41, 0x37, 0x90, 0x2c, 0x0d, 0xf1, 0x4b, + 0x71, 0xaf, 0xdd, 0xe1, 0xc4, 0x77, 0x49, 0xe8, 0x51, 0x9f, 0x37, 0x70, 0xc7, 0xa1, 0x0d, 0x7e, + 0xd6, 0x27, 0x4c, 0xfd, 0xab, 0x59, 0xcc, 0x6e, 0x10, 0x74, 0x7b, 0xa4, 0x21, 0x57, 0x9d, 0xc1, + 0x51, 0x83, 0x53, 0x8f, 0x30, 0x8e, 0xbd, 0xbe, 0x66, 0xa8, 0x65, 0x19, 0xdc, 0x41, 0x88, 0x39, + 0x0d, 0xfc, 0xe8, 0xbb, 0xf6, 0xbb, 0x83, 0x19, 0x89, 0x9d, 0x76, 0x02, 0xaa, 0xbf, 0x5b, 0x3f, + 0x31, 0x60, 0x69, 0x97, 0x32, 0x1e, 0x84, 0xd4, 0xc1, 0xbd, 0x3d, 0xff, 0x28, 0x40, 0x5f, 0x84, + 0xc2, 0x31, 0xc1, 0x2e, 0x09, 0xab, 0xc6, 0xba, 0xb1, 0x51, 0xda, 0x7a, 0xa3, 0x9e, 0xf8, 0x59, + 0x17, 0x7e, 0xd6, 0x95, 0x87, 0xbb, 0x92, 0xa9, 0x39, 0xfb, 0x74, 0x68, 0xce, 0xd8, 0x5a, 0x04, + 0x7d, 0x09, 0x0a, 0x8f, 0x70, 0x8f, 0x11, 0x5e, 0xcd, 0xad, 0xe7, 0x37, 0x4a, 0x5b, 0x77, 0xea, + 0x97, 0x43, 0x52, 0x3f, 0xc4, 0x3d, 0xea, 0x62, 0x1e, 0xc4, 0x0a, 0x94, 0xd8, 0xf6, 0xec, 0x9f, + 0xcf, 0x4d, 0xc3, 0xfa, 0x79, 0x0e, 0xca, 0x3b, 0x81, 0xe7, 0x51, 0xc6, 0x68, 0xe0, 0xdb, 0x98, + 0x13, 0x86, 0x9a, 0x30, 0x1b, 0x62, 0x4e, 0xa4, 0x57, 0xf3, 0xcd, 0xba, 0x90, 0xfa, 0xfd, 0xd0, + 0xfc, 0x44, 0x97, 0xf2, 0xe3, 0x41, 0xa7, 0xee, 0x04, 0x5e, 0x43, 0xc7, 0xaa, 0xfe, 0x7b, 0x8b, + 0xb9, 0x27, 0x1a, 0xcb, 0x16, 0x71, 0x6c, 0x29, 0x8b, 0xde, 0x85, 0xa2, 0x87, 0x4f, 0xdb, 0x52, + 0x4f, 0x4e, 0xea, 0xb9, 0x3b, 0x9d, 0x9e, 0xd1, 0xd0, 0x2c, 0x9f, 0x61, 0xaf, 0xb7, 0x6d, 0x45, + 0x7a, 0x2c, 0x7b, 0xce, 0xc3, 0xa7, 0xc2, 0x45, 0xd4, 0x87, 0xb2, 0xa0, 0x3a, 0xc7, 0xd8, 0xef, + 0x12, 0x65, 0x24, 0x2f, 0x8d, 0xec, 0x4e, 0x6d, 0x64, 0x25, 0x31, 0x92, 0x52, 0x67, 0xd9, 0x8b, + 0x1e, 0x3e, 0xdd, 0x91, 0x04, 0x61, 0x71, 0xbb, 0xf8, 0xe4, 0xdc, 0x9c, 0x91, 0x88, 0xfd, 0xc6, + 0x00, 0x48, 0x10, 0x43, 0xef, 0xc2, 0xb2, 0x13, 0xaf, 0xa4, 0x2c, 0xd3, 0xe9, 0xfc, 0xe4, 0xa4, + 0x8c, 0x64, 0xf0, 0x6e, 0x16, 0x85, 0xd3, 0xcf, 0x86, 0xa6, 0x61, 0x97, 0x9d, 0x4c, 0x2a, 0xbe, + 0x05, 0xa5, 0x41, 0xdf, 0xc5, 0x9c, 0xb4, 0x45, 0x3d, 0x4a, 0x24, 0x4b, 0x5b, 0x6b, 0x75, 0x55, + 0x8b, 0xf5, 0xa8, 0x16, 0xeb, 0x0f, 0xa3, 0x62, 0x6d, 0xd6, 0x84, 0xae, 0xd1, 0xd0, 0x44, 0x2a, + 0xac, 0x94, 0xb0, 0xf5, 0xf8, 0x8f, 0xa6, 0x61, 0x83, 0xa2, 0x08, 0x81, 0x54, 0x4c, 0xbf, 0x32, + 0xa0, 0xd4, 0x22, 0xcc, 0x09, 0x69, 0x5f, 0x94, 0x34, 0xaa, 0xc2, 0x9c, 0x17, 0xf8, 0xf4, 0x44, + 0x97, 0xe6, 0xbc, 0x1d, 0x2d, 0xd1, 0x1a, 0x14, 0xa9, 0x4b, 0x7c, 0x4e, 0xf9, 0x99, 0xca, 0xab, + 0x1d, 0xaf, 0x85, 0xd4, 0x7b, 0xa4, 0xc3, 0x68, 0x94, 0x0d, 0x3b, 0x5a, 0xa2, 0xfb, 0xb0, 0xcc, + 0x88, 0x33, 0x08, 0x29, 0x3f, 0x6b, 0x3b, 0x81, 0xcf, 0xb1, 0xc3, 0xab, 0xb3, 0x32, 0x61, 0x1f, + 0x1d, 0x0d, 0xcd, 0x8f, 0x28, 0x5f, 0xb3, 0x1c, 0x96, 0x5d, 0x8e, 0x48, 0x3b, 0x8a, 0x22, 0x2c, + 0xb8, 0x84, 0x63, 0xda, 0x63, 0xd5, 0x1b, 0xca, 0x82, 0x5e, 0xa6, 0x62, 0xf9, 0xc5, 0x1c, 0xcc, + 0xc7, 0x35, 0x8f, 0xde, 0x83, 0xe5, 0xa0, 0x4f, 0x42, 0xf1, 0xbb, 0x8d, 0x5d, 0x37, 0x24, 0x4c, + 0xa5, 0x67, 0xa1, 0xf9, 0x20, 0xb1, 0x9c, 0xe5, 0xb0, 0xfe, 0x39, 0x34, 0xdf, 0xba, 0x42, 0x05, + 0x1d, 0xe2, 0xde, 0x5d, 0x25, 0x61, 0x97, 0x23, 0x1d, 0x9a, 0x20, 0x42, 0x76, 0x02, 0x9f, 0x11, + 0x9f, 0x0d, 0x58, 0xbb, 0x3f, 0xe8, 0x9c, 0x10, 0x0d, 0x58, 0x3a, 0xe4, 0x2c, 0x87, 0x25, 0x2a, + 0x40, 0x93, 0xf6, 0x25, 0x05, 0xad, 0x40, 0xe1, 0x3b, 0x98, 0xf6, 0x88, 0x2b, 0x31, 0x2d, 0xda, + 0x7a, 0x85, 0xf6, 0xa0, 0xc0, 0x38, 0xe6, 0x03, 0x26, 0x81, 0xbc, 0xd1, 0xdc, 0xbc, 0xa2, 0xcf, + 0xcd, 0xc0, 0x77, 0x0f, 0xa4, 0xa0, 0xad, 0x15, 0xa0, 0xfb, 0x50, 0xe0, 0xc1, 0x09, 0xf1, 0x35, + 0xa8, 0x53, 0x75, 0xfc, 0x9e, 0xcf, 0x6d, 0x2d, 0x8d, 0x38, 0x2c, 0xbb, 0xa4, 0x47, 0xba, 0x12, + 0x4a, 0x76, 0x8c, 0x43, 0xc2, 0xaa, 0x05, 0xa9, 0x71, 0x6f, 0xea, 0xb6, 0xd4, 0x00, 0x65, 0xf5, + 0x59, 0x76, 0x39, 0x26, 0x1d, 0x48, 0x0a, 0xfa, 0x0a, 0x94, 0xdc, 0xa4, 0x74, 0xab, 0x73, 0xb2, + 0x45, 0x3e, 0x3e, 0xa9, 0xf7, 0x52, 0x55, 0xae, 0xe7, 0x61, 0x5a, 0x5a, 0x64, 0x6d, 0xe0, 0x77, + 0x02, 0xdf, 0xa5, 0x7e, 0xb7, 0x7d, 0x4c, 0x68, 0xf7, 0x98, 0x57, 0x8b, 0xeb, 0xc6, 0x46, 0x3e, + 0x9d, 0xb5, 0x2c, 0x87, 0x65, 0x97, 0x63, 0xd2, 0xae, 0xa4, 0x20, 0x17, 0x96, 0x12, 0x2e, 0xd9, + 0xba, 0xf3, 0xaf, 0x6c, 0xdd, 0x3b, 0xba, 0x75, 0x6f, 0x67, 0xad, 0x24, 0xdd, 0xbb, 0x18, 0x13, + 0x85, 0x18, 0xda, 0x05, 0x48, 0x06, 0x46, 0x15, 0xa4, 0x05, 0xeb, 0xd5, 0x53, 0x47, 0x07, 0x9e, + 0x92, 0x45, 0x1f, 0xc0, 0x4d, 0x8f, 0xfa, 0x6d, 0x46, 0x7a, 0x47, 0x6d, 0x0d, 0xb0, 0x50, 0x59, + 0x92, 0xd9, 0x7b, 0x30, 0x5d, 0x3d, 0x8c, 0x86, 0xe6, 0x9a, 0x1e, 0xaa, 0xe3, 0x2a, 0x2d, 0xbb, + 0xe2, 0x51, 0xff, 0x80, 0xf4, 0x8e, 0x5a, 0x31, 0x6d, 0x7b, 0xe1, 0x07, 0xe7, 0xe6, 0x4c, 0xdc, + 0xc0, 0x14, 0x16, 0x92, 0xc6, 0x22, 0x0c, 0x7d, 0x0d, 0xe6, 0x71, 0xb4, 0xa8, 0x1a, 0xeb, 0xf9, + 0x8d, 0x85, 0x2b, 0x17, 0x7b, 0xaa, 0x41, 0x13, 0x1d, 0x6a, 0x56, 0x7c, 0xef, 0x0f, 0xeb, 0x86, + 0xf5, 0xc3, 0x1c, 0x14, 0x5a, 0x87, 0xfb, 0x98, 0x86, 0xe8, 0x7d, 0xa8, 0x24, 0xc5, 0x76, 0x71, + 0x52, 0xbc, 0x3d, 0x1a, 0x9a, 0xd5, 0x6c, 0x3d, 0x4e, 0x39, 0x2a, 0xee, 0x3a, 0x4e, 0xe4, 0x49, + 0xd2, 0x24, 0xd1, 0xac, 0x78, 0x1f, 0x2a, 0x8f, 0xa2, 0x89, 0x15, 0xdb, 0xce, 0x65, 0x6d, 0x8f, + 0xb1, 0x5c, 0x63, 0x4c, 0x2d, 0xc7, 0x4a, 0x34, 0x25, 0x35, 0x38, 0xef, 0xc1, 0x9c, 0xc2, 0x82, + 0xa1, 0x6d, 0xb8, 0xd1, 0x17, 0x3f, 0x24, 0xdc, 0xa5, 0xad, 0xda, 0xc4, 0x6e, 0x92, 0xfc, 0xba, + 0x9e, 0x94, 0x88, 0xf5, 0xd3, 0x3c, 0x40, 0xeb, 0xf0, 0xf0, 0x61, 0x48, 0xfb, 0x3d, 0xc2, 0xff, + 0xa7, 0xb8, 0x7e, 0xdf, 0x80, 0xdb, 0x09, 0x6a, 0x2c, 0x74, 0x32, 0xe0, 0xbe, 0x33, 0x1a, 0x9a, + 0x1f, 0xcb, 0x82, 0x9b, 0x62, 0xbb, 0x06, 0xc0, 0x37, 0x63, 0x45, 0x07, 0xa1, 0x73, 0xb9, 0x1f, + 0x2e, 0xe3, 0xb1, 0x1f, 0xf9, 0xc9, 0x7e, 0xa4, 0xd8, 0xfe, 0x23, 0x3f, 0x5a, 0x8c, 0x8f, 0xe7, + 0xfa, 0x00, 0x4a, 0x49, 0x8e, 0x18, 0x6a, 0x41, 0x91, 0xeb, 0xdf, 0x3a, 0xe5, 0xd6, 0xe4, 0x94, + 0x47, 0x62, 0x3a, 0xed, 0xb1, 0xa4, 0xf5, 0xdb, 0x1c, 0x40, 0xd2, 0xd5, 0x1f, 0xd6, 0x8e, 0x12, + 0xdb, 0xa9, 0xde, 0xfc, 0xf2, 0xd7, 0x3a, 0x40, 0x6b, 0xe9, 0x54, 0xb6, 0xfe, 0x92, 0x83, 0x9b, + 0x5f, 0x8f, 0x26, 0xff, 0x6b, 0x84, 0xd1, 0x3e, 0xcc, 0x11, 0x9f, 0x87, 0x54, 0x42, 0x2c, 0xaa, + 0xf5, 0x33, 0x93, 0xaa, 0xf5, 0x12, 0xd4, 0xee, 0xf9, 0x3c, 0x3c, 0xd3, 0xb5, 0x1b, 0xa9, 0x49, + 0x61, 0xfd, 0xe3, 0x3c, 0x54, 0x27, 0x49, 0xa1, 0x1d, 0x28, 0x3b, 0x21, 0x91, 0x84, 0xe8, 0x74, + 0x60, 0xc8, 0xd3, 0xc1, 0x5a, 0x72, 0x93, 0xc8, 0x30, 0x58, 0xf6, 0x52, 0x44, 0xd1, 0x67, 0x83, + 0x2e, 0x88, 0x63, 0xbe, 0x68, 0x19, 0xc1, 0x75, 0xc5, 0x73, 0xbd, 0xa5, 0x0f, 0x07, 0x91, 0x91, + 0x8b, 0x0a, 0xd4, 0xe9, 0x60, 0x29, 0xa1, 0xca, 0xe3, 0xc1, 0x77, 0xa1, 0x4c, 0x7d, 0xca, 0x29, + 0xee, 0xb5, 0x3b, 0xb8, 0x87, 0x7d, 0xe7, 0x3a, 0xb7, 0x24, 0xb5, 0xa1, 0x6b, 0xb3, 0x19, 0x75, + 0x96, 0xbd, 0xa4, 0x29, 0x4d, 0x45, 0x40, 0xbb, 0x30, 0x17, 0x99, 0x9a, 0xbd, 0xd6, 0x59, 0x32, + 0x12, 0x4f, 0x65, 0xe4, 0x47, 0x79, 0xa8, 0xd8, 0xc4, 0x7d, 0x9d, 0x8a, 0xe9, 0x52, 0xf1, 0x36, + 0x80, 0x1a, 0x24, 0x62, 0x27, 0xb9, 0x46, 0x36, 0xc4, 0x28, 0x9a, 0x57, 0x1a, 0x5a, 0x8c, 0xa7, + 0xf2, 0xf1, 0xb7, 0x3c, 0x2c, 0xa4, 0xf3, 0xf1, 0x7a, 0x8b, 0xff, 0xff, 0xd9, 0xe2, 0xd1, 0x5e, + 0x32, 0x1a, 0x67, 0xe5, 0x68, 0xfc, 0xd4, 0xa4, 0xd1, 0x38, 0xd6, 0x52, 0x93, 0x67, 0xe2, 0x3f, + 0x72, 0x50, 0xd8, 0xc7, 0x21, 0xf6, 0x18, 0x72, 0xc6, 0x2e, 0x36, 0xea, 0xb1, 0x63, 0x75, 0xac, + 0x61, 0x5a, 0xfa, 0x7d, 0xec, 0x15, 0xf7, 0x9a, 0x27, 0x97, 0xdc, 0x6b, 0xbe, 0x0c, 0x4b, 0x1e, + 0x3e, 0x6d, 0xc7, 0xf1, 0xa9, 0x64, 0x2e, 0x36, 0x57, 0x13, 0x2d, 0x17, 0xbf, 0xab, 0xe7, 0x9a, + 0xf8, 0xd6, 0xcf, 0xd0, 0xe7, 0xa1, 0x24, 0x38, 0x92, 0x5d, 0x42, 0x88, 0xaf, 0x24, 0xef, 0x22, + 0xa9, 0x8f, 0x96, 0x0d, 0x1e, 0x3e, 0xbd, 0xa7, 0x16, 0xe8, 0x01, 0xa0, 0xe3, 0xf8, 0x95, 0xae, + 0x9d, 0x40, 0x29, 0xe4, 0xdf, 0x18, 0x0d, 0xcd, 0x55, 0x25, 0x3f, 0xce, 0x63, 0xd9, 0x95, 0x84, + 0x18, 0x69, 0xfb, 0x1c, 0x80, 0x88, 0xab, 0xed, 0x12, 0x3f, 0xf0, 0xf4, 0xed, 0xfa, 0xf6, 0x68, + 0x68, 0x56, 0x94, 0x96, 0xe4, 0x9b, 0x65, 0xcf, 0x8b, 0x45, 0x4b, 0xfc, 0x4e, 0x01, 0xff, 0x33, + 0x03, 0x50, 0xb2, 0x07, 0xd9, 0x84, 0xf5, 0x03, 0x9f, 0xc9, 0x7b, 0x5f, 0xea, 0x92, 0x66, 0xbc, + 0xfc, 0xde, 0x97, 0xc8, 0x47, 0xf7, 0xbe, 0x54, 0xeb, 0x7e, 0x21, 0x99, 0xd7, 0x39, 0x9d, 0x47, + 0xad, 0xa6, 0x83, 0x19, 0x49, 0xdd, 0x1d, 0x69, 0x24, 0x7d, 0xc9, 0x80, 0xfe, 0xb5, 0x01, 0xab, + 0x63, 0xd5, 0x14, 0x3b, 0xfb, 0x6d, 0x40, 0x61, 0xea, 0xa3, 0xc4, 0xeb, 0x4c, 0x3b, 0x3d, 0x75, + 0x71, 0x56, 0xc2, 0xb1, 0x8d, 0xe0, 0xbf, 0xb7, 0xe5, 0xa8, 0x17, 0xd1, 0x5f, 0x1a, 0x70, 0x2b, + 0x6d, 0x3e, 0x0e, 0xe4, 0xab, 0xb0, 0x90, 0xb6, 0xae, 0x43, 0x78, 0xf3, 0x2a, 0x21, 0x68, 0xef, + 0x2f, 0xc8, 0xa3, 0x77, 0x92, 0x56, 0x55, 0x4f, 0xb8, 0x9b, 0x57, 0x46, 0x23, 0xf2, 0x29, 0xdb, + 0xb2, 0x2a, 0x82, 0x7f, 0x19, 0x30, 0xbb, 0x1f, 0x04, 0x3d, 0x14, 0x40, 0xc5, 0x0f, 0x78, 0x5b, + 0x54, 0x16, 0x71, 0xdb, 0xfa, 0x8d, 0x47, 0xbd, 0xea, 0xee, 0x4c, 0x07, 0xd2, 0x5f, 0x87, 0xe6, + 0xb8, 0x2a, 0xbb, 0xec, 0x07, 0xbc, 0x29, 0x29, 0x0f, 0xd5, 0x0b, 0xd0, 0x07, 0xb0, 0x78, 0xd1, + 0x98, 0x7a, 0xf1, 0xfa, 0xc6, 0xd4, 0xc6, 0x2e, 0xaa, 0x19, 0x0d, 0xcd, 0x5b, 0x49, 0xc7, 0xc4, + 0x64, 0xcb, 0x5e, 0xe8, 0xa4, 0xac, 0x6f, 0x17, 0x45, 0xf4, 0x7f, 0x3f, 0x37, 0x8d, 0xe6, 0xfd, + 0xa7, 0xcf, 0x6b, 0xc6, 0xb3, 0xe7, 0x35, 0xe3, 0x4f, 0xcf, 0x6b, 0xc6, 0xe3, 0x17, 0xb5, 0x99, + 0x67, 0x2f, 0x6a, 0x33, 0xbf, 0x7b, 0x51, 0x9b, 0xf9, 0xe6, 0xa7, 0x5f, 0xea, 0xc2, 0x69, 0xfc, + 0x67, 0x07, 0xe9, 0x4c, 0xa7, 0x20, 0xa7, 0xd9, 0x67, 0xff, 0x1d, 0x00, 0x00, 0xff, 0xff, 0x8b, + 0x5f, 0x37, 0x07, 0x95, 0x18, 0x00, 0x00, } func (this *Pool) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { @@ -1569,614 +1264,588 @@ func (this *Pool) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_ func StakingDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ - // 9710 bytes of a gzipped FileDescriptorSet + // 9290 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x7d, 0x70, 0x24, 0xc7, - 0x75, 0x1f, 0xf6, 0x03, 0x8b, 0xdd, 0xb7, 0x8b, 0xdd, 0x45, 0x03, 0x77, 0xb7, 0xb7, 0x24, 0x6f, - 0x8f, 0x73, 0x24, 0x0f, 0xc7, 0x0f, 0x1c, 0x75, 0xe2, 0xd7, 0xed, 0x51, 0xa4, 0xb0, 0x00, 0xee, - 0x0e, 0x24, 0x70, 0x07, 0x0e, 0x80, 0x23, 0x45, 0xd9, 0x5e, 0x0f, 0x66, 0x1b, 0x8b, 0xe1, 0xed, - 0xce, 0x2c, 0x67, 0x66, 0xef, 0x00, 0x96, 0x52, 0xc5, 0x94, 0x65, 0x5b, 0x72, 0x64, 0x4b, 0x56, - 0x6c, 0x47, 0x56, 0x24, 0x99, 0x52, 0x2a, 0x91, 0xa3, 0x24, 0xfe, 0x48, 0x14, 0x7d, 0xd8, 0xf9, - 0x43, 0x29, 0x27, 0xb1, 0x52, 0xe5, 0x4a, 0x49, 0x89, 0x93, 0x72, 0xa5, 0x52, 0xb0, 0x45, 0xaa, - 0xca, 0x8e, 0xc2, 0x24, 0xca, 0x85, 0x76, 0xb9, 0xa4, 0x3f, 0x92, 0xea, 0xaf, 0xf9, 0xda, 0xd9, - 0x9d, 0xc1, 0xf1, 0x48, 0xd1, 0x25, 0xfe, 0x85, 0x9d, 0x9e, 0xf7, 0x7e, 0xdd, 0xfd, 0xfa, 0xf5, - 0x7b, 0xaf, 0x5f, 0x77, 0x0f, 0xe0, 0x4b, 0x49, 0xb8, 0x43, 0x35, 0xac, 0xae, 0x61, 0x9d, 0x7e, - 0xb1, 0x8f, 0xcd, 0xbd, 0xd3, 0x3d, 0xa5, 0xad, 0xe9, 0x8a, 0xad, 0x19, 0xfa, 0x5c, 0xcf, 0x34, - 0x6c, 0x03, 0x15, 0xd8, 0xeb, 0x39, 0xfa, 0x5a, 0xd2, 0x21, 0xbf, 0xa6, 0xb4, 0xb1, 0x8c, 0x5f, - 0xec, 0x63, 0xcb, 0x46, 0x65, 0x48, 0x5d, 0xc5, 0x7b, 0x95, 0xc4, 0xf1, 0xc4, 0x6c, 0x41, 0x26, - 0x3f, 0xd1, 0x61, 0xc8, 0x18, 0xdb, 0xdb, 0x16, 0xb6, 0x2b, 0xc9, 0xe3, 0x89, 0xd9, 0xb4, 0xcc, - 0x9f, 0xd0, 0x0c, 0x8c, 0x77, 0xb4, 0xae, 0x66, 0x57, 0x52, 0xb4, 0x98, 0x3d, 0xa0, 0x1a, 0xe4, - 0x55, 0xa3, 0xaf, 0xdb, 0x4d, 0xdb, 0xb0, 0x95, 0x4e, 0x25, 0x7d, 0x3c, 0x31, 0x9b, 0x95, 0x81, - 0x16, 0x6d, 0x90, 0x12, 0xe9, 0x49, 0x28, 0xb0, 0xfa, 0xac, 0x9e, 0xa1, 0x5b, 0x18, 0x1d, 0x85, - 0xac, 0x8e, 0x77, 0xed, 0xa6, 0x5b, 0xeb, 0x04, 0x79, 0x7e, 0x1a, 0xef, 0x91, 0x1a, 0x18, 0x0a, - 0xab, 0x98, 0x3d, 0x34, 0x1a, 0xdf, 0x7c, 0xf5, 0x58, 0xe2, 0x5b, 0xaf, 0x1e, 0x4b, 0xfc, 0xd9, - 0xab, 0xc7, 0x12, 0x9f, 0x78, 0xed, 0xd8, 0xd8, 0xb7, 0x5e, 0x3b, 0x36, 0xf6, 0x27, 0xaf, 0x1d, - 0x1b, 0x7b, 0x7e, 0xb6, 0xad, 0xd9, 0x3b, 0xfd, 0xad, 0x39, 0xd5, 0xe8, 0x9e, 0xe6, 0x22, 0x60, - 0x7f, 0x1e, 0xb0, 0x5a, 0x57, 0x4f, 0xdb, 0x7b, 0x3d, 0xcc, 0x65, 0xb2, 0x95, 0xa1, 0x92, 0x78, - 0x2f, 0xfc, 0xc1, 0x39, 0x38, 0xde, 0x36, 0x8c, 0x76, 0x07, 0x9f, 0xa6, 0x25, 0x5b, 0xfd, 0xed, - 0xd3, 0x2d, 0x6c, 0xa9, 0xa6, 0xd6, 0xb3, 0x0d, 0x93, 0xcb, 0xab, 0xc4, 0x28, 0xe6, 0x04, 0x85, - 0xb4, 0x0a, 0x53, 0xe7, 0xb5, 0x0e, 0x5e, 0x74, 0x08, 0xd7, 0xb1, 0x8d, 0x1e, 0x83, 0xf4, 0xb6, - 0xd6, 0xc1, 0x95, 0xc4, 0xf1, 0xd4, 0x6c, 0xfe, 0xcc, 0x5d, 0x73, 0x01, 0xa6, 0x39, 0x3f, 0xc7, - 0x1a, 0x29, 0x96, 0x29, 0x87, 0xf4, 0xdd, 0x34, 0x4c, 0x87, 0xbc, 0x45, 0x08, 0xd2, 0xba, 0xd2, - 0xc5, 0x54, 0x2a, 0x39, 0x99, 0xfe, 0x46, 0x15, 0x98, 0xe8, 0x29, 0xea, 0x55, 0xa5, 0x8d, 0xa9, - 0x50, 0x72, 0xb2, 0x78, 0x44, 0xc7, 0x00, 0x5a, 0xb8, 0x87, 0xf5, 0x16, 0xd6, 0xd5, 0xbd, 0x4a, - 0xea, 0x78, 0x6a, 0x36, 0x27, 0x7b, 0x4a, 0xd0, 0x7d, 0x30, 0xd5, 0xeb, 0x6f, 0x75, 0x34, 0xb5, - 0xe9, 0x21, 0x83, 0xe3, 0xa9, 0xd9, 0x71, 0xb9, 0xcc, 0x5e, 0x2c, 0xba, 0xc4, 0x27, 0xa1, 0x74, - 0x1d, 0x2b, 0x57, 0xbd, 0xa4, 0x79, 0x4a, 0x5a, 0x24, 0xc5, 0x1e, 0xc2, 0x05, 0x28, 0x74, 0xb1, - 0x65, 0x29, 0x6d, 0xdc, 0x24, 0xf2, 0xad, 0xa4, 0x69, 0xef, 0x8f, 0x0f, 0xf4, 0x3e, 0xd8, 0xf3, - 0x3c, 0xe7, 0xda, 0xd8, 0xeb, 0x61, 0x34, 0x0f, 0x39, 0xac, 0xf7, 0xbb, 0x0c, 0x61, 0x7c, 0x88, - 0xfc, 0x96, 0xf4, 0x7e, 0x37, 0x88, 0x92, 0x25, 0x6c, 0x1c, 0x62, 0xc2, 0xc2, 0xe6, 0x35, 0x4d, - 0xc5, 0x95, 0x0c, 0x05, 0x38, 0x39, 0x00, 0xb0, 0xce, 0xde, 0x07, 0x31, 0x04, 0x1f, 0x5a, 0x80, - 0x1c, 0xde, 0xb5, 0xb1, 0x6e, 0x69, 0x86, 0x5e, 0x99, 0xa0, 0x20, 0x77, 0x87, 0x8c, 0x22, 0xee, - 0xb4, 0x82, 0x10, 0x2e, 0x1f, 0x7a, 0x04, 0x26, 0x8c, 0x1e, 0x99, 0x6b, 0x56, 0x25, 0x7b, 0x3c, - 0x31, 0x9b, 0x3f, 0x73, 0x7b, 0xa8, 0x22, 0x5c, 0x66, 0x34, 0xb2, 0x20, 0x46, 0xcb, 0x50, 0xb6, - 0x8c, 0xbe, 0xa9, 0xe2, 0xa6, 0x6a, 0xb4, 0x70, 0x53, 0xd3, 0xb7, 0x8d, 0x4a, 0x8e, 0x02, 0xd4, - 0x06, 0x3b, 0x42, 0x09, 0x17, 0x8c, 0x16, 0x5e, 0xd6, 0xb7, 0x0d, 0xb9, 0x68, 0xf9, 0x9e, 0xc9, - 0x7c, 0xb5, 0xf6, 0x74, 0x5b, 0xd9, 0xad, 0x14, 0xa8, 0x86, 0xf0, 0x27, 0xe9, 0xeb, 0x19, 0x28, - 0xc5, 0x51, 0xb1, 0x73, 0x30, 0xbe, 0x4d, 0x7a, 0x59, 0x49, 0x1e, 0x44, 0x06, 0x8c, 0xc7, 0x2f, - 0xc4, 0xcc, 0x4d, 0x0a, 0x71, 0x1e, 0xf2, 0x3a, 0xb6, 0x6c, 0xdc, 0x62, 0x1a, 0x91, 0x8a, 0xa9, - 0x53, 0xc0, 0x98, 0x06, 0x55, 0x2a, 0x7d, 0x53, 0x2a, 0xf5, 0x1c, 0x94, 0x9c, 0x26, 0x35, 0x4d, - 0x45, 0x6f, 0x0b, 0xdd, 0x3c, 0x1d, 0xd5, 0x92, 0xb9, 0x25, 0xc1, 0x27, 0x13, 0x36, 0xb9, 0x88, - 0x7d, 0xcf, 0x68, 0x11, 0xc0, 0xd0, 0xb1, 0xb1, 0xdd, 0x6c, 0x61, 0xb5, 0x53, 0xc9, 0x0e, 0x91, - 0xd2, 0x65, 0x42, 0x32, 0x20, 0x25, 0x83, 0x95, 0xaa, 0x1d, 0x74, 0xd6, 0x55, 0xb5, 0x89, 0x21, - 0x9a, 0xb2, 0xca, 0x26, 0xd9, 0x80, 0xb6, 0x6d, 0x42, 0xd1, 0xc4, 0x44, 0xef, 0x71, 0x8b, 0xf7, - 0x2c, 0x47, 0x1b, 0x31, 0x17, 0xd9, 0x33, 0x99, 0xb3, 0xb1, 0x8e, 0x4d, 0x9a, 0xde, 0x47, 0x74, - 0x02, 0x9c, 0x82, 0x26, 0x55, 0x2b, 0xa0, 0x56, 0xa8, 0x20, 0x0a, 0x2f, 0x29, 0x5d, 0x5c, 0x7d, - 0x09, 0x8a, 0x7e, 0xf1, 0x10, 0x33, 0x6f, 0xd9, 0x8a, 0x69, 0x53, 0x2d, 0x1c, 0x97, 0xd9, 0x03, - 0x71, 0x44, 0x58, 0x6f, 0x51, 0x2b, 0x37, 0x2e, 0x93, 0x9f, 0xe8, 0xfd, 0x6e, 0x87, 0x53, 0xb4, - 0xc3, 0xf7, 0x0c, 0x8e, 0xa8, 0x0f, 0x39, 0xd8, 0xef, 0xea, 0xa3, 0x30, 0xe9, 0xeb, 0x40, 0xdc, - 0xaa, 0xa5, 0x0f, 0xc1, 0xa1, 0x50, 0x68, 0xf4, 0x1c, 0xcc, 0xf4, 0x75, 0x4d, 0xb7, 0xb1, 0xd9, - 0x33, 0x31, 0xd1, 0x58, 0x56, 0x55, 0xe5, 0xcf, 0x27, 0x86, 0xe8, 0xdc, 0xa6, 0x97, 0x9a, 0xa1, - 0xc8, 0xd3, 0xfd, 0xc1, 0xc2, 0x7b, 0x73, 0xd9, 0xbf, 0x98, 0x28, 0xbf, 0xfc, 0xf2, 0xcb, 0x2f, - 0x27, 0xa5, 0x7f, 0x9d, 0x81, 0x99, 0xb0, 0x39, 0x13, 0x3a, 0x7d, 0x0f, 0x43, 0x46, 0xef, 0x77, - 0xb7, 0xb0, 0x49, 0x85, 0x34, 0x2e, 0xf3, 0x27, 0x34, 0x0f, 0xe3, 0x1d, 0x65, 0x0b, 0x33, 0x97, - 0x5c, 0x3c, 0x73, 0x5f, 0xac, 0x59, 0x39, 0xb7, 0x42, 0x58, 0x64, 0xc6, 0x89, 0x9e, 0x80, 0x34, - 0x37, 0xd1, 0x04, 0xe1, 0xde, 0x78, 0x08, 0x64, 0x2e, 0xc9, 0x94, 0x0f, 0xdd, 0x06, 0x39, 0xf2, - 0x97, 0xe9, 0x46, 0x86, 0xb6, 0x39, 0x4b, 0x0a, 0x88, 0x5e, 0xa0, 0x2a, 0x64, 0xe9, 0x34, 0x69, - 0x61, 0xe1, 0xda, 0x9c, 0x67, 0xa2, 0x58, 0x2d, 0xbc, 0xad, 0xf4, 0x3b, 0x76, 0xf3, 0x9a, 0xd2, - 0xe9, 0x63, 0xaa, 0xf0, 0x39, 0xb9, 0xc0, 0x0b, 0xaf, 0x90, 0x32, 0x12, 0x79, 0xb0, 0x59, 0xa5, - 0xe9, 0x2d, 0xbc, 0x4b, 0xad, 0xe7, 0xb8, 0xcc, 0x26, 0xda, 0x32, 0x29, 0x21, 0xd5, 0xbf, 0x60, - 0x19, 0xba, 0x50, 0x4d, 0x5a, 0x05, 0x29, 0xa0, 0xd5, 0x3f, 0x1a, 0x34, 0xdc, 0x77, 0x84, 0x77, - 0x6f, 0x60, 0x2e, 0x9d, 0x84, 0x12, 0x0b, 0x26, 0xf8, 0xd0, 0x2b, 0x9d, 0xca, 0x14, 0x0d, 0x7a, - 0x8a, 0xac, 0xf8, 0x32, 0x2f, 0x95, 0xbe, 0x92, 0x84, 0x34, 0x35, 0x2c, 0x25, 0xc8, 0x6f, 0x7c, - 0x60, 0x6d, 0xa9, 0xb9, 0x78, 0x79, 0xb3, 0xb1, 0xb2, 0x54, 0x4e, 0xa0, 0x22, 0x00, 0x2d, 0x38, - 0xbf, 0x72, 0x79, 0x7e, 0xa3, 0x9c, 0x74, 0x9e, 0x97, 0x2f, 0x6d, 0x3c, 0xf2, 0x50, 0x39, 0xe5, - 0x30, 0x6c, 0xb2, 0x82, 0xb4, 0x97, 0xe0, 0xbd, 0x67, 0xca, 0xe3, 0xa8, 0x0c, 0x05, 0x06, 0xb0, - 0xfc, 0xdc, 0xd2, 0xe2, 0x23, 0x0f, 0x95, 0x33, 0xfe, 0x92, 0xf7, 0x9e, 0x29, 0x4f, 0xa0, 0x49, - 0xc8, 0xd1, 0x92, 0xc6, 0xe5, 0xcb, 0x2b, 0xe5, 0xac, 0x83, 0xb9, 0xbe, 0x21, 0x2f, 0x5f, 0xba, - 0x50, 0xce, 0x39, 0x98, 0x17, 0xe4, 0xcb, 0x9b, 0x6b, 0x65, 0x70, 0x10, 0x56, 0x97, 0xd6, 0xd7, - 0xe7, 0x2f, 0x2c, 0x95, 0xf3, 0x0e, 0x45, 0xe3, 0x03, 0x1b, 0x4b, 0xeb, 0xe5, 0x82, 0xaf, 0x59, - 0xef, 0x3d, 0x53, 0x9e, 0x74, 0xaa, 0x58, 0xba, 0xb4, 0xb9, 0x5a, 0x2e, 0xa2, 0x29, 0x98, 0x64, - 0x55, 0x88, 0x46, 0x94, 0x02, 0x45, 0x8f, 0x3c, 0x54, 0x2e, 0xbb, 0x0d, 0x61, 0x28, 0x53, 0xbe, - 0x82, 0x47, 0x1e, 0x2a, 0x23, 0x69, 0x01, 0xc6, 0xa9, 0x1a, 0x22, 0x04, 0xc5, 0x95, 0xf9, 0xc6, - 0xd2, 0x4a, 0xf3, 0xf2, 0xda, 0xc6, 0xf2, 0xe5, 0x4b, 0xf3, 0x2b, 0xe5, 0x84, 0x5b, 0x26, 0x2f, - 0x3d, 0xb3, 0xb9, 0x2c, 0x2f, 0x2d, 0x96, 0x93, 0xde, 0xb2, 0xb5, 0xa5, 0xf9, 0x8d, 0xa5, 0xc5, - 0x72, 0x4a, 0x52, 0x61, 0x26, 0xcc, 0xa0, 0x86, 0x4e, 0x21, 0x8f, 0x2e, 0x24, 0x87, 0xe8, 0x02, - 0xc5, 0x0a, 0xea, 0x82, 0xf4, 0x5a, 0x12, 0xa6, 0x43, 0x9c, 0x4a, 0x68, 0x25, 0x4f, 0xc2, 0x38, - 0xd3, 0x65, 0xe6, 0x66, 0x4f, 0x85, 0x7a, 0x27, 0xaa, 0xd9, 0x03, 0xae, 0x96, 0xf2, 0x79, 0x43, - 0x8d, 0xd4, 0x90, 0x50, 0x83, 0x40, 0x0c, 0x28, 0xec, 0x4f, 0x0e, 0x18, 0x7f, 0xe6, 0x1f, 0x1f, - 0x89, 0xe3, 0x1f, 0x69, 0xd9, 0xc1, 0x9c, 0xc0, 0x78, 0x88, 0x13, 0x38, 0x07, 0x53, 0x03, 0x40, - 0xb1, 0x8d, 0xf1, 0xcf, 0x24, 0xa0, 0x32, 0x4c, 0x38, 0x11, 0x26, 0x31, 0xe9, 0x33, 0x89, 0xe7, - 0x82, 0x12, 0xbc, 0x73, 0xf8, 0x20, 0x0c, 0x8c, 0xf5, 0x17, 0x13, 0x70, 0x38, 0x3c, 0xa4, 0x0c, - 0x6d, 0xc3, 0x13, 0x90, 0xe9, 0x62, 0x7b, 0xc7, 0x10, 0x61, 0xd5, 0x3d, 0x21, 0xce, 0x9a, 0xbc, - 0x0e, 0x0e, 0x36, 0xe7, 0xf2, 0x7a, 0xfb, 0xd4, 0xb0, 0xb8, 0x90, 0xb5, 0x66, 0xa0, 0xa5, 0x1f, - 0x4d, 0xc2, 0xa1, 0x50, 0xf0, 0xd0, 0x86, 0xde, 0x01, 0xa0, 0xe9, 0xbd, 0xbe, 0xcd, 0x42, 0x27, - 0x66, 0x89, 0x73, 0xb4, 0x84, 0x1a, 0x2f, 0x62, 0x65, 0xfb, 0xb6, 0xf3, 0x3e, 0x45, 0xdf, 0x03, - 0x2b, 0xa2, 0x04, 0x8f, 0xb9, 0x0d, 0x4d, 0xd3, 0x86, 0x1e, 0x1b, 0xd2, 0xd3, 0x01, 0xc5, 0x7c, - 0x10, 0xca, 0x6a, 0x47, 0xc3, 0xba, 0xdd, 0xb4, 0x6c, 0x13, 0x2b, 0x5d, 0x4d, 0x6f, 0x53, 0x57, - 0x93, 0xad, 0x8f, 0x6f, 0x2b, 0x1d, 0x0b, 0xcb, 0x25, 0xf6, 0x7a, 0x5d, 0xbc, 0x25, 0x1c, 0x54, - 0x81, 0x4c, 0x0f, 0x47, 0xc6, 0xc7, 0xc1, 0x5e, 0x3b, 0x1c, 0xd2, 0x2f, 0xe7, 0x20, 0xef, 0x09, - 0xc0, 0xd1, 0x9d, 0x50, 0x78, 0x41, 0xb9, 0xa6, 0x34, 0xc5, 0xa2, 0x8a, 0x49, 0x22, 0x4f, 0xca, - 0xd6, 0xf8, 0xc2, 0xea, 0x41, 0x98, 0xa1, 0x24, 0x46, 0xdf, 0xc6, 0x66, 0x53, 0xed, 0x28, 0x96, - 0x45, 0x85, 0x96, 0xa5, 0xa4, 0x88, 0xbc, 0xbb, 0x4c, 0x5e, 0x2d, 0x88, 0x37, 0xe8, 0x61, 0x98, - 0xa6, 0x1c, 0xdd, 0x7e, 0xc7, 0xd6, 0x7a, 0x1d, 0xdc, 0x24, 0xcb, 0x3c, 0x8b, 0xba, 0x1c, 0xa7, - 0x65, 0x53, 0x84, 0x62, 0x95, 0x13, 0x90, 0x16, 0x59, 0x68, 0x11, 0xee, 0xa0, 0x6c, 0x6d, 0xac, - 0x63, 0x53, 0xb1, 0x71, 0x13, 0xbf, 0xd8, 0x57, 0x3a, 0x56, 0x53, 0xd1, 0x5b, 0xcd, 0x1d, 0xc5, - 0xda, 0xa9, 0xcc, 0x10, 0x80, 0x46, 0xb2, 0x92, 0x90, 0x8f, 0x12, 0xc2, 0x0b, 0x9c, 0x6e, 0x89, - 0x92, 0xcd, 0xeb, 0xad, 0x8b, 0x8a, 0xb5, 0x83, 0xea, 0x70, 0x98, 0xa2, 0x58, 0xb6, 0xa9, 0xe9, - 0xed, 0xa6, 0xba, 0x83, 0xd5, 0xab, 0xcd, 0xbe, 0xbd, 0xfd, 0x58, 0xe5, 0x36, 0x6f, 0xfd, 0xb4, - 0x85, 0xeb, 0x94, 0x66, 0x81, 0x90, 0x6c, 0xda, 0xdb, 0x8f, 0xa1, 0x75, 0x28, 0x90, 0xc1, 0xe8, - 0x6a, 0x2f, 0xe1, 0xe6, 0xb6, 0x61, 0x52, 0x1f, 0x5a, 0x0c, 0x31, 0x4d, 0x1e, 0x09, 0xce, 0x5d, - 0xe6, 0x0c, 0xab, 0x46, 0x0b, 0xd7, 0xc7, 0xd7, 0xd7, 0x96, 0x96, 0x16, 0xe5, 0xbc, 0x40, 0x39, - 0x6f, 0x98, 0x44, 0xa1, 0xda, 0x86, 0x23, 0xe0, 0x3c, 0x53, 0xa8, 0xb6, 0x21, 0xc4, 0xfb, 0x30, - 0x4c, 0xab, 0x2a, 0xeb, 0xb3, 0xa6, 0x36, 0xf9, 0x62, 0xcc, 0xaa, 0x94, 0x7d, 0xc2, 0x52, 0xd5, - 0x0b, 0x8c, 0x80, 0xeb, 0xb8, 0x85, 0xce, 0xc2, 0x21, 0x57, 0x58, 0x5e, 0xc6, 0xa9, 0x81, 0x5e, - 0x06, 0x59, 0x1f, 0x86, 0xe9, 0xde, 0xde, 0x20, 0x23, 0xf2, 0xd5, 0xd8, 0xdb, 0x0b, 0xb2, 0x3d, - 0x0a, 0x33, 0xbd, 0x9d, 0xde, 0x20, 0xdf, 0xbd, 0x5e, 0x3e, 0xd4, 0xdb, 0xe9, 0x05, 0x19, 0xef, - 0xa6, 0x2b, 0x73, 0x13, 0xab, 0x8a, 0x8d, 0x5b, 0x95, 0x23, 0x5e, 0x72, 0xcf, 0x0b, 0x34, 0x07, - 0x65, 0x55, 0x6d, 0x62, 0x5d, 0xd9, 0xea, 0xe0, 0xa6, 0x62, 0x62, 0x5d, 0xb1, 0x2a, 0x35, 0x4a, - 0x9c, 0xb6, 0xcd, 0x3e, 0x96, 0x8b, 0xaa, 0xba, 0x44, 0x5f, 0xce, 0xd3, 0x77, 0xe8, 0x5e, 0x98, - 0x32, 0xb6, 0x5e, 0x50, 0x99, 0x46, 0x36, 0x7b, 0x26, 0xde, 0xd6, 0x76, 0x2b, 0x77, 0x51, 0xf1, - 0x96, 0xc8, 0x0b, 0xaa, 0x8f, 0x6b, 0xb4, 0x18, 0x9d, 0x82, 0xb2, 0x6a, 0xed, 0x28, 0x66, 0x8f, - 0x9a, 0x64, 0xab, 0xa7, 0xa8, 0xb8, 0x72, 0x37, 0x23, 0x65, 0xe5, 0x97, 0x44, 0x31, 0x99, 0x11, - 0xd6, 0x75, 0x6d, 0xdb, 0x16, 0x88, 0x27, 0xd9, 0x8c, 0xa0, 0x65, 0x1c, 0x6d, 0x16, 0xca, 0x44, - 0x12, 0xbe, 0x8a, 0x67, 0x29, 0x59, 0xb1, 0xb7, 0xd3, 0xf3, 0xd6, 0x7b, 0x02, 0x26, 0x09, 0xa5, - 0x5b, 0xe9, 0x29, 0x16, 0xb8, 0xf5, 0x76, 0x3c, 0x35, 0x3e, 0x04, 0x87, 0x09, 0x51, 0x17, 0xdb, - 0x4a, 0x4b, 0xb1, 0x15, 0x0f, 0xf5, 0xfd, 0x94, 0x9a, 0x88, 0x7d, 0x95, 0xbf, 0xf4, 0xb5, 0xd3, - 0xec, 0x6f, 0xed, 0x39, 0x8a, 0xf5, 0x00, 0x6b, 0x27, 0x29, 0x13, 0xaa, 0xf5, 0x96, 0x05, 0xe7, - 0x52, 0x1d, 0x0a, 0x5e, 0xbd, 0x47, 0x39, 0x60, 0x9a, 0x5f, 0x4e, 0x90, 0x20, 0x68, 0xe1, 0xf2, - 0x22, 0x09, 0x5f, 0x9e, 0x5f, 0x2a, 0x27, 0x49, 0x18, 0xb5, 0xb2, 0xbc, 0xb1, 0xd4, 0x94, 0x37, - 0x2f, 0x6d, 0x2c, 0xaf, 0x2e, 0x95, 0x53, 0x9e, 0xc0, 0xfe, 0xa9, 0x74, 0xf6, 0x9e, 0xf2, 0x49, - 0xe9, 0xdb, 0x49, 0x28, 0xfa, 0x57, 0x6a, 0xe8, 0x71, 0x38, 0x22, 0xd2, 0x2a, 0x16, 0xb6, 0x9b, - 0xd7, 0x35, 0x93, 0x4e, 0xc8, 0xae, 0xc2, 0x9c, 0xa3, 0xa3, 0x3f, 0x33, 0x9c, 0x6a, 0x1d, 0xdb, - 0xcf, 0x6a, 0x26, 0x99, 0x6e, 0x5d, 0xc5, 0x46, 0x2b, 0x50, 0xd3, 0x8d, 0xa6, 0x65, 0x2b, 0x7a, - 0x4b, 0x31, 0x5b, 0x4d, 0x37, 0xa1, 0xd5, 0x54, 0x54, 0x15, 0x5b, 0x96, 0xc1, 0x1c, 0xa1, 0x83, - 0x72, 0xbb, 0x6e, 0xac, 0x73, 0x62, 0xd7, 0x43, 0xcc, 0x73, 0xd2, 0x80, 0xfa, 0xa6, 0x86, 0xa9, - 0xef, 0x6d, 0x90, 0xeb, 0x2a, 0xbd, 0x26, 0xd6, 0x6d, 0x73, 0x8f, 0xc6, 0xe7, 0x59, 0x39, 0xdb, - 0x55, 0x7a, 0x4b, 0xe4, 0xf9, 0x6d, 0x59, 0x26, 0x3d, 0x95, 0xce, 0x66, 0xcb, 0xb9, 0xa7, 0xd2, - 0xd9, 0x5c, 0x19, 0xa4, 0x57, 0x53, 0x50, 0xf0, 0xc6, 0xeb, 0x64, 0xf9, 0xa3, 0x52, 0x8f, 0x95, - 0xa0, 0x36, 0xed, 0xc4, 0xc8, 0xe8, 0x7e, 0x6e, 0x81, 0xb8, 0xb2, 0x7a, 0x86, 0x05, 0xc7, 0x32, - 0xe3, 0x24, 0x61, 0x04, 0x51, 0x36, 0xcc, 0x82, 0x91, 0xac, 0xcc, 0x9f, 0xd0, 0x05, 0xc8, 0xbc, - 0x60, 0x51, 0xec, 0x0c, 0xc5, 0xbe, 0x6b, 0x34, 0xf6, 0x53, 0xeb, 0x14, 0x3c, 0xf7, 0xd4, 0x7a, - 0xf3, 0xd2, 0x65, 0x79, 0x75, 0x7e, 0x45, 0xe6, 0xec, 0xe8, 0x28, 0xa4, 0x3b, 0xca, 0x4b, 0x7b, - 0x7e, 0xa7, 0x47, 0x8b, 0xe2, 0x0e, 0xc2, 0x51, 0x48, 0x5f, 0xc7, 0xca, 0x55, 0xbf, 0xab, 0xa1, - 0x45, 0x6f, 0xe1, 0x64, 0x38, 0x0d, 0xe3, 0x54, 0x5e, 0x08, 0x80, 0x4b, 0xac, 0x3c, 0x86, 0xb2, - 0x90, 0x5e, 0xb8, 0x2c, 0x93, 0x09, 0x51, 0x86, 0x02, 0x2b, 0x6d, 0xae, 0x2d, 0x2f, 0x2d, 0x2c, - 0x95, 0x93, 0xd2, 0xc3, 0x90, 0x61, 0x42, 0x20, 0x93, 0xc5, 0x11, 0x43, 0x79, 0x8c, 0x3f, 0x72, - 0x8c, 0x84, 0x78, 0xbb, 0xb9, 0xda, 0x58, 0x92, 0xcb, 0x49, 0xff, 0x50, 0xa7, 0xcb, 0xe3, 0x92, - 0x05, 0x05, 0x6f, 0x1c, 0xfe, 0xf6, 0x2c, 0xc6, 0xbf, 0x91, 0x80, 0xbc, 0x27, 0xae, 0x26, 0x01, - 0x91, 0xd2, 0xe9, 0x18, 0xd7, 0x9b, 0x4a, 0x47, 0x53, 0x2c, 0xae, 0x1a, 0x40, 0x8b, 0xe6, 0x49, - 0x49, 0xdc, 0xa1, 0x7b, 0x9b, 0xa6, 0xc8, 0x78, 0x39, 0x23, 0x7d, 0x2e, 0x01, 0xe5, 0x60, 0x60, - 0x1b, 0x68, 0x66, 0xe2, 0x47, 0xd9, 0x4c, 0xe9, 0x33, 0x09, 0x28, 0xfa, 0xa3, 0xd9, 0x40, 0xf3, - 0xee, 0xfc, 0x91, 0x36, 0xef, 0xcf, 0x92, 0x30, 0xe9, 0x8b, 0x61, 0xe3, 0xb6, 0xee, 0x45, 0x98, - 0xd2, 0x5a, 0xb8, 0xdb, 0x33, 0x6c, 0xac, 0xab, 0x7b, 0xcd, 0x0e, 0xbe, 0x86, 0x3b, 0x15, 0x89, - 0x1a, 0x8d, 0xd3, 0xa3, 0xa3, 0xe4, 0xb9, 0x65, 0x97, 0x6f, 0x85, 0xb0, 0xd5, 0xa7, 0x97, 0x17, - 0x97, 0x56, 0xd7, 0x2e, 0x6f, 0x2c, 0x5d, 0x5a, 0xf8, 0x40, 0x73, 0xf3, 0xd2, 0xd3, 0x97, 0x2e, - 0x3f, 0x7b, 0x49, 0x2e, 0x6b, 0x01, 0xb2, 0xb7, 0x70, 0xda, 0xaf, 0x41, 0x39, 0xd8, 0x28, 0x74, - 0x04, 0xc2, 0x9a, 0x55, 0x1e, 0x43, 0xd3, 0x50, 0xba, 0x74, 0xb9, 0xb9, 0xbe, 0xbc, 0xb8, 0xd4, - 0x5c, 0x3a, 0x7f, 0x7e, 0x69, 0x61, 0x63, 0x9d, 0xe5, 0x3d, 0x1c, 0xea, 0x0d, 0xdf, 0x04, 0x97, - 0x3e, 0x9d, 0x82, 0xe9, 0x90, 0x96, 0xa0, 0x79, 0xbe, 0x62, 0x61, 0x8b, 0xa8, 0x07, 0xe2, 0xb4, - 0x7e, 0x8e, 0xc4, 0x0c, 0x6b, 0x8a, 0x69, 0xf3, 0x05, 0xce, 0x29, 0x20, 0x52, 0xd2, 0x6d, 0x6d, - 0x5b, 0xc3, 0x26, 0xcf, 0x27, 0xb1, 0x65, 0x4c, 0xc9, 0x2d, 0x67, 0x29, 0xa5, 0xfb, 0x01, 0xf5, - 0x0c, 0x4b, 0xb3, 0xb5, 0x6b, 0xb8, 0xa9, 0xe9, 0x22, 0xf9, 0x94, 0xa6, 0xbb, 0x51, 0x65, 0xf1, - 0x66, 0x59, 0xb7, 0x1d, 0x6a, 0x1d, 0xb7, 0x95, 0x00, 0x35, 0x31, 0xe6, 0x29, 0xb9, 0x2c, 0xde, - 0x38, 0xd4, 0x77, 0x42, 0xa1, 0x65, 0xf4, 0x49, 0xac, 0xc7, 0xe8, 0x88, 0xef, 0x48, 0xc8, 0x79, - 0x56, 0xe6, 0x90, 0xf0, 0x28, 0xde, 0xcd, 0x7a, 0x15, 0xe4, 0x3c, 0x2b, 0x63, 0x24, 0x27, 0xa1, - 0xa4, 0xb4, 0xdb, 0x26, 0x01, 0x17, 0x40, 0x6c, 0x5d, 0x52, 0x74, 0x8a, 0x29, 0x61, 0xf5, 0x29, - 0xc8, 0x0a, 0x39, 0x10, 0x57, 0x4d, 0x24, 0xd1, 0xec, 0xb1, 0xc5, 0x76, 0x72, 0x36, 0x27, 0x67, - 0x75, 0xf1, 0xf2, 0x4e, 0x28, 0x68, 0x56, 0xd3, 0x4d, 0xe2, 0x27, 0x8f, 0x27, 0x67, 0xb3, 0x72, - 0x5e, 0xb3, 0x9c, 0x04, 0xa8, 0xf4, 0xc5, 0x24, 0x14, 0xfd, 0x9b, 0x10, 0x68, 0x11, 0xb2, 0x1d, - 0x43, 0xa5, 0xbb, 0x8c, 0x7c, 0x07, 0x6c, 0x36, 0x62, 0xdf, 0x62, 0x6e, 0x85, 0xd3, 0xcb, 0x0e, - 0x67, 0xf5, 0x3f, 0x24, 0x20, 0x2b, 0x8a, 0xd1, 0x61, 0x48, 0xf7, 0x14, 0x7b, 0x87, 0xc2, 0x8d, - 0x37, 0x92, 0xe5, 0x84, 0x4c, 0x9f, 0x49, 0xb9, 0xd5, 0x53, 0x74, 0xaa, 0x02, 0xbc, 0x9c, 0x3c, - 0x93, 0x71, 0xed, 0x60, 0xa5, 0x45, 0x17, 0x3d, 0x46, 0xb7, 0x8b, 0x75, 0xdb, 0x12, 0xe3, 0xca, - 0xcb, 0x17, 0x78, 0x31, 0xba, 0x0f, 0xa6, 0x6c, 0x53, 0xd1, 0x3a, 0x3e, 0xda, 0x34, 0xa5, 0x2d, - 0x8b, 0x17, 0x0e, 0x71, 0x1d, 0x8e, 0x0a, 0xdc, 0x16, 0xb6, 0x15, 0x75, 0x07, 0xb7, 0x5c, 0xa6, - 0x0c, 0x4d, 0x6e, 0x1c, 0xe1, 0x04, 0x8b, 0xfc, 0xbd, 0xe0, 0x95, 0xbe, 0x9d, 0x80, 0x29, 0xb1, - 0x4c, 0x6b, 0x39, 0xc2, 0x5a, 0x05, 0x50, 0x74, 0xdd, 0xb0, 0xbd, 0xe2, 0x1a, 0x54, 0xe5, 0x01, - 0xbe, 0xb9, 0x79, 0x87, 0x49, 0xf6, 0x00, 0x54, 0xbb, 0x00, 0xee, 0x9b, 0xa1, 0x62, 0xab, 0x41, - 0x9e, 0xef, 0x30, 0xd1, 0x6d, 0x4a, 0xb6, 0xb0, 0x07, 0x56, 0x44, 0xd6, 0x73, 0x68, 0x06, 0xc6, - 0xb7, 0x70, 0x5b, 0xd3, 0x79, 0xde, 0x98, 0x3d, 0x88, 0xf4, 0x4b, 0xda, 0x49, 0xbf, 0x34, 0x3e, - 0x9e, 0x80, 0x69, 0xd5, 0xe8, 0x06, 0xdb, 0xdb, 0x28, 0x07, 0xb2, 0x0b, 0xd6, 0xc5, 0xc4, 0xf3, - 0x4f, 0x78, 0x76, 0x64, 0xdb, 0x46, 0x47, 0xd1, 0xdb, 0xee, 0x3e, 0x2b, 0xfd, 0xa1, 0x3e, 0xd0, - 0xc6, 0xfa, 0x03, 0x6d, 0xc3, 0xb3, 0xeb, 0x7a, 0xce, 0xfd, 0xf9, 0xd7, 0x89, 0xc4, 0x17, 0x92, - 0xa9, 0x0b, 0x6b, 0x8d, 0x2f, 0x25, 0xab, 0x17, 0x58, 0x75, 0x6b, 0x42, 0x3c, 0x32, 0xde, 0xee, - 0x60, 0x95, 0x74, 0x19, 0xbe, 0x77, 0x1f, 0xcc, 0xb4, 0x8d, 0xb6, 0x41, 0x11, 0x4f, 0x93, 0x5f, - 0x7c, 0xe7, 0x36, 0xe7, 0x94, 0x56, 0x23, 0xb7, 0x79, 0xeb, 0x97, 0x60, 0x9a, 0x13, 0x37, 0xe9, - 0xd6, 0x11, 0x5b, 0xd8, 0xa0, 0x91, 0x59, 0xb5, 0xca, 0xef, 0x7e, 0x97, 0x3a, 0x74, 0x79, 0x8a, - 0xb3, 0x92, 0x77, 0x6c, 0xed, 0x53, 0x97, 0xe1, 0x90, 0x0f, 0x8f, 0x4d, 0x5b, 0x6c, 0x46, 0x20, - 0xfe, 0x5b, 0x8e, 0x38, 0xed, 0x41, 0x5c, 0xe7, 0xac, 0xf5, 0x05, 0x98, 0x3c, 0x08, 0xd6, 0xbf, - 0xe3, 0x58, 0x05, 0xec, 0x05, 0xb9, 0x00, 0x25, 0x0a, 0xa2, 0xf6, 0x2d, 0xdb, 0xe8, 0x52, 0x9b, - 0x38, 0x1a, 0xe6, 0x0f, 0xbf, 0xcb, 0xe6, 0x51, 0x91, 0xb0, 0x2d, 0x38, 0x5c, 0xf5, 0x3a, 0xd0, - 0xdd, 0xb2, 0x16, 0x56, 0x3b, 0x11, 0x08, 0xdf, 0xe4, 0x0d, 0x71, 0xe8, 0xeb, 0x57, 0x60, 0x86, - 0xfc, 0xa6, 0x26, 0xcb, 0xdb, 0x92, 0xe8, 0x14, 0x5c, 0xe5, 0xdb, 0x3f, 0xc3, 0xa6, 0xea, 0xb4, - 0x03, 0xe0, 0x69, 0x93, 0x67, 0x14, 0xdb, 0xd8, 0xb6, 0xb1, 0x69, 0x35, 0x95, 0x4e, 0x58, 0xf3, - 0x3c, 0x39, 0x8c, 0xca, 0xaf, 0xbf, 0xee, 0x1f, 0xc5, 0x0b, 0x8c, 0x73, 0xbe, 0xd3, 0xa9, 0x6f, - 0xc2, 0x91, 0x10, 0xad, 0x88, 0x81, 0xf9, 0x69, 0x8e, 0x39, 0x33, 0xa0, 0x19, 0x04, 0x76, 0x0d, - 0x44, 0xb9, 0x33, 0x96, 0x31, 0x30, 0xff, 0x3e, 0xc7, 0x44, 0x9c, 0x57, 0x0c, 0x29, 0x41, 0x7c, - 0x0a, 0xa6, 0xae, 0x61, 0x73, 0xcb, 0xb0, 0x78, 0xde, 0x28, 0x06, 0xdc, 0x67, 0x38, 0x5c, 0x89, - 0x33, 0xd2, 0x44, 0x12, 0xc1, 0x3a, 0x0b, 0xd9, 0x6d, 0x45, 0xc5, 0x31, 0x20, 0x3e, 0xcb, 0x21, - 0x26, 0x08, 0x3d, 0x61, 0x9d, 0x87, 0x42, 0xdb, 0xe0, 0x5e, 0x2b, 0x9a, 0xfd, 0x73, 0x9c, 0x3d, - 0x2f, 0x78, 0x38, 0x44, 0xcf, 0xe8, 0xf5, 0x3b, 0xc4, 0xa5, 0x45, 0x43, 0xfc, 0x86, 0x80, 0x10, - 0x3c, 0x1c, 0xe2, 0x00, 0x62, 0x7d, 0x45, 0x40, 0x58, 0x1e, 0x79, 0x3e, 0x09, 0x79, 0x43, 0xef, - 0xec, 0x19, 0x7a, 0x9c, 0x46, 0x7c, 0x9e, 0x23, 0x00, 0x67, 0x21, 0x00, 0xe7, 0x20, 0x17, 0x77, - 0x20, 0xfe, 0xe1, 0xeb, 0x62, 0x7a, 0x88, 0x11, 0xb8, 0x00, 0x25, 0x61, 0xa0, 0x34, 0x43, 0x8f, - 0x01, 0xf1, 0x8f, 0x38, 0x44, 0xd1, 0xc3, 0xc6, 0xbb, 0x61, 0x63, 0xcb, 0x6e, 0xe3, 0x38, 0x20, - 0x5f, 0x14, 0xdd, 0xe0, 0x2c, 0x5c, 0x94, 0x5b, 0x58, 0x57, 0x77, 0xe2, 0x21, 0xfc, 0xa6, 0x10, - 0xa5, 0xe0, 0x21, 0x10, 0x0b, 0x30, 0xd9, 0x55, 0x4c, 0x6b, 0x47, 0xe9, 0xc4, 0x1a, 0x8e, 0x7f, - 0xcc, 0x31, 0x0a, 0x0e, 0x13, 0x97, 0x48, 0x5f, 0x3f, 0x08, 0xcc, 0x97, 0x84, 0x44, 0x3c, 0x6c, - 0x7c, 0xea, 0x59, 0x36, 0x4d, 0xb2, 0x1d, 0x04, 0xed, 0x9f, 0x88, 0xa9, 0xc7, 0x78, 0x57, 0xbd, - 0x88, 0xe7, 0x20, 0x67, 0x69, 0x2f, 0xc5, 0x82, 0xf9, 0xa7, 0x62, 0xa4, 0x29, 0x03, 0x61, 0xfe, - 0x00, 0x1c, 0x0d, 0x75, 0x13, 0x31, 0xc0, 0xfe, 0x19, 0x07, 0x3b, 0x1c, 0xe2, 0x2a, 0xb8, 0x49, - 0x38, 0x28, 0xe4, 0x6f, 0x09, 0x93, 0x80, 0x03, 0x58, 0x6b, 0x64, 0x1d, 0x61, 0x29, 0xdb, 0x07, - 0x93, 0xda, 0x6f, 0x0b, 0xa9, 0x31, 0x5e, 0x9f, 0xd4, 0x36, 0xe0, 0x30, 0x47, 0x3c, 0xd8, 0xb8, - 0xfe, 0x8e, 0x30, 0xac, 0x8c, 0x7b, 0xd3, 0x3f, 0xba, 0x1f, 0x84, 0xaa, 0x23, 0x4e, 0x11, 0xb0, - 0x5a, 0xcd, 0xae, 0xd2, 0x8b, 0x81, 0xfc, 0xbb, 0x1c, 0x59, 0x58, 0x7c, 0x27, 0xe2, 0xb5, 0x56, - 0x95, 0x1e, 0x01, 0x7f, 0x0e, 0x2a, 0x02, 0xbc, 0xaf, 0x9b, 0x58, 0x35, 0xda, 0xba, 0xf6, 0x12, - 0x6e, 0xc5, 0x80, 0xfe, 0xe7, 0x81, 0xa1, 0xda, 0xf4, 0xb0, 0x13, 0xe4, 0x65, 0x28, 0x3b, 0xb1, - 0x4a, 0x53, 0xeb, 0xf6, 0x0c, 0xd3, 0x8e, 0x40, 0xfc, 0x17, 0x62, 0xa4, 0x1c, 0xbe, 0x65, 0xca, - 0x56, 0x5f, 0x02, 0xb6, 0xf3, 0x1c, 0x57, 0x25, 0xbf, 0xcc, 0x81, 0x26, 0x5d, 0x2e, 0x6e, 0x38, - 0x54, 0xa3, 0xdb, 0x53, 0xcc, 0x38, 0xf6, 0xef, 0x5f, 0x0a, 0xc3, 0xc1, 0x59, 0xb8, 0xe1, 0xb0, - 0xf7, 0x7a, 0x98, 0x78, 0xfb, 0x18, 0x08, 0x5f, 0x11, 0x86, 0x43, 0xf0, 0x70, 0x08, 0x11, 0x30, - 0xc4, 0x80, 0xf8, 0xaa, 0x80, 0x10, 0x3c, 0x04, 0xe2, 0x19, 0xd7, 0xd1, 0x9a, 0xb8, 0xad, 0x59, - 0xb6, 0xc9, 0xc2, 0xe4, 0xd1, 0x50, 0x5f, 0x7b, 0xdd, 0x1f, 0x84, 0xc9, 0x1e, 0x56, 0x62, 0x89, - 0x78, 0xda, 0x95, 0xae, 0xa2, 0xa2, 0x1b, 0xf6, 0x75, 0x61, 0x89, 0x3c, 0x6c, 0xa4, 0x6d, 0x9e, - 0x08, 0x91, 0x88, 0x5d, 0x25, 0x6b, 0x87, 0x18, 0x70, 0xbf, 0x17, 0x68, 0xdc, 0xba, 0xe0, 0x25, - 0x98, 0x9e, 0xf8, 0xa7, 0xaf, 0x5f, 0xc5, 0x7b, 0xb1, 0xb4, 0xf3, 0xf7, 0x03, 0xf1, 0xcf, 0x26, - 0xe3, 0x64, 0x36, 0xa4, 0x14, 0x88, 0xa7, 0x50, 0xd4, 0x39, 0xa3, 0xca, 0xdf, 0x7e, 0x83, 0xf7, - 0xd7, 0x1f, 0x4e, 0xd5, 0x57, 0x88, 0x92, 0xfb, 0x83, 0x9e, 0x68, 0xb0, 0x9f, 0x79, 0xc3, 0xd1, - 0x73, 0x5f, 0xcc, 0x53, 0x3f, 0x0f, 0x93, 0xbe, 0x80, 0x27, 0x1a, 0xea, 0xc3, 0x1c, 0xaa, 0xe0, - 0x8d, 0x77, 0xea, 0x0f, 0x43, 0x9a, 0x04, 0x2f, 0xd1, 0xec, 0x3f, 0xcb, 0xd9, 0x29, 0x79, 0xfd, - 0x7d, 0x90, 0x15, 0x41, 0x4b, 0x34, 0xeb, 0xcf, 0x71, 0x56, 0x87, 0x85, 0xb0, 0x8b, 0x80, 0x25, - 0x9a, 0xfd, 0xe7, 0x05, 0xbb, 0x60, 0x21, 0xec, 0xf1, 0x45, 0xf8, 0x8d, 0xbf, 0x93, 0xe6, 0x4e, - 0x47, 0xc8, 0xee, 0x1c, 0x4c, 0xf0, 0x48, 0x25, 0x9a, 0xfb, 0xa3, 0xbc, 0x72, 0xc1, 0x51, 0x7f, - 0x14, 0xc6, 0x63, 0x0a, 0xfc, 0x17, 0x39, 0x2b, 0xa3, 0xaf, 0x2f, 0x40, 0xde, 0x13, 0x9d, 0x44, - 0xb3, 0xff, 0x12, 0x67, 0xf7, 0x72, 0x91, 0xa6, 0xf3, 0xe8, 0x24, 0x1a, 0xe0, 0xe3, 0xa2, 0xe9, - 0x9c, 0x83, 0x88, 0x4d, 0x04, 0x26, 0xd1, 0xdc, 0x9f, 0x10, 0x52, 0x17, 0x2c, 0xf5, 0x27, 0x21, - 0xe7, 0x38, 0x9b, 0x68, 0xfe, 0x5f, 0xe6, 0xfc, 0x2e, 0x0f, 0x91, 0x80, 0xc7, 0xd9, 0x45, 0x43, - 0x7c, 0x52, 0x48, 0xc0, 0xc3, 0x45, 0xa6, 0x51, 0x30, 0x80, 0x89, 0x46, 0xfa, 0xbb, 0x62, 0x1a, - 0x05, 0xe2, 0x17, 0x32, 0x9a, 0xd4, 0xe6, 0x47, 0x43, 0xfc, 0x8a, 0x18, 0x4d, 0x4a, 0x4f, 0x9a, - 0x11, 0x8c, 0x08, 0xa2, 0x31, 0xfe, 0x9e, 0x68, 0x46, 0x20, 0x20, 0xa8, 0xaf, 0x01, 0x1a, 0x8c, - 0x06, 0xa2, 0xf1, 0x3e, 0xc5, 0xf1, 0xa6, 0x06, 0x82, 0x81, 0xfa, 0xb3, 0x70, 0x38, 0x3c, 0x12, - 0x88, 0x46, 0xfd, 0xf5, 0x37, 0x02, 0x6b, 0x37, 0x6f, 0x20, 0x50, 0xdf, 0x70, 0x5d, 0x8a, 0x37, - 0x0a, 0x88, 0x86, 0xfd, 0xf4, 0x1b, 0x7e, 0xc3, 0xed, 0x0d, 0x02, 0xea, 0xf3, 0x00, 0xae, 0x03, - 0x8e, 0xc6, 0xfa, 0x0c, 0xc7, 0xf2, 0x30, 0x91, 0xa9, 0xc1, 0xfd, 0x6f, 0x34, 0xff, 0x67, 0xc5, - 0xd4, 0xe0, 0x1c, 0x64, 0x6a, 0x08, 0xd7, 0x1b, 0xcd, 0xfd, 0x39, 0x31, 0x35, 0x04, 0x0b, 0xd1, - 0x6c, 0x8f, 0x77, 0x8b, 0x46, 0xf8, 0xbc, 0xd0, 0x6c, 0x0f, 0x57, 0xfd, 0x12, 0x4c, 0x0d, 0x38, - 0xc4, 0x68, 0xa8, 0x2f, 0x70, 0xa8, 0x72, 0xd0, 0x1f, 0x7a, 0x9d, 0x17, 0x77, 0x86, 0xd1, 0x68, - 0xff, 0x20, 0xe0, 0xbc, 0xb8, 0x2f, 0xac, 0x9f, 0x83, 0xac, 0xde, 0xef, 0x74, 0xc8, 0xe4, 0x41, - 0xa3, 0xcf, 0x06, 0x56, 0xfe, 0xfb, 0x0f, 0xb9, 0x74, 0x04, 0x43, 0xfd, 0x61, 0x18, 0xc7, 0xdd, - 0x2d, 0xdc, 0x8a, 0xe2, 0xfc, 0xde, 0x0f, 0x85, 0xc1, 0x24, 0xd4, 0xf5, 0x27, 0x01, 0x58, 0x6a, - 0x84, 0x6e, 0x0f, 0x46, 0xf0, 0xfe, 0x8f, 0x1f, 0xf2, 0xc3, 0x38, 0x2e, 0x8b, 0x0b, 0xc0, 0x8e, - 0xf6, 0x8c, 0x06, 0x78, 0xdd, 0x0f, 0x40, 0x47, 0xe4, 0x2c, 0x4c, 0xbc, 0x60, 0x19, 0xba, 0xad, - 0xb4, 0xa3, 0xb8, 0xff, 0x27, 0xe7, 0x16, 0xf4, 0x44, 0x60, 0x5d, 0xc3, 0xc4, 0xb6, 0xd2, 0xb6, - 0xa2, 0x78, 0xff, 0x17, 0xe7, 0x75, 0x18, 0x08, 0xb3, 0xaa, 0x58, 0x76, 0x9c, 0x7e, 0xff, 0x6f, - 0xc1, 0x2c, 0x18, 0x48, 0xa3, 0xc9, 0xef, 0xab, 0x78, 0x2f, 0x8a, 0xf7, 0xfb, 0xa2, 0xd1, 0x9c, - 0xbe, 0xfe, 0x3e, 0xc8, 0x91, 0x9f, 0xec, 0x84, 0x5d, 0x04, 0xf3, 0xff, 0xe1, 0xcc, 0x2e, 0x07, - 0xa9, 0xd9, 0xb2, 0x5b, 0xb6, 0x16, 0x2d, 0xec, 0x1b, 0x7c, 0xa4, 0x05, 0x7d, 0x7d, 0x1e, 0xf2, - 0x96, 0xdd, 0x6a, 0xf5, 0x79, 0x7c, 0x1a, 0xc1, 0xfe, 0x7f, 0x7f, 0xe8, 0xa4, 0x2c, 0x1c, 0x1e, - 0x32, 0xda, 0xd7, 0xaf, 0xda, 0x3d, 0x83, 0x6e, 0x81, 0x44, 0x21, 0xbc, 0xc1, 0x11, 0x3c, 0x2c, - 0xf5, 0x05, 0x28, 0x90, 0xbe, 0x98, 0xb8, 0x87, 0xe9, 0x7e, 0x55, 0x04, 0xc4, 0x5f, 0x72, 0x01, - 0xf8, 0x98, 0x1a, 0x3f, 0x39, 0xec, 0x7e, 0x4e, 0x78, 0xda, 0x18, 0x2e, 0x18, 0x17, 0x0c, 0x96, - 0x30, 0x7e, 0x5e, 0xf2, 0xa5, 0x8b, 0xdb, 0x86, 0x9b, 0xad, 0x75, 0x16, 0x39, 0xf0, 0x7b, 0x49, - 0xb8, 0x9b, 0x1e, 0x0b, 0x36, 0xbb, 0x9a, 0x6e, 0x9f, 0x56, 0xcd, 0xbd, 0x9e, 0x6d, 0x9c, 0xee, - 0x62, 0xf3, 0x6a, 0x07, 0xf3, 0x3f, 0x3c, 0xfb, 0x5b, 0x71, 0xc9, 0xe6, 0x18, 0xd9, 0x1c, 0x7b, - 0x5f, 0x0d, 0xcd, 0x16, 0x4b, 0x0b, 0x30, 0xb1, 0x66, 0x1a, 0xc6, 0xf6, 0xe5, 0x1e, 0x42, 0xfc, - 0xa4, 0x33, 0x3f, 0x18, 0x47, 0xd5, 0x90, 0xdf, 0x8c, 0x4a, 0xba, 0x37, 0xa3, 0x10, 0xa4, 0x5b, - 0x8a, 0xad, 0xd0, 0x84, 0x79, 0x41, 0xa6, 0xbf, 0xa5, 0x06, 0x8c, 0x53, 0x10, 0x74, 0x16, 0x52, - 0x46, 0xcf, 0xe2, 0xd9, 0xfd, 0x3b, 0xe7, 0x86, 0xb5, 0x65, 0x8e, 0x57, 0xd9, 0x48, 0x7f, 0x73, - 0xbf, 0x36, 0x26, 0x13, 0x9e, 0xc6, 0xda, 0x5f, 0x7f, 0xe7, 0x58, 0xe2, 0x37, 0x5f, 0x3d, 0x96, - 0x18, 0x7a, 0xd3, 0x69, 0xce, 0x23, 0x28, 0x8f, 0x30, 0x86, 0xc9, 0xc5, 0xb9, 0xef, 0xf4, 0x0b, - 0x49, 0x38, 0xe6, 0x21, 0xea, 0x68, 0x5b, 0xd6, 0xe9, 0xab, 0xd7, 0xd8, 0xd5, 0x28, 0x2e, 0x35, - 0xe4, 0x69, 0x29, 0x79, 0x3f, 0x77, 0xf5, 0xda, 0x10, 0x79, 0xcd, 0x41, 0x7a, 0x4d, 0xd1, 0xcc, - 0x90, 0x2b, 0x63, 0x33, 0xee, 0xd9, 0x56, 0x52, 0xc6, 0x1e, 0xa4, 0x33, 0x90, 0x7d, 0x7a, 0xf9, - 0x91, 0x87, 0xe2, 0xf0, 0xa4, 0x38, 0x4f, 0x43, 0x16, 0xa2, 0xf8, 0x5a, 0x88, 0x38, 0xbe, 0xf1, - 0xda, 0xb1, 0x44, 0xe8, 0xe5, 0xaf, 0x70, 0x91, 0xf0, 0xde, 0x3a, 0xc2, 0xf8, 0x44, 0x12, 0x6a, - 0xc1, 0x5d, 0x01, 0x32, 0x15, 0x2d, 0x5b, 0xe9, 0xf6, 0x86, 0xdd, 0xfd, 0x3a, 0x07, 0xb9, 0x0d, - 0x41, 0x83, 0x2a, 0x30, 0x61, 0x61, 0xd5, 0xd0, 0x5b, 0x16, 0xed, 0x49, 0x4a, 0x16, 0x8f, 0xa4, - 0x37, 0xba, 0xa2, 0x1b, 0x16, 0x3f, 0x71, 0xca, 0x1e, 0x1a, 0xbf, 0x96, 0x38, 0xd8, 0xdc, 0x28, - 0x3a, 0x55, 0xd1, 0x09, 0xb2, 0x96, 0x78, 0xfe, 0xbe, 0x51, 0x1b, 0x2a, 0xec, 0x86, 0x9b, 0xd3, - 0x05, 0xcf, 0xee, 0xc9, 0xb1, 0xe0, 0xee, 0xc9, 0xb3, 0xb8, 0xd3, 0x79, 0x5a, 0x37, 0xae, 0xeb, - 0x1b, 0x84, 0xc7, 0x11, 0xc9, 0xc7, 0x92, 0x70, 0x6c, 0x60, 0xa3, 0x84, 0x9b, 0x97, 0x61, 0x12, - 0xa9, 0x43, 0x76, 0x51, 0x58, 0xad, 0x83, 0x0a, 0xe4, 0x57, 0x0e, 0x28, 0x90, 0x49, 0x51, 0x93, - 0x90, 0xc7, 0xbd, 0xd1, 0xf2, 0x10, 0xed, 0xbf, 0x09, 0x71, 0x7c, 0xf8, 0x09, 0xb8, 0xd3, 0xa3, - 0x40, 0xca, 0x96, 0xaa, 0xf1, 0x6b, 0x84, 0xde, 0x19, 0x73, 0xc8, 0x33, 0x63, 0x08, 0xc9, 0x1c, - 0x7d, 0x19, 0x3e, 0x69, 0xaa, 0xf1, 0x6c, 0x57, 0x35, 0x62, 0x96, 0x56, 0xa3, 0x14, 0xb7, 0x1a, - 0x31, 0x8c, 0xd2, 0x5f, 0x8d, 0xc3, 0x84, 0xb8, 0xf3, 0xf9, 0x18, 0xa4, 0xb1, 0xba, 0x63, 0xf0, - 0xc3, 0xee, 0xd2, 0x5c, 0x68, 0x7f, 0xe6, 0x38, 0xf5, 0x92, 0xba, 0x63, 0x5c, 0x1c, 0x93, 0x29, - 0x07, 0xbd, 0x2b, 0xd6, 0xe9, 0x5b, 0x3b, 0xfc, 0x4c, 0xf2, 0x89, 0xd1, 0xac, 0xe7, 0x09, 0xe9, - 0xc5, 0x31, 0x99, 0xf1, 0x90, 0x6a, 0xe9, 0x3d, 0xb7, 0x74, 0x9c, 0x6a, 0x97, 0xf5, 0x6d, 0x5a, - 0x2d, 0xe1, 0x40, 0x17, 0x01, 0x2c, 0x6c, 0x8b, 0xa3, 0x0c, 0xe3, 0x94, 0xff, 0xe4, 0x68, 0xfe, - 0x75, 0x6c, 0x33, 0xb7, 0x75, 0x71, 0x4c, 0xce, 0x59, 0xe2, 0x81, 0x20, 0x69, 0xba, 0x66, 0x37, - 0xd5, 0x1d, 0x45, 0xd3, 0xe9, 0x1e, 0x7c, 0x24, 0xd2, 0xb2, 0xae, 0xd9, 0x0b, 0x84, 0x9c, 0x20, - 0x69, 0xe2, 0x81, 0x88, 0x82, 0xde, 0x2d, 0xe5, 0x97, 0xb1, 0x22, 0x44, 0xf1, 0x0c, 0x21, 0x25, - 0xa2, 0xa0, 0x3c, 0xe8, 0x69, 0xc8, 0xd3, 0xed, 0xd6, 0xe6, 0x56, 0xc7, 0x50, 0xaf, 0xf2, 0x1b, - 0x28, 0xb3, 0xa3, 0x21, 0x1a, 0x84, 0xa1, 0x41, 0xe8, 0x2f, 0x8e, 0xc9, 0xb0, 0xe5, 0x3c, 0xa1, - 0x06, 0x64, 0xd9, 0xa9, 0x5f, 0x7b, 0x97, 0xdf, 0x21, 0xbc, 0x7b, 0x34, 0x12, 0x3d, 0x00, 0xbc, - 0xb1, 0x7b, 0x71, 0x4c, 0x9e, 0x50, 0xd9, 0x4f, 0xb4, 0x04, 0x39, 0xac, 0xb7, 0x78, 0x73, 0xf2, - 0xfc, 0xb6, 0xd5, 0x68, 0xbd, 0xd0, 0x5b, 0xa2, 0x31, 0x59, 0xcc, 0x7f, 0xa3, 0x27, 0x20, 0xa3, - 0x1a, 0xdd, 0xae, 0x66, 0xd3, 0xbb, 0x88, 0xf9, 0x33, 0x77, 0x45, 0x34, 0x84, 0xd2, 0x5e, 0x1c, - 0x93, 0x39, 0x17, 0x19, 0x9e, 0x16, 0xee, 0x68, 0xd7, 0xb0, 0x49, 0x3a, 0x33, 0x1d, 0x67, 0x78, - 0x16, 0x19, 0x3d, 0xed, 0x4e, 0xae, 0x25, 0x1e, 0x1a, 0x13, 0xdc, 0xbd, 0x48, 0x27, 0x21, 0xef, - 0xd1, 0x64, 0x62, 0xb1, 0xf8, 0x0a, 0x84, 0x3b, 0x7b, 0xf1, 0x28, 0x15, 0xa1, 0xe0, 0xd5, 0x5b, - 0xa9, 0xeb, 0x30, 0xd2, 0x4d, 0xfc, 0x0a, 0x4c, 0x5c, 0xc3, 0xa6, 0xc5, 0x76, 0xf0, 0x29, 0x23, - 0x7f, 0x44, 0x27, 0x60, 0x92, 0xca, 0xad, 0x29, 0xde, 0xb3, 0xeb, 0xcb, 0x05, 0x5a, 0x78, 0x85, - 0x13, 0xd5, 0x20, 0xdf, 0x3b, 0xd3, 0x73, 0x48, 0xd8, 0x1d, 0x6a, 0xe8, 0x9d, 0xe9, 0x71, 0x02, - 0xa9, 0x0e, 0xe5, 0xa0, 0xea, 0x7a, 0xbd, 0x66, 0x2e, 0xc4, 0x6b, 0xe6, 0x84, 0xa7, 0xfd, 0x9d, - 0xa4, 0xc3, 0xec, 0x68, 0x2b, 0x99, 0x6e, 0xc4, 0x48, 0x50, 0xee, 0xfc, 0x99, 0xea, 0x40, 0x68, - 0xe7, 0xf8, 0x9a, 0x46, 0x96, 0x84, 0x22, 0x9f, 0xf8, 0xd3, 0x5a, 0x42, 0xa6, 0x1c, 0xe8, 0x28, - 0x51, 0x28, 0x45, 0xd3, 0x9b, 0x5a, 0x4b, 0xdc, 0x3a, 0xa6, 0xcf, 0xcb, 0x2d, 0xf4, 0x0c, 0x94, - 0x55, 0x43, 0xb7, 0xb0, 0x6e, 0xf5, 0xad, 0x66, 0x4f, 0x31, 0x95, 0xae, 0x7b, 0x39, 0x2f, 0x7c, - 0x98, 0x16, 0x04, 0xf9, 0x1a, 0xa5, 0x96, 0x4b, 0xaa, 0xbf, 0x00, 0xad, 0x00, 0x5c, 0x53, 0x3a, - 0x5a, 0x4b, 0xb1, 0x0d, 0xd3, 0xe2, 0x77, 0x53, 0x86, 0x81, 0x5d, 0x11, 0x84, 0x9b, 0xbd, 0x96, - 0x62, 0x63, 0x1e, 0x44, 0x79, 0xf8, 0xd1, 0x3d, 0x50, 0x52, 0x7a, 0xbd, 0xa6, 0x65, 0x2b, 0x36, - 0x6e, 0x6e, 0xed, 0xd9, 0xd8, 0xa2, 0xf6, 0xa2, 0x20, 0x4f, 0x2a, 0xbd, 0xde, 0x3a, 0x29, 0x6d, - 0x90, 0x42, 0xa9, 0xe5, 0x8c, 0x36, 0x9d, 0x9a, 0x4e, 0x6c, 0x97, 0x70, 0x63, 0x3b, 0x52, 0x46, - 0x8f, 0x56, 0x30, 0x19, 0x88, 0xd3, 0x28, 0x99, 0x1d, 0xac, 0xb5, 0x77, 0xd8, 0x35, 0xf8, 0x94, - 0xcc, 0x9f, 0xc8, 0xc0, 0xf4, 0x4c, 0xe3, 0x1a, 0xe6, 0x37, 0xe0, 0xd9, 0x83, 0xf4, 0xab, 0x49, - 0x98, 0x1a, 0x98, 0xbe, 0x04, 0x97, 0x9e, 0xef, 0xe7, 0x75, 0x91, 0xdf, 0xe8, 0x1c, 0xc1, 0x55, - 0x5a, 0xfc, 0xce, 0x4a, 0xfe, 0xcc, 0x1d, 0x43, 0x24, 0x70, 0x91, 0x12, 0xf1, 0x8e, 0x73, 0x16, - 0xb4, 0x09, 0xe5, 0x8e, 0x62, 0xd9, 0x4d, 0x36, 0x8b, 0xd8, 0x6d, 0xe2, 0xd4, 0x48, 0x4b, 0xb0, - 0xa2, 0x88, 0xd9, 0x47, 0x94, 0x9b, 0xc3, 0x15, 0x3b, 0xbe, 0x52, 0xf4, 0x1c, 0xcc, 0x6c, 0xed, - 0xbd, 0xa4, 0xe8, 0xb6, 0xa6, 0xd3, 0xc3, 0x46, 0xfe, 0x31, 0xaa, 0x0d, 0x81, 0x5e, 0xba, 0xa6, - 0xb5, 0xb0, 0xae, 0x8a, 0xc1, 0x99, 0x76, 0x20, 0x9c, 0xc1, 0xb3, 0xa4, 0xe7, 0xa0, 0xe8, 0xb7, - 0x45, 0xa8, 0x08, 0x49, 0x7b, 0x97, 0x4b, 0x24, 0x69, 0xef, 0xa2, 0x47, 0x78, 0x44, 0x9e, 0xa4, - 0xa7, 0xe5, 0x86, 0x39, 0x0b, 0xce, 0xed, 0xde, 0x39, 0x94, 0x24, 0x67, 0x26, 0x38, 0x86, 0x21, - 0x88, 0x2d, 0x9d, 0x82, 0x52, 0xc0, 0x88, 0x79, 0x86, 0x35, 0xe1, 0x1d, 0x56, 0xa9, 0x04, 0x93, - 0x3e, 0x5b, 0x25, 0xfd, 0x51, 0x06, 0xb2, 0xce, 0xb7, 0x0c, 0x2e, 0x42, 0x0e, 0xef, 0xaa, 0xb8, - 0x67, 0x0b, 0xab, 0x30, 0xca, 0x88, 0x33, 0x9e, 0x25, 0x41, 0x4f, 0xcc, 0x95, 0xc3, 0x8c, 0xce, - 0xfa, 0x5c, 0xf2, 0x89, 0x28, 0x10, 0xaf, 0x4f, 0x7e, 0xdc, 0xef, 0x93, 0xef, 0x8a, 0xe0, 0x0d, - 0x38, 0xe5, 0xb3, 0x3e, 0xa7, 0x1c, 0x55, 0xb1, 0xcf, 0x2b, 0x2f, 0x87, 0x78, 0xe5, 0xa8, 0xee, - 0x0f, 0x71, 0xcb, 0xcb, 0x21, 0x6e, 0x79, 0x36, 0xb2, 0x2d, 0xa1, 0x7e, 0xf9, 0x71, 0xbf, 0x5f, - 0x8e, 0x12, 0x47, 0xc0, 0x31, 0xaf, 0x84, 0x39, 0xe6, 0x53, 0x11, 0x18, 0x43, 0x3d, 0xf3, 0xc2, - 0x80, 0x67, 0xbe, 0x27, 0x02, 0x2a, 0xc4, 0x35, 0x2f, 0xfb, 0x7c, 0x22, 0xc4, 0x92, 0x4d, 0xb8, - 0x53, 0x44, 0xe7, 0x07, 0xbd, 0xfc, 0xc9, 0x28, 0x55, 0x0b, 0x73, 0xf3, 0x4f, 0x06, 0xdc, 0xfc, - 0xdd, 0x51, 0xbd, 0x0a, 0xf8, 0x79, 0xd7, 0x3b, 0x9f, 0x22, 0xf6, 0x31, 0x30, 0x33, 0x88, 0x2d, - 0xc5, 0xa6, 0x69, 0x98, 0xdc, 0xf1, 0xb1, 0x07, 0x69, 0x96, 0x58, 0x6c, 0x57, 0xff, 0x47, 0x78, - 0x72, 0x3a, 0x69, 0x3d, 0xda, 0x2e, 0x7d, 0x2d, 0xe1, 0xf2, 0x52, 0xcb, 0xe6, 0xb5, 0xf6, 0x39, - 0x6e, 0xed, 0x3d, 0x0e, 0x3e, 0xe9, 0x77, 0xf0, 0x35, 0xc8, 0x13, 0x9f, 0x12, 0xf0, 0xdd, 0x4a, - 0x4f, 0xf8, 0x6e, 0x74, 0x2f, 0x4c, 0x51, 0xfb, 0xcb, 0xc2, 0x00, 0x6e, 0x48, 0xd2, 0xd4, 0x90, - 0x94, 0xc8, 0x0b, 0x26, 0x41, 0xe6, 0x28, 0x1e, 0x80, 0x69, 0x0f, 0x2d, 0xc1, 0xa5, 0xbe, 0x80, - 0x39, 0xa9, 0xb2, 0x43, 0x3d, 0xdf, 0xeb, 0x5d, 0x54, 0xac, 0x1d, 0x69, 0xd5, 0x15, 0x90, 0x1b, - 0x17, 0x20, 0x48, 0xab, 0x46, 0x8b, 0xf5, 0x7b, 0x52, 0xa6, 0xbf, 0x49, 0xac, 0xd0, 0x31, 0xda, - 0xfc, 0x04, 0x24, 0xf9, 0x49, 0xa8, 0x9c, 0xa9, 0x9d, 0x63, 0x73, 0x56, 0xfa, 0x72, 0xc2, 0xc5, - 0x73, 0x43, 0x85, 0x30, 0xaf, 0x9e, 0xb8, 0x95, 0x5e, 0x3d, 0xf9, 0xe6, 0xbc, 0xba, 0xf4, 0x46, - 0xc2, 0x1d, 0x52, 0xc7, 0x5f, 0xdf, 0x9c, 0x08, 0x88, 0x76, 0xb1, 0x1b, 0xe3, 0xec, 0xa4, 0x2e, - 0x7b, 0x10, 0xa1, 0x56, 0x26, 0x24, 0x41, 0x31, 0xe1, 0x49, 0x6a, 0xa0, 0x87, 0xa9, 0x9f, 0x37, - 0xb6, 0xb9, 0x69, 0xa8, 0x45, 0x24, 0x7a, 0x64, 0x46, 0xed, 0xf1, 0x2f, 0x39, 0x5f, 0xd8, 0x70, - 0x3b, 0xe4, 0x48, 0xd3, 0xd9, 0xf5, 0x27, 0xe0, 0xe9, 0x45, 0x51, 0x20, 0xb5, 0x00, 0x0d, 0xda, - 0x18, 0x74, 0x09, 0x32, 0xf8, 0x1a, 0x3d, 0x8d, 0xca, 0x92, 0x4d, 0xb7, 0x0f, 0x75, 0xc4, 0x58, - 0xb7, 0x1b, 0x15, 0x22, 0xcc, 0xef, 0xed, 0xd7, 0xca, 0x8c, 0xe7, 0x7e, 0xa3, 0xab, 0xd9, 0xb8, - 0xdb, 0xb3, 0xf7, 0x64, 0x8e, 0x22, 0xfd, 0x7c, 0x92, 0xf8, 0x43, 0x9f, 0xfd, 0x09, 0x15, 0xaf, - 0x98, 0x34, 0x49, 0x4f, 0x88, 0x14, 0x4f, 0xe4, 0x77, 0x00, 0xb4, 0x15, 0xab, 0x79, 0x5d, 0xd1, - 0x6d, 0xdc, 0xe2, 0x72, 0xcf, 0xb5, 0x15, 0xeb, 0x59, 0x5a, 0x40, 0xe2, 0x4d, 0xf2, 0xba, 0x6f, - 0xe1, 0x16, 0x1d, 0x80, 0x94, 0x3c, 0xd1, 0x56, 0xac, 0x4d, 0x0b, 0xb7, 0x3c, 0x7d, 0x9d, 0xb8, - 0x15, 0x7d, 0xf5, 0xcb, 0x3b, 0x1b, 0x94, 0xf7, 0x47, 0x93, 0xee, 0xec, 0x70, 0xc3, 0x87, 0x1f, - 0x4f, 0x59, 0x7c, 0x96, 0xae, 0x29, 0xfc, 0x4e, 0x00, 0x7d, 0x00, 0xa6, 0x9c, 0x59, 0xd9, 0xec, - 0xd3, 0xd9, 0x2a, 0xb4, 0xf0, 0x60, 0x93, 0xbb, 0x7c, 0xcd, 0x5f, 0x6c, 0xa1, 0x9f, 0x82, 0x23, - 0x01, 0x1b, 0xe4, 0x54, 0x90, 0x3c, 0x90, 0x29, 0x3a, 0xe4, 0x37, 0x45, 0x02, 0xdf, 0x95, 0x5e, - 0xea, 0x96, 0xcc, 0x9a, 0xbb, 0x48, 0x08, 0xeb, 0x75, 0x6f, 0x61, 0x3a, 0x21, 0xfd, 0x71, 0x02, - 0x4a, 0x81, 0x06, 0xa2, 0xc7, 0x60, 0x9c, 0x79, 0xe0, 0xc4, 0xc8, 0x44, 0x08, 0x95, 0x38, 0xef, - 0x13, 0x63, 0x40, 0xf3, 0x90, 0xc5, 0x3c, 0xba, 0xe6, 0x42, 0xb9, 0x3b, 0x22, 0x08, 0xe7, 0xfc, - 0x0e, 0x1b, 0x5a, 0x84, 0x9c, 0x23, 0xfa, 0x88, 0x95, 0x9b, 0x33, 0x72, 0x1c, 0xc4, 0x65, 0x94, - 0x16, 0x20, 0xef, 0x69, 0x1e, 0xbb, 0x0b, 0xb8, 0xcb, 0x97, 0x5b, 0x2c, 0x80, 0xce, 0x76, 0x95, - 0x5d, 0xba, 0xd2, 0x42, 0x47, 0x60, 0x82, 0xbc, 0x6c, 0xf3, 0xcb, 0x52, 0x29, 0x39, 0xd3, 0x55, - 0x76, 0x2f, 0x28, 0x96, 0xf4, 0xb1, 0x04, 0x14, 0xfd, 0xed, 0x44, 0xf7, 0x01, 0x22, 0xb4, 0x4a, - 0x1b, 0x37, 0xf5, 0x7e, 0x97, 0xf9, 0x48, 0x81, 0x58, 0xea, 0x2a, 0xbb, 0xf3, 0x6d, 0x7c, 0xa9, - 0xdf, 0xa5, 0x55, 0x5b, 0x68, 0x15, 0xca, 0x82, 0x58, 0x24, 0xbb, 0xb8, 0x54, 0x8e, 0x0e, 0x7e, - 0xd7, 0x86, 0x13, 0xb0, 0xb5, 0xee, 0xa7, 0xc8, 0x5a, 0xb7, 0xc8, 0xf0, 0xc4, 0x1b, 0xe9, 0x61, - 0x28, 0x05, 0x7a, 0x8c, 0x24, 0x98, 0xec, 0xf5, 0xb7, 0x9a, 0x57, 0xf1, 0x1e, 0xbd, 0xfd, 0xce, - 0x54, 0x3d, 0x27, 0xe7, 0x7b, 0xfd, 0xad, 0xa7, 0xf1, 0x1e, 0xcd, 0x1d, 0x4a, 0x2a, 0x14, 0xfd, - 0x8b, 0x29, 0xe2, 0x38, 0x4c, 0xa3, 0xaf, 0xb7, 0xc4, 0x77, 0x0d, 0xe8, 0x03, 0x3a, 0x07, 0xe3, - 0xd7, 0x0c, 0xa6, 0xcd, 0xa3, 0x56, 0x4f, 0x57, 0x0c, 0x1b, 0x7b, 0x96, 0x64, 0x8c, 0x47, 0xb2, - 0x60, 0x9c, 0xea, 0x65, 0xe8, 0x46, 0xc5, 0x15, 0x00, 0xc5, 0xb6, 0x4d, 0x6d, 0xab, 0xef, 0xc2, - 0x57, 0xe6, 0x06, 0xd3, 0xfa, 0x73, 0x6b, 0x8a, 0x66, 0x36, 0x6e, 0xe7, 0x9a, 0x3d, 0xe3, 0xf2, - 0x78, 0xb4, 0xdb, 0x83, 0x24, 0xbd, 0x9e, 0x86, 0x0c, 0x5b, 0x6e, 0xa2, 0x27, 0xfc, 0xc9, 0x8f, - 0xfc, 0x99, 0x63, 0xc3, 0x9a, 0xcf, 0xa8, 0x78, 0xeb, 0x9d, 0x08, 0xea, 0x9e, 0x60, 0x46, 0xa1, - 0x91, 0x7f, 0x75, 0xbf, 0x36, 0x41, 0xa3, 0x8f, 0xe5, 0x45, 0x37, 0xbd, 0x30, 0x6c, 0x75, 0x2d, - 0x72, 0x19, 0xe9, 0x03, 0xe7, 0x32, 0x2e, 0xc2, 0xa4, 0x27, 0xdc, 0xd2, 0x5a, 0x7c, 0x9d, 0x72, - 0x6c, 0xd4, 0xa4, 0x5b, 0x5e, 0xe4, 0xed, 0xcf, 0x3b, 0xe1, 0xd8, 0x72, 0x0b, 0xcd, 0xfa, 0x17, - 0xd9, 0x34, 0x6a, 0x63, 0xe1, 0x82, 0x67, 0xdd, 0x4c, 0xaf, 0xe4, 0xdf, 0x06, 0x39, 0x7a, 0xb1, - 0x99, 0x92, 0xb0, 0xe8, 0x21, 0x4b, 0x0a, 0xe8, 0xcb, 0x93, 0x50, 0x72, 0x03, 0x1b, 0x46, 0x92, - 0x65, 0x28, 0x6e, 0x31, 0x25, 0x7c, 0x10, 0x66, 0xe8, 0x87, 0xf2, 0x82, 0xd4, 0x39, 0x4a, 0x8d, - 0xc8, 0xbb, 0x2b, 0x7e, 0x8e, 0xbb, 0xa1, 0xe8, 0x9a, 0x50, 0x4a, 0x0b, 0x2c, 0xf5, 0xe1, 0x94, - 0x52, 0xb2, 0xa3, 0x90, 0x75, 0xc2, 0xce, 0x3c, 0xfb, 0x02, 0x9f, 0xc2, 0xa2, 0x4d, 0x27, 0x90, - 0x35, 0xb1, 0xd5, 0xef, 0xd8, 0x1c, 0xa4, 0x40, 0x69, 0x68, 0x20, 0x2b, 0xb3, 0x72, 0x4a, 0x7b, - 0x02, 0x26, 0x85, 0x55, 0x61, 0x74, 0x93, 0x94, 0xae, 0x20, 0x0a, 0x29, 0xd1, 0x29, 0x28, 0xf7, - 0x4c, 0xa3, 0x67, 0x58, 0xd8, 0x6c, 0x2a, 0xad, 0x96, 0x89, 0x2d, 0xab, 0x52, 0x64, 0x78, 0xa2, - 0x7c, 0x9e, 0x15, 0x4b, 0xef, 0x81, 0x09, 0x11, 0x4f, 0xcf, 0xc0, 0x78, 0xc3, 0xb1, 0x90, 0x69, - 0x99, 0x3d, 0x10, 0xff, 0x3a, 0xdf, 0xeb, 0xf1, 0xec, 0x1a, 0xf9, 0x29, 0x75, 0x60, 0x82, 0x0f, - 0x58, 0x68, 0x4e, 0x65, 0x15, 0x0a, 0x3d, 0xc5, 0x24, 0xdd, 0xf0, 0x66, 0x56, 0x86, 0xad, 0x08, - 0xd7, 0x14, 0xd3, 0x5e, 0xc7, 0xb6, 0x2f, 0xc1, 0x92, 0xa7, 0xfc, 0xac, 0x48, 0x3a, 0x0b, 0x93, - 0x3e, 0x1a, 0xf7, 0x7b, 0x85, 0x7c, 0xa2, 0xd3, 0x07, 0xa7, 0x25, 0x49, 0xb7, 0x25, 0xd2, 0x39, - 0xc8, 0x39, 0x63, 0x45, 0x16, 0x1a, 0x42, 0x14, 0xfc, 0x03, 0x88, 0xfc, 0x91, 0x26, 0x91, 0x8c, - 0xeb, 0xfc, 0x53, 0x4e, 0x29, 0x99, 0x3d, 0x48, 0xd8, 0x63, 0x98, 0x98, 0x37, 0x43, 0x8f, 0xc3, - 0x04, 0x37, 0x4c, 0x7c, 0x3e, 0x0e, 0x4b, 0x17, 0xad, 0x51, 0x4b, 0x25, 0xd2, 0x45, 0xcc, 0x6e, - 0xb9, 0xd5, 0x24, 0xbd, 0xd5, 0x7c, 0x08, 0xb2, 0xc2, 0xf8, 0xf8, 0xbd, 0x04, 0xab, 0xe1, 0x78, - 0x94, 0x97, 0xe0, 0x95, 0xb8, 0x8c, 0x44, 0x9b, 0x2c, 0xad, 0xad, 0xe3, 0x56, 0xd3, 0x9d, 0x82, - 0xfc, 0xc2, 0x6c, 0x89, 0xbd, 0x58, 0x11, 0xf3, 0x4b, 0x7a, 0x10, 0x32, 0xac, 0xad, 0xa1, 0x26, - 0x2e, 0xcc, 0xb5, 0x7e, 0x37, 0x01, 0x59, 0xe1, 0x3e, 0x42, 0x99, 0x7c, 0x9d, 0x48, 0xde, 0x6c, - 0x27, 0x6e, 0xbd, 0x49, 0xba, 0x1f, 0x10, 0xd5, 0x94, 0xe6, 0x35, 0xc3, 0xd6, 0xf4, 0x76, 0x93, - 0x8d, 0x05, 0xbf, 0x37, 0x48, 0xdf, 0x5c, 0xa1, 0x2f, 0xd6, 0x48, 0xf9, 0xbd, 0x27, 0x20, 0xef, - 0xc9, 0x72, 0xa1, 0x09, 0x48, 0x5d, 0xc2, 0xd7, 0xcb, 0x63, 0x28, 0x0f, 0x13, 0x32, 0xa6, 0x39, - 0x82, 0x72, 0xe2, 0xcc, 0xeb, 0x13, 0x50, 0x9a, 0x6f, 0x2c, 0x2c, 0xcf, 0xf7, 0x7a, 0x1d, 0x8d, - 0xdf, 0xa7, 0xbb, 0x0c, 0x69, 0xba, 0x4e, 0x8e, 0xb1, 0xbf, 0x53, 0x8d, 0x93, 0x70, 0x42, 0x32, - 0x8c, 0xd3, 0xe5, 0x34, 0x8a, 0xb3, 0xed, 0x53, 0x8d, 0x95, 0x87, 0x22, 0x8d, 0xa4, 0x0a, 0x17, - 0x63, 0x37, 0xa8, 0x1a, 0x27, 0x39, 0x85, 0x7e, 0x0a, 0x72, 0xee, 0x3a, 0x39, 0xee, 0x1e, 0x51, - 0x35, 0x76, 0xda, 0x8a, 0xe0, 0xbb, 0x2b, 0x83, 0xb8, 0x5b, 0x13, 0xd5, 0xd8, 0xf9, 0x1a, 0xf4, - 0x1c, 0x4c, 0x88, 0x35, 0x58, 0xbc, 0x5d, 0x9c, 0x6a, 0xcc, 0x94, 0x12, 0x19, 0x3e, 0xb6, 0x74, - 0x8e, 0xb3, 0x55, 0x55, 0x8d, 0x95, 0x37, 0x43, 0x9b, 0x90, 0xe1, 0xc1, 0x6f, 0xac, 0x9d, 0x9e, - 0x6a, 0xbc, 0x44, 0x11, 0x11, 0xb2, 0x9b, 0x9c, 0x88, 0xbb, 0x3d, 0x57, 0x8d, 0x9d, 0x30, 0x44, - 0x0a, 0x80, 0x67, 0x3d, 0x1d, 0x7b, 0xdf, 0xad, 0x1a, 0x3f, 0x11, 0x88, 0x3e, 0x08, 0x59, 0x67, - 0xd5, 0x14, 0x73, 0x27, 0xad, 0x1a, 0x37, 0x17, 0xd7, 0xd8, 0x8c, 0x7d, 0x4a, 0xe2, 0xbe, 0xc8, - 0x53, 0x12, 0xee, 0x26, 0xb7, 0xb3, 0x0d, 0xfe, 0x97, 0x09, 0x38, 0x1a, 0xdc, 0x4e, 0x56, 0xf4, - 0xbd, 0x21, 0x07, 0x02, 0x86, 0x9c, 0x16, 0x79, 0x1c, 0x52, 0xf3, 0xfa, 0x1e, 0x09, 0x36, 0xe8, - 0x37, 0x00, 0xfb, 0x66, 0x47, 0xa4, 0xe9, 0xc8, 0xf3, 0xa6, 0xd9, 0x09, 0x3f, 0x35, 0x52, 0x4f, - 0x7f, 0xff, 0xf3, 0xb5, 0xb1, 0xc6, 0xd5, 0x90, 0x5e, 0x45, 0x9c, 0x15, 0xc8, 0xce, 0xeb, 0x7b, - 0xe2, 0x98, 0xc0, 0x38, 0xed, 0xd0, 0x41, 0xb7, 0xff, 0x5f, 0x2b, 0x10, 0x64, 0xcf, 0x77, 0x84, - 0x79, 0x8f, 0x33, 0xec, 0x69, 0xc8, 0x0e, 0x7f, 0xf4, 0x89, 0x81, 0xea, 0x70, 0x69, 0x4a, 0x17, - 0x20, 0xbd, 0x60, 0x68, 0x34, 0xe4, 0x69, 0x61, 0xdd, 0xe8, 0x8a, 0x9c, 0x27, 0x7d, 0x40, 0x27, - 0x20, 0xa3, 0x74, 0x8d, 0xbe, 0x6e, 0x8b, 0xa8, 0x99, 0xb8, 0x92, 0xff, 0xba, 0x5f, 0x4b, 0x2d, - 0xeb, 0xb6, 0xcc, 0x5f, 0xd5, 0xd3, 0x7f, 0xf1, 0x4a, 0x2d, 0x21, 0x3d, 0x05, 0x13, 0x8b, 0x58, - 0xbd, 0x19, 0xac, 0x45, 0xac, 0x06, 0xb0, 0x4e, 0x41, 0x76, 0x59, 0xb7, 0xd9, 0x37, 0xc3, 0xee, - 0x80, 0x94, 0xa6, 0xb3, 0x6d, 0x91, 0x40, 0xfd, 0xa4, 0x9c, 0x90, 0x2e, 0x62, 0xd5, 0x21, 0x6d, - 0x61, 0x35, 0x48, 0x4a, 0xe0, 0x49, 0xb9, 0xd4, 0x80, 0xc2, 0x15, 0xa5, 0xc3, 0xc3, 0x3d, 0x6c, - 0xa1, 0xfb, 0x21, 0xa7, 0x88, 0x07, 0xba, 0xb2, 0x2a, 0x34, 0x8a, 0x3f, 0xd8, 0xaf, 0x81, 0x4b, - 0x24, 0xbb, 0x04, 0xf5, 0xf4, 0xcb, 0xff, 0xed, 0x78, 0x42, 0x32, 0x60, 0xe2, 0x82, 0x62, 0x51, - 0x4b, 0xff, 0x90, 0x2f, 0x91, 0x42, 0x23, 0xc5, 0xc6, 0xa1, 0x1b, 0xfb, 0xb5, 0xa9, 0x3d, 0xa5, - 0xdb, 0xa9, 0x4b, 0xee, 0x3b, 0xc9, 0x9b, 0x5f, 0x99, 0xf3, 0xe4, 0x57, 0x68, 0x24, 0xd9, 0x98, - 0xbe, 0xb1, 0x5f, 0x2b, 0xb9, 0x3c, 0xe4, 0x8d, 0xe4, 0x24, 0x5d, 0xa4, 0x1e, 0x64, 0x58, 0xd0, - 0x1b, 0xba, 0x43, 0xc8, 0x53, 0x3e, 0x49, 0x37, 0xe5, 0x53, 0x3f, 0x50, 0x9a, 0x81, 0xc7, 0x65, - 0x8c, 0xa3, 0x9e, 0xfe, 0xc8, 0x2b, 0xb5, 0x31, 0xc9, 0x04, 0xb4, 0xae, 0x75, 0xfb, 0x1d, 0x76, - 0xf1, 0x5b, 0x6c, 0x35, 0x3d, 0xc4, 0xda, 0x4d, 0xd3, 0x49, 0x2c, 0x20, 0x2b, 0xcd, 0x71, 0x25, - 0xe5, 0x02, 0x61, 0x71, 0xc6, 0xb7, 0xf6, 0x6b, 0x09, 0xda, 0x7a, 0x2a, 0xa3, 0x7b, 0x20, 0xc3, - 0x42, 0x79, 0x1e, 0xff, 0x14, 0x05, 0x0f, 0xeb, 0x93, 0xcc, 0xdf, 0x4a, 0x4f, 0xc0, 0xc4, 0xaa, - 0xd5, 0x5e, 0x24, 0x5d, 0x3a, 0x0a, 0xd9, 0xae, 0xd5, 0x6e, 0x7a, 0xa2, 0xa9, 0x89, 0xae, 0xd5, - 0xde, 0x18, 0x12, 0x85, 0xf1, 0x61, 0x79, 0x2f, 0x64, 0x36, 0x76, 0x29, 0xfb, 0x09, 0x47, 0x4a, - 0x29, 0x6f, 0x1b, 0x39, 0xba, 0x8f, 0xe9, 0xc3, 0x29, 0x80, 0x8d, 0x5d, 0xa7, 0x87, 0x43, 0xb6, - 0xe0, 0x90, 0x04, 0x19, 0x7b, 0xd7, 0x89, 0xa8, 0x73, 0x0d, 0x78, 0x75, 0xbf, 0x96, 0xd9, 0xd8, - 0x25, 0xcb, 0x0b, 0x99, 0xbf, 0xf1, 0xa7, 0xb2, 0x52, 0x81, 0x54, 0x96, 0x93, 0xc0, 0x4b, 0x87, - 0x24, 0xf0, 0xc6, 0x3d, 0x3b, 0x00, 0x47, 0x60, 0xc2, 0x54, 0xae, 0x37, 0xc9, 0x88, 0xb2, 0xaf, - 0x95, 0x66, 0x4c, 0xe5, 0xfa, 0x8a, 0xd1, 0x46, 0x0b, 0x90, 0xee, 0x18, 0x6d, 0x91, 0x77, 0x3b, - 0x2c, 0x3a, 0x45, 0x22, 0x2e, 0x7e, 0x9a, 0x78, 0xc5, 0x68, 0x37, 0x8e, 0x10, 0xf9, 0x7f, 0xe9, - 0x4f, 0x6b, 0x25, 0x7f, 0xb9, 0x25, 0x53, 0x66, 0x27, 0x19, 0x98, 0x1d, 0x9a, 0x0c, 0xcc, 0x8d, - 0x4a, 0x06, 0x82, 0x3f, 0x19, 0x78, 0x17, 0xdd, 0xd3, 0x64, 0x7b, 0x38, 0x33, 0x03, 0xc1, 0xe7, - 0xbc, 0xbe, 0x47, 0x77, 0x51, 0x6f, 0x87, 0x9c, 0x73, 0x50, 0x88, 0x7f, 0x1e, 0xda, 0x2d, 0xe0, - 0xfa, 0xf6, 0x91, 0x04, 0x14, 0xfd, 0x2d, 0xa6, 0xf9, 0x1c, 0xab, 0xcd, 0x3f, 0xac, 0xca, 0xd2, - 0x9e, 0x44, 0x29, 0x96, 0x45, 0xa6, 0x3c, 0xa0, 0xf3, 0xf3, 0x01, 0x9d, 0x9f, 0x16, 0x02, 0x62, - 0x77, 0x77, 0x98, 0xaa, 0xcf, 0x70, 0xe9, 0x14, 0x3c, 0x85, 0x96, 0xab, 0xfa, 0x54, 0x23, 0x7e, - 0x1a, 0xf2, 0x9e, 0xb7, 0xa1, 0x41, 0xfd, 0xa3, 0x21, 0xc9, 0x8e, 0x29, 0x67, 0x40, 0xc4, 0x1b, - 0xb1, 0x85, 0xe0, 0x92, 0x3a, 0x8a, 0x9a, 0x73, 0x88, 0xe2, 0x1e, 0xaf, 0x68, 0x2c, 0xfe, 0xc9, - 0x77, 0x8e, 0x8d, 0xbd, 0xfc, 0xea, 0xb1, 0xb1, 0xa1, 0xe7, 0x33, 0xa5, 0xe8, 0x2f, 0xd1, 0x3b, - 0x5e, 0xe6, 0xa3, 0xef, 0x87, 0xdb, 0x39, 0x8d, 0x65, 0x2b, 0x57, 0x35, 0xbd, 0x2d, 0xfe, 0x72, - 0x77, 0x53, 0xe4, 0xbd, 0xe1, 0xa5, 0x37, 0xef, 0x76, 0xde, 0xec, 0xa1, 0xb1, 0x6a, 0x98, 0x37, - 0x94, 0xf6, 0xd3, 0x80, 0x56, 0xad, 0xf6, 0x82, 0x89, 0xd9, 0xc7, 0x46, 0xf8, 0x3a, 0xc9, 0x7f, - 0xd9, 0x87, 0xdb, 0xa8, 0xdb, 0xe6, 0xfc, 0x7d, 0x71, 0xbe, 0x2f, 0xed, 0xe6, 0x88, 0x7c, 0x57, - 0x84, 0x96, 0x00, 0x68, 0x7a, 0xc5, 0xb2, 0xdc, 0x64, 0x5e, 0x2d, 0x88, 0xb1, 0xe0, 0x50, 0xc8, - 0x8a, 0x8d, 0x2d, 0x31, 0xd6, 0x2e, 0x23, 0xfa, 0x10, 0x4c, 0x77, 0x35, 0xbd, 0x69, 0xe1, 0xce, - 0x76, 0xb3, 0x85, 0x3b, 0xf4, 0x53, 0x2c, 0x7c, 0xe3, 0x2e, 0xd7, 0x58, 0xe1, 0x8e, 0xe9, 0x9e, - 0xe8, 0x31, 0x9b, 0x5b, 0xd6, 0xed, 0x1b, 0xfb, 0xb5, 0x2a, 0xf3, 0x0e, 0x21, 0x90, 0x92, 0x3c, - 0xd5, 0xd5, 0xf4, 0x75, 0xdc, 0xd9, 0x5e, 0x74, 0xca, 0xd0, 0x4b, 0x30, 0xc5, 0x29, 0x0c, 0x37, - 0xe9, 0x41, 0x6c, 0x4f, 0xa1, 0xb1, 0x7a, 0x63, 0xbf, 0x56, 0x61, 0x68, 0x03, 0x24, 0xd2, 0x0f, - 0xf6, 0x6b, 0x0f, 0xc4, 0x68, 0xd3, 0xbc, 0xaa, 0x0a, 0xf7, 0x58, 0x76, 0x40, 0x78, 0x09, 0xa9, - 0xdb, 0x4d, 0xd0, 0x8b, 0xba, 0xc7, 0x83, 0x75, 0x0f, 0x90, 0xc4, 0xad, 0xdb, 0xe3, 0x9a, 0xdd, - 0x0c, 0xbe, 0xa8, 0xfb, 0x30, 0x64, 0x7a, 0xfd, 0x2d, 0xb1, 0x8b, 0x96, 0x93, 0xf9, 0x13, 0x9a, - 0xf5, 0x6e, 0xa4, 0xe5, 0xcf, 0x14, 0xc4, 0x78, 0x92, 0x58, 0xc5, 0x49, 0x73, 0xb2, 0xd8, 0x8f, - 0x46, 0x1f, 0x5f, 0x4b, 0x41, 0x79, 0xd5, 0x6a, 0x2f, 0xb5, 0x34, 0xfb, 0x16, 0xab, 0x57, 0x2f, - 0x4c, 0x3a, 0xd4, 0x9b, 0x35, 0x16, 0x6e, 0xec, 0xd7, 0x8a, 0x4c, 0x3a, 0xb7, 0x52, 0x26, 0x5d, - 0x28, 0xb9, 0x7a, 0xd9, 0x34, 0x15, 0x9b, 0xbb, 0xa7, 0xc6, 0x62, 0x4c, 0x0d, 0x5c, 0xc4, 0xea, - 0x8d, 0xfd, 0xda, 0x61, 0xd6, 0xb2, 0x00, 0x94, 0x24, 0x17, 0x55, 0xdf, 0x5c, 0x40, 0xbb, 0xe1, - 0x8a, 0x4f, 0xf7, 0x9f, 0x1a, 0x17, 0xdf, 0x42, 0xa5, 0xe7, 0x43, 0xf7, 0xd5, 0x24, 0xe4, 0x89, - 0xab, 0x67, 0xe5, 0x38, 0x7c, 0x2a, 0x24, 0x7e, 0x84, 0x53, 0x21, 0xf9, 0xf6, 0x4c, 0x85, 0x7b, - 0x9d, 0x58, 0x3b, 0x35, 0x54, 0xe7, 0xfd, 0x21, 0xf7, 0x7f, 0x4c, 0x51, 0xab, 0x4a, 0x57, 0x90, - 0x32, 0x6e, 0xbd, 0x13, 0x04, 0xf8, 0xb3, 0x09, 0x38, 0xe4, 0x8a, 0xc7, 0x32, 0xd5, 0x80, 0x14, - 0x9f, 0xb9, 0xb1, 0x5f, 0xbb, 0x3d, 0x28, 0x45, 0x0f, 0xd9, 0x4d, 0x48, 0x72, 0xda, 0x01, 0x5a, - 0x37, 0xd5, 0xf0, 0x76, 0xb4, 0x2c, 0xdb, 0x69, 0x47, 0x6a, 0x78, 0x3b, 0x3c, 0x64, 0x6f, 0xaa, - 0x1d, 0x8b, 0x96, 0x3d, 0x38, 0xa8, 0xe9, 0x98, 0x83, 0xfa, 0xf5, 0x24, 0x4c, 0xae, 0x5a, 0xed, - 0x4d, 0xbd, 0xf5, 0xee, 0x84, 0x38, 0xe8, 0x84, 0xf8, 0x58, 0x02, 0x8a, 0x17, 0x35, 0xcb, 0x36, - 0x4c, 0x4d, 0x55, 0x3a, 0x74, 0x35, 0xe3, 0x9e, 0x91, 0x4c, 0x1c, 0xfc, 0x8c, 0xe4, 0xa3, 0x90, - 0xb9, 0xa6, 0x74, 0xd8, 0xbf, 0x35, 0x4a, 0xd1, 0x3d, 0xc2, 0x80, 0xef, 0x08, 0xe6, 0x80, 0x39, - 0x39, 0x6f, 0xce, 0x6f, 0x27, 0xa1, 0x14, 0x08, 0x3c, 0x50, 0x03, 0xd2, 0xd4, 0xa2, 0xb3, 0x05, - 0xef, 0xdc, 0x01, 0xe2, 0x0a, 0xb2, 0x26, 0xa6, 0xbc, 0xe8, 0x27, 0x20, 0xdb, 0x55, 0x76, 0x99, - 0x67, 0x60, 0xeb, 0x9b, 0xf9, 0x83, 0xe1, 0xb8, 0xab, 0x57, 0x81, 0x23, 0xc9, 0x13, 0x5d, 0x65, - 0x97, 0xfa, 0x83, 0x1e, 0x94, 0x48, 0xa9, 0xba, 0xa3, 0xe8, 0x6d, 0xec, 0x75, 0x3f, 0x17, 0x0f, - 0x5c, 0xc9, 0x61, 0xb7, 0x12, 0x0f, 0x9c, 0x24, 0x4f, 0x76, 0x95, 0xdd, 0x05, 0x5a, 0x40, 0x6a, - 0xac, 0x67, 0x3f, 0xf5, 0x4a, 0x6d, 0x8c, 0x4a, 0xec, 0xdf, 0x27, 0x00, 0x5c, 0x89, 0xa1, 0x0d, - 0x28, 0x07, 0xdc, 0x97, 0x38, 0x63, 0x14, 0x19, 0xe0, 0xb9, 0x0b, 0xdb, 0x92, 0x1a, 0x18, 0x82, - 0x0f, 0x42, 0x9e, 0x9d, 0x12, 0x68, 0xd2, 0x64, 0x7c, 0x32, 0x32, 0x19, 0x7f, 0x8c, 0x60, 0xdd, - 0xd8, 0xaf, 0x21, 0xd6, 0x1d, 0x0f, 0xb3, 0x44, 0x53, 0xf4, 0xc0, 0x4a, 0x08, 0x83, 0xbf, 0x2f, - 0x79, 0x4f, 0x6c, 0x41, 0xcf, 0x9e, 0x19, 0xba, 0x76, 0x15, 0x9b, 0xce, 0x1a, 0x99, 0x3d, 0xa2, - 0x2a, 0x64, 0xd9, 0x57, 0x05, 0xed, 0x3d, 0xf1, 0x6f, 0x2d, 0xc4, 0x33, 0xe1, 0xba, 0x8e, 0xb7, - 0x2c, 0x4d, 0x8c, 0x82, 0x2c, 0x1e, 0xd1, 0x79, 0x28, 0x5b, 0x58, 0xed, 0x9b, 0x9a, 0xbd, 0xd7, - 0x54, 0x0d, 0xdd, 0x56, 0x54, 0x9b, 0x3b, 0xed, 0xdb, 0x6e, 0xec, 0xd7, 0x8e, 0xb0, 0xb6, 0x06, - 0x29, 0x24, 0xb9, 0x24, 0x8a, 0x16, 0x58, 0x09, 0xa9, 0xa1, 0x85, 0x6d, 0x45, 0xeb, 0x58, 0x7c, - 0x61, 0x2b, 0x1e, 0x3d, 0x7d, 0xf9, 0xad, 0x09, 0xef, 0x66, 0xd4, 0x75, 0x28, 0x1b, 0x3d, 0x6c, - 0x86, 0xd8, 0xa3, 0x15, 0xb7, 0xe6, 0x20, 0xc5, 0x4d, 0x98, 0x84, 0x92, 0xc0, 0x10, 0x16, 0xe1, - 0xbc, 0xef, 0xcc, 0x19, 0x8b, 0x1b, 0x93, 0xc1, 0x2e, 0x07, 0x29, 0x24, 0xef, 0x41, 0x33, 0x16, - 0x5d, 0x1e, 0x86, 0xcc, 0x0b, 0x8a, 0xd6, 0x11, 0x9f, 0x5a, 0x95, 0xf9, 0x13, 0x5a, 0x86, 0x8c, - 0x65, 0x2b, 0x76, 0x9f, 0x85, 0xde, 0xe3, 0x8d, 0xf7, 0xc4, 0x6c, 0x73, 0xc3, 0xd0, 0x5b, 0xeb, - 0x94, 0x51, 0xe6, 0x00, 0xe8, 0x3c, 0x64, 0x6c, 0xe3, 0x2a, 0xd6, 0xb9, 0x50, 0x0f, 0x34, 0xd3, - 0x69, 0xa2, 0x8e, 0x71, 0x23, 0x1b, 0x5c, 0xa3, 0xdc, 0xb4, 0x76, 0x14, 0x13, 0x5b, 0x2c, 0x54, - 0x6e, 0x2c, 0x1f, 0x78, 0x3a, 0x1e, 0x09, 0x7a, 0x0a, 0x86, 0x27, 0xc9, 0x25, 0xa7, 0x68, 0x9d, - 0x96, 0x04, 0x23, 0xe7, 0x89, 0x9b, 0x8a, 0x9c, 0xcf, 0x43, 0xb9, 0xaf, 0x6f, 0x19, 0x3a, 0xfd, - 0x2c, 0x22, 0x4f, 0xd3, 0x64, 0x8f, 0x27, 0x66, 0x53, 0xde, 0xd1, 0x0a, 0x52, 0x48, 0x72, 0xc9, - 0x29, 0xe2, 0xa7, 0x1f, 0x5b, 0x50, 0x74, 0xa9, 0xe8, 0x94, 0xcd, 0x45, 0x4e, 0xd9, 0x3b, 0xf9, - 0x94, 0x3d, 0x14, 0xac, 0xc5, 0x9d, 0xb5, 0x93, 0x4e, 0x21, 0x61, 0x43, 0xef, 0xf7, 0x2d, 0x23, - 0x81, 0xd7, 0x30, 0xd4, 0xca, 0xc4, 0x5f, 0x41, 0xe6, 0xdf, 0x96, 0x15, 0x64, 0xbd, 0xf0, 0x91, - 0x57, 0x6a, 0x63, 0xce, 0x84, 0xfd, 0x85, 0x24, 0x64, 0x16, 0xaf, 0xd0, 0x6b, 0x94, 0x3f, 0xa6, - 0xe1, 0x83, 0xc7, 0x7a, 0xbd, 0x0f, 0x26, 0x98, 0x2c, 0x2c, 0x74, 0x06, 0xc6, 0x7b, 0xe4, 0x07, - 0xcf, 0x35, 0x1e, 0x1e, 0x50, 0x69, 0x4a, 0x27, 0x56, 0x98, 0x94, 0x54, 0xfa, 0x42, 0x0a, 0x60, - 0xf1, 0xca, 0x95, 0x0d, 0x53, 0xeb, 0x75, 0xb0, 0xfd, 0x6e, 0x78, 0xfd, 0xce, 0x09, 0xaf, 0x3d, - 0x63, 0xfc, 0x34, 0xe4, 0xdd, 0x31, 0xb2, 0xd0, 0xe3, 0x90, 0xb5, 0xf9, 0x6f, 0x3e, 0xd4, 0xd5, - 0xc1, 0xa1, 0x16, 0xe4, 0x7c, 0xb8, 0x1d, 0x0e, 0xe9, 0xbf, 0x24, 0x01, 0xa2, 0x92, 0x33, 0x3f, - 0x06, 0x01, 0xf8, 0x79, 0xc8, 0x70, 0x8f, 0x93, 0xba, 0xa9, 0x68, 0x95, 0x73, 0x7b, 0x46, 0xe9, - 0x3b, 0x49, 0x98, 0xde, 0x14, 0x66, 0xf7, 0x5d, 0x09, 0xa3, 0x8b, 0x30, 0x81, 0x75, 0xdb, 0xd4, - 0xb0, 0x48, 0x83, 0xcf, 0x06, 0xb5, 0x34, 0x44, 0x5a, 0xf4, 0xdf, 0x25, 0x88, 0xd3, 0x72, 0x9c, - 0xdd, 0x23, 0xe3, 0x8f, 0xa7, 0xa0, 0x32, 0x8c, 0x0b, 0x2d, 0x40, 0x49, 0x35, 0x31, 0x2d, 0x68, - 0x7a, 0x77, 0x4e, 0x1a, 0x55, 0x4f, 0xc6, 0xc8, 0x4f, 0x20, 0xc9, 0x45, 0x51, 0xc2, 0x1d, 0x72, - 0x9b, 0x26, 0xa8, 0xc8, 0x54, 0x21, 0x54, 0x31, 0x83, 0x68, 0x89, 0x7b, 0x64, 0x37, 0x2d, 0xe5, - 0x05, 0x60, 0x2e, 0xb9, 0xe8, 0x96, 0x52, 0x9f, 0xfc, 0x22, 0x94, 0x34, 0x5d, 0xb3, 0x35, 0xa5, - 0xd3, 0xdc, 0x52, 0x3a, 0x8a, 0xae, 0xde, 0xcc, 0x52, 0x84, 0x79, 0x53, 0x5e, 0x6d, 0x00, 0x4e, - 0x92, 0x8b, 0xbc, 0xa4, 0xc1, 0x0a, 0xc8, 0x88, 0x88, 0xaa, 0xd2, 0x37, 0x15, 0xb8, 0x09, 0x76, - 0xcf, 0x88, 0xfc, 0x62, 0x0a, 0xa6, 0x9c, 0xfc, 0xcc, 0xbb, 0x43, 0x11, 0x77, 0x28, 0x56, 0x01, - 0x98, 0x01, 0x21, 0x9e, 0xe3, 0x26, 0x46, 0x83, 0x98, 0xa0, 0x1c, 0x43, 0x58, 0xb4, 0x6c, 0xcf, - 0x78, 0xfc, 0x79, 0x0a, 0x0a, 0xde, 0xf1, 0x78, 0xd7, 0xa5, 0xbf, 0x83, 0x32, 0x66, 0xf3, 0xae, - 0x49, 0x4c, 0xf3, 0xef, 0xa2, 0x04, 0x4c, 0xe2, 0xc0, 0x54, 0x1a, 0x6e, 0x0b, 0xff, 0x2a, 0x09, - 0x19, 0x7e, 0x2e, 0x5b, 0x1d, 0x58, 0x45, 0x24, 0xa2, 0xce, 0x7d, 0x8f, 0x5e, 0x44, 0x7c, 0x2a, - 0x74, 0x11, 0x51, 0xec, 0x2a, 0xbb, 0x4d, 0xdf, 0x2d, 0xa6, 0xc4, 0xec, 0x64, 0xe3, 0xa8, 0x8b, - 0xe2, 0x7f, 0xcf, 0x72, 0x21, 0xee, 0x99, 0x5c, 0xf4, 0x28, 0xe4, 0x09, 0x85, 0xeb, 0x15, 0x08, - 0xfb, 0x61, 0x37, 0xf9, 0xe0, 0x79, 0x29, 0xc9, 0xd0, 0x55, 0x76, 0x97, 0xd8, 0x03, 0x5a, 0x01, - 0xb4, 0xe3, 0xa4, 0xbe, 0x9a, 0xae, 0x08, 0x09, 0xff, 0x1d, 0x37, 0xf6, 0x6b, 0x47, 0x19, 0xff, - 0x20, 0x8d, 0x24, 0x4f, 0xb9, 0x85, 0x02, 0xed, 0x21, 0x00, 0xd2, 0xaf, 0x26, 0x3b, 0x13, 0xc2, - 0x96, 0xb0, 0x9e, 0x83, 0x12, 0xee, 0x3b, 0x49, 0xce, 0x91, 0x87, 0x45, 0xf2, 0xdb, 0x23, 0xf8, - 0x5f, 0x4a, 0x00, 0x72, 0x7d, 0x8f, 0xb3, 0x5f, 0xff, 0x7e, 0x7a, 0x2f, 0x51, 0xac, 0x8c, 0x12, - 0xe1, 0x8b, 0x2c, 0x97, 0x4f, 0x2c, 0xb2, 0x3c, 0x53, 0xf5, 0x7e, 0xd7, 0x3e, 0x27, 0x87, 0x66, - 0x05, 0x43, 0x6c, 0xf0, 0x1f, 0x24, 0xe0, 0xe8, 0x80, 0xe2, 0x38, 0xed, 0xba, 0x02, 0xc8, 0xf4, - 0xbc, 0xe4, 0xff, 0xa1, 0x28, 0xc1, 0xff, 0xe1, 0x5f, 0x4c, 0xfd, 0x9b, 0x32, 0x07, 0x6c, 0xfc, - 0xad, 0xf3, 0x26, 0x3c, 0xa3, 0x98, 0x80, 0x19, 0x6f, 0xf5, 0x4e, 0x07, 0xce, 0x43, 0xc1, 0x5b, - 0x3b, 0x6f, 0xfa, 0xed, 0xa3, 0x9a, 0xce, 0x5b, 0xed, 0xe3, 0x43, 0xcb, 0xee, 0xec, 0x13, 0xff, - 0x73, 0x32, 0xaa, 0xf7, 0xce, 0x41, 0xb6, 0xc0, 0x2c, 0x64, 0x2d, 0xfe, 0x7f, 0x09, 0x48, 0xaf, - 0x19, 0x46, 0x07, 0x19, 0x30, 0xa5, 0x1b, 0x76, 0x93, 0x28, 0x0b, 0x6e, 0x35, 0x79, 0x6e, 0x84, - 0x65, 0x41, 0x17, 0x0e, 0x26, 0x94, 0xef, 0xed, 0xd7, 0x06, 0xa1, 0xe4, 0x92, 0x6e, 0xd8, 0x0d, - 0x5a, 0xb2, 0xc1, 0x32, 0x27, 0x1f, 0x82, 0x49, 0x7f, 0x65, 0x2c, 0x53, 0xf4, 0xec, 0x81, 0x2b, - 0xf3, 0xc3, 0xdc, 0xd8, 0xaf, 0xcd, 0xb8, 0x93, 0xc0, 0x29, 0x96, 0xe4, 0xc2, 0x96, 0xa7, 0xf6, - 0x7a, 0x96, 0xf4, 0xfe, 0xfb, 0xaf, 0xd4, 0x12, 0x8d, 0xf3, 0x43, 0x4f, 0x00, 0xdc, 0x3f, 0xb2, - 0x09, 0xbb, 0xce, 0x56, 0xbf, 0xff, 0x2c, 0xc0, 0x27, 0x4f, 0x43, 0x35, 0x70, 0x16, 0x80, 0xde, - 0x43, 0x1e, 0x72, 0x12, 0x60, 0xf4, 0x3f, 0xfa, 0x1f, 0x72, 0x50, 0x60, 0xe4, 0x61, 0x03, 0xe9, - 0x2a, 0x1c, 0xa6, 0x47, 0x39, 0x5d, 0xb3, 0x25, 0xbe, 0x12, 0x73, 0xd8, 0x49, 0xa0, 0x25, 0xf8, - 0xff, 0x15, 0x67, 0xd9, 0xb0, 0xb3, 0x00, 0x6e, 0xcd, 0xce, 0x85, 0x1b, 0xde, 0x52, 0xd6, 0x7a, - 0xf6, 0x0f, 0xff, 0x29, 0x8c, 0xec, 0x21, 0x96, 0x7e, 0x2d, 0x01, 0x47, 0x06, 0x6a, 0xe3, 0x5a, - 0xff, 0xa4, 0xef, 0xc2, 0x68, 0x22, 0x5e, 0x8e, 0xde, 0xfb, 0xe5, 0x87, 0x7a, 0x48, 0xbb, 0xaa, - 0x61, 0xed, 0x62, 0x15, 0xfa, 0x1a, 0xf6, 0x22, 0x1c, 0xf2, 0xb7, 0x4b, 0x08, 0xe1, 0x39, 0x28, - 0xfa, 0x57, 0x0b, 0x3c, 0x94, 0x78, 0xcf, 0xc1, 0x3d, 0xe4, 0xa4, 0x6f, 0xc5, 0x20, 0x3d, 0x1b, - 0x14, 0xbc, 0x23, 0x89, 0xf7, 0x0d, 0x1e, 0xbe, 0x8f, 0x14, 0x84, 0xe7, 0x6e, 0xd6, 0x57, 0x13, - 0x70, 0xdc, 0x8f, 0xec, 0x1a, 0x61, 0xeb, 0x2d, 0xef, 0xd7, 0x9b, 0x51, 0x8f, 0xff, 0x94, 0x80, - 0x3b, 0x47, 0xb4, 0x9c, 0x8b, 0xc7, 0x84, 0x19, 0x8f, 0x75, 0x37, 0x79, 0xb1, 0x50, 0x19, 0x69, - 0xb8, 0x07, 0x72, 0x8c, 0xdb, 0x6d, 0xfc, 0x28, 0xd2, 0xf4, 0xe0, 0x3b, 0x4b, 0x9e, 0x1e, 0xb4, - 0xc8, 0x6f, 0x4e, 0xb7, 0xbe, 0x91, 0x80, 0x53, 0xfe, 0x5e, 0x85, 0xac, 0xe8, 0xde, 0xd9, 0x03, - 0xf3, 0x6f, 0x12, 0x70, 0x6f, 0x9c, 0x2e, 0xf0, 0x11, 0x7a, 0x1e, 0xa6, 0xdd, 0xf8, 0x2a, 0x38, - 0x40, 0x27, 0x62, 0xac, 0x8a, 0xb9, 0x52, 0x23, 0x07, 0xe5, 0xd6, 0x8c, 0xc4, 0x1f, 0x25, 0xf8, - 0x9c, 0xf3, 0x8e, 0xbb, 0x23, 0x76, 0xff, 0x92, 0xe0, 0x80, 0x62, 0xf7, 0x2c, 0x0b, 0x26, 0x7d, - 0xcb, 0x82, 0x90, 0x01, 0x4d, 0xde, 0x22, 0x0b, 0xa2, 0x73, 0x63, 0x1a, 0x12, 0x9b, 0xad, 0xc3, - 0x74, 0xc8, 0x1c, 0x71, 0x2e, 0x9c, 0x46, 0x4e, 0x11, 0x19, 0x0d, 0xce, 0x02, 0xe9, 0x3f, 0x27, - 0xa0, 0x46, 0x2b, 0x0c, 0x19, 0xb1, 0xbf, 0xc9, 0x72, 0xc4, 0xdc, 0x5e, 0x86, 0x76, 0x8b, 0x0b, - 0x74, 0x1e, 0x32, 0x4c, 0x19, 0xb9, 0x0c, 0x0f, 0xa0, 0xc5, 0x9c, 0xd1, 0xb5, 0xcb, 0x8b, 0xa2, - 0x5f, 0xe1, 0xd3, 0xff, 0x2d, 0x92, 0xdf, 0x9b, 0x98, 0xfe, 0xff, 0x4a, 0xd8, 0xe5, 0xf0, 0x96, - 0x73, 0x11, 0x7d, 0xf0, 0x4d, 0xdb, 0x65, 0xfe, 0xc1, 0xa0, 0xb7, 0xcc, 0x00, 0x3b, 0xcd, 0x8f, - 0x30, 0xc0, 0xef, 0xbc, 0x11, 0x70, 0x0c, 0x70, 0x44, 0x17, 0xde, 0xe1, 0x06, 0xf8, 0x46, 0x12, - 0x8e, 0xd2, 0x6e, 0x78, 0x17, 0x1e, 0x6f, 0x83, 0xe4, 0x9b, 0x80, 0x2c, 0x53, 0x6d, 0xde, 0x2a, - 0xfb, 0x51, 0xb6, 0x4c, 0xf5, 0x8a, 0xcf, 0xb7, 0x36, 0x01, 0xb5, 0x2c, 0x3b, 0x58, 0x41, 0xea, - 0xa6, 0x2b, 0x68, 0x59, 0xf6, 0x95, 0x11, 0xce, 0x3b, 0x7d, 0x10, 0xdd, 0xf9, 0xfd, 0x04, 0x54, - 0xc3, 0x84, 0xce, 0x75, 0x45, 0x81, 0xc3, 0xbe, 0xe5, 0x72, 0x50, 0x5d, 0xee, 0x1a, 0xb5, 0x68, - 0x0c, 0x4c, 0xdd, 0x43, 0x26, 0xbe, 0xd5, 0x93, 0xf7, 0x2b, 0xc2, 0xe9, 0x38, 0x9a, 0x3f, 0xb8, - 0x52, 0x79, 0x47, 0x4e, 0xd9, 0xdf, 0x18, 0x30, 0xf7, 0xef, 0xb4, 0x45, 0xcf, 0x1f, 0x27, 0xe0, - 0xd8, 0x90, 0x16, 0xfe, 0x4d, 0x76, 0xe7, 0x3f, 0x3d, 0x54, 0x61, 0x6e, 0xd5, 0x0a, 0xeb, 0x21, - 0x3e, 0xa1, 0xfc, 0xc7, 0xd3, 0x3c, 0xeb, 0xe6, 0xd0, 0x4f, 0xc9, 0x3d, 0x03, 0xb7, 0x85, 0x72, - 0xf1, 0x36, 0x9d, 0x81, 0xf4, 0x8e, 0x66, 0xd9, 0xce, 0xf7, 0x15, 0x02, 0xcd, 0x09, 0x70, 0x51, - 0x5a, 0x09, 0x41, 0x99, 0x42, 0xae, 0x19, 0x46, 0x87, 0x57, 0x2f, 0x2d, 0xc0, 0x94, 0xa7, 0x8c, - 0x83, 0xcf, 0x41, 0xba, 0x67, 0x18, 0x1d, 0x0e, 0x3e, 0x13, 0x04, 0x27, 0xb4, 0xbc, 0x9b, 0x94, - 0x4e, 0x9a, 0x01, 0xc4, 0x40, 0xd8, 0x97, 0x3f, 0x38, 0xf4, 0xd3, 0x30, 0xed, 0x2b, 0x75, 0xae, - 0x26, 0x65, 0x7c, 0xdf, 0x8c, 0x1a, 0xd8, 0x88, 0x67, 0xf4, 0xce, 0x25, 0x74, 0xfa, 0x74, 0xe6, - 0x0f, 0x0b, 0xe2, 0x3e, 0x6a, 0x13, 0xc0, 0x93, 0x34, 0xbd, 0x27, 0xc8, 0x1d, 0x9e, 0x9e, 0xa8, - 0x9e, 0x8c, 0xa4, 0xe3, 0x61, 0xeb, 0x18, 0xfa, 0x09, 0xef, 0x81, 0xa7, 0xbb, 0x47, 0xf3, 0x09, - 0xf8, 0x7b, 0xa2, 0xc8, 0x1c, 0xf4, 0xbf, 0x05, 0x33, 0x61, 0xeb, 0x55, 0xf4, 0xe0, 0x68, 0x84, - 0xc1, 0xd0, 0xa3, 0xfa, 0x9e, 0x03, 0x70, 0x38, 0xd5, 0x7f, 0x2a, 0x01, 0x77, 0x8c, 0x5c, 0x96, - 0xa1, 0xb3, 0xa3, 0x61, 0x47, 0x04, 0x43, 0xd5, 0xfa, 0xcd, 0xb0, 0x3a, 0x4d, 0x6b, 0xfa, 0x76, - 0xde, 0xc3, 0x25, 0x3a, 0xb0, 0x84, 0x18, 0x32, 0xb0, 0x83, 0xe1, 0xa2, 0x34, 0x86, 0x5e, 0x0a, - 0xdf, 0x81, 0x3e, 0x1d, 0x8a, 0x30, 0x7c, 0xd5, 0x52, 0x7d, 0x30, 0x3e, 0x83, 0x77, 0xd8, 0xc3, - 0xc2, 0xe1, 0x21, 0xc3, 0x3e, 0x22, 0xe6, 0x1f, 0x32, 0xec, 0xa3, 0x62, 0x6d, 0x3e, 0xec, 0x23, - 0x83, 0xc1, 0x21, 0xc3, 0x1e, 0x27, 0x06, 0x1e, 0x32, 0xec, 0xb1, 0x62, 0x4f, 0x69, 0x0c, 0xed, - 0xc0, 0xa4, 0x2f, 0xd4, 0x40, 0xa7, 0x42, 0xe1, 0xc2, 0x62, 0xc0, 0xea, 0xbd, 0x71, 0x48, 0xbd, - 0xe3, 0x1f, 0xe2, 0x5d, 0x87, 0x8c, 0xff, 0xf0, 0x00, 0xa2, 0xfa, 0x60, 0x7c, 0x06, 0xa7, 0xee, - 0xeb, 0xce, 0xa6, 0x88, 0x87, 0x00, 0xcd, 0xc5, 0x44, 0x12, 0x35, 0x9f, 0x8e, 0x4d, 0xef, 0x54, - 0x7c, 0x75, 0xe0, 0x5c, 0x74, 0xb8, 0xd0, 0x42, 0xbd, 0x53, 0xf5, 0xbe, 0x58, 0xb4, 0x4e, 0x65, - 0xab, 0x3c, 0xe3, 0x7f, 0x3c, 0x94, 0xcd, 0xe3, 0x77, 0xaa, 0x77, 0x8e, 0xa0, 0x70, 0xe0, 0xd6, - 0x9d, 0x2d, 0x3c, 0x29, 0x9c, 0xdc, 0xeb, 0x6f, 0xaa, 0x27, 0x46, 0xd2, 0x08, 0xd0, 0x5b, 0x9e, - 0x94, 0xff, 0x72, 0x76, 0xe0, 0x82, 0x5e, 0x1b, 0xeb, 0xd8, 0xd2, 0xac, 0x03, 0x5d, 0xd0, 0x1b, - 0x9d, 0x77, 0xff, 0xb9, 0x0c, 0x14, 0x2e, 0x30, 0x54, 0xfa, 0x55, 0x62, 0xf4, 0x44, 0x4c, 0x2f, - 0x5a, 0x24, 0x5e, 0xf4, 0x07, 0xfb, 0x35, 0x2e, 0x48, 0xe1, 0x4f, 0x91, 0xc5, 0x3f, 0x4f, 0xc4, - 0x3e, 0x2d, 0xe2, 0x7e, 0xdf, 0xa5, 0x70, 0xa0, 0xc3, 0xa5, 0x6c, 0x57, 0x9f, 0x9f, 0xe7, 0x0c, - 0xe2, 0x49, 0xec, 0x4b, 0x47, 0x1b, 0xa4, 0x84, 0x7e, 0x9c, 0x04, 0x7d, 0x32, 0x01, 0x87, 0x28, - 0x95, 0x1b, 0xcb, 0x51, 0x4a, 0x71, 0x04, 0x66, 0x60, 0x94, 0x57, 0x14, 0xcf, 0xca, 0x86, 0x62, - 0x34, 0xea, 0x7c, 0x67, 0xf6, 0x76, 0x4f, 0xa5, 0x41, 0x38, 0xe9, 0x07, 0xfb, 0x35, 0x34, 0xc8, - 0x2b, 0xd3, 0x4f, 0x69, 0xfa, 0xcb, 0xc2, 0x3f, 0x28, 0x3d, 0x22, 0xbc, 0x9b, 0xe2, 0x02, 0x75, - 0x63, 0x04, 0x5f, 0x84, 0xbd, 0x06, 0x79, 0x8f, 0xf1, 0xa9, 0x8c, 0x0f, 0x39, 0x80, 0xe6, 0x2e, - 0x9d, 0x11, 0xc7, 0xf3, 0xf8, 0x3e, 0xd9, 0x0b, 0x81, 0x7e, 0x35, 0x01, 0x87, 0xdc, 0xe5, 0xb9, - 0x17, 0x3c, 0x13, 0x7f, 0x81, 0x7e, 0xce, 0x2f, 0xb5, 0x50, 0x3c, 0x22, 0xb5, 0x30, 0x07, 0x29, - 0xcf, 0xf4, 0xc3, 0x1c, 0xc6, 0x73, 0x30, 0xe9, 0x5d, 0xbf, 0xb9, 0x9f, 0x19, 0x1c, 0xb5, 0xf1, - 0x38, 0xc3, 0x7b, 0xeb, 0x3b, 0x84, 0x21, 0xfb, 0x81, 0x50, 0x15, 0xb2, 0x78, 0xb7, 0x67, 0x98, - 0x36, 0x6e, 0xd1, 0x53, 0xc3, 0x59, 0xd9, 0x79, 0x96, 0xae, 0x43, 0xc8, 0xc0, 0xa2, 0xa7, 0x03, - 0xdf, 0x48, 0xba, 0x99, 0x75, 0xc1, 0xe0, 0x67, 0x95, 0xbc, 0xdf, 0x3b, 0xba, 0xd5, 0x66, 0xe3, - 0xff, 0x07, 0x00, 0x00, 0xff, 0xff, 0xbb, 0x45, 0x6d, 0x3d, 0x89, 0x9b, 0x00, 0x00, + 0x75, 0x1f, 0x66, 0x77, 0x01, 0xec, 0xbe, 0xc5, 0xc7, 0xa2, 0x81, 0x3b, 0xee, 0x2d, 0x49, 0xe0, + 0x38, 0xfc, 0x38, 0xdc, 0x91, 0xc4, 0x89, 0xc7, 0xcf, 0xdb, 0x93, 0x49, 0x63, 0x01, 0xdc, 0x1d, + 0x48, 0xe0, 0x00, 0x0e, 0x80, 0x23, 0x29, 0xd9, 0x9a, 0x0c, 0x66, 0x1b, 0x8b, 0xe1, 0xed, 0xce, + 0x2c, 0x67, 0x66, 0x71, 0x00, 0xa3, 0x3f, 0x98, 0x92, 0x1c, 0x45, 0x8a, 0x15, 0x29, 0x8e, 0x9c, + 0xd0, 0xb2, 0xa4, 0xc8, 0x72, 0x25, 0x52, 0x64, 0x27, 0xb6, 0x13, 0x45, 0x91, 0x9d, 0xaa, 0x44, + 0x95, 0x28, 0x8e, 0x52, 0x71, 0x52, 0x52, 0x95, 0x93, 0x72, 0x52, 0xa9, 0x93, 0x4d, 0xa9, 0x2a, + 0xb2, 0xc2, 0xc4, 0xce, 0x85, 0x71, 0xb9, 0xa4, 0x54, 0x39, 0xd5, 0x5f, 0xf3, 0xb5, 0xb3, 0x98, + 0x59, 0xf0, 0x48, 0x49, 0x25, 0xfe, 0x85, 0xed, 0x9e, 0xf7, 0x7e, 0xdd, 0xfd, 0xfa, 0xf5, 0x7b, + 0xaf, 0x5f, 0xf7, 0x0c, 0xe0, 0x97, 0x2f, 0xc0, 0xc9, 0x86, 0x65, 0x35, 0x9a, 0xf8, 0x6c, 0xdb, + 0xb6, 0x5c, 0x6b, 0xbb, 0xb3, 0x73, 0xb6, 0x8e, 0x1d, 0xdd, 0x36, 0xda, 0xae, 0x65, 0xcf, 0xd1, + 0x3a, 0x34, 0xce, 0x28, 0xe6, 0x04, 0x85, 0xbc, 0x0a, 0x13, 0x17, 0x8d, 0x26, 0x5e, 0xf4, 0x08, + 0x37, 0xb0, 0x8b, 0x9e, 0x80, 0xdc, 0x8e, 0xd1, 0xc4, 0x65, 0xe9, 0x64, 0x76, 0xb6, 0x78, 0xee, + 0x9e, 0xb9, 0x08, 0xd3, 0x5c, 0x98, 0x63, 0x9d, 0x54, 0x2b, 0x94, 0x43, 0xfe, 0x4e, 0x0e, 0x26, + 0x63, 0x9e, 0x22, 0x04, 0x39, 0x53, 0x6b, 0x11, 0x44, 0x69, 0xb6, 0xa0, 0xd0, 0xdf, 0xa8, 0x0c, + 0xc3, 0x6d, 0x4d, 0xbf, 0xa6, 0x35, 0x70, 0x39, 0x43, 0xab, 0x45, 0x11, 0x4d, 0x03, 0xd4, 0x71, + 0x1b, 0x9b, 0x75, 0x6c, 0xea, 0x07, 0xe5, 0xec, 0xc9, 0xec, 0x6c, 0x41, 0x09, 0xd4, 0xa0, 0xfb, + 0x61, 0xa2, 0xdd, 0xd9, 0x6e, 0x1a, 0xba, 0x1a, 0x20, 0x83, 0x93, 0xd9, 0xd9, 0x41, 0xa5, 0xc4, + 0x1e, 0x2c, 0xfa, 0xc4, 0xa7, 0x60, 0xfc, 0x3a, 0xd6, 0xae, 0x05, 0x49, 0x8b, 0x94, 0x74, 0x8c, + 0x54, 0x07, 0x08, 0x17, 0x60, 0xa4, 0x85, 0x1d, 0x47, 0x6b, 0x60, 0xd5, 0x3d, 0x68, 0xe3, 0x72, + 0x8e, 0x8e, 0xfe, 0x64, 0xd7, 0xe8, 0xa3, 0x23, 0x2f, 0x72, 0xae, 0xcd, 0x83, 0x36, 0x46, 0xf3, + 0x50, 0xc0, 0x66, 0xa7, 0xc5, 0x10, 0x06, 0x7b, 0xc8, 0x6f, 0xc9, 0xec, 0xb4, 0xa2, 0x28, 0x79, + 0xc2, 0xc6, 0x21, 0x86, 0x1d, 0x6c, 0xef, 0x19, 0x3a, 0x2e, 0x0f, 0x51, 0x80, 0x53, 0x5d, 0x00, + 0x1b, 0xec, 0x79, 0x14, 0x43, 0xf0, 0xa1, 0x05, 0x28, 0xe0, 0x7d, 0x17, 0x9b, 0x8e, 0x61, 0x99, + 0xe5, 0x61, 0x0a, 0x72, 0x6f, 0xcc, 0x2c, 0xe2, 0x66, 0x3d, 0x0a, 0xe1, 0xf3, 0xa1, 0xc7, 0x60, + 0xd8, 0x6a, 0xbb, 0x86, 0x65, 0x3a, 0xe5, 0xfc, 0x49, 0x69, 0xb6, 0x78, 0xee, 0x8e, 0x58, 0x45, + 0x58, 0x63, 0x34, 0x8a, 0x20, 0x46, 0xcb, 0x50, 0x72, 0xac, 0x8e, 0xad, 0x63, 0x55, 0xb7, 0xea, + 0x58, 0x35, 0xcc, 0x1d, 0xab, 0x5c, 0xa0, 0x00, 0x33, 0xdd, 0x03, 0xa1, 0x84, 0x0b, 0x56, 0x1d, + 0x2f, 0x9b, 0x3b, 0x96, 0x32, 0xe6, 0x84, 0xca, 0xe8, 0x38, 0x0c, 0x39, 0x07, 0xa6, 0xab, 0xed, + 0x97, 0x47, 0xa8, 0x86, 0xf0, 0x92, 0xfc, 0xdb, 0x43, 0x30, 0x9e, 0x46, 0xc5, 0x2e, 0xc0, 0xe0, + 0x0e, 0x19, 0x65, 0x39, 0xd3, 0x8f, 0x0c, 0x18, 0x4f, 0x58, 0x88, 0x43, 0x47, 0x14, 0xe2, 0x3c, + 0x14, 0x4d, 0xec, 0xb8, 0xb8, 0xce, 0x34, 0x22, 0x9b, 0x52, 0xa7, 0x80, 0x31, 0x75, 0xab, 0x54, + 0xee, 0x48, 0x2a, 0xf5, 0x3c, 0x8c, 0x7b, 0x5d, 0x52, 0x6d, 0xcd, 0x6c, 0x08, 0xdd, 0x3c, 0x9b, + 0xd4, 0x93, 0xb9, 0x25, 0xc1, 0xa7, 0x10, 0x36, 0x65, 0x0c, 0x87, 0xca, 0x68, 0x11, 0xc0, 0x32, + 0xb1, 0xb5, 0xa3, 0xd6, 0xb1, 0xde, 0x2c, 0xe7, 0x7b, 0x48, 0x69, 0x8d, 0x90, 0x74, 0x49, 0xc9, + 0x62, 0xb5, 0x7a, 0x13, 0x9d, 0xf7, 0x55, 0x6d, 0xb8, 0x87, 0xa6, 0xac, 0xb2, 0x45, 0xd6, 0xa5, + 0x6d, 0x5b, 0x30, 0x66, 0x63, 0xa2, 0xf7, 0xb8, 0xce, 0x47, 0x56, 0xa0, 0x9d, 0x98, 0x4b, 0x1c, + 0x99, 0xc2, 0xd9, 0xd8, 0xc0, 0x46, 0xed, 0x60, 0x11, 0xdd, 0x0d, 0x5e, 0x85, 0x4a, 0xd5, 0x0a, + 0xa8, 0x15, 0x1a, 0x11, 0x95, 0x57, 0xb4, 0x16, 0xae, 0xbc, 0x0c, 0x63, 0x61, 0xf1, 0xa0, 0x29, + 0x18, 0x74, 0x5c, 0xcd, 0x76, 0xa9, 0x16, 0x0e, 0x2a, 0xac, 0x80, 0x4a, 0x90, 0xc5, 0x66, 0x9d, + 0x5a, 0xb9, 0x41, 0x85, 0xfc, 0x44, 0x3f, 0xed, 0x0f, 0x38, 0x4b, 0x07, 0x7c, 0x5f, 0xf7, 0x8c, + 0x86, 0x90, 0xa3, 0xe3, 0xae, 0x3c, 0x0e, 0xa3, 0xa1, 0x01, 0xa4, 0x6d, 0x5a, 0x7e, 0x3f, 0x1c, + 0x8b, 0x85, 0x46, 0xcf, 0xc3, 0x54, 0xc7, 0x34, 0x4c, 0x17, 0xdb, 0x6d, 0x1b, 0x13, 0x8d, 0x65, + 0x4d, 0x95, 0xff, 0xfb, 0x70, 0x0f, 0x9d, 0xdb, 0x0a, 0x52, 0x33, 0x14, 0x65, 0xb2, 0xd3, 0x5d, + 0x79, 0xa6, 0x90, 0xff, 0xee, 0x70, 0xe9, 0x95, 0x57, 0x5e, 0x79, 0x25, 0x23, 0xbf, 0x3a, 0x04, + 0x53, 0x71, 0x6b, 0x26, 0x76, 0xf9, 0x1e, 0x87, 0x21, 0xb3, 0xd3, 0xda, 0xc6, 0x36, 0x15, 0xd2, + 0xa0, 0xc2, 0x4b, 0x68, 0x1e, 0x06, 0x9b, 0xda, 0x36, 0x6e, 0x96, 0x73, 0x27, 0xa5, 0xd9, 0xb1, + 0x73, 0xf7, 0xa7, 0x5a, 0x95, 0x73, 0x2b, 0x84, 0x45, 0x61, 0x9c, 0xe8, 0x49, 0xc8, 0x71, 0x13, + 0x4d, 0x10, 0xce, 0xa4, 0x43, 0x20, 0x6b, 0x49, 0xa1, 0x7c, 0xe8, 0x76, 0x28, 0x90, 0xbf, 0x4c, + 0x37, 0x86, 0x68, 0x9f, 0xf3, 0xa4, 0x82, 0xe8, 0x05, 0xaa, 0x40, 0x9e, 0x2e, 0x93, 0x3a, 0x16, + 0xae, 0xcd, 0x2b, 0x13, 0xc5, 0xaa, 0xe3, 0x1d, 0xad, 0xd3, 0x74, 0xd5, 0x3d, 0xad, 0xd9, 0xc1, + 0x54, 0xe1, 0x0b, 0xca, 0x08, 0xaf, 0xbc, 0x4a, 0xea, 0xd0, 0x0c, 0x14, 0xd9, 0xaa, 0x32, 0xcc, + 0x3a, 0xde, 0xa7, 0xd6, 0x73, 0x50, 0x61, 0x0b, 0x6d, 0x99, 0xd4, 0x90, 0xe6, 0x5f, 0x74, 0x2c, + 0x53, 0xa8, 0x26, 0x6d, 0x82, 0x54, 0xd0, 0xe6, 0x1f, 0x8f, 0x1a, 0xee, 0x3b, 0xe3, 0x87, 0x17, + 0xd5, 0x29, 0xf9, 0xcb, 0x19, 0xc8, 0x51, 0x7b, 0x31, 0x0e, 0xc5, 0xcd, 0x17, 0xd6, 0x97, 0xd4, + 0xc5, 0xb5, 0xad, 0xda, 0xca, 0x52, 0x49, 0x42, 0x63, 0x00, 0xb4, 0xe2, 0xe2, 0xca, 0xda, 0xfc, + 0x66, 0x29, 0xe3, 0x95, 0x97, 0xaf, 0x6c, 0x3e, 0xf6, 0x48, 0x29, 0xeb, 0x31, 0x6c, 0xb1, 0x8a, + 0x5c, 0x90, 0xe0, 0xe1, 0x73, 0xa5, 0x41, 0x54, 0x82, 0x11, 0x06, 0xb0, 0xfc, 0xfc, 0xd2, 0xe2, + 0x63, 0x8f, 0x94, 0x86, 0xc2, 0x35, 0x0f, 0x9f, 0x2b, 0x0d, 0xa3, 0x51, 0x28, 0xd0, 0x9a, 0xda, + 0xda, 0xda, 0x4a, 0x29, 0xef, 0x61, 0x6e, 0x6c, 0x2a, 0xcb, 0x57, 0x2e, 0x95, 0x0a, 0x1e, 0xe6, + 0x25, 0x65, 0x6d, 0x6b, 0xbd, 0x04, 0x1e, 0xc2, 0xea, 0xd2, 0xc6, 0xc6, 0xfc, 0xa5, 0xa5, 0x52, + 0xd1, 0xa3, 0xa8, 0xbd, 0xb0, 0xb9, 0xb4, 0x51, 0x1a, 0x09, 0x75, 0xeb, 0xe1, 0x73, 0xa5, 0x51, + 0xaf, 0x89, 0xa5, 0x2b, 0x5b, 0xab, 0xa5, 0x31, 0x34, 0x01, 0xa3, 0xac, 0x09, 0xd1, 0x89, 0xf1, + 0x48, 0xd5, 0x63, 0x8f, 0x94, 0x4a, 0x7e, 0x47, 0x18, 0xca, 0x44, 0xa8, 0xe2, 0xb1, 0x47, 0x4a, + 0x48, 0x5e, 0x80, 0x41, 0xaa, 0x5d, 0x08, 0xc1, 0xd8, 0xca, 0x7c, 0x6d, 0x69, 0x45, 0x5d, 0x5b, + 0xdf, 0x5c, 0x5e, 0xbb, 0x32, 0xbf, 0x52, 0x92, 0xfc, 0x3a, 0x65, 0xe9, 0xd9, 0xad, 0x65, 0x65, + 0x69, 0xb1, 0x94, 0x09, 0xd6, 0xad, 0x2f, 0xcd, 0x6f, 0x2e, 0x2d, 0x96, 0xb2, 0xb2, 0x0e, 0x53, + 0x71, 0x76, 0x32, 0x76, 0x65, 0x04, 0xa6, 0x38, 0xd3, 0x63, 0x8a, 0x29, 0x56, 0xd7, 0x14, 0x7f, + 0x3b, 0x03, 0x93, 0x31, 0xbe, 0x22, 0xb6, 0x91, 0xa7, 0x60, 0x90, 0xa9, 0x28, 0xf3, 0x9e, 0xa7, + 0x63, 0x9d, 0x0e, 0x55, 0xd8, 0x2e, 0x0f, 0x4a, 0xf9, 0x82, 0x11, 0x44, 0xb6, 0x47, 0x04, 0x41, + 0x20, 0xba, 0x6c, 0xfa, 0xcf, 0x76, 0xd9, 0x74, 0xe6, 0xf6, 0x1e, 0x4b, 0xe3, 0xf6, 0x68, 0x5d, + 0x7f, 0xb6, 0x7d, 0x30, 0xc6, 0xb6, 0x5f, 0x80, 0x89, 0x2e, 0xa0, 0xd4, 0x36, 0xf6, 0x03, 0x12, + 0x94, 0x7b, 0x09, 0x27, 0xc1, 0xd2, 0x65, 0x42, 0x96, 0xee, 0x42, 0x54, 0x82, 0x77, 0xf5, 0x9e, + 0x84, 0xae, 0xb9, 0xfe, 0xbc, 0x04, 0xc7, 0xe3, 0x23, 0xc5, 0xd8, 0x3e, 0x3c, 0x09, 0x43, 0x2d, + 0xec, 0xee, 0x5a, 0x22, 0x5a, 0xba, 0x2f, 0xc6, 0x07, 0x93, 0xc7, 0xd1, 0xc9, 0xe6, 0x5c, 0x41, + 0x27, 0x9e, 0xed, 0x15, 0xee, 0xb1, 0xde, 0x74, 0xf5, 0xf4, 0xc3, 0x19, 0x38, 0x16, 0x0b, 0x1e, + 0xdb, 0xd1, 0x3b, 0x01, 0x0c, 0xb3, 0xdd, 0x71, 0x59, 0x44, 0xc4, 0x0c, 0x6c, 0x81, 0xd6, 0x50, + 0xe3, 0x45, 0x8c, 0x67, 0xc7, 0xf5, 0x9e, 0x67, 0xe9, 0x73, 0x60, 0x55, 0x94, 0xe0, 0x09, 0xbf, + 0xa3, 0x39, 0xda, 0xd1, 0xe9, 0x1e, 0x23, 0xed, 0x52, 0xcc, 0x77, 0x41, 0x49, 0x6f, 0x1a, 0xd8, + 0x74, 0x55, 0xc7, 0xb5, 0xb1, 0xd6, 0x32, 0xcc, 0x06, 0xf5, 0x20, 0xf9, 0xea, 0xe0, 0x8e, 0xd6, + 0x74, 0xb0, 0x32, 0xce, 0x1e, 0x6f, 0x88, 0xa7, 0x84, 0x83, 0x2a, 0x90, 0x1d, 0xe0, 0x18, 0x0a, + 0x71, 0xb0, 0xc7, 0x1e, 0x87, 0xfc, 0x0b, 0x05, 0x28, 0x06, 0xe2, 0x6a, 0x74, 0x17, 0x8c, 0xbc, + 0xa8, 0xed, 0x69, 0xaa, 0xd8, 0x2b, 0x31, 0x49, 0x14, 0x49, 0xdd, 0x3a, 0xdf, 0x2f, 0xbd, 0x0b, + 0xa6, 0x28, 0x89, 0xd5, 0x71, 0xb1, 0xad, 0xea, 0x4d, 0xcd, 0x71, 0xa8, 0xd0, 0xf2, 0x94, 0x14, + 0x91, 0x67, 0x6b, 0xe4, 0xd1, 0x82, 0x78, 0x82, 0x1e, 0x85, 0x49, 0xca, 0xd1, 0xea, 0x34, 0x5d, + 0xa3, 0xdd, 0xc4, 0x2a, 0xd9, 0xbd, 0x39, 0xd4, 0x93, 0x78, 0x3d, 0x9b, 0x20, 0x14, 0xab, 0x9c, + 0x80, 0xf4, 0xc8, 0x41, 0x8b, 0x70, 0x27, 0x65, 0x6b, 0x60, 0x13, 0xdb, 0x9a, 0x8b, 0x55, 0xfc, + 0x52, 0x47, 0x6b, 0x3a, 0xaa, 0x66, 0xd6, 0xd5, 0x5d, 0xcd, 0xd9, 0x2d, 0x4f, 0x11, 0x80, 0x5a, + 0xa6, 0x2c, 0x29, 0x27, 0x08, 0xe1, 0x25, 0x4e, 0xb7, 0x44, 0xc9, 0xe6, 0xcd, 0xfa, 0x65, 0xcd, + 0xd9, 0x45, 0x55, 0x38, 0x4e, 0x51, 0x1c, 0xd7, 0x36, 0xcc, 0x86, 0xaa, 0xef, 0x62, 0xfd, 0x9a, + 0xda, 0x71, 0x77, 0x9e, 0x28, 0xdf, 0x1e, 0x6c, 0x9f, 0xf6, 0x70, 0x83, 0xd2, 0x2c, 0x10, 0x92, + 0x2d, 0x77, 0xe7, 0x09, 0xb4, 0x01, 0x23, 0x64, 0x32, 0x5a, 0xc6, 0xcb, 0x58, 0xdd, 0xb1, 0x6c, + 0xea, 0x1a, 0xc7, 0x62, 0x4c, 0x53, 0x40, 0x82, 0x73, 0x6b, 0x9c, 0x61, 0xd5, 0xaa, 0xe3, 0xea, + 0xe0, 0xc6, 0xfa, 0xd2, 0xd2, 0xa2, 0x52, 0x14, 0x28, 0x17, 0x2d, 0x9b, 0x28, 0x54, 0xc3, 0xf2, + 0x04, 0x5c, 0x64, 0x0a, 0xd5, 0xb0, 0x84, 0x78, 0x1f, 0x85, 0x49, 0x5d, 0x67, 0x63, 0x36, 0x74, + 0x95, 0xef, 0xb1, 0x9c, 0x72, 0x29, 0x24, 0x2c, 0x5d, 0xbf, 0xc4, 0x08, 0xb8, 0x8e, 0x3b, 0xe8, + 0x3c, 0x1c, 0xf3, 0x85, 0x15, 0x64, 0x9c, 0xe8, 0x1a, 0x65, 0x94, 0xf5, 0x51, 0x98, 0x6c, 0x1f, + 0x74, 0x33, 0xa2, 0x50, 0x8b, 0xed, 0x83, 0x28, 0xdb, 0xe3, 0x30, 0xd5, 0xde, 0x6d, 0x77, 0xf3, + 0x9d, 0x09, 0xf2, 0xa1, 0xf6, 0x6e, 0x3b, 0xca, 0x78, 0x2f, 0xdd, 0x70, 0xdb, 0x58, 0xd7, 0x5c, + 0x5c, 0x2f, 0xdf, 0x16, 0x24, 0x0f, 0x3c, 0x40, 0x67, 0xa1, 0xa4, 0xeb, 0x2a, 0x36, 0xb5, 0xed, + 0x26, 0x56, 0x35, 0x1b, 0x9b, 0x9a, 0x53, 0x9e, 0x09, 0x12, 0x8f, 0xe9, 0xfa, 0x12, 0x7d, 0x3a, + 0x4f, 0x1f, 0xa2, 0x33, 0x30, 0x61, 0x6d, 0xbf, 0xa8, 0x33, 0x95, 0x54, 0xdb, 0x36, 0xde, 0x31, + 0xf6, 0xcb, 0xf7, 0x50, 0xf9, 0x8e, 0x93, 0x07, 0x54, 0x21, 0xd7, 0x69, 0x35, 0x3a, 0x0d, 0x25, + 0xdd, 0xd9, 0xd5, 0xec, 0x36, 0xb5, 0xc9, 0x4e, 0x5b, 0xd3, 0x71, 0xf9, 0x5e, 0x46, 0xca, 0xea, + 0xaf, 0x88, 0x6a, 0xb2, 0x24, 0x9c, 0xeb, 0xc6, 0x8e, 0x2b, 0x10, 0x4f, 0xb1, 0x25, 0x41, 0xeb, + 0x38, 0xda, 0x2c, 0x94, 0x88, 0x28, 0x42, 0x0d, 0xcf, 0x52, 0xb2, 0xb1, 0xf6, 0x6e, 0x3b, 0xd8, + 0xee, 0xdd, 0x30, 0x4a, 0x28, 0xfd, 0x46, 0x4f, 0xb3, 0x80, 0xac, 0xbd, 0x1b, 0x68, 0xf1, 0x11, + 0x38, 0x4e, 0x88, 0x5a, 0xd8, 0xd5, 0xea, 0x9a, 0xab, 0x05, 0xa8, 0x1f, 0xa0, 0xd4, 0x44, 0xee, + 0xab, 0xfc, 0x61, 0xa8, 0x9f, 0x76, 0x67, 0xfb, 0xc0, 0xd3, 0xac, 0x07, 0x59, 0x3f, 0x49, 0x9d, + 0xd0, 0xad, 0xb7, 0x2c, 0xe8, 0x96, 0xab, 0x30, 0x12, 0x54, 0x7c, 0x54, 0x00, 0xa6, 0xfa, 0x25, + 0x89, 0x44, 0x41, 0x0b, 0x6b, 0x8b, 0x24, 0x7e, 0x79, 0xcf, 0x52, 0x29, 0x43, 0xe2, 0xa8, 0x95, + 0xe5, 0xcd, 0x25, 0x55, 0xd9, 0xba, 0xb2, 0xb9, 0xbc, 0xba, 0x54, 0xca, 0x06, 0x02, 0xf6, 0xa7, + 0x73, 0xf9, 0xfb, 0x4a, 0xa7, 0xe4, 0x6f, 0x66, 0x60, 0x2c, 0xbc, 0x03, 0x43, 0xef, 0x86, 0xdb, + 0x44, 0xba, 0xc4, 0xc1, 0xae, 0x7a, 0xdd, 0xb0, 0xe9, 0x8a, 0x6c, 0x69, 0xcc, 0x3b, 0x7a, 0x3a, + 0x31, 0xc5, 0xa9, 0x36, 0xb0, 0xfb, 0x9c, 0x61, 0x93, 0xf5, 0xd6, 0xd2, 0x5c, 0xb4, 0x02, 0x33, + 0xa6, 0xa5, 0x3a, 0xae, 0x66, 0xd6, 0x35, 0xbb, 0xae, 0xfa, 0x89, 0x2a, 0x55, 0xd3, 0x75, 0xec, + 0x38, 0x16, 0xf3, 0x84, 0x1e, 0xca, 0x1d, 0xa6, 0xb5, 0xc1, 0x89, 0x7d, 0x17, 0x31, 0xcf, 0x49, + 0x23, 0xfa, 0x9b, 0xed, 0xa5, 0xbf, 0xb7, 0x43, 0xa1, 0xa5, 0xb5, 0x55, 0x6c, 0xba, 0xf6, 0x01, + 0x8d, 0xbb, 0xf3, 0x4a, 0xbe, 0xa5, 0xb5, 0x97, 0x48, 0xf9, 0x6d, 0xd9, 0xfe, 0x3c, 0x9d, 0xcb, + 0xe7, 0x4b, 0x85, 0xa7, 0x73, 0xf9, 0x42, 0x09, 0xe4, 0xd7, 0xb2, 0x30, 0x12, 0x8c, 0xc3, 0xc9, + 0xb6, 0x46, 0xa7, 0x2e, 0x4b, 0xa2, 0x46, 0xed, 0xee, 0x43, 0xa3, 0xf6, 0xb9, 0x05, 0xe2, 0xcb, + 0xaa, 0x43, 0x2c, 0x3a, 0x56, 0x18, 0x27, 0x89, 0x23, 0x88, 0xb2, 0x61, 0x16, 0x8d, 0xe4, 0x15, + 0x5e, 0x42, 0x97, 0x60, 0xe8, 0x45, 0x87, 0x62, 0x0f, 0x51, 0xec, 0x7b, 0x0e, 0xc7, 0x7e, 0x7a, + 0x83, 0x82, 0x17, 0x9e, 0xde, 0x50, 0xaf, 0xac, 0x29, 0xab, 0xf3, 0x2b, 0x0a, 0x67, 0x47, 0x27, + 0x20, 0xd7, 0xd4, 0x5e, 0x3e, 0x08, 0x7b, 0x3d, 0x5a, 0x95, 0x76, 0x12, 0x4e, 0x40, 0xee, 0x3a, + 0xd6, 0xae, 0x85, 0x7d, 0x0d, 0xad, 0x7a, 0x0b, 0x17, 0xc3, 0x59, 0x18, 0xa4, 0xf2, 0x42, 0x00, + 0x5c, 0x62, 0xa5, 0x01, 0x94, 0x87, 0xdc, 0xc2, 0x9a, 0x42, 0x16, 0x44, 0x09, 0x46, 0x58, 0xad, + 0xba, 0xbe, 0xbc, 0xb4, 0xb0, 0x54, 0xca, 0xc8, 0x8f, 0xc2, 0x10, 0x13, 0x02, 0x59, 0x2c, 0x9e, + 0x18, 0x4a, 0x03, 0xbc, 0xc8, 0x31, 0x24, 0xf1, 0x74, 0x6b, 0xb5, 0xb6, 0xa4, 0x94, 0x32, 0xe1, + 0xa9, 0xce, 0x95, 0x06, 0x65, 0x07, 0x46, 0x82, 0x81, 0xf8, 0xdb, 0xb3, 0xc9, 0xfe, 0xaa, 0x04, + 0xc5, 0x40, 0x60, 0x4d, 0x22, 0x22, 0xad, 0xd9, 0xb4, 0xae, 0xab, 0x5a, 0xd3, 0xd0, 0x1c, 0xae, + 0x1a, 0x40, 0xab, 0xe6, 0x49, 0x4d, 0xda, 0xa9, 0x7b, 0x9b, 0x96, 0xc8, 0x60, 0x69, 0x48, 0xfe, + 0x8c, 0x04, 0xa5, 0x68, 0x64, 0x1b, 0xe9, 0xa6, 0xf4, 0xc3, 0xec, 0xa6, 0xfc, 0x29, 0x09, 0xc6, + 0xc2, 0xe1, 0x6c, 0xa4, 0x7b, 0x77, 0xfd, 0x50, 0xbb, 0xf7, 0x87, 0x19, 0x18, 0x0d, 0x05, 0xb1, + 0x69, 0x7b, 0xf7, 0x12, 0x4c, 0x18, 0x75, 0xdc, 0x6a, 0x5b, 0x2e, 0x36, 0xf5, 0x03, 0xb5, 0x89, + 0xf7, 0x70, 0xb3, 0x2c, 0x53, 0xa3, 0x71, 0xf6, 0xf0, 0x30, 0x79, 0x6e, 0xd9, 0xe7, 0x5b, 0x21, + 0x6c, 0xd5, 0xc9, 0xe5, 0xc5, 0xa5, 0xd5, 0xf5, 0xb5, 0xcd, 0xa5, 0x2b, 0x0b, 0x2f, 0xa8, 0x5b, + 0x57, 0x9e, 0xb9, 0xb2, 0xf6, 0xdc, 0x15, 0xa5, 0x64, 0x44, 0xc8, 0xde, 0xc2, 0x65, 0xbf, 0x0e, + 0xa5, 0x68, 0xa7, 0xd0, 0x6d, 0x10, 0xd7, 0xad, 0xd2, 0x00, 0x9a, 0x84, 0xf1, 0x2b, 0x6b, 0xea, + 0xc6, 0xf2, 0xe2, 0x92, 0xba, 0x74, 0xf1, 0xe2, 0xd2, 0xc2, 0xe6, 0x06, 0x4b, 0x7c, 0x78, 0xd4, + 0x9b, 0xa1, 0x05, 0x2e, 0x7f, 0x32, 0x0b, 0x93, 0x31, 0x3d, 0x41, 0xf3, 0x7c, 0xcb, 0xc2, 0x76, + 0x51, 0x0f, 0xa6, 0xe9, 0xfd, 0x1c, 0x89, 0x19, 0xd6, 0x35, 0xdb, 0xe5, 0x3b, 0x9c, 0xd3, 0x40, + 0xa4, 0x64, 0xba, 0xc6, 0x8e, 0x81, 0x6d, 0x9e, 0x27, 0x62, 0xfb, 0x98, 0x71, 0xbf, 0x9e, 0xa5, + 0x8a, 0x1e, 0x00, 0xd4, 0xb6, 0x1c, 0xc3, 0x35, 0xf6, 0xb0, 0x6a, 0x98, 0x22, 0xa9, 0x44, 0xf6, + 0x35, 0x39, 0xa5, 0x24, 0x9e, 0x2c, 0x9b, 0xae, 0x47, 0x6d, 0xe2, 0x86, 0x16, 0xa1, 0x26, 0xc6, + 0x3c, 0xab, 0x94, 0xc4, 0x13, 0x8f, 0xfa, 0x2e, 0x18, 0xa9, 0x5b, 0x1d, 0x12, 0xec, 0x31, 0x3a, + 0xe2, 0x3b, 0x24, 0xa5, 0xc8, 0xea, 0x3c, 0x12, 0x1e, 0xc6, 0xfb, 0xd9, 0xac, 0x11, 0xa5, 0xc8, + 0xea, 0x18, 0xc9, 0x29, 0x18, 0xd7, 0x1a, 0x0d, 0x9b, 0x80, 0x0b, 0x20, 0xb6, 0x31, 0x19, 0xf3, + 0xaa, 0x29, 0x61, 0xe5, 0x69, 0xc8, 0x0b, 0x39, 0x10, 0x57, 0x4d, 0x24, 0xa1, 0xb6, 0xd9, 0x6e, + 0x3b, 0x33, 0x5b, 0x50, 0xf2, 0xa6, 0x78, 0x78, 0x17, 0x8c, 0x18, 0x8e, 0xea, 0x27, 0xe7, 0x33, + 0x27, 0x33, 0xb3, 0x79, 0xa5, 0x68, 0x38, 0x5e, 0x62, 0x53, 0xfe, 0x7c, 0x06, 0xc6, 0xc2, 0x87, + 0x0b, 0x68, 0x11, 0xf2, 0x4d, 0x4b, 0xd7, 0xa8, 0x6a, 0xb1, 0x93, 0xad, 0xd9, 0x84, 0xf3, 0x88, + 0xb9, 0x15, 0x4e, 0xaf, 0x78, 0x9c, 0x95, 0xff, 0x28, 0x41, 0x5e, 0x54, 0xa3, 0xe3, 0x90, 0x6b, + 0x6b, 0xee, 0x2e, 0x85, 0x1b, 0xac, 0x65, 0x4a, 0x92, 0x42, 0xcb, 0xa4, 0xde, 0x69, 0x6b, 0x26, + 0x55, 0x01, 0x5e, 0x4f, 0xca, 0x64, 0x5e, 0x9b, 0x58, 0xab, 0xd3, 0x5d, 0x8f, 0xd5, 0x6a, 0x61, + 0xd3, 0x75, 0xc4, 0xbc, 0xf2, 0xfa, 0x05, 0x5e, 0x8d, 0xee, 0x87, 0x09, 0xd7, 0xd6, 0x8c, 0x66, + 0x88, 0x36, 0x47, 0x69, 0x4b, 0xe2, 0x81, 0x47, 0x5c, 0x85, 0x13, 0x02, 0xb7, 0x8e, 0x5d, 0x4d, + 0xdf, 0xc5, 0x75, 0x9f, 0x69, 0x88, 0x66, 0x37, 0x6e, 0xe3, 0x04, 0x8b, 0xfc, 0xb9, 0xe0, 0x95, + 0xbf, 0x29, 0xc1, 0x84, 0xd8, 0xa7, 0xd5, 0x3d, 0x61, 0xad, 0x02, 0x68, 0xa6, 0x69, 0xb9, 0x41, + 0x71, 0x75, 0xab, 0x72, 0x17, 0xdf, 0xdc, 0xbc, 0xc7, 0xa4, 0x04, 0x00, 0x2a, 0x2d, 0x00, 0xff, + 0x49, 0x4f, 0xb1, 0xcd, 0x40, 0x91, 0x9f, 0x1c, 0xd1, 0xe3, 0x47, 0xb6, 0xb3, 0x07, 0x56, 0x45, + 0x36, 0x74, 0x68, 0x0a, 0x06, 0xb7, 0x71, 0xc3, 0x30, 0x79, 0x3e, 0x98, 0x15, 0x44, 0xfe, 0x25, + 0xe7, 0xe5, 0x5f, 0x6a, 0x1f, 0x93, 0x60, 0x52, 0xb7, 0x5a, 0xd1, 0xfe, 0xd6, 0x4a, 0x91, 0xf4, + 0x82, 0x73, 0x59, 0x7a, 0xcf, 0x93, 0x0d, 0xc3, 0xdd, 0xed, 0x6c, 0xcf, 0xe9, 0x56, 0xeb, 0x6c, + 0xc3, 0x6a, 0x6a, 0x66, 0xc3, 0x3f, 0x3f, 0xa5, 0x3f, 0xf4, 0x07, 0x1b, 0xd8, 0x7c, 0xb0, 0x61, + 0x05, 0x4e, 0x53, 0x2f, 0xf8, 0x3f, 0xff, 0x5c, 0x92, 0x3e, 0x97, 0xc9, 0x5e, 0x5a, 0xaf, 0x7d, + 0x31, 0x53, 0xb9, 0xc4, 0x9a, 0x5b, 0x17, 0xe2, 0x51, 0xf0, 0x4e, 0x13, 0xeb, 0x64, 0xc8, 0xf0, + 0xbd, 0xfb, 0x61, 0xaa, 0x61, 0x35, 0x2c, 0x8a, 0x78, 0x96, 0xfc, 0xe2, 0x27, 0xb2, 0x05, 0xaf, + 0xb6, 0x92, 0x78, 0x7c, 0x5b, 0xbd, 0x02, 0x93, 0x9c, 0x58, 0xa5, 0x47, 0x42, 0x6c, 0x63, 0x83, + 0x0e, 0x4d, 0xab, 0x95, 0x7f, 0xeb, 0x3b, 0xd4, 0xa1, 0x2b, 0x13, 0x9c, 0x95, 0x3c, 0x63, 0x7b, + 0x9f, 0xaa, 0x02, 0xc7, 0x42, 0x78, 0x6c, 0xd9, 0x62, 0x3b, 0x01, 0xf1, 0xdf, 0x70, 0xc4, 0xc9, + 0x00, 0xe2, 0x06, 0x67, 0xad, 0x2e, 0xc0, 0x68, 0x3f, 0x58, 0xbf, 0xcb, 0xb1, 0x46, 0x70, 0x10, + 0xe4, 0x12, 0x8c, 0x53, 0x10, 0xbd, 0xe3, 0xb8, 0x56, 0x8b, 0xda, 0xc4, 0xc3, 0x61, 0xfe, 0xed, + 0x77, 0xd8, 0x3a, 0x1a, 0x23, 0x6c, 0x0b, 0x1e, 0x57, 0xb5, 0x0a, 0xf4, 0x14, 0xac, 0x8e, 0xf5, + 0x66, 0x02, 0xc2, 0xd7, 0x79, 0x47, 0x3c, 0xfa, 0xea, 0x55, 0x98, 0x22, 0xbf, 0xa9, 0xc9, 0x0a, + 0xf6, 0x24, 0x39, 0x07, 0x57, 0xfe, 0xe6, 0x07, 0xd8, 0x52, 0x9d, 0xf4, 0x00, 0x02, 0x7d, 0x0a, + 0xcc, 0x62, 0x03, 0xbb, 0x2e, 0xb6, 0x1d, 0x55, 0x6b, 0xc6, 0x75, 0x2f, 0x90, 0xc4, 0x28, 0xff, + 0xd2, 0xeb, 0xe1, 0x59, 0xbc, 0xc4, 0x38, 0xe7, 0x9b, 0xcd, 0xea, 0x16, 0xdc, 0x16, 0xa3, 0x15, + 0x29, 0x30, 0x3f, 0xc9, 0x31, 0xa7, 0xba, 0x34, 0x83, 0xc0, 0xae, 0x83, 0xa8, 0xf7, 0xe6, 0x32, + 0x05, 0xe6, 0x2f, 0x73, 0x4c, 0xc4, 0x79, 0xc5, 0x94, 0x12, 0xc4, 0xa7, 0x61, 0x62, 0x0f, 0xdb, + 0xdb, 0x96, 0xc3, 0x13, 0x47, 0x29, 0xe0, 0x3e, 0xc5, 0xe1, 0xc6, 0x39, 0x23, 0xcd, 0x24, 0x11, + 0xac, 0xf3, 0x90, 0xdf, 0xd1, 0x74, 0x9c, 0x02, 0xe2, 0xd3, 0x1c, 0x62, 0x98, 0xd0, 0x13, 0xd6, + 0x79, 0x18, 0x69, 0x58, 0xdc, 0x6b, 0x25, 0xb3, 0x7f, 0x86, 0xb3, 0x17, 0x05, 0x0f, 0x87, 0x68, + 0x5b, 0xed, 0x4e, 0x93, 0xb8, 0xb4, 0x64, 0x88, 0xbf, 0x2b, 0x20, 0x04, 0x0f, 0x87, 0xe8, 0x43, + 0xac, 0x9f, 0x15, 0x10, 0x4e, 0x40, 0x9e, 0x4f, 0x41, 0xd1, 0x32, 0x9b, 0x07, 0x96, 0x99, 0xa6, + 0x13, 0xbf, 0xc2, 0x11, 0x80, 0xb3, 0x10, 0x80, 0x0b, 0x50, 0x48, 0x3b, 0x11, 0x7f, 0xef, 0x75, + 0xb1, 0x3c, 0xc4, 0x0c, 0x5c, 0x82, 0x71, 0x61, 0xa0, 0x0c, 0xcb, 0x4c, 0x01, 0xf1, 0xf7, 0x39, + 0xc4, 0x58, 0x80, 0x8d, 0x0f, 0xc3, 0xc5, 0x8e, 0xdb, 0xc0, 0x69, 0x40, 0x3e, 0x2f, 0x86, 0xc1, + 0x59, 0xb8, 0x28, 0xb7, 0xb1, 0xa9, 0xef, 0xa6, 0x43, 0xf8, 0x82, 0x10, 0xa5, 0xe0, 0x21, 0x10, + 0x0b, 0x30, 0xda, 0xd2, 0x6c, 0x67, 0x57, 0x6b, 0xa6, 0x9a, 0x8e, 0x7f, 0xc0, 0x31, 0x46, 0x3c, + 0x26, 0x2e, 0x91, 0x8e, 0xd9, 0x0f, 0xcc, 0x17, 0x85, 0x44, 0x02, 0x6c, 0x7c, 0xe9, 0x39, 0x2e, + 0xcd, 0xb2, 0xf5, 0x83, 0xf6, 0x6b, 0x62, 0xe9, 0x31, 0xde, 0xd5, 0x20, 0xe2, 0x05, 0x28, 0x38, + 0xc6, 0xcb, 0xa9, 0x60, 0x7e, 0x5d, 0xcc, 0x34, 0x65, 0x20, 0xcc, 0x2f, 0xc0, 0x89, 0x58, 0x37, + 0x91, 0x02, 0xec, 0x1f, 0x72, 0xb0, 0xe3, 0x31, 0xae, 0x82, 0x9b, 0x84, 0x7e, 0x21, 0xff, 0x91, + 0x30, 0x09, 0x38, 0x82, 0xb5, 0x4e, 0xf6, 0x11, 0x8e, 0xb6, 0xd3, 0x9f, 0xd4, 0x7e, 0x43, 0x48, + 0x8d, 0xf1, 0x86, 0xa4, 0xb6, 0x09, 0xc7, 0x39, 0x62, 0x7f, 0xf3, 0xfa, 0x9b, 0xc2, 0xb0, 0x32, + 0xee, 0xad, 0xf0, 0xec, 0xbe, 0x17, 0x2a, 0x9e, 0x38, 0x45, 0xc0, 0xea, 0xa8, 0x2d, 0xad, 0x9d, + 0x02, 0xf9, 0xb7, 0x38, 0xb2, 0xb0, 0xf8, 0x5e, 0xc4, 0xeb, 0xac, 0x6a, 0x6d, 0x02, 0xfe, 0x3c, + 0x94, 0x05, 0x78, 0xc7, 0xb4, 0xb1, 0x6e, 0x35, 0x4c, 0xe3, 0x65, 0x5c, 0x4f, 0x01, 0xfd, 0x8f, + 0x23, 0x53, 0xb5, 0x15, 0x60, 0x27, 0xc8, 0xcb, 0x50, 0xf2, 0x62, 0x15, 0xd5, 0x68, 0xb5, 0x2d, + 0xdb, 0x4d, 0x40, 0xfc, 0x27, 0x62, 0xa6, 0x3c, 0xbe, 0x65, 0xca, 0x56, 0x5d, 0x82, 0x31, 0x5a, + 0x4c, 0xab, 0x92, 0x5f, 0xe2, 0x40, 0xa3, 0x3e, 0x17, 0x37, 0x1c, 0xba, 0xd5, 0x6a, 0x6b, 0x76, + 0x1a, 0xfb, 0xf7, 0x4f, 0x85, 0xe1, 0xe0, 0x2c, 0xdc, 0x70, 0xb8, 0x07, 0x6d, 0x4c, 0xbc, 0x7d, + 0x0a, 0x84, 0x2f, 0x0b, 0xc3, 0x21, 0x78, 0x38, 0x84, 0x08, 0x18, 0x52, 0x40, 0xfc, 0x33, 0x01, + 0x21, 0x78, 0x08, 0xc4, 0xb3, 0xbe, 0xa3, 0xb5, 0x71, 0xc3, 0x70, 0x5c, 0x9b, 0x85, 0xc9, 0x87, + 0x43, 0x7d, 0xe5, 0xf5, 0x70, 0x10, 0xa6, 0x04, 0x58, 0x89, 0x25, 0xe2, 0x69, 0x57, 0xba, 0x8b, + 0x4a, 0xee, 0xd8, 0x6f, 0x0b, 0x4b, 0x14, 0x60, 0x23, 0x7d, 0x0b, 0x44, 0x88, 0x44, 0xec, 0x3a, + 0xd9, 0x3b, 0xa4, 0x80, 0xfb, 0x9d, 0x48, 0xe7, 0x36, 0x04, 0x2f, 0xc1, 0x0c, 0xc4, 0x3f, 0x1d, + 0xf3, 0x1a, 0x3e, 0x48, 0xa5, 0x9d, 0xff, 0x3c, 0x12, 0xff, 0x6c, 0x31, 0x4e, 0x66, 0x43, 0xc6, + 0x23, 0xf1, 0x14, 0x4a, 0xba, 0x3f, 0x54, 0xfe, 0x2b, 0x6f, 0xf0, 0xf1, 0x86, 0xc3, 0xa9, 0xea, + 0x0a, 0x51, 0xf2, 0x70, 0xd0, 0x93, 0x0c, 0xf6, 0x81, 0x37, 0x3c, 0x3d, 0x0f, 0xc5, 0x3c, 0xd5, + 0x8b, 0x30, 0x1a, 0x0a, 0x78, 0x92, 0xa1, 0x3e, 0xc8, 0xa1, 0x46, 0x82, 0xf1, 0x4e, 0xf5, 0x51, + 0xc8, 0x91, 0xe0, 0x25, 0x99, 0xfd, 0xe7, 0x38, 0x3b, 0x25, 0xaf, 0xfe, 0x14, 0xe4, 0x45, 0xd0, + 0x92, 0xcc, 0xfa, 0x57, 0x39, 0xab, 0xc7, 0x42, 0xd8, 0x45, 0xc0, 0x92, 0xcc, 0xfe, 0x21, 0xc1, + 0x2e, 0x58, 0x08, 0x7b, 0x7a, 0x11, 0x7e, 0xf5, 0xaf, 0xe7, 0xb8, 0xd3, 0x11, 0xb2, 0xbb, 0x00, + 0xc3, 0x3c, 0x52, 0x49, 0xe6, 0xfe, 0x30, 0x6f, 0x5c, 0x70, 0x54, 0x1f, 0x87, 0xc1, 0x94, 0x02, + 0xff, 0x28, 0x67, 0x65, 0xf4, 0xd5, 0x05, 0x28, 0x06, 0xa2, 0x93, 0x64, 0xf6, 0xbf, 0xc1, 0xd9, + 0x83, 0x5c, 0xa4, 0xeb, 0x3c, 0x3a, 0x49, 0x06, 0xf8, 0x98, 0xe8, 0x3a, 0xe7, 0x20, 0x62, 0x13, + 0x81, 0x49, 0x32, 0xf7, 0xc7, 0x85, 0xd4, 0x05, 0x4b, 0xf5, 0x29, 0x28, 0x78, 0xce, 0x26, 0x99, + 0xff, 0x6f, 0x72, 0x7e, 0x9f, 0x87, 0x48, 0x20, 0xe0, 0xec, 0x92, 0x21, 0x7e, 0x41, 0x48, 0x20, + 0xc0, 0x45, 0x96, 0x51, 0x34, 0x80, 0x49, 0x46, 0xfa, 0x5b, 0x62, 0x19, 0x45, 0xe2, 0x17, 0x32, + 0x9b, 0xd4, 0xe6, 0x27, 0x43, 0x7c, 0x42, 0xcc, 0x26, 0xa5, 0x27, 0xdd, 0x88, 0x46, 0x04, 0xc9, + 0x18, 0x7f, 0x47, 0x74, 0x23, 0x12, 0x10, 0x54, 0xd7, 0x01, 0x75, 0x47, 0x03, 0xc9, 0x78, 0xaf, + 0x72, 0xbc, 0x89, 0xae, 0x60, 0xa0, 0xfa, 0x1c, 0x1c, 0x8f, 0x8f, 0x04, 0x92, 0x51, 0x7f, 0xe9, + 0x8d, 0xc8, 0xde, 0x2d, 0x18, 0x08, 0x54, 0x37, 0x7d, 0x97, 0x12, 0x8c, 0x02, 0x92, 0x61, 0x3f, + 0xf9, 0x46, 0xd8, 0x70, 0x07, 0x83, 0x80, 0xea, 0x3c, 0x80, 0xef, 0x80, 0x93, 0xb1, 0x3e, 0xc5, + 0xb1, 0x02, 0x4c, 0x64, 0x69, 0x70, 0xff, 0x9b, 0xcc, 0xff, 0x69, 0xb1, 0x34, 0x38, 0x07, 0x59, + 0x1a, 0xc2, 0xf5, 0x26, 0x73, 0x7f, 0x46, 0x2c, 0x0d, 0xc1, 0x42, 0x34, 0x3b, 0xe0, 0xdd, 0x92, + 0x11, 0x7e, 0x45, 0x68, 0x76, 0x80, 0xab, 0x7a, 0x05, 0x26, 0xba, 0x1c, 0x62, 0x32, 0xd4, 0xe7, + 0x38, 0x54, 0x29, 0xea, 0x0f, 0x83, 0xce, 0x8b, 0x3b, 0xc3, 0x64, 0xb4, 0x5f, 0x8d, 0x38, 0x2f, + 0xee, 0x0b, 0xab, 0x17, 0x20, 0x6f, 0x76, 0x9a, 0x4d, 0xb2, 0x78, 0xd0, 0xe1, 0x77, 0xfe, 0xca, + 0x7f, 0xfc, 0x03, 0x2e, 0x1d, 0xc1, 0x50, 0x7d, 0x14, 0x06, 0x71, 0x6b, 0x1b, 0xd7, 0x93, 0x38, + 0xbf, 0xf7, 0x03, 0x61, 0x30, 0x09, 0x75, 0xf5, 0x29, 0x00, 0x96, 0x1a, 0xa1, 0xc7, 0x83, 0x09, + 0xbc, 0xff, 0xe3, 0x07, 0xfc, 0x36, 0x8e, 0xcf, 0xe2, 0x03, 0xb0, 0xbb, 0x3d, 0x87, 0x03, 0xbc, + 0x1e, 0x06, 0xa0, 0x33, 0x72, 0x1e, 0x86, 0x5f, 0x74, 0x2c, 0xd3, 0xd5, 0x1a, 0x49, 0xdc, 0xff, + 0x93, 0x73, 0x0b, 0x7a, 0x22, 0xb0, 0x96, 0x65, 0x63, 0x57, 0x6b, 0x38, 0x49, 0xbc, 0xff, 0x8b, + 0xf3, 0x7a, 0x0c, 0x84, 0x59, 0xd7, 0x1c, 0x37, 0xcd, 0xb8, 0xff, 0x44, 0x30, 0x0b, 0x06, 0xd2, + 0x69, 0xf2, 0xfb, 0x1a, 0x3e, 0x48, 0xe2, 0xfd, 0x53, 0xd1, 0x69, 0x4e, 0x5f, 0xfd, 0x29, 0x28, + 0x90, 0x9f, 0xec, 0x8a, 0x5d, 0x02, 0xf3, 0xff, 0xe6, 0xcc, 0x3e, 0x07, 0x69, 0xd9, 0x71, 0xeb, + 0xae, 0x91, 0x2c, 0xec, 0x9b, 0x7c, 0xa6, 0x05, 0x7d, 0x75, 0x1e, 0x8a, 0x8e, 0x5b, 0xaf, 0x77, + 0x78, 0x7c, 0x9a, 0xc0, 0xfe, 0x7f, 0x7e, 0xe0, 0xa5, 0x2c, 0x3c, 0x1e, 0x32, 0xdb, 0xd7, 0xaf, + 0xb9, 0x6d, 0x8b, 0x1e, 0x81, 0x24, 0x21, 0xbc, 0xc1, 0x11, 0x02, 0x2c, 0xd5, 0x05, 0x18, 0x21, + 0x63, 0xb1, 0x71, 0x1b, 0xd3, 0xf3, 0xaa, 0x04, 0x88, 0xff, 0xcb, 0x05, 0x10, 0x62, 0xaa, 0xfd, + 0xec, 0xd7, 0x5f, 0x9b, 0x96, 0xbe, 0xf1, 0xda, 0xb4, 0xf4, 0x87, 0xaf, 0x4d, 0x4b, 0x1f, 0xff, + 0xf6, 0xf4, 0xc0, 0x37, 0xbe, 0x3d, 0x3d, 0xf0, 0x07, 0xdf, 0x9e, 0x1e, 0x88, 0x4f, 0x1b, 0xc3, + 0x25, 0xeb, 0x92, 0xc5, 0x12, 0xc6, 0xef, 0x91, 0x43, 0xe9, 0xe2, 0x86, 0xe5, 0x67, 0x6b, 0xbd, + 0x4d, 0x0e, 0x7c, 0x30, 0x0b, 0xd3, 0xba, 0xe5, 0xb4, 0x2c, 0xe7, 0xec, 0xb6, 0xe6, 0xe0, 0xb3, + 0x7b, 0x0f, 0x6d, 0x63, 0x57, 0x7b, 0xe8, 0xac, 0x6e, 0x19, 0x26, 0x4f, 0xfb, 0x4e, 0xb2, 0xe7, + 0x73, 0xe4, 0xf9, 0x1c, 0x7f, 0x5e, 0x89, 0xcd, 0x10, 0xcb, 0x97, 0x20, 0xb7, 0x60, 0x19, 0x26, + 0x9a, 0x82, 0xc1, 0x3a, 0x36, 0xad, 0x16, 0xbf, 0x01, 0xc6, 0x0a, 0xe8, 0x6e, 0x18, 0xd2, 0x5a, + 0x56, 0xc7, 0x74, 0x59, 0xba, 0xbc, 0x56, 0xfc, 0xfa, 0x8d, 0x99, 0x81, 0xff, 0x7a, 0x63, 0x26, + 0xbb, 0x6c, 0xba, 0x0a, 0x7f, 0x54, 0xcd, 0x7d, 0xf7, 0xb3, 0x33, 0x92, 0xfc, 0x34, 0x0c, 0x2f, + 0x62, 0xfd, 0x28, 0x58, 0x8b, 0x58, 0x8f, 0x60, 0x9d, 0x86, 0xfc, 0xb2, 0xe9, 0xb2, 0x3b, 0x7a, + 0x77, 0x42, 0xd6, 0x30, 0xd9, 0xad, 0x8f, 0x48, 0xfb, 0xa4, 0x9e, 0x90, 0x2e, 0x62, 0xdd, 0x23, + 0xad, 0x63, 0x3d, 0x4a, 0x4a, 0xe0, 0x49, 0x7d, 0x6d, 0xf1, 0x0f, 0xfe, 0x68, 0x7a, 0xe0, 0x95, + 0xd7, 0xa6, 0x07, 0x7a, 0xcd, 0x4f, 0x48, 0xfc, 0x5c, 0xc4, 0xec, 0xcf, 0x83, 0x4e, 0xfd, 0xda, + 0x59, 0xb2, 0xb4, 0x9c, 0xed, 0x21, 0x2a, 0xb7, 0x87, 0xe1, 0x77, 0x32, 0x70, 0x2f, 0xbd, 0x75, + 0x6d, 0xb7, 0x0c, 0xd3, 0x3d, 0xab, 0xdb, 0x07, 0x6d, 0xd7, 0x3a, 0xdb, 0xc2, 0xf6, 0xb5, 0x26, + 0xe6, 0x7f, 0xf8, 0x6c, 0x94, 0x7d, 0xb2, 0x39, 0x46, 0x36, 0xc7, 0x9e, 0xf7, 0x98, 0x92, 0x05, + 0x18, 0x5e, 0xb7, 0x2d, 0x6b, 0x67, 0xad, 0x8d, 0x10, 0xbf, 0x48, 0xce, 0x2f, 0x28, 0x52, 0x6b, + 0x50, 0x82, 0xec, 0x35, 0x7c, 0x40, 0x85, 0x38, 0xa2, 0x90, 0x9f, 0x84, 0xaa, 0xae, 0xb9, 0x1a, + 0x3d, 0xb7, 0x18, 0x51, 0xe8, 0x6f, 0xb9, 0x06, 0x83, 0x14, 0x04, 0x9d, 0x87, 0xac, 0xd5, 0x76, + 0xf8, 0x21, 0xcb, 0x5d, 0x73, 0xbd, 0xfa, 0x32, 0xc7, 0x9b, 0xac, 0xe5, 0x88, 0xdc, 0x14, 0xc2, + 0x53, 0x5b, 0xff, 0xf3, 0x3f, 0x9a, 0x96, 0xbe, 0xf0, 0xda, 0xb4, 0xd4, 0x53, 0x60, 0x73, 0x01, + 0x81, 0x05, 0x84, 0xd1, 0x4b, 0x2e, 0x9e, 0xf0, 0x3e, 0x92, 0x81, 0xe9, 0x00, 0x51, 0xd3, 0xd8, + 0x76, 0xce, 0x5e, 0xdb, 0x63, 0x12, 0xe6, 0x52, 0x43, 0x81, 0x9e, 0x92, 0xe7, 0x73, 0xd7, 0xf6, + 0x7a, 0xc8, 0x6b, 0x0e, 0x72, 0xeb, 0x9a, 0x61, 0x0b, 0xc1, 0x48, 0xbe, 0x60, 0xa6, 0xfc, 0x3b, + 0xc6, 0xa4, 0x8e, 0x15, 0xe4, 0x73, 0x90, 0x7f, 0x66, 0xf9, 0xb1, 0x47, 0xd2, 0xf0, 0x64, 0x39, + 0x4f, 0x4d, 0x11, 0xa2, 0xf8, 0x4a, 0x8c, 0x38, 0xbe, 0xfa, 0xed, 0x69, 0xc9, 0x13, 0xc9, 0x6c, + 0xa2, 0x48, 0xf8, 0x68, 0x3d, 0x61, 0x7c, 0x3c, 0x03, 0x33, 0xd1, 0xc3, 0x19, 0x62, 0x11, 0x1d, + 0x57, 0x6b, 0xb5, 0x7b, 0xbd, 0x5a, 0x77, 0x01, 0x0a, 0x9b, 0x82, 0x06, 0x95, 0x61, 0xd8, 0xc1, + 0xba, 0x65, 0xd6, 0x1d, 0x3a, 0x92, 0xac, 0x22, 0x8a, 0x64, 0x34, 0xa6, 0x66, 0x5a, 0x0e, 0xbf, + 0xf9, 0xcb, 0x0a, 0xb5, 0xbf, 0x2d, 0xf5, 0x67, 0xa2, 0xc6, 0xbc, 0xa6, 0xe8, 0x42, 0x5b, 0x97, + 0xde, 0x73, 0xff, 0x61, 0xe7, 0x5a, 0x74, 0x1a, 0xfd, 0x21, 0x04, 0x0e, 0xb1, 0xa6, 0xa3, 0x87, + 0x58, 0xcf, 0xe1, 0x66, 0xf3, 0x19, 0xd3, 0xba, 0x6e, 0x6e, 0x86, 0x16, 0xd7, 0xcf, 0x67, 0x60, + 0xba, 0xeb, 0xbc, 0x8a, 0x5b, 0xf9, 0x5e, 0x12, 0xa9, 0x42, 0x7e, 0x51, 0x38, 0x8f, 0x7e, 0x05, + 0xf2, 0x89, 0x3e, 0x05, 0x32, 0x2a, 0x5a, 0x12, 0xf2, 0x38, 0x93, 0x2c, 0x0f, 0xd1, 0xff, 0x23, + 0x88, 0xe3, 0x83, 0x4f, 0xc2, 0x5d, 0x01, 0x05, 0xd2, 0xb6, 0x75, 0xe3, 0x2c, 0x17, 0x72, 0x60, + 0xc5, 0x1c, 0x0b, 0xac, 0x18, 0x42, 0x32, 0x47, 0x1f, 0xc6, 0x2f, 0x9a, 0x4a, 0x3a, 0xdb, 0x55, + 0x49, 0x58, 0xa5, 0x95, 0x24, 0xc5, 0xad, 0x24, 0x4c, 0xa3, 0xfc, 0x67, 0x83, 0x30, 0xac, 0xe0, + 0x97, 0x3a, 0xd8, 0xa1, 0x6f, 0x86, 0x62, 0x7d, 0xd7, 0xe2, 0x2f, 0x1d, 0xc8, 0x73, 0xb1, 0xe3, + 0x99, 0xe3, 0xd4, 0x4b, 0xfa, 0xae, 0x75, 0x79, 0x40, 0xa1, 0x1c, 0xf4, 0x55, 0xbc, 0x66, 0xc7, + 0xd9, 0xe5, 0x77, 0xc3, 0xef, 0x3e, 0x9c, 0xf5, 0x22, 0x21, 0xbd, 0x3c, 0xa0, 0x30, 0x1e, 0xd2, + 0x2c, 0x7d, 0x8d, 0x30, 0x97, 0xa6, 0xd9, 0x65, 0x73, 0x87, 0x36, 0x4b, 0x38, 0xd0, 0x65, 0x00, + 0x07, 0xbb, 0xe2, 0x46, 0xc9, 0x20, 0xe5, 0x3f, 0x75, 0x38, 0xff, 0x06, 0x76, 0x59, 0xf4, 0x70, + 0x79, 0x40, 0x29, 0x38, 0xa2, 0x40, 0x90, 0x0c, 0xd3, 0x70, 0x55, 0x7d, 0x57, 0x33, 0x4c, 0x7a, + 0x15, 0x22, 0x11, 0x69, 0xd9, 0x34, 0xdc, 0x05, 0x42, 0x4e, 0x90, 0x0c, 0x51, 0x20, 0xa2, 0x78, + 0xa9, 0x83, 0xf9, 0x15, 0xc4, 0x44, 0x51, 0x3c, 0x4b, 0x48, 0x89, 0x28, 0x28, 0x0f, 0x7a, 0x06, + 0x8a, 0xf4, 0xd4, 0x5b, 0xdd, 0x6e, 0x5a, 0xfa, 0x35, 0xfe, 0x82, 0xcf, 0xec, 0xe1, 0x10, 0x35, + 0xc2, 0x50, 0x23, 0xf4, 0x97, 0x07, 0x14, 0xd8, 0xf6, 0x4a, 0xa8, 0x06, 0x79, 0x76, 0xfb, 0xda, + 0xdd, 0xe7, 0xaf, 0x68, 0xde, 0x7b, 0x38, 0x12, 0xbd, 0x88, 0xbd, 0xb9, 0x7f, 0x79, 0x40, 0x19, + 0xd6, 0xd9, 0x4f, 0xb4, 0x04, 0x05, 0x6c, 0xd6, 0x79, 0x77, 0x8a, 0xfc, 0x65, 0xb6, 0xc3, 0xf5, + 0xc2, 0xac, 0x8b, 0xce, 0xe4, 0x31, 0xff, 0x8d, 0x9e, 0x84, 0x21, 0xdd, 0x6a, 0xb5, 0x0c, 0x97, + 0xbe, 0xea, 0x59, 0x3c, 0x77, 0x4f, 0x42, 0x47, 0x28, 0xed, 0xe5, 0x01, 0x85, 0x73, 0x91, 0xe9, + 0xa9, 0xe3, 0xa6, 0xb1, 0x87, 0x6d, 0x32, 0x98, 0xc9, 0x34, 0xd3, 0xb3, 0xc8, 0xe8, 0xe9, 0x70, + 0x0a, 0x75, 0x51, 0xa8, 0x0d, 0x73, 0xf7, 0x22, 0x9f, 0x82, 0x62, 0x40, 0x93, 0x89, 0xc5, 0xe2, + 0x1b, 0x41, 0xee, 0xec, 0x45, 0x51, 0x1e, 0x83, 0x91, 0xa0, 0xde, 0xca, 0x2d, 0x8f, 0x91, 0xde, + 0xa5, 0x28, 0xc3, 0xf0, 0x1e, 0xb6, 0x1d, 0x76, 0x91, 0x82, 0x32, 0xf2, 0x22, 0xba, 0x1b, 0x46, + 0xa9, 0xdc, 0x54, 0xf1, 0x3c, 0x43, 0xef, 0xed, 0x8c, 0xd0, 0xca, 0xab, 0x9c, 0x68, 0x06, 0x8a, + 0xed, 0x73, 0x6d, 0x8f, 0x24, 0x4b, 0x49, 0xa0, 0x7d, 0xae, 0xcd, 0x09, 0xe4, 0x2a, 0x94, 0xa2, + 0xaa, 0x1b, 0xf4, 0x9a, 0x85, 0x18, 0xaf, 0x59, 0x10, 0x9e, 0xf6, 0x37, 0x33, 0x1e, 0xb3, 0xa7, + 0xad, 0x64, 0xb9, 0x11, 0x23, 0x41, 0xb9, 0x8b, 0xe7, 0x2a, 0x5d, 0x11, 0xb6, 0xe7, 0x6b, 0x6a, + 0x79, 0x12, 0x8a, 0x7c, 0xfc, 0x5b, 0x33, 0x92, 0x42, 0x39, 0xd0, 0x09, 0xa2, 0x50, 0x9a, 0x61, + 0xaa, 0x46, 0x5d, 0xbc, 0xd4, 0x4d, 0xcb, 0xcb, 0x75, 0xf4, 0x2c, 0x94, 0x74, 0xcb, 0x74, 0xb0, + 0xe9, 0x74, 0x1c, 0xb5, 0xad, 0xd9, 0x5a, 0xcb, 0x7f, 0xf7, 0x31, 0x7e, 0x9a, 0x16, 0x04, 0xf9, + 0x3a, 0xa5, 0x56, 0xc6, 0xf5, 0x70, 0x05, 0x5a, 0x01, 0xd8, 0xd3, 0x9a, 0x46, 0x5d, 0x73, 0x2d, + 0xdb, 0xe1, 0xef, 0x08, 0xf5, 0x02, 0xbb, 0x2a, 0x08, 0xb7, 0xda, 0x75, 0xcd, 0xc5, 0x3c, 0x88, + 0x0a, 0xf0, 0xa3, 0xfb, 0x60, 0x5c, 0x6b, 0xb7, 0x55, 0xc7, 0xd5, 0x5c, 0xac, 0x6e, 0x1f, 0xb8, + 0xd8, 0xa1, 0xf6, 0x62, 0x44, 0x19, 0xd5, 0xda, 0xed, 0x0d, 0x52, 0x5b, 0x23, 0x95, 0x72, 0xdd, + 0x9b, 0x6d, 0xba, 0x34, 0xbd, 0xd8, 0x4e, 0xf2, 0x63, 0x3b, 0x52, 0x47, 0x6f, 0xb8, 0x30, 0x19, + 0x88, 0x4b, 0x41, 0x43, 0xbb, 0xd8, 0x68, 0xec, 0xba, 0x74, 0xd8, 0x59, 0x85, 0x97, 0xc8, 0xc4, + 0xb4, 0x6d, 0x6b, 0x8f, 0x5d, 0xda, 0xca, 0x2b, 0xac, 0x20, 0xff, 0x62, 0x06, 0x26, 0xba, 0x96, + 0x2f, 0xc1, 0xa5, 0xef, 0x59, 0xf0, 0xb6, 0xc8, 0x6f, 0x74, 0x81, 0xe0, 0x6a, 0x75, 0xfe, 0xee, + 0x50, 0xf1, 0xdc, 0x9d, 0x3d, 0x24, 0x70, 0x99, 0x12, 0xf1, 0x81, 0x73, 0x16, 0xb4, 0x05, 0xa5, + 0xa6, 0xe6, 0xb8, 0x2a, 0x5b, 0x45, 0xec, 0x65, 0xed, 0xec, 0xa1, 0x96, 0x60, 0x45, 0x13, 0xab, + 0x8f, 0x28, 0x37, 0x87, 0x1b, 0x6b, 0x86, 0x6a, 0xd1, 0xf3, 0x30, 0xb5, 0x7d, 0xf0, 0xb2, 0x66, + 0xba, 0x86, 0x49, 0xef, 0x7c, 0x85, 0xe7, 0x68, 0xa6, 0x07, 0xf4, 0xd2, 0x9e, 0x51, 0xc7, 0xa6, + 0x2e, 0x26, 0x67, 0xd2, 0x83, 0xf0, 0x26, 0xcf, 0x91, 0x9f, 0x87, 0xb1, 0xb0, 0x2d, 0x42, 0x63, + 0x90, 0x71, 0xf7, 0xb9, 0x44, 0x32, 0xee, 0x3e, 0x7a, 0x8c, 0x47, 0xe4, 0x19, 0x7a, 0x69, 0xb1, + 0x97, 0xb3, 0xe0, 0xdc, 0xfe, 0x2b, 0x9d, 0xb2, 0xec, 0xad, 0x04, 0xcf, 0x30, 0x44, 0xb1, 0xe5, + 0xd3, 0x30, 0x1e, 0x31, 0x62, 0x81, 0x69, 0x95, 0x82, 0xd3, 0x2a, 0x8f, 0xc3, 0x68, 0xc8, 0x56, + 0xc9, 0xbf, 0x37, 0x04, 0x79, 0x05, 0x3b, 0x6d, 0xa2, 0xc4, 0xe8, 0x32, 0x14, 0xf0, 0xbe, 0x8e, + 0xdb, 0xae, 0xb0, 0x0a, 0x87, 0x19, 0x71, 0xc6, 0xb3, 0x24, 0xe8, 0x89, 0xb9, 0xf2, 0x98, 0xd1, + 0xf9, 0x90, 0x4b, 0xbe, 0x3b, 0x09, 0x24, 0xe8, 0x93, 0xdf, 0x1d, 0xf6, 0xc9, 0xf7, 0x24, 0xf0, + 0x46, 0x9c, 0xf2, 0xf9, 0x90, 0x53, 0x4e, 0x6a, 0x38, 0xe4, 0x95, 0x97, 0x63, 0xbc, 0x72, 0xd2, + 0xf0, 0x7b, 0xb8, 0xe5, 0xe5, 0x18, 0xb7, 0x3c, 0x9b, 0xd8, 0x97, 0x58, 0xbf, 0xfc, 0xee, 0xb0, + 0x5f, 0x4e, 0x12, 0x47, 0xc4, 0x31, 0xaf, 0xc4, 0x39, 0xe6, 0xd3, 0x09, 0x18, 0x3d, 0x3d, 0xf3, + 0x42, 0x97, 0x67, 0xbe, 0x2f, 0x01, 0x2a, 0xc6, 0x35, 0x2f, 0x87, 0x7c, 0x22, 0xa4, 0x92, 0x4d, + 0xbc, 0x53, 0x44, 0x17, 0xbb, 0xbd, 0xfc, 0xa9, 0x24, 0x55, 0x8b, 0x73, 0xf3, 0x4f, 0x45, 0xdc, + 0xfc, 0xbd, 0x49, 0xa3, 0x8a, 0xf8, 0x79, 0xdf, 0x3b, 0x9f, 0x26, 0xf6, 0x31, 0xb2, 0x32, 0x88, + 0x2d, 0xc5, 0xb6, 0x6d, 0xd9, 0x22, 0xaf, 0x41, 0x0b, 0xf2, 0x2c, 0xb1, 0xd8, 0xbe, 0xfe, 0x1f, + 0xe2, 0xc9, 0xe9, 0xa2, 0x0d, 0x68, 0xbb, 0xfc, 0x15, 0xc9, 0xe7, 0xa5, 0x96, 0x2d, 0x68, 0xed, + 0x0b, 0xdc, 0xda, 0x07, 0x1c, 0x7c, 0x26, 0xec, 0xe0, 0x67, 0xa0, 0x48, 0x7c, 0x4a, 0xc4, 0x77, + 0x6b, 0x6d, 0xe1, 0xbb, 0xd1, 0x19, 0x98, 0xa0, 0xf6, 0x97, 0x85, 0x01, 0xdc, 0x90, 0xe4, 0xa8, + 0x21, 0x19, 0x27, 0x0f, 0x98, 0x04, 0x99, 0xa3, 0x78, 0x10, 0x26, 0x03, 0xb4, 0x04, 0x97, 0xfa, + 0x02, 0xe6, 0xa4, 0x4a, 0x1e, 0xf5, 0x7c, 0xbb, 0x7d, 0x59, 0x73, 0x76, 0xe5, 0x55, 0x5f, 0x40, + 0x7e, 0x5c, 0x80, 0x20, 0xa7, 0x5b, 0x75, 0x36, 0xee, 0x51, 0x85, 0xfe, 0x26, 0xb1, 0x42, 0xd3, + 0x6a, 0xf0, 0x8b, 0xa8, 0xe4, 0x27, 0xa1, 0xf2, 0x96, 0x76, 0x81, 0xad, 0x59, 0xf9, 0x4b, 0x92, + 0x8f, 0xe7, 0x87, 0x0a, 0x71, 0x5e, 0x5d, 0xba, 0x95, 0x5e, 0x3d, 0xf3, 0xe6, 0xbc, 0xba, 0xfc, + 0x86, 0xe4, 0x4f, 0xa9, 0xe7, 0xaf, 0x8f, 0x26, 0x02, 0xa2, 0x5d, 0xec, 0x85, 0x7c, 0x76, 0x61, + 0x9a, 0x15, 0x44, 0xa8, 0x35, 0x14, 0x93, 0xa0, 0x18, 0x0e, 0x24, 0x35, 0xd0, 0xa3, 0xd4, 0xcf, + 0x5b, 0x3b, 0xdc, 0x34, 0xcc, 0x24, 0x24, 0x7a, 0x14, 0x46, 0x1d, 0xf0, 0x2f, 0x85, 0x50, 0xd8, + 0x70, 0x07, 0x14, 0x48, 0xd7, 0xd9, 0x5b, 0x68, 0xc0, 0xb3, 0xbc, 0xa2, 0x42, 0xae, 0x03, 0xea, + 0xb6, 0x31, 0xe8, 0x0a, 0x0c, 0xe1, 0x3d, 0x7a, 0x29, 0x98, 0x25, 0x9b, 0xee, 0xe8, 0xe9, 0x88, + 0xb1, 0xe9, 0xd6, 0xca, 0x44, 0x98, 0xdf, 0xbb, 0x31, 0x53, 0x62, 0x3c, 0x0f, 0x58, 0x2d, 0xc3, + 0xc5, 0xad, 0xb6, 0x7b, 0xa0, 0x70, 0x14, 0xf9, 0x43, 0x19, 0xe2, 0x0f, 0x43, 0xf6, 0x27, 0x56, + 0xbc, 0x62, 0xd1, 0x64, 0x02, 0x21, 0x52, 0x3a, 0x91, 0xdf, 0x09, 0xd0, 0xd0, 0x1c, 0xf5, 0xba, + 0x66, 0xba, 0xb8, 0xce, 0xe5, 0x5e, 0x68, 0x68, 0xce, 0x73, 0xb4, 0x82, 0xc4, 0x9b, 0xe4, 0x71, + 0xc7, 0xc1, 0x75, 0x3a, 0x01, 0x59, 0x65, 0xb8, 0xa1, 0x39, 0x5b, 0x0e, 0xae, 0x07, 0xc6, 0x3a, + 0x7c, 0x2b, 0xc6, 0x1a, 0x96, 0x77, 0x3e, 0x2a, 0xef, 0x0f, 0x67, 0xfc, 0xd5, 0xe1, 0x87, 0x0f, + 0x3f, 0x99, 0xb2, 0xf8, 0x34, 0xdd, 0x53, 0x84, 0x9d, 0x00, 0x7a, 0x01, 0x26, 0xbc, 0x55, 0xa9, + 0x76, 0xe8, 0x6a, 0x15, 0x5a, 0xd8, 0xdf, 0xe2, 0x2e, 0xed, 0x85, 0xab, 0x1d, 0xf4, 0x3e, 0xb8, + 0x2d, 0x62, 0x83, 0xbc, 0x06, 0x32, 0x7d, 0x99, 0xa2, 0x63, 0x61, 0x53, 0x24, 0xf0, 0x7d, 0xe9, + 0x65, 0x6f, 0xc9, 0xaa, 0xb9, 0x87, 0x84, 0xb0, 0x41, 0xf7, 0x16, 0xa7, 0x13, 0xf2, 0xef, 0x4b, + 0x30, 0x1e, 0xe9, 0x20, 0x7a, 0x02, 0x06, 0x99, 0x07, 0x96, 0x0e, 0x4d, 0x84, 0x50, 0x89, 0xf3, + 0x31, 0x31, 0x06, 0x34, 0x0f, 0x79, 0xcc, 0xa3, 0x6b, 0x2e, 0x94, 0x7b, 0x13, 0x82, 0x70, 0xce, + 0xef, 0xb1, 0xa1, 0x45, 0x28, 0x78, 0xa2, 0x4f, 0xd8, 0xb9, 0x79, 0x33, 0xc7, 0x41, 0x7c, 0x46, + 0x79, 0x01, 0x8a, 0x81, 0xee, 0xb1, 0x57, 0x32, 0xf7, 0xf9, 0x76, 0x8b, 0x05, 0xd0, 0xf9, 0x96, + 0xb6, 0x4f, 0x77, 0x5a, 0xe8, 0x36, 0x18, 0x26, 0x0f, 0x1b, 0xfc, 0x9d, 0xb5, 0xac, 0x32, 0xd4, + 0xd2, 0xf6, 0x2f, 0x69, 0x8e, 0xfc, 0xf3, 0x12, 0x8c, 0x85, 0xfb, 0x89, 0xee, 0x07, 0x44, 0x68, + 0xb5, 0x06, 0x56, 0xcd, 0x4e, 0x8b, 0xf9, 0x48, 0x81, 0x38, 0xde, 0xd2, 0xf6, 0xe7, 0x1b, 0xf8, + 0x4a, 0xa7, 0x45, 0x9b, 0x76, 0xd0, 0x2a, 0x94, 0x04, 0xb1, 0x48, 0x76, 0x71, 0xa9, 0x9c, 0xe8, + 0xfe, 0x6c, 0x10, 0x27, 0x60, 0x7b, 0xdd, 0x57, 0xc9, 0x5e, 0x77, 0x8c, 0xe1, 0x89, 0x27, 0xf2, + 0xa3, 0x30, 0x1e, 0x19, 0x31, 0x92, 0x61, 0xb4, 0xdd, 0xd9, 0x56, 0xaf, 0xe1, 0x03, 0xfa, 0x15, + 0x02, 0xa6, 0xea, 0x05, 0xa5, 0xd8, 0xee, 0x6c, 0x3f, 0x83, 0x0f, 0x68, 0xee, 0x50, 0xd6, 0x61, + 0x2c, 0xbc, 0x99, 0x22, 0x8e, 0xc3, 0xb6, 0x3a, 0x66, 0x5d, 0x7c, 0x5f, 0x82, 0x16, 0xd0, 0x05, + 0x18, 0xdc, 0xb3, 0x98, 0x36, 0x1f, 0xb6, 0x7b, 0xba, 0x6a, 0xb9, 0x38, 0xb0, 0x25, 0x63, 0x3c, + 0xb2, 0x03, 0x83, 0x54, 0x2f, 0x63, 0x0f, 0x2a, 0xae, 0x02, 0x68, 0xae, 0x6b, 0x1b, 0xdb, 0x1d, + 0x1f, 0xbe, 0x3c, 0xd7, 0x9d, 0xd6, 0x9f, 0x5b, 0xd7, 0x0c, 0xbb, 0x76, 0x07, 0xd7, 0xec, 0x29, + 0x9f, 0x27, 0xa0, 0xdd, 0x01, 0x24, 0xf9, 0xf5, 0x1c, 0x0c, 0xb1, 0xed, 0x26, 0x7a, 0x32, 0x9c, + 0xfc, 0x28, 0x9e, 0x9b, 0xee, 0xd5, 0x7d, 0x46, 0xc5, 0x7b, 0xef, 0x45, 0x50, 0xf7, 0x45, 0x33, + 0x0a, 0xb5, 0xe2, 0x6b, 0x37, 0x66, 0x86, 0x69, 0xf4, 0xb1, 0xbc, 0xe8, 0xa7, 0x17, 0x7a, 0xed, + 0xae, 0x45, 0x2e, 0x23, 0xd7, 0x77, 0x2e, 0xe3, 0x32, 0x8c, 0x06, 0xc2, 0x2d, 0xa3, 0xce, 0xf7, + 0x29, 0xd3, 0x87, 0x2d, 0xba, 0xe5, 0x45, 0xde, 0xff, 0xa2, 0x17, 0x8e, 0x2d, 0xd7, 0xd1, 0x6c, + 0x78, 0x93, 0x4d, 0xa3, 0x36, 0x16, 0x2e, 0x04, 0xf6, 0xcd, 0xf4, 0xd3, 0x08, 0xb7, 0x43, 0x81, + 0xbe, 0x5f, 0x4e, 0x49, 0x58, 0xf4, 0x90, 0x27, 0x15, 0xf4, 0xe1, 0x29, 0x18, 0xf7, 0x03, 0x1b, + 0x46, 0x92, 0x67, 0x28, 0x7e, 0x35, 0x25, 0x7c, 0x17, 0x4c, 0x99, 0x78, 0xdf, 0x55, 0xa3, 0xd4, + 0x05, 0x4a, 0x8d, 0xc8, 0xb3, 0xab, 0x61, 0x8e, 0x7b, 0x61, 0xcc, 0x37, 0xa1, 0x94, 0x16, 0x58, + 0xea, 0xc3, 0xab, 0xa5, 0x64, 0x27, 0x20, 0xef, 0x85, 0x9d, 0x45, 0x4a, 0x30, 0xac, 0xb1, 0x68, + 0xd3, 0x0b, 0x64, 0x6d, 0xec, 0x74, 0x9a, 0x2e, 0x07, 0x19, 0xa1, 0x34, 0x34, 0x90, 0x55, 0x58, + 0x3d, 0xa5, 0xbd, 0x1b, 0x46, 0x85, 0x55, 0x61, 0x74, 0xa3, 0x94, 0x6e, 0x44, 0x54, 0x52, 0xa2, + 0xd3, 0x50, 0x6a, 0xdb, 0x56, 0xdb, 0x72, 0xb0, 0xad, 0x6a, 0xf5, 0xba, 0x8d, 0x1d, 0xa7, 0x3c, + 0xc6, 0xf0, 0x44, 0xfd, 0x3c, 0xab, 0x96, 0x1f, 0x82, 0x61, 0x11, 0x4f, 0x4f, 0xc1, 0x60, 0xcd, + 0xb3, 0x90, 0x39, 0x85, 0x15, 0x88, 0x7f, 0x9d, 0x6f, 0xb7, 0x79, 0x76, 0x8d, 0xfc, 0x94, 0x9b, + 0x30, 0xcc, 0x27, 0x2c, 0x36, 0xa7, 0xb2, 0x0a, 0x23, 0x6d, 0xcd, 0x26, 0xc3, 0x08, 0x66, 0x56, + 0x7a, 0xed, 0x08, 0xd7, 0x35, 0xdb, 0xdd, 0xc0, 0x6e, 0x28, 0xc1, 0x52, 0xa4, 0xfc, 0xac, 0x4a, + 0x3e, 0x0f, 0xa3, 0x21, 0x1a, 0xd2, 0x4d, 0xd7, 0x72, 0xb5, 0xa6, 0x58, 0xe8, 0xb4, 0xe0, 0xf5, + 0x24, 0xe3, 0xf7, 0x44, 0xbe, 0x00, 0x05, 0x6f, 0xae, 0xc8, 0x46, 0x43, 0x88, 0x42, 0xe2, 0xe2, + 0x67, 0x45, 0x9a, 0x44, 0xb2, 0xae, 0xf3, 0x2f, 0x65, 0x65, 0x15, 0x56, 0x90, 0x71, 0xc0, 0x30, + 0x31, 0x6f, 0x86, 0xde, 0x0d, 0xc3, 0xdc, 0x30, 0xf1, 0xf5, 0xd8, 0x2b, 0x5d, 0xb4, 0x4e, 0x2d, + 0x95, 0x48, 0x17, 0x31, 0xbb, 0xe5, 0x37, 0x93, 0x09, 0x36, 0xf3, 0x7e, 0xc8, 0x0b, 0xe3, 0x13, + 0xf6, 0x12, 0xac, 0x85, 0x93, 0x49, 0x5e, 0x82, 0x37, 0xe2, 0x33, 0x12, 0x6d, 0x72, 0x8c, 0x86, + 0x89, 0xeb, 0xaa, 0xbf, 0x04, 0xf9, 0x7b, 0xcb, 0xe3, 0xec, 0xc1, 0x8a, 0x58, 0x5f, 0xf2, 0xbb, + 0x60, 0x88, 0xf5, 0x35, 0xd6, 0xc4, 0xc5, 0xb9, 0xd6, 0xef, 0x48, 0x90, 0x17, 0xee, 0x23, 0x96, + 0x29, 0x34, 0x88, 0xcc, 0x51, 0x07, 0x71, 0xeb, 0x4d, 0xd2, 0x03, 0x80, 0xa8, 0xa6, 0xa8, 0x7b, + 0x96, 0x6b, 0x98, 0x0d, 0x95, 0xcd, 0x05, 0x7f, 0x7d, 0x93, 0x3e, 0xb9, 0x4a, 0x1f, 0xac, 0x93, + 0xfa, 0x33, 0x77, 0x43, 0x31, 0x90, 0xe5, 0x42, 0xc3, 0x90, 0xbd, 0x82, 0xaf, 0x97, 0x06, 0x50, + 0x11, 0x86, 0x15, 0x4c, 0x73, 0x04, 0x25, 0xe9, 0xdc, 0xeb, 0xc3, 0x30, 0x3e, 0x5f, 0x5b, 0x58, + 0x9e, 0x6f, 0xb7, 0x9b, 0x06, 0x7f, 0xad, 0x71, 0x0d, 0x72, 0x74, 0x9f, 0x9c, 0xe2, 0x7c, 0xa7, + 0x92, 0x26, 0xe1, 0x84, 0x14, 0x18, 0xa4, 0xdb, 0x69, 0x94, 0xe6, 0xd8, 0xa7, 0x92, 0x2a, 0x0f, + 0x45, 0x3a, 0x49, 0x15, 0x2e, 0xc5, 0x69, 0x50, 0x25, 0x4d, 0x72, 0x0a, 0xbd, 0x0f, 0x0a, 0xfe, + 0x3e, 0x39, 0xed, 0x19, 0x51, 0x25, 0x75, 0xda, 0x8a, 0xe0, 0xfb, 0x3b, 0x83, 0xb4, 0x47, 0x13, + 0x95, 0xd4, 0xf9, 0x1a, 0xf4, 0x3c, 0x0c, 0x8b, 0x3d, 0x58, 0xba, 0x53, 0x9c, 0x4a, 0xca, 0x94, + 0x12, 0x99, 0x3e, 0xb6, 0x75, 0x4e, 0x73, 0x54, 0x55, 0x49, 0x95, 0x37, 0x43, 0x5b, 0x30, 0xc4, + 0x83, 0xdf, 0x54, 0x27, 0x3d, 0x95, 0x74, 0x89, 0x22, 0x22, 0x64, 0x3f, 0x39, 0x91, 0xf6, 0x78, + 0xae, 0x92, 0x3a, 0x61, 0x88, 0x34, 0x80, 0xc0, 0x7e, 0x3a, 0xf5, 0xb9, 0x5b, 0x25, 0x7d, 0x22, + 0x10, 0xbd, 0x17, 0xf2, 0xde, 0xae, 0x29, 0xe5, 0x49, 0x5a, 0x25, 0x6d, 0x2e, 0xae, 0xb6, 0x95, + 0xfa, 0x96, 0xc4, 0xfd, 0x89, 0xb7, 0x24, 0xfc, 0x43, 0x6e, 0xef, 0x18, 0xfc, 0x17, 0x1f, 0x82, + 0x7b, 0xf8, 0xb5, 0x1c, 0xc7, 0xd5, 0xae, 0x19, 0x66, 0xc3, 0xbb, 0xfc, 0xc4, 0xcb, 0xfc, 0x24, + 0xfc, 0x38, 0xbf, 0xff, 0x24, 0x6a, 0x0f, 0xbd, 0x02, 0x55, 0x49, 0x3e, 0x5a, 0x7f, 0xd3, 0xc7, + 0xdc, 0x95, 0x84, 0x1b, 0x5b, 0xf2, 0x27, 0x24, 0x18, 0xbb, 0x6c, 0x38, 0xae, 0x65, 0x1b, 0xba, + 0xd6, 0xa4, 0x16, 0xc3, 0x3f, 0x79, 0x91, 0xfa, 0x3f, 0x79, 0x79, 0x0a, 0x86, 0xf6, 0xb4, 0xa6, + 0x83, 0x5d, 0x1e, 0x77, 0xdf, 0x35, 0x17, 0x2f, 0x92, 0x2e, 0x0f, 0xc3, 0xd9, 0xf8, 0x45, 0xac, + 0xdf, 0xc8, 0x90, 0x6d, 0x62, 0xab, 0x65, 0x38, 0xec, 0x83, 0x9e, 0x64, 0xdf, 0x54, 0x83, 0x9c, + 0xad, 0xb9, 0xdc, 0xa5, 0xd5, 0xe6, 0xf8, 0x35, 0xab, 0xfb, 0x92, 0xaf, 0x4e, 0xcd, 0x2d, 0x62, + 0x5d, 0xa1, 0xbc, 0xe8, 0x67, 0x80, 0xec, 0xc3, 0x54, 0x8a, 0xc3, 0xe2, 0xee, 0xf9, 0xfe, 0x70, + 0x6e, 0xde, 0x98, 0x19, 0x3f, 0xd0, 0x5a, 0xcd, 0xaa, 0x2c, 0x70, 0x64, 0x85, 0x6c, 0xe7, 0x48, + 0x17, 0x51, 0x1b, 0xc8, 0x9e, 0x4c, 0xd5, 0x77, 0x35, 0xb3, 0x81, 0x59, 0x23, 0x34, 0xf9, 0x51, + 0xbb, 0xdc, 0x77, 0x23, 0xc7, 0xfd, 0x46, 0x02, 0x70, 0xb2, 0x32, 0xda, 0xd2, 0xf6, 0x17, 0x68, + 0x05, 0x69, 0xb1, 0x9a, 0x7f, 0xf5, 0xb3, 0x33, 0x03, 0x54, 0x62, 0xdf, 0x94, 0x00, 0x7c, 0x89, + 0xa1, 0x9f, 0x81, 0x92, 0xee, 0x95, 0x28, 0xaf, 0xc8, 0x60, 0x9e, 0xea, 0x35, 0x23, 0x11, 0x79, + 0x33, 0x37, 0xfd, 0x8d, 0x1b, 0x33, 0x92, 0x32, 0xae, 0x47, 0xa6, 0xe2, 0xbd, 0x50, 0x64, 0xb9, + 0x08, 0x95, 0xba, 0xfc, 0x4c, 0xa2, 0xcb, 0x9f, 0x26, 0x58, 0x37, 0x6f, 0xcc, 0x20, 0x36, 0xac, + 0x00, 0xb3, 0x4c, 0x03, 0x01, 0x60, 0x35, 0x84, 0x21, 0x30, 0xa6, 0x7f, 0x27, 0x41, 0x71, 0x31, + 0xf0, 0xde, 0x42, 0x19, 0x86, 0x5b, 0x96, 0x69, 0x5c, 0xc3, 0xb6, 0x97, 0xe1, 0x66, 0x45, 0x54, + 0x81, 0x3c, 0xfb, 0x84, 0x84, 0x7b, 0x20, 0xbe, 0x4d, 0x2a, 0xca, 0x84, 0xeb, 0x3a, 0xde, 0x76, + 0x0c, 0x31, 0x1b, 0x8a, 0x28, 0xa2, 0x8b, 0x50, 0x72, 0xb0, 0xde, 0xb1, 0x0d, 0xf7, 0x40, 0xd5, + 0x2d, 0xd3, 0xd5, 0x74, 0x96, 0xa5, 0x2e, 0xd4, 0x6e, 0xbf, 0x79, 0x63, 0xe6, 0x36, 0xd6, 0xd7, + 0x28, 0x85, 0xac, 0x8c, 0x8b, 0xaa, 0x05, 0x56, 0x43, 0x5a, 0xa8, 0x63, 0x57, 0x33, 0x9a, 0xec, + 0x6c, 0xb5, 0xa0, 0x88, 0x62, 0x60, 0x2c, 0xff, 0x62, 0x38, 0x18, 0xf2, 0x5e, 0x87, 0x92, 0xd5, + 0xc6, 0x36, 0x4d, 0x1b, 0x85, 0x62, 0xdf, 0xda, 0x8a, 0xdf, 0x72, 0x94, 0x42, 0xfe, 0xfe, 0x8d, + 0x99, 0x07, 0x53, 0x68, 0xd0, 0x55, 0xad, 0xc9, 0xf7, 0x10, 0xca, 0xb8, 0xc0, 0xe0, 0x15, 0x64, + 0xc8, 0x81, 0xac, 0x52, 0x67, 0x5b, 0xdc, 0xe8, 0x0b, 0x0d, 0x39, 0x4a, 0x21, 0x07, 0xd3, 0xd9, + 0xb4, 0x86, 0x44, 0x81, 0x2f, 0x6a, 0x46, 0x53, 0x7c, 0x57, 0x47, 0xe1, 0x25, 0xb4, 0x0c, 0x43, + 0x8e, 0xab, 0xb9, 0x1d, 0xf6, 0x55, 0x87, 0xc1, 0xda, 0x43, 0x29, 0xfb, 0x5c, 0xb3, 0xcc, 0xfa, + 0x06, 0x65, 0x54, 0x38, 0x00, 0xba, 0x08, 0x43, 0xae, 0x75, 0x0d, 0x9b, 0x5c, 0xa8, 0x7d, 0xad, + 0x78, 0x7a, 0x4d, 0x94, 0x71, 0x23, 0x17, 0x4a, 0x75, 0xdc, 0xc4, 0x0d, 0x2a, 0x4a, 0x67, 0x57, + 0xb3, 0xb1, 0xc3, 0xbe, 0x6d, 0x5b, 0x5b, 0xee, 0x7b, 0x59, 0x72, 0x01, 0x45, 0xf1, 0x64, 0x65, + 0xdc, 0xab, 0xda, 0xa0, 0x35, 0xe8, 0x99, 0xd0, 0x2b, 0x37, 0xde, 0xa5, 0x98, 0x1e, 0x6b, 0x2f, + 0xa0, 0xe5, 0x62, 0xa7, 0x15, 0x7c, 0x61, 0xe7, 0x22, 0x94, 0x3a, 0xe6, 0xb6, 0x65, 0xd2, 0x6f, + 0x61, 0xf0, 0xe8, 0x9b, 0x6c, 0x92, 0xb3, 0xc1, 0x59, 0x8b, 0x52, 0xc8, 0xca, 0xb8, 0x57, 0xc5, + 0xcf, 0x5a, 0xea, 0x30, 0xe6, 0x53, 0xd1, 0xa5, 0x5b, 0x48, 0x5c, 0xba, 0x77, 0xf1, 0xa5, 0x7b, + 0x2c, 0xda, 0x8a, 0xbf, 0x7a, 0x47, 0xbd, 0xca, 0x4d, 0x96, 0x62, 0x00, 0xdf, 0x60, 0xf0, 0x03, + 0x3a, 0x39, 0xd9, 0xea, 0x88, 0x63, 0x0e, 0x9f, 0x17, 0xbd, 0x1f, 0x26, 0x5b, 0x86, 0xa9, 0x3a, + 0xb8, 0xb9, 0xa3, 0x72, 0x01, 0x13, 0x48, 0xfa, 0x2d, 0xc3, 0xda, 0x4a, 0x7f, 0xfa, 0x70, 0xf3, + 0xc6, 0x4c, 0x85, 0x1b, 0xd5, 0x6e, 0x48, 0x59, 0x99, 0x68, 0x19, 0xe6, 0x06, 0x6e, 0xee, 0x2c, + 0x7a, 0x75, 0xd5, 0x91, 0xbf, 0xf6, 0xd9, 0x99, 0x01, 0x6f, 0x01, 0x1b, 0x30, 0xe2, 0x2f, 0x2c, + 0xec, 0xa0, 0x35, 0x28, 0x68, 0xa2, 0x40, 0xf3, 0x60, 0x23, 0xa9, 0x95, 0x3d, 0xb0, 0x40, 0x7d, + 0x0c, 0x66, 0x2b, 0x5e, 0xf9, 0x6f, 0x27, 0x25, 0xf9, 0x23, 0x19, 0x18, 0x5a, 0xbc, 0x4a, 0xef, + 0x89, 0xbe, 0x0c, 0x13, 0xbe, 0xb2, 0x85, 0x2d, 0xc5, 0xea, 0xcd, 0x1b, 0x33, 0xe5, 0xa8, 0x3e, + 0xf6, 0x69, 0x2a, 0xe6, 0x75, 0x5d, 0xf4, 0xc4, 0x5f, 0x24, 0xc2, 0x56, 0xbc, 0x1c, 0x4c, 0x6e, + 0x8b, 0xb6, 0x33, 0xd1, 0xb6, 0xbb, 0x48, 0x8e, 0x60, 0xa6, 0xfc, 0xec, 0x37, 0xaf, 0x09, 0x18, + 0xce, 0x25, 0x18, 0x66, 0xb2, 0x70, 0x50, 0x15, 0x06, 0xdb, 0xe4, 0x07, 0xcf, 0xb0, 0x4f, 0xf7, + 0x5c, 0x4d, 0x94, 0x5e, 0x64, 0x0c, 0x29, 0x8b, 0xfc, 0xb9, 0x2c, 0xc0, 0xe2, 0xd5, 0xab, 0x9b, + 0xb6, 0xd1, 0x6e, 0x62, 0xf7, 0x87, 0x2a, 0xd7, 0x9f, 0x93, 0xe0, 0x98, 0x2f, 0x35, 0xc7, 0xd6, + 0x23, 0xc2, 0x7d, 0xf6, 0xe6, 0x8d, 0x99, 0x3b, 0xa2, 0xc2, 0x0d, 0x90, 0x1d, 0x41, 0xc0, 0x93, + 0x1e, 0xd0, 0x86, 0xad, 0xc7, 0xf7, 0xa3, 0xee, 0xb8, 0x5e, 0x3f, 0xb2, 0xbd, 0xfb, 0x11, 0x20, + 0x7b, 0x53, 0xfd, 0x58, 0x74, 0xdc, 0xee, 0xb9, 0xde, 0x80, 0xa2, 0x3f, 0x47, 0x0e, 0x5a, 0x84, + 0xbc, 0xcb, 0x7f, 0xf3, 0x29, 0x97, 0x7b, 0x4f, 0xb9, 0x60, 0xe3, 0xd3, 0xee, 0x71, 0xca, 0xff, + 0x39, 0x03, 0xe0, 0xaf, 0xea, 0x9f, 0xd4, 0x15, 0x45, 0xdc, 0x29, 0x77, 0x7e, 0xd9, 0x23, 0x05, + 0xd0, 0x9c, 0x3b, 0x30, 0x5b, 0x7f, 0x9c, 0x81, 0xc9, 0x2d, 0x61, 0xf9, 0xdf, 0x91, 0x30, 0x5a, + 0x87, 0x61, 0x6c, 0xba, 0xb6, 0x81, 0xc5, 0x91, 0xda, 0xbb, 0x7a, 0x69, 0x6b, 0x8c, 0xd4, 0xe8, + 0xe7, 0x3a, 0xc5, 0x31, 0x01, 0x87, 0x09, 0xc8, 0xfa, 0x63, 0x59, 0x28, 0xf7, 0xe2, 0x42, 0x0b, + 0x30, 0xae, 0xdb, 0x98, 0x56, 0xa8, 0xc1, 0x5b, 0x5b, 0xb5, 0x8a, 0xbf, 0x93, 0x88, 0x10, 0xc8, + 0xca, 0x98, 0xa8, 0xe1, 0xb1, 0x41, 0x03, 0x48, 0x98, 0x4f, 0x96, 0x0c, 0xa1, 0x4a, 0x19, 0xd7, + 0xcb, 0x3c, 0x38, 0x10, 0x8d, 0x84, 0x01, 0x58, 0x74, 0x30, 0xe6, 0xd7, 0xd2, 0xf0, 0xe0, 0x25, + 0x18, 0x37, 0x4c, 0xc3, 0x35, 0xb4, 0xa6, 0xba, 0xad, 0x35, 0x35, 0x53, 0x3f, 0xca, 0x2e, 0x89, + 0x39, 0x74, 0xde, 0x6c, 0x04, 0x4e, 0x56, 0xc6, 0x78, 0x4d, 0x8d, 0x55, 0xa0, 0xcb, 0x30, 0x2c, + 0x9a, 0xca, 0x1d, 0x29, 0x96, 0x14, 0xec, 0x81, 0x19, 0xf9, 0x68, 0x16, 0x26, 0x14, 0x5c, 0x7f, + 0x67, 0x2a, 0xfa, 0x9b, 0x8a, 0x55, 0x00, 0x66, 0x48, 0x88, 0x27, 0x39, 0xc2, 0x6c, 0x10, 0x53, + 0x54, 0x60, 0x08, 0x8b, 0x8e, 0x1b, 0x98, 0x8f, 0x3f, 0xc9, 0xc2, 0x48, 0x70, 0x3e, 0xde, 0x71, + 0xf1, 0x3f, 0x3a, 0x2e, 0x1e, 0x2d, 0xfb, 0xa6, 0x31, 0xc7, 0xff, 0xed, 0x42, 0x0f, 0xd3, 0xd8, + 0xb5, 0xa4, 0x7a, 0xdb, 0xc4, 0x3f, 0xcb, 0xc0, 0x10, 0x3f, 0x98, 0xd6, 0xbb, 0x36, 0x36, 0x52, + 0xd2, 0xc1, 0xf7, 0xe1, 0xfb, 0x9a, 0x57, 0x63, 0xf6, 0x35, 0x3f, 0x0d, 0x63, 0x2d, 0x6d, 0x5f, + 0x0d, 0x5d, 0xe3, 0x92, 0x66, 0x47, 0x6b, 0x27, 0x7c, 0x94, 0xf0, 0x73, 0x96, 0xae, 0xf1, 0x0f, + 0x25, 0xd1, 0xe3, 0x50, 0x24, 0x14, 0xbe, 0x97, 0x20, 0xec, 0xc7, 0xfd, 0xbc, 0x48, 0xe0, 0xa1, + 0xac, 0x40, 0x4b, 0xdb, 0x5f, 0x62, 0x05, 0xb4, 0x02, 0x68, 0xd7, 0xcb, 0xd2, 0xa9, 0xbe, 0x28, + 0x09, 0xff, 0x9d, 0x37, 0x6f, 0xcc, 0x9c, 0x60, 0xfc, 0xdd, 0x34, 0xb2, 0x32, 0xe1, 0x57, 0x0a, + 0xb4, 0x47, 0x00, 0xc8, 0xb8, 0x54, 0xf6, 0xb2, 0x24, 0xdb, 0x5d, 0x1f, 0xbb, 0x79, 0x63, 0x66, + 0x82, 0xa1, 0xf8, 0xcf, 0x64, 0xa5, 0x40, 0x0a, 0x8b, 0xe4, 0x77, 0x40, 0xf0, 0xbf, 0x2a, 0x01, + 0xf2, 0x7d, 0x50, 0xe0, 0xf6, 0x2f, 0x04, 0x36, 0x69, 0xd2, 0xe1, 0xfb, 0x3e, 0x9f, 0x5f, 0xec, + 0xfb, 0x02, 0x4b, 0xf7, 0xbc, 0x6f, 0xaf, 0xc5, 0x05, 0x86, 0x98, 0x37, 0x4b, 0xe7, 0x16, 0x2c, + 0xc3, 0x3b, 0x59, 0xef, 0x36, 0xd0, 0xff, 0x5e, 0x82, 0x13, 0x5d, 0xda, 0xe4, 0x75, 0xf6, 0x7d, + 0x80, 0xec, 0xc0, 0x43, 0xfe, 0xf9, 0x6c, 0x89, 0xdf, 0x6f, 0xed, 0x53, 0x39, 0x27, 0xec, 0x2e, + 0x47, 0x70, 0xeb, 0x5c, 0x0e, 0xcb, 0x88, 0xfe, 0x4b, 0x09, 0xa6, 0x82, 0xcd, 0x7b, 0x03, 0xb9, + 0x02, 0x23, 0xc1, 0xd6, 0xf9, 0x10, 0xee, 0x49, 0x33, 0x04, 0xde, 0xfb, 0x10, 0x3f, 0x7a, 0xd6, + 0x5f, 0xaa, 0x2c, 0x85, 0xfb, 0x50, 0x6a, 0x69, 0x78, 0x69, 0xff, 0xc8, 0x92, 0x65, 0x23, 0xf8, + 0x0b, 0x09, 0x72, 0xeb, 0x96, 0xd5, 0x44, 0x16, 0x4c, 0x98, 0x96, 0xab, 0x12, 0xcd, 0xc2, 0x75, + 0x95, 0xe7, 0x78, 0x58, 0x56, 0x77, 0xa1, 0x3f, 0x21, 0x7d, 0xef, 0xc6, 0x4c, 0x37, 0x94, 0x32, + 0x6e, 0x5a, 0x6e, 0x8d, 0xd6, 0x6c, 0xb2, 0x0c, 0xd0, 0xfb, 0x61, 0x34, 0xdc, 0x18, 0xcb, 0x78, + 0x3d, 0xd7, 0x77, 0x63, 0x61, 0x98, 0x9b, 0x37, 0x66, 0xa6, 0xfc, 0x15, 0xe3, 0x55, 0xcb, 0xca, + 0xc8, 0x76, 0xa0, 0xf5, 0x6a, 0x9e, 0x8c, 0xfe, 0x4f, 0x3f, 0x3b, 0x23, 0xd5, 0x2e, 0xf6, 0x7c, + 0x9f, 0xf5, 0x81, 0x43, 0xbb, 0xb0, 0xef, 0x1d, 0x3b, 0x84, 0xcf, 0x25, 0x5e, 0x9d, 0x84, 0x99, + 0x1e, 0xe7, 0x12, 0xee, 0xfe, 0x91, 0x8e, 0x24, 0x12, 0x8e, 0x0b, 0x2a, 0xa9, 0x8e, 0x41, 0xe4, + 0x1f, 0xe4, 0x00, 0xad, 0x3a, 0x8d, 0x05, 0x12, 0xd5, 0xf8, 0x6f, 0x39, 0x44, 0x53, 0x62, 0xd2, + 0x9b, 0x4a, 0x89, 0xad, 0x86, 0x92, 0x4c, 0x99, 0xfe, 0x52, 0xdb, 0xa9, 0x33, 0x4d, 0xd9, 0xb7, + 0x25, 0xd3, 0x14, 0x1f, 0xaa, 0xe4, 0x7e, 0x88, 0x3b, 0xa6, 0xc1, 0xb7, 0x67, 0xc7, 0x74, 0x1c, + 0x86, 0x78, 0x0e, 0x9a, 0xfd, 0xb3, 0x31, 0x5e, 0x42, 0x8f, 0x06, 0xaf, 0x1a, 0xa7, 0xb0, 0xfe, + 0x8c, 0x9a, 0xdb, 0x99, 0xaf, 0x66, 0xa1, 0xb4, 0xea, 0x34, 0x96, 0xea, 0x86, 0xfb, 0x16, 0xe9, + 0x5e, 0xbb, 0xf7, 0x26, 0x73, 0xe1, 0xe6, 0x8d, 0x99, 0x31, 0x26, 0xb2, 0x5b, 0x29, 0xa8, 0x16, + 0x8c, 0x47, 0x8e, 0x73, 0xb8, 0x6a, 0x2e, 0x1e, 0xe5, 0x54, 0x29, 0x02, 0x25, 0xd3, 0x7d, 0x41, + 0x60, 0x81, 0xa0, 0xfd, 0xf8, 0xd5, 0xc0, 0x1c, 0xd9, 0xe5, 0xb7, 0x32, 0xe7, 0xca, 0xa6, 0xf0, + 0x6b, 0x19, 0x28, 0xae, 0x3a, 0x62, 0x9f, 0x8b, 0x7f, 0x62, 0x33, 0x0a, 0x8f, 0x7b, 0x9f, 0xae, + 0xc8, 0xa6, 0x5b, 0x08, 0xe1, 0xcf, 0x59, 0x7c, 0x2b, 0x4b, 0xed, 0x30, 0x3d, 0x85, 0xf7, 0x9c, + 0x35, 0x7e, 0x67, 0x63, 0xf4, 0x23, 0xb4, 0x31, 0xf2, 0x67, 0x38, 0x77, 0x94, 0x19, 0xfe, 0xdd, + 0x0c, 0x8c, 0xae, 0x3a, 0x8d, 0x2d, 0xb3, 0xfe, 0xce, 0x52, 0x79, 0x33, 0x4b, 0xe5, 0x96, 0x87, + 0x66, 0x5f, 0xcb, 0xc0, 0x99, 0x60, 0x2c, 0x45, 0xdf, 0xa6, 0xf3, 0xc2, 0xa5, 0xb6, 0xd6, 0x30, + 0xcc, 0xe0, 0x47, 0x25, 0x4e, 0x04, 0x3b, 0x4b, 0x69, 0x45, 0x97, 0x65, 0x13, 0x8a, 0xeb, 0x5a, + 0x03, 0x8b, 0x6f, 0x15, 0x74, 0x7f, 0x38, 0xe4, 0x38, 0x0c, 0x59, 0x3b, 0x3b, 0xec, 0xca, 0x85, + 0x34, 0x9b, 0x53, 0x78, 0x09, 0x4d, 0xc1, 0x60, 0xd3, 0x68, 0x19, 0x2e, 0x7f, 0x3f, 0x8b, 0x15, + 0xd0, 0x0c, 0x14, 0x75, 0x32, 0x6e, 0x95, 0xdd, 0xd4, 0xcc, 0x89, 0xaf, 0x87, 0x76, 0x4c, 0x77, + 0x93, 0xd4, 0xc8, 0x4f, 0xc1, 0x08, 0x6b, 0x8f, 0xef, 0x2f, 0x4e, 0x40, 0x9e, 0x5e, 0xbb, 0xf5, + 0x5b, 0x1d, 0x26, 0x65, 0x7e, 0x6f, 0x92, 0xa1, 0xb0, 0x86, 0x59, 0xa1, 0x56, 0xeb, 0x29, 0xca, + 0xd9, 0xe4, 0x49, 0x66, 0x82, 0xf2, 0xc4, 0xf8, 0xaf, 0x1e, 0x06, 0xb9, 0x47, 0xc8, 0xc9, 0xa4, + 0x74, 0x78, 0x90, 0xdb, 0xc7, 0x14, 0xf4, 0x08, 0x88, 0xd3, 0x05, 0xbc, 0xfb, 0x70, 0x9c, 0xde, + 0xff, 0xf2, 0xb7, 0xfa, 0x62, 0xba, 0x8e, 0x7b, 0xe7, 0xe1, 0x12, 0xff, 0x5f, 0xcf, 0xe2, 0x70, + 0x1b, 0xfc, 0x1e, 0x78, 0x2f, 0x74, 0xf4, 0xd4, 0x82, 0xb9, 0x80, 0x0a, 0x28, 0x01, 0x4e, 0xf9, + 0xd7, 0x24, 0xb8, 0xad, 0xab, 0x69, 0x3e, 0x73, 0x97, 0x42, 0xaf, 0x9c, 0x49, 0xfd, 0xdd, 0xc7, + 0x09, 0xbe, 0x43, 0x7e, 0x29, 0xa6, 0xb3, 0xa7, 0x12, 0x3b, 0xcb, 0x7a, 0x11, 0xea, 0xed, 0x4b, + 0x70, 0x2c, 0xdc, 0x59, 0x21, 0xa6, 0xe7, 0x61, 0x2c, 0x6c, 0x16, 0xb8, 0xc9, 0x3a, 0xc2, 0x89, + 0xea, 0x68, 0xc8, 0x34, 0xc8, 0x6a, 0x74, 0x6a, 0x3c, 0xf1, 0x2c, 0x75, 0xdf, 0xe9, 0x4d, 0x2d, + 0x9d, 0xc0, 0xab, 0x1f, 0x5f, 0x93, 0xe0, 0x64, 0xb8, 0x05, 0x3f, 0x9c, 0x71, 0xde, 0xf2, 0xf1, + 0xdd, 0x32, 0x45, 0xfa, 0xae, 0x04, 0x77, 0x1d, 0x32, 0x0c, 0x2e, 0xb3, 0x97, 0x61, 0x2a, 0x90, + 0x33, 0xb1, 0x79, 0xb5, 0x50, 0xae, 0x33, 0xc9, 0xc9, 0x1e, 0x2f, 0x45, 0x70, 0x3b, 0x91, 0xe3, + 0x17, 0xbf, 0x35, 0x33, 0xd9, 0xfd, 0xcc, 0x51, 0x26, 0xbb, 0xf3, 0x1c, 0xb7, 0x50, 0x0b, 0xff, + 0x83, 0x04, 0xa7, 0xc3, 0x43, 0x8d, 0x39, 0x59, 0xf9, 0x31, 0x9a, 0xba, 0xff, 0x22, 0xc1, 0x99, + 0x34, 0xe3, 0xe1, 0x73, 0xb8, 0x0d, 0x93, 0x7e, 0xb2, 0x33, 0x3a, 0x85, 0xf7, 0xf7, 0x71, 0x64, + 0xc5, 0xd7, 0x02, 0xf2, 0xd0, 0xde, 0x82, 0xb9, 0xfa, 0x3d, 0x89, 0xaf, 0xdf, 0xa0, 0x9a, 0x78, + 0x13, 0x13, 0x0e, 0x63, 0xfa, 0x9c, 0x98, 0x40, 0x28, 0x33, 0x1a, 0x0a, 0x65, 0x62, 0xa6, 0x3c, + 0x73, 0x8b, 0xac, 0xd1, 0x1e, 0xb7, 0xd6, 0x31, 0xd9, 0xd3, 0xf7, 0xc2, 0x64, 0xcc, 0xd2, 0xe2, + 0x86, 0xa9, 0x8f, 0x95, 0xa5, 0xa0, 0xee, 0xc5, 0x23, 0xff, 0x27, 0x09, 0x66, 0x68, 0xc3, 0x31, + 0xd3, 0xf8, 0xe3, 0x2c, 0xcf, 0x16, 0xb7, 0xbd, 0xb1, 0xc3, 0xe2, 0x82, 0x5d, 0x86, 0x21, 0xa6, + 0xa1, 0x5c, 0x96, 0x47, 0x50, 0x71, 0x0e, 0xe0, 0xdb, 0xfa, 0x45, 0x31, 0xbe, 0x78, 0x83, 0xf1, + 0x16, 0xc9, 0xf1, 0x56, 0x19, 0x8c, 0x6f, 0x0a, 0x5b, 0x1f, 0x3f, 0x0c, 0x2e, 0x37, 0xfd, 0x96, + 0xd9, 0x7a, 0xfe, 0xe1, 0x93, 0xb7, 0xc7, 0xa8, 0x7b, 0x63, 0x4a, 0x30, 0xea, 0x3f, 0xe2, 0x73, + 0xe4, 0x19, 0xf5, 0x84, 0xf1, 0xfc, 0x38, 0x1a, 0xf5, 0xbf, 0xc8, 0xc0, 0x09, 0x3a, 0xb6, 0xe0, + 0x09, 0xc2, 0xdb, 0x30, 0x37, 0x2a, 0x20, 0xc7, 0xd6, 0xd5, 0x5b, 0x65, 0x8b, 0x4a, 0x8e, 0xad, + 0x5f, 0x0d, 0x79, 0x74, 0x15, 0x50, 0xdd, 0x71, 0xa3, 0x0d, 0x64, 0x8f, 0xdc, 0x40, 0xdd, 0x71, + 0xaf, 0x1e, 0x12, 0x32, 0xe4, 0x8e, 0xac, 0x5d, 0xdf, 0x90, 0xa0, 0x12, 0x37, 0x03, 0x5c, 0x9b, + 0x0c, 0x38, 0x1e, 0x3a, 0x1c, 0x8b, 0x2a, 0xd4, 0x03, 0x69, 0x8e, 0x84, 0x22, 0xcb, 0xff, 0x98, + 0x8d, 0xdf, 0x52, 0x03, 0xf0, 0xaf, 0x85, 0x8b, 0xf3, 0x16, 0x4c, 0xf7, 0x6e, 0xec, 0x47, 0x7f, + 0xd9, 0x7f, 0xa9, 0xcb, 0xc3, 0xfc, 0x58, 0x6c, 0xec, 0x7e, 0x5f, 0x82, 0xe9, 0x1e, 0xdd, 0xfe, + 0x71, 0x0e, 0x2f, 0x76, 0x7b, 0xaa, 0xd4, 0xad, 0xde, 0x45, 0x3e, 0xc2, 0xd7, 0x63, 0xf8, 0x5d, + 0x9c, 0x40, 0x16, 0x21, 0xf6, 0x6b, 0x5c, 0x2f, 0xc0, 0xed, 0xb1, 0x5c, 0xbc, 0x6f, 0x55, 0xc8, + 0xed, 0x1a, 0x8e, 0xeb, 0x7d, 0xba, 0xa6, 0x47, 0xb7, 0x22, 0xdc, 0x94, 0x47, 0x46, 0x50, 0xa2, + 0xd0, 0xeb, 0x96, 0xd5, 0xe4, 0xdd, 0x90, 0x9f, 0x81, 0x89, 0x40, 0x1d, 0x6f, 0xe4, 0x31, 0xc8, + 0xb5, 0x2d, 0xab, 0xc9, 0x1b, 0xb9, 0xa3, 0x57, 0x23, 0x84, 0x87, 0x0f, 0x9b, 0xd2, 0xcb, 0x53, + 0x80, 0x18, 0x18, 0xfb, 0x98, 0x02, 0x6f, 0x62, 0x03, 0x26, 0x43, 0xb5, 0xbc, 0x91, 0x77, 0xc3, + 0x50, 0xe8, 0x33, 0x3c, 0x3d, 0xaf, 0xfe, 0x32, 0x3e, 0xef, 0xfd, 0x5e, 0x5a, 0x3a, 0xf7, 0xeb, + 0x63, 0xe2, 0x55, 0x3f, 0x0b, 0x20, 0x70, 0x1d, 0x63, 0xae, 0x17, 0x4a, 0x7c, 0x32, 0xa7, 0x72, + 0x36, 0x35, 0x3d, 0x0f, 0xbb, 0x07, 0x50, 0x33, 0xf8, 0xd6, 0xc7, 0x83, 0xe9, 0xf8, 0x45, 0x73, + 0x73, 0x69, 0xc9, 0xbd, 0xd6, 0x3e, 0x2a, 0xc1, 0x54, 0xdc, 0xfe, 0x1d, 0x3d, 0x91, 0x0e, 0xaa, + 0x3b, 0x52, 0xaa, 0x9c, 0x3f, 0x02, 0xa7, 0xd7, 0x9f, 0x2f, 0x48, 0x70, 0xe7, 0xa1, 0x9b, 0x52, + 0x34, 0x9f, 0x0e, 0xfe, 0x90, 0x58, 0xae, 0x52, 0x7b, 0x33, 0x10, 0x5e, 0x57, 0xad, 0xd0, 0x25, + 0xe1, 0xc3, 0x45, 0xdf, 0xb5, 0x77, 0x4a, 0xd0, 0x8c, 0xee, 0x90, 0x58, 0x1e, 0x40, 0x1f, 0x91, + 0xe2, 0x6f, 0xcf, 0x3e, 0x7e, 0x28, 0x54, 0xef, 0xfd, 0x5b, 0xe5, 0x89, 0xfe, 0x19, 0x43, 0x8a, + 0x13, 0xb7, 0x19, 0x48, 0x50, 0x9c, 0x43, 0xb6, 0x41, 0x09, 0x8a, 0x73, 0xd8, 0xce, 0x83, 0x2b, + 0xce, 0xa1, 0x81, 0x6f, 0x82, 0xe2, 0xa4, 0xd9, 0x04, 0x24, 0x28, 0x4e, 0xaa, 0xb8, 0x5b, 0x1e, + 0x40, 0xfb, 0x30, 0x1a, 0x0a, 0xa2, 0xd0, 0x43, 0x87, 0xc2, 0xc6, 0x85, 0xbc, 0x95, 0x73, 0xfd, + 0xb0, 0x84, 0x34, 0x28, 0x26, 0x4c, 0x48, 0xd0, 0xa0, 0xde, 0xe1, 0x51, 0xe5, 0x89, 0xfe, 0x19, + 0xbd, 0xce, 0x7c, 0xc8, 0xbf, 0x13, 0x16, 0xa0, 0x40, 0x8f, 0xf5, 0x09, 0x29, 0xba, 0xf2, 0x78, + 0xdf, 0x7c, 0x5e, 0x4f, 0xfe, 0x72, 0xd7, 0x1b, 0xad, 0x87, 0x8b, 0x37, 0xd6, 0xe5, 0x56, 0x1e, + 0xee, 0x8b, 0xc7, 0x6b, 0xfc, 0x67, 0xf9, 0x1d, 0xa7, 0xd9, 0x43, 0xd9, 0x03, 0x4e, 0xb5, 0x72, + 0x3a, 0x05, 0xa5, 0x07, 0xaf, 0x7b, 0x37, 0x1e, 0xcf, 0x1c, 0xce, 0x16, 0x74, 0xaa, 0x95, 0xfb, + 0x53, 0xd1, 0x8a, 0x46, 0x6e, 0xf9, 0x59, 0xd8, 0xff, 0xcb, 0xf7, 0x7c, 0x7d, 0xba, 0x81, 0x4d, + 0xec, 0x18, 0xce, 0x91, 0xee, 0x2a, 0xa5, 0x3b, 0x9a, 0xf9, 0xf2, 0x10, 0x8c, 0x5c, 0x62, 0xad, + 0xd0, 0xaf, 0xdd, 0xa2, 0x8b, 0x7d, 0x86, 0x12, 0x63, 0x24, 0x94, 0xf8, 0xfe, 0x8d, 0x19, 0x2e, + 0x78, 0x11, 0x54, 0x20, 0x87, 0x7f, 0xfe, 0x86, 0x7d, 0xba, 0xc2, 0xff, 0x7e, 0xc8, 0x48, 0x5f, + 0xaf, 0x15, 0xb2, 0x4b, 0x12, 0xfc, 0x0d, 0xbe, 0x28, 0x9e, 0xcc, 0xbe, 0xa4, 0x43, 0xcf, 0xe5, + 0xe8, 0xc7, 0x2f, 0xd0, 0x27, 0x25, 0x38, 0x46, 0xa9, 0xfc, 0x80, 0x97, 0x52, 0x8a, 0x37, 0x0e, + 0x7a, 0x6a, 0xc5, 0x8a, 0x16, 0xd8, 0x4a, 0x52, 0xac, 0x5a, 0x95, 0x5f, 0x80, 0xbd, 0x23, 0xd0, + 0x78, 0x14, 0x56, 0xfe, 0xfe, 0x8d, 0x19, 0xd4, 0xcd, 0xab, 0xd0, 0x4f, 0x36, 0x86, 0xeb, 0x1c, + 0xb4, 0x19, 0xf3, 0xe1, 0xe2, 0x14, 0xb1, 0xf0, 0x04, 0x17, 0xb0, 0x1f, 0x28, 0x85, 0xf6, 0x28, + 0xcf, 0x43, 0x31, 0x60, 0xfe, 0xca, 0x83, 0x09, 0xef, 0x01, 0xf9, 0x89, 0x0c, 0xc4, 0x71, 0x03, + 0x7e, 0x5d, 0x09, 0x42, 0xa1, 0x4f, 0x4b, 0x70, 0xcc, 0x4f, 0x9a, 0x04, 0x1b, 0x19, 0xea, 0x3f, + 0x6d, 0x72, 0x21, 0x2c, 0xcd, 0x58, 0x5c, 0x22, 0xcd, 0x38, 0x9f, 0xaf, 0x4c, 0x75, 0xe2, 0x5c, + 0xdc, 0x5f, 0x82, 0xd1, 0xe0, 0x9e, 0x59, 0x7c, 0xe6, 0x2e, 0xdd, 0xd5, 0xce, 0x29, 0x3e, 0xfa, + 0xd0, 0x9d, 0x78, 0x25, 0x0c, 0x88, 0x2a, 0x90, 0xc7, 0xfb, 0x6d, 0xcb, 0x76, 0x71, 0x9d, 0xbe, + 0x4f, 0x9a, 0x57, 0xbc, 0xb2, 0x7c, 0x1d, 0x62, 0x26, 0x1e, 0x3d, 0x13, 0xf9, 0x56, 0xcf, 0x51, + 0x36, 0x59, 0xdd, 0x9f, 0xf7, 0x09, 0x7e, 0x77, 0xe7, 0x56, 0x9b, 0x9f, 0xff, 0x1f, 0x00, 0x00, + 0xff, 0xff, 0xb0, 0x25, 0x40, 0x0c, 0x43, 0x9a, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) @@ -2192,182 +1861,6 @@ func StakingDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descri } return d } -func (this *MsgCreateValidator) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*MsgCreateValidator) - if !ok { - that2, ok := that.(MsgCreateValidator) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if !this.Description.Equal(&that1.Description) { - return false - } - if !this.Commission.Equal(&that1.Commission) { - return false - } - if !this.MinSelfDelegation.Equal(that1.MinSelfDelegation) { - return false - } - if !bytes.Equal(this.DelegatorAddress, that1.DelegatorAddress) { - return false - } - if !bytes.Equal(this.ValidatorAddress, that1.ValidatorAddress) { - return false - } - if this.Pubkey != that1.Pubkey { - return false - } - if !this.Value.Equal(&that1.Value) { - return false - } - return true -} -func (this *MsgEditValidator) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*MsgEditValidator) - if !ok { - that2, ok := that.(MsgEditValidator) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if !this.Description.Equal(&that1.Description) { - return false - } - if !bytes.Equal(this.ValidatorAddress, that1.ValidatorAddress) { - return false - } - if that1.CommissionRate == nil { - if this.CommissionRate != nil { - return false - } - } else if !this.CommissionRate.Equal(*that1.CommissionRate) { - return false - } - if that1.MinSelfDelegation == nil { - if this.MinSelfDelegation != nil { - return false - } - } else if !this.MinSelfDelegation.Equal(*that1.MinSelfDelegation) { - return false - } - return true -} -func (this *MsgDelegate) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*MsgDelegate) - if !ok { - that2, ok := that.(MsgDelegate) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if !bytes.Equal(this.DelegatorAddress, that1.DelegatorAddress) { - return false - } - if !bytes.Equal(this.ValidatorAddress, that1.ValidatorAddress) { - return false - } - if !this.Amount.Equal(&that1.Amount) { - return false - } - return true -} -func (this *MsgBeginRedelegate) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*MsgBeginRedelegate) - if !ok { - that2, ok := that.(MsgBeginRedelegate) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if !bytes.Equal(this.DelegatorAddress, that1.DelegatorAddress) { - return false - } - if !bytes.Equal(this.ValidatorSrcAddress, that1.ValidatorSrcAddress) { - return false - } - if !bytes.Equal(this.ValidatorDstAddress, that1.ValidatorDstAddress) { - return false - } - if !this.Amount.Equal(&that1.Amount) { - return false - } - return true -} -func (this *MsgUndelegate) Equal(that interface{}) bool { - if that == nil { - return this == nil - } - - that1, ok := that.(*MsgUndelegate) - if !ok { - that2, ok := that.(MsgUndelegate) - if ok { - that1 = &that2 - } else { - return false - } - } - if that1 == nil { - return this == nil - } else if this == nil { - return false - } - if !bytes.Equal(this.DelegatorAddress, that1.DelegatorAddress) { - return false - } - if !bytes.Equal(this.ValidatorAddress, that1.ValidatorAddress) { - return false - } - if !this.Amount.Equal(&that1.Amount) { - return false - } - return true -} func (this *HistoricalInfo) Equal(that interface{}) bool { if that == nil { return this == nil @@ -2922,302 +2415,6 @@ func (this *Pool) Equal(that interface{}) bool { } return true } -func (m *MsgCreateValidator) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *MsgCreateValidator) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgCreateValidator) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Value.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintStaking(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x3a - if len(m.Pubkey) > 0 { - i -= len(m.Pubkey) - copy(dAtA[i:], m.Pubkey) - i = encodeVarintStaking(dAtA, i, uint64(len(m.Pubkey))) - i-- - dAtA[i] = 0x32 - } - if len(m.ValidatorAddress) > 0 { - i -= len(m.ValidatorAddress) - copy(dAtA[i:], m.ValidatorAddress) - i = encodeVarintStaking(dAtA, i, uint64(len(m.ValidatorAddress))) - i-- - dAtA[i] = 0x2a - } - if len(m.DelegatorAddress) > 0 { - i -= len(m.DelegatorAddress) - copy(dAtA[i:], m.DelegatorAddress) - i = encodeVarintStaking(dAtA, i, uint64(len(m.DelegatorAddress))) - i-- - dAtA[i] = 0x22 - } - { - size := m.MinSelfDelegation.Size() - i -= size - if _, err := m.MinSelfDelegation.MarshalTo(dAtA[i:]); err != nil { - return 0, err - } - i = encodeVarintStaking(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - { - size, err := m.Commission.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintStaking(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - { - size, err := m.Description.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintStaking(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *MsgEditValidator) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *MsgEditValidator) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgEditValidator) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - if m.MinSelfDelegation != nil { - { - size := m.MinSelfDelegation.Size() - i -= size - if _, err := m.MinSelfDelegation.MarshalTo(dAtA[i:]); err != nil { - return 0, err - } - i = encodeVarintStaking(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x22 - } - if m.CommissionRate != nil { - { - size := m.CommissionRate.Size() - i -= size - if _, err := m.CommissionRate.MarshalTo(dAtA[i:]); err != nil { - return 0, err - } - i = encodeVarintStaking(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - } - if len(m.ValidatorAddress) > 0 { - i -= len(m.ValidatorAddress) - copy(dAtA[i:], m.ValidatorAddress) - i = encodeVarintStaking(dAtA, i, uint64(len(m.ValidatorAddress))) - i-- - dAtA[i] = 0x12 - } - { - size, err := m.Description.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintStaking(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0xa - return len(dAtA) - i, nil -} - -func (m *MsgDelegate) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *MsgDelegate) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgDelegate) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintStaking(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - if len(m.ValidatorAddress) > 0 { - i -= len(m.ValidatorAddress) - copy(dAtA[i:], m.ValidatorAddress) - i = encodeVarintStaking(dAtA, i, uint64(len(m.ValidatorAddress))) - i-- - dAtA[i] = 0x12 - } - if len(m.DelegatorAddress) > 0 { - i -= len(m.DelegatorAddress) - copy(dAtA[i:], m.DelegatorAddress) - i = encodeVarintStaking(dAtA, i, uint64(len(m.DelegatorAddress))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *MsgBeginRedelegate) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *MsgBeginRedelegate) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgBeginRedelegate) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintStaking(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x22 - if len(m.ValidatorDstAddress) > 0 { - i -= len(m.ValidatorDstAddress) - copy(dAtA[i:], m.ValidatorDstAddress) - i = encodeVarintStaking(dAtA, i, uint64(len(m.ValidatorDstAddress))) - i-- - dAtA[i] = 0x1a - } - if len(m.ValidatorSrcAddress) > 0 { - i -= len(m.ValidatorSrcAddress) - copy(dAtA[i:], m.ValidatorSrcAddress) - i = encodeVarintStaking(dAtA, i, uint64(len(m.ValidatorSrcAddress))) - i-- - dAtA[i] = 0x12 - } - if len(m.DelegatorAddress) > 0 { - i -= len(m.DelegatorAddress) - copy(dAtA[i:], m.DelegatorAddress) - i = encodeVarintStaking(dAtA, i, uint64(len(m.DelegatorAddress))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - -func (m *MsgUndelegate) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *MsgUndelegate) MarshalTo(dAtA []byte) (int, error) { - size := m.Size() - return m.MarshalToSizedBuffer(dAtA[:size]) -} - -func (m *MsgUndelegate) MarshalToSizedBuffer(dAtA []byte) (int, error) { - i := len(dAtA) - _ = i - var l int - _ = l - { - size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintStaking(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - if len(m.ValidatorAddress) > 0 { - i -= len(m.ValidatorAddress) - copy(dAtA[i:], m.ValidatorAddress) - i = encodeVarintStaking(dAtA, i, uint64(len(m.ValidatorAddress))) - i-- - dAtA[i] = 0x12 - } - if len(m.DelegatorAddress) > 0 { - i -= len(m.DelegatorAddress) - copy(dAtA[i:], m.DelegatorAddress) - i = encodeVarintStaking(dAtA, i, uint64(len(m.DelegatorAddress))) - i-- - dAtA[i] = 0xa - } - return len(dAtA) - i, nil -} - func (m *HistoricalInfo) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -3338,12 +2535,12 @@ func (m *Commission) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n9, err9 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.UpdateTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.UpdateTime):]) - if err9 != nil { - return 0, err9 + n2, err2 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.UpdateTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.UpdateTime):]) + if err2 != nil { + return 0, err2 } - i -= n9 - i = encodeVarintStaking(dAtA, i, uint64(n9)) + i -= n2 + i = encodeVarintStaking(dAtA, i, uint64(n2)) i-- dAtA[i] = 0x12 { @@ -3457,12 +2654,12 @@ func (m *Validator) MarshalToSizedBuffer(dAtA []byte) (int, error) { } i-- dAtA[i] = 0x52 - n12, err12 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.UnbondingTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.UnbondingTime):]) - if err12 != nil { - return 0, err12 + n5, err5 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.UnbondingTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.UnbondingTime):]) + if err5 != nil { + return 0, err5 } - i -= n12 - i = encodeVarintStaking(dAtA, i, uint64(n12)) + i -= n5 + i = encodeVarintStaking(dAtA, i, uint64(n5)) i-- dAtA[i] = 0x4a if m.UnbondingHeight != 0 { @@ -3532,6 +2729,38 @@ func (m *Validator) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *ValAddresses) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ValAddresses) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ValAddresses) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Addresses) > 0 { + for iNdEx := len(m.Addresses) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Addresses[iNdEx]) + copy(dAtA[i:], m.Addresses[iNdEx]) + i = encodeVarintStaking(dAtA, i, uint64(len(m.Addresses[iNdEx]))) + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + func (m *DVPair) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -3825,12 +3054,12 @@ func (m *UnbondingDelegationEntry) MarshalToSizedBuffer(dAtA []byte) (int, error } i-- dAtA[i] = 0x1a - n14, err14 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.CompletionTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.CompletionTime):]) - if err14 != nil { - return 0, err14 + n7, err7 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.CompletionTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.CompletionTime):]) + if err7 != nil { + return 0, err7 } - i -= n14 - i = encodeVarintStaking(dAtA, i, uint64(n14)) + i -= n7 + i = encodeVarintStaking(dAtA, i, uint64(n7)) i-- dAtA[i] = 0x12 if m.CreationHeight != 0 { @@ -3881,12 +3110,12 @@ func (m *RedelegationEntry) MarshalToSizedBuffer(dAtA []byte) (int, error) { } i-- dAtA[i] = 0x1a - n15, err15 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.CompletionTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.CompletionTime):]) - if err15 != nil { - return 0, err15 + n8, err8 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.CompletionTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.CompletionTime):]) + if err8 != nil { + return 0, err8 } - i -= n15 - i = encodeVarintStaking(dAtA, i, uint64(n15)) + i -= n8 + i = encodeVarintStaking(dAtA, i, uint64(n8)) i-- dAtA[i] = 0x12 if m.CreationHeight != 0 { @@ -3997,12 +3226,12 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x10 } - n16, err16 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.UnbondingTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.UnbondingTime):]) - if err16 != nil { - return 0, err16 + n9, err9 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.UnbondingTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.UnbondingTime):]) + if err9 != nil { + return 0, err9 } - i -= n16 - i = encodeVarintStaking(dAtA, i, uint64(n16)) + i -= n9 + i = encodeVarintStaking(dAtA, i, uint64(n9)) i-- dAtA[i] = 0xa return len(dAtA) - i, nil @@ -4195,119 +3424,6 @@ func encodeVarintStaking(dAtA []byte, offset int, v uint64) int { dAtA[offset] = uint8(v) return base } -func (m *MsgCreateValidator) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.Description.Size() - n += 1 + l + sovStaking(uint64(l)) - l = m.Commission.Size() - n += 1 + l + sovStaking(uint64(l)) - l = m.MinSelfDelegation.Size() - n += 1 + l + sovStaking(uint64(l)) - l = len(m.DelegatorAddress) - if l > 0 { - n += 1 + l + sovStaking(uint64(l)) - } - l = len(m.ValidatorAddress) - if l > 0 { - n += 1 + l + sovStaking(uint64(l)) - } - l = len(m.Pubkey) - if l > 0 { - n += 1 + l + sovStaking(uint64(l)) - } - l = m.Value.Size() - n += 1 + l + sovStaking(uint64(l)) - return n -} - -func (m *MsgEditValidator) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = m.Description.Size() - n += 1 + l + sovStaking(uint64(l)) - l = len(m.ValidatorAddress) - if l > 0 { - n += 1 + l + sovStaking(uint64(l)) - } - if m.CommissionRate != nil { - l = m.CommissionRate.Size() - n += 1 + l + sovStaking(uint64(l)) - } - if m.MinSelfDelegation != nil { - l = m.MinSelfDelegation.Size() - n += 1 + l + sovStaking(uint64(l)) - } - return n -} - -func (m *MsgDelegate) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.DelegatorAddress) - if l > 0 { - n += 1 + l + sovStaking(uint64(l)) - } - l = len(m.ValidatorAddress) - if l > 0 { - n += 1 + l + sovStaking(uint64(l)) - } - l = m.Amount.Size() - n += 1 + l + sovStaking(uint64(l)) - return n -} - -func (m *MsgBeginRedelegate) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.DelegatorAddress) - if l > 0 { - n += 1 + l + sovStaking(uint64(l)) - } - l = len(m.ValidatorSrcAddress) - if l > 0 { - n += 1 + l + sovStaking(uint64(l)) - } - l = len(m.ValidatorDstAddress) - if l > 0 { - n += 1 + l + sovStaking(uint64(l)) - } - l = m.Amount.Size() - n += 1 + l + sovStaking(uint64(l)) - return n -} - -func (m *MsgUndelegate) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - l = len(m.DelegatorAddress) - if l > 0 { - n += 1 + l + sovStaking(uint64(l)) - } - l = len(m.ValidatorAddress) - if l > 0 { - n += 1 + l + sovStaking(uint64(l)) - } - l = m.Amount.Size() - n += 1 + l + sovStaking(uint64(l)) - return n -} - func (m *HistoricalInfo) Size() (n int) { if m == nil { return 0 @@ -4420,6 +3536,21 @@ func (m *Validator) Size() (n int) { return n } +func (m *ValAddresses) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Addresses) > 0 { + for _, b := range m.Addresses { + l = len(b) + n += 1 + l + sovStaking(uint64(l)) + } + } + return n +} + func (m *DVPair) Size() (n int) { if m == nil { return 0 @@ -4679,979 +3810,23 @@ func sovStaking(x uint64) (n int) { func sozStaking(x uint64) (n int) { return sovStaking(uint64((x << 1) ^ uint64((int64(x) >> 63)))) } -func (m *MsgCreateValidator) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgCreateValidator: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgCreateValidator: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Description", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Description.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Commission", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Commission.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field MinSelfDelegation", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.MinSelfDelegation.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DelegatorAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.DelegatorAddress = append(m.DelegatorAddress[:0], dAtA[iNdEx:postIndex]...) - if m.DelegatorAddress == nil { - m.DelegatorAddress = []byte{} - } - iNdEx = postIndex - case 5: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ValidatorAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.ValidatorAddress = append(m.ValidatorAddress[:0], dAtA[iNdEx:postIndex]...) - if m.ValidatorAddress == nil { - m.ValidatorAddress = []byte{} - } - iNdEx = postIndex - case 6: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Pubkey", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.Pubkey = string(dAtA[iNdEx:postIndex]) - iNdEx = postIndex - case 7: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Value.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipStaking(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthStaking - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthStaking - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } +func (this *ValAddresses) String() string { + if this == nil { + return "nil" } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil + s := strings.Join([]string{`&ValAddresses{`, + `Addresses:` + fmt.Sprintf("%v", this.Addresses) + `,`, + `}`, + }, "") + return s } -func (m *MsgEditValidator) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgEditValidator: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgEditValidator: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Description", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Description.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ValidatorAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.ValidatorAddress = append(m.ValidatorAddress[:0], dAtA[iNdEx:postIndex]...) - if m.ValidatorAddress == nil { - m.ValidatorAddress = []byte{} - } - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field CommissionRate", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - var v github_com_cosmos_cosmos_sdk_types.Dec - m.CommissionRate = &v - if err := m.CommissionRate.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field MinSelfDelegation", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - var v github_com_cosmos_cosmos_sdk_types.Int - m.MinSelfDelegation = &v - if err := m.MinSelfDelegation.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipStaking(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthStaking - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthStaking - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } +func valueToStringStaking(v interface{}) string { + rv := reflect.ValueOf(v) + if rv.IsNil() { + return "nil" } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *MsgDelegate) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgDelegate: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgDelegate: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DelegatorAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.DelegatorAddress = append(m.DelegatorAddress[:0], dAtA[iNdEx:postIndex]...) - if m.DelegatorAddress == nil { - m.DelegatorAddress = []byte{} - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ValidatorAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.ValidatorAddress = append(m.ValidatorAddress[:0], dAtA[iNdEx:postIndex]...) - if m.ValidatorAddress == nil { - m.ValidatorAddress = []byte{} - } - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipStaking(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthStaking - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthStaking - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *MsgBeginRedelegate) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgBeginRedelegate: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgBeginRedelegate: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DelegatorAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.DelegatorAddress = append(m.DelegatorAddress[:0], dAtA[iNdEx:postIndex]...) - if m.DelegatorAddress == nil { - m.DelegatorAddress = []byte{} - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ValidatorSrcAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.ValidatorSrcAddress = append(m.ValidatorSrcAddress[:0], dAtA[iNdEx:postIndex]...) - if m.ValidatorSrcAddress == nil { - m.ValidatorSrcAddress = []byte{} - } - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ValidatorDstAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.ValidatorDstAddress = append(m.ValidatorDstAddress[:0], dAtA[iNdEx:postIndex]...) - if m.ValidatorDstAddress == nil { - m.ValidatorDstAddress = []byte{} - } - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipStaking(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthStaking - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthStaking - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil -} -func (m *MsgUndelegate) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - wire |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - fieldNum := int32(wire >> 3) - wireType := int(wire & 0x7) - if wireType == 4 { - return fmt.Errorf("proto: MsgUndelegate: wiretype end group for non-group") - } - if fieldNum <= 0 { - return fmt.Errorf("proto: MsgUndelegate: illegal tag %d (wire type %d)", fieldNum, wire) - } - switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field DelegatorAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.DelegatorAddress = append(m.DelegatorAddress[:0], dAtA[iNdEx:postIndex]...) - if m.DelegatorAddress == nil { - m.DelegatorAddress = []byte{} - } - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field ValidatorAddress", wireType) - } - var byteLen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - byteLen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if byteLen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + byteLen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - m.ValidatorAddress = append(m.ValidatorAddress[:0], dAtA[iNdEx:postIndex]...) - if m.ValidatorAddress == nil { - m.ValidatorAddress = []byte{} - } - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowStaking - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthStaking - } - postIndex := iNdEx + msglen - if postIndex < 0 { - return ErrInvalidLengthStaking - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - default: - iNdEx = preIndex - skippy, err := skipStaking(dAtA[iNdEx:]) - if err != nil { - return err - } - if skippy < 0 { - return ErrInvalidLengthStaking - } - if (iNdEx + skippy) < 0 { - return ErrInvalidLengthStaking - } - if (iNdEx + skippy) > l { - return io.ErrUnexpectedEOF - } - iNdEx += skippy - } - } - - if iNdEx > l { - return io.ErrUnexpectedEOF - } - return nil + pv := reflect.Indirect(rv).Interface() + return fmt.Sprintf("*%v", pv) } func (m *HistoricalInfo) Unmarshal(dAtA []byte) error { l := len(dAtA) @@ -6638,6 +4813,91 @@ func (m *Validator) Unmarshal(dAtA []byte) error { } return nil } +func (m *ValAddresses) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStaking + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ValAddresses: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ValAddresses: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Addresses", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowStaking + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthStaking + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthStaking + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Addresses = append(m.Addresses, make([]byte, postIndex-iNdEx)) + copy(m.Addresses[len(m.Addresses)-1], dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipStaking(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthStaking + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthStaking + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *DVPair) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/x/staking/types/tx.pb.go b/x/staking/types/tx.pb.go new file mode 100644 index 0000000000..ef43b4ba2d --- /dev/null +++ b/x/staking/types/tx.pb.go @@ -0,0 +1,2083 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: cosmos/staking/v1beta1/tx.proto + +package types + +import ( + bytes "bytes" + fmt "fmt" + github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" + types "github.com/cosmos/cosmos-sdk/types" + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" + io "io" + math "math" + math_bits "math/bits" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package + +// MsgCreateValidator defines an SDK message for creating a new validator. +type MsgCreateValidator struct { + Description Description `protobuf:"bytes,1,opt,name=description,proto3" json:"description"` + Commission CommissionRates `protobuf:"bytes,2,opt,name=commission,proto3" json:"commission"` + MinSelfDelegation github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,3,opt,name=min_self_delegation,json=minSelfDelegation,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"min_self_delegation" yaml:"min_self_delegation"` + DelegatorAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,4,opt,name=delegator_address,json=delegatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"delegator_address,omitempty" yaml:"delegator_address"` + ValidatorAddress github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,5,opt,name=validator_address,json=validatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"validator_address,omitempty" yaml:"validator_address"` + Pubkey string `protobuf:"bytes,6,opt,name=pubkey,proto3" json:"pubkey,omitempty"` + Value types.Coin `protobuf:"bytes,7,opt,name=value,proto3" json:"value"` +} + +func (m *MsgCreateValidator) Reset() { *m = MsgCreateValidator{} } +func (m *MsgCreateValidator) String() string { return proto.CompactTextString(m) } +func (*MsgCreateValidator) ProtoMessage() {} +func (*MsgCreateValidator) Descriptor() ([]byte, []int) { + return fileDescriptor_0926ef28816b35ab, []int{0} +} +func (m *MsgCreateValidator) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgCreateValidator) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgCreateValidator.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgCreateValidator) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgCreateValidator.Merge(m, src) +} +func (m *MsgCreateValidator) XXX_Size() int { + return m.Size() +} +func (m *MsgCreateValidator) XXX_DiscardUnknown() { + xxx_messageInfo_MsgCreateValidator.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgCreateValidator proto.InternalMessageInfo + +func (m *MsgCreateValidator) GetDescription() Description { + if m != nil { + return m.Description + } + return Description{} +} + +func (m *MsgCreateValidator) GetCommission() CommissionRates { + if m != nil { + return m.Commission + } + return CommissionRates{} +} + +func (m *MsgCreateValidator) GetDelegatorAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { + if m != nil { + return m.DelegatorAddress + } + return nil +} + +func (m *MsgCreateValidator) GetValidatorAddress() github_com_cosmos_cosmos_sdk_types.ValAddress { + if m != nil { + return m.ValidatorAddress + } + return nil +} + +func (m *MsgCreateValidator) GetPubkey() string { + if m != nil { + return m.Pubkey + } + return "" +} + +func (m *MsgCreateValidator) GetValue() types.Coin { + if m != nil { + return m.Value + } + return types.Coin{} +} + +// MsgEditValidator defines an SDK message for editing an existing validator. +type MsgEditValidator struct { + Description Description `protobuf:"bytes,1,opt,name=description,proto3" json:"description"` + ValidatorAddress github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,2,opt,name=validator_address,json=validatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"validator_address,omitempty" yaml:"address"` + // We pass a reference to the new commission rate and min self delegation as + // it's not mandatory to update. If not updated, the deserialized rate will be + // zero with no way to distinguish if an update was intended. + // + // REF: #2373 + CommissionRate *github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,3,opt,name=commission_rate,json=commissionRate,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"commission_rate,omitempty" yaml:"commission_rate"` + MinSelfDelegation *github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=min_self_delegation,json=minSelfDelegation,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"min_self_delegation,omitempty" yaml:"min_self_delegation"` +} + +func (m *MsgEditValidator) Reset() { *m = MsgEditValidator{} } +func (m *MsgEditValidator) String() string { return proto.CompactTextString(m) } +func (*MsgEditValidator) ProtoMessage() {} +func (*MsgEditValidator) Descriptor() ([]byte, []int) { + return fileDescriptor_0926ef28816b35ab, []int{1} +} +func (m *MsgEditValidator) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgEditValidator) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgEditValidator.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgEditValidator) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgEditValidator.Merge(m, src) +} +func (m *MsgEditValidator) XXX_Size() int { + return m.Size() +} +func (m *MsgEditValidator) XXX_DiscardUnknown() { + xxx_messageInfo_MsgEditValidator.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgEditValidator proto.InternalMessageInfo + +func (m *MsgEditValidator) GetDescription() Description { + if m != nil { + return m.Description + } + return Description{} +} + +func (m *MsgEditValidator) GetValidatorAddress() github_com_cosmos_cosmos_sdk_types.ValAddress { + if m != nil { + return m.ValidatorAddress + } + return nil +} + +// MsgDelegate defines an SDK message for performing a delegation from a +// delegate to a validator. +type MsgDelegate struct { + DelegatorAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=delegator_address,json=delegatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"delegator_address,omitempty" yaml:"delegator_address"` + ValidatorAddress github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,2,opt,name=validator_address,json=validatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"validator_address,omitempty" yaml:"validator_address"` + Amount types.Coin `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount"` +} + +func (m *MsgDelegate) Reset() { *m = MsgDelegate{} } +func (m *MsgDelegate) String() string { return proto.CompactTextString(m) } +func (*MsgDelegate) ProtoMessage() {} +func (*MsgDelegate) Descriptor() ([]byte, []int) { + return fileDescriptor_0926ef28816b35ab, []int{2} +} +func (m *MsgDelegate) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgDelegate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgDelegate.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgDelegate) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgDelegate.Merge(m, src) +} +func (m *MsgDelegate) XXX_Size() int { + return m.Size() +} +func (m *MsgDelegate) XXX_DiscardUnknown() { + xxx_messageInfo_MsgDelegate.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgDelegate proto.InternalMessageInfo + +func (m *MsgDelegate) GetDelegatorAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { + if m != nil { + return m.DelegatorAddress + } + return nil +} + +func (m *MsgDelegate) GetValidatorAddress() github_com_cosmos_cosmos_sdk_types.ValAddress { + if m != nil { + return m.ValidatorAddress + } + return nil +} + +func (m *MsgDelegate) GetAmount() types.Coin { + if m != nil { + return m.Amount + } + return types.Coin{} +} + +// MsgBeginRedelegate defines an SDK message for performing a redelegation from +// a delegate and source validator to a destination validator. +type MsgBeginRedelegate struct { + DelegatorAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=delegator_address,json=delegatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"delegator_address,omitempty" yaml:"delegator_address"` + ValidatorSrcAddress github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,2,opt,name=validator_src_address,json=validatorSrcAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"validator_src_address,omitempty" yaml:"validator_src_address"` + ValidatorDstAddress github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,3,opt,name=validator_dst_address,json=validatorDstAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"validator_dst_address,omitempty" yaml:"validator_dst_address"` + Amount types.Coin `protobuf:"bytes,4,opt,name=amount,proto3" json:"amount"` +} + +func (m *MsgBeginRedelegate) Reset() { *m = MsgBeginRedelegate{} } +func (m *MsgBeginRedelegate) String() string { return proto.CompactTextString(m) } +func (*MsgBeginRedelegate) ProtoMessage() {} +func (*MsgBeginRedelegate) Descriptor() ([]byte, []int) { + return fileDescriptor_0926ef28816b35ab, []int{3} +} +func (m *MsgBeginRedelegate) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgBeginRedelegate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgBeginRedelegate.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgBeginRedelegate) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgBeginRedelegate.Merge(m, src) +} +func (m *MsgBeginRedelegate) XXX_Size() int { + return m.Size() +} +func (m *MsgBeginRedelegate) XXX_DiscardUnknown() { + xxx_messageInfo_MsgBeginRedelegate.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgBeginRedelegate proto.InternalMessageInfo + +func (m *MsgBeginRedelegate) GetDelegatorAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { + if m != nil { + return m.DelegatorAddress + } + return nil +} + +func (m *MsgBeginRedelegate) GetValidatorSrcAddress() github_com_cosmos_cosmos_sdk_types.ValAddress { + if m != nil { + return m.ValidatorSrcAddress + } + return nil +} + +func (m *MsgBeginRedelegate) GetValidatorDstAddress() github_com_cosmos_cosmos_sdk_types.ValAddress { + if m != nil { + return m.ValidatorDstAddress + } + return nil +} + +func (m *MsgBeginRedelegate) GetAmount() types.Coin { + if m != nil { + return m.Amount + } + return types.Coin{} +} + +// MsgUndelegate defines an SDK message for performing an undelegation from a +// delegate and a validator. +type MsgUndelegate struct { + DelegatorAddress github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=delegator_address,json=delegatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"delegator_address,omitempty" yaml:"delegator_address"` + ValidatorAddress github_com_cosmos_cosmos_sdk_types.ValAddress `protobuf:"bytes,2,opt,name=validator_address,json=validatorAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ValAddress" json:"validator_address,omitempty" yaml:"validator_address"` + Amount types.Coin `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount"` +} + +func (m *MsgUndelegate) Reset() { *m = MsgUndelegate{} } +func (m *MsgUndelegate) String() string { return proto.CompactTextString(m) } +func (*MsgUndelegate) ProtoMessage() {} +func (*MsgUndelegate) Descriptor() ([]byte, []int) { + return fileDescriptor_0926ef28816b35ab, []int{4} +} +func (m *MsgUndelegate) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *MsgUndelegate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_MsgUndelegate.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *MsgUndelegate) XXX_Merge(src proto.Message) { + xxx_messageInfo_MsgUndelegate.Merge(m, src) +} +func (m *MsgUndelegate) XXX_Size() int { + return m.Size() +} +func (m *MsgUndelegate) XXX_DiscardUnknown() { + xxx_messageInfo_MsgUndelegate.DiscardUnknown(m) +} + +var xxx_messageInfo_MsgUndelegate proto.InternalMessageInfo + +func (m *MsgUndelegate) GetDelegatorAddress() github_com_cosmos_cosmos_sdk_types.AccAddress { + if m != nil { + return m.DelegatorAddress + } + return nil +} + +func (m *MsgUndelegate) GetValidatorAddress() github_com_cosmos_cosmos_sdk_types.ValAddress { + if m != nil { + return m.ValidatorAddress + } + return nil +} + +func (m *MsgUndelegate) GetAmount() types.Coin { + if m != nil { + return m.Amount + } + return types.Coin{} +} + +func init() { + proto.RegisterType((*MsgCreateValidator)(nil), "cosmos.staking.v1beta1.MsgCreateValidator") + proto.RegisterType((*MsgEditValidator)(nil), "cosmos.staking.v1beta1.MsgEditValidator") + proto.RegisterType((*MsgDelegate)(nil), "cosmos.staking.v1beta1.MsgDelegate") + proto.RegisterType((*MsgBeginRedelegate)(nil), "cosmos.staking.v1beta1.MsgBeginRedelegate") + proto.RegisterType((*MsgUndelegate)(nil), "cosmos.staking.v1beta1.MsgUndelegate") +} + +func init() { proto.RegisterFile("cosmos/staking/v1beta1/tx.proto", fileDescriptor_0926ef28816b35ab) } + +var fileDescriptor_0926ef28816b35ab = []byte{ + // 644 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x56, 0x31, 0x6f, 0xd3, 0x4e, + 0x1c, 0x8d, 0x13, 0x37, 0x7f, 0xfd, 0xaf, 0x50, 0x5a, 0x17, 0xaa, 0x50, 0x21, 0xbb, 0x32, 0x08, + 0x32, 0x50, 0x5b, 0x05, 0x21, 0xa4, 0x6e, 0x4d, 0x02, 0x02, 0x81, 0x07, 0x5c, 0xd1, 0x81, 0x25, + 0xba, 0xd8, 0x57, 0x73, 0x8a, 0xed, 0x8b, 0x7c, 0x97, 0x28, 0x41, 0xac, 0xec, 0x7c, 0x04, 0x3e, + 0x0a, 0x03, 0x42, 0x1d, 0x3b, 0x22, 0x06, 0x83, 0x92, 0x85, 0x39, 0x23, 0x2c, 0xc8, 0xf6, 0xc5, + 0x09, 0x89, 0x83, 0xa2, 0x96, 0x02, 0x03, 0x53, 0x92, 0xcb, 0xf3, 0xfb, 0x3d, 0xbd, 0xf7, 0x7b, + 0xd6, 0x01, 0xc5, 0x22, 0xd4, 0x23, 0x54, 0xa7, 0x0c, 0x36, 0xb1, 0xef, 0xe8, 0x9d, 0x9d, 0x06, + 0x62, 0x70, 0x47, 0x67, 0x5d, 0xad, 0x15, 0x10, 0x46, 0xa4, 0x8d, 0x04, 0xa0, 0x71, 0x80, 0xc6, + 0x01, 0x9b, 0x17, 0x1d, 0xe2, 0x90, 0x18, 0xa2, 0x47, 0xdf, 0x12, 0xf4, 0xa6, 0xcc, 0xe9, 0x1a, + 0x90, 0xa2, 0x94, 0xcb, 0x22, 0xd8, 0xe7, 0xff, 0x5f, 0x9b, 0x33, 0x6e, 0xc4, 0x1e, 0xa3, 0xd4, + 0x6f, 0x22, 0x90, 0x0c, 0xea, 0x54, 0x03, 0x04, 0x19, 0x3a, 0x80, 0x2e, 0xb6, 0x21, 0x23, 0x81, + 0xf4, 0x08, 0x2c, 0xdb, 0x88, 0x5a, 0x01, 0x6e, 0x31, 0x4c, 0xfc, 0x92, 0xb0, 0x25, 0x94, 0x97, + 0x6f, 0x5d, 0xd5, 0xb2, 0x05, 0x6a, 0xb5, 0x31, 0xb4, 0x22, 0x1e, 0x85, 0x4a, 0xce, 0x9c, 0x7c, + 0x5a, 0x32, 0x00, 0xb0, 0x88, 0xe7, 0x61, 0x4a, 0x23, 0xae, 0x7c, 0xcc, 0x75, 0x63, 0x1e, 0x57, + 0x35, 0x45, 0x9a, 0x90, 0x21, 0xca, 0xf9, 0x26, 0x08, 0xa4, 0x97, 0x60, 0xdd, 0xc3, 0x7e, 0x9d, + 0x22, 0xf7, 0xb0, 0x6e, 0x23, 0x17, 0x39, 0x30, 0xd6, 0x58, 0xd8, 0x12, 0xca, 0xff, 0x57, 0x1e, + 0x47, 0xf0, 0x8f, 0xa1, 0x72, 0xdd, 0xc1, 0xec, 0x79, 0xbb, 0xa1, 0x59, 0xc4, 0xd3, 0xb9, 0x11, + 0xc9, 0xc7, 0x36, 0xb5, 0x9b, 0x3a, 0xeb, 0xb5, 0x10, 0xd5, 0x1e, 0xfa, 0x6c, 0x18, 0x2a, 0x9b, + 0x3d, 0xe8, 0xb9, 0xbb, 0x6a, 0x06, 0xa5, 0x6a, 0xae, 0x79, 0xd8, 0xdf, 0x47, 0xee, 0x61, 0x2d, + 0x3d, 0x93, 0x5e, 0x80, 0x35, 0x8e, 0x20, 0x41, 0x1d, 0xda, 0x76, 0x80, 0x28, 0x2d, 0x89, 0x5b, + 0x42, 0xf9, 0x5c, 0xc5, 0x18, 0x86, 0x4a, 0x29, 0x61, 0x9b, 0x81, 0xa8, 0x5f, 0x43, 0x65, 0x7b, + 0x01, 0x4d, 0x7b, 0x96, 0xb5, 0x97, 0x3c, 0x61, 0xae, 0xa6, 0x24, 0xfc, 0x24, 0x9a, 0xdd, 0x19, + 0x45, 0x94, 0xce, 0x5e, 0x9a, 0x9e, 0x3d, 0x03, 0x59, 0x74, 0xf6, 0x01, 0x74, 0xd3, 0xd9, 0x29, + 0xc9, 0x68, 0xf6, 0x06, 0x28, 0xb6, 0xda, 0x8d, 0x26, 0xea, 0x95, 0x8a, 0x91, 0xd1, 0x26, 0xff, + 0x25, 0xdd, 0x01, 0x4b, 0x1d, 0xe8, 0xb6, 0x51, 0xe9, 0xbf, 0x38, 0xd7, 0xcb, 0xa3, 0x5c, 0xa3, + 0xb5, 0x9c, 0x08, 0x15, 0x8f, 0x36, 0x23, 0x41, 0xef, 0x8a, 0x5f, 0xde, 0x28, 0x82, 0xfa, 0xb6, + 0x00, 0x56, 0x0d, 0xea, 0xdc, 0xb3, 0x31, 0x3b, 0xa3, 0xdd, 0x6b, 0x65, 0x59, 0x96, 0x8f, 0x2d, + 0xab, 0x0e, 0x43, 0x65, 0x25, 0xb1, 0xec, 0x57, 0x1a, 0xe5, 0x81, 0x0b, 0xe3, 0x65, 0xad, 0x07, + 0x90, 0x21, 0xbe, 0x9a, 0xb5, 0x05, 0xd7, 0xb2, 0x86, 0xac, 0x61, 0xa8, 0x6c, 0x24, 0xca, 0xa6, + 0xa8, 0x54, 0x73, 0xc5, 0xfa, 0xa1, 0x20, 0x52, 0x37, 0xbb, 0x0d, 0x62, 0x3c, 0xf2, 0xc1, 0x19, + 0x36, 0x81, 0x47, 0xf8, 0x2e, 0x0f, 0x96, 0x0d, 0xea, 0xf0, 0x73, 0x94, 0xdd, 0x0f, 0xe1, 0x0f, + 0xf6, 0x23, 0xff, 0x7b, 0xfa, 0x71, 0x17, 0x14, 0xa1, 0x47, 0xda, 0x3e, 0x8b, 0xd3, 0x5e, 0xa0, + 0x08, 0x1c, 0xce, 0x6d, 0xfc, 0x54, 0x88, 0xdf, 0xc3, 0x15, 0xe4, 0x60, 0xdf, 0x44, 0xf6, 0xdf, + 0xe0, 0xe6, 0x2b, 0x01, 0x5c, 0x1a, 0x7b, 0x45, 0x03, 0x6b, 0xca, 0xd2, 0x27, 0xc3, 0x50, 0xb9, + 0x32, 0x6d, 0xe9, 0x04, 0xec, 0x04, 0xb6, 0xae, 0xa7, 0x44, 0xfb, 0x81, 0x95, 0xad, 0xc3, 0xa6, + 0x2c, 0xd5, 0x51, 0x98, 0xaf, 0x63, 0x02, 0x76, 0x2a, 0x1d, 0x35, 0xca, 0x66, 0x13, 0x16, 0x4f, + 0x92, 0xf0, 0xfb, 0x3c, 0x38, 0x6f, 0x50, 0xe7, 0xa9, 0x6f, 0xff, 0xab, 0xca, 0x69, 0xaa, 0x52, + 0xb9, 0x7f, 0xd4, 0x97, 0x85, 0xe3, 0xbe, 0x2c, 0x7c, 0xee, 0xcb, 0xc2, 0xeb, 0x81, 0x9c, 0x3b, + 0x1e, 0xc8, 0xb9, 0x0f, 0x03, 0x39, 0xf7, 0xec, 0xe6, 0x4f, 0x95, 0x75, 0xd3, 0xab, 0x50, 0xac, + 0xb1, 0x51, 0x8c, 0x6f, 0x40, 0xb7, 0xbf, 0x07, 0x00, 0x00, 0xff, 0xff, 0x28, 0x49, 0xde, 0x06, + 0x98, 0x09, 0x00, 0x00, +} + +func (this *MsgCreateValidator) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*MsgCreateValidator) + if !ok { + that2, ok := that.(MsgCreateValidator) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !this.Description.Equal(&that1.Description) { + return false + } + if !this.Commission.Equal(&that1.Commission) { + return false + } + if !this.MinSelfDelegation.Equal(that1.MinSelfDelegation) { + return false + } + if !bytes.Equal(this.DelegatorAddress, that1.DelegatorAddress) { + return false + } + if !bytes.Equal(this.ValidatorAddress, that1.ValidatorAddress) { + return false + } + if this.Pubkey != that1.Pubkey { + return false + } + if !this.Value.Equal(&that1.Value) { + return false + } + return true +} +func (this *MsgEditValidator) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*MsgEditValidator) + if !ok { + that2, ok := that.(MsgEditValidator) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !this.Description.Equal(&that1.Description) { + return false + } + if !bytes.Equal(this.ValidatorAddress, that1.ValidatorAddress) { + return false + } + if that1.CommissionRate == nil { + if this.CommissionRate != nil { + return false + } + } else if !this.CommissionRate.Equal(*that1.CommissionRate) { + return false + } + if that1.MinSelfDelegation == nil { + if this.MinSelfDelegation != nil { + return false + } + } else if !this.MinSelfDelegation.Equal(*that1.MinSelfDelegation) { + return false + } + return true +} +func (this *MsgDelegate) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*MsgDelegate) + if !ok { + that2, ok := that.(MsgDelegate) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !bytes.Equal(this.DelegatorAddress, that1.DelegatorAddress) { + return false + } + if !bytes.Equal(this.ValidatorAddress, that1.ValidatorAddress) { + return false + } + if !this.Amount.Equal(&that1.Amount) { + return false + } + return true +} +func (this *MsgBeginRedelegate) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*MsgBeginRedelegate) + if !ok { + that2, ok := that.(MsgBeginRedelegate) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !bytes.Equal(this.DelegatorAddress, that1.DelegatorAddress) { + return false + } + if !bytes.Equal(this.ValidatorSrcAddress, that1.ValidatorSrcAddress) { + return false + } + if !bytes.Equal(this.ValidatorDstAddress, that1.ValidatorDstAddress) { + return false + } + if !this.Amount.Equal(&that1.Amount) { + return false + } + return true +} +func (this *MsgUndelegate) Equal(that interface{}) bool { + if that == nil { + return this == nil + } + + that1, ok := that.(*MsgUndelegate) + if !ok { + that2, ok := that.(MsgUndelegate) + if ok { + that1 = &that2 + } else { + return false + } + } + if that1 == nil { + return this == nil + } else if this == nil { + return false + } + if !bytes.Equal(this.DelegatorAddress, that1.DelegatorAddress) { + return false + } + if !bytes.Equal(this.ValidatorAddress, that1.ValidatorAddress) { + return false + } + if !this.Amount.Equal(&that1.Amount) { + return false + } + return true +} +func (m *MsgCreateValidator) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgCreateValidator) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgCreateValidator) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size, err := m.Value.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x3a + if len(m.Pubkey) > 0 { + i -= len(m.Pubkey) + copy(dAtA[i:], m.Pubkey) + i = encodeVarintTx(dAtA, i, uint64(len(m.Pubkey))) + i-- + dAtA[i] = 0x32 + } + if len(m.ValidatorAddress) > 0 { + i -= len(m.ValidatorAddress) + copy(dAtA[i:], m.ValidatorAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.ValidatorAddress))) + i-- + dAtA[i] = 0x2a + } + if len(m.DelegatorAddress) > 0 { + i -= len(m.DelegatorAddress) + copy(dAtA[i:], m.DelegatorAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.DelegatorAddress))) + i-- + dAtA[i] = 0x22 + } + { + size := m.MinSelfDelegation.Size() + i -= size + if _, err := m.MinSelfDelegation.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + { + size, err := m.Commission.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + { + size, err := m.Description.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + +func (m *MsgEditValidator) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgEditValidator) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgEditValidator) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.MinSelfDelegation != nil { + { + size := m.MinSelfDelegation.Size() + i -= size + if _, err := m.MinSelfDelegation.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + if m.CommissionRate != nil { + { + size := m.CommissionRate.Size() + i -= size + if _, err := m.CommissionRate.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + if len(m.ValidatorAddress) > 0 { + i -= len(m.ValidatorAddress) + copy(dAtA[i:], m.ValidatorAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.ValidatorAddress))) + i-- + dAtA[i] = 0x12 + } + { + size, err := m.Description.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + +func (m *MsgDelegate) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgDelegate) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgDelegate) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + if len(m.ValidatorAddress) > 0 { + i -= len(m.ValidatorAddress) + copy(dAtA[i:], m.ValidatorAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.ValidatorAddress))) + i-- + dAtA[i] = 0x12 + } + if len(m.DelegatorAddress) > 0 { + i -= len(m.DelegatorAddress) + copy(dAtA[i:], m.DelegatorAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.DelegatorAddress))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *MsgBeginRedelegate) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgBeginRedelegate) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgBeginRedelegate) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + if len(m.ValidatorDstAddress) > 0 { + i -= len(m.ValidatorDstAddress) + copy(dAtA[i:], m.ValidatorDstAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.ValidatorDstAddress))) + i-- + dAtA[i] = 0x1a + } + if len(m.ValidatorSrcAddress) > 0 { + i -= len(m.ValidatorSrcAddress) + copy(dAtA[i:], m.ValidatorSrcAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.ValidatorSrcAddress))) + i-- + dAtA[i] = 0x12 + } + if len(m.DelegatorAddress) > 0 { + i -= len(m.DelegatorAddress) + copy(dAtA[i:], m.DelegatorAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.DelegatorAddress))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *MsgUndelegate) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *MsgUndelegate) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *MsgUndelegate) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size, err := m.Amount.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + if len(m.ValidatorAddress) > 0 { + i -= len(m.ValidatorAddress) + copy(dAtA[i:], m.ValidatorAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.ValidatorAddress))) + i-- + dAtA[i] = 0x12 + } + if len(m.DelegatorAddress) > 0 { + i -= len(m.DelegatorAddress) + copy(dAtA[i:], m.DelegatorAddress) + i = encodeVarintTx(dAtA, i, uint64(len(m.DelegatorAddress))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func encodeVarintTx(dAtA []byte, offset int, v uint64) int { + offset -= sovTx(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *MsgCreateValidator) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Description.Size() + n += 1 + l + sovTx(uint64(l)) + l = m.Commission.Size() + n += 1 + l + sovTx(uint64(l)) + l = m.MinSelfDelegation.Size() + n += 1 + l + sovTx(uint64(l)) + l = len(m.DelegatorAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + l = len(m.ValidatorAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + l = len(m.Pubkey) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + l = m.Value.Size() + n += 1 + l + sovTx(uint64(l)) + return n +} + +func (m *MsgEditValidator) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Description.Size() + n += 1 + l + sovTx(uint64(l)) + l = len(m.ValidatorAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + if m.CommissionRate != nil { + l = m.CommissionRate.Size() + n += 1 + l + sovTx(uint64(l)) + } + if m.MinSelfDelegation != nil { + l = m.MinSelfDelegation.Size() + n += 1 + l + sovTx(uint64(l)) + } + return n +} + +func (m *MsgDelegate) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.DelegatorAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + l = len(m.ValidatorAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + l = m.Amount.Size() + n += 1 + l + sovTx(uint64(l)) + return n +} + +func (m *MsgBeginRedelegate) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.DelegatorAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + l = len(m.ValidatorSrcAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + l = len(m.ValidatorDstAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + l = m.Amount.Size() + n += 1 + l + sovTx(uint64(l)) + return n +} + +func (m *MsgUndelegate) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.DelegatorAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + l = len(m.ValidatorAddress) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + l = m.Amount.Size() + n += 1 + l + sovTx(uint64(l)) + return n +} + +func sovTx(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozTx(x uint64) (n int) { + return sovTx(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *MsgCreateValidator) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgCreateValidator: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgCreateValidator: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Description", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Description.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Commission", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Commission.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field MinSelfDelegation", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.MinSelfDelegation.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DelegatorAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.DelegatorAddress = append(m.DelegatorAddress[:0], dAtA[iNdEx:postIndex]...) + if m.DelegatorAddress == nil { + m.DelegatorAddress = []byte{} + } + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ValidatorAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ValidatorAddress = append(m.ValidatorAddress[:0], dAtA[iNdEx:postIndex]...) + if m.ValidatorAddress == nil { + m.ValidatorAddress = []byte{} + } + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Pubkey", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Pubkey = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Value.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgEditValidator) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgEditValidator: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgEditValidator: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Description", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Description.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ValidatorAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ValidatorAddress = append(m.ValidatorAddress[:0], dAtA[iNdEx:postIndex]...) + if m.ValidatorAddress == nil { + m.ValidatorAddress = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CommissionRate", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + var v github_com_cosmos_cosmos_sdk_types.Dec + m.CommissionRate = &v + if err := m.CommissionRate.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field MinSelfDelegation", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + var v github_com_cosmos_cosmos_sdk_types.Int + m.MinSelfDelegation = &v + if err := m.MinSelfDelegation.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgDelegate) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgDelegate: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgDelegate: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DelegatorAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.DelegatorAddress = append(m.DelegatorAddress[:0], dAtA[iNdEx:postIndex]...) + if m.DelegatorAddress == nil { + m.DelegatorAddress = []byte{} + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ValidatorAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ValidatorAddress = append(m.ValidatorAddress[:0], dAtA[iNdEx:postIndex]...) + if m.ValidatorAddress == nil { + m.ValidatorAddress = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgBeginRedelegate) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgBeginRedelegate: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgBeginRedelegate: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DelegatorAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.DelegatorAddress = append(m.DelegatorAddress[:0], dAtA[iNdEx:postIndex]...) + if m.DelegatorAddress == nil { + m.DelegatorAddress = []byte{} + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ValidatorSrcAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ValidatorSrcAddress = append(m.ValidatorSrcAddress[:0], dAtA[iNdEx:postIndex]...) + if m.ValidatorSrcAddress == nil { + m.ValidatorSrcAddress = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ValidatorDstAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ValidatorDstAddress = append(m.ValidatorDstAddress[:0], dAtA[iNdEx:postIndex]...) + if m.ValidatorDstAddress == nil { + m.ValidatorDstAddress = []byte{} + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *MsgUndelegate) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: MsgUndelegate: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: MsgUndelegate: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field DelegatorAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.DelegatorAddress = append(m.DelegatorAddress[:0], dAtA[iNdEx:postIndex]...) + if m.DelegatorAddress == nil { + m.DelegatorAddress = []byte{} + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ValidatorAddress", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ValidatorAddress = append(m.ValidatorAddress[:0], dAtA[iNdEx:postIndex]...) + if m.ValidatorAddress == nil { + m.ValidatorAddress = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Amount", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Amount.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTx(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTx + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipTx(dAtA []byte) (n int, err error) { + l := len(dAtA) + iNdEx := 0 + depth := 0 + for iNdEx < l { + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + wireType := int(wire & 0x7) + switch wireType { + case 0: + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + iNdEx++ + if dAtA[iNdEx-1] < 0x80 { + break + } + } + case 1: + iNdEx += 8 + case 2: + var length int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTx + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + length |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if length < 0 { + return 0, ErrInvalidLengthTx + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupTx + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthTx + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthTx = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowTx = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupTx = fmt.Errorf("proto: unexpected end of group") +) diff --git a/x/upgrade/types/query.pb.go b/x/upgrade/types/query.pb.go index 3edc0920ff..5e360397d7 100644 --- a/x/upgrade/types/query.pb.go +++ b/x/upgrade/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/upgrade/query.proto +// source: cosmos/upgrade/v1beta1/query.proto package types @@ -35,7 +35,7 @@ func (m *QueryCurrentPlanRequest) Reset() { *m = QueryCurrentPlanRequest func (m *QueryCurrentPlanRequest) String() string { return proto.CompactTextString(m) } func (*QueryCurrentPlanRequest) ProtoMessage() {} func (*QueryCurrentPlanRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_569a61f8872b804e, []int{0} + return fileDescriptor_4a334d07ad8374f0, []int{0} } func (m *QueryCurrentPlanRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -74,7 +74,7 @@ func (m *QueryCurrentPlanResponse) Reset() { *m = QueryCurrentPlanRespon func (m *QueryCurrentPlanResponse) String() string { return proto.CompactTextString(m) } func (*QueryCurrentPlanResponse) ProtoMessage() {} func (*QueryCurrentPlanResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_569a61f8872b804e, []int{1} + return fileDescriptor_4a334d07ad8374f0, []int{1} } func (m *QueryCurrentPlanResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -120,7 +120,7 @@ func (m *QueryAppliedPlanRequest) Reset() { *m = QueryAppliedPlanRequest func (m *QueryAppliedPlanRequest) String() string { return proto.CompactTextString(m) } func (*QueryAppliedPlanRequest) ProtoMessage() {} func (*QueryAppliedPlanRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_569a61f8872b804e, []int{2} + return fileDescriptor_4a334d07ad8374f0, []int{2} } func (m *QueryAppliedPlanRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -166,7 +166,7 @@ func (m *QueryAppliedPlanResponse) Reset() { *m = QueryAppliedPlanRespon func (m *QueryAppliedPlanResponse) String() string { return proto.CompactTextString(m) } func (*QueryAppliedPlanResponse) ProtoMessage() {} func (*QueryAppliedPlanResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_569a61f8872b804e, []int{3} + return fileDescriptor_4a334d07ad8374f0, []int{3} } func (m *QueryAppliedPlanResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -203,34 +203,37 @@ func (m *QueryAppliedPlanResponse) GetHeight() int64 { } func init() { - proto.RegisterType((*QueryCurrentPlanRequest)(nil), "cosmos.upgrade.QueryCurrentPlanRequest") - proto.RegisterType((*QueryCurrentPlanResponse)(nil), "cosmos.upgrade.QueryCurrentPlanResponse") - proto.RegisterType((*QueryAppliedPlanRequest)(nil), "cosmos.upgrade.QueryAppliedPlanRequest") - proto.RegisterType((*QueryAppliedPlanResponse)(nil), "cosmos.upgrade.QueryAppliedPlanResponse") + proto.RegisterType((*QueryCurrentPlanRequest)(nil), "cosmos.upgrade.v1beta1.QueryCurrentPlanRequest") + proto.RegisterType((*QueryCurrentPlanResponse)(nil), "cosmos.upgrade.v1beta1.QueryCurrentPlanResponse") + proto.RegisterType((*QueryAppliedPlanRequest)(nil), "cosmos.upgrade.v1beta1.QueryAppliedPlanRequest") + proto.RegisterType((*QueryAppliedPlanResponse)(nil), "cosmos.upgrade.v1beta1.QueryAppliedPlanResponse") } -func init() { proto.RegisterFile("cosmos/upgrade/query.proto", fileDescriptor_569a61f8872b804e) } +func init() { + proto.RegisterFile("cosmos/upgrade/v1beta1/query.proto", fileDescriptor_4a334d07ad8374f0) +} -var fileDescriptor_569a61f8872b804e = []byte{ - // 286 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4a, 0xce, 0x2f, 0xce, - 0xcd, 0x2f, 0xd6, 0x2f, 0x2d, 0x48, 0x2f, 0x4a, 0x4c, 0x49, 0xd5, 0x2f, 0x2c, 0x4d, 0x2d, 0xaa, - 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x83, 0xc8, 0xe9, 0x41, 0xe5, 0xa4, 0x64, 0xd0, - 0xd4, 0x42, 0x69, 0x88, 0x6a, 0x25, 0x49, 0x2e, 0xf1, 0x40, 0x90, 0x66, 0xe7, 0xd2, 0xa2, 0xa2, - 0xd4, 0xbc, 0x92, 0x80, 0x9c, 0xc4, 0xbc, 0xa0, 0xd4, 0xc2, 0xd2, 0xd4, 0xe2, 0x12, 0x25, 0x17, - 0x2e, 0x09, 0x4c, 0xa9, 0xe2, 0x82, 0xfc, 0xbc, 0xe2, 0x54, 0x21, 0x0d, 0x2e, 0x96, 0x82, 0x9c, - 0xc4, 0x3c, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x11, 0x3d, 0x54, 0x3b, 0xf5, 0xc0, 0x6a, - 0xc1, 0x2a, 0x94, 0x74, 0xa1, 0x16, 0x38, 0x16, 0x14, 0xe4, 0x64, 0xa6, 0xa6, 0x20, 0x59, 0x20, - 0x24, 0xc4, 0xc5, 0x92, 0x97, 0x98, 0x9b, 0x0a, 0x36, 0x84, 0x33, 0x08, 0xcc, 0x56, 0x32, 0x82, - 0x5a, 0x8a, 0xa2, 0x1c, 0x6a, 0xa9, 0x18, 0x17, 0x5b, 0x46, 0x6a, 0x66, 0x7a, 0x46, 0x09, 0x58, - 0x07, 0x73, 0x10, 0x94, 0x67, 0x74, 0x9e, 0x91, 0x8b, 0x15, 0xac, 0x49, 0x28, 0x89, 0x8b, 0x1b, - 0xc9, 0xb5, 0x42, 0xea, 0xe8, 0xee, 0xc2, 0xe1, 0x55, 0x29, 0x0d, 0xc2, 0x0a, 0x21, 0x6e, 0x50, - 0x62, 0x00, 0xd9, 0x81, 0xe4, 0x38, 0x1c, 0x76, 0x60, 0xfa, 0x16, 0x87, 0x1d, 0x58, 0xfc, 0xa9, - 0xc4, 0xe0, 0xe4, 0x76, 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, - 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x3a, 0xe9, - 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xd0, 0x88, 0x85, 0x50, 0xba, 0xc5, - 0x29, 0xd9, 0xfa, 0x15, 0xf0, 0x58, 0x2e, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x47, 0xb2, - 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x4f, 0x34, 0x23, 0x68, 0x30, 0x02, 0x00, 0x00, +var fileDescriptor_4a334d07ad8374f0 = []byte{ + // 299 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4a, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0x2f, 0x2d, 0x48, 0x2f, 0x4a, 0x4c, 0x49, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, + 0x49, 0x34, 0xd4, 0x2f, 0x2c, 0x4d, 0x2d, 0xaa, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, + 0x83, 0xa8, 0xd1, 0x83, 0xaa, 0xd1, 0x83, 0xaa, 0x91, 0x52, 0xc1, 0xa1, 0x17, 0xa6, 0x0e, 0xac, + 0x5b, 0x49, 0x92, 0x4b, 0x3c, 0x10, 0x64, 0x98, 0x73, 0x69, 0x51, 0x51, 0x6a, 0x5e, 0x49, 0x40, + 0x4e, 0x62, 0x5e, 0x50, 0x6a, 0x61, 0x69, 0x6a, 0x71, 0x89, 0x92, 0x0f, 0x97, 0x04, 0xa6, 0x54, + 0x71, 0x41, 0x7e, 0x5e, 0x71, 0xaa, 0x90, 0x01, 0x17, 0x4b, 0x41, 0x4e, 0x62, 0x9e, 0x04, 0xa3, + 0x02, 0xa3, 0x06, 0xb7, 0x91, 0x8c, 0x1e, 0x76, 0x37, 0xe8, 0x81, 0xf5, 0x80, 0x55, 0x2a, 0xe9, + 0x42, 0x2d, 0x72, 0x2c, 0x28, 0xc8, 0xc9, 0x4c, 0x4d, 0x41, 0xb2, 0x48, 0x48, 0x88, 0x8b, 0x25, + 0x2f, 0x31, 0x37, 0x15, 0x6c, 0x18, 0x67, 0x10, 0x98, 0xad, 0x64, 0x04, 0xb5, 0x1c, 0x45, 0x39, + 0xd4, 0x72, 0x31, 0x2e, 0xb6, 0x8c, 0xd4, 0xcc, 0xf4, 0x8c, 0x12, 0xb0, 0x0e, 0xe6, 0x20, 0x28, + 0xcf, 0xe8, 0x3d, 0x23, 0x17, 0x2b, 0x58, 0x93, 0x50, 0x11, 0x17, 0x37, 0x92, 0xab, 0x85, 0xf4, + 0x71, 0xb9, 0x0f, 0x87, 0xd7, 0xa5, 0x0c, 0x88, 0xd7, 0x00, 0x71, 0x93, 0x12, 0x03, 0xc8, 0x4e, + 0x24, 0xc7, 0x12, 0xb0, 0x13, 0x33, 0x14, 0x08, 0xd8, 0x89, 0x25, 0x1c, 0x94, 0x18, 0x9c, 0xdc, + 0x4e, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, + 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0x4a, 0x27, 0x3d, 0xb3, 0x24, 0xa3, + 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0x9a, 0x10, 0x20, 0x94, 0x6e, 0x71, 0x4a, 0xb6, 0x7e, + 0x05, 0x3c, 0x55, 0x94, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x13, 0x83, 0x31, 0x20, 0x00, + 0x00, 0xff, 0xff, 0x19, 0xa3, 0x5f, 0xcc, 0x70, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -261,7 +264,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) CurrentPlan(ctx context.Context, in *QueryCurrentPlanRequest, opts ...grpc.CallOption) (*QueryCurrentPlanResponse, error) { out := new(QueryCurrentPlanResponse) - err := c.cc.Invoke(ctx, "/cosmos.upgrade.Query/CurrentPlan", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.upgrade.v1beta1.Query/CurrentPlan", in, out, opts...) if err != nil { return nil, err } @@ -270,7 +273,7 @@ func (c *queryClient) CurrentPlan(ctx context.Context, in *QueryCurrentPlanReque func (c *queryClient) AppliedPlan(ctx context.Context, in *QueryAppliedPlanRequest, opts ...grpc.CallOption) (*QueryAppliedPlanResponse, error) { out := new(QueryAppliedPlanResponse) - err := c.cc.Invoke(ctx, "/cosmos.upgrade.Query/AppliedPlan", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmos.upgrade.v1beta1.Query/AppliedPlan", in, out, opts...) if err != nil { return nil, err } @@ -310,7 +313,7 @@ func _Query_CurrentPlan_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.upgrade.Query/CurrentPlan", + FullMethod: "/cosmos.upgrade.v1beta1.Query/CurrentPlan", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).CurrentPlan(ctx, req.(*QueryCurrentPlanRequest)) @@ -328,7 +331,7 @@ func _Query_AppliedPlan_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmos.upgrade.Query/AppliedPlan", + FullMethod: "/cosmos.upgrade.v1beta1.Query/AppliedPlan", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AppliedPlan(ctx, req.(*QueryAppliedPlanRequest)) @@ -337,7 +340,7 @@ func _Query_AppliedPlan_Handler(srv interface{}, ctx context.Context, dec func(i } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmos.upgrade.Query", + ServiceName: "cosmos.upgrade.v1beta1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -350,7 +353,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "cosmos/upgrade/query.proto", + Metadata: "cosmos/upgrade/v1beta1/query.proto", } func (m *QueryCurrentPlanRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/upgrade/types/upgrade.pb.go b/x/upgrade/types/upgrade.pb.go index a18ebe922c..20092a97cd 100644 --- a/x/upgrade/types/upgrade.pb.go +++ b/x/upgrade/types/upgrade.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: cosmos/upgrade/upgrade.proto +// source: cosmos/upgrade/v1beta1/upgrade.proto package types @@ -49,7 +49,7 @@ type Plan struct { func (m *Plan) Reset() { *m = Plan{} } func (*Plan) ProtoMessage() {} func (*Plan) Descriptor() ([]byte, []int) { - return fileDescriptor_f096ad3e7ee0b803, []int{0} + return fileDescriptor_ccf2a7d4d7b48dca, []int{0} } func (m *Plan) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -88,7 +88,7 @@ type SoftwareUpgradeProposal struct { func (m *SoftwareUpgradeProposal) Reset() { *m = SoftwareUpgradeProposal{} } func (*SoftwareUpgradeProposal) ProtoMessage() {} func (*SoftwareUpgradeProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_f096ad3e7ee0b803, []int{1} + return fileDescriptor_ccf2a7d4d7b48dca, []int{1} } func (m *SoftwareUpgradeProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -126,7 +126,7 @@ type CancelSoftwareUpgradeProposal struct { func (m *CancelSoftwareUpgradeProposal) Reset() { *m = CancelSoftwareUpgradeProposal{} } func (*CancelSoftwareUpgradeProposal) ProtoMessage() {} func (*CancelSoftwareUpgradeProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_f096ad3e7ee0b803, []int{2} + return fileDescriptor_ccf2a7d4d7b48dca, []int{2} } func (m *CancelSoftwareUpgradeProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -156,38 +156,40 @@ func (m *CancelSoftwareUpgradeProposal) XXX_DiscardUnknown() { var xxx_messageInfo_CancelSoftwareUpgradeProposal proto.InternalMessageInfo func init() { - proto.RegisterType((*Plan)(nil), "cosmos.upgrade.Plan") - proto.RegisterType((*SoftwareUpgradeProposal)(nil), "cosmos.upgrade.SoftwareUpgradeProposal") - proto.RegisterType((*CancelSoftwareUpgradeProposal)(nil), "cosmos.upgrade.CancelSoftwareUpgradeProposal") + proto.RegisterType((*Plan)(nil), "cosmos.upgrade.v1beta1.Plan") + proto.RegisterType((*SoftwareUpgradeProposal)(nil), "cosmos.upgrade.v1beta1.SoftwareUpgradeProposal") + proto.RegisterType((*CancelSoftwareUpgradeProposal)(nil), "cosmos.upgrade.v1beta1.CancelSoftwareUpgradeProposal") } -func init() { proto.RegisterFile("cosmos/upgrade/upgrade.proto", fileDescriptor_f096ad3e7ee0b803) } +func init() { + proto.RegisterFile("cosmos/upgrade/v1beta1/upgrade.proto", fileDescriptor_ccf2a7d4d7b48dca) +} -var fileDescriptor_f096ad3e7ee0b803 = []byte{ - // 358 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x52, 0xb1, 0x4e, 0xf3, 0x30, - 0x10, 0x8e, 0xff, 0xe6, 0xaf, 0xfe, 0xba, 0xd2, 0x3f, 0x58, 0x15, 0x44, 0x15, 0x38, 0x51, 0xa7, - 0x0e, 0xe0, 0x48, 0x65, 0x41, 0x8c, 0x65, 0x47, 0x55, 0x80, 0x05, 0x89, 0xc1, 0x4d, 0xdd, 0x34, - 0x22, 0xc9, 0x45, 0xb1, 0x2b, 0xe0, 0x05, 0x60, 0xed, 0x23, 0xf0, 0x38, 0x1d, 0x3b, 0x76, 0x02, - 0xda, 0x2e, 0x3c, 0x06, 0x8a, 0x9d, 0x20, 0xd8, 0x99, 0xee, 0xbe, 0xbb, 0x2f, 0xdf, 0x7d, 0x17, - 0x1f, 0x3e, 0x08, 0x41, 0xa6, 0x20, 0xfd, 0x79, 0x1e, 0x15, 0x7c, 0x22, 0xea, 0xc8, 0xf2, 0x02, - 0x14, 0x90, 0xff, 0xa6, 0xcb, 0xaa, 0x6a, 0xb7, 0x13, 0x41, 0x04, 0xba, 0xe5, 0x97, 0x99, 0x61, - 0x75, 0xdd, 0x08, 0x20, 0x4a, 0x84, 0xaf, 0xd1, 0x78, 0x3e, 0xf5, 0x55, 0x9c, 0x0a, 0xa9, 0x78, - 0x9a, 0x1b, 0x42, 0xef, 0x09, 0x61, 0x7b, 0x94, 0xf0, 0x8c, 0x10, 0x6c, 0x67, 0x3c, 0x15, 0x0e, - 0xf2, 0x50, 0xbf, 0x15, 0xe8, 0x9c, 0x9c, 0x62, 0xbb, 0xe4, 0x3b, 0x7f, 0x3c, 0xd4, 0x6f, 0x0f, - 0xba, 0xcc, 0x88, 0xb1, 0x5a, 0x8c, 0x5d, 0xd5, 0x62, 0xc3, 0x7f, 0xcb, 0x57, 0xd7, 0x5a, 0xbc, - 0xb9, 0x28, 0xd0, 0x5f, 0x90, 0x3d, 0xdc, 0x9c, 0x89, 0x38, 0x9a, 0x29, 0xa7, 0xe1, 0xa1, 0x7e, - 0x23, 0xa8, 0x50, 0x39, 0x25, 0xce, 0xa6, 0xe0, 0xd8, 0x66, 0x4a, 0x99, 0x9f, 0xd9, 0x1f, 0x2f, - 0x2e, 0xea, 0x3d, 0x23, 0xbc, 0x7f, 0x09, 0x53, 0x75, 0xcf, 0x0b, 0x71, 0x6d, 0x76, 0x1a, 0x15, - 0x90, 0x83, 0xe4, 0x09, 0xe9, 0xe0, 0xbf, 0x2a, 0x56, 0x49, 0x6d, 0xce, 0x00, 0xe2, 0xe1, 0xf6, - 0x44, 0xc8, 0xb0, 0x88, 0x73, 0x15, 0x43, 0xa6, 0x4d, 0xb6, 0x82, 0xef, 0x25, 0xc2, 0xb0, 0x9d, - 0x27, 0x3c, 0xd3, 0x1e, 0xda, 0x83, 0x0e, 0xfb, 0xf9, 0xcb, 0x58, 0xb9, 0xf7, 0xd0, 0x2e, 0x9d, - 0x07, 0x9a, 0x57, 0x39, 0xb9, 0xc5, 0x87, 0xe7, 0x3c, 0x0b, 0x45, 0xf2, 0xcb, 0x76, 0x8c, 0xfc, - 0xf0, 0x62, 0xb9, 0xa1, 0xd6, 0x7a, 0x43, 0xad, 0xe5, 0x96, 0xa2, 0xd5, 0x96, 0xa2, 0xf7, 0x2d, - 0x45, 0x8b, 0x1d, 0xb5, 0x56, 0x3b, 0x6a, 0xad, 0x77, 0xd4, 0xba, 0x39, 0x8a, 0x62, 0x35, 0x9b, - 0x8f, 0x59, 0x08, 0xa9, 0x5f, 0xdd, 0x80, 0x09, 0xc7, 0x72, 0x72, 0xe7, 0x3f, 0x7c, 0x1d, 0x84, - 0x7a, 0xcc, 0x85, 0x1c, 0x37, 0xf5, 0x73, 0x9c, 0x7c, 0x06, 0x00, 0x00, 0xff, 0xff, 0x5d, 0x41, - 0xa7, 0xa3, 0x2f, 0x02, 0x00, 0x00, +var fileDescriptor_ccf2a7d4d7b48dca = []byte{ + // 368 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0xbf, 0x4e, 0xf3, 0x30, + 0x14, 0xc5, 0xe3, 0xaf, 0xf9, 0x2a, 0xea, 0x6e, 0x56, 0x55, 0xa2, 0x0a, 0x9c, 0xa8, 0x62, 0xe8, + 0x00, 0x8e, 0x5a, 0x24, 0x84, 0x18, 0xcb, 0x8e, 0xaa, 0x00, 0x0b, 0x12, 0x83, 0x93, 0xba, 0x69, + 0x44, 0x12, 0x47, 0xb1, 0xcb, 0x9f, 0x17, 0x60, 0xa5, 0x8f, 0xc0, 0xe3, 0x74, 0xec, 0xd8, 0x09, + 0x68, 0xbb, 0xf0, 0x18, 0x28, 0x76, 0x82, 0x18, 0x18, 0x99, 0x72, 0xcf, 0xd5, 0x2f, 0xe7, 0x9e, + 0x9b, 0x5c, 0x78, 0x10, 0x70, 0x91, 0x70, 0xe1, 0xce, 0xb2, 0x30, 0xa7, 0x63, 0xe6, 0xde, 0xf7, + 0x7d, 0x26, 0x69, 0xbf, 0xd2, 0x24, 0xcb, 0xb9, 0xe4, 0xa8, 0xad, 0x29, 0x52, 0x75, 0x4b, 0xaa, + 0xd3, 0x0a, 0x79, 0xc8, 0x15, 0xe2, 0x16, 0x95, 0xa6, 0x3b, 0x76, 0xc8, 0x79, 0x18, 0x33, 0x57, + 0x29, 0x7f, 0x36, 0x71, 0x65, 0x94, 0x30, 0x21, 0x69, 0x92, 0x69, 0xa0, 0xfb, 0x0c, 0xa0, 0x39, + 0x8a, 0x69, 0x8a, 0x10, 0x34, 0x53, 0x9a, 0x30, 0x0b, 0x38, 0xa0, 0xd7, 0xf0, 0x54, 0x8d, 0x4e, + 0xa1, 0x59, 0xf0, 0xd6, 0x3f, 0x07, 0xf4, 0x9a, 0x83, 0x0e, 0xd1, 0x66, 0xa4, 0x32, 0x23, 0x57, + 0x95, 0xd9, 0x70, 0x67, 0xf1, 0x66, 0x1b, 0xf3, 0x77, 0x1b, 0x78, 0xea, 0x0d, 0xd4, 0x86, 0xf5, + 0x29, 0x8b, 0xc2, 0xa9, 0xb4, 0x6a, 0x0e, 0xe8, 0xd5, 0xbc, 0x52, 0x15, 0x53, 0xa2, 0x74, 0xc2, + 0x2d, 0x53, 0x4f, 0x29, 0xea, 0x33, 0xf3, 0xf3, 0xd5, 0x06, 0xdd, 0x17, 0x00, 0x77, 0x2f, 0xf9, + 0x44, 0x3e, 0xd0, 0x9c, 0x5d, 0xeb, 0xdd, 0x46, 0x39, 0xcf, 0xb8, 0xa0, 0x31, 0x6a, 0xc1, 0xff, + 0x32, 0x92, 0x71, 0x15, 0x4e, 0x0b, 0xe4, 0xc0, 0xe6, 0x98, 0x89, 0x20, 0x8f, 0x32, 0x19, 0xf1, + 0x54, 0x85, 0x6c, 0x78, 0x3f, 0x5b, 0xe8, 0x04, 0x9a, 0x59, 0x4c, 0x53, 0x95, 0xa1, 0x39, 0xd8, + 0x23, 0xbf, 0x7f, 0x3a, 0x52, 0xec, 0x3f, 0x34, 0x8b, 0x0d, 0x3c, 0xc5, 0x97, 0x89, 0x6e, 0xe1, + 0xfe, 0x39, 0x4d, 0x03, 0x16, 0xff, 0x71, 0x2c, 0x6d, 0x3f, 0xbc, 0x58, 0xac, 0xb1, 0xb1, 0x5a, + 0x63, 0x63, 0xb1, 0xc1, 0x60, 0xb9, 0xc1, 0xe0, 0x63, 0x83, 0xc1, 0x7c, 0x8b, 0x8d, 0xe5, 0x16, + 0x1b, 0xab, 0x2d, 0x36, 0x6e, 0x0e, 0xc3, 0x48, 0x4e, 0x67, 0x3e, 0x09, 0x78, 0xe2, 0x96, 0xb7, + 0xa1, 0x1f, 0x47, 0x62, 0x7c, 0xe7, 0x3e, 0x7e, 0x1f, 0x8a, 0x7c, 0xca, 0x98, 0xf0, 0xeb, 0xea, + 0xb7, 0x1c, 0x7f, 0x05, 0x00, 0x00, 0xff, 0xff, 0xdc, 0xda, 0x23, 0xdb, 0x47, 0x02, 0x00, 0x00, } func (this *Plan) Equal(that interface{}) bool {