From c8360416cee57bfc887de51189c4da44ac9a1579 Mon Sep 17 00:00:00 2001 From: samricotta <37125168+samricotta@users.noreply.github.com> Date: Fri, 18 Oct 2024 12:33:44 +0300 Subject: [PATCH] chore: update exposed db object `Evidence` in `x/finality` module (#208) Part closes: https://github.com/babylonlabs-io/pm/issues/72 Currently some of the objects in the babylon apis are exposed and need to be handled correctly seen in https://github.com/babylonlabs-io/pm/issues/72 This PR handles the exposed objects in `x/finality` Specifically the `Evidence` object. --- CHANGELOG.md | 1 + proto/babylon/finality/v1/query.proto | 27 +- x/finality/keeper/grpc_query.go | 25 +- x/finality/keeper/grpc_query_test.go | 27 +- x/finality/types/query.pb.go | 701 ++++++++++++++++++++++---- 5 files changed, 666 insertions(+), 115 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index adfdb24bf..71e6ac9e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,6 +53,7 @@ to total bonded sat * [#201](https://github.com/babylonlabs-io/babylon/pull/201) Adjusted handling of `ValidatorWithBlsKey` in checkpoint keeper queries to improve API security. * [#202](https://github.com/babylonlabs-io/babylon/pull/202) Adjusted handling of `FinalityProviderWithMeta` in btcstaking keeper queries to improve API security. * [#203](https://github.com/babylonlabs-io/babylon/pull/203) Adjusted handling of `RewardGauge` in incentive keeper queries to improve API security. +* [#208](https://github.com/babylonlabs-io/babylon/pull/208) Adjusted handling of `Evidence` in finality keeper queries to improve API security. ### State Machine Breaking diff --git a/proto/babylon/finality/v1/query.proto b/proto/babylon/finality/v1/query.proto index 2689f74ca..f29b3643f 100644 --- a/proto/babylon/finality/v1/query.proto +++ b/proto/babylon/finality/v1/query.proto @@ -196,10 +196,33 @@ message QueryEvidenceRequest { string fp_btc_pk_hex = 1; } +// Evidence is the evidence that a finality provider has signed finality +// signatures with correct public randomness on two conflicting Babylon headers +message EvidenceResponse { + // fp_btc_pk_hex is the BTC PK of the finality provider that casts this vote + string fp_btc_pk_hex = 1; + // block_height is the height of the conflicting blocks + uint64 block_height = 2; + // pub_rand is the public randomness the finality provider has committed to + bytes pub_rand = 3 [ (gogoproto.customtype) = "github.com/babylonlabs-io/babylon/types.SchnorrPubRand" ]; + // canonical_app_hash is the AppHash of the canonical block + bytes canonical_app_hash = 4; + // fork_app_hash is the AppHash of the fork block + bytes fork_app_hash = 5; + // canonical_finality_sig is the finality signature to the canonical block + // where finality signature is an EOTS signature, i.e., + // the `s` in a Schnorr signature `(r, s)` + // `r` is the public randomness that is already committed by the finality provider + bytes canonical_finality_sig = 6 [ (gogoproto.customtype) = "github.com/babylonlabs-io/babylon/types.SchnorrEOTSSig" ]; + // fork_finality_sig is the finality signature to the fork block + // where finality signature is an EOTS signature + bytes fork_finality_sig = 7 [ (gogoproto.customtype) = "github.com/babylonlabs-io/babylon/types.SchnorrEOTSSig" ]; +} + // QueryEvidenceResponse is the response type for the // Query/Evidence RPC method. message QueryEvidenceResponse { - Evidence evidence = 1; + EvidenceResponse evidence = 1; } // QueryListEvidencesRequest is the request type for the @@ -217,7 +240,7 @@ message QueryListEvidencesRequest { // Query/ListEvidences RPC method. message QueryListEvidencesResponse { // blocks is the list of evidences - repeated Evidence evidences = 1; + repeated EvidenceResponse evidences = 1; // pagination defines the pagination in the response. cosmos.base.query.v1beta1.PageResponse pagination = 2; diff --git a/x/finality/keeper/grpc_query.go b/x/finality/keeper/grpc_query.go index f3452cc1d..5d4a33803 100644 --- a/x/finality/keeper/grpc_query.go +++ b/x/finality/keeper/grpc_query.go @@ -178,7 +178,7 @@ func (k Keeper) Evidence(ctx context.Context, req *types.QueryEvidenceRequest) ( } resp := &types.QueryEvidenceResponse{ - Evidence: evidence, + Evidence: convertToEvidenceResponse(evidence), } return resp, nil } @@ -220,7 +220,7 @@ func (k Keeper) ListEvidences(ctx context.Context, req *types.QueryListEvidences } resp := &types.QueryListEvidencesResponse{ - Evidences: evidences, + Evidences: convertToEvidenceListResponse(evidences), Pagination: pageRes, } return resp, nil @@ -290,3 +290,24 @@ func convertToSigningInfosResponse(signInfos []types.FinalityProviderSigningInfo } return response } + +func convertToEvidenceResponse(evidence *types.Evidence) *types.EvidenceResponse { + return &types.EvidenceResponse{ + FpBtcPkHex: evidence.FpBtcPk.MarshalHex(), + BlockHeight: evidence.BlockHeight, + PubRand: evidence.PubRand, + CanonicalAppHash: evidence.CanonicalAppHash, + ForkAppHash: evidence.ForkAppHash, + CanonicalFinalitySig: evidence.CanonicalFinalitySig, + ForkFinalitySig: evidence.ForkFinalitySig, + } +} + +func convertToEvidenceListResponse(evidences []*types.Evidence) []*types.EvidenceResponse { + response := make([]*types.EvidenceResponse, len(evidences)) + for i, evidence := range evidences { + resp := convertToEvidenceResponse(evidence) + response[i] = resp + } + return response +} diff --git a/x/finality/keeper/grpc_query_test.go b/x/finality/keeper/grpc_query_test.go index d0c0c5829..d42d21bd4 100644 --- a/x/finality/keeper/grpc_query_test.go +++ b/x/finality/keeper/grpc_query_test.go @@ -298,8 +298,8 @@ func FuzzQueryEvidence(f *testing.F) { require.Nil(t, evidenceResp) } else { require.NoError(t, err) - require.Equal(t, randomFirstSlashableEvidence, evidenceResp.Evidence) - require.True(t, evidenceResp.Evidence.IsSlashable()) + require.Equal(t, randomFirstSlashableEvidence, convertToEvidence(evidenceResp.Evidence)) + require.True(t, convertToEvidence(evidenceResp.Evidence).IsSlashable()) } }) } @@ -361,9 +361,10 @@ func FuzzListEvidences(f *testing.F) { require.NoError(t, err) require.LessOrEqual(t, len(resp.Evidences), int(limit)) // check if pagination takes effect require.EqualValues(t, resp.Pagination.Total, numEvidences) // ensure evidences before startHeight are not included - for _, actualEvidence := range resp.Evidences { - require.Equal(t, evidences[actualEvidence.FpBtcPk.MarshalHex()].CanonicalAppHash, actualEvidence.CanonicalAppHash) - require.Equal(t, evidences[actualEvidence.FpBtcPk.MarshalHex()].ForkAppHash, actualEvidence.ForkAppHash) + for _, actualEvidenceResponse := range resp.Evidences { + actualEvidence := convertToEvidence(actualEvidenceResponse) + expectedEvidence := evidences[actualEvidenceResponse.FpBtcPkHex] + require.Equal(t, expectedEvidence, actualEvidence) } }) } @@ -436,3 +437,19 @@ func FuzzSigningInfo(f *testing.F) { } }) } + +func convertToEvidence(er *types.EvidenceResponse) *types.Evidence { + fpBtcPk, err := bbn.NewBIP340PubKeyFromHex(er.FpBtcPkHex) + if err != nil { + return nil + } + return &types.Evidence{ + FpBtcPk: fpBtcPk, + BlockHeight: er.BlockHeight, + PubRand: er.PubRand, + CanonicalAppHash: er.CanonicalAppHash, + ForkAppHash: er.ForkAppHash, + CanonicalFinalitySig: er.CanonicalFinalitySig, + ForkFinalitySig: er.ForkFinalitySig, + } +} diff --git a/x/finality/types/query.pb.go b/x/finality/types/query.pb.go index 18df8c26d..c0d39e1ce 100644 --- a/x/finality/types/query.pb.go +++ b/x/finality/types/query.pb.go @@ -776,17 +776,101 @@ func (m *QueryEvidenceRequest) GetFpBtcPkHex() string { return "" } +// Evidence is the evidence that a finality provider has signed finality +// signatures with correct public randomness on two conflicting Babylon headers +type EvidenceResponse struct { + // fp_btc_pk_hex is the BTC PK of the finality provider that casts this vote + FpBtcPkHex string `protobuf:"bytes,1,opt,name=fp_btc_pk_hex,json=fpBtcPkHex,proto3" json:"fp_btc_pk_hex,omitempty"` + // block_height is the height of the conflicting blocks + BlockHeight uint64 `protobuf:"varint,2,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"` + // pub_rand is the public randomness the finality provider has committed to + PubRand *github_com_babylonlabs_io_babylon_types.SchnorrPubRand `protobuf:"bytes,3,opt,name=pub_rand,json=pubRand,proto3,customtype=github.com/babylonlabs-io/babylon/types.SchnorrPubRand" json:"pub_rand,omitempty"` + // canonical_app_hash is the AppHash of the canonical block + CanonicalAppHash []byte `protobuf:"bytes,4,opt,name=canonical_app_hash,json=canonicalAppHash,proto3" json:"canonical_app_hash,omitempty"` + // fork_app_hash is the AppHash of the fork block + ForkAppHash []byte `protobuf:"bytes,5,opt,name=fork_app_hash,json=forkAppHash,proto3" json:"fork_app_hash,omitempty"` + // canonical_finality_sig is the finality signature to the canonical block + // where finality signature is an EOTS signature, i.e., + // the `s` in a Schnorr signature `(r, s)` + // `r` is the public randomness that is already committed by the finality provider + CanonicalFinalitySig *github_com_babylonlabs_io_babylon_types.SchnorrEOTSSig `protobuf:"bytes,6,opt,name=canonical_finality_sig,json=canonicalFinalitySig,proto3,customtype=github.com/babylonlabs-io/babylon/types.SchnorrEOTSSig" json:"canonical_finality_sig,omitempty"` + // fork_finality_sig is the finality signature to the fork block + // where finality signature is an EOTS signature + ForkFinalitySig *github_com_babylonlabs_io_babylon_types.SchnorrEOTSSig `protobuf:"bytes,7,opt,name=fork_finality_sig,json=forkFinalitySig,proto3,customtype=github.com/babylonlabs-io/babylon/types.SchnorrEOTSSig" json:"fork_finality_sig,omitempty"` +} + +func (m *EvidenceResponse) Reset() { *m = EvidenceResponse{} } +func (m *EvidenceResponse) String() string { return proto.CompactTextString(m) } +func (*EvidenceResponse) ProtoMessage() {} +func (*EvidenceResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_32bddab77af6fdae, []int{14} +} +func (m *EvidenceResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *EvidenceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_EvidenceResponse.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 *EvidenceResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_EvidenceResponse.Merge(m, src) +} +func (m *EvidenceResponse) XXX_Size() int { + return m.Size() +} +func (m *EvidenceResponse) XXX_DiscardUnknown() { + xxx_messageInfo_EvidenceResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_EvidenceResponse proto.InternalMessageInfo + +func (m *EvidenceResponse) GetFpBtcPkHex() string { + if m != nil { + return m.FpBtcPkHex + } + return "" +} + +func (m *EvidenceResponse) GetBlockHeight() uint64 { + if m != nil { + return m.BlockHeight + } + return 0 +} + +func (m *EvidenceResponse) GetCanonicalAppHash() []byte { + if m != nil { + return m.CanonicalAppHash + } + return nil +} + +func (m *EvidenceResponse) GetForkAppHash() []byte { + if m != nil { + return m.ForkAppHash + } + return nil +} + // QueryEvidenceResponse is the response type for the // Query/Evidence RPC method. type QueryEvidenceResponse struct { - Evidence *Evidence `protobuf:"bytes,1,opt,name=evidence,proto3" json:"evidence,omitempty"` + Evidence *EvidenceResponse `protobuf:"bytes,1,opt,name=evidence,proto3" json:"evidence,omitempty"` } 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_32bddab77af6fdae, []int{14} + return fileDescriptor_32bddab77af6fdae, []int{15} } func (m *QueryEvidenceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -815,7 +899,7 @@ func (m *QueryEvidenceResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryEvidenceResponse proto.InternalMessageInfo -func (m *QueryEvidenceResponse) GetEvidence() *Evidence { +func (m *QueryEvidenceResponse) GetEvidence() *EvidenceResponse { if m != nil { return m.Evidence } @@ -836,7 +920,7 @@ func (m *QueryListEvidencesRequest) Reset() { *m = QueryListEvidencesReq func (m *QueryListEvidencesRequest) String() string { return proto.CompactTextString(m) } func (*QueryListEvidencesRequest) ProtoMessage() {} func (*QueryListEvidencesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{15} + return fileDescriptor_32bddab77af6fdae, []int{16} } func (m *QueryListEvidencesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -883,7 +967,7 @@ func (m *QueryListEvidencesRequest) GetPagination() *query.PageRequest { // Query/ListEvidences RPC method. type QueryListEvidencesResponse struct { // blocks is the list of evidences - Evidences []*Evidence `protobuf:"bytes,1,rep,name=evidences,proto3" json:"evidences,omitempty"` + Evidences []*EvidenceResponse `protobuf:"bytes,1,rep,name=evidences,proto3" json:"evidences,omitempty"` // pagination defines the pagination in the response. Pagination *query.PageResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"` } @@ -892,7 +976,7 @@ func (m *QueryListEvidencesResponse) Reset() { *m = QueryListEvidencesRe func (m *QueryListEvidencesResponse) String() string { return proto.CompactTextString(m) } func (*QueryListEvidencesResponse) ProtoMessage() {} func (*QueryListEvidencesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{16} + return fileDescriptor_32bddab77af6fdae, []int{17} } func (m *QueryListEvidencesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -921,7 +1005,7 @@ func (m *QueryListEvidencesResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryListEvidencesResponse proto.InternalMessageInfo -func (m *QueryListEvidencesResponse) GetEvidences() []*Evidence { +func (m *QueryListEvidencesResponse) GetEvidences() []*EvidenceResponse { if m != nil { return m.Evidences } @@ -947,7 +1031,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_32bddab77af6fdae, []int{17} + return fileDescriptor_32bddab77af6fdae, []int{18} } func (m *QuerySigningInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1001,7 +1085,7 @@ func (m *SigningInfoResponse) Reset() { *m = SigningInfoResponse{} } func (m *SigningInfoResponse) String() string { return proto.CompactTextString(m) } func (*SigningInfoResponse) ProtoMessage() {} func (*SigningInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_32bddab77af6fdae, []int{18} + return fileDescriptor_32bddab77af6fdae, []int{19} } func (m *SigningInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1068,7 +1152,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_32bddab77af6fdae, []int{19} + return fileDescriptor_32bddab77af6fdae, []int{20} } func (m *QuerySigningInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1114,7 +1198,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_32bddab77af6fdae, []int{20} + return fileDescriptor_32bddab77af6fdae, []int{21} } func (m *QuerySigningInfosRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1162,7 +1246,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_32bddab77af6fdae, []int{21} + return fileDescriptor_32bddab77af6fdae, []int{22} } func (m *QuerySigningInfosResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1223,6 +1307,7 @@ func init() { proto.RegisterType((*QueryVotesAtHeightRequest)(nil), "babylon.finality.v1.QueryVotesAtHeightRequest") proto.RegisterType((*QueryVotesAtHeightResponse)(nil), "babylon.finality.v1.QueryVotesAtHeightResponse") proto.RegisterType((*QueryEvidenceRequest)(nil), "babylon.finality.v1.QueryEvidenceRequest") + proto.RegisterType((*EvidenceResponse)(nil), "babylon.finality.v1.EvidenceResponse") proto.RegisterType((*QueryEvidenceResponse)(nil), "babylon.finality.v1.QueryEvidenceResponse") proto.RegisterType((*QueryListEvidencesRequest)(nil), "babylon.finality.v1.QueryListEvidencesRequest") proto.RegisterType((*QueryListEvidencesResponse)(nil), "babylon.finality.v1.QueryListEvidencesResponse") @@ -1236,98 +1321,107 @@ func init() { func init() { proto.RegisterFile("babylon/finality/v1/query.proto", fileDescriptor_32bddab77af6fdae) } var fileDescriptor_32bddab77af6fdae = []byte{ - // 1453 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xdf, 0x6f, 0x14, 0xd5, - 0x17, 0xef, 0x6d, 0x69, 0xa1, 0xa7, 0xbb, 0xdf, 0x6f, 0x7b, 0x5b, 0xb0, 0x2e, 0xb2, 0x2d, 0x03, - 0x96, 0x5a, 0x60, 0xc6, 0x6e, 0x11, 0x01, 0x35, 0xc0, 0x22, 0x48, 0x63, 0x59, 0x97, 0x29, 0x92, - 0xc8, 0xcb, 0x64, 0x66, 0xf7, 0x76, 0x3b, 0x76, 0x67, 0xee, 0xb0, 0x33, 0xb3, 0xe9, 0x86, 0x90, - 0x18, 0x13, 0x79, 0x30, 0x9a, 0x90, 0xf8, 0xa2, 0x0f, 0x3c, 0x68, 0x8c, 0x31, 0xf1, 0xc5, 0x57, - 0xff, 0x03, 0x1e, 0x09, 0xfa, 0x60, 0x48, 0x40, 0x03, 0x26, 0xfe, 0x1b, 0x66, 0xee, 0xbd, 0xb3, - 0x3b, 0xb3, 0x9d, 0xfd, 0xd1, 0xda, 0xf8, 0xd2, 0x74, 0xee, 0x3d, 0xe7, 0xdc, 0xcf, 0xf9, 0x9c, - 0x73, 0xcf, 0xfd, 0x2c, 0xcc, 0x18, 0xba, 0xd1, 0xa8, 0x52, 0x5b, 0x59, 0x33, 0x6d, 0xbd, 0x6a, - 0x7a, 0x0d, 0xa5, 0xbe, 0xa8, 0xdc, 0xf6, 0x49, 0xad, 0x21, 0x3b, 0x35, 0xea, 0x51, 0x3c, 0x29, - 0x0c, 0xe4, 0xd0, 0x40, 0xae, 0x2f, 0x66, 0xa6, 0x2a, 0xb4, 0x42, 0xd9, 0xbe, 0x12, 0xfc, 0xc7, - 0x4d, 0x33, 0xaf, 0x54, 0x28, 0xad, 0x54, 0x89, 0xa2, 0x3b, 0xa6, 0xa2, 0xdb, 0x36, 0xf5, 0x74, - 0xcf, 0xa4, 0xb6, 0x2b, 0x76, 0x17, 0x4a, 0xd4, 0xb5, 0xa8, 0xab, 0x18, 0xba, 0x4b, 0xf8, 0x09, - 0x4a, 0x7d, 0xd1, 0x20, 0x9e, 0xbe, 0xa8, 0x38, 0x7a, 0xc5, 0xb4, 0x99, 0xb1, 0xb0, 0x9d, 0x4d, - 0x42, 0xe5, 0xe8, 0x35, 0xdd, 0x0a, 0xa3, 0x49, 0x49, 0x16, 0x4d, 0x88, 0xdc, 0x66, 0x46, 0xe0, - 0x61, 0x5f, 0x86, 0xbf, 0xa6, 0x78, 0xa6, 0x45, 0x5c, 0x4f, 0xb7, 0x1c, 0x61, 0x30, 0xa1, 0x5b, - 0xa6, 0x4d, 0x15, 0xf6, 0x97, 0x2f, 0x49, 0x53, 0x80, 0xaf, 0x07, 0xd8, 0x8a, 0xec, 0x30, 0x95, - 0xdc, 0xf6, 0x89, 0xeb, 0x49, 0x45, 0x98, 0x8c, 0xad, 0xba, 0x0e, 0xb5, 0x5d, 0x82, 0xcf, 0xc2, - 0x08, 0x07, 0x35, 0x8d, 0x66, 0xd1, 0xfc, 0x58, 0xee, 0xa0, 0x9c, 0x40, 0x96, 0xcc, 0x9d, 0xf2, - 0x7b, 0x1e, 0x3e, 0x9b, 0x19, 0x50, 0x85, 0x83, 0xf4, 0x25, 0x82, 0x59, 0x16, 0x72, 0xc5, 0x74, - 0xbd, 0xa2, 0x6f, 0x54, 0xcd, 0x92, 0xaa, 0xdb, 0x65, 0x6a, 0xd9, 0xc4, 0x0d, 0x8f, 0xc5, 0x87, - 0x21, 0xbd, 0xe6, 0x68, 0x86, 0x57, 0xd2, 0x9c, 0x0d, 0x6d, 0x9d, 0x6c, 0xb2, 0x63, 0x46, 0x55, - 0x58, 0x73, 0xf2, 0x5e, 0xa9, 0xb8, 0x71, 0x95, 0x6c, 0xe2, 0x2b, 0x00, 0x2d, 0xf6, 0xa6, 0x07, - 0x19, 0x8c, 0x39, 0x99, 0x53, 0x2d, 0x07, 0x54, 0xcb, 0xbc, 0x98, 0x82, 0x6a, 0xb9, 0xa8, 0x57, - 0x88, 0x08, 0xaf, 0x46, 0x3c, 0xa5, 0xc7, 0x83, 0x70, 0xb8, 0x0b, 0x1e, 0x91, 0xf0, 0xf7, 0x08, - 0x52, 0x8e, 0x6f, 0x68, 0x35, 0xdd, 0x2e, 0x6b, 0x96, 0xee, 0x4c, 0xa3, 0xd9, 0xa1, 0xf9, 0xb1, - 0xdc, 0x95, 0xc4, 0xbc, 0x7b, 0x86, 0x93, 0x8b, 0xbe, 0x11, 0xac, 0x5e, 0xd3, 0x9d, 0xcb, 0xb6, - 0x57, 0x6b, 0xe4, 0xcf, 0x3d, 0x79, 0x36, 0x73, 0xba, 0x62, 0x7a, 0xeb, 0xbe, 0x21, 0x97, 0xa8, - 0xa5, 0x88, 0xa8, 0x55, 0xdd, 0x70, 0x4f, 0x9a, 0x34, 0xfc, 0x54, 0xbc, 0x86, 0x43, 0x5c, 0x79, - 0xb5, 0xb4, 0x6e, 0xd3, 0x5a, 0x4d, 0xc4, 0x50, 0xc1, 0x69, 0x06, 0xc3, 0xef, 0x25, 0x90, 0x72, - 0xac, 0x27, 0x29, 0x1c, 0x54, 0x94, 0x95, 0xcc, 0x3b, 0xf0, 0xff, 0x36, 0x8c, 0x78, 0x1c, 0x86, - 0x36, 0x48, 0x83, 0x55, 0x62, 0x8f, 0x1a, 0xfc, 0x8b, 0xa7, 0x60, 0xb8, 0xae, 0x57, 0x7d, 0xc2, - 0x0e, 0x4a, 0xa9, 0xfc, 0xe3, 0xdc, 0xe0, 0x19, 0x24, 0xd5, 0x61, 0xbf, 0x70, 0xbf, 0x44, 0x2d, - 0xcb, 0xf4, 0x9a, 0x3c, 0xce, 0x42, 0xca, 0xf6, 0x2d, 0x2d, 0xa4, 0x52, 0x44, 0x03, 0xdb, 0xb7, - 0x84, 0x3d, 0xce, 0x02, 0x94, 0x98, 0x8f, 0x45, 0x6c, 0x4f, 0x44, 0x8e, 0xac, 0xe0, 0x83, 0x30, - 0x4a, 0x1c, 0x5a, 0x5a, 0xd7, 0x6c, 0xdf, 0x9a, 0x1e, 0x62, 0xee, 0xfb, 0xd8, 0x42, 0xc1, 0xb7, - 0xa4, 0xcf, 0x11, 0x1c, 0x8a, 0xb2, 0x1f, 0x45, 0xf0, 0x9f, 0x77, 0xd6, 0x6f, 0x83, 0x90, 0xed, - 0x04, 0x46, 0xd0, 0xb1, 0x09, 0x93, 0xcd, 0xae, 0xe2, 0x39, 0x46, 0x9a, 0x6b, 0xb9, 0x67, 0x73, - 0x6d, 0x8d, 0x28, 0xc7, 0x56, 0xc3, 0xda, 0xa9, 0xe3, 0x4e, 0xdb, 0xf2, 0xee, 0x75, 0x0a, 0x6d, - 0x2b, 0x75, 0x97, 0x7e, 0xb9, 0x10, 0xed, 0x97, 0xb1, 0xdc, 0x42, 0xf2, 0xd0, 0x48, 0x4a, 0x2b, - 0xda, 0x5b, 0xc7, 0x61, 0x82, 0x71, 0x90, 0xaf, 0xd2, 0xd2, 0x46, 0x58, 0xd6, 0x03, 0x30, 0xb2, - 0x4e, 0xcc, 0xca, 0xba, 0x27, 0xce, 0x13, 0x5f, 0xd2, 0x35, 0x31, 0xd5, 0x84, 0xb1, 0xa0, 0xfd, - 0x4d, 0x18, 0x36, 0x82, 0x05, 0x31, 0xbd, 0x0e, 0x27, 0x02, 0x59, 0xb6, 0xcb, 0x64, 0x93, 0x94, - 0xb9, 0x27, 0xb7, 0x97, 0xbe, 0x45, 0x70, 0xa0, 0x59, 0x00, 0xb6, 0xd3, 0x1c, 0x59, 0xe7, 0x61, - 0xc4, 0xf5, 0x74, 0xcf, 0xe7, 0x23, 0xf1, 0x7f, 0xb9, 0x63, 0x1d, 0xab, 0x67, 0x8a, 0xa0, 0xab, - 0xcc, 0x5c, 0x15, 0x6e, 0xbb, 0xd6, 0x76, 0x0f, 0x10, 0xbc, 0xb4, 0x05, 0x63, 0x6b, 0x6e, 0xb3, - 0x44, 0x5c, 0xd1, 0x62, 0x7d, 0x64, 0x2e, 0x1c, 0x76, 0xad, 0x61, 0xa4, 0x25, 0x78, 0x99, 0xc1, - 0xbb, 0x49, 0x3d, 0xe2, 0x5e, 0xf4, 0xae, 0xb2, 0x42, 0xf5, 0xaa, 0x23, 0x85, 0x4c, 0x92, 0x93, - 0x48, 0xeb, 0x3a, 0xec, 0xe5, 0x37, 0x9a, 0xe7, 0x95, 0xca, 0x9f, 0x79, 0xf2, 0x6c, 0xe6, 0x54, - 0xbf, 0xf3, 0x34, 0xbf, 0x5c, 0x5c, 0x3a, 0xf5, 0x7a, 0xd1, 0x37, 0xde, 0x27, 0x0d, 0x75, 0xc4, - 0x08, 0xc6, 0x80, 0x2b, 0x9d, 0x85, 0x29, 0x76, 0xe0, 0xe5, 0xba, 0x59, 0x26, 0x76, 0x89, 0xf4, - 0x3f, 0x3f, 0x24, 0x15, 0xf6, 0xb7, 0xb9, 0x36, 0xd9, 0xdf, 0x47, 0xc4, 0x9a, 0xe8, 0xbc, 0x43, - 0x89, 0xfc, 0x37, 0x1d, 0x9b, 0xe6, 0xd2, 0x3d, 0x24, 0x58, 0x0b, 0x8a, 0x1a, 0xee, 0x47, 0x9e, - 0xcb, 0x94, 0xeb, 0xe9, 0x35, 0x4f, 0x8b, 0x71, 0x37, 0xc6, 0xd6, 0x38, 0x55, 0xbb, 0xd6, 0x5d, - 0xdf, 0x21, 0x51, 0x89, 0x36, 0x20, 0x22, 0xc5, 0xb7, 0x60, 0x34, 0xc4, 0x1c, 0xf6, 0x58, 0x8f, - 0x1c, 0x5b, 0xf6, 0xbb, 0xd7, 0x62, 0x6f, 0x8b, 0x1b, 0xb0, 0x6a, 0x56, 0x6c, 0xd3, 0xae, 0x2c, - 0xdb, 0x6b, 0x74, 0x1b, 0xf5, 0x7b, 0x8a, 0x60, 0x32, 0xe6, 0x29, 0x72, 0xeb, 0xe3, 0xe9, 0x68, - 0x2f, 0x44, 0x90, 0xc3, 0x50, 0xbc, 0x10, 0x39, 0xd8, 0x6f, 0x99, 0xae, 0x4b, 0xca, 0x1a, 0xbf, - 0x58, 0x5a, 0x89, 0xfa, 0xb6, 0x47, 0x6a, 0xec, 0x2d, 0x1b, 0x52, 0x27, 0xf9, 0x26, 0xbf, 0xb7, - 0x97, 0xf8, 0x16, 0x5e, 0x81, 0xd4, 0xc7, 0xba, 0x59, 0x25, 0x65, 0xcd, 0xb7, 0x3d, 0xb3, 0x3a, - 0xbd, 0x87, 0x51, 0x93, 0x91, 0xb9, 0xcc, 0x93, 0x43, 0x99, 0x27, 0xdf, 0x08, 0x65, 0x5e, 0x3e, - 0x1d, 0x68, 0xae, 0xfb, 0x7f, 0xcc, 0xa0, 0x1f, 0xff, 0xfe, 0x79, 0x01, 0xa9, 0x63, 0xdc, 0xfd, - 0xc3, 0xc0, 0x5b, 0xb2, 0x60, 0x7a, 0x2b, 0x3b, 0xcd, 0x9b, 0x94, 0x72, 0xf9, 0xb2, 0x66, 0xda, - 0x6b, 0x54, 0xb4, 0xe9, 0x7c, 0x62, 0x09, 0x13, 0xfc, 0x85, 0xd6, 0x1b, 0x73, 0x5b, 0x5b, 0x92, - 0xb1, 0xf5, 0xb8, 0x66, 0xe3, 0xc6, 0xbb, 0x12, 0xed, 0xb8, 0x2b, 0x7f, 0x09, 0xaf, 0x47, 0xfc, - 0x10, 0x91, 0xd4, 0x2a, 0xa4, 0xa3, 0x49, 0x85, 0x8d, 0xb9, 0xdd, 0xac, 0x52, 0x91, 0xac, 0x76, - 0xaf, 0x59, 0x17, 0xce, 0xf3, 0x27, 0x2a, 0xfe, 0x2a, 0xe0, 0x09, 0x48, 0x17, 0x3e, 0x28, 0x68, - 0x57, 0x96, 0x0b, 0x17, 0x57, 0x96, 0x6f, 0x5d, 0x7e, 0x77, 0x7c, 0x00, 0xa7, 0x61, 0xb4, 0xf5, - 0x89, 0xf0, 0x5e, 0x18, 0xba, 0x58, 0xf8, 0x68, 0x7c, 0x30, 0xf7, 0x59, 0x1a, 0x86, 0x59, 0xf2, - 0xf8, 0x13, 0x04, 0x23, 0x5c, 0x74, 0xe3, 0xce, 0xcf, 0x4f, 0x5c, 0xe1, 0x67, 0xe6, 0x7b, 0x1b, - 0x72, 0xd0, 0xd2, 0x91, 0x4f, 0x7f, 0xfd, 0xeb, 0xab, 0xc1, 0x43, 0xf8, 0xa0, 0xd2, 0xf9, 0x47, - 0x0a, 0x7e, 0x8a, 0x60, 0x2a, 0x49, 0xfa, 0xe2, 0x37, 0xb6, 0x2b, 0x95, 0x39, 0xbc, 0xd3, 0x3b, - 0x53, 0xd8, 0xd2, 0x4d, 0x06, 0xb6, 0x88, 0x0b, 0x4a, 0xb7, 0xdf, 0x4b, 0x9a, 0x53, 0xa3, 0xc1, - 0xf8, 0xa9, 0xb9, 0xca, 0x9d, 0xd8, 0xdd, 0xbe, 0xab, 0x38, 0x2c, 0x32, 0x93, 0x66, 0x3c, 0xb4, - 0x56, 0x35, 0x5d, 0x0f, 0x3f, 0x46, 0x30, 0xb1, 0x45, 0x7d, 0xe1, 0xdc, 0xb6, 0xa4, 0x1a, 0xcf, - 0x6c, 0x69, 0x07, 0xf2, 0x4e, 0xba, 0xc1, 0xd2, 0x2a, 0xe0, 0x95, 0x7f, 0x91, 0x56, 0x4c, 0x6e, - 0xb2, 0xa4, 0xee, 0x21, 0x18, 0x66, 0xcd, 0x87, 0xe7, 0x3a, 0x83, 0x8a, 0xea, 0xad, 0xcc, 0xb1, - 0x9e, 0x76, 0x02, 0xf0, 0x09, 0x06, 0x78, 0x0e, 0x1f, 0x4d, 0x04, 0xcc, 0x47, 0xa0, 0x72, 0x87, - 0x8f, 0xcb, 0xbb, 0xf8, 0x0b, 0x04, 0xd0, 0x92, 0x2d, 0xf8, 0x78, 0x77, 0x8a, 0x62, 0x02, 0x2c, - 0x73, 0xa2, 0x3f, 0xe3, 0xbe, 0x9a, 0x59, 0x68, 0x9e, 0x07, 0x08, 0xd2, 0x31, 0xc5, 0x81, 0xe5, - 0xce, 0x87, 0x24, 0xe9, 0x99, 0x8c, 0xd2, 0xb7, 0xbd, 0xc0, 0x75, 0x9c, 0xe1, 0x7a, 0x15, 0x1f, - 0x49, 0xc4, 0x55, 0x0f, 0x7c, 0x5a, 0x74, 0xfd, 0x84, 0x60, 0x5f, 0xf8, 0x90, 0xe2, 0xd7, 0x3a, - 0x1f, 0xd5, 0x26, 0x62, 0x32, 0x0b, 0xfd, 0x98, 0x0a, 0x40, 0x57, 0x19, 0xa0, 0x3c, 0xbe, 0xb0, - 0xd3, 0x8e, 0x0b, 0xdf, 0x77, 0xfc, 0x35, 0x82, 0x74, 0x4c, 0x35, 0x74, 0x63, 0x33, 0x49, 0xe7, - 0x74, 0x63, 0x33, 0x51, 0x8e, 0x48, 0x73, 0x0c, 0xfc, 0x2c, 0xce, 0x26, 0x82, 0x6f, 0x29, 0x8f, - 0x1f, 0x10, 0x8c, 0x45, 0x06, 0x3f, 0xee, 0xd2, 0x4b, 0x5b, 0x35, 0x45, 0xe6, 0x64, 0x9f, 0xd6, - 0x02, 0xd4, 0x39, 0x06, 0xea, 0x14, 0xce, 0x25, 0x82, 0x8a, 0xbd, 0x54, 0xed, 0x64, 0xe2, 0x6f, - 0x10, 0xa4, 0xa2, 0x6f, 0x1c, 0xee, 0xef, 0xec, 0x26, 0x83, 0x72, 0xbf, 0xe6, 0x02, 0xeb, 0x02, - 0xc3, 0x7a, 0x14, 0x4b, 0xbd, 0xb1, 0xe6, 0x57, 0x1e, 0x3e, 0xcf, 0xa2, 0x47, 0xcf, 0xb3, 0xe8, - 0xcf, 0xe7, 0x59, 0x74, 0xff, 0x45, 0x76, 0xe0, 0xd1, 0x8b, 0xec, 0xc0, 0xef, 0x2f, 0xb2, 0x03, - 0xb7, 0x72, 0xbd, 0xa5, 0xf8, 0x66, 0x2b, 0x30, 0x53, 0xe5, 0xc6, 0x08, 0x53, 0x35, 0x4b, 0xff, - 0x04, 0x00, 0x00, 0xff, 0xff, 0xaf, 0xed, 0x13, 0xce, 0xa8, 0x13, 0x00, 0x00, + // 1589 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x57, 0xdd, 0x6f, 0xd3, 0x56, + 0x14, 0xef, 0x6d, 0xe9, 0xd7, 0x49, 0x32, 0xda, 0xdb, 0xc2, 0xba, 0x30, 0xd2, 0xd6, 0x40, 0xe9, + 0x0a, 0xd8, 0x6b, 0xca, 0x18, 0xa0, 0x4d, 0xd0, 0xb0, 0x76, 0xad, 0x56, 0x4a, 0x70, 0x01, 0x69, + 0xbc, 0x58, 0x76, 0xea, 0x24, 0x5e, 0x63, 0x5f, 0x13, 0xdb, 0x55, 0x2b, 0x84, 0x34, 0x4d, 0x1a, + 0x0f, 0xd3, 0x26, 0x21, 0xed, 0x65, 0x7b, 0xe0, 0x61, 0xd2, 0x34, 0x4d, 0xdb, 0xcb, 0x5e, 0xf7, + 0x1f, 0xf0, 0x88, 0xd8, 0x1e, 0x26, 0x26, 0xd8, 0x04, 0x93, 0xf6, 0x6f, 0x4c, 0xbe, 0xf7, 0x3a, + 0xb1, 0x53, 0xe7, 0xa3, 0xa5, 0xda, 0x4b, 0x14, 0x5f, 0x9f, 0x8f, 0xdf, 0x39, 0xf7, 0xdc, 0x9f, + 0x7f, 0x17, 0xc6, 0x35, 0x55, 0xdb, 0xae, 0x10, 0x4b, 0x2a, 0x1a, 0x96, 0x5a, 0x31, 0xdc, 0x6d, + 0x69, 0x73, 0x56, 0xba, 0xe3, 0xe9, 0xd5, 0x6d, 0xd1, 0xae, 0x12, 0x97, 0xe0, 0x11, 0x6e, 0x20, + 0x06, 0x06, 0xe2, 0xe6, 0x6c, 0x7a, 0xb4, 0x44, 0x4a, 0x84, 0xbe, 0x97, 0xfc, 0x7f, 0xcc, 0x34, + 0xfd, 0x66, 0x89, 0x90, 0x52, 0x45, 0x97, 0x54, 0xdb, 0x90, 0x54, 0xcb, 0x22, 0xae, 0xea, 0x1a, + 0xc4, 0x72, 0xf8, 0xdb, 0x99, 0x02, 0x71, 0x4c, 0xe2, 0x48, 0x9a, 0xea, 0xe8, 0x2c, 0x83, 0xb4, + 0x39, 0xab, 0xe9, 0xae, 0x3a, 0x2b, 0xd9, 0x6a, 0xc9, 0xb0, 0xa8, 0x31, 0xb7, 0x9d, 0x88, 0x43, + 0x65, 0xab, 0x55, 0xd5, 0x0c, 0xa2, 0x09, 0x71, 0x16, 0x35, 0x88, 0xcc, 0x66, 0x9c, 0xe3, 0xa1, + 0x4f, 0x9a, 0x57, 0x94, 0x5c, 0xc3, 0xd4, 0x1d, 0x57, 0x35, 0x6d, 0x6e, 0x30, 0xac, 0x9a, 0x86, + 0x45, 0x24, 0xfa, 0xcb, 0x96, 0x84, 0x51, 0xc0, 0xd7, 0x7d, 0x6c, 0x79, 0x9a, 0x4c, 0xd6, 0xef, + 0x78, 0xba, 0xe3, 0x0a, 0x79, 0x18, 0x89, 0xac, 0x3a, 0x36, 0xb1, 0x1c, 0x1d, 0x5f, 0x80, 0x3e, + 0x06, 0x6a, 0x0c, 0x4d, 0xa0, 0xe9, 0x44, 0xf6, 0x88, 0x18, 0xd3, 0x2c, 0x91, 0x39, 0xe5, 0x0e, + 0x3c, 0x7a, 0x3e, 0xde, 0x25, 0x73, 0x07, 0xe1, 0x2b, 0x04, 0x13, 0x34, 0xe4, 0x8a, 0xe1, 0xb8, + 0x79, 0x4f, 0xab, 0x18, 0x05, 0x59, 0xb5, 0xd6, 0x89, 0x69, 0xe9, 0x4e, 0x90, 0x16, 0x4f, 0x42, + 0xaa, 0x68, 0x2b, 0x9a, 0x5b, 0x50, 0xec, 0x0d, 0xa5, 0xac, 0x6f, 0xd1, 0x34, 0x83, 0x32, 0x14, + 0xed, 0x9c, 0x5b, 0xc8, 0x6f, 0x2c, 0xe9, 0x5b, 0x78, 0x11, 0xa0, 0xde, 0xbd, 0xb1, 0x6e, 0x0a, + 0x63, 0x4a, 0x64, 0xad, 0x16, 0xfd, 0x56, 0x8b, 0x6c, 0x33, 0x79, 0xab, 0xc5, 0xbc, 0x5a, 0xd2, + 0x79, 0x78, 0x39, 0xe4, 0x29, 0x3c, 0xe9, 0x86, 0xc9, 0x16, 0x78, 0x78, 0xc1, 0xdf, 0x23, 0x48, + 0xda, 0x9e, 0xa6, 0x54, 0x55, 0x6b, 0x5d, 0x31, 0x55, 0x7b, 0x0c, 0x4d, 0xf4, 0x4c, 0x27, 0xb2, + 0x8b, 0xb1, 0x75, 0xb7, 0x0d, 0x27, 0xe6, 0x3d, 0xcd, 0x5f, 0xbd, 0xaa, 0xda, 0x0b, 0x96, 0x5b, + 0xdd, 0xce, 0x5d, 0x7c, 0xfa, 0x7c, 0xfc, 0x5c, 0xc9, 0x70, 0xcb, 0x9e, 0x26, 0x16, 0x88, 0x29, + 0xf1, 0xa8, 0x15, 0x55, 0x73, 0xce, 0x18, 0x24, 0x78, 0x94, 0xdc, 0x6d, 0x5b, 0x77, 0xc4, 0xb5, + 0x42, 0xd9, 0x22, 0xd5, 0x2a, 0x8f, 0x21, 0x83, 0x5d, 0x0b, 0x86, 0x3f, 0x8c, 0x69, 0xca, 0xc9, + 0xb6, 0x4d, 0x61, 0xa0, 0xc2, 0x5d, 0x49, 0xbf, 0x0f, 0x07, 0x1b, 0x30, 0xe2, 0x21, 0xe8, 0xd9, + 0xd0, 0xb7, 0xe9, 0x4e, 0x1c, 0x90, 0xfd, 0xbf, 0x78, 0x14, 0x7a, 0x37, 0xd5, 0x8a, 0xa7, 0xd3, + 0x44, 0x49, 0x99, 0x3d, 0x5c, 0xec, 0x3e, 0x8f, 0x84, 0x4d, 0x38, 0xc4, 0xdd, 0xaf, 0x10, 0xd3, + 0x34, 0xdc, 0x5a, 0x1f, 0x27, 0x20, 0x69, 0x79, 0xa6, 0x12, 0xb4, 0x92, 0x47, 0x03, 0xcb, 0x33, + 0xb9, 0x3d, 0xce, 0x00, 0x14, 0xa8, 0x8f, 0xa9, 0x5b, 0x2e, 0x8f, 0x1c, 0x5a, 0xc1, 0x47, 0x60, + 0x50, 0xb7, 0x49, 0xa1, 0xac, 0x58, 0x9e, 0x39, 0xd6, 0x43, 0xdd, 0x07, 0xe8, 0xc2, 0xaa, 0x67, + 0x0a, 0x5f, 0x20, 0x38, 0x1a, 0xee, 0x7e, 0x18, 0xc1, 0xff, 0x3e, 0x59, 0xbf, 0x77, 0x43, 0xa6, + 0x19, 0x18, 0xde, 0x8e, 0x2d, 0x18, 0xa9, 0x4d, 0x15, 0xab, 0x31, 0x34, 0x5c, 0xcb, 0x6d, 0x87, + 0x6b, 0x67, 0x44, 0x31, 0xb2, 0x1a, 0xec, 0x9d, 0x3c, 0x64, 0x37, 0x2c, 0xef, 0xdf, 0xa4, 0x90, + 0x86, 0xad, 0x6e, 0x31, 0x2f, 0x97, 0xc3, 0xf3, 0x92, 0xc8, 0xce, 0xc4, 0x93, 0x46, 0x5c, 0x59, + 0xe1, 0xd9, 0x3a, 0x05, 0xc3, 0xb4, 0x07, 0xb9, 0x0a, 0x29, 0x6c, 0x04, 0xdb, 0x7a, 0x18, 0xfa, + 0xca, 0xba, 0x51, 0x2a, 0xbb, 0x3c, 0x1f, 0x7f, 0x12, 0xae, 0x72, 0x56, 0xe3, 0xc6, 0xbc, 0xed, + 0xef, 0x42, 0xaf, 0xe6, 0x2f, 0x70, 0xf6, 0x9a, 0x8c, 0x05, 0xb2, 0x6c, 0xad, 0xeb, 0x5b, 0xfa, + 0x3a, 0xf3, 0x64, 0xf6, 0xc2, 0x77, 0x08, 0x0e, 0xd7, 0x36, 0x80, 0xbe, 0xa9, 0x51, 0xd6, 0x25, + 0xe8, 0x73, 0x5c, 0xd5, 0xf5, 0x18, 0x25, 0xbe, 0x96, 0x3d, 0xd9, 0x74, 0xf7, 0x0c, 0x1e, 0x74, + 0x8d, 0x9a, 0xcb, 0xdc, 0x6d, 0xdf, 0xc6, 0xee, 0x21, 0x82, 0xd7, 0x77, 0x60, 0xac, 0xf3, 0x36, + 0x2d, 0xc4, 0xe1, 0x23, 0xd6, 0x41, 0xe5, 0xdc, 0x61, 0xdf, 0x06, 0x46, 0x98, 0x83, 0x37, 0x28, + 0xbc, 0x5b, 0xc4, 0xd5, 0x9d, 0x79, 0x77, 0x89, 0x6e, 0x54, 0xbb, 0x7d, 0x24, 0x90, 0x8e, 0x73, + 0xe2, 0x65, 0x5d, 0x87, 0x7e, 0x76, 0xa2, 0x59, 0x5d, 0xc9, 0xdc, 0xf9, 0xa7, 0xcf, 0xc7, 0xcf, + 0x76, 0xca, 0xa7, 0xb9, 0xe5, 0xfc, 0xdc, 0xd9, 0xb7, 0xf3, 0x9e, 0xf6, 0x91, 0xbe, 0x2d, 0xf7, + 0x69, 0x3e, 0x0d, 0x38, 0xc2, 0x05, 0x18, 0xa5, 0x09, 0x17, 0x36, 0x8d, 0x75, 0xdd, 0x2a, 0xe8, + 0x9d, 0xf3, 0x87, 0xf0, 0x67, 0x0f, 0x0c, 0xd5, 0xdd, 0x38, 0xc4, 0x0e, 0x78, 0x67, 0x12, 0x92, + 0xb4, 0xd7, 0x0a, 0xef, 0x40, 0x37, 0xed, 0x40, 0x82, 0xae, 0xb1, 0x82, 0xf1, 0x4d, 0x18, 0xa8, + 0x51, 0xa7, 0xcf, 0x7d, 0xc9, 0x57, 0xfa, 0x72, 0xf4, 0x73, 0x56, 0xc0, 0xa7, 0x01, 0x17, 0x54, + 0x8b, 0x58, 0x46, 0x41, 0xad, 0x28, 0xaa, 0x6d, 0x2b, 0x65, 0xd5, 0x29, 0x8f, 0x1d, 0xa0, 0xdc, + 0x3b, 0x54, 0x7b, 0x33, 0x6f, 0xdb, 0x4b, 0xaa, 0x53, 0xc6, 0x02, 0xa4, 0x8a, 0xa4, 0xba, 0x51, + 0x37, 0xec, 0xa5, 0x86, 0x09, 0x7f, 0x31, 0xb0, 0xb1, 0xe1, 0x70, 0x3d, 0x62, 0x30, 0x5b, 0x8a, + 0x63, 0x94, 0xc6, 0xfa, 0xf6, 0x0c, 0x7b, 0xe1, 0xda, 0x8d, 0xb5, 0x35, 0xa3, 0x24, 0x8f, 0xd6, + 0x22, 0x2f, 0xf2, 0xc0, 0x6b, 0x46, 0x09, 0x17, 0x61, 0x98, 0xa2, 0x8a, 0x24, 0xeb, 0x7f, 0xe5, + 0x64, 0x07, 0xfd, 0xa0, 0xa1, 0x3c, 0xc2, 0x6d, 0x38, 0xd4, 0x30, 0x18, 0x7c, 0x87, 0xe7, 0x61, + 0x40, 0xe7, 0x6b, 0x9c, 0x57, 0x4e, 0xc4, 0x9e, 0xae, 0x46, 0x47, 0xb9, 0xe6, 0x26, 0xdc, 0x47, + 0xfc, 0x6c, 0xf8, 0x47, 0x37, 0xb0, 0x0b, 0x89, 0xa2, 0xa4, 0xe3, 0xaa, 0x55, 0x57, 0x89, 0x9c, + 0x90, 0x04, 0x5d, 0xe3, 0xf3, 0xb1, 0x5f, 0x1c, 0xf2, 0x13, 0xe2, 0xe7, 0xad, 0x01, 0x08, 0x2f, + 0xf5, 0x0a, 0x0c, 0x06, 0x98, 0x03, 0x26, 0xe9, 0xb0, 0xd6, 0xba, 0xdf, 0xfe, 0x11, 0xca, 0x7b, + 0x9c, 0xef, 0xd6, 0x8c, 0x92, 0x65, 0x58, 0xa5, 0x65, 0xab, 0x48, 0x76, 0x71, 0x5a, 0x9f, 0x21, + 0x18, 0x89, 0x78, 0xee, 0xea, 0xc0, 0x46, 0x36, 0xc4, 0xaf, 0xa1, 0x27, 0xba, 0x21, 0x59, 0x38, + 0x64, 0x1a, 0x8e, 0xa3, 0xaf, 0x2b, 0x8c, 0x46, 0x95, 0x02, 0xf1, 0x2c, 0x57, 0xaf, 0xd2, 0xd3, + 0xdb, 0x23, 0x8f, 0xb0, 0x97, 0x8c, 0xa5, 0xaf, 0xb0, 0x57, 0x78, 0x05, 0x92, 0x9f, 0xa8, 0x46, + 0x45, 0x5f, 0x57, 0x3c, 0xcb, 0x35, 0x2a, 0xf4, 0x1c, 0x26, 0xb2, 0x69, 0x91, 0x89, 0x7a, 0x31, + 0x10, 0xf5, 0xe2, 0x8d, 0x40, 0xd4, 0xe7, 0x52, 0xbe, 0xc2, 0x7e, 0xf0, 0xd7, 0x38, 0xfa, 0xf1, + 0xdf, 0x5f, 0x66, 0x90, 0x9c, 0x60, 0xee, 0x37, 0x7d, 0x6f, 0xc1, 0x84, 0xb1, 0x9d, 0xdd, 0xa9, + 0xf1, 0x66, 0xd2, 0x61, 0xcb, 0x8a, 0x61, 0x15, 0x09, 0x1f, 0xdb, 0xe9, 0xd8, 0xad, 0x8c, 0xf1, + 0xe7, 0xca, 0x3e, 0xe1, 0xd4, 0x5f, 0x09, 0xda, 0xce, 0x74, 0xb5, 0x01, 0x8e, 0x4e, 0x27, 0xda, + 0xf3, 0x74, 0xfe, 0x1a, 0x1c, 0x93, 0x68, 0x12, 0x5e, 0xd4, 0x1a, 0xa4, 0xc2, 0x45, 0x05, 0x03, + 0xba, 0xdb, 0xaa, 0x92, 0xa1, 0xaa, 0xf6, 0x6f, 0x58, 0x67, 0x2e, 0x31, 0x41, 0x12, 0xd5, 0x00, + 0x78, 0x18, 0x52, 0xab, 0xd7, 0x56, 0x95, 0xc5, 0xe5, 0xd5, 0xf9, 0x95, 0xe5, 0xdb, 0x0b, 0x1f, + 0x0c, 0x75, 0xe1, 0x14, 0x0c, 0xd6, 0x1f, 0x11, 0xee, 0x87, 0x9e, 0xf9, 0xd5, 0x8f, 0x87, 0xba, + 0xb3, 0x9f, 0xa7, 0xa0, 0x97, 0x16, 0x8f, 0x3f, 0x45, 0xd0, 0xc7, 0xae, 0x58, 0xb8, 0xb9, 0xd8, + 0x88, 0xde, 0xe7, 0xd2, 0xd3, 0xed, 0x0d, 0x19, 0x68, 0xe1, 0xd8, 0x67, 0xbf, 0xfd, 0xf3, 0x75, + 0xf7, 0x51, 0x7c, 0x44, 0x6a, 0x7e, 0x25, 0xc5, 0xcf, 0x10, 0x8c, 0xc6, 0x5d, 0x74, 0xf0, 0x3b, + 0xbb, 0xbd, 0x18, 0x31, 0x78, 0xe7, 0xf6, 0x76, 0x9f, 0x12, 0x6e, 0x51, 0xb0, 0x79, 0xbc, 0x2a, + 0xb5, 0xba, 0x1d, 0x2b, 0x76, 0x95, 0xf8, 0xf4, 0x53, 0x75, 0xa4, 0xbb, 0x91, 0xb3, 0x7d, 0x4f, + 0xb2, 0x69, 0x64, 0xfa, 0x61, 0x65, 0xa1, 0x95, 0x8a, 0xe1, 0xb8, 0xf8, 0x09, 0x82, 0xe1, 0x1d, + 0x5a, 0x1b, 0x67, 0x77, 0x25, 0xcc, 0x59, 0x65, 0x73, 0x7b, 0x10, 0xf3, 0xc2, 0x0d, 0x5a, 0xd6, + 0x2a, 0x5e, 0x79, 0x85, 0xb2, 0x22, 0x97, 0x0b, 0x5a, 0xd4, 0x7d, 0x04, 0xbd, 0x74, 0xf8, 0xf0, + 0x54, 0x73, 0x50, 0x61, 0x75, 0x9d, 0x3e, 0xd9, 0xd6, 0x8e, 0x03, 0x3e, 0x4d, 0x01, 0x4f, 0xe1, + 0xe3, 0xb1, 0x80, 0x19, 0x05, 0x4a, 0x77, 0x19, 0x5d, 0xde, 0xc3, 0x5f, 0x22, 0x80, 0xba, 0x48, + 0xc5, 0xa7, 0x5a, 0xb7, 0x28, 0x22, 0xb7, 0xd3, 0xa7, 0x3b, 0x33, 0xee, 0x68, 0x98, 0xb9, 0xc2, + 0x7d, 0x88, 0x20, 0x15, 0xd1, 0x97, 0x58, 0x6c, 0x9e, 0x24, 0x4e, 0xbd, 0xa6, 0xa5, 0x8e, 0xed, + 0x39, 0xae, 0x53, 0x14, 0xd7, 0x09, 0x7c, 0x2c, 0x16, 0xd7, 0xa6, 0xef, 0x53, 0x6f, 0xd7, 0xcf, + 0x08, 0x06, 0x82, 0x0f, 0x2a, 0x7e, 0xab, 0x79, 0xaa, 0x06, 0xc9, 0x9a, 0x9e, 0xe9, 0xc4, 0x94, + 0x03, 0x5a, 0xa2, 0x80, 0x72, 0xf8, 0xf2, 0x5e, 0x27, 0x2e, 0xf8, 0xbe, 0xe3, 0x6f, 0x10, 0xa4, + 0x22, 0xea, 0xa1, 0x55, 0x37, 0xe3, 0xf4, 0x4e, 0xab, 0x6e, 0xc6, 0xca, 0x12, 0x61, 0x8a, 0x82, + 0x9f, 0xc0, 0x99, 0x58, 0xf0, 0x75, 0xe5, 0xf1, 0x03, 0x82, 0x44, 0x88, 0xf8, 0x71, 0x8b, 0x59, + 0xda, 0xa9, 0x29, 0xd2, 0x67, 0x3a, 0xb4, 0xe6, 0xa0, 0x2e, 0x52, 0x50, 0x67, 0x71, 0x36, 0x16, + 0x54, 0xe4, 0x4b, 0xd5, 0xd8, 0x4c, 0xfc, 0x2d, 0x82, 0x64, 0xf8, 0x1b, 0x87, 0x3b, 0xcb, 0x5d, + 0xeb, 0xa0, 0xd8, 0xa9, 0x39, 0xc7, 0x3a, 0x43, 0xb1, 0x1e, 0xc7, 0x42, 0x7b, 0xac, 0xb9, 0x95, + 0x47, 0x2f, 0x32, 0xe8, 0xf1, 0x8b, 0x0c, 0xfa, 0xfb, 0x45, 0x06, 0x3d, 0x78, 0x99, 0xe9, 0x7a, + 0xfc, 0x32, 0xd3, 0xf5, 0xc7, 0xcb, 0x4c, 0xd7, 0xed, 0x6c, 0x7b, 0xa9, 0xbd, 0x55, 0x0f, 0x4c, + 0x55, 0xb7, 0xd6, 0x47, 0x55, 0xcd, 0xdc, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x2d, 0xb4, 0xbe, + 0x11, 0x96, 0x15, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2307,6 +2401,91 @@ func (m *QueryEvidenceRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *EvidenceResponse) 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 *EvidenceResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *EvidenceResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.ForkFinalitySig != nil { + { + size := m.ForkFinalitySig.Size() + i -= size + if _, err := m.ForkFinalitySig.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x3a + } + if m.CanonicalFinalitySig != nil { + { + size := m.CanonicalFinalitySig.Size() + i -= size + if _, err := m.CanonicalFinalitySig.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x32 + } + if len(m.ForkAppHash) > 0 { + i -= len(m.ForkAppHash) + copy(dAtA[i:], m.ForkAppHash) + i = encodeVarintQuery(dAtA, i, uint64(len(m.ForkAppHash))) + i-- + dAtA[i] = 0x2a + } + if len(m.CanonicalAppHash) > 0 { + i -= len(m.CanonicalAppHash) + copy(dAtA[i:], m.CanonicalAppHash) + i = encodeVarintQuery(dAtA, i, uint64(len(m.CanonicalAppHash))) + i-- + dAtA[i] = 0x22 + } + if m.PubRand != nil { + { + size := m.PubRand.Size() + i -= size + if _, err := m.PubRand.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + if m.BlockHeight != 0 { + i = encodeVarintQuery(dAtA, i, uint64(m.BlockHeight)) + i-- + dAtA[i] = 0x10 + } + if len(m.FpBtcPkHex) > 0 { + i -= len(m.FpBtcPkHex) + copy(dAtA[i:], m.FpBtcPkHex) + i = encodeVarintQuery(dAtA, i, uint64(len(m.FpBtcPkHex))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + func (m *QueryEvidenceResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -2862,6 +3041,42 @@ func (m *QueryEvidenceRequest) Size() (n int) { return n } +func (m *EvidenceResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.FpBtcPkHex) + if l > 0 { + n += 1 + l + sovQuery(uint64(l)) + } + if m.BlockHeight != 0 { + n += 1 + sovQuery(uint64(m.BlockHeight)) + } + if m.PubRand != nil { + l = m.PubRand.Size() + n += 1 + l + sovQuery(uint64(l)) + } + l = len(m.CanonicalAppHash) + if l > 0 { + n += 1 + l + sovQuery(uint64(l)) + } + l = len(m.ForkAppHash) + if l > 0 { + n += 1 + l + sovQuery(uint64(l)) + } + if m.CanonicalFinalitySig != nil { + l = m.CanonicalFinalitySig.Size() + n += 1 + l + sovQuery(uint64(l)) + } + if m.ForkFinalitySig != nil { + l = m.ForkFinalitySig.Size() + n += 1 + l + sovQuery(uint64(l)) + } + return n +} + func (m *QueryEvidenceResponse) Size() (n int) { if m == nil { return 0 @@ -4503,6 +4718,280 @@ func (m *QueryEvidenceRequest) Unmarshal(dAtA []byte) error { } return nil } +func (m *EvidenceResponse) 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 ErrIntOverflowQuery + } + 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: EvidenceResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: EvidenceResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field FpBtcPkHex", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + 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 ErrInvalidLengthQuery + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.FpBtcPkHex = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field BlockHeight", wireType) + } + m.BlockHeight = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.BlockHeight |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field PubRand", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + var v github_com_babylonlabs_io_babylon_types.SchnorrPubRand + m.PubRand = &v + if err := m.PubRand.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CanonicalAppHash", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.CanonicalAppHash = append(m.CanonicalAppHash[:0], dAtA[iNdEx:postIndex]...) + if m.CanonicalAppHash == nil { + m.CanonicalAppHash = []byte{} + } + iNdEx = postIndex + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ForkAppHash", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ForkAppHash = append(m.ForkAppHash[:0], dAtA[iNdEx:postIndex]...) + if m.ForkAppHash == nil { + m.ForkAppHash = []byte{} + } + iNdEx = postIndex + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field CanonicalFinalitySig", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + var v github_com_babylonlabs_io_babylon_types.SchnorrEOTSSig + m.CanonicalFinalitySig = &v + if err := m.CanonicalFinalitySig.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 7: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ForkFinalitySig", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + var v github_com_babylonlabs_io_babylon_types.SchnorrEOTSSig + m.ForkFinalitySig = &v + if err := m.ForkFinalitySig.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *QueryEvidenceResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 @@ -4562,7 +5051,7 @@ func (m *QueryEvidenceResponse) Unmarshal(dAtA []byte) error { return io.ErrUnexpectedEOF } if m.Evidence == nil { - m.Evidence = &Evidence{} + m.Evidence = &EvidenceResponse{} } if err := m.Evidence.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err @@ -4752,7 +5241,7 @@ func (m *QueryListEvidencesResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.Evidences = append(m.Evidences, &Evidence{}) + m.Evidences = append(m.Evidences, &EvidenceResponse{}) if err := m.Evidences[len(m.Evidences)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err }