mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
Support return pending index rows when describe index (#24588)
Signed-off-by: cai.zhang <cai.zhang@zilliz.com>
This commit is contained in:
parent
b0ce4cff83
commit
93ea9c4925
2
go.mod
2
go.mod
@ -20,7 +20,7 @@ require (
|
||||
github.com/golang/protobuf v1.5.3
|
||||
github.com/klauspost/compress v1.14.4
|
||||
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
|
||||
github.com/milvus-io/milvus-proto/go-api v0.0.0-20230529034923-4579ee9d5723
|
||||
github.com/milvus-io/milvus-proto/go-api v0.0.0-20230531124827-410c849303a9
|
||||
github.com/milvus-io/milvus/pkg v0.0.0-00010101000000-000000000000
|
||||
github.com/minio/minio-go/v7 v7.0.17
|
||||
github.com/panjf2000/ants/v2 v2.7.2
|
||||
|
||||
2
go.sum
2
go.sum
@ -581,6 +581,8 @@ github.com/milvus-io/gorocksdb v0.0.0-20220624081344-8c5f4212846b h1:TfeY0NxYxZz
|
||||
github.com/milvus-io/gorocksdb v0.0.0-20220624081344-8c5f4212846b/go.mod h1:iwW+9cWfIzzDseEBCCeDSN5SD16Tidvy8cwQ7ZY8Qj4=
|
||||
github.com/milvus-io/milvus-proto/go-api v0.0.0-20230529034923-4579ee9d5723 h1:VWwQdHN1JuM/Q+9QK1bOyTpEqPHTdAKw5qOK0Lgua/c=
|
||||
github.com/milvus-io/milvus-proto/go-api v0.0.0-20230529034923-4579ee9d5723/go.mod h1:148qnlmZ0Fdm1Fq+Mj/OW2uDoEP25g3mjh0vMGtkgmk=
|
||||
github.com/milvus-io/milvus-proto/go-api v0.0.0-20230531124827-410c849303a9 h1:l4UDSKK29zXAg5+oqa4eAZaAfRHsyFsij3QPxu1tqvk=
|
||||
github.com/milvus-io/milvus-proto/go-api v0.0.0-20230531124827-410c849303a9/go.mod h1:148qnlmZ0Fdm1Fq+Mj/OW2uDoEP25g3mjh0vMGtkgmk=
|
||||
github.com/milvus-io/pulsar-client-go v0.6.10 h1:eqpJjU+/QX0iIhEo3nhOqMNXL+TyInAs1IAHZCrCM/A=
|
||||
github.com/milvus-io/pulsar-client-go v0.6.10/go.mod h1:lQqCkgwDF8YFYjKA+zOheTk1tev2B+bKj5j7+nm8M1w=
|
||||
github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 h1:AMFGa4R4MiIpspGNG7Z948v4n35fFGB3RR3G/ry4FWs=
|
||||
|
||||
@ -31,6 +31,7 @@ import (
|
||||
"github.com/milvus-io/milvus/pkg/util/merr"
|
||||
"github.com/milvus-io/milvus/pkg/util/metautil"
|
||||
"github.com/milvus-io/milvus/pkg/util/paramtable"
|
||||
"github.com/milvus-io/milvus/pkg/util/typeutil"
|
||||
)
|
||||
|
||||
// serverID return the session serverID
|
||||
@ -324,6 +325,53 @@ func (s *Server) GetSegmentIndexState(ctx context.Context, req *indexpb.GetSegme
|
||||
return ret, nil
|
||||
}
|
||||
|
||||
func (s *Server) countIndexedRows(indexInfo *indexpb.IndexInfo, segments []*SegmentInfo) int64 {
|
||||
unIndexed, indexed := typeutil.NewSet[int64](), typeutil.NewSet[int64]()
|
||||
for _, seg := range segments {
|
||||
segIdx, ok := seg.segmentIndexes[indexInfo.IndexID]
|
||||
if !ok {
|
||||
unIndexed.Insert(seg.GetID())
|
||||
continue
|
||||
}
|
||||
switch segIdx.IndexState {
|
||||
case commonpb.IndexState_Finished:
|
||||
indexed.Insert(seg.GetID())
|
||||
default:
|
||||
unIndexed.Insert(seg.GetID())
|
||||
}
|
||||
}
|
||||
retrieveContinue := len(unIndexed) != 0
|
||||
for retrieveContinue {
|
||||
for segID := range unIndexed {
|
||||
unIndexed.Remove(segID)
|
||||
segment := s.meta.GetSegment(segID)
|
||||
if segment == nil || len(segment.CompactionFrom) == 0 {
|
||||
continue
|
||||
}
|
||||
for _, fromID := range segment.CompactionFrom {
|
||||
fromSeg := s.meta.GetSegment(fromID)
|
||||
if fromSeg == nil {
|
||||
continue
|
||||
}
|
||||
if segIndex, ok := fromSeg.segmentIndexes[indexInfo.IndexID]; ok && segIndex.IndexState == commonpb.IndexState_Finished {
|
||||
indexed.Insert(fromID)
|
||||
continue
|
||||
}
|
||||
unIndexed.Insert(fromID)
|
||||
}
|
||||
}
|
||||
retrieveContinue = len(unIndexed) != 0
|
||||
}
|
||||
indexedRows := int64(0)
|
||||
for segID := range indexed {
|
||||
segment := s.meta.GetSegment(segID)
|
||||
if segment != nil {
|
||||
indexedRows += segment.GetNumOfRows()
|
||||
}
|
||||
}
|
||||
return indexedRows
|
||||
}
|
||||
|
||||
// completeIndexInfo get the index row count and index task state
|
||||
// if realTime, calculate current statistics
|
||||
// if not realTime, which means get info of the prior `CreateIndex` action, skip segments created after index's create time
|
||||
@ -337,6 +385,7 @@ func (s *Server) completeIndexInfo(indexInfo *indexpb.IndexInfo, index *model.In
|
||||
failReason string
|
||||
totalRows = int64(0)
|
||||
indexedRows = int64(0)
|
||||
pendingIndexRows = int64(0)
|
||||
)
|
||||
|
||||
for _, seg := range segments {
|
||||
@ -347,8 +396,12 @@ func (s *Server) completeIndexInfo(indexInfo *indexpb.IndexInfo, index *model.In
|
||||
if seg.GetStartPosition().GetTimestamp() <= index.CreateTime {
|
||||
cntUnissued++
|
||||
}
|
||||
pendingIndexRows += seg.GetNumOfRows()
|
||||
continue
|
||||
}
|
||||
if segIdx.IndexState != commonpb.IndexState_Finished {
|
||||
pendingIndexRows += seg.GetNumOfRows()
|
||||
}
|
||||
|
||||
// if realTime, calculate current statistics
|
||||
// if not realTime, skip segments created after index create
|
||||
@ -374,8 +427,13 @@ func (s *Server) completeIndexInfo(indexInfo *indexpb.IndexInfo, index *model.In
|
||||
}
|
||||
}
|
||||
|
||||
indexInfo.TotalRows = totalRows
|
||||
if realTime {
|
||||
indexInfo.IndexedRows = indexedRows
|
||||
} else {
|
||||
indexInfo.IndexedRows = s.countIndexedRows(indexInfo, segments)
|
||||
}
|
||||
indexInfo.TotalRows = totalRows
|
||||
indexInfo.PendingIndexRows = pendingIndexRows
|
||||
switch {
|
||||
case cntFailed > 0:
|
||||
indexInfo.State = commonpb.IndexState_Failed
|
||||
@ -390,6 +448,7 @@ func (s *Server) completeIndexInfo(indexInfo *indexpb.IndexInfo, index *model.In
|
||||
|
||||
log.Info("completeIndexInfo success", zap.Int64("collID", index.CollectionID), zap.Int64("indexID", index.IndexID),
|
||||
zap.Int64("totalRows", indexInfo.TotalRows), zap.Int64("indexRows", indexInfo.IndexedRows),
|
||||
zap.Int64("pendingIndexRows", indexInfo.PendingIndexRows),
|
||||
zap.String("state", indexInfo.State.String()), zap.String("failReason", indexInfo.IndexStateFailReason))
|
||||
}
|
||||
|
||||
@ -434,8 +493,11 @@ func (s *Server) GetIndexBuildProgress(ctx context.Context, req *indexpb.GetInde
|
||||
}, nil
|
||||
}
|
||||
indexInfo := &indexpb.IndexInfo{
|
||||
CollectionID: req.CollectionID,
|
||||
IndexID: indexes[0].IndexID,
|
||||
IndexedRows: 0,
|
||||
TotalRows: 0,
|
||||
PendingIndexRows: 0,
|
||||
State: 0,
|
||||
}
|
||||
s.completeIndexInfo(indexInfo, indexes[0], s.meta.SelectSegments(func(info *SegmentInfo) bool {
|
||||
@ -449,6 +511,7 @@ func (s *Server) GetIndexBuildProgress(ctx context.Context, req *indexpb.GetInde
|
||||
},
|
||||
IndexedRows: indexInfo.IndexedRows,
|
||||
TotalRows: indexInfo.TotalRows,
|
||||
PendingIndexRows: indexInfo.PendingIndexRows,
|
||||
}, nil
|
||||
}
|
||||
|
||||
|
||||
@ -790,7 +790,7 @@ func TestServer_DescribeIndex(t *testing.T) {
|
||||
segments: &SegmentsInfo{map[UniqueID]*SegmentInfo{
|
||||
invalidSegID: {
|
||||
SegmentInfo: &datapb.SegmentInfo{
|
||||
ID: segID,
|
||||
ID: invalidSegID,
|
||||
CollectionID: collID,
|
||||
PartitionID: partID,
|
||||
NumOfRows: 10000,
|
||||
@ -815,6 +815,8 @@ func TestServer_DescribeIndex(t *testing.T) {
|
||||
StartPosition: &msgpb.MsgPosition{
|
||||
Timestamp: createTS,
|
||||
},
|
||||
CreatedByCompaction: true,
|
||||
CompactionFrom: []int64{segID - 1},
|
||||
},
|
||||
segmentIndexes: map[UniqueID]*model.SegmentIndex{
|
||||
indexID: {
|
||||
@ -904,6 +906,83 @@ func TestServer_DescribeIndex(t *testing.T) {
|
||||
},
|
||||
},
|
||||
},
|
||||
segID - 1: {
|
||||
SegmentInfo: &datapb.SegmentInfo{
|
||||
ID: segID,
|
||||
CollectionID: collID,
|
||||
PartitionID: partID,
|
||||
NumOfRows: 10000,
|
||||
State: commonpb.SegmentState_Dropped,
|
||||
MaxRowNum: 65536,
|
||||
LastExpireTime: createTS,
|
||||
StartPosition: &msgpb.MsgPosition{
|
||||
Timestamp: createTS,
|
||||
},
|
||||
},
|
||||
segmentIndexes: map[UniqueID]*model.SegmentIndex{
|
||||
indexID: {
|
||||
SegmentID: segID - 1,
|
||||
CollectionID: collID,
|
||||
PartitionID: partID,
|
||||
NumRows: 10000,
|
||||
IndexID: indexID,
|
||||
BuildID: buildID,
|
||||
NodeID: 0,
|
||||
IndexVersion: 1,
|
||||
IndexState: commonpb.IndexState_Finished,
|
||||
CreateTime: createTS,
|
||||
},
|
||||
indexID + 1: {
|
||||
SegmentID: segID,
|
||||
CollectionID: collID,
|
||||
PartitionID: partID,
|
||||
NumRows: 10000,
|
||||
IndexID: indexID + 1,
|
||||
BuildID: buildID + 1,
|
||||
NodeID: 0,
|
||||
IndexVersion: 1,
|
||||
IndexState: commonpb.IndexState_Finished,
|
||||
CreateTime: createTS,
|
||||
},
|
||||
indexID + 3: {
|
||||
SegmentID: segID,
|
||||
CollectionID: collID,
|
||||
PartitionID: partID,
|
||||
NumRows: 10000,
|
||||
IndexID: indexID + 3,
|
||||
BuildID: buildID + 3,
|
||||
NodeID: 0,
|
||||
IndexVersion: 1,
|
||||
IndexState: commonpb.IndexState_InProgress,
|
||||
CreateTime: createTS,
|
||||
},
|
||||
indexID + 4: {
|
||||
SegmentID: segID,
|
||||
CollectionID: collID,
|
||||
PartitionID: partID,
|
||||
NumRows: 10000,
|
||||
IndexID: indexID + 4,
|
||||
BuildID: buildID + 4,
|
||||
NodeID: 0,
|
||||
IndexVersion: 1,
|
||||
IndexState: commonpb.IndexState_Failed,
|
||||
FailReason: "mock failed",
|
||||
CreateTime: createTS,
|
||||
},
|
||||
indexID + 5: {
|
||||
SegmentID: segID,
|
||||
CollectionID: collID,
|
||||
PartitionID: partID,
|
||||
NumRows: 10000,
|
||||
IndexID: indexID + 5,
|
||||
BuildID: buildID + 5,
|
||||
NodeID: 0,
|
||||
IndexVersion: 1,
|
||||
IndexState: commonpb.IndexState_Finished,
|
||||
CreateTime: createTS,
|
||||
},
|
||||
},
|
||||
},
|
||||
}},
|
||||
},
|
||||
allocator: newMockAllocator(),
|
||||
|
||||
@ -58,6 +58,7 @@ message IndexInfo {
|
||||
string index_state_fail_reason = 10;
|
||||
bool is_auto_index = 11;
|
||||
repeated common.KeyValuePair user_index_params = 12;
|
||||
int64 pending_index_rows = 13;
|
||||
}
|
||||
|
||||
message FieldIndex {
|
||||
@ -191,6 +192,7 @@ message GetIndexBuildProgressResponse {
|
||||
common.Status status = 1;
|
||||
int64 indexed_rows = 2;
|
||||
int64 total_rows = 3;
|
||||
int64 pending_index_rows = 4;
|
||||
}
|
||||
|
||||
message StorageConfig {
|
||||
|
||||
@ -43,6 +43,7 @@ type IndexInfo struct {
|
||||
IndexStateFailReason string `protobuf:"bytes,10,opt,name=index_state_fail_reason,json=indexStateFailReason,proto3" json:"index_state_fail_reason,omitempty"`
|
||||
IsAutoIndex bool `protobuf:"varint,11,opt,name=is_auto_index,json=isAutoIndex,proto3" json:"is_auto_index,omitempty"`
|
||||
UserIndexParams []*commonpb.KeyValuePair `protobuf:"bytes,12,rep,name=user_index_params,json=userIndexParams,proto3" json:"user_index_params,omitempty"`
|
||||
PendingIndexRows int64 `protobuf:"varint,13,opt,name=pending_index_rows,json=pendingIndexRows,proto3" json:"pending_index_rows,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
@ -157,6 +158,13 @@ func (m *IndexInfo) GetUserIndexParams() []*commonpb.KeyValuePair {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *IndexInfo) GetPendingIndexRows() int64 {
|
||||
if m != nil {
|
||||
return m.PendingIndexRows
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
type FieldIndex struct {
|
||||
IndexInfo *IndexInfo `protobuf:"bytes,1,opt,name=index_info,json=indexInfo,proto3" json:"index_info,omitempty"`
|
||||
Deleted bool `protobuf:"varint,2,opt,name=deleted,proto3" json:"deleted,omitempty"`
|
||||
@ -1303,6 +1311,7 @@ type GetIndexBuildProgressResponse struct {
|
||||
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
||||
IndexedRows int64 `protobuf:"varint,2,opt,name=indexed_rows,json=indexedRows,proto3" json:"indexed_rows,omitempty"`
|
||||
TotalRows int64 `protobuf:"varint,3,opt,name=total_rows,json=totalRows,proto3" json:"total_rows,omitempty"`
|
||||
PendingIndexRows int64 `protobuf:"varint,4,opt,name=pending_index_rows,json=pendingIndexRows,proto3" json:"pending_index_rows,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
@ -1354,6 +1363,13 @@ func (m *GetIndexBuildProgressResponse) GetTotalRows() int64 {
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *GetIndexBuildProgressResponse) GetPendingIndexRows() int64 {
|
||||
if m != nil {
|
||||
return m.PendingIndexRows
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
type StorageConfig struct {
|
||||
Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
|
||||
AccessKeyID string `protobuf:"bytes,2,opt,name=access_keyID,json=accessKeyID,proto3" json:"access_keyID,omitempty"`
|
||||
@ -2125,146 +2141,148 @@ func init() {
|
||||
func init() { proto.RegisterFile("index_coord.proto", fileDescriptor_f9e019eb3fda53c2) }
|
||||
|
||||
var fileDescriptor_f9e019eb3fda53c2 = []byte{
|
||||
// 2220 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0x4f, 0x8f, 0x1b, 0x49,
|
||||
0x15, 0x4f, 0xbb, 0x3d, 0x33, 0xee, 0xd7, 0xf6, 0xfc, 0xa9, 0xcd, 0x82, 0xe3, 0x24, 0x64, 0xd2,
|
||||
0xd9, 0x24, 0x06, 0x29, 0x93, 0x30, 0xcb, 0xa2, 0x05, 0x01, 0xd2, 0x64, 0x66, 0x93, 0x38, 0xd9,
|
||||
0x44, 0x43, 0x3b, 0x5a, 0x89, 0x15, 0xc2, 0xb4, 0xdd, 0xe5, 0x99, 0xda, 0x69, 0x77, 0x39, 0x5d,
|
||||
0xd5, 0x49, 0x26, 0x48, 0x08, 0x0e, 0x7b, 0x00, 0xad, 0x84, 0x40, 0x08, 0xbe, 0x00, 0xa7, 0xe5,
|
||||
0xc0, 0x9d, 0x0b, 0x5f, 0x80, 0x13, 0x1f, 0x81, 0x2f, 0xc1, 0x15, 0xd5, 0x9f, 0x6e, 0x77, 0xb7,
|
||||
0xdb, 0x63, 0x67, 0x66, 0x10, 0x12, 0xdc, 0x5c, 0xaf, 0x5e, 0xfd, 0xe9, 0xf7, 0x7e, 0xef, 0xfd,
|
||||
0xde, 0x2b, 0xc3, 0x06, 0x09, 0x7d, 0xfc, 0xba, 0x37, 0xa0, 0x34, 0xf2, 0xb7, 0xc6, 0x11, 0xe5,
|
||||
0x14, 0xa1, 0x11, 0x09, 0x5e, 0xc6, 0x4c, 0x8d, 0xb6, 0xe4, 0x7c, 0xab, 0x3e, 0xa0, 0xa3, 0x11,
|
||||
0x0d, 0x95, 0xac, 0xb5, 0x4a, 0x42, 0x8e, 0xa3, 0xd0, 0x0b, 0xf4, 0xb8, 0x9e, 0x5d, 0xe1, 0xfc,
|
||||
0xa5, 0x0a, 0x56, 0x47, 0xac, 0xea, 0x84, 0x43, 0x8a, 0x1c, 0xa8, 0x0f, 0x68, 0x10, 0xe0, 0x01,
|
||||
0x27, 0x34, 0xec, 0xec, 0x35, 0x8d, 0x4d, 0xa3, 0x6d, 0xba, 0x39, 0x19, 0x6a, 0xc2, 0xca, 0x90,
|
||||
0xe0, 0xc0, 0xef, 0xec, 0x35, 0x2b, 0x72, 0x3a, 0x19, 0xa2, 0xab, 0x00, 0xea, 0x82, 0xa1, 0x37,
|
||||
0xc2, 0x4d, 0x73, 0xd3, 0x68, 0x5b, 0xae, 0x25, 0x25, 0xcf, 0xbc, 0x11, 0x16, 0x0b, 0xe5, 0xa0,
|
||||
0xb3, 0xd7, 0xac, 0xaa, 0x85, 0x7a, 0x88, 0xee, 0x83, 0xcd, 0x8f, 0xc7, 0xb8, 0x37, 0xf6, 0x22,
|
||||
0x6f, 0xc4, 0x9a, 0x4b, 0x9b, 0x66, 0xdb, 0xde, 0xbe, 0xbe, 0x95, 0xfb, 0x34, 0xfd, 0x4d, 0x4f,
|
||||
0xf0, 0xf1, 0x27, 0x5e, 0x10, 0xe3, 0x7d, 0x8f, 0x44, 0x2e, 0x88, 0x55, 0xfb, 0x72, 0x11, 0xda,
|
||||
0x83, 0xba, 0x3a, 0x5c, 0x6f, 0xb2, 0xbc, 0xe8, 0x26, 0xb6, 0x5c, 0xa6, 0x77, 0xb9, 0xae, 0x77,
|
||||
0xc1, 0x7e, 0x2f, 0xa2, 0xaf, 0x58, 0x73, 0x45, 0x5e, 0xd4, 0xd6, 0x32, 0x97, 0xbe, 0x62, 0xe2,
|
||||
0x2b, 0x39, 0xe5, 0x5e, 0xa0, 0x14, 0x6a, 0x52, 0xc1, 0x92, 0x12, 0x39, 0xfd, 0x01, 0x2c, 0x31,
|
||||
0xee, 0x71, 0xdc, 0xb4, 0x36, 0x8d, 0xf6, 0xea, 0xf6, 0xb5, 0xd2, 0x0b, 0x48, 0x8b, 0x77, 0x85,
|
||||
0x9a, 0xab, 0xb4, 0xd1, 0x07, 0xf0, 0x55, 0x75, 0x7d, 0x39, 0xec, 0x0d, 0x3d, 0x12, 0xf4, 0x22,
|
||||
0xec, 0x31, 0x1a, 0x36, 0x41, 0x1a, 0xf2, 0x22, 0x49, 0xd7, 0x3c, 0xf0, 0x48, 0xe0, 0xca, 0x39,
|
||||
0xe4, 0x40, 0x83, 0xb0, 0x9e, 0x17, 0x73, 0xda, 0x93, 0xf3, 0x4d, 0x7b, 0xd3, 0x68, 0xd7, 0x5c,
|
||||
0x9b, 0xb0, 0x9d, 0x98, 0x53, 0x79, 0x0c, 0x7a, 0x0a, 0x1b, 0x31, 0xc3, 0x51, 0x2f, 0x67, 0x9e,
|
||||
0xfa, 0xa2, 0xe6, 0x59, 0x13, 0x6b, 0x3b, 0x13, 0x13, 0x39, 0x9f, 0x1b, 0x00, 0x0f, 0xa4, 0xc7,
|
||||
0xe5, 0xee, 0xdf, 0x4b, 0x9c, 0x4e, 0xc2, 0x21, 0x95, 0x80, 0xb1, 0xb7, 0xaf, 0x6e, 0x4d, 0xa3,
|
||||
0x72, 0x2b, 0x45, 0x99, 0xc6, 0x84, 0x04, 0x5c, 0x13, 0x56, 0x7c, 0x1c, 0x60, 0x8e, 0x7d, 0x09,
|
||||
0xa6, 0x9a, 0x9b, 0x0c, 0xd1, 0x35, 0xb0, 0x07, 0x11, 0x16, 0xb6, 0xe0, 0x44, 0xa3, 0xa9, 0xea,
|
||||
0x82, 0x12, 0x3d, 0x27, 0x23, 0xec, 0x7c, 0x5e, 0x85, 0x7a, 0x17, 0x1f, 0x8c, 0x70, 0xc8, 0xd5,
|
||||
0x4d, 0x16, 0x01, 0xef, 0x26, 0xd8, 0x63, 0x2f, 0xe2, 0x44, 0xab, 0x28, 0x00, 0x67, 0x45, 0xe8,
|
||||
0x0a, 0x58, 0x4c, 0xef, 0xba, 0x27, 0x4f, 0x35, 0xdd, 0x89, 0x00, 0x5d, 0x82, 0x5a, 0x18, 0x8f,
|
||||
0x94, 0xeb, 0x35, 0x88, 0xc3, 0x78, 0x24, 0x1d, 0x9f, 0x81, 0xf7, 0x52, 0x1e, 0xde, 0x4d, 0x58,
|
||||
0xe9, 0xc7, 0x44, 0x46, 0xcc, 0xb2, 0x9a, 0xd1, 0x43, 0xf4, 0x15, 0x58, 0x0e, 0xa9, 0x8f, 0x3b,
|
||||
0x7b, 0x1a, 0x68, 0x7a, 0x84, 0x6e, 0x40, 0x43, 0x19, 0xf5, 0x25, 0x8e, 0x18, 0xa1, 0xa1, 0x86,
|
||||
0x99, 0xc2, 0xe6, 0x27, 0x4a, 0x76, 0x5a, 0xa4, 0x5d, 0x03, 0x7b, 0x1a, 0x5d, 0x30, 0x9c, 0x60,
|
||||
0xea, 0x16, 0xac, 0xa9, 0xc3, 0x87, 0x24, 0xc0, 0xbd, 0x23, 0x7c, 0xcc, 0x9a, 0xf6, 0xa6, 0xd9,
|
||||
0xb6, 0x5c, 0x75, 0xa7, 0x07, 0x24, 0xc0, 0x4f, 0xf0, 0x31, 0xcb, 0xfa, 0xae, 0x7e, 0xa2, 0xef,
|
||||
0x1a, 0x45, 0xdf, 0xa1, 0x9b, 0xb0, 0xca, 0x70, 0x44, 0xbc, 0x80, 0xbc, 0xc1, 0x3d, 0x46, 0xde,
|
||||
0xe0, 0xe6, 0xaa, 0xd4, 0x69, 0xa4, 0xd2, 0x2e, 0x79, 0x83, 0x85, 0x19, 0x5e, 0x45, 0x84, 0xe3,
|
||||
0xde, 0xa1, 0x17, 0xfa, 0x74, 0x38, 0x6c, 0xae, 0xc9, 0x73, 0xea, 0x52, 0xf8, 0x48, 0xc9, 0x9c,
|
||||
0x3f, 0x1a, 0xf0, 0x8e, 0x8b, 0x0f, 0x08, 0xe3, 0x38, 0x7a, 0x46, 0x7d, 0xec, 0xe2, 0x17, 0x31,
|
||||
0x66, 0x1c, 0xdd, 0x83, 0x6a, 0xdf, 0x63, 0x58, 0x43, 0xf2, 0x4a, 0xa9, 0x75, 0x9e, 0xb2, 0x83,
|
||||
0xfb, 0x1e, 0xc3, 0xae, 0xd4, 0x44, 0xdf, 0x86, 0x15, 0xcf, 0xf7, 0x23, 0xcc, 0x98, 0x04, 0xc6,
|
||||
0xac, 0x45, 0x3b, 0x4a, 0xc7, 0x4d, 0x94, 0x33, 0x5e, 0x34, 0xb3, 0x5e, 0x74, 0x7e, 0x63, 0xc0,
|
||||
0xc5, 0xfc, 0xcd, 0xd8, 0x98, 0x86, 0x0c, 0xa3, 0xf7, 0x61, 0x59, 0xf8, 0x22, 0x66, 0xfa, 0x72,
|
||||
0x97, 0x4b, 0xcf, 0xe9, 0x4a, 0x15, 0x57, 0xab, 0x8a, 0x24, 0x49, 0x42, 0xc2, 0x93, 0x00, 0x56,
|
||||
0x37, 0xbc, 0x5e, 0x8c, 0x34, 0x9d, 0xea, 0x3b, 0x21, 0xe1, 0x2a, 0x5e, 0x5d, 0x20, 0xe9, 0x6f,
|
||||
0xe7, 0x47, 0x70, 0xf1, 0x21, 0xe6, 0x19, 0x4c, 0x68, 0x5b, 0x2d, 0x12, 0x3a, 0xf9, 0xec, 0x5e,
|
||||
0x29, 0x64, 0x77, 0xe7, 0x4f, 0x06, 0xbc, 0x5b, 0xd8, 0xfb, 0x2c, 0x5f, 0x9b, 0x82, 0xbb, 0x72,
|
||||
0x16, 0x70, 0x9b, 0x45, 0x70, 0x3b, 0xbf, 0x30, 0xe0, 0xf2, 0x43, 0xcc, 0xb3, 0x89, 0xe3, 0x9c,
|
||||
0x2d, 0x81, 0xbe, 0x06, 0x90, 0x26, 0x0c, 0xd6, 0x34, 0x37, 0xcd, 0xb6, 0xe9, 0x66, 0x24, 0xce,
|
||||
0xaf, 0x0c, 0xd8, 0x98, 0x3a, 0x3f, 0x9f, 0x77, 0x8c, 0x62, 0xde, 0xf9, 0x4f, 0x99, 0xe3, 0x77,
|
||||
0x06, 0x5c, 0x29, 0x37, 0xc7, 0x59, 0x9c, 0xf7, 0x7d, 0xb5, 0x08, 0x0b, 0x94, 0x0a, 0x9a, 0xb9,
|
||||
0x59, 0xc6, 0x07, 0xd3, 0x67, 0xea, 0x45, 0xce, 0x17, 0x26, 0xa0, 0x5d, 0x99, 0x2c, 0xe4, 0xe4,
|
||||
0xdb, 0xb8, 0xe6, 0xd4, 0xc5, 0x49, 0xa1, 0x04, 0xa9, 0x9e, 0x47, 0x09, 0xb2, 0x74, 0xaa, 0x12,
|
||||
0xe4, 0x0a, 0x58, 0x22, 0x6b, 0x32, 0xee, 0x8d, 0xc6, 0x92, 0x2f, 0xaa, 0xee, 0x44, 0x30, 0x4d,
|
||||
0xf8, 0x2b, 0x0b, 0x12, 0x7e, 0xed, 0xd4, 0x84, 0xff, 0x1a, 0xde, 0x49, 0x02, 0x5b, 0xd2, 0xf7,
|
||||
0x5b, 0xb8, 0x23, 0x1f, 0x0a, 0x95, 0x62, 0x28, 0xcc, 0x71, 0x8a, 0xf3, 0xaf, 0x0a, 0x6c, 0x74,
|
||||
0x12, 0xce, 0xd9, 0xf7, 0xf8, 0xa1, 0xac, 0x19, 0x4e, 0x8e, 0x94, 0xd9, 0x08, 0xc8, 0x10, 0xb4,
|
||||
0x39, 0x93, 0xa0, 0xab, 0x79, 0x82, 0xce, 0x5f, 0x70, 0xa9, 0x88, 0x9a, 0xf3, 0x29, 0x3a, 0xdb,
|
||||
0xb0, 0x9e, 0x21, 0xdc, 0xb1, 0xc7, 0x0f, 0x45, 0xe1, 0x29, 0x18, 0x77, 0x95, 0x64, 0xbf, 0x9e,
|
||||
0xa1, 0xdb, 0xb0, 0x96, 0x32, 0xa4, 0xaf, 0x88, 0xb3, 0x26, 0x11, 0x32, 0xa1, 0x53, 0x3f, 0x61,
|
||||
0xce, 0x7c, 0x01, 0x61, 0x95, 0x14, 0x10, 0xd9, 0x62, 0x06, 0x72, 0xc5, 0x8c, 0xf3, 0x57, 0x03,
|
||||
0xec, 0x34, 0x40, 0x17, 0x6c, 0x0c, 0x72, 0x7e, 0xa9, 0x14, 0xfd, 0x72, 0x1d, 0xea, 0x38, 0xf4,
|
||||
0xfa, 0x01, 0xd6, 0xb8, 0x35, 0x15, 0x6e, 0x95, 0x4c, 0xe1, 0xf6, 0x01, 0xd8, 0x93, 0x52, 0x32,
|
||||
0x89, 0xc1, 0x9b, 0x33, 0x6b, 0xc9, 0x2c, 0x28, 0x5c, 0x48, 0x6b, 0x4a, 0xe6, 0xfc, 0xba, 0x32,
|
||||
0xa1, 0x39, 0x85, 0xd8, 0xb3, 0x24, 0xb3, 0x1f, 0x43, 0x5d, 0x7f, 0x85, 0x2a, 0x71, 0x55, 0x4a,
|
||||
0xfb, 0x4e, 0xd9, 0xb5, 0xca, 0x0e, 0xdd, 0xca, 0x98, 0xf1, 0xa3, 0x90, 0x47, 0xc7, 0xae, 0xcd,
|
||||
0x26, 0x92, 0x56, 0x0f, 0xd6, 0x8b, 0x0a, 0x68, 0x1d, 0xcc, 0x23, 0x7c, 0xac, 0x6d, 0x2c, 0x7e,
|
||||
0x8a, 0xf4, 0xff, 0x52, 0x60, 0x47, 0xb3, 0xfe, 0xb5, 0x13, 0xf3, 0xe9, 0x90, 0xba, 0x4a, 0xfb,
|
||||
0xbb, 0x95, 0x0f, 0x0d, 0xe7, 0xf7, 0x06, 0xac, 0xef, 0x45, 0x74, 0xfc, 0xd6, 0xa9, 0xd4, 0x81,
|
||||
0x7a, 0xa6, 0x2e, 0x4e, 0xa2, 0x37, 0x27, 0x9b, 0x97, 0x54, 0x2f, 0x41, 0xcd, 0x8f, 0xe8, 0xb8,
|
||||
0xe7, 0x05, 0x81, 0x0c, 0x2c, 0x51, 0x22, 0x46, 0x74, 0xbc, 0x13, 0x04, 0xa2, 0x12, 0xd9, 0xc3,
|
||||
0x6c, 0x10, 0x91, 0xfe, 0xdb, 0x27, 0xf9, 0x39, 0x95, 0xc8, 0x17, 0x06, 0xbc, 0x5b, 0xd8, 0xfb,
|
||||
0x2c, 0xfe, 0xff, 0x41, 0x1e, 0x95, 0xca, 0xfd, 0x73, 0x3a, 0x9c, 0x2c, 0x1a, 0x3d, 0xc9, 0xb0,
|
||||
0x72, 0xee, 0xbe, 0xc8, 0x2a, 0xfb, 0x11, 0x3d, 0x90, 0xf5, 0xe3, 0xf9, 0x7d, 0xf1, 0x1f, 0x0c,
|
||||
0xb8, 0x3a, 0xe3, 0x8c, 0xb3, 0x7c, 0x79, 0xb1, 0x19, 0xae, 0xcc, 0x6b, 0x86, 0xcd, 0x42, 0x33,
|
||||
0xec, 0xfc, 0xb9, 0x02, 0x8d, 0x2e, 0xa7, 0x91, 0x77, 0x80, 0x77, 0x69, 0x38, 0x24, 0x07, 0x22,
|
||||
0xd5, 0x26, 0x35, 0xb6, 0x21, 0x3f, 0x23, 0xad, 0xa2, 0xaf, 0x43, 0xdd, 0x1b, 0x0c, 0x30, 0x63,
|
||||
0xa2, 0xe5, 0xd0, 0x19, 0xc4, 0x72, 0x6d, 0x25, 0x7b, 0x22, 0x44, 0xe8, 0x1b, 0xb0, 0xc1, 0xf0,
|
||||
0x20, 0xc2, 0xbc, 0x37, 0xd1, 0xd4, 0xa8, 0x5b, 0x53, 0x13, 0x3b, 0x89, 0xb6, 0x28, 0xca, 0x63,
|
||||
0x86, 0xbb, 0xdd, 0x8f, 0x35, 0xf2, 0xf4, 0x48, 0x94, 0x44, 0xfd, 0x78, 0x70, 0x84, 0x79, 0x36,
|
||||
0xa5, 0x83, 0x12, 0x49, 0xd0, 0x5e, 0x06, 0x2b, 0xa2, 0x94, 0xcb, 0x3c, 0x2c, 0xf9, 0xd7, 0x72,
|
||||
0x6b, 0x42, 0x20, 0x52, 0x8d, 0xde, 0xb5, 0xb3, 0xf3, 0x54, 0xf3, 0xae, 0x1e, 0x89, 0xbe, 0xb2,
|
||||
0xb3, 0xf3, 0xf4, 0xa3, 0xd0, 0x1f, 0x53, 0x12, 0x72, 0x99, 0x94, 0x2d, 0x37, 0x2b, 0x12, 0x9f,
|
||||
0xc7, 0x94, 0x25, 0x7a, 0xa2, 0x64, 0x90, 0x09, 0xd9, 0x72, 0x6d, 0x2d, 0x7b, 0x7e, 0x3c, 0xc6,
|
||||
0xce, 0x3f, 0x4d, 0x58, 0x57, 0x75, 0xcf, 0x63, 0xda, 0x4f, 0xe0, 0x71, 0x05, 0xac, 0x41, 0x10,
|
||||
0x8b, 0x16, 0x42, 0x63, 0xc3, 0x72, 0x27, 0x02, 0x61, 0x91, 0x2c, 0x75, 0x44, 0x78, 0x48, 0x5e,
|
||||
0x6b, 0xcb, 0xad, 0x4d, 0xb8, 0x43, 0x8a, 0xb3, 0x2c, 0x67, 0x4e, 0xb1, 0x9c, 0xef, 0x71, 0x4f,
|
||||
0x53, 0x4f, 0x55, 0x52, 0x8f, 0x25, 0x24, 0x8a, 0x75, 0xa6, 0xc8, 0x64, 0xa9, 0x84, 0x4c, 0x32,
|
||||
0xec, 0xba, 0x9c, 0x67, 0xd7, 0x3c, 0x78, 0x57, 0x8a, 0x49, 0xe2, 0x11, 0xac, 0x26, 0x86, 0x19,
|
||||
0x48, 0x8c, 0x48, 0xeb, 0x95, 0xb4, 0x36, 0x32, 0xc9, 0x65, 0xc1, 0xe4, 0x36, 0x58, 0x0e, 0x5b,
|
||||
0x45, 0x36, 0xb6, 0x4e, 0xc5, 0xc6, 0x85, 0x4a, 0x10, 0x4e, 0x53, 0x09, 0x66, 0x99, 0xd5, 0xce,
|
||||
0x33, 0xeb, 0xc7, 0xb0, 0xfe, 0xc3, 0x18, 0x47, 0xc7, 0x8f, 0x69, 0x9f, 0x2d, 0xe6, 0xe3, 0x16,
|
||||
0xd4, 0xb4, 0xa3, 0x92, 0x24, 0x9c, 0x8e, 0x9d, 0x7f, 0x18, 0xd0, 0x90, 0x61, 0xff, 0xdc, 0x63,
|
||||
0x47, 0xc9, 0x8b, 0x4a, 0xe2, 0x65, 0x23, 0xef, 0xe5, 0x53, 0xf6, 0x10, 0x25, 0xcf, 0x01, 0x66,
|
||||
0xd9, 0x73, 0x40, 0x49, 0x6d, 0x52, 0x2d, 0xad, 0x4d, 0x0a, 0x4d, 0xc9, 0xd2, 0x54, 0x53, 0xf2,
|
||||
0xa5, 0x01, 0x1b, 0x19, 0x1b, 0x9d, 0x25, 0x85, 0xe5, 0x2c, 0x5b, 0x29, 0x5a, 0xf6, 0x7e, 0x3e,
|
||||
0xb5, 0x9b, 0x65, 0xae, 0xce, 0xa4, 0xf6, 0xc4, 0xc6, 0xb9, 0xf4, 0xfe, 0x04, 0xd6, 0x04, 0xbd,
|
||||
0x9e, 0x8f, 0x3b, 0xff, 0x6e, 0xc0, 0xca, 0x63, 0xda, 0x97, 0x8e, 0xcc, 0x62, 0xc8, 0xc8, 0x3f,
|
||||
0x35, 0xad, 0x83, 0xe9, 0x93, 0x91, 0xce, 0xc7, 0xe2, 0xa7, 0x88, 0x31, 0xc6, 0xbd, 0x88, 0x4f,
|
||||
0x1e, 0xcb, 0x44, 0xf1, 0x25, 0x24, 0xf2, 0xbd, 0xe5, 0x12, 0xd4, 0x70, 0xe8, 0xab, 0x49, 0x5d,
|
||||
0xe1, 0xe2, 0xd0, 0x97, 0x53, 0xe7, 0xd3, 0xb4, 0x5c, 0x84, 0xa5, 0x31, 0x9d, 0x3c, 0x70, 0xa9,
|
||||
0x81, 0x73, 0x11, 0xd0, 0x43, 0xcc, 0x1f, 0xd3, 0xbe, 0xf0, 0x4a, 0x62, 0x1e, 0xe7, 0x6f, 0x15,
|
||||
0xd9, 0x50, 0x4c, 0xc4, 0x67, 0x71, 0xb0, 0x03, 0x0d, 0x45, 0x40, 0x9f, 0xd1, 0x7e, 0x2f, 0x8c,
|
||||
0x13, 0xa3, 0xd8, 0x52, 0xf8, 0x98, 0xf6, 0x9f, 0xc5, 0x23, 0x74, 0x07, 0xde, 0x21, 0x61, 0x6f,
|
||||
0xac, 0x39, 0x31, 0xd5, 0x54, 0x56, 0x5a, 0x27, 0x61, 0xc2, 0x96, 0x5a, 0xfd, 0x16, 0xac, 0xe1,
|
||||
0xf0, 0x45, 0x8c, 0x63, 0x9c, 0xaa, 0x2a, 0x9b, 0x35, 0xb4, 0x58, 0xeb, 0x09, 0xee, 0xf3, 0xd8,
|
||||
0x51, 0x8f, 0x05, 0x94, 0x33, 0x9d, 0x13, 0x2d, 0x21, 0xe9, 0x0a, 0x01, 0xfa, 0x10, 0x2c, 0xb1,
|
||||
0x5c, 0x41, 0x4b, 0x35, 0x06, 0x97, 0xcb, 0xa0, 0xa5, 0xfd, 0xed, 0xd6, 0x3e, 0x53, 0x3f, 0x98,
|
||||
0x08, 0x10, 0x5d, 0x2a, 0xfb, 0x84, 0x1d, 0x69, 0xa6, 0x01, 0x25, 0xda, 0x23, 0xec, 0xc8, 0xf9,
|
||||
0x09, 0x5c, 0xca, 0x3e, 0xb5, 0x10, 0xc6, 0xc9, 0xe0, 0x3c, 0xeb, 0x89, 0xdf, 0x1a, 0xd0, 0x2a,
|
||||
0x3b, 0xe0, 0xbf, 0x58, 0x46, 0x6d, 0xff, 0xd2, 0x06, 0x90, 0x33, 0xbb, 0x94, 0x46, 0x3e, 0x0a,
|
||||
0x24, 0xb4, 0x76, 0xe9, 0x68, 0x4c, 0x43, 0x1c, 0x72, 0x99, 0xb1, 0x18, 0xda, 0xca, 0xef, 0xa7,
|
||||
0x07, 0xd3, 0x8a, 0xda, 0x56, 0xad, 0xf7, 0x4a, 0xf5, 0x0b, 0xca, 0xce, 0x05, 0xf4, 0x42, 0x36,
|
||||
0x14, 0x13, 0x53, 0xec, 0x1e, 0x7a, 0x61, 0x88, 0x03, 0xb4, 0x3d, 0xe3, 0xf9, 0xad, 0x4c, 0x39,
|
||||
0x39, 0xf3, 0x46, 0xe9, 0x99, 0x5d, 0x1e, 0x91, 0xf0, 0x20, 0x31, 0xb1, 0x73, 0x01, 0x3d, 0x07,
|
||||
0x3b, 0xf3, 0x06, 0x82, 0x6e, 0x95, 0x59, 0x6a, 0xfa, 0x91, 0xa4, 0x75, 0x92, 0x2f, 0x9c, 0x0b,
|
||||
0x68, 0x08, 0x8d, 0xdc, 0x23, 0x1d, 0x6a, 0x9f, 0xd4, 0xc7, 0x64, 0x5f, 0xc6, 0x5a, 0x5f, 0x5f,
|
||||
0x40, 0x33, 0xbd, 0xfd, 0xcf, 0x94, 0xc1, 0xa6, 0x5e, 0xb9, 0xee, 0xce, 0xd8, 0x64, 0xd6, 0x7b,
|
||||
0x5c, 0xeb, 0xde, 0xe2, 0x0b, 0xd2, 0xc3, 0xfd, 0xc9, 0x47, 0xaa, 0x80, 0xba, 0x3d, 0xbf, 0x59,
|
||||
0x53, 0xa7, 0xb5, 0x17, 0xed, 0xea, 0x9c, 0x0b, 0x68, 0x1f, 0xac, 0xb4, 0xaf, 0x42, 0xef, 0x95,
|
||||
0x2d, 0x2c, 0xb6, 0x5d, 0x0b, 0x38, 0x27, 0xd7, 0xb7, 0x94, 0x3b, 0xa7, 0xac, 0x6d, 0x2a, 0x77,
|
||||
0x4e, 0x69, 0x13, 0xe4, 0x5c, 0x40, 0xb1, 0x8c, 0x9d, 0x42, 0x74, 0xa3, 0x3b, 0xf3, 0xfc, 0x9b,
|
||||
0x4b, 0x33, 0xad, 0xad, 0x45, 0xd5, 0xd3, 0x63, 0x7f, 0x3e, 0x79, 0x20, 0xce, 0x35, 0x29, 0xe8,
|
||||
0xde, 0x49, 0x5b, 0x95, 0xf5, 0x4c, 0xad, 0x6f, 0xbe, 0xc5, 0x8a, 0x0c, 0x26, 0x51, 0xf7, 0x90,
|
||||
0xbe, 0x52, 0xc5, 0x62, 0x1c, 0x79, 0x22, 0x17, 0x96, 0x1c, 0xae, 0x43, 0x78, 0x5a, 0x75, 0xe6,
|
||||
0xe1, 0x27, 0xac, 0x48, 0x0f, 0xef, 0x01, 0x3c, 0xc4, 0xfc, 0x29, 0xe6, 0x91, 0xb0, 0xf5, 0xad,
|
||||
0x59, 0x79, 0x4a, 0x2b, 0x24, 0x47, 0xdd, 0x9e, 0xab, 0x97, 0x1e, 0xd0, 0x07, 0x7b, 0xf7, 0x10,
|
||||
0x0f, 0x8e, 0x1e, 0x61, 0x2f, 0xe0, 0x87, 0xa8, 0x7c, 0x65, 0x46, 0x63, 0x06, 0xe4, 0xcb, 0x14,
|
||||
0x93, 0x33, 0xb6, 0xbf, 0x5c, 0xd6, 0x7f, 0x16, 0x3f, 0xa3, 0x3e, 0xfe, 0xdf, 0x4f, 0xc1, 0xfb,
|
||||
0x60, 0xa5, 0xed, 0x58, 0x79, 0x84, 0x17, 0xbb, 0xb5, 0x79, 0x11, 0xfe, 0x29, 0x58, 0x69, 0x61,
|
||||
0x5b, 0xbe, 0x63, 0xb1, 0x37, 0x68, 0xdd, 0x9c, 0xa3, 0x95, 0xde, 0xf6, 0x19, 0xd4, 0x92, 0x42,
|
||||
0x14, 0xdd, 0x98, 0x95, 0x8e, 0xb2, 0x3b, 0xcf, 0xb9, 0xeb, 0x4f, 0xc1, 0xce, 0x54, 0x69, 0xe5,
|
||||
0x04, 0x34, 0x5d, 0xdd, 0xb5, 0x6e, 0xcf, 0xd5, 0xfb, 0xff, 0x08, 0xc8, 0xfb, 0xdf, 0xfa, 0x74,
|
||||
0xfb, 0x80, 0xf0, 0xc3, 0xb8, 0x2f, 0x2c, 0x7b, 0x57, 0x69, 0xde, 0x21, 0x54, 0xff, 0xba, 0x9b,
|
||||
0xdc, 0xf2, 0xae, 0xdc, 0xe9, 0xae, 0xb4, 0xd3, 0xb8, 0xdf, 0x5f, 0x96, 0xc3, 0xf7, 0xff, 0x1d,
|
||||
0x00, 0x00, 0xff, 0xff, 0x51, 0xb7, 0x70, 0x6a, 0xeb, 0x21, 0x00, 0x00,
|
||||
// 2249 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0xcd, 0x8f, 0x1b, 0x49,
|
||||
0x15, 0x4f, 0xbb, 0x3d, 0x33, 0xee, 0xd7, 0xf6, 0x7c, 0x54, 0xb2, 0xe0, 0x38, 0x09, 0x99, 0x74,
|
||||
0x36, 0xc9, 0x80, 0xc8, 0x24, 0xcc, 0xb2, 0x68, 0x41, 0x80, 0x34, 0x99, 0xd9, 0x24, 0x4e, 0x36,
|
||||
0xd1, 0xd0, 0x8e, 0x56, 0x62, 0x85, 0x30, 0x6d, 0x77, 0x79, 0xa6, 0x76, 0xda, 0x5d, 0x4e, 0x57,
|
||||
0x75, 0x92, 0x09, 0x12, 0x82, 0xc3, 0x1e, 0x40, 0x2b, 0x21, 0x10, 0x12, 0xff, 0x00, 0xa7, 0xe5,
|
||||
0x3f, 0xe0, 0xc2, 0x85, 0x23, 0x27, 0xee, 0x5c, 0xf8, 0x27, 0xb8, 0xa2, 0xfa, 0xe8, 0x76, 0x77,
|
||||
0xbb, 0x3d, 0xf6, 0x7c, 0x20, 0x24, 0xf6, 0xe6, 0x7a, 0xf5, 0xea, 0xa3, 0xdf, 0xfb, 0xbd, 0xf7,
|
||||
0x7b, 0xaf, 0x0c, 0x6b, 0x24, 0xf4, 0xf1, 0x9b, 0x6e, 0x9f, 0xd2, 0xc8, 0xdf, 0x1c, 0x45, 0x94,
|
||||
0x53, 0x84, 0x86, 0x24, 0x78, 0x15, 0x33, 0x35, 0xda, 0x94, 0xf3, 0xad, 0x7a, 0x9f, 0x0e, 0x87,
|
||||
0x34, 0x54, 0xb2, 0xd6, 0x32, 0x09, 0x39, 0x8e, 0x42, 0x2f, 0xd0, 0xe3, 0x7a, 0x76, 0x85, 0xf3,
|
||||
0xcf, 0x2a, 0x58, 0x6d, 0xb1, 0xaa, 0x1d, 0x0e, 0x28, 0x72, 0xa0, 0xde, 0xa7, 0x41, 0x80, 0xfb,
|
||||
0x9c, 0xd0, 0xb0, 0xbd, 0xdb, 0x34, 0xd6, 0x8d, 0x0d, 0xd3, 0xcd, 0xc9, 0x50, 0x13, 0x96, 0x06,
|
||||
0x04, 0x07, 0x7e, 0x7b, 0xb7, 0x59, 0x91, 0xd3, 0xc9, 0x10, 0x5d, 0x03, 0x50, 0x17, 0x0c, 0xbd,
|
||||
0x21, 0x6e, 0x9a, 0xeb, 0xc6, 0x86, 0xe5, 0x5a, 0x52, 0xf2, 0xdc, 0x1b, 0x62, 0xb1, 0x50, 0x0e,
|
||||
0xda, 0xbb, 0xcd, 0xaa, 0x5a, 0xa8, 0x87, 0xe8, 0x01, 0xd8, 0xfc, 0x68, 0x84, 0xbb, 0x23, 0x2f,
|
||||
0xf2, 0x86, 0xac, 0xb9, 0xb0, 0x6e, 0x6e, 0xd8, 0x5b, 0x37, 0x36, 0x73, 0x9f, 0xa6, 0xbf, 0xe9,
|
||||
0x29, 0x3e, 0xfa, 0xd8, 0x0b, 0x62, 0xbc, 0xe7, 0x91, 0xc8, 0x05, 0xb1, 0x6a, 0x4f, 0x2e, 0x42,
|
||||
0xbb, 0x50, 0x57, 0x87, 0xeb, 0x4d, 0x16, 0xe7, 0xdd, 0xc4, 0x96, 0xcb, 0xf4, 0x2e, 0x37, 0xf4,
|
||||
0x2e, 0xd8, 0xef, 0x46, 0xf4, 0x35, 0x6b, 0x2e, 0xc9, 0x8b, 0xda, 0x5a, 0xe6, 0xd2, 0xd7, 0x4c,
|
||||
0x7c, 0x25, 0xa7, 0xdc, 0x0b, 0x94, 0x42, 0x4d, 0x2a, 0x58, 0x52, 0x22, 0xa7, 0xdf, 0x87, 0x05,
|
||||
0xc6, 0x3d, 0x8e, 0x9b, 0xd6, 0xba, 0xb1, 0xb1, 0xbc, 0x75, 0xbd, 0xf4, 0x02, 0xd2, 0xe2, 0x1d,
|
||||
0xa1, 0xe6, 0x2a, 0x6d, 0xf4, 0x3e, 0x7c, 0x55, 0x5d, 0x5f, 0x0e, 0xbb, 0x03, 0x8f, 0x04, 0xdd,
|
||||
0x08, 0x7b, 0x8c, 0x86, 0x4d, 0x90, 0x86, 0xbc, 0x44, 0xd2, 0x35, 0x0f, 0x3d, 0x12, 0xb8, 0x72,
|
||||
0x0e, 0x39, 0xd0, 0x20, 0xac, 0xeb, 0xc5, 0x9c, 0x76, 0xe5, 0x7c, 0xd3, 0x5e, 0x37, 0x36, 0x6a,
|
||||
0xae, 0x4d, 0xd8, 0x76, 0xcc, 0xa9, 0x3c, 0x06, 0x3d, 0x83, 0xb5, 0x98, 0xe1, 0xa8, 0x9b, 0x33,
|
||||
0x4f, 0x7d, 0x5e, 0xf3, 0xac, 0x88, 0xb5, 0xed, 0x8c, 0x89, 0xbe, 0x09, 0x68, 0x84, 0x43, 0x9f,
|
||||
0x84, 0xfb, 0x7a, 0x47, 0x69, 0x87, 0x86, 0xb4, 0xc3, 0xaa, 0x9e, 0x91, 0xfa, 0xc2, 0x1c, 0xce,
|
||||
0x67, 0x06, 0xc0, 0x43, 0x89, 0x0f, 0x79, 0x97, 0xef, 0x27, 0x10, 0x21, 0xe1, 0x80, 0x4a, 0x78,
|
||||
0xd9, 0x5b, 0xd7, 0x36, 0x27, 0x31, 0xbc, 0x99, 0x62, 0x52, 0x23, 0x48, 0xc2, 0xb3, 0x09, 0x4b,
|
||||
0x3e, 0x0e, 0x30, 0xc7, 0xbe, 0x84, 0x5e, 0xcd, 0x4d, 0x86, 0xe8, 0x3a, 0xd8, 0xfd, 0x08, 0x0b,
|
||||
0xcb, 0x71, 0xa2, 0xb1, 0x57, 0x75, 0x41, 0x89, 0x5e, 0x90, 0x21, 0x76, 0x3e, 0xab, 0x42, 0xbd,
|
||||
0x83, 0xf7, 0x87, 0x38, 0xe4, 0xea, 0x26, 0xf3, 0x40, 0x7d, 0x1d, 0xec, 0x91, 0x17, 0x71, 0xa2,
|
||||
0x55, 0x14, 0xdc, 0xb3, 0x22, 0x74, 0x15, 0x2c, 0xa6, 0x77, 0xdd, 0x95, 0xa7, 0x9a, 0xee, 0x58,
|
||||
0x80, 0x2e, 0x43, 0x2d, 0x8c, 0x87, 0xca, 0x40, 0x1a, 0xf2, 0x61, 0x3c, 0x94, 0x30, 0xc9, 0x04,
|
||||
0xc3, 0x42, 0x3e, 0x18, 0x9a, 0xb0, 0xd4, 0x8b, 0x89, 0x8c, 0xaf, 0x45, 0x35, 0xa3, 0x87, 0xe8,
|
||||
0x2b, 0xb0, 0x18, 0x52, 0x1f, 0xb7, 0x77, 0x35, 0x2c, 0xf5, 0x08, 0xdd, 0x84, 0x86, 0x32, 0xea,
|
||||
0x2b, 0x1c, 0x31, 0x42, 0x43, 0x0d, 0x4a, 0x85, 0xe4, 0x8f, 0x95, 0xec, 0xb4, 0xb8, 0xbc, 0x0e,
|
||||
0xf6, 0x24, 0x16, 0x61, 0x30, 0x46, 0xe0, 0x6d, 0x58, 0x51, 0x87, 0x0f, 0x48, 0x80, 0xbb, 0x87,
|
||||
0xf8, 0x88, 0x35, 0xed, 0x75, 0x73, 0xc3, 0x72, 0xd5, 0x9d, 0x1e, 0x92, 0x00, 0x3f, 0xc5, 0x47,
|
||||
0x2c, 0xeb, 0xbb, 0xfa, 0xb1, 0xbe, 0x6b, 0x14, 0x7d, 0x87, 0x6e, 0xc1, 0x32, 0xc3, 0x11, 0xf1,
|
||||
0x02, 0xf2, 0x16, 0x77, 0x19, 0x79, 0x8b, 0x9b, 0xcb, 0x52, 0xa7, 0x91, 0x4a, 0x3b, 0xe4, 0x2d,
|
||||
0x16, 0x66, 0x78, 0x1d, 0x11, 0x8e, 0xbb, 0x07, 0x5e, 0xe8, 0xd3, 0xc1, 0xa0, 0xb9, 0x22, 0xcf,
|
||||
0xa9, 0x4b, 0xe1, 0x63, 0x25, 0x73, 0xfe, 0x68, 0xc0, 0x45, 0x17, 0xef, 0x13, 0xc6, 0x71, 0xf4,
|
||||
0x9c, 0xfa, 0xd8, 0xc5, 0x2f, 0x63, 0xcc, 0x38, 0xba, 0x0f, 0xd5, 0x9e, 0xc7, 0xb0, 0x86, 0xe4,
|
||||
0xd5, 0x52, 0xeb, 0x3c, 0x63, 0xfb, 0x0f, 0x3c, 0x86, 0x5d, 0xa9, 0x89, 0xbe, 0x03, 0x4b, 0x9e,
|
||||
0xef, 0x47, 0x98, 0x31, 0x09, 0x8c, 0x69, 0x8b, 0xb6, 0x95, 0x8e, 0x9b, 0x28, 0x67, 0xbc, 0x68,
|
||||
0x66, 0xbd, 0xe8, 0xfc, 0xd6, 0x80, 0x4b, 0xf9, 0x9b, 0xb1, 0x11, 0x0d, 0x19, 0x46, 0xef, 0xc1,
|
||||
0xa2, 0xf0, 0x45, 0xcc, 0xf4, 0xe5, 0xae, 0x94, 0x9e, 0xd3, 0x91, 0x2a, 0xae, 0x56, 0x15, 0x29,
|
||||
0x95, 0x84, 0x84, 0x27, 0xe1, 0xae, 0x6e, 0x78, 0xa3, 0x18, 0x69, 0x9a, 0x18, 0xda, 0x21, 0xe1,
|
||||
0x2a, 0xba, 0x5d, 0x20, 0xe9, 0x6f, 0xe7, 0xc7, 0x70, 0xe9, 0x11, 0xe6, 0x19, 0x4c, 0x68, 0x5b,
|
||||
0xcd, 0x13, 0x3a, 0x79, 0x2e, 0xa8, 0x14, 0xb8, 0xc0, 0xf9, 0x93, 0x01, 0xef, 0x14, 0xf6, 0x3e,
|
||||
0xcb, 0xd7, 0xa6, 0xe0, 0xae, 0x9c, 0x05, 0xdc, 0x66, 0x11, 0xdc, 0xce, 0x2f, 0x0d, 0xb8, 0xf2,
|
||||
0x08, 0xf3, 0x6c, 0xe2, 0x38, 0x67, 0x4b, 0xa0, 0xaf, 0x01, 0xa4, 0x09, 0x83, 0x35, 0xcd, 0x75,
|
||||
0x73, 0xc3, 0x74, 0x33, 0x12, 0xe7, 0xd7, 0x06, 0xac, 0x4d, 0x9c, 0x9f, 0xcf, 0x3b, 0x46, 0x31,
|
||||
0xef, 0xfc, 0xb7, 0xcc, 0xf1, 0x7b, 0x03, 0xae, 0x96, 0x9b, 0xe3, 0x2c, 0xce, 0xfb, 0x81, 0x5a,
|
||||
0x84, 0x05, 0x4a, 0x05, 0x29, 0xdd, 0x2a, 0xe3, 0x83, 0xc9, 0x33, 0xf5, 0x22, 0xe7, 0x73, 0x13,
|
||||
0xd0, 0x8e, 0x4c, 0x16, 0x8a, 0x75, 0x4e, 0xe0, 0x9a, 0x53, 0x97, 0x32, 0x85, 0x82, 0xa5, 0x7a,
|
||||
0x1e, 0x05, 0xcb, 0xc2, 0xa9, 0x0a, 0x96, 0xab, 0x60, 0x89, 0xac, 0xc9, 0xb8, 0x37, 0x1c, 0x49,
|
||||
0xbe, 0xa8, 0xba, 0x63, 0xc1, 0x64, 0x79, 0xb0, 0x34, 0x67, 0x79, 0x50, 0x3b, 0x6d, 0x79, 0xe0,
|
||||
0xbc, 0x81, 0x8b, 0x49, 0x60, 0x4b, 0xfa, 0x3e, 0x81, 0x3b, 0xf2, 0xa1, 0x50, 0x29, 0x86, 0xc2,
|
||||
0x0c, 0xa7, 0x38, 0xff, 0xae, 0xc0, 0x5a, 0x3b, 0xe1, 0x9c, 0x3d, 0x8f, 0x1f, 0xc8, 0x9a, 0xe1,
|
||||
0xf8, 0x48, 0x99, 0x8e, 0x80, 0x0c, 0x41, 0x9b, 0x53, 0x09, 0xba, 0x9a, 0x27, 0xe8, 0xfc, 0x05,
|
||||
0x17, 0x8a, 0xa8, 0x39, 0x9f, 0x12, 0x75, 0x03, 0x56, 0x33, 0x84, 0x3b, 0xf2, 0xf8, 0x81, 0x28,
|
||||
0x53, 0x05, 0xe3, 0x2e, 0x93, 0xec, 0xd7, 0x33, 0x74, 0x07, 0x56, 0x52, 0x86, 0xf4, 0x15, 0x71,
|
||||
0xd6, 0x24, 0x42, 0xc6, 0x74, 0xea, 0x27, 0xcc, 0x99, 0x2f, 0x20, 0xac, 0x92, 0x02, 0x22, 0x5b,
|
||||
0xcc, 0x40, 0xae, 0x98, 0x71, 0xfe, 0x62, 0x80, 0x9d, 0x06, 0xe8, 0x9c, 0x6d, 0x44, 0xce, 0x2f,
|
||||
0x95, 0xa2, 0x5f, 0x6e, 0x40, 0x1d, 0x87, 0x5e, 0x2f, 0xc0, 0x1a, 0xb7, 0xa6, 0xc2, 0xad, 0x92,
|
||||
0x29, 0xdc, 0x3e, 0x04, 0x7b, 0x5c, 0x4a, 0x26, 0x31, 0x78, 0x6b, 0x6a, 0x2d, 0x99, 0x05, 0x85,
|
||||
0x0b, 0x69, 0x4d, 0xc9, 0x9c, 0xdf, 0x54, 0xc6, 0x34, 0xa7, 0x10, 0x7b, 0x96, 0x64, 0xf6, 0x13,
|
||||
0xa8, 0xeb, 0xaf, 0x50, 0x25, 0xae, 0x4a, 0x69, 0xdf, 0x2d, 0xbb, 0x56, 0xd9, 0xa1, 0x9b, 0x19,
|
||||
0x33, 0x7e, 0x18, 0xf2, 0xe8, 0xc8, 0xb5, 0xd9, 0x58, 0xd2, 0xea, 0xc2, 0x6a, 0x51, 0x01, 0xad,
|
||||
0x82, 0x79, 0x88, 0x8f, 0xb4, 0x8d, 0xc5, 0x4f, 0x91, 0xfe, 0x5f, 0x09, 0xec, 0x68, 0xd6, 0xbf,
|
||||
0x7e, 0x6c, 0x3e, 0x1d, 0x50, 0x57, 0x69, 0x7f, 0xaf, 0xf2, 0x81, 0xe1, 0xfc, 0xc1, 0x80, 0xd5,
|
||||
0xdd, 0x88, 0x8e, 0x4e, 0x9c, 0x4a, 0x1d, 0xa8, 0x67, 0xea, 0xe2, 0x24, 0x7a, 0x73, 0xb2, 0x59,
|
||||
0x49, 0xf5, 0x32, 0xd4, 0xfc, 0x88, 0x8e, 0xba, 0x5e, 0x10, 0xc8, 0xc0, 0x12, 0x25, 0x62, 0x44,
|
||||
0x47, 0xdb, 0x41, 0x20, 0x2a, 0x91, 0x5d, 0xcc, 0xfa, 0x11, 0xe9, 0x9d, 0x3c, 0xc9, 0xcf, 0xa8,
|
||||
0x44, 0x3e, 0x37, 0xe0, 0x9d, 0xc2, 0xde, 0x67, 0xf1, 0xff, 0x0f, 0xf3, 0xa8, 0x54, 0xee, 0x9f,
|
||||
0xd1, 0xe1, 0x64, 0xd1, 0xe8, 0x49, 0x86, 0x95, 0x73, 0x0f, 0x44, 0x56, 0xd9, 0x8b, 0xe8, 0xbe,
|
||||
0xac, 0x1f, 0xcf, 0xef, 0x8b, 0xff, 0x66, 0xc0, 0xb5, 0x29, 0x67, 0x9c, 0xe5, 0xcb, 0x8b, 0xad,
|
||||
0x73, 0x65, 0x56, 0xeb, 0x6c, 0x16, 0x5b, 0xe7, 0xf2, 0xce, 0xb2, 0x3a, 0xa5, 0xb3, 0xfc, 0x73,
|
||||
0x05, 0x1a, 0x1d, 0x4e, 0x23, 0x6f, 0x1f, 0xef, 0xd0, 0x70, 0x40, 0xf6, 0x45, 0x62, 0x4e, 0x2a,
|
||||
0x72, 0x43, 0x7e, 0x74, 0x5a, 0x73, 0xdf, 0x80, 0xba, 0xd7, 0xef, 0x63, 0xc6, 0x44, 0x83, 0xa2,
|
||||
0xf3, 0x8d, 0xe5, 0xda, 0x4a, 0xf6, 0x54, 0x88, 0xd0, 0x37, 0x60, 0x8d, 0xe1, 0x7e, 0x84, 0x79,
|
||||
0x77, 0xac, 0xa9, 0x31, 0xba, 0xa2, 0x26, 0xb6, 0x13, 0x6d, 0x51, 0xc2, 0xc7, 0x0c, 0x77, 0x3a,
|
||||
0x1f, 0x69, 0x9c, 0xea, 0x91, 0x28, 0xa0, 0x7a, 0x71, 0xff, 0x10, 0xf3, 0x2c, 0x01, 0x80, 0x12,
|
||||
0x49, 0x88, 0x5f, 0x01, 0x2b, 0xa2, 0x94, 0xcb, 0xac, 0x2d, 0xd9, 0xda, 0x72, 0x6b, 0x42, 0x20,
|
||||
0x12, 0x93, 0xde, 0xb5, 0xbd, 0xfd, 0x4c, 0xb3, 0xb4, 0x1e, 0x89, 0x2e, 0xb4, 0xbd, 0xfd, 0xec,
|
||||
0xc3, 0xd0, 0x1f, 0x51, 0x12, 0x72, 0x99, 0xc2, 0x2d, 0x37, 0x2b, 0x12, 0x9f, 0xc7, 0x94, 0x25,
|
||||
0xba, 0xa2, 0xc0, 0x90, 0xe9, 0xdb, 0x72, 0x6d, 0x2d, 0x7b, 0x71, 0x34, 0xc2, 0xce, 0xbf, 0x4c,
|
||||
0x58, 0x55, 0x55, 0xd2, 0x13, 0xda, 0x4b, 0xc0, 0x74, 0x15, 0xac, 0x7e, 0x10, 0x8b, 0x86, 0x43,
|
||||
0x23, 0xc9, 0x72, 0xc7, 0x02, 0x61, 0x91, 0x2c, 0xd1, 0x44, 0x78, 0x40, 0xde, 0x68, 0xcb, 0xad,
|
||||
0x8c, 0x99, 0x46, 0x8a, 0xb3, 0x9c, 0x68, 0x4e, 0x70, 0xa2, 0xef, 0x71, 0x4f, 0x13, 0x55, 0x55,
|
||||
0x12, 0x95, 0x25, 0x24, 0x8a, 0xa3, 0x26, 0xa8, 0x67, 0xa1, 0x84, 0x7a, 0x32, 0x5c, 0xbc, 0x98,
|
||||
0xe7, 0xe2, 0x3c, 0xd4, 0x97, 0x8a, 0x29, 0xe5, 0x31, 0x2c, 0x27, 0x86, 0xe9, 0x4b, 0x8c, 0x48,
|
||||
0xeb, 0x95, 0x34, 0x42, 0x32, 0x25, 0x66, 0xc1, 0xe4, 0x36, 0x58, 0x0e, 0x5b, 0x45, 0xee, 0xb6,
|
||||
0x4e, 0xc5, 0xdd, 0x85, 0xba, 0x11, 0x4e, 0x53, 0x37, 0x66, 0x79, 0xd8, 0xce, 0xf3, 0xf0, 0x47,
|
||||
0xb0, 0xfa, 0xa3, 0x18, 0x47, 0x47, 0x4f, 0x68, 0x8f, 0xcd, 0xe7, 0xe3, 0x16, 0xd4, 0xb4, 0xa3,
|
||||
0x92, 0x94, 0x9d, 0x8e, 0x9d, 0x7f, 0x18, 0xd0, 0x90, 0xe1, 0xf6, 0xc2, 0x63, 0x87, 0xc9, 0xfb,
|
||||
0x4b, 0xe2, 0x65, 0x23, 0xef, 0xe5, 0x53, 0x76, 0x1c, 0x25, 0x8f, 0x07, 0x66, 0xd9, 0xe3, 0x41,
|
||||
0x49, 0x25, 0x53, 0x2d, 0xad, 0x64, 0x0a, 0x2d, 0xcc, 0xc2, 0x44, 0x0b, 0xf3, 0x85, 0x01, 0x6b,
|
||||
0x19, 0x1b, 0x9d, 0x25, 0xe1, 0xe5, 0x2c, 0x5b, 0x29, 0x5a, 0xf6, 0x41, 0x9e, 0x08, 0xcc, 0x32,
|
||||
0x57, 0x67, 0x88, 0x20, 0xb1, 0x71, 0x8e, 0x0c, 0x9e, 0xc2, 0x8a, 0x20, 0xe3, 0xf3, 0x71, 0xe7,
|
||||
0xdf, 0x0d, 0x58, 0x7a, 0x42, 0x7b, 0xd2, 0x91, 0x59, 0x0c, 0x19, 0xf9, 0x87, 0xa9, 0x55, 0x30,
|
||||
0x7d, 0x32, 0xd4, 0xd9, 0x5b, 0xfc, 0x14, 0x31, 0xc6, 0xb8, 0x17, 0xf1, 0xf1, 0xd3, 0x9a, 0x28,
|
||||
0xd5, 0x84, 0x44, 0xbe, 0xce, 0x5c, 0x86, 0x1a, 0x0e, 0x7d, 0x35, 0xa9, 0xeb, 0x61, 0x1c, 0xfa,
|
||||
0x72, 0xea, 0x7c, 0x5a, 0x9c, 0x4b, 0xb0, 0x30, 0xa2, 0xe3, 0xe7, 0x30, 0x35, 0x70, 0x2e, 0x01,
|
||||
0x7a, 0x84, 0xf9, 0x13, 0xda, 0x13, 0x5e, 0x49, 0xcc, 0xe3, 0xfc, 0xb5, 0x22, 0xdb, 0x8f, 0xb1,
|
||||
0xf8, 0x2c, 0x0e, 0x76, 0xa0, 0xa1, 0xe8, 0xea, 0x53, 0xda, 0xeb, 0x86, 0x71, 0x62, 0x14, 0x5b,
|
||||
0x0a, 0x9f, 0xd0, 0xde, 0xf3, 0x78, 0x88, 0xee, 0xc2, 0x45, 0x12, 0x76, 0x47, 0x9a, 0x41, 0x53,
|
||||
0x4d, 0x65, 0xa5, 0x55, 0x12, 0x26, 0xdc, 0xaa, 0xd5, 0x6f, 0xc3, 0x0a, 0x0e, 0x5f, 0xc6, 0x38,
|
||||
0xc6, 0xa9, 0xaa, 0xb2, 0x59, 0x43, 0x8b, 0xb5, 0x9e, 0x60, 0x4a, 0x8f, 0x1d, 0x76, 0x59, 0x40,
|
||||
0x39, 0xd3, 0x39, 0xd1, 0x12, 0x92, 0x8e, 0x10, 0xa0, 0x0f, 0xc0, 0x12, 0xcb, 0x15, 0xb4, 0x54,
|
||||
0x1b, 0x71, 0xa5, 0x0c, 0x5a, 0xda, 0xdf, 0x6e, 0xed, 0x53, 0xf5, 0x83, 0x89, 0x00, 0xd1, 0x85,
|
||||
0xb5, 0x4f, 0xd8, 0xa1, 0x66, 0x1a, 0x50, 0xa2, 0x5d, 0xc2, 0x0e, 0x9d, 0x9f, 0xc2, 0xe5, 0xec,
|
||||
0xc3, 0x0c, 0x61, 0x9c, 0xf4, 0xcf, 0xb3, 0xfa, 0xf8, 0x9d, 0x01, 0xad, 0xb2, 0x03, 0xfe, 0x87,
|
||||
0x45, 0xd7, 0xd6, 0xaf, 0x6c, 0x00, 0x39, 0xb3, 0x43, 0x69, 0xe4, 0xa3, 0x40, 0x42, 0x6b, 0x87,
|
||||
0x0e, 0x47, 0x34, 0xc4, 0x21, 0x97, 0x19, 0x8b, 0xa1, 0xcd, 0xfc, 0x7e, 0x7a, 0x30, 0xa9, 0xa8,
|
||||
0x6d, 0xd5, 0x7a, 0xb7, 0x54, 0xbf, 0xa0, 0xec, 0x5c, 0x40, 0x2f, 0x65, 0xfb, 0x31, 0x36, 0xc5,
|
||||
0xce, 0x81, 0x17, 0x86, 0x38, 0x40, 0x5b, 0x53, 0x1e, 0xeb, 0xca, 0x94, 0x93, 0x33, 0x6f, 0x96,
|
||||
0x9e, 0xd9, 0xe1, 0x11, 0x09, 0xf7, 0x13, 0x13, 0x3b, 0x17, 0xd0, 0x0b, 0xb0, 0x33, 0x2f, 0x26,
|
||||
0xe8, 0x76, 0x99, 0xa5, 0x26, 0x9f, 0x54, 0x5a, 0xc7, 0xf9, 0xc2, 0xb9, 0x80, 0x06, 0xd0, 0xc8,
|
||||
0x3d, 0xe9, 0xa1, 0x8d, 0xe3, 0xba, 0x9e, 0xec, 0x3b, 0x5a, 0xeb, 0xeb, 0x73, 0x68, 0xa6, 0xb7,
|
||||
0xff, 0xb9, 0x32, 0xd8, 0xc4, 0x9b, 0xd8, 0xbd, 0x29, 0x9b, 0x4c, 0x7b, 0xbd, 0x6b, 0xdd, 0x9f,
|
||||
0x7f, 0x41, 0x7a, 0xb8, 0x3f, 0xfe, 0x48, 0x15, 0x50, 0x77, 0x66, 0xb7, 0x76, 0xea, 0xb4, 0x8d,
|
||||
0x79, 0x7b, 0x40, 0xe7, 0x02, 0xda, 0x03, 0x2b, 0xed, 0xc2, 0xd0, 0xbb, 0x65, 0x0b, 0x8b, 0x4d,
|
||||
0xda, 0x1c, 0xce, 0xc9, 0x75, 0x39, 0xe5, 0xce, 0x29, 0x6b, 0xb2, 0xca, 0x9d, 0x53, 0xda, 0x32,
|
||||
0x39, 0x17, 0x50, 0x2c, 0x63, 0xa7, 0x10, 0xdd, 0xe8, 0xee, 0x2c, 0xff, 0xe6, 0xd2, 0x4c, 0x6b,
|
||||
0x73, 0x5e, 0xf5, 0xf4, 0xd8, 0x5f, 0x8c, 0x9f, 0x93, 0x73, 0x2d, 0x0d, 0xba, 0x7f, 0xdc, 0x56,
|
||||
0x65, 0x1d, 0x56, 0xeb, 0x5b, 0x27, 0x58, 0x91, 0xc1, 0x24, 0xea, 0x1c, 0xd0, 0xd7, 0xaa, 0x58,
|
||||
0x8c, 0x23, 0x4f, 0xe4, 0xc2, 0x92, 0xc3, 0x75, 0x08, 0x4f, 0xaa, 0x4e, 0x3d, 0xfc, 0x98, 0x15,
|
||||
0xe9, 0xe1, 0x5d, 0x80, 0x47, 0x98, 0x3f, 0xc3, 0x3c, 0x12, 0xb6, 0xbe, 0x3d, 0x2d, 0x4f, 0x69,
|
||||
0x85, 0xe4, 0xa8, 0x3b, 0x33, 0xf5, 0xd2, 0x03, 0x7a, 0x60, 0xef, 0x1c, 0xe0, 0xfe, 0xe1, 0x63,
|
||||
0xec, 0x05, 0xfc, 0x00, 0x95, 0xaf, 0xcc, 0x68, 0x4c, 0x81, 0x7c, 0x99, 0x62, 0x72, 0xc6, 0xd6,
|
||||
0x17, 0x8b, 0xfa, 0x8f, 0xe8, 0xe7, 0xd4, 0xc7, 0xff, 0xff, 0x29, 0x78, 0x0f, 0xac, 0xb4, 0x1d,
|
||||
0x2b, 0x8f, 0xf0, 0x62, 0xb7, 0x36, 0x2b, 0xc2, 0x3f, 0x01, 0x2b, 0x2d, 0x6c, 0xcb, 0x77, 0x2c,
|
||||
0xf6, 0x06, 0xad, 0x5b, 0x33, 0xb4, 0xd2, 0xdb, 0x3e, 0x87, 0x5a, 0x52, 0x88, 0xa2, 0x9b, 0xd3,
|
||||
0xd2, 0x51, 0x76, 0xe7, 0x19, 0x77, 0xfd, 0x19, 0xd8, 0x99, 0x2a, 0xad, 0x9c, 0x80, 0x26, 0xab,
|
||||
0xbb, 0xd6, 0x9d, 0x99, 0x7a, 0x5f, 0x8e, 0x80, 0x7c, 0xf0, 0xed, 0x4f, 0xb6, 0xf6, 0x09, 0x3f,
|
||||
0x88, 0x7b, 0xc2, 0xb2, 0xf7, 0x94, 0xe6, 0x5d, 0x42, 0xf5, 0xaf, 0x7b, 0xc9, 0x2d, 0xef, 0xc9,
|
||||
0x9d, 0xee, 0x49, 0x3b, 0x8d, 0x7a, 0xbd, 0x45, 0x39, 0x7c, 0xef, 0x3f, 0x01, 0x00, 0x00, 0xff,
|
||||
0xff, 0x65, 0x43, 0xa0, 0xdd, 0x47, 0x22, 0x00, 0x00,
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
|
||||
@ -505,6 +505,7 @@ func (dit *describeIndexTask) Execute(ctx context.Context) error {
|
||||
Params: params,
|
||||
IndexedRows: indexInfo.GetIndexedRows(),
|
||||
TotalRows: indexInfo.GetTotalRows(),
|
||||
PendingIndexRows: indexInfo.GetPendingIndexRows(),
|
||||
State: indexInfo.GetState(),
|
||||
IndexStateFailReason: indexInfo.GetIndexStateFailReason(),
|
||||
}
|
||||
|
||||
@ -12,7 +12,7 @@ allure-pytest==2.7.0
|
||||
pytest-print==0.2.1
|
||||
pytest-level==0.1.1
|
||||
pytest-xdist==2.5.0
|
||||
pymilvus==2.4.0.dev59
|
||||
pymilvus==2.4.0.dev63
|
||||
pytest-rerunfailures==9.1.1
|
||||
git+https://github.com/Projectplace/pytest-tags
|
||||
ndg-httpsclient
|
||||
|
||||
@ -823,7 +823,7 @@ class TestUtilityBase(TestcaseBase):
|
||||
cw = self.init_collection_wrap(name=c_name)
|
||||
self.index_wrap.init_index(cw.collection, default_field_name, default_index_params)
|
||||
res, _ = self.utility_wrap.index_building_progress(c_name)
|
||||
exp_res = {'total_rows': 0, 'indexed_rows': 0}
|
||||
exp_res = {'total_rows': 0, 'indexed_rows': 0, 'pending_index_rows': 0}
|
||||
assert res == exp_res
|
||||
|
||||
@pytest.mark.tags(CaseLabel.L2)
|
||||
@ -914,7 +914,7 @@ class TestUtilityBase(TestcaseBase):
|
||||
cw.create_index(default_field_name, default_index_params)
|
||||
assert self.utility_wrap.wait_for_index_building_complete(c_name)[0]
|
||||
res, _ = self.utility_wrap.index_building_progress(c_name)
|
||||
exp_res = {'total_rows': 0, 'indexed_rows': 0}
|
||||
exp_res = {'total_rows': 0, 'indexed_rows': 0, 'pending_index_rows': 0}
|
||||
assert res == exp_res
|
||||
|
||||
@pytest.mark.tags(CaseLabel.L1)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user