diff --git a/docs/openapi/openapi.swagger.yaml b/docs/openapi/openapi.swagger.yaml index 110426210b..f8162506bb 100644 --- a/docs/openapi/openapi.swagger.yaml +++ b/docs/openapi/openapi.swagger.yaml @@ -57603,6 +57603,8 @@ definitions: type: string tx_signer: type: string + proven: + type: boolean cryptoPubKeySet: type: object properties: diff --git a/docs/spec/crosschain/messages.md b/docs/spec/crosschain/messages.md index 1a2a8629e5..3182bec082 100644 --- a/docs/spec/crosschain/messages.md +++ b/docs/spec/crosschain/messages.md @@ -12,6 +12,9 @@ message MsgAddOutboundTracker { int64 chain_id = 2; uint64 nonce = 3; string tx_hash = 4; + pkg.proofs.Proof proof = 5; + string block_hash = 6; + int64 tx_index = 7; } ``` @@ -25,6 +28,9 @@ message MsgAddInboundTracker { int64 chain_id = 2; string tx_hash = 3; pkg.coin.CoinType coin_type = 4; + pkg.proofs.Proof proof = 5; + string block_hash = 6; + int64 tx_index = 7; } ``` diff --git a/proto/zetachain/zetacore/crosschain/outbound_tracker.proto b/proto/zetachain/zetacore/crosschain/outbound_tracker.proto index bca9a89ca8..dc2d0d395b 100644 --- a/proto/zetachain/zetacore/crosschain/outbound_tracker.proto +++ b/proto/zetachain/zetacore/crosschain/outbound_tracker.proto @@ -1,14 +1,15 @@ syntax = "proto3"; package zetachain.zetacore.crosschain; +import "gogoproto/gogo.proto"; + option go_package = "github.com/zeta-chain/node/x/crosschain/types"; message TxHash { string tx_hash = 1; string tx_signer = 2; - // used to be `bool proven` (for block header verification) - reserved 3; + bool proven = 3 [ deprecated = true ]; } message OutboundTracker { string index = 1; // format: "chain-nonce" diff --git a/proto/zetachain/zetacore/crosschain/tx.proto b/proto/zetachain/zetacore/crosschain/tx.proto index 283f42a3c1..d4b9af05cf 100644 --- a/proto/zetachain/zetacore/crosschain/tx.proto +++ b/proto/zetachain/zetacore/crosschain/tx.proto @@ -66,8 +66,9 @@ message MsgAddInboundTracker { string tx_hash = 3; pkg.coin.CoinType coin_type = 4; - // used to be block header profs properties - reserved 5, 6, 7; + pkg.proofs.Proof proof = 5 [ deprecated = true ]; + string block_hash = 6 [ deprecated = true ]; + int64 tx_index = 7 [ deprecated = true ]; } message MsgAddInboundTrackerResponse {} @@ -93,8 +94,9 @@ message MsgAddOutboundTracker { uint64 nonce = 3; string tx_hash = 4; - // used to be block header profs properties - reserved 5, 6, 7; + pkg.proofs.Proof proof = 5 [ deprecated = true ]; + string block_hash = 6 [ deprecated = true ]; + int64 tx_index = 7 [ deprecated = true ]; } message MsgAddOutboundTrackerResponse { diff --git a/typescript/zetachain/zetacore/crosschain/outbound_tracker_pb.d.ts b/typescript/zetachain/zetacore/crosschain/outbound_tracker_pb.d.ts index cf91859db6..a16a808b95 100644 --- a/typescript/zetachain/zetacore/crosschain/outbound_tracker_pb.d.ts +++ b/typescript/zetachain/zetacore/crosschain/outbound_tracker_pb.d.ts @@ -20,6 +20,12 @@ export declare class TxHash extends Message { */ txSigner: string; + /** + * @generated from field: bool proven = 3 [deprecated = true]; + * @deprecated + */ + proven: boolean; + constructor(data?: PartialMessage); static readonly runtime: typeof proto3; diff --git a/typescript/zetachain/zetacore/crosschain/tx_pb.d.ts b/typescript/zetachain/zetacore/crosschain/tx_pb.d.ts index ecef50f7a9..0db06c03e2 100644 --- a/typescript/zetachain/zetacore/crosschain/tx_pb.d.ts +++ b/typescript/zetachain/zetacore/crosschain/tx_pb.d.ts @@ -6,6 +6,7 @@ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message, proto3 } from "@bufbuild/protobuf"; import type { CoinType } from "../pkg/coin/coin_pb.js"; +import type { Proof } from "../pkg/proofs/proofs_pb.js"; import type { ReceiveStatus } from "../pkg/chains/chains_pb.js"; import type { CallOptions, ProtocolContractVersion, RevertOptions } from "./cross_chain_tx_pb.js"; import type { RateLimiterFlags } from "./rate_limiter_flags_pb.js"; @@ -135,6 +136,24 @@ export declare class MsgAddInboundTracker extends Message */ coinType: CoinType; + /** + * @generated from field: zetachain.zetacore.pkg.proofs.Proof proof = 5 [deprecated = true]; + * @deprecated + */ + proof?: Proof; + + /** + * @generated from field: string block_hash = 6 [deprecated = true]; + * @deprecated + */ + blockHash: string; + + /** + * @generated from field: int64 tx_index = 7 [deprecated = true]; + * @deprecated + */ + txIndex: bigint; + constructor(data?: PartialMessage); static readonly runtime: typeof proto3; @@ -278,6 +297,24 @@ export declare class MsgAddOutboundTracker extends Message); static readonly runtime: typeof proto3; diff --git a/x/crosschain/types/outbound_tracker.pb.go b/x/crosschain/types/outbound_tracker.pb.go index a80ef25247..8375ae86fc 100644 --- a/x/crosschain/types/outbound_tracker.pb.go +++ b/x/crosschain/types/outbound_tracker.pb.go @@ -5,6 +5,7 @@ package types import ( fmt "fmt" + _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" math "math" @@ -25,6 +26,7 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package type TxHash struct { TxHash string `protobuf:"bytes,1,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"` TxSigner string `protobuf:"bytes,2,opt,name=tx_signer,json=txSigner,proto3" json:"tx_signer,omitempty"` + Proven bool `protobuf:"varint,3,opt,name=proven,proto3" json:"proven,omitempty"` // Deprecated: Do not use. } func (m *TxHash) Reset() { *m = TxHash{} } @@ -74,6 +76,14 @@ func (m *TxHash) GetTxSigner() string { return "" } +// Deprecated: Do not use. +func (m *TxHash) GetProven() bool { + if m != nil { + return m.Proven + } + return false +} + type OutboundTracker struct { Index string `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"` ChainId int64 `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"` @@ -152,26 +162,27 @@ func init() { } var fileDescriptor_77cb2cfe04eb42d9 = []byte{ - // 296 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0xa9, 0x4a, 0x2d, 0x49, - 0x4c, 0xce, 0x48, 0xcc, 0xcc, 0xd3, 0x07, 0xb3, 0xf2, 0x8b, 0x52, 0xf5, 0x93, 0x8b, 0xf2, 0x8b, - 0x8b, 0x21, 0x62, 0xf9, 0xa5, 0x25, 0x49, 0xf9, 0xa5, 0x79, 0x29, 0xf1, 0x25, 0x45, 0x89, 0xc9, - 0xd9, 0xa9, 0x45, 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, 0x42, 0xb2, 0x70, 0x5d, 0x7a, 0x30, 0x5d, - 0x7a, 0x08, 0x5d, 0x4a, 0x2e, 0x5c, 0x6c, 0x21, 0x15, 0x1e, 0x89, 0xc5, 0x19, 0x42, 0xe2, 0x5c, - 0xec, 0x25, 0x15, 0xf1, 0x19, 0x89, 0xc5, 0x19, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x9c, 0x41, 0x6c, - 0x25, 0x10, 0x09, 0x69, 0x2e, 0xce, 0x92, 0x8a, 0xf8, 0xe2, 0xcc, 0xf4, 0xbc, 0xd4, 0x22, 0x09, - 0x26, 0xb0, 0x14, 0x47, 0x49, 0x45, 0x30, 0x98, 0xef, 0xc5, 0xc2, 0xc1, 0x2c, 0xc0, 0xa2, 0x34, - 0x87, 0x91, 0x8b, 0xdf, 0x1f, 0x6a, 0x7f, 0x08, 0xc4, 0x7a, 0x21, 0x11, 0x2e, 0xd6, 0xcc, 0xbc, - 0x94, 0xd4, 0x0a, 0xa8, 0x69, 0x10, 0x8e, 0x90, 0x24, 0x17, 0x07, 0xd8, 0xe2, 0xf8, 0xcc, 0x14, - 0xb0, 0x59, 0xcc, 0x41, 0xec, 0x60, 0xbe, 0x67, 0x0a, 0x48, 0x43, 0x5e, 0x7e, 0x5e, 0x72, 0xaa, - 0x04, 0xb3, 0x02, 0xa3, 0x06, 0x4b, 0x10, 0x84, 0x23, 0xe4, 0xc4, 0xc5, 0x09, 0x72, 0x53, 0x7c, - 0x4e, 0x66, 0x71, 0x89, 0x04, 0x8b, 0x02, 0xb3, 0x06, 0xb7, 0x91, 0xaa, 0x1e, 0x5e, 0x3f, 0xe9, - 0x41, 0x3c, 0x14, 0xc4, 0x01, 0xd2, 0xe7, 0x93, 0x59, 0x5c, 0xe2, 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, 0xe0, 0x40, 0xd5, 0x85, 0x84, 0x65, 0x5e, 0x7e, 0x4a, 0xaa, 0x7e, 0x05, 0x72, 0xe8, - 0x96, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0xc3, 0xd4, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, - 0xd8, 0x18, 0x1c, 0x85, 0x8b, 0x01, 0x00, 0x00, + // 318 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x91, 0xcf, 0x4a, 0xc3, 0x40, + 0x10, 0xc6, 0xbb, 0x6d, 0x4d, 0xd3, 0xf5, 0x20, 0x84, 0x82, 0xb1, 0x62, 0x28, 0x05, 0xa1, 0x97, + 0x6e, 0x40, 0x7d, 0x82, 0x5e, 0x54, 0x10, 0x84, 0xd8, 0x53, 0x2f, 0x21, 0x4d, 0x96, 0x64, 0x51, + 0x77, 0xca, 0xee, 0x54, 0x56, 0x9f, 0xc2, 0x07, 0xf0, 0x81, 0x3c, 0xf6, 0xe8, 0x51, 0xda, 0x17, + 0x91, 0xec, 0xc6, 0x3f, 0x27, 0x6f, 0xf3, 0xcd, 0xec, 0x6f, 0xe7, 0x9b, 0x19, 0x7a, 0xf1, 0xc2, + 0x31, 0xcb, 0xab, 0x4c, 0xc8, 0xd8, 0x46, 0xa0, 0x78, 0x9c, 0x2b, 0xd0, 0xda, 0xe5, 0x60, 0x8d, + 0x4b, 0x58, 0xcb, 0x22, 0x45, 0x95, 0xe5, 0xf7, 0x5c, 0xb1, 0x95, 0x02, 0x84, 0xe0, 0xe4, 0x87, + 0x62, 0xdf, 0x14, 0xfb, 0xa5, 0x86, 0x83, 0x12, 0x4a, 0xb0, 0x2f, 0xe3, 0x3a, 0x72, 0xd0, 0x78, + 0x41, 0xbd, 0xb9, 0xb9, 0xca, 0x74, 0x15, 0x1c, 0xd2, 0x1e, 0x9a, 0xb4, 0xca, 0x74, 0x15, 0x92, + 0x11, 0x99, 0xf4, 0x13, 0x0f, 0x5d, 0xe1, 0x98, 0xf6, 0xd1, 0xa4, 0x5a, 0x94, 0x92, 0xab, 0xb0, + 0x6d, 0x4b, 0x3e, 0x9a, 0x3b, 0xab, 0x83, 0x21, 0xf5, 0x56, 0x0a, 0x9e, 0xb8, 0x0c, 0x3b, 0x23, + 0x32, 0xf1, 0x67, 0xed, 0x90, 0x24, 0x4d, 0x66, 0xfc, 0x46, 0xe8, 0xc1, 0x6d, 0xe3, 0x75, 0xee, + 0xac, 0x06, 0x03, 0xba, 0x27, 0x64, 0xc1, 0x4d, 0xd3, 0xc3, 0x89, 0xe0, 0x88, 0xfa, 0xd6, 0x64, + 0x2a, 0x0a, 0xdb, 0xa1, 0x93, 0xf4, 0xac, 0xbe, 0x2e, 0x6a, 0x40, 0x82, 0xcc, 0xb9, 0xfd, 0xbf, + 0x9b, 0x38, 0x11, 0xcc, 0x68, 0xbf, 0x76, 0x9a, 0x3e, 0x08, 0x8d, 0x61, 0x77, 0xd4, 0x99, 0xec, + 0x9f, 0x9d, 0xb2, 0x7f, 0xe7, 0x67, 0x6e, 0xcc, 0xc4, 0xaf, 0xb9, 0x1b, 0xa1, 0x71, 0x76, 0xf9, + 0xbe, 0x8d, 0xc8, 0x66, 0x1b, 0x91, 0xcf, 0x6d, 0x44, 0x5e, 0x77, 0x51, 0x6b, 0xb3, 0x8b, 0x5a, + 0x1f, 0xbb, 0xa8, 0xb5, 0x98, 0x96, 0x02, 0xab, 0xf5, 0x92, 0xe5, 0xf0, 0x68, 0x0f, 0x30, 0x75, + 0x7b, 0x97, 0x50, 0xf0, 0xd8, 0xfc, 0xbd, 0x04, 0x3e, 0xaf, 0xb8, 0x5e, 0x7a, 0x76, 0x95, 0xe7, + 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x51, 0x2c, 0xeb, 0x1c, 0xb7, 0x01, 0x00, 0x00, } func (m *TxHash) Marshal() (dAtA []byte, err error) { @@ -194,6 +205,16 @@ func (m *TxHash) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.Proven { + i-- + if m.Proven { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x18 + } if len(m.TxSigner) > 0 { i -= len(m.TxSigner) copy(dAtA[i:], m.TxSigner) @@ -290,6 +311,9 @@ func (m *TxHash) Size() (n int) { if l > 0 { n += 1 + l + sovOutboundTracker(uint64(l)) } + if m.Proven { + n += 2 + } return n } @@ -417,6 +441,26 @@ func (m *TxHash) Unmarshal(dAtA []byte) error { } m.TxSigner = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Proven", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowOutboundTracker + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Proven = bool(v != 0) default: iNdEx = preIndex skippy, err := skipOutboundTracker(dAtA[iNdEx:]) diff --git a/x/crosschain/types/tx.pb.go b/x/crosschain/types/tx.pb.go index 5624d99667..bd4c1845ac 100644 --- a/x/crosschain/types/tx.pb.go +++ b/x/crosschain/types/tx.pb.go @@ -12,7 +12,7 @@ import ( proto "github.com/cosmos/gogoproto/proto" chains "github.com/zeta-chain/node/pkg/chains" coin "github.com/zeta-chain/node/pkg/coin" - _ "github.com/zeta-chain/node/pkg/proofs" + proofs "github.com/zeta-chain/node/pkg/proofs" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -210,10 +210,13 @@ func (m *MsgUpdateTssAddressResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateTssAddressResponse proto.InternalMessageInfo type MsgAddInboundTracker struct { - Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` - ChainId int64 `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"` - TxHash string `protobuf:"bytes,3,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"` - CoinType coin.CoinType `protobuf:"varint,4,opt,name=coin_type,json=coinType,proto3,enum=zetachain.zetacore.pkg.coin.CoinType" json:"coin_type,omitempty"` + Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` + ChainId int64 `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"` + TxHash string `protobuf:"bytes,3,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"` + CoinType coin.CoinType `protobuf:"varint,4,opt,name=coin_type,json=coinType,proto3,enum=zetachain.zetacore.pkg.coin.CoinType" json:"coin_type,omitempty"` + Proof *proofs.Proof `protobuf:"bytes,5,opt,name=proof,proto3" json:"proof,omitempty"` // Deprecated: Do not use. + BlockHash string `protobuf:"bytes,6,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"` // Deprecated: Do not use. + TxIndex int64 `protobuf:"varint,7,opt,name=tx_index,json=txIndex,proto3" json:"tx_index,omitempty"` // Deprecated: Do not use. } func (m *MsgAddInboundTracker) Reset() { *m = MsgAddInboundTracker{} } @@ -277,6 +280,30 @@ func (m *MsgAddInboundTracker) GetCoinType() coin.CoinType { return coin.CoinType_Zeta } +// Deprecated: Do not use. +func (m *MsgAddInboundTracker) GetProof() *proofs.Proof { + if m != nil { + return m.Proof + } + return nil +} + +// Deprecated: Do not use. +func (m *MsgAddInboundTracker) GetBlockHash() string { + if m != nil { + return m.BlockHash + } + return "" +} + +// Deprecated: Do not use. +func (m *MsgAddInboundTracker) GetTxIndex() int64 { + if m != nil { + return m.TxIndex + } + return 0 +} + type MsgAddInboundTrackerResponse struct { } @@ -459,10 +486,13 @@ func (m *MsgWhitelistERC20Response) GetCctxIndex() string { } type MsgAddOutboundTracker struct { - Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` - ChainId int64 `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"` - Nonce uint64 `protobuf:"varint,3,opt,name=nonce,proto3" json:"nonce,omitempty"` - TxHash string `protobuf:"bytes,4,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"` + Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` + ChainId int64 `protobuf:"varint,2,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"` + Nonce uint64 `protobuf:"varint,3,opt,name=nonce,proto3" json:"nonce,omitempty"` + TxHash string `protobuf:"bytes,4,opt,name=tx_hash,json=txHash,proto3" json:"tx_hash,omitempty"` + Proof *proofs.Proof `protobuf:"bytes,5,opt,name=proof,proto3" json:"proof,omitempty"` // Deprecated: Do not use. + BlockHash string `protobuf:"bytes,6,opt,name=block_hash,json=blockHash,proto3" json:"block_hash,omitempty"` // Deprecated: Do not use. + TxIndex int64 `protobuf:"varint,7,opt,name=tx_index,json=txIndex,proto3" json:"tx_index,omitempty"` // Deprecated: Do not use. } func (m *MsgAddOutboundTracker) Reset() { *m = MsgAddOutboundTracker{} } @@ -526,6 +556,30 @@ func (m *MsgAddOutboundTracker) GetTxHash() string { return "" } +// Deprecated: Do not use. +func (m *MsgAddOutboundTracker) GetProof() *proofs.Proof { + if m != nil { + return m.Proof + } + return nil +} + +// Deprecated: Do not use. +func (m *MsgAddOutboundTracker) GetBlockHash() string { + if m != nil { + return m.BlockHash + } + return "" +} + +// Deprecated: Do not use. +func (m *MsgAddOutboundTracker) GetTxIndex() int64 { + if m != nil { + return m.TxIndex + } + return 0 +} + type MsgAddOutboundTrackerResponse struct { IsRemoved bool `protobuf:"varint,1,opt,name=is_removed,json=isRemoved,proto3" json:"is_removed,omitempty"` } @@ -947,9 +1001,9 @@ type MsgVoteInbound struct { SenderChainId int64 `protobuf:"varint,3,opt,name=sender_chain_id,json=senderChainId,proto3" json:"sender_chain_id,omitempty"` Receiver string `protobuf:"bytes,4,opt,name=receiver,proto3" json:"receiver,omitempty"` ReceiverChain int64 `protobuf:"varint,5,opt,name=receiver_chain,json=receiverChain,proto3" json:"receiver_chain,omitempty"` - // string zeta_burnt = 6; + // string zeta_burnt = 6; Amount github_com_cosmos_cosmos_sdk_types.Uint `protobuf:"bytes,6,opt,name=amount,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Uint" json:"amount"` - // string mMint = 7; + // string mMint = 7; Message string `protobuf:"bytes,8,opt,name=message,proto3" json:"message,omitempty"` InboundHash string `protobuf:"bytes,9,opt,name=inbound_hash,json=inboundHash,proto3" json:"inbound_hash,omitempty"` InboundBlockHeight uint64 `protobuf:"varint,10,opt,name=inbound_block_height,json=inboundBlockHeight,proto3" json:"inbound_block_height,omitempty"` @@ -1686,121 +1740,123 @@ func init() { } var fileDescriptor_15f0860550897740 = []byte{ - // 1817 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x59, 0xcd, 0x6f, 0xdb, 0xc8, - 0x15, 0x0f, 0x37, 0xb2, 0x2c, 0x3d, 0xd9, 0x8e, 0x33, 0x71, 0x12, 0x86, 0x5e, 0x3b, 0x0e, 0x83, - 0xa4, 0xc6, 0x62, 0x2d, 0xa5, 0xce, 0x36, 0xdd, 0x66, 0x8b, 0x6e, 0x63, 0xed, 0xc6, 0x71, 0x10, - 0x25, 0x06, 0xd7, 0xd9, 0x7e, 0x5c, 0x08, 0x8a, 0x1c, 0x53, 0x84, 0x25, 0x8e, 0xc0, 0x19, 0x69, - 0xa5, 0xa0, 0x40, 0x8b, 0x02, 0x05, 0x7a, 0x29, 0xd0, 0x16, 0x3d, 0xed, 0xbd, 0x87, 0xfe, 0x0b, - 0x3d, 0xf4, 0xbc, 0xc7, 0xa0, 0xa7, 0xa2, 0x87, 0xa0, 0x48, 0x0e, 0xbd, 0x16, 0xbd, 0xf6, 0x52, - 0xcc, 0x07, 0x69, 0x8a, 0xfa, 0xb4, 0x8c, 0xbd, 0xc4, 0x9c, 0x37, 0xef, 0xf7, 0xbe, 0xe6, 0xcd, - 0xbc, 0xf7, 0x14, 0xb8, 0xfb, 0x0a, 0x33, 0xc7, 0x6d, 0x38, 0x41, 0x58, 0x11, 0x5f, 0x24, 0xc2, - 0x15, 0x37, 0x22, 0x94, 0x4a, 0x1a, 0xeb, 0x95, 0xdb, 0x11, 0x61, 0x04, 0x6d, 0x24, 0x7c, 0xe5, - 0x98, 0xaf, 0x7c, 0xca, 0x67, 0xac, 0xf9, 0xc4, 0x27, 0x82, 0xb3, 0xc2, 0xbf, 0x24, 0xc8, 0xf8, - 0x60, 0x84, 0xf0, 0xf6, 0x89, 0x5f, 0x11, 0x24, 0xaa, 0xfe, 0x28, 0xde, 0xbb, 0xe3, 0x78, 0x49, - 0x10, 0x8a, 0x7f, 0xa6, 0xc8, 0x6c, 0x47, 0x84, 0x1c, 0x53, 0xf5, 0x47, 0xf1, 0x3e, 0x98, 0xec, - 0x5c, 0xe4, 0x30, 0x6c, 0x37, 0x83, 0x56, 0xc0, 0x70, 0x64, 0x1f, 0x37, 0x1d, 0x3f, 0xc6, 0xed, - 0x4e, 0xc6, 0x89, 0x4f, 0x5b, 0x7c, 0xdb, 0x71, 0x80, 0xcc, 0x3f, 0x6a, 0x80, 0x6a, 0xd4, 0xaf, - 0x05, 0x3e, 0x17, 0x7b, 0x44, 0xe9, 0xe3, 0x4e, 0xe8, 0x51, 0xa4, 0xc3, 0xa2, 0x1b, 0x61, 0x87, - 0x91, 0x48, 0xd7, 0xb6, 0xb4, 0xed, 0xa2, 0x15, 0x2f, 0xd1, 0x0d, 0x28, 0x48, 0x11, 0x81, 0xa7, - 0xbf, 0xb7, 0xa5, 0x6d, 0x5f, 0xb4, 0x16, 0xc5, 0xfa, 0xc0, 0x43, 0xfb, 0x90, 0x77, 0x5a, 0xa4, - 0x13, 0x32, 0xfd, 0x22, 0xc7, 0xec, 0x55, 0xbe, 0x79, 0x73, 0xf3, 0xc2, 0x3f, 0xdf, 0xdc, 0xfc, - 0x8e, 0x1f, 0xb0, 0x46, 0xa7, 0x5e, 0x76, 0x49, 0xab, 0xe2, 0x12, 0xda, 0x22, 0x54, 0xfd, 0xd9, - 0xa1, 0xde, 0x49, 0x85, 0xf5, 0xdb, 0x98, 0x96, 0x5f, 0x06, 0x21, 0xb3, 0x14, 0xdc, 0x7c, 0x1f, - 0x8c, 0x61, 0x9b, 0x2c, 0x4c, 0xdb, 0x24, 0xa4, 0xd8, 0x7c, 0x0e, 0x57, 0x6a, 0xd4, 0x7f, 0xd9, - 0xf6, 0xe4, 0xe6, 0x23, 0xcf, 0x8b, 0x30, 0x9d, 0x64, 0xf2, 0x06, 0x00, 0xa3, 0xd4, 0x6e, 0x77, - 0xea, 0x27, 0xb8, 0x2f, 0x8c, 0x2e, 0x5a, 0x45, 0x46, 0xe9, 0xa1, 0x20, 0x98, 0x1b, 0xb0, 0x3e, - 0x42, 0x5e, 0xa2, 0xee, 0xaf, 0x1a, 0xac, 0xd5, 0xa8, 0xff, 0xc8, 0xf3, 0x0e, 0xc2, 0x3a, 0xe9, - 0x84, 0xde, 0x51, 0xe4, 0xb8, 0x27, 0x38, 0x9a, 0x2f, 0x46, 0xd7, 0x61, 0x91, 0xf5, 0xec, 0x86, - 0x43, 0x1b, 0x32, 0x48, 0x56, 0x9e, 0xf5, 0x9e, 0x38, 0xb4, 0x81, 0xf6, 0xa0, 0xc8, 0xd3, 0xc5, - 0xe6, 0xe1, 0xd0, 0x73, 0x5b, 0xda, 0xf6, 0xca, 0xee, 0x9d, 0xf2, 0x88, 0xec, 0x6d, 0x9f, 0xf8, - 0x65, 0x91, 0x57, 0x55, 0x12, 0x84, 0x47, 0xfd, 0x36, 0xb6, 0x0a, 0xae, 0xfa, 0x7a, 0x9a, 0x2b, - 0x2c, 0xac, 0xe6, 0x9f, 0xe6, 0x0a, 0xf9, 0xd5, 0xc5, 0xa7, 0xb9, 0xc2, 0xe2, 0x6a, 0xc1, 0xdc, - 0x84, 0xf7, 0x47, 0xd9, 0x9e, 0x38, 0xf7, 0x77, 0x0d, 0x2e, 0xd7, 0xa8, 0xff, 0x93, 0x46, 0xc0, - 0x70, 0x33, 0xa0, 0xec, 0x73, 0xab, 0xba, 0x7b, 0x6f, 0x82, 0x67, 0xb7, 0x61, 0x19, 0x47, 0xee, - 0xee, 0x3d, 0xdb, 0x91, 0x51, 0x52, 0xd1, 0x5c, 0x12, 0xc4, 0xf8, 0x24, 0xd2, 0xee, 0x5f, 0x1c, - 0x74, 0x1f, 0x41, 0x2e, 0x74, 0x5a, 0xd2, 0xc1, 0xa2, 0x25, 0xbe, 0xd1, 0x35, 0xc8, 0xd3, 0x7e, - 0xab, 0x4e, 0x9a, 0xfa, 0x82, 0x8c, 0x88, 0x5c, 0x21, 0x03, 0x0a, 0x1e, 0x76, 0x83, 0x96, 0xd3, - 0xa4, 0x7a, 0x7e, 0x4b, 0xdb, 0x5e, 0xb6, 0x92, 0x35, 0x5a, 0x87, 0xa2, 0xef, 0x50, 0x79, 0x0b, - 0xf4, 0x45, 0xa1, 0xa3, 0xe0, 0x3b, 0xf4, 0x19, 0x5f, 0x9b, 0x36, 0xdc, 0x18, 0xf2, 0x29, 0xf6, - 0x98, 0x7b, 0xf0, 0x6a, 0xc0, 0x03, 0xe9, 0xe1, 0xd2, 0xab, 0xb4, 0x07, 0x1b, 0x00, 0xae, 0xcb, - 0x7a, 0x76, 0x10, 0x7a, 0xb8, 0x17, 0x67, 0x0c, 0xa7, 0x1c, 0x70, 0x82, 0xf9, 0x3b, 0x0d, 0xae, - 0xca, 0xb0, 0xbe, 0xe8, 0xb0, 0xf3, 0xe7, 0xc4, 0x1a, 0x2c, 0x84, 0x24, 0x74, 0xb1, 0x08, 0x56, - 0xce, 0x92, 0x8b, 0x74, 0xa6, 0xe4, 0xd2, 0x99, 0x32, 0xe2, 0x94, 0x7f, 0x04, 0x1b, 0x23, 0xcd, - 0x49, 0x9c, 0xde, 0x00, 0x08, 0xa8, 0x1d, 0xe1, 0x16, 0xe9, 0x62, 0x4f, 0x58, 0x56, 0xb0, 0x8a, - 0x01, 0xb5, 0x24, 0xc1, 0xc4, 0xa0, 0xd7, 0xa8, 0x2f, 0x57, 0xdf, 0x9e, 0x47, 0xa6, 0x09, 0x5b, - 0xe3, 0xd4, 0x24, 0x09, 0xf9, 0x37, 0x0d, 0x2e, 0xd5, 0xa8, 0xff, 0x25, 0x61, 0x78, 0xdf, 0xa1, - 0x87, 0x51, 0xe0, 0xe2, 0xb9, 0x4d, 0x68, 0x73, 0x74, 0x6c, 0x82, 0x58, 0xa0, 0x5b, 0xb0, 0xd4, - 0x8e, 0x02, 0x12, 0x05, 0xac, 0x6f, 0x1f, 0x63, 0x2c, 0xf2, 0x2a, 0x67, 0x95, 0x62, 0xda, 0x63, - 0x2c, 0x58, 0xea, 0x4d, 0xe2, 0x9e, 0xd8, 0x61, 0xa7, 0x55, 0xc7, 0x91, 0x08, 0x7e, 0xce, 0x2a, - 0x09, 0xda, 0x73, 0x41, 0x42, 0x06, 0xe4, 0x69, 0xa7, 0xdd, 0x6e, 0xf6, 0x65, 0xc6, 0xee, 0xbd, - 0xa7, 0x6b, 0x96, 0xa2, 0x98, 0x37, 0xe0, 0x7a, 0xc6, 0xfe, 0xc4, 0xb7, 0x3f, 0xe7, 0x13, 0xdf, - 0x62, 0xf7, 0x27, 0xf8, 0xb6, 0x0e, 0x22, 0xe3, 0x64, 0x06, 0xc8, 0x14, 0x2c, 0x70, 0x82, 0x78, - 0x2d, 0x3e, 0x82, 0x6b, 0xa4, 0x4e, 0x71, 0xd4, 0xc5, 0x9e, 0x4d, 0x94, 0xac, 0xf4, 0xab, 0xb2, - 0x16, 0xef, 0xc6, 0x8a, 0x04, 0xaa, 0x0a, 0x9b, 0xc3, 0x28, 0xe9, 0x6c, 0x03, 0x07, 0x7e, 0x83, - 0x29, 0x67, 0xd7, 0xb3, 0xe8, 0x3d, 0xce, 0xf3, 0x44, 0xb0, 0xa0, 0x4f, 0xc0, 0x18, 0x16, 0xc2, - 0x2f, 0x63, 0x87, 0x62, 0x4f, 0x07, 0x21, 0xe0, 0x7a, 0x56, 0xc0, 0xbe, 0x43, 0x5f, 0x52, 0xec, - 0xa1, 0x5f, 0x69, 0x70, 0x67, 0x18, 0x8d, 0x8f, 0x8f, 0xb1, 0xcb, 0x82, 0x2e, 0x16, 0x72, 0xe4, - 0xb1, 0x95, 0x44, 0x64, 0xcb, 0xaa, 0x84, 0xdc, 0x9d, 0xa1, 0x84, 0x1c, 0x84, 0xcc, 0xba, 0x95, - 0x55, 0xfc, 0x79, 0x2c, 0x3a, 0xc9, 0xa6, 0xc3, 0xe9, 0x16, 0xc8, 0x67, 0x65, 0x49, 0xb8, 0x32, - 0x51, 0xa2, 0x78, 0x6f, 0x10, 0x81, 0x95, 0xae, 0xd3, 0xec, 0x60, 0x3b, 0xc2, 0x2e, 0x0e, 0xf8, - 0x0d, 0x93, 0x69, 0xf1, 0xe4, 0x8c, 0xf5, 0xef, 0xbf, 0x6f, 0x6e, 0x5e, 0xed, 0x3b, 0xad, 0xe6, - 0x43, 0x73, 0x50, 0x9c, 0x69, 0x2d, 0x0b, 0x82, 0xa5, 0xd6, 0xe8, 0x33, 0xc8, 0x53, 0xe6, 0xb0, - 0x8e, 0x7c, 0x17, 0x57, 0x76, 0x3f, 0x1c, 0x5b, 0x28, 0x64, 0xab, 0xa2, 0x80, 0x5f, 0x08, 0x8c, - 0xa5, 0xb0, 0xe8, 0x0e, 0xac, 0x24, 0xfe, 0x0b, 0x46, 0xf5, 0x90, 0x2e, 0xc7, 0xd4, 0x2a, 0x27, - 0xa2, 0x0f, 0x01, 0x25, 0x6c, 0xbc, 0x8c, 0xca, 0x8b, 0x5d, 0x10, 0xc1, 0x59, 0x8d, 0x77, 0x8e, - 0x28, 0x7d, 0x2e, 0x5e, 0xad, 0x81, 0x32, 0x56, 0x9c, 0xab, 0x8c, 0xa5, 0xae, 0x50, 0x1c, 0xf3, - 0xe4, 0x0a, 0xfd, 0x3b, 0x0f, 0x2b, 0x6a, 0x4f, 0x55, 0xb4, 0x09, 0x37, 0x88, 0x17, 0x16, 0x1c, - 0x7a, 0x38, 0x52, 0xd7, 0x47, 0xad, 0xd0, 0x5d, 0xb8, 0x24, 0xbf, 0xec, 0x4c, 0x99, 0x5a, 0x96, - 0xe4, 0xaa, 0x7a, 0x42, 0x0c, 0x28, 0xa8, 0x23, 0x88, 0xd4, 0x13, 0x9c, 0xac, 0x79, 0xf0, 0xe2, - 0x6f, 0x15, 0xbc, 0x05, 0x29, 0x22, 0xa6, 0xca, 0xe0, 0x9d, 0xb6, 0x44, 0xf9, 0x73, 0xb5, 0x44, - 0xdc, 0xcb, 0x16, 0xa6, 0xd4, 0xf1, 0x65, 0xe8, 0x8b, 0x56, 0xbc, 0xe4, 0xef, 0x55, 0x10, 0xa6, - 0x1e, 0x80, 0xa2, 0xd8, 0x2e, 0x29, 0x9a, 0xb8, 0xf7, 0xf7, 0x60, 0x2d, 0x66, 0x19, 0xb8, 0xed, - 0xf2, 0xb2, 0x22, 0xb5, 0x97, 0xbe, 0xe4, 0x03, 0xf5, 0xb5, 0x24, 0xd8, 0x92, 0xfa, 0x3a, 0x78, - 0xc6, 0x4b, 0x73, 0x9d, 0x31, 0x57, 0xc0, 0x7a, 0x36, 0x89, 0x02, 0x3f, 0x08, 0xf5, 0x65, 0x19, - 0x5c, 0xd6, 0x7b, 0x21, 0xd6, 0xfc, 0xed, 0x76, 0x28, 0xc5, 0x4c, 0x5f, 0x11, 0x1b, 0x72, 0x81, - 0x6e, 0x42, 0x09, 0x77, 0x71, 0xc8, 0x54, 0x55, 0xbe, 0x24, 0xac, 0x02, 0x41, 0x12, 0x65, 0x19, - 0x45, 0x70, 0x43, 0x34, 0xb5, 0x2e, 0x69, 0xda, 0x2e, 0x09, 0x59, 0xe4, 0xb8, 0xcc, 0xee, 0xe2, - 0x88, 0x06, 0x24, 0xd4, 0x57, 0x85, 0x9d, 0x0f, 0xca, 0x13, 0x07, 0x82, 0xf2, 0xa1, 0xc2, 0x57, - 0x15, 0xfc, 0x4b, 0x89, 0xb6, 0xae, 0xb7, 0x47, 0x6f, 0xa0, 0x9f, 0xf1, 0x3c, 0xe8, 0xe2, 0x88, - 0xd9, 0xa4, 0xcd, 0x02, 0x12, 0x52, 0xfd, 0xf2, 0x96, 0xb6, 0x5d, 0x1a, 0x7d, 0x25, 0x53, 0x8a, - 0x2c, 0x01, 0x7a, 0x21, 0x31, 0x7b, 0x39, 0x9e, 0x16, 0x3c, 0x77, 0x52, 0x44, 0x54, 0x83, 0x25, - 0xd7, 0x69, 0x36, 0x13, 0xc1, 0x48, 0x08, 0xfe, 0x60, 0x8a, 0xe0, 0xaa, 0xd3, 0x6c, 0x2a, 0x09, - 0x56, 0xc9, 0x3d, 0x5d, 0xa0, 0x1d, 0xb8, 0x12, 0x50, 0x3b, 0x3d, 0x04, 0xf0, 0x5d, 0xfd, 0x8a, - 0x68, 0x06, 0x56, 0x03, 0x5a, 0xe5, 0x3b, 0x22, 0x6b, 0xb9, 0x08, 0x53, 0x87, 0x6b, 0x83, 0x17, - 0x2d, 0xb9, 0x83, 0xcf, 0x44, 0xcb, 0xf8, 0xa8, 0x4e, 0x22, 0xf6, 0x05, 0xeb, 0xb8, 0x27, 0xd5, - 0xea, 0xd1, 0x4f, 0x27, 0x77, 0xdf, 0x93, 0x7a, 0xa9, 0x75, 0xd1, 0xac, 0x0d, 0x4a, 0x4b, 0x54, - 0x75, 0x45, 0xeb, 0x6d, 0xe1, 0xe3, 0x4e, 0xe8, 0x09, 0x16, 0xec, 0x9d, 0x4b, 0x9b, 0xbc, 0xb6, - 0x5c, 0x5a, 0xd2, 0xfe, 0xc9, 0x7a, 0xb9, 0x2c, 0xa9, 0xaa, 0xff, 0x53, 0x6d, 0xf3, 0x90, 0xde, - 0xc4, 0xae, 0xaf, 0x35, 0x61, 0xb5, 0x9c, 0x19, 0x2c, 0x87, 0xe1, 0x67, 0x72, 0x1c, 0x7b, 0xcc, - 0xa7, 0xb1, 0x09, 0xd6, 0xb9, 0x80, 0x86, 0xa7, 0x37, 0x61, 0x65, 0x69, 0xb7, 0x32, 0x2d, 0x63, - 0x32, 0x6a, 0x54, 0xd2, 0xac, 0x46, 0x19, 0xba, 0x79, 0x1b, 0x6e, 0x8d, 0xb5, 0x2d, 0xf1, 0xe0, - 0x3f, 0x9a, 0x98, 0x7a, 0xd4, 0x8c, 0x25, 0x5a, 0xe4, 0x6a, 0x87, 0x32, 0xe2, 0xf5, 0xcf, 0x31, - 0x00, 0x96, 0xe1, 0x4a, 0x88, 0xbf, 0xb2, 0x5d, 0x29, 0x28, 0x13, 0xe2, 0xcb, 0x21, 0xfe, 0x4a, - 0xa9, 0x88, 0xdb, 0xec, 0xa1, 0x69, 0x22, 0x37, 0x62, 0x9a, 0x38, 0x7d, 0x42, 0x17, 0xce, 0x37, - 0x55, 0x7e, 0x06, 0xb7, 0x27, 0x78, 0x9c, 0xee, 0x95, 0x53, 0x19, 0xa4, 0x65, 0xf3, 0xb5, 0x25, - 0x9a, 0x58, 0x19, 0xdd, 0xb4, 0x90, 0x43, 0xa7, 0x43, 0x55, 0x85, 0x9d, 0xbf, 0x61, 0xe5, 0x32, - 0x44, 0xb8, 0x0a, 0x96, 0x5c, 0x98, 0x07, 0xb0, 0x3d, 0x4d, 0xdd, 0x8c, 0x96, 0xef, 0xfe, 0x6f, - 0x05, 0x2e, 0xd6, 0xa8, 0x8f, 0x7e, 0xab, 0x01, 0x1a, 0x31, 0xba, 0x7c, 0x34, 0x25, 0xff, 0x46, - 0x4e, 0x18, 0xc6, 0x0f, 0xe7, 0x41, 0x25, 0x16, 0xff, 0x46, 0x83, 0xcb, 0xc3, 0x83, 0xf5, 0xfd, - 0x99, 0x64, 0x0e, 0x82, 0x8c, 0x4f, 0xe6, 0x00, 0x25, 0x76, 0xfc, 0x41, 0x83, 0xab, 0xa3, 0xc7, - 0x9f, 0xef, 0x4f, 0x17, 0x3b, 0x12, 0x68, 0x7c, 0x3a, 0x27, 0x30, 0xb1, 0xa9, 0x0b, 0x4b, 0x03, - 0x53, 0x50, 0x79, 0xba, 0xc0, 0x34, 0xbf, 0xf1, 0xe0, 0x6c, 0xfc, 0x59, 0xbd, 0xc9, 0x84, 0x32, - 0xa3, 0xde, 0x98, 0x7f, 0x56, 0xbd, 0xd9, 0xd6, 0x0e, 0x51, 0x28, 0xa5, 0xdb, 0xba, 0x9d, 0xd9, - 0xc4, 0x28, 0x76, 0xe3, 0x7b, 0x67, 0x62, 0x4f, 0x94, 0xfe, 0x02, 0x56, 0x32, 0xbf, 0x7d, 0xdc, - 0x9b, 0x2e, 0x68, 0x10, 0x61, 0x7c, 0x7c, 0x56, 0x44, 0xa2, 0xfd, 0xd7, 0x1a, 0xac, 0x0e, 0xfd, - 0x8e, 0xb5, 0x3b, 0x5d, 0x5c, 0x16, 0x63, 0x3c, 0x3c, 0x3b, 0x26, 0x31, 0xe2, 0x97, 0x70, 0x29, - 0xfb, 0xeb, 0xdf, 0x77, 0xa7, 0x8b, 0xcb, 0x40, 0x8c, 0x1f, 0x9c, 0x19, 0x92, 0x3e, 0x83, 0x4c, - 0x33, 0x31, 0xc3, 0x19, 0x0c, 0x22, 0x66, 0x39, 0x83, 0xd1, 0x2d, 0x86, 0x78, 0x82, 0x86, 0x1b, - 0x8c, 0xfb, 0xb3, 0xdc, 0xde, 0x0c, 0x68, 0x96, 0x27, 0x68, 0x6c, 0x4b, 0x81, 0xfe, 0xa4, 0xc1, - 0xb5, 0x31, 0xfd, 0xc4, 0xc7, 0xb3, 0x9e, 0x6e, 0x16, 0x69, 0xfc, 0x78, 0x5e, 0x64, 0x62, 0xd6, - 0xd7, 0x1a, 0xe8, 0x63, 0x9b, 0x84, 0x87, 0x33, 0x1f, 0xfa, 0x10, 0xd6, 0xd8, 0x9b, 0x1f, 0x9b, - 0x18, 0xf7, 0x17, 0x0d, 0x36, 0x26, 0x57, 0xe2, 0x4f, 0x67, 0x0d, 0xc0, 0x18, 0x01, 0xc6, 0xfe, - 0x39, 0x05, 0xc4, 0xb6, 0xee, 0xed, 0x7f, 0xf3, 0x76, 0x53, 0x7b, 0xfd, 0x76, 0x53, 0xfb, 0xd7, - 0xdb, 0x4d, 0xed, 0xf7, 0xef, 0x36, 0x2f, 0xbc, 0x7e, 0xb7, 0x79, 0xe1, 0x1f, 0xef, 0x36, 0x2f, - 0xfc, 0x7c, 0x27, 0xd5, 0xc8, 0x70, 0x15, 0x3b, 0xf2, 0xe7, 0xfa, 0x90, 0x78, 0xb8, 0xd2, 0x1b, - 0xf8, 0x5f, 0x0d, 0xde, 0xd3, 0xd4, 0xf3, 0x62, 0x14, 0xb9, 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, - 0xff, 0xbe, 0xc4, 0x2d, 0x51, 0x03, 0x19, 0x00, 0x00, + // 1848 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x59, 0x4b, 0x6f, 0x1b, 0xc9, + 0x11, 0xf6, 0xd8, 0x12, 0x45, 0x16, 0x25, 0x59, 0x6e, 0xcb, 0x36, 0x3d, 0x5a, 0xc9, 0x32, 0x1d, + 0x3b, 0xc2, 0xc2, 0x22, 0x1d, 0x7a, 0xe3, 0x6c, 0xbc, 0xc1, 0x6e, 0x2c, 0xee, 0x5a, 0x2b, 0xc0, + 0xb4, 0x85, 0x59, 0x79, 0xf3, 0xb8, 0x0c, 0x86, 0x33, 0xad, 0xd1, 0x40, 0xe4, 0x34, 0x31, 0xdd, + 0xe4, 0x52, 0x46, 0x80, 0x04, 0x01, 0x02, 0xe4, 0x98, 0x04, 0x39, 0xed, 0x3d, 0x87, 0xe4, 0x47, + 0xe4, 0xbc, 0x47, 0x23, 0xa7, 0x20, 0x07, 0x23, 0xb0, 0x0f, 0xb9, 0x06, 0xb9, 0x06, 0x01, 0x82, + 0xae, 0xee, 0x19, 0x91, 0xc3, 0xa7, 0x28, 0x04, 0xb9, 0x88, 0xdd, 0xd5, 0xf5, 0x55, 0x57, 0x55, + 0x57, 0x75, 0x57, 0x8d, 0xe0, 0xde, 0x2b, 0x2a, 0x1c, 0xf7, 0xc8, 0x09, 0xc2, 0x32, 0x8e, 0x58, + 0x44, 0xcb, 0x6e, 0xc4, 0x38, 0x57, 0x34, 0xd1, 0x2d, 0xb5, 0x22, 0x26, 0x18, 0x59, 0x4f, 0xf8, + 0x4a, 0x31, 0x5f, 0xe9, 0x94, 0xcf, 0x5c, 0xf5, 0x99, 0xcf, 0x90, 0xb3, 0x2c, 0x47, 0x0a, 0x64, + 0xbe, 0x3f, 0x44, 0x78, 0xeb, 0xd8, 0x2f, 0x23, 0x89, 0xeb, 0x1f, 0xcd, 0x7b, 0x6f, 0x14, 0x2f, + 0x0b, 0x42, 0xfc, 0x33, 0x41, 0x66, 0x2b, 0x62, 0xec, 0x90, 0xeb, 0x1f, 0xcd, 0xfb, 0x68, 0xbc, + 0x71, 0x91, 0x23, 0xa8, 0xdd, 0x08, 0x9a, 0x81, 0xa0, 0x91, 0x7d, 0xd8, 0x70, 0xfc, 0x18, 0x57, + 0x19, 0x8f, 0xc3, 0xa1, 0x8d, 0x63, 0x3b, 0x76, 0x50, 0xf1, 0x77, 0x06, 0x90, 0x1a, 0xf7, 0x6b, + 0x81, 0x2f, 0xc5, 0x1e, 0x70, 0xfe, 0xb4, 0x1d, 0x7a, 0x9c, 0x14, 0x60, 0xc1, 0x8d, 0xa8, 0x23, + 0x58, 0x54, 0x30, 0x36, 0x8d, 0xad, 0x9c, 0x15, 0x4f, 0xc9, 0x4d, 0xc8, 0x2a, 0x11, 0x81, 0x57, + 0xb8, 0xb8, 0x69, 0x6c, 0x5d, 0xb2, 0x16, 0x70, 0xbe, 0xe7, 0x91, 0x5d, 0xc8, 0x38, 0x4d, 0xd6, + 0x0e, 0x45, 0xe1, 0x92, 0xc4, 0xec, 0x94, 0xbf, 0x79, 0x73, 0xeb, 0xc2, 0xdf, 0xde, 0xdc, 0xfa, + 0xb6, 0x1f, 0x88, 0xa3, 0x76, 0xbd, 0xe4, 0xb2, 0x66, 0xd9, 0x65, 0xbc, 0xc9, 0xb8, 0xfe, 0xd9, + 0xe6, 0xde, 0x71, 0x59, 0x9c, 0xb4, 0x28, 0x2f, 0xbd, 0x0c, 0x42, 0x61, 0x69, 0x78, 0xf1, 0x3d, + 0x30, 0x07, 0x75, 0xb2, 0x28, 0x6f, 0xb1, 0x90, 0xd3, 0xe2, 0x73, 0xb8, 0x5a, 0xe3, 0xfe, 0xcb, + 0x96, 0xa7, 0x16, 0x9f, 0x78, 0x5e, 0x44, 0xf9, 0x38, 0x95, 0xd7, 0x01, 0x04, 0xe7, 0x76, 0xab, + 0x5d, 0x3f, 0xa6, 0x27, 0xa8, 0x74, 0xce, 0xca, 0x09, 0xce, 0xf7, 0x91, 0x50, 0x5c, 0x87, 0xb5, + 0x21, 0xf2, 0x92, 0xed, 0xfe, 0x74, 0x11, 0x56, 0x6b, 0xdc, 0x7f, 0xe2, 0x79, 0x7b, 0x61, 0x9d, + 0xb5, 0x43, 0xef, 0x20, 0x72, 0xdc, 0x63, 0x1a, 0xcd, 0xe6, 0xa3, 0x1b, 0xb0, 0x20, 0xba, 0xf6, + 0x91, 0xc3, 0x8f, 0x94, 0x93, 0xac, 0x8c, 0xe8, 0x7e, 0xee, 0xf0, 0x23, 0xb2, 0x03, 0x39, 0x19, + 0x2e, 0xb6, 0x74, 0x47, 0x61, 0x6e, 0xd3, 0xd8, 0x5a, 0xae, 0xdc, 0x2d, 0x0d, 0x89, 0xde, 0xd6, + 0xb1, 0x5f, 0xc2, 0xb8, 0xaa, 0xb2, 0x20, 0x3c, 0x38, 0x69, 0x51, 0x2b, 0xeb, 0xea, 0x11, 0xf9, + 0x18, 0xe6, 0x31, 0x90, 0x0a, 0xf3, 0x9b, 0xc6, 0x56, 0xbe, 0xf2, 0xad, 0x51, 0x78, 0x1d, 0x6d, + 0xfb, 0xf2, 0x67, 0xe7, 0x62, 0xc1, 0xb0, 0x14, 0x8c, 0xdc, 0x06, 0xa8, 0x37, 0x98, 0x7b, 0xac, + 0xf4, 0xcb, 0xe0, 0x21, 0xca, 0xe5, 0x1c, 0x52, 0x51, 0xcd, 0x75, 0xc8, 0x8a, 0xae, 0x1d, 0x84, + 0x1e, 0xed, 0x16, 0x16, 0xa4, 0x69, 0xc8, 0xb0, 0x20, 0xba, 0x7b, 0x92, 0x54, 0xdc, 0x80, 0xf7, + 0x86, 0xf9, 0x2a, 0x71, 0xe6, 0x5f, 0x0c, 0xb8, 0x52, 0xe3, 0xfe, 0x8f, 0x8e, 0x02, 0x41, 0x1b, + 0x01, 0x17, 0x9f, 0x59, 0xd5, 0xca, 0x83, 0x31, 0x9e, 0xbc, 0x03, 0x4b, 0x34, 0x72, 0x2b, 0x0f, + 0x6c, 0x47, 0x9d, 0x8a, 0x3e, 0xbd, 0x45, 0x24, 0xc6, 0x27, 0xdf, 0xeb, 0xee, 0x4b, 0xfd, 0xee, + 0x26, 0x30, 0x17, 0x3a, 0x4d, 0xe5, 0xd0, 0x9c, 0x85, 0x63, 0x72, 0x1d, 0x32, 0xfc, 0xa4, 0x59, + 0x67, 0x0d, 0x74, 0x53, 0xce, 0xd2, 0x33, 0x62, 0x42, 0xd6, 0xa3, 0x6e, 0xd0, 0x74, 0x1a, 0x1c, + 0x6d, 0x5f, 0xb2, 0x92, 0x39, 0x59, 0x83, 0x9c, 0xef, 0x70, 0x95, 0x75, 0xca, 0x6e, 0x2b, 0xeb, + 0x3b, 0xfc, 0x99, 0x9c, 0x17, 0x6d, 0xb8, 0x39, 0x60, 0x53, 0x6c, 0xb1, 0xb4, 0xe0, 0x55, 0x9f, + 0x05, 0xca, 0xc2, 0xc5, 0x57, 0xbd, 0x16, 0xac, 0x03, 0xb8, 0x6e, 0xe2, 0x57, 0x1d, 0xa1, 0x92, + 0xa2, 0xbc, 0xfa, 0x1f, 0x03, 0xae, 0x29, 0xb7, 0xbe, 0x68, 0x8b, 0xf3, 0xc7, 0xe0, 0x2a, 0xcc, + 0x87, 0x2c, 0x74, 0x29, 0x3a, 0x6b, 0xce, 0x52, 0x93, 0xde, 0xc8, 0x9c, 0xeb, 0x8b, 0xcc, 0xff, + 0x7f, 0x54, 0x7d, 0x0c, 0xeb, 0x43, 0xcd, 0x4f, 0x9c, 0xbc, 0x0e, 0x10, 0x70, 0x3b, 0xa2, 0x4d, + 0xd6, 0xa1, 0x1e, 0x7a, 0x22, 0x6b, 0xe5, 0x02, 0x6e, 0x29, 0x42, 0x91, 0x42, 0xa1, 0xc6, 0x7d, + 0x35, 0xfb, 0xdf, 0x79, 0xb0, 0x58, 0x84, 0xcd, 0x51, 0xdb, 0x24, 0x09, 0xf0, 0x67, 0x03, 0x2e, + 0xd7, 0xb8, 0xff, 0x25, 0x13, 0x74, 0xd7, 0xe1, 0xfb, 0x51, 0xe0, 0xd2, 0x99, 0x55, 0x68, 0x49, + 0x74, 0xac, 0x02, 0x4e, 0xc8, 0x6d, 0x58, 0x6c, 0x45, 0x01, 0x8b, 0x02, 0x71, 0x62, 0x1f, 0x52, + 0x8a, 0xde, 0x9e, 0xb3, 0xf2, 0x31, 0xed, 0x29, 0x45, 0x16, 0x75, 0x1c, 0x61, 0xbb, 0x59, 0xa7, + 0x11, 0x1e, 0xf6, 0x9c, 0x95, 0x47, 0xda, 0x73, 0x24, 0x11, 0x13, 0x32, 0xbc, 0xdd, 0x6a, 0x35, + 0x4e, 0x54, 0x86, 0xe0, 0x61, 0x68, 0x4a, 0xf1, 0x26, 0xdc, 0x48, 0xe9, 0x9f, 0xd8, 0xf6, 0x87, + 0x4c, 0x62, 0x5b, 0x6c, 0xfe, 0x18, 0xdb, 0xd6, 0x00, 0x23, 0x5c, 0x45, 0x85, 0x0a, 0xf9, 0xac, + 0x24, 0x60, 0x40, 0x7c, 0x00, 0xd7, 0x59, 0x9d, 0xd3, 0xa8, 0x43, 0x3d, 0x9b, 0x69, 0x59, 0xbd, + 0xb7, 0xe6, 0x6a, 0xbc, 0x1a, 0x6f, 0x84, 0xa8, 0x2a, 0x6c, 0x0c, 0xa2, 0x74, 0xec, 0xd1, 0xc0, + 0x3f, 0x12, 0xda, 0xd8, 0xb5, 0x34, 0x7a, 0x07, 0x23, 0x11, 0x59, 0xc8, 0x47, 0x60, 0x0e, 0x0a, + 0x91, 0xc9, 0xdf, 0xe6, 0xd4, 0x2b, 0x00, 0x0a, 0xb8, 0x91, 0x16, 0xb0, 0xeb, 0xf0, 0x97, 0x9c, + 0x7a, 0xe4, 0x17, 0x06, 0xdc, 0x1d, 0x44, 0xd3, 0xc3, 0x43, 0xea, 0x8a, 0xa0, 0x43, 0x51, 0x8e, + 0x3a, 0xb6, 0x3c, 0x7a, 0xb6, 0xa4, 0x9f, 0xc8, 0x7b, 0x53, 0x3c, 0x91, 0x7b, 0xa1, 0xb0, 0x6e, + 0xa7, 0x37, 0xfe, 0x2c, 0x16, 0x9d, 0x44, 0xd3, 0xfe, 0x64, 0x0d, 0xd4, 0x35, 0xb6, 0x88, 0xa6, + 0x8c, 0x95, 0x88, 0xf7, 0x1b, 0x61, 0xb0, 0xdc, 0x71, 0x1a, 0x6d, 0x6a, 0x47, 0xd4, 0xa5, 0x81, + 0xcc, 0x30, 0x15, 0x16, 0x9f, 0x9f, 0xf1, 0x7d, 0xff, 0xd7, 0x9b, 0x5b, 0xd7, 0x4e, 0x9c, 0x66, + 0xe3, 0x71, 0xb1, 0x5f, 0x5c, 0xd1, 0x5a, 0x42, 0x82, 0xa5, 0xe7, 0xe4, 0x53, 0xc8, 0x70, 0xe1, + 0x88, 0xb6, 0xba, 0x87, 0x97, 0x2b, 0xf7, 0x47, 0x3e, 0x84, 0xaa, 0x14, 0xd3, 0xc0, 0x2f, 0x10, + 0x63, 0x69, 0x2c, 0xb9, 0x0b, 0xcb, 0x89, 0xfd, 0xc8, 0xa8, 0x2f, 0xee, 0xa5, 0x98, 0x5a, 0x95, + 0x44, 0x72, 0x1f, 0x48, 0xc2, 0x26, 0xcb, 0x04, 0x95, 0xd8, 0x59, 0x74, 0xce, 0x4a, 0xbc, 0x72, + 0xc0, 0xf9, 0x73, 0xbc, 0x25, 0xfb, 0x9e, 0xe9, 0xdc, 0x4c, 0xcf, 0x74, 0x4f, 0x0a, 0xc5, 0x3e, + 0x4f, 0x52, 0xe8, 0x1f, 0x19, 0x58, 0xd6, 0x6b, 0xfa, 0x05, 0x1d, 0x93, 0x41, 0xf2, 0x21, 0xa3, + 0xa1, 0x47, 0x23, 0x9d, 0x3e, 0x7a, 0x46, 0xee, 0xc1, 0x65, 0x35, 0xb2, 0x53, 0xcf, 0xe2, 0x92, + 0x22, 0x57, 0xf5, 0x15, 0x62, 0x42, 0x56, 0x1f, 0x41, 0xa4, 0xaf, 0xfc, 0x64, 0x2e, 0x9d, 0x17, + 0x8f, 0xb5, 0xf3, 0xe6, 0x95, 0x88, 0x98, 0xaa, 0x9c, 0x77, 0x5a, 0xf2, 0x65, 0xce, 0x55, 0xf2, + 0x49, 0x2b, 0x9b, 0x94, 0x73, 0xc7, 0x57, 0xae, 0xcf, 0x59, 0xf1, 0x54, 0xde, 0x57, 0x41, 0xd8, + 0x73, 0x01, 0xe4, 0x70, 0x39, 0xaf, 0x69, 0x98, 0xf7, 0x0f, 0x60, 0x35, 0x66, 0xe9, 0xcb, 0x76, + 0x95, 0xac, 0x44, 0xaf, 0xf5, 0x26, 0x79, 0xdf, 0x7b, 0x9e, 0x47, 0xb6, 0xe4, 0x3d, 0xef, 0x3f, + 0xe3, 0xc5, 0xd9, 0x4a, 0xb1, 0x35, 0xc8, 0x89, 0xae, 0xcd, 0xa2, 0xc0, 0x0f, 0xc2, 0xc2, 0x92, + 0x72, 0xae, 0xe8, 0xbe, 0xc0, 0xb9, 0xbc, 0xbb, 0x1d, 0xce, 0xa9, 0x28, 0x2c, 0xe3, 0x82, 0x9a, + 0x90, 0x5b, 0x90, 0xa7, 0x1d, 0x1a, 0x0a, 0xfd, 0x0e, 0x5e, 0x46, 0xad, 0x00, 0x49, 0xf8, 0x0c, + 0x92, 0x08, 0x6e, 0x62, 0xd1, 0xee, 0xb2, 0x86, 0xed, 0xb2, 0x50, 0x44, 0x8e, 0x2b, 0xec, 0x0e, + 0x8d, 0x78, 0xc0, 0xc2, 0xc2, 0x0a, 0xea, 0xf9, 0xa8, 0x34, 0xb6, 0xe1, 0x91, 0x8f, 0x33, 0xe2, + 0xab, 0x1a, 0xfe, 0xa5, 0x42, 0x5b, 0x37, 0x5a, 0xc3, 0x17, 0xc8, 0x4f, 0x64, 0x1c, 0x74, 0x68, + 0x24, 0x6c, 0xd6, 0x12, 0x01, 0x0b, 0x79, 0xe1, 0x0a, 0x56, 0x01, 0xf7, 0x27, 0x6c, 0x64, 0x21, + 0xe8, 0x85, 0xc2, 0xec, 0xcc, 0xc9, 0xb0, 0x90, 0xb1, 0xd3, 0x43, 0x24, 0x35, 0x58, 0x74, 0x9d, + 0x46, 0x23, 0x11, 0x4c, 0x50, 0xf0, 0xfb, 0x13, 0x04, 0x57, 0x9d, 0x46, 0x43, 0x4b, 0xb0, 0xf2, + 0xee, 0xe9, 0x84, 0x6c, 0xc3, 0xd5, 0x80, 0xdb, 0xbd, 0x4d, 0x8e, 0x5c, 0x2d, 0x5c, 0xc5, 0x62, + 0x60, 0x25, 0xe0, 0x55, 0xb9, 0x82, 0x51, 0x2b, 0x45, 0x14, 0x0b, 0x70, 0xbd, 0x3f, 0xd1, 0x92, + 0x1c, 0x7c, 0x86, 0x25, 0xea, 0x93, 0x3a, 0x8b, 0xc4, 0x17, 0xa2, 0xed, 0x1e, 0x57, 0xab, 0x07, + 0x3f, 0x1e, 0xdf, 0x5d, 0x8c, 0xab, 0xdd, 0xd6, 0xb0, 0x38, 0xec, 0x97, 0x96, 0x6c, 0xd5, 0xc1, + 0xd6, 0xc2, 0xa2, 0x87, 0xed, 0xd0, 0x43, 0x16, 0xea, 0x9d, 0x6b, 0x37, 0x95, 0xb6, 0x52, 0x5a, + 0x52, 0x6e, 0xaa, 0xf7, 0x72, 0x49, 0x51, 0x75, 0xbd, 0xa9, 0xcb, 0xf4, 0x81, 0x7d, 0x13, 0xbd, + 0xbe, 0x36, 0x50, 0x6b, 0xd5, 0x13, 0x59, 0x8e, 0xa0, 0xcf, 0x54, 0xbb, 0xf9, 0x54, 0x76, 0x9b, + 0x63, 0xb4, 0x73, 0x81, 0x0c, 0x76, 0xa7, 0xa8, 0x65, 0xbe, 0x52, 0x9e, 0x14, 0x31, 0xa9, 0x6d, + 0x74, 0xd0, 0xac, 0x44, 0x29, 0x7a, 0xf1, 0x0e, 0xdc, 0x1e, 0xa9, 0x5b, 0x62, 0xc1, 0x3f, 0x0d, + 0xec, 0xea, 0x74, 0x0f, 0x89, 0x25, 0x79, 0xb5, 0xcd, 0x05, 0xf3, 0x4e, 0xce, 0xd1, 0xe0, 0x96, + 0xe0, 0x6a, 0x48, 0xbf, 0xb2, 0x5d, 0x25, 0x28, 0xe5, 0xe2, 0x2b, 0x21, 0xfd, 0x4a, 0x6f, 0x11, + 0x97, 0xf5, 0x03, 0xdd, 0xcb, 0xdc, 0x90, 0xee, 0xe5, 0xf4, 0x0a, 0x9d, 0x3f, 0x5f, 0xd7, 0xfc, + 0x29, 0xdc, 0x19, 0x63, 0x71, 0x6f, 0xad, 0xdc, 0x13, 0x41, 0x46, 0x3a, 0x5e, 0x9b, 0x58, 0xc4, + 0x2a, 0xef, 0xf6, 0x0a, 0xd9, 0x77, 0xda, 0x5c, 0xbf, 0xb0, 0xb3, 0x17, 0xac, 0x52, 0x06, 0xba, + 0x2b, 0x6b, 0xa9, 0x49, 0x71, 0x0f, 0xb6, 0x26, 0x6d, 0x37, 0xa5, 0xe6, 0x95, 0x7f, 0x2f, 0xc3, + 0xa5, 0x1a, 0xf7, 0xc9, 0xaf, 0x0d, 0x20, 0x43, 0x5a, 0xa5, 0x0f, 0x26, 0xc4, 0xdf, 0xd0, 0x0e, + 0xc3, 0xfc, 0xc1, 0x2c, 0xa8, 0x44, 0xe3, 0x5f, 0x19, 0x70, 0x65, 0xf0, 0xc3, 0xc1, 0xc3, 0xa9, + 0x64, 0xf6, 0x83, 0xcc, 0x8f, 0x66, 0x00, 0x25, 0x7a, 0xfc, 0xd6, 0x80, 0x6b, 0xc3, 0xdb, 0x9f, + 0xef, 0x4d, 0x16, 0x3b, 0x14, 0x68, 0x7e, 0x32, 0x23, 0x30, 0xd1, 0xa9, 0x03, 0x8b, 0x7d, 0x5d, + 0x50, 0x69, 0xb2, 0xc0, 0x5e, 0x7e, 0xf3, 0xd1, 0xd9, 0xf8, 0xd3, 0xfb, 0x26, 0x1d, 0xca, 0x94, + 0xfb, 0xc6, 0xfc, 0xd3, 0xee, 0x9b, 0x2e, 0xed, 0x08, 0x87, 0x7c, 0x6f, 0x59, 0xb7, 0x3d, 0x9d, + 0x18, 0xcd, 0x6e, 0x7e, 0xf7, 0x4c, 0xec, 0xc9, 0xa6, 0x3f, 0x83, 0xe5, 0xd4, 0xb7, 0x96, 0x07, + 0x93, 0x05, 0xf5, 0x23, 0xcc, 0x0f, 0xcf, 0x8a, 0x48, 0x76, 0xff, 0xa5, 0x01, 0x2b, 0x03, 0xdf, + 0xe9, 0x2a, 0x93, 0xc5, 0xa5, 0x31, 0xe6, 0xe3, 0xb3, 0x63, 0x12, 0x25, 0x7e, 0x0e, 0x97, 0xd3, + 0x5f, 0x37, 0xbf, 0x33, 0x59, 0x5c, 0x0a, 0x62, 0x7e, 0xff, 0xcc, 0x90, 0xde, 0x33, 0x48, 0x15, + 0x13, 0x53, 0x9c, 0x41, 0x3f, 0x62, 0x9a, 0x33, 0x18, 0x5e, 0x62, 0xe0, 0x15, 0x34, 0x58, 0x60, + 0x3c, 0x9c, 0x26, 0x7b, 0x53, 0xa0, 0x69, 0xae, 0xa0, 0x91, 0x25, 0x05, 0xf9, 0xbd, 0x01, 0xd7, + 0x47, 0xd4, 0x13, 0x1f, 0x4e, 0x7b, 0xba, 0x69, 0xa4, 0xf9, 0xc3, 0x59, 0x91, 0x89, 0x5a, 0x5f, + 0x1b, 0x50, 0x18, 0x59, 0x24, 0x3c, 0x9e, 0xfa, 0xd0, 0x07, 0xb0, 0xe6, 0xce, 0xec, 0xd8, 0x44, + 0xb9, 0x3f, 0x1a, 0xb0, 0x3e, 0xfe, 0x25, 0xfe, 0x64, 0x5a, 0x07, 0x8c, 0x10, 0x60, 0xee, 0x9e, + 0x53, 0x40, 0xac, 0xeb, 0xce, 0xee, 0x37, 0x6f, 0x37, 0x8c, 0xd7, 0x6f, 0x37, 0x8c, 0xbf, 0xbf, + 0xdd, 0x30, 0x7e, 0xf3, 0x6e, 0xe3, 0xc2, 0xeb, 0x77, 0x1b, 0x17, 0xfe, 0xfa, 0x6e, 0xe3, 0xc2, + 0x4f, 0xb7, 0x7b, 0x0a, 0x19, 0xb9, 0xc5, 0xb6, 0xfa, 0x77, 0x44, 0xc8, 0x3c, 0x5a, 0xee, 0xf6, + 0xfd, 0xd7, 0x46, 0xd6, 0x34, 0xf5, 0x0c, 0xb6, 0x22, 0x0f, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, + 0x84, 0xba, 0x82, 0x4a, 0xe3, 0x19, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2499,6 +2555,30 @@ func (m *MsgAddInboundTracker) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.TxIndex != 0 { + i = encodeVarintTx(dAtA, i, uint64(m.TxIndex)) + i-- + dAtA[i] = 0x38 + } + if len(m.BlockHash) > 0 { + i -= len(m.BlockHash) + copy(dAtA[i:], m.BlockHash) + i = encodeVarintTx(dAtA, i, uint64(len(m.BlockHash))) + i-- + dAtA[i] = 0x32 + } + if m.Proof != nil { + { + size, err := m.Proof.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2a + } if m.CoinType != 0 { i = encodeVarintTx(dAtA, i, uint64(m.CoinType)) i-- @@ -2672,6 +2752,30 @@ func (m *MsgAddOutboundTracker) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.TxIndex != 0 { + i = encodeVarintTx(dAtA, i, uint64(m.TxIndex)) + i-- + dAtA[i] = 0x38 + } + if len(m.BlockHash) > 0 { + i -= len(m.BlockHash) + copy(dAtA[i:], m.BlockHash) + i = encodeVarintTx(dAtA, i, uint64(len(m.BlockHash))) + i-- + dAtA[i] = 0x32 + } + if m.Proof != nil { + { + size, err := m.Proof.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2a + } if len(m.TxHash) > 0 { i -= len(m.TxHash) copy(dAtA[i:], m.TxHash) @@ -3615,6 +3719,17 @@ func (m *MsgAddInboundTracker) Size() (n int) { if m.CoinType != 0 { n += 1 + sovTx(uint64(m.CoinType)) } + if m.Proof != nil { + l = m.Proof.Size() + n += 1 + l + sovTx(uint64(l)) + } + l = len(m.BlockHash) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + if m.TxIndex != 0 { + n += 1 + sovTx(uint64(m.TxIndex)) + } return n } @@ -3698,6 +3813,17 @@ func (m *MsgAddOutboundTracker) Size() (n int) { if l > 0 { n += 1 + l + sovTx(uint64(l)) } + if m.Proof != nil { + l = m.Proof.Size() + n += 1 + l + sovTx(uint64(l)) + } + l = len(m.BlockHash) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } + if m.TxIndex != 0 { + n += 1 + sovTx(uint64(m.TxIndex)) + } return n } @@ -4549,6 +4675,93 @@ func (m *MsgAddInboundTracker) Unmarshal(dAtA []byte) error { break } } + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Proof", 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.Proof == nil { + m.Proof = &proofs.Proof{} + } + if err := m.Proof.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field BlockHash", 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.BlockHash = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TxIndex", wireType) + } + m.TxIndex = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.TxIndex |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipTx(dAtA[iNdEx:]) @@ -5100,6 +5313,93 @@ func (m *MsgAddOutboundTracker) Unmarshal(dAtA []byte) error { } m.TxHash = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Proof", 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.Proof == nil { + m.Proof = &proofs.Proof{} + } + if err := m.Proof.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field BlockHash", 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.BlockHash = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field TxIndex", wireType) + } + m.TxIndex = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.TxIndex |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } default: iNdEx = preIndex skippy, err := skipTx(dAtA[iNdEx:])