diff --git a/CHANGELOG.md b/CHANGELOG.md index 64d4966535..49f7418e6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -54,6 +54,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ - [2299](https://github.com/umee-network/umee/pull/2299) Upgrade Cosmos SDK to v0.47. - [2301](https://github.com/umee-network/umee/pull/2301) use gov/v1 MinInitialDepositRatio and set it to 0.1. +- [2341](https://github.com/umee-network/umee/pull/2341) inspect query also returns a list of accounts whose positions could not be calculated ### Breaking Changes diff --git a/proto/umee/leverage/v1/query.proto b/proto/umee/leverage/v1/query.proto index 128f10aae1..7bb6cdc861 100644 --- a/proto/umee/leverage/v1/query.proto +++ b/proto/umee/leverage/v1/query.proto @@ -402,6 +402,8 @@ message QueryInspectResponse { repeated InspectAccount borrowers = 1 [ (gogoproto.nullable) = false ]; + // Failures is a list of addresses for which the position calculation failed. + repeated string failures = 2; } // QueryInspectAccountResponse defines the response structure for the InspectAccount gRPC service handler. diff --git a/swagger/swagger.yaml b/swagger/swagger.yaml index f0ab5bc466..cc87e915ef 100644 --- a/swagger/swagger.yaml +++ b/swagger/swagger.yaml @@ -408,6 +408,13 @@ paths: description: >- InspectAccount contains risk and balance info for a single account for the inspector query. + failures: + type: array + items: + type: string + description: >- + Failures is a list of addresses for which the position + calculation failed. description: >- QueryInspectResponse defines the response structure for the Inspect gRPC service handler. @@ -5079,6 +5086,13 @@ definitions: description: >- InspectAccount contains risk and balance info for a single account for the inspector query. + failures: + type: array + items: + type: string + description: >- + Failures is a list of addresses for which the position calculation + failed. description: >- QueryInspectResponse defines the response structure for the Inspect gRPC service handler. diff --git a/x/leverage/keeper/inspector.go b/x/leverage/keeper/inspector.go index d56fe269f5..6fc83860a0 100644 --- a/x/leverage/keeper/inspector.go +++ b/x/leverage/keeper/inspector.go @@ -29,6 +29,7 @@ func (q Querier) Inspect( if req == nil { return nil, status.Error(codes.InvalidArgument, "empty request") } + failures := []string{} // This query is also disabled by default as a safety measure. Enable with liquidator queries. if !q.Keeper.liquidatorQueryEnabled { @@ -73,6 +74,8 @@ func (q Querier) Inspect( borrowedValue = position.BorrowedValue() collateralValue = position.CollateralValue() liquidationThreshold = position.Limit() + } else { + failures = append(failures, addr.String()) } borrowed := k.GetBorrowerBorrows(ctx, addr) @@ -120,7 +123,7 @@ func (q Querier) Inspect( for _, b := range borrowers { sortedBorrowers = append(sortedBorrowers, *b) } - return &types.QueryInspectResponse{Borrowers: sortedBorrowers}, nil + return &types.QueryInspectResponse{Borrowers: sortedBorrowers, Failures: failures}, nil } // Separated from grpc_query.go diff --git a/x/leverage/types/query.pb.go b/x/leverage/types/query.pb.go index a0d48f61a5..2ebcd0967c 100644 --- a/x/leverage/types/query.pb.go +++ b/x/leverage/types/query.pb.go @@ -972,6 +972,8 @@ var xxx_messageInfo_QueryInspectAccount proto.InternalMessageInfo // QueryInspectResponse defines the response structure for the Inspect gRPC service handler. type QueryInspectResponse struct { Borrowers []InspectAccount `protobuf:"bytes,1,rep,name=borrowers,proto3" json:"borrowers"` + // Failures is a list of addresses for which the position calculation failed. + Failures []string `protobuf:"bytes,2,rep,name=failures,proto3" json:"failures,omitempty"` } func (m *QueryInspectResponse) Reset() { *m = QueryInspectResponse{} } @@ -1208,124 +1210,125 @@ func init() { func init() { proto.RegisterFile("umee/leverage/v1/query.proto", fileDescriptor_1e8137dcabb0ccc7) } var fileDescriptor_1e8137dcabb0ccc7 = []byte{ - // 1872 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x59, 0x4f, 0x6f, 0xdb, 0xc8, - 0x15, 0x37, 0xed, 0x44, 0x96, 0x9f, 0x2c, 0xdb, 0x99, 0x38, 0x09, 0xa3, 0x38, 0x92, 0xc2, 0xc4, - 0x89, 0x37, 0x5b, 0x4b, 0x89, 0x17, 0x08, 0xb0, 0x68, 0xd1, 0x36, 0x8a, 0x5b, 0x34, 0x45, 0x76, - 0xe1, 0x30, 0x9b, 0x2d, 0xb2, 0xbb, 0x5d, 0x61, 0x44, 0xcd, 0xca, 0x84, 0x29, 0x92, 0xe1, 0x50, - 0x8a, 0x55, 0x60, 0x2f, 0x0b, 0xf4, 0xd6, 0x02, 0x0d, 0x8a, 0x1e, 0x7a, 0xec, 0xb5, 0xb7, 0x7e, - 0x8b, 0x1c, 0x17, 0xe8, 0xa5, 0x28, 0x50, 0xb7, 0x4d, 0x8a, 0x1e, 0x72, 0xe9, 0x17, 0xe8, 0xa1, - 0x98, 0x3f, 0x1c, 0x91, 0xa2, 0xe8, 0xc8, 0x44, 0x7d, 0xb2, 0x86, 0xf3, 0xde, 0xef, 0xfd, 0xe6, - 0xcd, 0xbc, 0x3f, 0x33, 0x86, 0x8d, 0x41, 0x9f, 0x90, 0xa6, 0x43, 0x86, 0x24, 0xc0, 0x3d, 0xd2, - 0x1c, 0xde, 0x6d, 0x3e, 0x1f, 0x90, 0x60, 0xd4, 0xf0, 0x03, 0x2f, 0xf4, 0xd0, 0x1a, 0x9b, 0x6d, - 0x44, 0xb3, 0x8d, 0xe1, 0xdd, 0xca, 0x46, 0xcf, 0xf3, 0x7a, 0x0e, 0x69, 0x62, 0xdf, 0x6e, 0x62, - 0xd7, 0xf5, 0x42, 0x1c, 0xda, 0x9e, 0x4b, 0x85, 0x7c, 0xa5, 0x9a, 0x42, 0xeb, 0x11, 0x97, 0x50, - 0x3b, 0x9a, 0xaf, 0xa5, 0xe6, 0x15, 0xb6, 0x10, 0x58, 0xef, 0x79, 0x3d, 0x8f, 0xff, 0x6c, 0xb2, - 0x5f, 0x11, 0xac, 0xe5, 0xd1, 0xbe, 0x47, 0x9b, 0x1d, 0x4c, 0x99, 0x52, 0x87, 0x84, 0xf8, 0x6e, - 0xd3, 0xf2, 0x6c, 0x57, 0xcc, 0x1b, 0x65, 0x28, 0x3d, 0x66, 0xac, 0xf7, 0x70, 0x80, 0xfb, 0xd4, - 0xf8, 0x08, 0xce, 0xc7, 0x86, 0x26, 0xa1, 0xbe, 0xe7, 0x52, 0x82, 0xee, 0x41, 0xc1, 0xe7, 0x5f, - 0x74, 0xad, 0xae, 0x6d, 0x95, 0x76, 0xf4, 0xc6, 0xe4, 0xea, 0x1a, 0x42, 0xa3, 0x75, 0xe6, 0xd5, - 0x51, 0x6d, 0xce, 0x94, 0xd2, 0xc6, 0x3d, 0xb8, 0xc0, 0xe1, 0x4c, 0xd2, 0xb3, 0x69, 0x48, 0x02, - 0xd2, 0xfd, 0xc4, 0x3b, 0x20, 0x2e, 0x45, 0x57, 0x01, 0x18, 0xa3, 0x76, 0x97, 0xb8, 0x5e, 0x9f, - 0x83, 0x2e, 0x99, 0x4b, 0xec, 0xcb, 0x2e, 0xfb, 0x60, 0x7c, 0x06, 0x57, 0xa7, 0xea, 0x29, 0x42, - 0x1f, 0x42, 0x31, 0xe0, 0x73, 0xc1, 0x48, 0xd7, 0xea, 0x0b, 0x5b, 0xa5, 0x9d, 0x4b, 0x69, 0x4a, - 0x5c, 0x47, 0x32, 0x52, 0xe2, 0xc6, 0x6d, 0x40, 0x1c, 0xfb, 0x89, 0x4f, 0x2c, 0x1b, 0x3b, 0xf7, - 0x29, 0x25, 0x21, 0x45, 0xeb, 0x70, 0x36, 0xce, 0x45, 0x0c, 0x8c, 0x2f, 0xa0, 0x92, 0x96, 0x55, - 0x24, 0xbe, 0x0f, 0x67, 0x7d, 0x6c, 0x07, 0x54, 0x32, 0x30, 0xd2, 0x0c, 0xe2, 0x7a, 0x7b, 0xd8, - 0x0e, 0x24, 0x19, 0xa1, 0xa6, 0x98, 0x7c, 0x84, 0x83, 0x03, 0x12, 0x3e, 0x19, 0xf4, 0xfb, 0x38, - 0x18, 0x65, 0x30, 0xf9, 0xef, 0xb2, 0xa4, 0x92, 0x10, 0x56, 0x54, 0xae, 0xc1, 0x32, 0x1d, 0xf5, - 0x3b, 0x9e, 0x93, 0xf0, 0x68, 0x49, 0x7c, 0xe3, 0x3e, 0x45, 0x15, 0x28, 0x92, 0x43, 0xdf, 0x73, - 0x89, 0x1b, 0xea, 0xf3, 0x75, 0x6d, 0xab, 0x6c, 0xaa, 0x31, 0x7a, 0x0c, 0xcb, 0x5e, 0x80, 0x2d, - 0x87, 0xb4, 0xfd, 0xc0, 0xb6, 0x88, 0xbe, 0xc0, 0xd4, 0x5b, 0x8d, 0x57, 0x47, 0x35, 0xed, 0xaf, - 0x47, 0xb5, 0x9b, 0x3d, 0x3b, 0xdc, 0x1f, 0x74, 0x1a, 0x96, 0xd7, 0x6f, 0xca, 0xe3, 0x24, 0xfe, - 0x6c, 0xd3, 0xee, 0x41, 0x33, 0x1c, 0xf9, 0x84, 0x36, 0x76, 0x89, 0x65, 0x96, 0x04, 0xc6, 0x1e, - 0x83, 0x40, 0x87, 0xb0, 0x3e, 0xe0, 0x1b, 0xd0, 0x26, 0x87, 0xd6, 0x3e, 0x76, 0x7b, 0xa4, 0x1d, - 0xe0, 0x90, 0xe8, 0x67, 0x38, 0xf4, 0x8f, 0x99, 0x1f, 0x66, 0x87, 0x7e, 0x7b, 0x54, 0x5b, 0x1f, - 0x84, 0x69, 0x34, 0x13, 0x09, 0x1b, 0x3f, 0x92, 0x1f, 0x4d, 0x1c, 0x12, 0xf4, 0x39, 0x00, 0x1d, - 0xf8, 0xbe, 0x33, 0x6a, 0xdf, 0xdf, 0x7b, 0xa6, 0x9f, 0xe5, 0xf6, 0xbe, 0x77, 0x62, 0x7b, 0x11, - 0x06, 0xf6, 0x47, 0xe6, 0x92, 0xf8, 0x7d, 0x7f, 0xef, 0x19, 0x03, 0xef, 0x78, 0x41, 0xe0, 0xbd, - 0xe0, 0xe0, 0x85, 0xbc, 0xe0, 0x12, 0x83, 0x83, 0x8b, 0xdf, 0x0c, 0xfc, 0xa7, 0x50, 0xe4, 0x96, - 0x6c, 0xd2, 0xd5, 0x17, 0xd5, 0x16, 0xcc, 0x0a, 0xfd, 0xd0, 0x0d, 0x4d, 0xa5, 0xcf, 0xb0, 0x02, - 0x42, 0x49, 0x30, 0x24, 0x5d, 0xbd, 0x98, 0x0f, 0x2b, 0xd2, 0x47, 0x1f, 0x03, 0x58, 0x9e, 0xe3, - 0xe0, 0x90, 0x04, 0xd8, 0xd1, 0x97, 0x72, 0xa1, 0xc5, 0x10, 0x18, 0x37, 0xb1, 0x68, 0xd2, 0xd5, - 0x21, 0x1f, 0xb7, 0x48, 0x1f, 0x3d, 0x82, 0x25, 0xc7, 0x7e, 0x3e, 0xb0, 0xbb, 0x76, 0x38, 0xd2, - 0x4b, 0xb9, 0xc0, 0xc6, 0x00, 0xe8, 0x29, 0xac, 0xf4, 0xf1, 0xa1, 0xdd, 0x1f, 0xf4, 0xdb, 0xc2, - 0x82, 0xbe, 0x9c, 0x0b, 0xb2, 0x2c, 0x51, 0x5a, 0x1c, 0x04, 0xfd, 0x1c, 0x50, 0x04, 0x1b, 0x73, - 0x64, 0x39, 0x17, 0xf4, 0x39, 0x89, 0xf4, 0x60, 0xec, 0xcf, 0xcf, 0xe1, 0x5c, 0xdf, 0x76, 0x39, - 0xfc, 0xd8, 0x17, 0x2b, 0xb9, 0xd0, 0xd7, 0x24, 0xd0, 0x23, 0xe5, 0x92, 0x2e, 0x94, 0x65, 0x20, - 0x8b, 0x28, 0xd0, 0x57, 0x39, 0xf0, 0x0f, 0x4e, 0x06, 0xfc, 0xf6, 0xa8, 0x56, 0x96, 0x11, 0x2c, - 0x60, 0xcc, 0x65, 0x81, 0xfa, 0x84, 0x8f, 0xd0, 0x33, 0x58, 0xc3, 0x43, 0x6c, 0x3b, 0xb8, 0xe3, - 0x90, 0xc8, 0xf5, 0x6b, 0xb9, 0x56, 0xb0, 0xaa, 0x70, 0xc6, 0xce, 0x1f, 0x43, 0xbf, 0xb0, 0xc3, - 0xfd, 0x6e, 0x80, 0x5f, 0xe8, 0xe7, 0xf2, 0x39, 0x5f, 0x21, 0xfd, 0x4c, 0x02, 0xa1, 0x1e, 0x5c, - 0x1a, 0xc3, 0x8f, 0x77, 0xd7, 0xfe, 0x05, 0xd1, 0x51, 0x2e, 0x1b, 0x17, 0x15, 0xdc, 0x83, 0x38, - 0x1a, 0xea, 0xc0, 0x05, 0x99, 0xa4, 0xf7, 0x6d, 0x1a, 0x7a, 0x81, 0x6d, 0xc9, 0x6c, 0x7d, 0x3e, - 0x57, 0xb6, 0x3e, 0x2f, 0xc0, 0x7e, 0x22, 0xb1, 0x44, 0xd6, 0xbe, 0x08, 0x05, 0x12, 0x04, 0x5e, - 0x40, 0xf5, 0x75, 0x5e, 0x41, 0xe4, 0xc8, 0xb8, 0x03, 0xeb, 0xbc, 0xfa, 0xdc, 0xb7, 0x2c, 0x6f, - 0xe0, 0x86, 0x2d, 0xec, 0x60, 0xd7, 0x22, 0x14, 0xe9, 0xb0, 0x88, 0xbb, 0xdd, 0x80, 0x50, 0x2a, - 0x4b, 0x4e, 0x34, 0x34, 0xfe, 0x36, 0x0f, 0x1b, 0xd3, 0x54, 0x54, 0xc9, 0xea, 0xc5, 0x92, 0x9d, - 0x28, 0xa0, 0x97, 0x1b, 0x82, 0x68, 0x83, 0x35, 0x02, 0x0d, 0xd9, 0xac, 0x34, 0x1e, 0x78, 0xb6, - 0xdb, 0xba, 0xc3, 0x7c, 0xf8, 0xc7, 0xbf, 0xd7, 0xb6, 0x66, 0x58, 0x1c, 0x53, 0xa0, 0xb1, 0x4c, - 0x78, 0x90, 0xc8, 0x5e, 0xf3, 0xff, 0x7f, 0x53, 0xf1, 0xd4, 0xd6, 0x8b, 0xa5, 0xb6, 0x85, 0x53, - 0x58, 0x55, 0x04, 0x6e, 0x34, 0x65, 0xa7, 0x26, 0xdd, 0x1b, 0x75, 0x0f, 0xd9, 0x1b, 0xf2, 0x4d, - 0x01, 0xae, 0x4c, 0xd1, 0x50, 0xfb, 0xf1, 0x14, 0x56, 0x22, 0x97, 0xb5, 0x87, 0xd8, 0x19, 0x10, - 0x01, 0x70, 0xa2, 0xe3, 0xcb, 0xce, 0x55, 0x39, 0x42, 0xf9, 0x94, 0x81, 0xb0, 0xc0, 0x1e, 0xbb, - 0x47, 0x02, 0xcf, 0xe7, 0x02, 0x5e, 0x1d, 0xe3, 0x08, 0xe8, 0xa7, 0xb0, 0x12, 0xb9, 0x43, 0x02, - 0x2f, 0xe4, 0x63, 0x1c, 0xa1, 0x08, 0xd8, 0xc7, 0xb0, 0x2c, 0xcb, 0xb3, 0x63, 0xf7, 0xed, 0x50, - 0x76, 0x2c, 0x27, 0x6e, 0x86, 0x04, 0xc6, 0x23, 0x06, 0x81, 0x2c, 0xb8, 0x20, 0x12, 0x33, 0x6f, - 0xf9, 0xdb, 0xe1, 0x7e, 0x40, 0xe8, 0xbe, 0xe7, 0x74, 0x65, 0x77, 0x72, 0x52, 0xec, 0xf5, 0x18, - 0xd8, 0x27, 0x11, 0x16, 0xfa, 0x12, 0xce, 0x53, 0xdf, 0x0b, 0xdb, 0x13, 0xbb, 0x58, 0xc8, 0xe5, - 0x93, 0x73, 0x0c, 0xea, 0x49, 0x62, 0x27, 0x3b, 0x70, 0x81, 0xe3, 0xa7, 0xb6, 0x73, 0x31, 0x97, - 0x05, 0x4e, 0xf6, 0xc1, 0xc4, 0x96, 0x46, 0x6b, 0x98, 0xd8, 0xd7, 0x62, 0xfe, 0x35, 0xb4, 0xe2, - 0x7b, 0x6b, 0x5c, 0x86, 0x4b, 0x3c, 0x06, 0x1e, 0xc5, 0x1c, 0x88, 0x83, 0x1e, 0x09, 0xa9, 0xf1, - 0x5d, 0xa8, 0x65, 0x4c, 0xa9, 0x10, 0xd1, 0x61, 0x31, 0x14, 0x9f, 0x78, 0xc6, 0x5a, 0x32, 0xa3, - 0xa1, 0xb1, 0x0a, 0x65, 0xae, 0xdc, 0xc2, 0xdd, 0x5d, 0xd2, 0x09, 0xa9, 0x61, 0xca, 0x9b, 0x4f, - 0xf4, 0x21, 0x76, 0x73, 0x49, 0x60, 0xb0, 0xfc, 0x90, 0xba, 0x36, 0x48, 0x25, 0x79, 0x5b, 0x50, - 0x46, 0x5a, 0xb0, 0x26, 0xaf, 0x00, 0x87, 0xaa, 0xfa, 0x64, 0xc6, 0xfb, 0xf8, 0x1e, 0x31, 0x1f, - 0xbf, 0x47, 0xfc, 0x5b, 0x03, 0x7d, 0x12, 0x44, 0x71, 0x23, 0xb0, 0x28, 0x8a, 0x32, 0x3d, 0x8d, - 0x8c, 0x1c, 0x61, 0x23, 0x0b, 0x0a, 0xa1, 0xb0, 0x72, 0x0a, 0xc9, 0x58, 0x42, 0x1b, 0x3f, 0x84, - 0x95, 0x68, 0x9d, 0xb2, 0x0f, 0x38, 0xa9, 0xab, 0xbe, 0x86, 0x8b, 0x49, 0x04, 0xe5, 0xa7, 0xf1, - 0x02, 0xb4, 0xd3, 0x5b, 0xc0, 0xaf, 0x34, 0x58, 0xe6, 0xf6, 0x1f, 0xba, 0xd4, 0x27, 0x56, 0xc8, - 0x6a, 0xb3, 0xb8, 0xcf, 0x49, 0xfa, 0x72, 0xc4, 0x2e, 0x76, 0xaa, 0xe4, 0xb0, 0x05, 0x68, 0xb1, - 0xee, 0xb8, 0x9a, 0xa8, 0x7d, 0x0b, 0x7c, 0x36, 0x5e, 0xae, 0x2e, 0x42, 0xa1, 0xcb, 0x2e, 0x4e, - 0x01, 0xcf, 0x72, 0x9a, 0x29, 0x47, 0x68, 0x0d, 0x16, 0x9c, 0x70, 0xc8, 0xd3, 0x93, 0x66, 0xb2, - 0x9f, 0xaa, 0xde, 0x48, 0x36, 0xb2, 0x88, 0x1c, 0x53, 0x6f, 0xbe, 0x90, 0x2d, 0x83, 0x54, 0x50, - 0xce, 0xdb, 0x05, 0x79, 0xe3, 0x21, 0xea, 0xe6, 0x5c, 0x4f, 0x87, 0x40, 0xd2, 0x8c, 0x8c, 0x84, - 0xb1, 0xa2, 0x81, 0x65, 0x31, 0x4b, 0xca, 0x29, 0x23, 0x2d, 0xe5, 0x93, 0x40, 0x3e, 0x59, 0xcc, - 0x6a, 0x43, 0xe9, 0x19, 0x7f, 0xd2, 0x60, 0x65, 0xd6, 0xd5, 0xa2, 0x7b, 0x50, 0xc4, 0x2e, 0x76, - 0x46, 0xd4, 0xa6, 0x7c, 0x13, 0x4a, 0x3b, 0x95, 0xb4, 0x41, 0xd3, 0xa6, 0x07, 0x0f, 0xdd, 0xaf, - 0x3c, 0x53, 0xc9, 0xa2, 0x0f, 0xa1, 0xe8, 0x7b, 0xd4, 0x66, 0xd9, 0x86, 0x6f, 0x4f, 0x69, 0xe7, - 0x6a, 0x5a, 0x6f, 0x97, 0x58, 0xaa, 0x7d, 0x52, 0xe2, 0x08, 0xc1, 0x19, 0xdb, 0xfd, 0xca, 0x13, - 0xf5, 0xc9, 0xe4, 0xbf, 0x8d, 0x2f, 0xa1, 0x18, 0x19, 0x61, 0xe7, 0x22, 0x4a, 0x7e, 0x9c, 0xad, - 0x66, 0xaa, 0x31, 0xaa, 0x43, 0x29, 0x96, 0xe7, 0xe4, 0xb1, 0x89, 0x7f, 0x62, 0x31, 0xf1, 0xa9, - 0xaa, 0xa9, 0x9a, 0x29, 0x06, 0xc6, 0x7f, 0x34, 0x28, 0xc5, 0xd8, 0xa0, 0xe7, 0x89, 0xf3, 0x25, - 0x76, 0x73, 0x63, 0x6a, 0x34, 0xec, 0x12, 0x8b, 0x07, 0xc4, 0x07, 0x32, 0x20, 0xde, 0x9f, 0x2d, - 0x89, 0xa7, 0x3b, 0xac, 0x7e, 0xe2, 0xb8, 0x9f, 0x92, 0x41, 0x65, 0x62, 0xe7, 0x65, 0x19, 0xce, - 0xf2, 0x93, 0x86, 0x7c, 0x28, 0x88, 0x47, 0x2e, 0x34, 0x65, 0x8b, 0x62, 0xaf, 0x66, 0x95, 0xcd, - 0x63, 0xa7, 0xa3, 0x33, 0x6a, 0xd4, 0xbf, 0xf9, 0xf3, 0xbf, 0x7e, 0x3b, 0x5f, 0x41, 0x7a, 0x33, - 0xf5, 0xb4, 0x27, 0x9e, 0xcf, 0xd0, 0xef, 0x35, 0x58, 0x4b, 0x3d, 0x9d, 0xdd, 0xca, 0x40, 0x9f, - 0x14, 0xac, 0x34, 0x67, 0x14, 0x54, 0x84, 0xde, 0xe7, 0x84, 0x36, 0xd1, 0xf5, 0x34, 0xa1, 0x40, - 0xe9, 0xb4, 0x45, 0x7a, 0x42, 0xbf, 0xd6, 0xa0, 0x9c, 0x7c, 0x42, 0xbb, 0x91, 0x61, 0x2f, 0x21, - 0x55, 0xf9, 0xce, 0x2c, 0x52, 0x8a, 0xd2, 0x16, 0xa7, 0x64, 0xa0, 0x7a, 0x9a, 0x12, 0x15, 0x0a, - 0x6d, 0x2c, 0xac, 0x33, 0x3e, 0xc9, 0x87, 0xb4, 0x2c, 0x3e, 0x09, 0xa9, 0x4c, 0x3e, 0x53, 0xdf, - 0xd9, 0x8e, 0xe3, 0xd3, 0xe7, 0x0a, 0x6d, 0x2a, 0xad, 0xff, 0x4e, 0x83, 0xd5, 0xc9, 0xdb, 0xd2, - 0xcd, 0x0c, 0x5b, 0x13, 0x72, 0x95, 0xc6, 0x6c, 0x72, 0x8a, 0xd5, 0x6d, 0xce, 0xea, 0x06, 0x32, - 0xd2, 0xac, 0xb0, 0x50, 0x69, 0x77, 0x22, 0x0e, 0x2f, 0x35, 0x58, 0x99, 0xb8, 0x33, 0x6c, 0x1e, - 0x6f, 0x2e, 0xf2, 0xd4, 0xf6, 0x4c, 0x62, 0x8a, 0xd4, 0x7b, 0x9c, 0xd4, 0x75, 0x74, 0x2d, 0x9b, - 0x54, 0xe4, 0xab, 0x3f, 0x68, 0x80, 0xd2, 0x6d, 0x17, 0x7a, 0x2f, 0xc3, 0x60, 0x5a, 0xb4, 0x72, - 0x77, 0x66, 0x51, 0xc5, 0x6f, 0x9b, 0xf3, 0xbb, 0x85, 0x36, 0xd3, 0xfc, 0x12, 0xbd, 0xba, 0x24, - 0x33, 0x82, 0x62, 0xd4, 0xcb, 0xa1, 0x5a, 0x86, 0xb5, 0x48, 0xa0, 0x72, 0xeb, 0x1d, 0x02, 0x8a, - 0xc4, 0x75, 0x4e, 0xe2, 0x2a, 0xba, 0x92, 0x26, 0xd1, 0xc1, 0xdd, 0x76, 0x97, 0x9b, 0xfb, 0xa5, - 0x06, 0xa5, 0x78, 0xcf, 0x67, 0x64, 0x1e, 0x59, 0x25, 0x53, 0xb9, 0xfd, 0x6e, 0x19, 0x45, 0xe2, - 0x26, 0x27, 0x51, 0x47, 0xd5, 0x69, 0x87, 0xfa, 0x50, 0x3d, 0x99, 0xa0, 0xaf, 0x61, 0x69, 0xdc, - 0x4d, 0xd5, 0xb3, 0x0d, 0x08, 0x89, 0xca, 0xd6, 0xbb, 0x24, 0x14, 0x81, 0x1b, 0x9c, 0x40, 0x15, - 0x6d, 0x4c, 0x27, 0x20, 0x72, 0x31, 0x0a, 0x61, 0x31, 0x6a, 0x85, 0xaa, 0x19, 0xd0, 0x72, 0xbe, - 0x72, 0xf3, 0xf8, 0x79, 0x65, 0xf8, 0x1a, 0x37, 0x7c, 0x05, 0x5d, 0x4e, 0x1b, 0xb6, 0xa5, 0xa9, - 0x97, 0xe9, 0x2e, 0x60, 0xf3, 0x78, 0x74, 0x29, 0x96, 0x19, 0x2f, 0xd3, 0x5b, 0x96, 0xe3, 0xe2, - 0x45, 0x72, 0xd9, 0x96, 0x71, 0xd3, 0xfa, 0xf8, 0xd5, 0x3f, 0xab, 0x73, 0xaf, 0x5e, 0x57, 0xb5, - 0x6f, 0x5f, 0x57, 0xb5, 0x7f, 0xbc, 0xae, 0x6a, 0xbf, 0x79, 0x53, 0x9d, 0xfb, 0xf6, 0x4d, 0x75, - 0xee, 0x2f, 0x6f, 0xaa, 0x73, 0x9f, 0xdd, 0x89, 0x15, 0x3a, 0x06, 0xb5, 0xed, 0x92, 0xf0, 0x85, - 0x17, 0x1c, 0x08, 0xdc, 0xe1, 0xbd, 0xe6, 0xe1, 0x18, 0x9c, 0x97, 0xbd, 0x4e, 0x81, 0xff, 0x2f, - 0xe8, 0x83, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x75, 0x15, 0x86, 0x50, 0xd2, 0x1a, 0x00, 0x00, + // 1885 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x59, 0x4f, 0x6f, 0x1b, 0xc7, + 0x15, 0xd7, 0x4a, 0x36, 0x45, 0x3d, 0x8a, 0x92, 0x3c, 0x96, 0xed, 0x35, 0x2d, 0x93, 0xf4, 0xda, + 0xb2, 0x15, 0xa7, 0x22, 0x6d, 0x05, 0x30, 0x10, 0xb4, 0x68, 0x6b, 0x5a, 0x2d, 0xea, 0xc2, 0x09, + 0xe4, 0x75, 0x9c, 0xc2, 0x49, 0x1b, 0x62, 0xb8, 0x1c, 0x53, 0x0b, 0x2d, 0x77, 0xe9, 0x99, 0xa5, + 0x4c, 0x16, 0xc8, 0x25, 0x40, 0x6f, 0x2d, 0x50, 0xa3, 0xe8, 0xa1, 0xc7, 0x5e, 0x7b, 0xeb, 0xb7, + 0xf0, 0x31, 0x40, 0x2f, 0x45, 0x81, 0xaa, 0xad, 0x5d, 0xf4, 0x90, 0x4b, 0xbf, 0x40, 0x0f, 0xc5, + 0xfc, 0xd9, 0xe1, 0x92, 0xcb, 0x95, 0xa9, 0x45, 0x74, 0x12, 0x67, 0xe7, 0xbd, 0xdf, 0xfb, 0xcd, + 0x9b, 0x79, 0x7f, 0x66, 0x04, 0x1b, 0xfd, 0x2e, 0x21, 0x75, 0x8f, 0x1c, 0x12, 0x8a, 0x3b, 0xa4, + 0x7e, 0x78, 0xb7, 0xfe, 0xa2, 0x4f, 0xe8, 0xb0, 0xd6, 0xa3, 0x41, 0x18, 0xa0, 0x35, 0x3e, 0x5b, + 0x8b, 0x66, 0x6b, 0x87, 0x77, 0x4b, 0x1b, 0x9d, 0x20, 0xe8, 0x78, 0xa4, 0x8e, 0x7b, 0x6e, 0x1d, + 0xfb, 0x7e, 0x10, 0xe2, 0xd0, 0x0d, 0x7c, 0x26, 0xe5, 0x4b, 0xe5, 0x04, 0x5a, 0x87, 0xf8, 0x84, + 0xb9, 0xd1, 0x7c, 0x25, 0x31, 0xaf, 0xb1, 0xa5, 0xc0, 0x7a, 0x27, 0xe8, 0x04, 0xe2, 0x67, 0x9d, + 0xff, 0x8a, 0x60, 0x9d, 0x80, 0x75, 0x03, 0x56, 0x6f, 0x61, 0xc6, 0x95, 0x5a, 0x24, 0xc4, 0x77, + 0xeb, 0x4e, 0xe0, 0xfa, 0x72, 0xde, 0x2a, 0x42, 0xe1, 0x31, 0x67, 0xbd, 0x87, 0x29, 0xee, 0x32, + 0xeb, 0x23, 0x38, 0x1f, 0x1b, 0xda, 0x84, 0xf5, 0x02, 0x9f, 0x11, 0x74, 0x0f, 0x72, 0x3d, 0xf1, + 0xc5, 0x34, 0xaa, 0xc6, 0x56, 0x61, 0xc7, 0xac, 0x4d, 0xae, 0xae, 0x26, 0x35, 0x1a, 0x67, 0x5e, + 0x1f, 0x55, 0xe6, 0x6c, 0x25, 0x6d, 0xdd, 0x83, 0x0b, 0x02, 0xce, 0x26, 0x1d, 0x97, 0x85, 0x84, + 0x92, 0xf6, 0x27, 0xc1, 0x01, 0xf1, 0x19, 0xba, 0x0a, 0xc0, 0x19, 0x35, 0xdb, 0xc4, 0x0f, 0xba, + 0x02, 0x74, 0xc9, 0x5e, 0xe2, 0x5f, 0x76, 0xf9, 0x07, 0xeb, 0x33, 0xb8, 0x3a, 0x55, 0x4f, 0x13, + 0xfa, 0x10, 0xf2, 0x54, 0xcc, 0xd1, 0xa1, 0x69, 0x54, 0x17, 0xb6, 0x0a, 0x3b, 0x97, 0x92, 0x94, + 0x84, 0x8e, 0x62, 0xa4, 0xc5, 0xad, 0xdb, 0x80, 0x04, 0xf6, 0x93, 0x1e, 0x71, 0x5c, 0xec, 0xdd, + 0x67, 0x8c, 0x84, 0x0c, 0xad, 0xc3, 0xd9, 0x38, 0x17, 0x39, 0xb0, 0x7e, 0x0e, 0xa5, 0xa4, 0xac, + 0x26, 0xf1, 0x7d, 0x38, 0xdb, 0xc3, 0x2e, 0x65, 0x8a, 0x81, 0x95, 0x64, 0x10, 0xd7, 0xdb, 0xc3, + 0x2e, 0x55, 0x64, 0xa4, 0x9a, 0x66, 0xf2, 0x11, 0xa6, 0x07, 0x24, 0x7c, 0xd2, 0xef, 0x76, 0x31, + 0x1d, 0xa6, 0x30, 0xf9, 0xdf, 0xb2, 0xa2, 0x32, 0x26, 0xac, 0xa9, 0x5c, 0x83, 0x65, 0x36, 0xec, + 0xb6, 0x02, 0x6f, 0xcc, 0xa3, 0x05, 0xf9, 0x4d, 0xf8, 0x14, 0x95, 0x20, 0x4f, 0x06, 0xbd, 0xc0, + 0x27, 0x7e, 0x68, 0xce, 0x57, 0x8d, 0xad, 0xa2, 0xad, 0xc7, 0xe8, 0x31, 0x2c, 0x07, 0x14, 0x3b, + 0x1e, 0x69, 0xf6, 0xa8, 0xeb, 0x10, 0x73, 0x81, 0xab, 0x37, 0x6a, 0xaf, 0x8f, 0x2a, 0xc6, 0xdf, + 0x8e, 0x2a, 0x37, 0x3b, 0x6e, 0xb8, 0xdf, 0x6f, 0xd5, 0x9c, 0xa0, 0x5b, 0x57, 0xc7, 0x49, 0xfe, + 0xd9, 0x66, 0xed, 0x83, 0x7a, 0x38, 0xec, 0x11, 0x56, 0xdb, 0x25, 0x8e, 0x5d, 0x90, 0x18, 0x7b, + 0x1c, 0x02, 0x0d, 0x60, 0xbd, 0x2f, 0x36, 0xa0, 0x49, 0x06, 0xce, 0x3e, 0xf6, 0x3b, 0xa4, 0x49, + 0x71, 0x48, 0xcc, 0x33, 0x02, 0xfa, 0xc7, 0xdc, 0x0f, 0xb3, 0x43, 0x7f, 0x73, 0x54, 0x59, 0xef, + 0x87, 0x49, 0x34, 0x1b, 0x49, 0x1b, 0x3f, 0x52, 0x1f, 0x6d, 0x1c, 0x12, 0xf4, 0x39, 0x00, 0xeb, + 0xf7, 0x7a, 0xde, 0xb0, 0x79, 0x7f, 0xef, 0x99, 0x79, 0x56, 0xd8, 0xfb, 0xde, 0x89, 0xed, 0x45, + 0x18, 0xb8, 0x37, 0xb4, 0x97, 0xe4, 0xef, 0xfb, 0x7b, 0xcf, 0x38, 0x78, 0x2b, 0xa0, 0x34, 0x78, + 0x29, 0xc0, 0x73, 0x59, 0xc1, 0x15, 0x86, 0x00, 0x97, 0xbf, 0x39, 0xf8, 0x4f, 0x21, 0x2f, 0x2c, + 0xb9, 0xa4, 0x6d, 0x2e, 0xea, 0x2d, 0x98, 0x15, 0xfa, 0xa1, 0x1f, 0xda, 0x5a, 0x9f, 0x63, 0x51, + 0xc2, 0x08, 0x3d, 0x24, 0x6d, 0x33, 0x9f, 0x0d, 0x2b, 0xd2, 0x47, 0x1f, 0x03, 0x38, 0x81, 0xe7, + 0xe1, 0x90, 0x50, 0xec, 0x99, 0x4b, 0x99, 0xd0, 0x62, 0x08, 0x9c, 0x9b, 0x5c, 0x34, 0x69, 0x9b, + 0x90, 0x8d, 0x5b, 0xa4, 0x8f, 0x1e, 0xc1, 0x92, 0xe7, 0xbe, 0xe8, 0xbb, 0x6d, 0x37, 0x1c, 0x9a, + 0x85, 0x4c, 0x60, 0x23, 0x00, 0xf4, 0x14, 0x56, 0xba, 0x78, 0xe0, 0x76, 0xfb, 0xdd, 0xa6, 0xb4, + 0x60, 0x2e, 0x67, 0x82, 0x2c, 0x2a, 0x94, 0x86, 0x00, 0x41, 0xbf, 0x00, 0x14, 0xc1, 0xc6, 0x1c, + 0x59, 0xcc, 0x04, 0x7d, 0x4e, 0x21, 0x3d, 0x18, 0xf9, 0xf3, 0x73, 0x38, 0xd7, 0x75, 0x7d, 0x01, + 0x3f, 0xf2, 0xc5, 0x4a, 0x26, 0xf4, 0x35, 0x05, 0xf4, 0x48, 0xbb, 0xa4, 0x0d, 0x45, 0x15, 0xc8, + 0x32, 0x0a, 0xcc, 0x55, 0x01, 0xfc, 0x83, 0x93, 0x01, 0x7f, 0x73, 0x54, 0x29, 0xaa, 0x08, 0x96, + 0x30, 0xf6, 0xb2, 0x44, 0x7d, 0x22, 0x46, 0xe8, 0x19, 0xac, 0xe1, 0x43, 0xec, 0x7a, 0xb8, 0xe5, + 0x91, 0xc8, 0xf5, 0x6b, 0x99, 0x56, 0xb0, 0xaa, 0x71, 0x46, 0xce, 0x1f, 0x41, 0xbf, 0x74, 0xc3, + 0xfd, 0x36, 0xc5, 0x2f, 0xcd, 0x73, 0xd9, 0x9c, 0xaf, 0x91, 0x7e, 0xa6, 0x80, 0x50, 0x07, 0x2e, + 0x8d, 0xe0, 0x47, 0xbb, 0xeb, 0xfe, 0x92, 0x98, 0x28, 0x93, 0x8d, 0x8b, 0x1a, 0xee, 0x41, 0x1c, + 0x0d, 0xb5, 0xe0, 0x82, 0x4a, 0xd2, 0xfb, 0x2e, 0x0b, 0x03, 0xea, 0x3a, 0x2a, 0x5b, 0x9f, 0xcf, + 0x94, 0xad, 0xcf, 0x4b, 0xb0, 0x9f, 0x28, 0x2c, 0x99, 0xb5, 0x2f, 0x42, 0x8e, 0x50, 0x1a, 0x50, + 0x66, 0xae, 0x8b, 0x0a, 0xa2, 0x46, 0xd6, 0x1d, 0x58, 0x17, 0xd5, 0xe7, 0xbe, 0xe3, 0x04, 0x7d, + 0x3f, 0x6c, 0x60, 0x0f, 0xfb, 0x0e, 0x61, 0xc8, 0x84, 0x45, 0xdc, 0x6e, 0x53, 0xc2, 0x98, 0x2a, + 0x39, 0xd1, 0xd0, 0xfa, 0xfb, 0x3c, 0x6c, 0x4c, 0x53, 0xd1, 0x25, 0xab, 0x13, 0x4b, 0x76, 0xb2, + 0x80, 0x5e, 0xae, 0x49, 0xa2, 0x35, 0xde, 0x08, 0xd4, 0x54, 0xb3, 0x52, 0x7b, 0x10, 0xb8, 0x7e, + 0xe3, 0x0e, 0xf7, 0xe1, 0x9f, 0xfe, 0x51, 0xd9, 0x9a, 0x61, 0x71, 0x5c, 0x81, 0xc5, 0x32, 0xe1, + 0xc1, 0x58, 0xf6, 0x9a, 0xff, 0xf6, 0x4d, 0xc5, 0x53, 0x5b, 0x27, 0x96, 0xda, 0x16, 0x4e, 0x61, + 0x55, 0x11, 0xb8, 0x55, 0x57, 0x9d, 0x9a, 0x72, 0x6f, 0xd4, 0x3d, 0xa4, 0x6f, 0xc8, 0x57, 0x39, + 0xb8, 0x32, 0x45, 0x43, 0xef, 0xc7, 0x53, 0x58, 0x89, 0x5c, 0xd6, 0x3c, 0xc4, 0x5e, 0x9f, 0x48, + 0x80, 0x13, 0x1d, 0x5f, 0x7e, 0xae, 0x8a, 0x11, 0xca, 0xa7, 0x1c, 0x84, 0x07, 0xf6, 0xc8, 0x3d, + 0x0a, 0x78, 0x3e, 0x13, 0xf0, 0xea, 0x08, 0x47, 0x42, 0x3f, 0x85, 0x95, 0xc8, 0x1d, 0x0a, 0x78, + 0x21, 0x1b, 0xe3, 0x08, 0x45, 0xc2, 0x3e, 0x86, 0x65, 0x55, 0x9e, 0x3d, 0xb7, 0xeb, 0x86, 0xaa, + 0x63, 0x39, 0x71, 0x33, 0x24, 0x31, 0x1e, 0x71, 0x08, 0xe4, 0xc0, 0x05, 0x99, 0x98, 0x45, 0xcb, + 0xdf, 0x0c, 0xf7, 0x29, 0x61, 0xfb, 0x81, 0xd7, 0x56, 0xdd, 0xc9, 0x49, 0xb1, 0xd7, 0x63, 0x60, + 0x9f, 0x44, 0x58, 0xe8, 0x0b, 0x38, 0xcf, 0x7a, 0x41, 0xd8, 0x9c, 0xd8, 0xc5, 0x5c, 0x26, 0x9f, + 0x9c, 0xe3, 0x50, 0x4f, 0xc6, 0x76, 0xb2, 0x05, 0x17, 0x04, 0x7e, 0x62, 0x3b, 0x17, 0x33, 0x59, + 0x10, 0x64, 0x1f, 0x4c, 0x6c, 0x69, 0xb4, 0x86, 0x89, 0x7d, 0xcd, 0x67, 0x5f, 0x43, 0x23, 0xbe, + 0xb7, 0xd6, 0x65, 0xb8, 0x24, 0x62, 0xe0, 0x51, 0xcc, 0x81, 0x98, 0x76, 0x48, 0xc8, 0xac, 0xef, + 0x42, 0x25, 0x65, 0x4a, 0x87, 0x88, 0x09, 0x8b, 0xa1, 0xfc, 0x24, 0x32, 0xd6, 0x92, 0x1d, 0x0d, + 0xad, 0x55, 0x28, 0x0a, 0xe5, 0x06, 0x6e, 0xef, 0x92, 0x56, 0xc8, 0x2c, 0x5b, 0xdd, 0x7c, 0xa2, + 0x0f, 0xb1, 0x9b, 0xcb, 0x18, 0x06, 0xcf, 0x0f, 0x89, 0x6b, 0x83, 0x52, 0x52, 0xb7, 0x05, 0x6d, + 0xa4, 0x01, 0x6b, 0xea, 0x0a, 0x30, 0xd0, 0xd5, 0x27, 0x35, 0xde, 0x47, 0xf7, 0x88, 0xf9, 0xf8, + 0x3d, 0xe2, 0x3f, 0x06, 0x98, 0x93, 0x20, 0x9a, 0x1b, 0x81, 0x45, 0x59, 0x94, 0xd9, 0x69, 0x64, + 0xe4, 0x08, 0x1b, 0x39, 0x90, 0x0b, 0xa5, 0x95, 0x53, 0x48, 0xc6, 0x0a, 0xda, 0xfa, 0x21, 0xac, + 0x44, 0xeb, 0x54, 0x7d, 0xc0, 0x49, 0x5d, 0xf5, 0x25, 0x5c, 0x1c, 0x47, 0xd0, 0x7e, 0x1a, 0x2d, + 0xc0, 0x38, 0xbd, 0x05, 0xfc, 0xda, 0x80, 0x65, 0x61, 0xff, 0xa1, 0xcf, 0x7a, 0xc4, 0x09, 0x79, + 0x6d, 0x96, 0xf7, 0x39, 0x45, 0x5f, 0x8d, 0xf8, 0xc5, 0x4e, 0x97, 0x1c, 0xbe, 0x00, 0x23, 0xd6, + 0x1d, 0x97, 0xc7, 0x6a, 0xdf, 0x82, 0x98, 0x8d, 0x97, 0xab, 0x8b, 0x90, 0x6b, 0xf3, 0x8b, 0x13, + 0x15, 0x59, 0xce, 0xb0, 0xd5, 0x08, 0xad, 0xc1, 0x82, 0x17, 0x1e, 0x8a, 0xf4, 0x64, 0xd8, 0xfc, + 0xa7, 0xae, 0x37, 0x8a, 0x8d, 0x2a, 0x22, 0xc7, 0xd4, 0x9b, 0x81, 0x6a, 0x19, 0x94, 0x82, 0x76, + 0xde, 0x2e, 0xa8, 0x1b, 0x0f, 0xd1, 0x37, 0xe7, 0x6a, 0x32, 0x04, 0xc6, 0xcd, 0xa8, 0x48, 0x18, + 0x29, 0xf2, 0x45, 0x3f, 0xc7, 0xae, 0xd7, 0xa7, 0x44, 0x9e, 0xa2, 0x25, 0x5b, 0x8f, 0x2d, 0xac, + 0x0a, 0xdd, 0x38, 0x86, 0x26, 0xd0, 0xd0, 0xfe, 0xa2, 0xea, 0x39, 0x63, 0x56, 0xfb, 0x5a, 0xcf, + 0xfa, 0xb3, 0x01, 0x2b, 0xb3, 0x7a, 0x02, 0xdd, 0x83, 0x3c, 0xf6, 0xb1, 0x37, 0x64, 0x2e, 0x13, + 0x1b, 0x54, 0xd8, 0x29, 0x25, 0x0d, 0xda, 0x2e, 0x3b, 0x78, 0xe8, 0x3f, 0x0f, 0x6c, 0x2d, 0x8b, + 0x3e, 0x84, 0x7c, 0x2f, 0x60, 0x2e, 0xcf, 0x44, 0x62, 0xeb, 0x0a, 0x3b, 0x57, 0x93, 0x7a, 0xbb, + 0xc4, 0xd1, 0xad, 0x95, 0x16, 0x47, 0x08, 0xce, 0xb8, 0xfe, 0xf3, 0x40, 0xd6, 0x2e, 0x5b, 0xfc, + 0xb6, 0xbe, 0x80, 0x7c, 0x64, 0x84, 0xbb, 0x2f, 0x4a, 0x8c, 0x82, 0xad, 0x61, 0xeb, 0x31, 0xaa, + 0x42, 0x21, 0x96, 0x03, 0xd5, 0x91, 0x8a, 0x7f, 0xe2, 0xf1, 0xf2, 0xa9, 0xae, 0xb7, 0x86, 0x2d, + 0x07, 0xd6, 0x7f, 0x0d, 0x28, 0xc4, 0xd8, 0xa0, 0x17, 0x63, 0x67, 0x4f, 0xee, 0xf4, 0xc6, 0xd4, + 0x48, 0xd9, 0x25, 0x8e, 0x08, 0x96, 0x0f, 0x54, 0xb0, 0xbc, 0x3f, 0x5b, 0x82, 0x4f, 0x76, 0x5f, + 0xdd, 0xb1, 0x50, 0x38, 0x25, 0x83, 0xda, 0xc4, 0xce, 0xab, 0x22, 0x9c, 0x15, 0x27, 0x0d, 0xf5, + 0x20, 0x27, 0x1f, 0xc0, 0xd0, 0x94, 0x2d, 0x8a, 0xbd, 0xa8, 0x95, 0x36, 0x8f, 0x9d, 0x8e, 0xce, + 0xa8, 0x55, 0xfd, 0xea, 0x2f, 0xff, 0xfe, 0xdd, 0x7c, 0x09, 0x99, 0xf5, 0xc4, 0xb3, 0x9f, 0x7c, + 0x5a, 0x43, 0x7f, 0x30, 0x60, 0x2d, 0xf1, 0xac, 0x76, 0x2b, 0x05, 0x7d, 0x52, 0xb0, 0x54, 0x9f, + 0x51, 0x50, 0x13, 0x7a, 0x5f, 0x10, 0xda, 0x44, 0xd7, 0x93, 0x84, 0xa8, 0xd6, 0x69, 0xca, 0xd4, + 0x85, 0x7e, 0x63, 0x40, 0x71, 0xfc, 0x79, 0xed, 0x46, 0x8a, 0xbd, 0x31, 0xa9, 0xd2, 0x77, 0x66, + 0x91, 0xd2, 0x94, 0xb6, 0x04, 0x25, 0x0b, 0x55, 0x93, 0x94, 0x98, 0x54, 0x68, 0x62, 0x69, 0x9d, + 0xf3, 0x19, 0x7f, 0x64, 0x4b, 0xe3, 0x33, 0x26, 0x95, 0xca, 0x67, 0xea, 0x1b, 0xdc, 0x71, 0x7c, + 0xba, 0x42, 0xa1, 0xc9, 0x94, 0xf5, 0xdf, 0x1b, 0xb0, 0x3a, 0x79, 0x93, 0xba, 0x99, 0x62, 0x6b, + 0x42, 0xae, 0x54, 0x9b, 0x4d, 0x4e, 0xb3, 0xba, 0x2d, 0x58, 0xdd, 0x40, 0x56, 0x92, 0x15, 0x96, + 0x2a, 0xcd, 0x56, 0xc4, 0xe1, 0x95, 0x01, 0x2b, 0x13, 0xf7, 0x89, 0xcd, 0xe3, 0xcd, 0x45, 0x9e, + 0xda, 0x9e, 0x49, 0x4c, 0x93, 0x7a, 0x4f, 0x90, 0xba, 0x8e, 0xae, 0xa5, 0x93, 0x8a, 0x7c, 0xf5, + 0x47, 0x03, 0x50, 0xb2, 0x25, 0x43, 0xef, 0xa5, 0x18, 0x4c, 0x8a, 0x96, 0xee, 0xce, 0x2c, 0xaa, + 0xf9, 0x6d, 0x0b, 0x7e, 0xb7, 0xd0, 0x66, 0x92, 0xdf, 0x58, 0x1f, 0xaf, 0xc8, 0x0c, 0x21, 0x1f, + 0xf5, 0x79, 0xa8, 0x92, 0x62, 0x2d, 0x12, 0x28, 0xdd, 0x7a, 0x87, 0x80, 0x26, 0x71, 0x5d, 0x90, + 0xb8, 0x8a, 0xae, 0x24, 0x49, 0xb4, 0x70, 0xbb, 0xd9, 0x16, 0xe6, 0x7e, 0x65, 0x40, 0x21, 0xde, + 0x0f, 0x5a, 0xa9, 0x47, 0x56, 0xcb, 0x94, 0x6e, 0xbf, 0x5b, 0x46, 0x93, 0xb8, 0x29, 0x48, 0x54, + 0x51, 0x79, 0xda, 0xa1, 0x1e, 0xe8, 0xe7, 0x14, 0xf4, 0x25, 0x2c, 0x8d, 0x3a, 0xad, 0x6a, 0xba, + 0x01, 0x29, 0x51, 0xda, 0x7a, 0x97, 0x84, 0x26, 0x70, 0x43, 0x10, 0x28, 0xa3, 0x8d, 0xe9, 0x04, + 0x64, 0x2e, 0x46, 0x21, 0x2c, 0x46, 0x6d, 0x52, 0x39, 0x05, 0x5a, 0xcd, 0x97, 0x6e, 0x1e, 0x3f, + 0xaf, 0x0d, 0x5f, 0x13, 0x86, 0xaf, 0xa0, 0xcb, 0x49, 0xc3, 0xae, 0x32, 0xf5, 0x2a, 0xd9, 0x05, + 0x6c, 0x1e, 0x8f, 0xae, 0xc4, 0x52, 0xe3, 0x65, 0x7a, 0xcb, 0x72, 0x5c, 0xbc, 0x28, 0x2e, 0xdb, + 0x2a, 0x6e, 0x1a, 0x1f, 0xbf, 0xfe, 0x57, 0x79, 0xee, 0xf5, 0x9b, 0xb2, 0xf1, 0xf5, 0x9b, 0xb2, + 0xf1, 0xcf, 0x37, 0x65, 0xe3, 0xb7, 0x6f, 0xcb, 0x73, 0x5f, 0xbf, 0x2d, 0xcf, 0xfd, 0xf5, 0x6d, + 0x79, 0xee, 0xb3, 0x3b, 0xb1, 0x42, 0xc7, 0xa1, 0xb6, 0x7d, 0x12, 0xbe, 0x0c, 0xe8, 0x81, 0xc4, + 0x3d, 0xbc, 0x57, 0x1f, 0x8c, 0xc0, 0x45, 0xd9, 0x6b, 0xe5, 0xc4, 0xff, 0x89, 0x3e, 0xf8, 0x7f, + 0x00, 0x00, 0x00, 0xff, 0xff, 0xa5, 0x99, 0x5f, 0x64, 0xee, 0x1a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2897,6 +2900,15 @@ func (m *QueryInspectResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.Failures) > 0 { + for iNdEx := len(m.Failures) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Failures[iNdEx]) + copy(dAtA[i:], m.Failures[iNdEx]) + i = encodeVarintQuery(dAtA, i, uint64(len(m.Failures[iNdEx]))) + i-- + dAtA[i] = 0x12 + } + } if len(m.Borrowers) > 0 { for iNdEx := len(m.Borrowers) - 1; iNdEx >= 0; iNdEx-- { { @@ -3508,6 +3520,12 @@ func (m *QueryInspectResponse) Size() (n int) { n += 1 + l + sovQuery(uint64(l)) } } + if len(m.Failures) > 0 { + for _, s := range m.Failures { + l = len(s) + n += 1 + l + sovQuery(uint64(l)) + } + } return n } @@ -6463,6 +6481,38 @@ func (m *QueryInspectResponse) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Failures", 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.Failures = append(m.Failures, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:])