From 2b02b869ec62c209041102082d48c27eec46fb58 Mon Sep 17 00:00:00 2001 From: "cai.zhang" Date: Mon, 14 Nov 2022 14:37:07 +0800 Subject: [PATCH] Return real-time indexed rows and total rows (#20460) Signed-off-by: cai.zhang Signed-off-by: cai.zhang --- internal/datacoord/services.go | 12 +- internal/indexcoord/garbage_collector.go | 5 +- internal/indexcoord/index_coord.go | 103 ++-- internal/indexcoord/index_coord_test.go | 26 + internal/indexcoord/meta_table.go | 25 +- internal/indexcoord/meta_table_test.go | 16 +- internal/proto/data_coord.proto | 1 + internal/proto/datapb/data_coord.pb.go | 510 +++++++++--------- internal/proto/index_coord.proto | 1 + internal/proto/indexpb/index_coord.pb.go | 1 + tests/python_client/testcases/test_utility.py | 2 +- 11 files changed, 381 insertions(+), 321 deletions(-) diff --git a/internal/datacoord/services.go b/internal/datacoord/services.go index ab350f37d5..009aeb7c9c 100644 --- a/internal/datacoord/services.go +++ b/internal/datacoord/services.go @@ -739,13 +739,15 @@ func (s *Server) GetFlushedSegments(ctx context.Context, req *datapb.GetFlushedS ret := make([]UniqueID, 0, len(segmentIDs)) for _, id := range segmentIDs { segment := s.meta.GetSegment(id) - if segment != nil && - segment.GetState() != commonpb.SegmentState_Dropped && - segment.GetState() != commonpb.SegmentState_Flushed { + // if this segment == nil, we assume this segment has been gc + if segment == nil || + (segment.GetState() != commonpb.SegmentState_Dropped && + segment.GetState() != commonpb.SegmentState_Flushed) { + continue + } + if !req.GetIncludeUnhealthy() && segment.GetState() == commonpb.SegmentState_Dropped { continue } - - // if this segment == nil, we assume this segment has been compacted and flushed ret = append(ret, id) } diff --git a/internal/indexcoord/garbage_collector.go b/internal/indexcoord/garbage_collector.go index 3e3aaa1715..51389f8427 100644 --- a/internal/indexcoord/garbage_collector.go +++ b/internal/indexcoord/garbage_collector.go @@ -135,8 +135,9 @@ func (gc *garbageCollector) recycleSegIndexesMeta() { } for collID, segIDs := range collID2segID { resp, err := gc.indexCoordClient.dataCoordClient.GetFlushedSegments(gc.ctx, &datapb.GetFlushedSegmentsRequest{ - CollectionID: collID, - PartitionID: -1, + CollectionID: collID, + PartitionID: -1, + IncludeUnhealthy: true, }) if err != nil { log.Ctx(gc.ctx).Warn("IndexCoord garbageCollector get flushed segments from DataCoord fail", diff --git a/internal/indexcoord/index_coord.go b/internal/indexcoord/index_coord.go index 99ad9cde7b..28e88d4c89 100644 --- a/internal/indexcoord/index_coord.go +++ b/internal/indexcoord/index_coord.go @@ -586,40 +586,15 @@ func (i *IndexCoord) GetSegmentIndexState(ctx context.Context, req *indexpb.GetS return ret, nil } -// completeIndexInfo get the building index progress and index state -func (i *IndexCoord) completeIndexInfo(ctx context.Context, indexInfo *indexpb.IndexInfo) error { +// completeIndexInfo get the building index row count and index task state +func (i *IndexCoord) completeIndexInfo(indexInfo *indexpb.IndexInfo, segIDs []UniqueID) error { collectionID := indexInfo.CollectionID indexName := indexInfo.IndexName log.RatedDebug(5, "IndexCoord completeIndexInfo", zap.Int64("collID", collectionID), zap.String("indexName", indexName)) - calculateTotalRow := func() (int64, error) { - totalRows := int64(0) - flushSegments, err := i.dataCoordClient.GetFlushedSegments(ctx, &datapb.GetFlushedSegmentsRequest{ - CollectionID: collectionID, - PartitionID: -1, - }) - if err != nil { - return totalRows, err - } - - resp, err := i.dataCoordClient.GetSegmentInfo(ctx, &datapb.GetSegmentInfoRequest{ - SegmentIDs: flushSegments.Segments, - }) - if err != nil { - return totalRows, err - } - - for _, seg := range resp.Infos { - if seg.State == commonpb.SegmentState_Flushed { - totalRows += seg.NumOfRows - } - } - return totalRows, nil - } - indexID2CreateTs := i.metaTable.GetIndexIDByName(collectionID, indexName) - if len(indexID2CreateTs) < 1 { + if len(indexID2CreateTs) == 0 { log.Error("there is no index on collection", zap.Int64("collectionID", collectionID), zap.String("indexName", indexName)) return nil } @@ -634,12 +609,6 @@ func (i *IndexCoord) completeIndexInfo(ctx context.Context, indexInfo *indexpb.I break } - totalRow, err := calculateTotalRow() - if err != nil { - return err - } - indexInfo.TotalRows = totalRow - indexStates, indexStateCnt := i.metaTable.GetIndexStates(indexID, createTs) allCnt := len(indexStates) switch { @@ -648,11 +617,10 @@ func (i *IndexCoord) completeIndexInfo(ctx context.Context, indexInfo *indexpb.I indexInfo.IndexStateFailReason = indexStateCnt.FailReason case indexStateCnt.Finished == allCnt: indexInfo.State = commonpb.IndexState_Finished - indexInfo.IndexedRows = totalRow + indexInfo.IndexedRows = i.metaTable.GetIndexBuildProgress(indexID, segIDs) default: indexInfo.State = commonpb.IndexState_InProgress - indexInfo.IndexedRows = i.metaTable.GetIndexBuildProgress(indexID, createTs) - + indexInfo.IndexedRows = i.metaTable.GetIndexBuildProgress(indexID, segIDs) } log.RatedDebug(5, "IndexCoord completeIndexInfo success", zap.Int64("collID", collectionID), @@ -676,8 +644,9 @@ func (i *IndexCoord) GetIndexBuildProgress(ctx context.Context, req *indexpb.Get } flushSegments, err := i.dataCoordClient.GetFlushedSegments(ctx, &datapb.GetFlushedSegmentsRequest{ - CollectionID: req.CollectionID, - PartitionID: -1, + CollectionID: req.CollectionID, + PartitionID: -1, + IncludeUnhealthy: false, }) if err != nil { return &indexpb.GetIndexBuildProgressResponse{ @@ -688,7 +657,8 @@ func (i *IndexCoord) GetIndexBuildProgress(ctx context.Context, req *indexpb.Get } resp, err := i.dataCoordClient.GetSegmentInfo(ctx, &datapb.GetSegmentInfoRequest{ - SegmentIDs: flushSegments.Segments, + SegmentIDs: flushSegments.Segments, + IncludeUnHealthy: true, }) if err != nil { return &indexpb.GetIndexBuildProgressResponse{ @@ -704,7 +674,7 @@ func (i *IndexCoord) GetIndexBuildProgress(ctx context.Context, req *indexpb.Get } indexID2CreateTs := i.metaTable.GetIndexIDByName(req.CollectionID, req.IndexName) - if len(indexID2CreateTs) < 1 { + if len(indexID2CreateTs) == 0 { errMsg := fmt.Sprintf("there is no index on collection: %d with the index name: %s", req.CollectionID, req.IndexName) log.Error("IndexCoord get index state fail", zap.Int64("collectionID", req.CollectionID), zap.String("indexName", req.IndexName), zap.String("fail reason", errMsg)) @@ -716,13 +686,14 @@ func (i *IndexCoord) GetIndexBuildProgress(ctx context.Context, req *indexpb.Get }, nil } - for indexID, createTs := range indexID2CreateTs { - indexRows = i.metaTable.GetIndexBuildProgress(indexID, createTs) + for indexID := range indexID2CreateTs { + indexRows = i.metaTable.GetIndexBuildProgress(indexID, flushSegments.Segments) break } log.RatedInfo(5, "IndexCoord get index build progress success", zap.Int64("collID", req.CollectionID), - zap.Int64("totalRows", totalRows), zap.Int64("indexRows", indexRows), zap.Int("seg num", len(resp.Infos))) + zap.Int64("totalRows", totalRows), zap.Int64("indexRows", indexRows), + zap.Int("seg num", len(flushSegments.Segments))) return &indexpb.GetIndexBuildProgressResponse{ Status: &commonpb.Status{ ErrorCode: commonpb.ErrorCode_Success, @@ -884,6 +855,47 @@ func (i *IndexCoord) DescribeIndex(ctx context.Context, req *indexpb.DescribeInd }, }, nil } + + ret := &indexpb.DescribeIndexResponse{ + Status: &commonpb.Status{ + ErrorCode: commonpb.ErrorCode_UnexpectedError, + Reason: "", + }, + } + + // The total rows of all indexes should be based on the current perspective + flushedSegmentR, err := i.dataCoordClient.GetFlushedSegments(ctx, &datapb.GetFlushedSegmentsRequest{ + CollectionID: req.GetCollectionID(), + PartitionID: -1, + IncludeUnhealthy: false, + }) + if err != nil { + return ret, err + } + if flushedSegmentR.Status.GetErrorCode() != commonpb.ErrorCode_Success { + ret.Status.ErrorCode = flushedSegmentR.Status.GetErrorCode() + ret.Status.Reason = flushedSegmentR.Status.GetReason() + return ret, nil + } + + resp, err := i.dataCoordClient.GetSegmentInfo(ctx, &datapb.GetSegmentInfoRequest{ + SegmentIDs: flushedSegmentR.Segments, + IncludeUnHealthy: true, + }) + if err != nil { + return ret, err + } + if resp.Status.GetErrorCode() != commonpb.ErrorCode_Success { + ret.Status.ErrorCode = resp.Status.GetErrorCode() + ret.Status.Reason = resp.Status.GetReason() + return ret, nil + } + + totalRows := int64(0) + for _, seg := range resp.Infos { + totalRows += seg.NumOfRows + } + indexInfos := make([]*indexpb.IndexInfo, 0) for _, index := range indexes { indexInfo := &indexpb.IndexInfo{ @@ -895,8 +907,9 @@ func (i *IndexCoord) DescribeIndex(ctx context.Context, req *indexpb.DescribeInd IsAutoIndex: index.IsAutoIndex, UserIndexParams: index.UserIndexParams, IndexID: index.IndexID, + TotalRows: totalRows, } - if err := i.completeIndexInfo(ctx, indexInfo); err != nil { + if err := i.completeIndexInfo(indexInfo, flushedSegmentR.Segments); err != nil { log.Error("IndexCoord describe index fail", zap.Int64("collectionID", req.CollectionID), zap.String("indexName", req.IndexName), zap.Error(err)) return &indexpb.DescribeIndexResponse{ diff --git a/internal/indexcoord/index_coord_test.go b/internal/indexcoord/index_coord_test.go index 7b29e11ed0..5af92d1d35 100644 --- a/internal/indexcoord/index_coord_test.go +++ b/internal/indexcoord/index_coord_test.go @@ -320,6 +320,18 @@ func testIndexCoord(t *testing.T) { mockIndexs[222] = make(map[UniqueID]*model.SegmentIndex) mockIndexs[222][indexIDTest] = progressIndex resp, err = ic.DescribeIndex(ctx, req) + assert.Error(t, err) + assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode) + + dcm.CallGetFlushedSegment = func(ctx context.Context, req *datapb.GetFlushedSegmentsRequest) (*datapb.GetFlushedSegmentsResponse, error) { + return &datapb.GetFlushedSegmentsResponse{ + Status: &commonpb.Status{ + ErrorCode: commonpb.ErrorCode_UnexpectedError, + Reason: "mock fail", + }, + }, nil + } + resp, err = ic.DescribeIndex(ctx, req) assert.NoError(t, err) assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode) @@ -334,6 +346,20 @@ func testIndexCoord(t *testing.T) { } }) resp, err = ic.DescribeIndex(ctx, req) + assert.Error(t, err) + assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode) + + dcm.SetFunc(func() { + dcm.CallGetSegmentInfo = func(ctx context.Context, req *datapb.GetSegmentInfoRequest) (*datapb.GetSegmentInfoResponse, error) { + return &datapb.GetSegmentInfoResponse{ + Status: &commonpb.Status{ + ErrorCode: commonpb.ErrorCode_UnexpectedError, + Reason: "mock fail", + }, + }, nil + } + }) + resp, err = ic.DescribeIndex(ctx, req) assert.NoError(t, err) assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode) diff --git a/internal/indexcoord/meta_table.go b/internal/indexcoord/meta_table.go index 353624bf1d..92c556d4da 100644 --- a/internal/indexcoord/meta_table.go +++ b/internal/indexcoord/meta_table.go @@ -706,27 +706,26 @@ func (mt *metaTable) GetSegmentIndexState(segmentID UniqueID) IndexState { } // GetIndexBuildProgress gets the index progress for indexID from meta table. -func (mt *metaTable) GetIndexBuildProgress(indexID int64, createTs uint64) int64 { +func (mt *metaTable) GetIndexBuildProgress(indexID int64, segIDs []UniqueID) int64 { mt.segmentIndexLock.RLock() defer mt.segmentIndexLock.RUnlock() indexRows := int64(0) - for _, indexID2SegIdx := range mt.segmentIndexes { - segIdx, ok := indexID2SegIdx[indexID] + for _, segID := range segIDs { + segIndexes, ok := mt.segmentIndexes[segID] if !ok { continue } - if segIdx.CreateTime > createTs { - continue - } - if segIdx.IsDeleted { - // skip deleted index, deleted by compaction - continue - } - - if segIdx.IndexState == commonpb.IndexState_Finished && segIdx.NumRows >= Params.IndexCoordCfg.MinSegmentNumRowsToEnableIndex { - indexRows += segIdx.NumRows + if segIdx, ok2 := segIndexes[indexID]; ok2 { + if segIdx.IsDeleted { + // partition is dropped, but DataCoord has not received the message + continue + } + // flat index, small segment + if segIdx.IndexState == commonpb.IndexState_Finished { + indexRows += segIdx.NumRows + } } } diff --git a/internal/indexcoord/meta_table_test.go b/internal/indexcoord/meta_table_test.go index df13c71ee1..fded45e3a6 100644 --- a/internal/indexcoord/meta_table_test.go +++ b/internal/indexcoord/meta_table_test.go @@ -647,14 +647,22 @@ func TestMetaTable_GetSegmentIndexState(t *testing.T) { } func TestMetaTable_GetIndexBuildProgress(t *testing.T) { - mt := constructMetaTable(&indexcoord.Catalog{}) - indexRows := mt.GetIndexBuildProgress(indexID, 11) + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: NewMockEtcdKV(), + }) + indexRows := mt.GetIndexBuildProgress(indexID, []UniqueID{segID}) assert.Equal(t, int64(1024), indexRows) - indexRows = mt.GetIndexBuildProgress(indexID+1, 11) + indexRows = mt.GetIndexBuildProgress(indexID+1, []UniqueID{segID}) assert.Equal(t, int64(0), indexRows) - indexRows = mt.GetIndexBuildProgress(indexID, 5) + indexRows = mt.GetIndexBuildProgress(indexID, []UniqueID{segID + 1}) + assert.Equal(t, int64(0), indexRows) + + err := mt.MarkSegmentsIndexAsDeletedByBuildID([]UniqueID{buildID}) + assert.NoError(t, err) + + indexRows = mt.GetIndexBuildProgress(indexID, []UniqueID{segID}) assert.Equal(t, int64(0), indexRows) } diff --git a/internal/proto/data_coord.proto b/internal/proto/data_coord.proto index 0cd74f026d..badd69d955 100644 --- a/internal/proto/data_coord.proto +++ b/internal/proto/data_coord.proto @@ -395,6 +395,7 @@ message GetFlushedSegmentsRequest { common.MsgBase base = 1; int64 collectionID = 2; int64 partitionID = 3; + bool includeUnhealthy = 4; } message GetFlushedSegmentsResponse { diff --git a/internal/proto/datapb/data_coord.pb.go b/internal/proto/datapb/data_coord.pb.go index d16a747456..6f96d484eb 100644 --- a/internal/proto/datapb/data_coord.pb.go +++ b/internal/proto/datapb/data_coord.pb.go @@ -2692,6 +2692,7 @@ type GetFlushedSegmentsRequest struct { Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` CollectionID int64 `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"` PartitionID int64 `protobuf:"varint,3,opt,name=partitionID,proto3" json:"partitionID,omitempty"` + IncludeUnhealthy bool `protobuf:"varint,4,opt,name=includeUnhealthy,proto3" json:"includeUnhealthy,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -2743,6 +2744,13 @@ func (m *GetFlushedSegmentsRequest) GetPartitionID() int64 { return 0 } +func (m *GetFlushedSegmentsRequest) GetIncludeUnhealthy() bool { + if m != nil { + return m.IncludeUnhealthy + } + return false +} + type GetFlushedSegmentsResponse struct { Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` Segments []int64 `protobuf:"varint,2,rep,packed,name=segments,proto3" json:"segments,omitempty"` @@ -4879,280 +4887,280 @@ func init() { func init() { proto.RegisterFile("data_coord.proto", fileDescriptor_82cd95f524594f49) } var fileDescriptor_82cd95f524594f49 = []byte{ - // 4353 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3c, 0x4b, 0x6f, 0x1c, 0x47, - 0x7a, 0xea, 0x79, 0x71, 0xe6, 0x9b, 0x07, 0x87, 0x25, 0x99, 0x1c, 0x8d, 0x9e, 0x6e, 0x59, 0xb6, - 0x2c, 0xcb, 0x92, 0x4d, 0xc7, 0x58, 0x27, 0x5a, 0x7b, 0x21, 0x92, 0xa6, 0x3c, 0x09, 0xc9, 0xe5, - 0x36, 0x29, 0x0b, 0xd8, 0x0d, 0x30, 0x68, 0x4e, 0x17, 0x87, 0xbd, 0xec, 0xc7, 0xa8, 0xbb, 0x87, - 0x14, 0x37, 0x87, 0x35, 0xb2, 0x40, 0x00, 0x07, 0x41, 0x36, 0x48, 0x10, 0x24, 0x39, 0x04, 0x08, - 0x72, 0xda, 0x6c, 0x90, 0x20, 0xc0, 0x22, 0x97, 0x5c, 0x72, 0x35, 0x92, 0x83, 0x11, 0x04, 0xc8, - 0x0f, 0xc8, 0x21, 0xc9, 0x3d, 0xd7, 0x1c, 0x82, 0x7a, 0x74, 0xf5, 0x7b, 0xa6, 0x39, 0x23, 0x59, - 0x41, 0xf6, 0x36, 0x55, 0xfd, 0x55, 0x7d, 0x55, 0x5f, 0x7d, 0xef, 0xfa, 0x6a, 0xa0, 0xad, 0xa9, + // 4364 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3c, 0x4b, 0x6f, 0x24, 0x49, + 0x5a, 0x9d, 0xf5, 0x72, 0xd5, 0x57, 0x0f, 0x97, 0xa3, 0x7b, 0xec, 0xea, 0xea, 0xe7, 0x64, 0x4f, + 0xcf, 0xf4, 0xf4, 0xf4, 0x74, 0xcf, 0x78, 0x18, 0xed, 0x40, 0xef, 0xcc, 0xaa, 0x6d, 0x8f, 0xbb, + 0x0b, 0x6c, 0xaf, 0x37, 0xed, 0x9e, 0x96, 0x76, 0x91, 0x4a, 0xe9, 0xca, 0x70, 0x39, 0xd7, 0xf9, + 0xa8, 0xce, 0xcc, 0xb2, 0xdb, 0xcb, 0x61, 0x47, 0xac, 0x84, 0x34, 0x08, 0xb1, 0x08, 0x09, 0x01, + 0x07, 0x24, 0xc4, 0x69, 0x59, 0x04, 0x42, 0x5a, 0x71, 0xe1, 0xc2, 0x75, 0x04, 0x87, 0x15, 0x42, + 0xe2, 0x07, 0x70, 0x00, 0xee, 0x5c, 0x39, 0xa0, 0x78, 0x64, 0xe4, 0xbb, 0x2a, 0x5d, 0xd5, 0x3d, + 0x8d, 0xe0, 0x56, 0x11, 0xf9, 0x45, 0x7c, 0x11, 0x5f, 0x7c, 0xef, 0xf8, 0xa2, 0xa0, 0xad, 0xa9, 0x9e, 0xda, 0x1f, 0xd8, 0xb6, 0xa3, 0xdd, 0x1f, 0x39, 0xb6, 0x67, 0xa3, 0x25, 0x53, 0x37, 0x4e, 0xc6, 0x2e, 0x6b, 0xdd, 0x27, 0x9f, 0xbb, 0x8d, 0x81, 0x6d, 0x9a, 0xb6, 0xc5, 0xba, 0xba, 0x2d, 0xdd, 0xf2, 0xb0, 0x63, 0xa9, 0x06, 0x6f, 0x37, 0xc2, 0x03, 0xba, 0x0d, 0x77, 0x70, 0x84, 0x4d, - 0x95, 0xb5, 0xe4, 0x05, 0x28, 0x7f, 0x6a, 0x8e, 0xbc, 0x33, 0xf9, 0x4f, 0x25, 0x68, 0x6c, 0x1a, - 0x63, 0xf7, 0x48, 0xc1, 0xcf, 0xc6, 0xd8, 0xf5, 0xd0, 0x7b, 0x50, 0x3a, 0x50, 0x5d, 0xdc, 0x91, + 0x95, 0xb5, 0xe4, 0x05, 0x28, 0x7f, 0x6e, 0x8e, 0xbc, 0x33, 0xf9, 0x4f, 0x24, 0x68, 0x6c, 0x1a, + 0x63, 0xf7, 0x48, 0xc1, 0xcf, 0xc7, 0xd8, 0xf5, 0xd0, 0x07, 0x50, 0x3a, 0x50, 0x5d, 0xdc, 0x91, 0x6e, 0x4a, 0x77, 0xea, 0xab, 0x57, 0xef, 0x47, 0xb0, 0x72, 0x7c, 0xdb, 0xee, 0x70, 0x4d, 0x75, 0xb1, 0x42, 0x21, 0x11, 0x82, 0x92, 0x76, 0xd0, 0xdb, 0xe8, 0x14, 0x6e, 0x4a, 0x77, 0x8a, 0x0a, 0xfd, 0x8d, 0xae, 0x03, 0xb8, 0x78, 0x68, 0x62, 0xcb, 0xeb, 0x6d, 0xb8, 0x9d, 0xe2, 0xcd, 0xe2, 0x9d, 0xa2, 0x12, 0xea, 0x41, 0x32, 0x34, 0x06, 0xb6, 0x61, 0xe0, 0x81, 0xa7, 0xdb, 0x56, 0x6f, - 0xa3, 0x53, 0xa2, 0x63, 0x23, 0x7d, 0xf2, 0x7f, 0x48, 0xd0, 0xe4, 0x4b, 0x73, 0x47, 0xb6, 0xe5, - 0x62, 0xf4, 0x01, 0x54, 0x5c, 0x4f, 0xf5, 0xc6, 0x2e, 0x5f, 0xdd, 0x95, 0xd4, 0xd5, 0xed, 0x51, + 0xa3, 0x53, 0xa2, 0x63, 0x23, 0x7d, 0xf2, 0xbf, 0x4b, 0xd0, 0xe4, 0x4b, 0x73, 0x47, 0xb6, 0xe5, + 0x62, 0xf4, 0x11, 0x54, 0x5c, 0x4f, 0xf5, 0xc6, 0x2e, 0x5f, 0xdd, 0x95, 0xd4, 0xd5, 0xed, 0x51, 0x10, 0x85, 0x83, 0xa6, 0x2e, 0x2f, 0x8e, 0xbe, 0x98, 0x44, 0x1f, 0xdb, 0x42, 0x29, 0xb1, 0x85, 0x3b, 0xb0, 0x78, 0x48, 0x56, 0xb7, 0x17, 0x00, 0x95, 0x29, 0x50, 0xbc, 0x9b, 0xcc, 0xe4, 0xe9, - 0x26, 0xfe, 0xee, 0xe1, 0x1e, 0x56, 0x8d, 0x4e, 0x85, 0xe2, 0x0a, 0xf5, 0xc8, 0xff, 0x22, 0x41, + 0x26, 0xfe, 0xee, 0xe1, 0x1e, 0x56, 0x8d, 0x4e, 0x85, 0xe2, 0x0a, 0xf5, 0xc8, 0xff, 0x2c, 0x41, 0x5b, 0x80, 0xfb, 0xe7, 0x70, 0x09, 0xca, 0x03, 0x7b, 0x6c, 0x79, 0x74, 0xab, 0x4d, 0x85, 0x35, - 0xd0, 0xeb, 0xd0, 0x18, 0x1c, 0xa9, 0x96, 0x85, 0x8d, 0xbe, 0xa5, 0x9a, 0x98, 0x6e, 0xaa, 0xa6, + 0xd0, 0x9b, 0xd0, 0x18, 0x1c, 0xa9, 0x96, 0x85, 0x8d, 0xbe, 0xa5, 0x9a, 0x98, 0x6e, 0xaa, 0xa6, 0xd4, 0x79, 0xdf, 0x8e, 0x6a, 0xe2, 0x5c, 0x7b, 0xbb, 0x09, 0xf5, 0x91, 0xea, 0x78, 0x7a, 0x84, 0xfa, 0xe1, 0x2e, 0xd4, 0x85, 0xaa, 0xee, 0xf6, 0xcc, 0x91, 0xed, 0x78, 0x9d, 0xf2, 0x4d, 0xe9, 0x4e, 0x55, 0x11, 0x6d, 0x82, 0x41, 0xa7, 0xbf, 0xf6, 0x55, 0xf7, 0xb8, 0xb7, 0xc1, 0x77, 0x14, - 0xe9, 0x93, 0xff, 0x42, 0x82, 0xe5, 0x47, 0xae, 0xab, 0x0f, 0xad, 0xc4, 0xce, 0x96, 0xa1, 0x62, + 0xe9, 0x93, 0xff, 0x5c, 0x82, 0xe5, 0x47, 0xae, 0xab, 0x0f, 0xad, 0xc4, 0xce, 0x96, 0xa1, 0x62, 0xd9, 0x1a, 0xee, 0x6d, 0xd0, 0xad, 0x15, 0x15, 0xde, 0x42, 0x57, 0xa0, 0x36, 0xc2, 0xd8, 0xe9, 0x3b, 0xb6, 0xe1, 0x6f, 0xac, 0x4a, 0x3a, 0x14, 0xdb, 0xc0, 0xe8, 0x7b, 0xb0, 0xe4, 0xc6, 0x26, 0x62, 0x7c, 0x55, 0x5f, 0xbd, 0x75, 0x3f, 0x21, 0x19, 0xf7, 0xe3, 0x48, 0x95, 0xe4, 0x68, 0xf9, - 0x8b, 0x02, 0x5c, 0x14, 0x70, 0x6c, 0xad, 0xe4, 0x37, 0xa1, 0xbc, 0x8b, 0x87, 0x62, 0x79, 0xac, + 0xcb, 0x02, 0x5c, 0x14, 0x70, 0x6c, 0xad, 0xe4, 0x37, 0xa1, 0xbc, 0x8b, 0x87, 0x62, 0x79, 0xac, 0x91, 0x87, 0xf2, 0xe2, 0xc8, 0x8a, 0xe1, 0x23, 0xcb, 0xc1, 0xea, 0xf1, 0xf3, 0x28, 0x27, 0xcf, - 0xe3, 0x06, 0xd4, 0xf1, 0xf3, 0x91, 0xee, 0xe0, 0x3e, 0x61, 0x1c, 0x4a, 0xf2, 0x92, 0x02, 0xac, - 0x6b, 0x5f, 0x37, 0xc3, 0xb2, 0xb1, 0x90, 0x5b, 0x36, 0xe4, 0xbf, 0x94, 0x60, 0x25, 0x71, 0x4a, - 0x5c, 0xd8, 0x14, 0x68, 0xd3, 0x9d, 0x07, 0x94, 0x21, 0x62, 0x47, 0x08, 0xfe, 0xe6, 0x24, 0x82, + 0xe3, 0x06, 0xd4, 0xf1, 0x8b, 0x91, 0xee, 0xe0, 0x3e, 0x61, 0x1c, 0x4a, 0xf2, 0x92, 0x02, 0xac, + 0x6b, 0x5f, 0x37, 0xc3, 0xb2, 0xb1, 0x90, 0x5b, 0x36, 0xe4, 0xbf, 0x90, 0x60, 0x25, 0x71, 0x4a, + 0x5c, 0xd8, 0x14, 0x68, 0xd3, 0x9d, 0x07, 0x94, 0x21, 0x62, 0x47, 0x08, 0xfe, 0xf6, 0x24, 0x82, 0x07, 0xe0, 0x4a, 0x62, 0x7c, 0x68, 0x91, 0x85, 0xfc, 0x8b, 0x3c, 0x86, 0x95, 0xc7, 0xd8, 0xe3, - 0x08, 0xc8, 0x37, 0xec, 0xce, 0xae, 0xac, 0xa2, 0x52, 0x5d, 0x88, 0x4b, 0xb5, 0xfc, 0x77, 0x05, + 0x08, 0xc8, 0x37, 0xec, 0xce, 0xae, 0xac, 0xa2, 0x52, 0x5d, 0x88, 0x4b, 0xb5, 0xfc, 0xb7, 0x05, 0x21, 0x8b, 0x14, 0x55, 0xcf, 0x3a, 0xb4, 0xd1, 0x55, 0xa8, 0x09, 0x10, 0xce, 0x15, 0x41, 0x07, - 0xfa, 0x16, 0x94, 0xc9, 0x4a, 0x19, 0x4b, 0xb4, 0x56, 0x5f, 0x4f, 0xdf, 0x53, 0x68, 0x4e, 0x85, + 0xfa, 0x16, 0x94, 0xc9, 0x4a, 0x19, 0x4b, 0xb4, 0x56, 0xdf, 0x4c, 0xdf, 0x53, 0x68, 0x4e, 0x85, 0xc1, 0xa3, 0x1e, 0xb4, 0x5c, 0x4f, 0x75, 0xbc, 0xfe, 0xc8, 0x76, 0xe9, 0x39, 0x53, 0xc6, 0xa9, 0xaf, 0xca, 0xd1, 0x19, 0x84, 0x5a, 0xdf, 0x76, 0x87, 0xbb, 0x1c, 0x52, 0x69, 0xd2, 0x91, 0x7e, - 0x13, 0x7d, 0x0a, 0x0d, 0x6c, 0x69, 0xc1, 0x44, 0xa5, 0xdc, 0x13, 0xd5, 0xb1, 0xa5, 0x89, 0x69, + 0x13, 0x7d, 0x0e, 0x0d, 0x6c, 0x69, 0xc1, 0x44, 0xa5, 0xdc, 0x13, 0xd5, 0xb1, 0xa5, 0x89, 0x69, 0x82, 0xf3, 0x29, 0xe7, 0x3f, 0x9f, 0xdf, 0x93, 0xa0, 0x93, 0x3c, 0xa0, 0x79, 0x54, 0xf6, 0x43, - 0x36, 0x08, 0xb3, 0x03, 0x9a, 0x28, 0xe1, 0xe2, 0x90, 0x14, 0x3e, 0x44, 0xfe, 0x63, 0x09, 0x5e, - 0x0b, 0x96, 0x43, 0x3f, 0xbd, 0x2c, 0x6e, 0x41, 0x77, 0xa1, 0xad, 0x5b, 0x03, 0x63, 0xac, 0xe1, - 0x27, 0xd6, 0x67, 0x58, 0x35, 0xbc, 0xa3, 0x33, 0x7a, 0x86, 0x55, 0x25, 0xd1, 0x2f, 0xff, 0x44, - 0x82, 0xe5, 0xf8, 0xba, 0xe6, 0x21, 0xd2, 0xaf, 0x40, 0x59, 0xb7, 0x0e, 0x6d, 0x9f, 0x46, 0xd7, - 0x27, 0x08, 0x25, 0xc1, 0xc5, 0x80, 0x65, 0x13, 0xae, 0x3c, 0xc6, 0x5e, 0xcf, 0x72, 0xb1, 0xe3, - 0xad, 0xe9, 0x96, 0x61, 0x0f, 0x77, 0x55, 0xef, 0x68, 0x0e, 0x81, 0x8a, 0xc8, 0x46, 0x21, 0x26, - 0x1b, 0xf2, 0xcf, 0x24, 0xb8, 0x9a, 0x8e, 0x8f, 0x6f, 0xbd, 0x0b, 0xd5, 0x43, 0x1d, 0x1b, 0x1a, - 0xa1, 0xaf, 0x44, 0xe9, 0x2b, 0xda, 0x44, 0xb0, 0x46, 0x04, 0x98, 0xef, 0xf0, 0xf5, 0x0c, 0x6e, - 0xde, 0xf3, 0x1c, 0xdd, 0x1a, 0x6e, 0xe9, 0xae, 0xa7, 0x30, 0xf8, 0x10, 0x3d, 0x8b, 0xf9, 0xd9, - 0xf8, 0x77, 0x25, 0xb8, 0xfe, 0x18, 0x7b, 0xeb, 0x42, 0x2f, 0x93, 0xef, 0xba, 0xeb, 0xe9, 0x03, - 0xf7, 0xc5, 0xfa, 0x46, 0x39, 0x0c, 0xb4, 0xfc, 0x53, 0x09, 0x6e, 0x64, 0x2e, 0x86, 0x93, 0x8e, - 0xeb, 0x1d, 0x5f, 0x2b, 0xa7, 0xeb, 0x9d, 0xdf, 0xc0, 0x67, 0x9f, 0xab, 0xc6, 0x18, 0xef, 0xaa, - 0xba, 0xc3, 0xf4, 0xce, 0x8c, 0x5a, 0xf8, 0x6f, 0x24, 0xb8, 0xf6, 0x18, 0x7b, 0xbb, 0xbe, 0x4d, - 0x7a, 0x85, 0xd4, 0x21, 0x30, 0x21, 0xdb, 0xe8, 0x3b, 0x67, 0x91, 0x3e, 0xf9, 0xf7, 0xd9, 0x71, - 0xa6, 0xae, 0xf7, 0x95, 0x10, 0xf0, 0x3a, 0x95, 0x84, 0x90, 0x48, 0xae, 0x33, 0xd7, 0x81, 0x93, - 0x4f, 0xfe, 0x73, 0x09, 0x2e, 0x3f, 0x1a, 0x3c, 0x1b, 0xeb, 0x0e, 0xe6, 0x40, 0x5b, 0xf6, 0xe0, - 0x78, 0x76, 0xe2, 0x06, 0x6e, 0x56, 0x21, 0xe2, 0x66, 0x4d, 0x73, 0xcd, 0x97, 0xa1, 0xe2, 0x31, - 0xbf, 0x8e, 0x79, 0x2a, 0xbc, 0x45, 0xd7, 0xa7, 0x60, 0x03, 0xab, 0xee, 0xff, 0xcd, 0xf5, 0xfd, - 0xb4, 0x04, 0x8d, 0xcf, 0xb9, 0x3b, 0x46, 0xad, 0x76, 0x9c, 0x93, 0xa4, 0x74, 0xc7, 0x2b, 0xe4, - 0xc1, 0xa5, 0x39, 0x75, 0x8f, 0xa1, 0xe9, 0x62, 0x7c, 0x3c, 0x8b, 0x8d, 0x6e, 0x90, 0x81, 0xc2, - 0xb6, 0x6e, 0xc1, 0xd2, 0xd8, 0xa2, 0xa1, 0x01, 0xd6, 0x38, 0x01, 0x19, 0xe7, 0x4e, 0xd7, 0xdd, - 0xc9, 0x81, 0xe8, 0x33, 0x1e, 0x7d, 0x84, 0xe6, 0x2a, 0xe7, 0x9a, 0x2b, 0x3e, 0x0c, 0xf5, 0xa0, - 0xad, 0x39, 0xf6, 0x68, 0x84, 0xb5, 0xbe, 0xeb, 0x4f, 0x55, 0xc9, 0x37, 0x15, 0x1f, 0x27, 0xa6, - 0x7a, 0x0f, 0x2e, 0xc6, 0x57, 0xda, 0xd3, 0x88, 0x43, 0x4a, 0xce, 0x30, 0xed, 0x13, 0xba, 0x07, - 0x4b, 0x49, 0xf8, 0x2a, 0x85, 0x4f, 0x7e, 0x40, 0xef, 0x02, 0x8a, 0x2d, 0x95, 0x80, 0xd7, 0x18, - 0x78, 0x74, 0x31, 0x3d, 0xcd, 0x95, 0xbf, 0x94, 0x60, 0xf9, 0xa9, 0xea, 0x0d, 0x8e, 0x36, 0x4c, - 0x2e, 0x6b, 0x73, 0xe8, 0xaa, 0x8f, 0xa1, 0x76, 0xc2, 0xf9, 0xc2, 0x37, 0x48, 0x37, 0x52, 0xe8, - 0x13, 0xe6, 0x40, 0x25, 0x18, 0x41, 0xe2, 0xa1, 0x4b, 0x9b, 0xa1, 0xb8, 0xf0, 0x15, 0x68, 0xcd, - 0x29, 0x01, 0xad, 0xfc, 0x1c, 0x80, 0x2f, 0x6e, 0xdb, 0x1d, 0xce, 0xb0, 0xae, 0x8f, 0x60, 0x81, - 0xcf, 0xc6, 0xd5, 0xe2, 0x34, 0xfe, 0xf1, 0xc1, 0xe5, 0x9f, 0x57, 0xa0, 0x1e, 0xfa, 0x80, 0x5a, - 0x50, 0x10, 0xf2, 0x5a, 0x48, 0xd9, 0x5d, 0x61, 0x7a, 0x08, 0x55, 0x4c, 0x86, 0x50, 0xb7, 0xa1, - 0xa5, 0x53, 0x3f, 0xa4, 0xcf, 0x4f, 0x85, 0x2a, 0x90, 0x9a, 0xd2, 0x64, 0xbd, 0x9c, 0x45, 0xd0, - 0x75, 0xa8, 0x5b, 0x63, 0xb3, 0x6f, 0x1f, 0xf6, 0x1d, 0xfb, 0xd4, 0xe5, 0xb1, 0x58, 0xcd, 0x1a, - 0x9b, 0xdf, 0x3d, 0x54, 0xec, 0x53, 0x37, 0x70, 0xf7, 0x2b, 0xe7, 0x74, 0xf7, 0xaf, 0x43, 0xdd, - 0x54, 0x9f, 0x93, 0x59, 0xfb, 0xd6, 0xd8, 0xa4, 0x61, 0x5a, 0x51, 0xa9, 0x99, 0xea, 0x73, 0xc5, - 0x3e, 0xdd, 0x19, 0x9b, 0xe8, 0x0e, 0xb4, 0x0d, 0xd5, 0xf5, 0xfa, 0xe1, 0x38, 0xaf, 0x4a, 0xe3, - 0xbc, 0x16, 0xe9, 0xff, 0x34, 0x88, 0xf5, 0x92, 0x81, 0x43, 0x6d, 0x8e, 0xc0, 0x41, 0x33, 0x8d, - 0x60, 0x22, 0xc8, 0x1f, 0x38, 0x68, 0xa6, 0x21, 0xa6, 0xf9, 0x08, 0x16, 0x0e, 0xa8, 0x77, 0xe7, - 0x76, 0xea, 0x99, 0xba, 0x63, 0x93, 0x38, 0x76, 0xcc, 0x09, 0x54, 0x7c, 0x70, 0xf4, 0x6d, 0xa8, - 0x51, 0xa3, 0x4a, 0xc7, 0x36, 0x72, 0x8d, 0x0d, 0x06, 0x90, 0xd1, 0x1a, 0x36, 0x3c, 0x95, 0x8e, - 0x6e, 0xe6, 0x1b, 0x2d, 0x06, 0x10, 0x7d, 0x35, 0x70, 0xb0, 0xea, 0x61, 0x6d, 0xed, 0x6c, 0xdd, - 0x36, 0x47, 0x2a, 0x65, 0xa6, 0x4e, 0x8b, 0x7a, 0xf0, 0x69, 0x9f, 0xd0, 0x9b, 0xd0, 0x1a, 0x88, - 0xd6, 0xa6, 0x63, 0x9b, 0x9d, 0x45, 0x2a, 0x47, 0xb1, 0x5e, 0x74, 0x0d, 0xc0, 0xd7, 0x54, 0xaa, - 0xd7, 0x69, 0xd3, 0x53, 0xac, 0xf1, 0x9e, 0x47, 0x34, 0x8d, 0xa3, 0xbb, 0x7d, 0x96, 0x30, 0xd1, - 0xad, 0x61, 0x67, 0x89, 0x62, 0xac, 0xfb, 0x19, 0x16, 0xdd, 0x1a, 0xa2, 0x15, 0x58, 0xd0, 0xdd, - 0xfe, 0xa1, 0x7a, 0x8c, 0x3b, 0x88, 0x7e, 0xad, 0xe8, 0xee, 0xa6, 0x7a, 0x8c, 0xe5, 0x1f, 0xc3, - 0xa5, 0x80, 0xbb, 0x42, 0x27, 0x99, 0x64, 0x0a, 0x69, 0x56, 0xa6, 0x98, 0xec, 0xd3, 0x7f, 0x5d, - 0x82, 0xe5, 0x3d, 0xf5, 0x04, 0xbf, 0xfc, 0xf0, 0x21, 0x97, 0x5a, 0xdb, 0x82, 0x25, 0x1a, 0x31, - 0xac, 0x86, 0xd6, 0x33, 0xc1, 0xae, 0x86, 0x59, 0x21, 0x39, 0x10, 0x7d, 0x87, 0x38, 0x04, 0x78, - 0x70, 0xbc, 0x6b, 0xeb, 0x81, 0x4d, 0xbd, 0x96, 0x32, 0xcf, 0xba, 0x80, 0x52, 0xc2, 0x23, 0xd0, - 0x2e, 0x2c, 0x46, 0x8f, 0xc1, 0xb7, 0xa6, 0x6f, 0x4d, 0x0c, 0x62, 0x03, 0xea, 0x2b, 0xad, 0xc8, - 0x61, 0xb8, 0xa8, 0x03, 0x0b, 0xdc, 0x14, 0x52, 0x9d, 0x51, 0x55, 0xfc, 0x26, 0xda, 0x85, 0x8b, - 0x6c, 0x07, 0x7b, 0x5c, 0x20, 0xd8, 0xe6, 0xab, 0xb9, 0x36, 0x9f, 0x36, 0x34, 0x2a, 0x4f, 0xb5, - 0xf3, 0xca, 0x53, 0x07, 0x16, 0x38, 0x8f, 0x53, 0x3d, 0x52, 0x55, 0xfc, 0x26, 0x39, 0xe6, 0x80, - 0xdb, 0xeb, 0xf4, 0x5b, 0xd0, 0x41, 0x42, 0x2f, 0x08, 0xe8, 0x39, 0x25, 0xdd, 0xf2, 0x09, 0x54, - 0x05, 0x87, 0x17, 0x72, 0x73, 0xb8, 0x18, 0x13, 0xd7, 0xef, 0xc5, 0x98, 0x7e, 0x97, 0xff, 0x59, - 0x82, 0xc6, 0x06, 0xd9, 0xd2, 0x96, 0x3d, 0xa4, 0xd6, 0xe8, 0x36, 0xb4, 0x1c, 0x3c, 0xb0, 0x1d, - 0xad, 0x8f, 0x2d, 0xcf, 0xd1, 0x31, 0x8b, 0xd2, 0x4b, 0x4a, 0x93, 0xf5, 0x7e, 0xca, 0x3a, 0x09, - 0x18, 0x51, 0xd9, 0xae, 0xa7, 0x9a, 0xa3, 0xfe, 0x21, 0x51, 0x0d, 0x05, 0x06, 0x26, 0x7a, 0xa9, - 0x66, 0x78, 0x1d, 0x1a, 0x01, 0x98, 0x67, 0x53, 0xfc, 0x25, 0xa5, 0x2e, 0xfa, 0xf6, 0x6d, 0xf4, - 0x06, 0xb4, 0x28, 0x4d, 0xfb, 0x86, 0x3d, 0xec, 0x93, 0x88, 0x96, 0x1b, 0xaa, 0x86, 0xc6, 0x97, - 0x45, 0xce, 0x2a, 0x0a, 0xe5, 0xea, 0x3f, 0xc2, 0xdc, 0x54, 0x09, 0xa8, 0x3d, 0xfd, 0x47, 0x58, - 0xfe, 0x27, 0x09, 0x9a, 0x1b, 0xaa, 0xa7, 0xee, 0xd8, 0x1a, 0xde, 0x9f, 0xd1, 0xb0, 0xe7, 0x48, - 0x7d, 0x5e, 0x85, 0x9a, 0xd8, 0x01, 0xdf, 0x52, 0xd0, 0x81, 0x36, 0xa1, 0xe5, 0xbb, 0x96, 0x7d, - 0x16, 0x71, 0x95, 0x32, 0x1d, 0xa8, 0x90, 0xe5, 0x74, 0x95, 0xa6, 0x3f, 0x8c, 0x36, 0xe5, 0x4d, - 0x68, 0x84, 0x3f, 0x13, 0xac, 0x7b, 0x71, 0x46, 0x11, 0x1d, 0x84, 0x1b, 0x77, 0xc6, 0x26, 0x39, - 0x53, 0xae, 0x58, 0xfc, 0xa6, 0xfc, 0x13, 0x09, 0x9a, 0xdc, 0xdc, 0xef, 0x89, 0x4b, 0x02, 0xba, - 0x35, 0x89, 0x6e, 0x8d, 0xfe, 0x46, 0xbf, 0x16, 0xcd, 0xeb, 0xbd, 0x91, 0xaa, 0x04, 0xe8, 0x24, - 0xd4, 0xc9, 0x8c, 0xd8, 0xfa, 0x3c, 0x31, 0xfe, 0x17, 0x84, 0xd1, 0xf8, 0xd1, 0x50, 0x46, 0xeb, - 0xc0, 0x82, 0xaa, 0x69, 0x0e, 0x76, 0x5d, 0xbe, 0x0e, 0xbf, 0x49, 0xbe, 0x9c, 0x60, 0xc7, 0xf5, - 0x59, 0xbe, 0xa8, 0xf8, 0x4d, 0xf4, 0x6d, 0xa8, 0x0a, 0xaf, 0x94, 0xa5, 0xc3, 0x6f, 0x66, 0xaf, - 0x93, 0x47, 0xa4, 0x62, 0x84, 0xfc, 0xf7, 0x05, 0x68, 0x71, 0x82, 0xad, 0x71, 0x7b, 0x3c, 0x59, - 0xf8, 0xd6, 0xa0, 0x71, 0x18, 0xc8, 0xfe, 0xa4, 0xdc, 0x53, 0x58, 0x45, 0x44, 0xc6, 0x4c, 0x13, - 0xc0, 0xa8, 0x47, 0x50, 0x9a, 0xcb, 0x23, 0x28, 0x9f, 0x57, 0x83, 0x25, 0x7d, 0xc4, 0x4a, 0x8a, - 0x8f, 0x28, 0xff, 0x26, 0xd4, 0x43, 0x13, 0x50, 0x0d, 0xcd, 0x92, 0x56, 0x9c, 0x62, 0x7e, 0x13, - 0x7d, 0x10, 0xf8, 0x45, 0x8c, 0x54, 0x97, 0x53, 0xd6, 0x12, 0x73, 0x89, 0xe4, 0x7f, 0x94, 0xa0, - 0xc2, 0x67, 0xbe, 0x01, 0x75, 0xae, 0x74, 0xa8, 0xcf, 0xc8, 0x66, 0x07, 0xde, 0x45, 0x9c, 0xc6, - 0x17, 0xa7, 0x75, 0x2e, 0x43, 0x35, 0xa6, 0x6f, 0x16, 0xb8, 0x59, 0xf0, 0x3f, 0x85, 0x94, 0x0c, - 0xf9, 0x44, 0xf4, 0x0b, 0xba, 0x04, 0x65, 0xc3, 0x1e, 0x8a, 0x4b, 0x20, 0xd6, 0x90, 0xbf, 0x92, - 0x68, 0xce, 0x5e, 0xc1, 0x03, 0xfb, 0x04, 0x3b, 0x67, 0xf3, 0x27, 0x3b, 0x1f, 0x86, 0xd8, 0x3c, - 0x67, 0xf0, 0x25, 0x06, 0xa0, 0x87, 0xc1, 0x21, 0x14, 0xd3, 0x32, 0x3d, 0x61, 0xbd, 0xc3, 0x99, - 0x34, 0x38, 0x8c, 0x3f, 0x60, 0x69, 0xdb, 0xe8, 0x56, 0x66, 0xf5, 0x76, 0x5e, 0x48, 0x20, 0x23, - 0x7f, 0x2d, 0x41, 0x37, 0x48, 0x25, 0xb9, 0x6b, 0x67, 0xf3, 0x5e, 0x8a, 0xbc, 0x98, 0xf8, 0xea, + 0x36, 0x08, 0xb3, 0x03, 0x9a, 0x28, 0xe1, 0xe2, 0x90, 0x14, 0x3e, 0x44, 0xfe, 0x23, 0x09, 0xde, + 0x08, 0x96, 0x43, 0x3f, 0xbd, 0x2a, 0x6e, 0x41, 0x77, 0xa1, 0xad, 0x5b, 0x03, 0x63, 0xac, 0xe1, + 0xa7, 0xd6, 0x13, 0xac, 0x1a, 0xde, 0xd1, 0x19, 0x3d, 0xc3, 0xaa, 0x92, 0xe8, 0x97, 0x7f, 0x22, + 0xc1, 0x72, 0x7c, 0x5d, 0xf3, 0x10, 0xe9, 0x57, 0xa0, 0xac, 0x5b, 0x87, 0xb6, 0x4f, 0xa3, 0xeb, + 0x13, 0x84, 0x92, 0xe0, 0x62, 0xc0, 0xb2, 0x09, 0x57, 0x1e, 0x63, 0xaf, 0x67, 0xb9, 0xd8, 0xf1, + 0xd6, 0x74, 0xcb, 0xb0, 0x87, 0xbb, 0xaa, 0x77, 0x34, 0x87, 0x40, 0x45, 0x64, 0xa3, 0x10, 0x93, + 0x0d, 0xf9, 0x67, 0x12, 0x5c, 0x4d, 0xc7, 0xc7, 0xb7, 0xde, 0x85, 0xea, 0xa1, 0x8e, 0x0d, 0x8d, + 0xd0, 0x57, 0xa2, 0xf4, 0x15, 0x6d, 0x22, 0x58, 0x23, 0x02, 0xcc, 0x77, 0xf8, 0x66, 0x06, 0x37, + 0xef, 0x79, 0x8e, 0x6e, 0x0d, 0xb7, 0x74, 0xd7, 0x53, 0x18, 0x7c, 0x88, 0x9e, 0xc5, 0xfc, 0x6c, + 0xfc, 0xbb, 0x12, 0x5c, 0x7f, 0x8c, 0xbd, 0x75, 0xa1, 0x97, 0xc9, 0x77, 0xdd, 0xf5, 0xf4, 0x81, + 0xfb, 0x72, 0x7d, 0xa3, 0x1c, 0x06, 0x5a, 0xfe, 0xa9, 0x04, 0x37, 0x32, 0x17, 0xc3, 0x49, 0xc7, + 0xf5, 0x8e, 0xaf, 0x95, 0xd3, 0xf5, 0xce, 0x6f, 0xe0, 0xb3, 0x2f, 0x54, 0x63, 0x8c, 0x77, 0x55, + 0xdd, 0x61, 0x7a, 0x67, 0x46, 0x2d, 0xfc, 0xd7, 0x12, 0x5c, 0x7b, 0x8c, 0xbd, 0x5d, 0xdf, 0x26, + 0xbd, 0x46, 0xea, 0x10, 0x98, 0x90, 0x6d, 0xf4, 0x9d, 0xb3, 0x48, 0x9f, 0xfc, 0xfb, 0xec, 0x38, + 0x53, 0xd7, 0xfb, 0x5a, 0x08, 0x78, 0x9d, 0x4a, 0x42, 0x48, 0x24, 0xd7, 0x99, 0xeb, 0xc0, 0xc9, + 0x27, 0xff, 0x99, 0x04, 0x97, 0x1f, 0x0d, 0x9e, 0x8f, 0x75, 0x07, 0x73, 0xa0, 0x2d, 0x7b, 0x70, + 0x3c, 0x3b, 0x71, 0x03, 0x37, 0xab, 0x10, 0x71, 0xb3, 0xa6, 0xb9, 0xe6, 0xcb, 0x50, 0xf1, 0x98, + 0x5f, 0xc7, 0x3c, 0x15, 0xde, 0xa2, 0xeb, 0x53, 0xb0, 0x81, 0x55, 0xf7, 0x7f, 0xe7, 0xfa, 0x7e, + 0x5a, 0x82, 0xc6, 0x17, 0xdc, 0x1d, 0xa3, 0x56, 0x3b, 0xce, 0x49, 0x52, 0xba, 0xe3, 0x15, 0xf2, + 0xe0, 0xd2, 0x9c, 0xba, 0xc7, 0xd0, 0x74, 0x31, 0x3e, 0x9e, 0xc5, 0x46, 0x37, 0xc8, 0x40, 0x61, + 0x5b, 0xb7, 0x60, 0x69, 0x6c, 0xd1, 0xd0, 0x00, 0x6b, 0x9c, 0x80, 0x8c, 0x73, 0xa7, 0xeb, 0xee, + 0xe4, 0x40, 0xf4, 0x84, 0x47, 0x1f, 0xa1, 0xb9, 0xca, 0xb9, 0xe6, 0x8a, 0x0f, 0x43, 0x3d, 0x68, + 0x6b, 0x8e, 0x3d, 0x1a, 0x61, 0xad, 0xef, 0xfa, 0x53, 0x55, 0xf2, 0x4d, 0xc5, 0xc7, 0x89, 0xa9, + 0x3e, 0x80, 0x8b, 0xf1, 0x95, 0xf6, 0x34, 0xe2, 0x90, 0x92, 0x33, 0x4c, 0xfb, 0x84, 0xee, 0xc1, + 0x52, 0x12, 0xbe, 0x4a, 0xe1, 0x93, 0x1f, 0xd0, 0xfb, 0x80, 0x62, 0x4b, 0x25, 0xe0, 0x35, 0x06, + 0x1e, 0x5d, 0x4c, 0x4f, 0x73, 0xe5, 0xaf, 0x24, 0x58, 0x7e, 0xa6, 0x7a, 0x83, 0xa3, 0x0d, 0x93, + 0xcb, 0xda, 0x1c, 0xba, 0xea, 0x53, 0xa8, 0x9d, 0x70, 0xbe, 0xf0, 0x0d, 0xd2, 0x8d, 0x14, 0xfa, + 0x84, 0x39, 0x50, 0x09, 0x46, 0x90, 0x78, 0xe8, 0xd2, 0x66, 0x28, 0x2e, 0x7c, 0x0d, 0x5a, 0x73, + 0x4a, 0x40, 0x2b, 0xbf, 0x00, 0xe0, 0x8b, 0xdb, 0x76, 0x87, 0x33, 0xac, 0xeb, 0x13, 0x58, 0xe0, + 0xb3, 0x71, 0xb5, 0x38, 0x8d, 0x7f, 0x7c, 0x70, 0xf9, 0xe7, 0x15, 0xa8, 0x87, 0x3e, 0xa0, 0x16, + 0x14, 0x84, 0xbc, 0x16, 0x52, 0x76, 0x57, 0x98, 0x1e, 0x42, 0x15, 0x93, 0x21, 0xd4, 0x6d, 0x68, + 0xe9, 0xd4, 0x0f, 0xe9, 0xf3, 0x53, 0xa1, 0x0a, 0xa4, 0xa6, 0x34, 0x59, 0x2f, 0x67, 0x11, 0x74, + 0x1d, 0xea, 0xd6, 0xd8, 0xec, 0xdb, 0x87, 0x7d, 0xc7, 0x3e, 0x75, 0x79, 0x2c, 0x56, 0xb3, 0xc6, + 0xe6, 0x77, 0x0f, 0x15, 0xfb, 0xd4, 0x0d, 0xdc, 0xfd, 0xca, 0x39, 0xdd, 0xfd, 0xeb, 0x50, 0x37, + 0xd5, 0x17, 0x64, 0xd6, 0xbe, 0x35, 0x36, 0x69, 0x98, 0x56, 0x54, 0x6a, 0xa6, 0xfa, 0x42, 0xb1, + 0x4f, 0x77, 0xc6, 0x26, 0xba, 0x03, 0x6d, 0x43, 0x75, 0xbd, 0x7e, 0x38, 0xce, 0xab, 0xd2, 0x38, + 0xaf, 0x45, 0xfa, 0x3f, 0x0f, 0x62, 0xbd, 0x64, 0xe0, 0x50, 0x9b, 0x23, 0x70, 0xd0, 0x4c, 0x23, + 0x98, 0x08, 0xf2, 0x07, 0x0e, 0x9a, 0x69, 0x88, 0x69, 0x3e, 0x81, 0x85, 0x03, 0xea, 0xdd, 0xb9, + 0x9d, 0x7a, 0xa6, 0xee, 0xd8, 0x24, 0x8e, 0x1d, 0x73, 0x02, 0x15, 0x1f, 0x1c, 0x7d, 0x1b, 0x6a, + 0xd4, 0xa8, 0xd2, 0xb1, 0x8d, 0x5c, 0x63, 0x83, 0x01, 0x64, 0xb4, 0x86, 0x0d, 0x4f, 0xa5, 0xa3, + 0x9b, 0xf9, 0x46, 0x8b, 0x01, 0x44, 0x5f, 0x0d, 0x1c, 0xac, 0x7a, 0x58, 0x5b, 0x3b, 0x5b, 0xb7, + 0xcd, 0x91, 0x4a, 0x99, 0xa9, 0xd3, 0xa2, 0x1e, 0x7c, 0xda, 0x27, 0xf4, 0x36, 0xb4, 0x06, 0xa2, + 0xb5, 0xe9, 0xd8, 0x66, 0x67, 0x91, 0xca, 0x51, 0xac, 0x17, 0x5d, 0x03, 0xf0, 0x35, 0x95, 0xea, + 0x75, 0xda, 0xf4, 0x14, 0x6b, 0xbc, 0xe7, 0x11, 0x4d, 0xe3, 0xe8, 0x6e, 0x9f, 0x25, 0x4c, 0x74, + 0x6b, 0xd8, 0x59, 0xa2, 0x18, 0xeb, 0x7e, 0x86, 0x45, 0xb7, 0x86, 0x68, 0x05, 0x16, 0x74, 0xb7, + 0x7f, 0xa8, 0x1e, 0xe3, 0x0e, 0xa2, 0x5f, 0x2b, 0xba, 0xbb, 0xa9, 0x1e, 0x63, 0xf9, 0xc7, 0x70, + 0x29, 0xe0, 0xae, 0xd0, 0x49, 0x26, 0x99, 0x42, 0x9a, 0x95, 0x29, 0x26, 0xfb, 0xf4, 0xbf, 0x2c, + 0xc1, 0xf2, 0x9e, 0x7a, 0x82, 0x5f, 0x7d, 0xf8, 0x90, 0x4b, 0xad, 0x6d, 0xc1, 0x12, 0x8d, 0x18, + 0x56, 0x43, 0xeb, 0x99, 0x60, 0x57, 0xc3, 0xac, 0x90, 0x1c, 0x88, 0xbe, 0x43, 0x1c, 0x02, 0x3c, + 0x38, 0xde, 0xb5, 0xf5, 0xc0, 0xa6, 0x5e, 0x4b, 0x99, 0x67, 0x5d, 0x40, 0x29, 0xe1, 0x11, 0x68, + 0x17, 0x16, 0xa3, 0xc7, 0xe0, 0x5b, 0xd3, 0x77, 0x26, 0x06, 0xb1, 0x01, 0xf5, 0x95, 0x56, 0xe4, + 0x30, 0x5c, 0xd4, 0x81, 0x05, 0x6e, 0x0a, 0xa9, 0xce, 0xa8, 0x2a, 0x7e, 0x13, 0xed, 0xc2, 0x45, + 0xb6, 0x83, 0x3d, 0x2e, 0x10, 0x6c, 0xf3, 0xd5, 0x5c, 0x9b, 0x4f, 0x1b, 0x1a, 0x95, 0xa7, 0xda, + 0x79, 0xe5, 0xa9, 0x03, 0x0b, 0x9c, 0xc7, 0xa9, 0x1e, 0xa9, 0x2a, 0x7e, 0x93, 0x1c, 0x73, 0xc0, + 0xed, 0x75, 0xfa, 0x2d, 0xe8, 0x20, 0xa1, 0x17, 0x04, 0xf4, 0x9c, 0x92, 0x6e, 0xf9, 0x0c, 0xaa, + 0x82, 0xc3, 0x0b, 0xb9, 0x39, 0x5c, 0x8c, 0x89, 0xeb, 0xf7, 0x62, 0x4c, 0xbf, 0xcb, 0xff, 0x24, + 0x41, 0x63, 0x83, 0x6c, 0x69, 0xcb, 0x1e, 0x52, 0x6b, 0x74, 0x1b, 0x5a, 0x0e, 0x1e, 0xd8, 0x8e, + 0xd6, 0xc7, 0x96, 0xe7, 0xe8, 0x98, 0x45, 0xe9, 0x25, 0xa5, 0xc9, 0x7a, 0x3f, 0x67, 0x9d, 0x04, + 0x8c, 0xa8, 0x6c, 0xd7, 0x53, 0xcd, 0x51, 0xff, 0x90, 0xa8, 0x86, 0x02, 0x03, 0x13, 0xbd, 0x54, + 0x33, 0xbc, 0x09, 0x8d, 0x00, 0xcc, 0xb3, 0x29, 0xfe, 0x92, 0x52, 0x17, 0x7d, 0xfb, 0x36, 0x7a, + 0x0b, 0x5a, 0x94, 0xa6, 0x7d, 0xc3, 0x1e, 0xf6, 0x49, 0x44, 0xcb, 0x0d, 0x55, 0x43, 0xe3, 0xcb, + 0x22, 0x67, 0x15, 0x85, 0x72, 0xf5, 0x1f, 0x61, 0x6e, 0xaa, 0x04, 0xd4, 0x9e, 0xfe, 0x23, 0x2c, + 0xff, 0xa3, 0x04, 0xcd, 0x0d, 0xd5, 0x53, 0x77, 0x6c, 0x0d, 0xef, 0xcf, 0x68, 0xd8, 0x73, 0xa4, + 0x3e, 0xaf, 0x42, 0x4d, 0xec, 0x80, 0x6f, 0x29, 0xe8, 0x40, 0x9b, 0xd0, 0xf2, 0x5d, 0xcb, 0x3e, + 0x8b, 0xb8, 0x4a, 0x99, 0x0e, 0x54, 0xc8, 0x72, 0xba, 0x4a, 0xd3, 0x1f, 0x46, 0x9b, 0xf2, 0x26, + 0x34, 0xc2, 0x9f, 0x09, 0xd6, 0xbd, 0x38, 0xa3, 0x88, 0x0e, 0xc2, 0x8d, 0x3b, 0x63, 0x93, 0x9c, + 0x29, 0x57, 0x2c, 0x7e, 0x53, 0xfe, 0x89, 0x04, 0x4d, 0x6e, 0xee, 0xf7, 0xc4, 0x25, 0x01, 0xdd, + 0x9a, 0x44, 0xb7, 0x46, 0x7f, 0xa3, 0x5f, 0x8b, 0xe6, 0xf5, 0xde, 0x4a, 0x55, 0x02, 0x74, 0x12, + 0xea, 0x64, 0x46, 0x6c, 0x7d, 0x9e, 0x18, 0xff, 0x4b, 0xc2, 0x68, 0xfc, 0x68, 0x28, 0xa3, 0x75, + 0x60, 0x41, 0xd5, 0x34, 0x07, 0xbb, 0x2e, 0x5f, 0x87, 0xdf, 0x24, 0x5f, 0x4e, 0xb0, 0xe3, 0xfa, + 0x2c, 0x5f, 0x54, 0xfc, 0x26, 0xfa, 0x36, 0x54, 0x85, 0x57, 0xca, 0xd2, 0xe1, 0x37, 0xb3, 0xd7, + 0xc9, 0x23, 0x52, 0x31, 0x42, 0xfe, 0xbb, 0x02, 0xb4, 0x38, 0xc1, 0xd6, 0xb8, 0x3d, 0x9e, 0x2c, + 0x7c, 0x6b, 0xd0, 0x38, 0x0c, 0x64, 0x7f, 0x52, 0xee, 0x29, 0xac, 0x22, 0x22, 0x63, 0xa6, 0x09, + 0x60, 0xd4, 0x23, 0x28, 0xcd, 0xe5, 0x11, 0x94, 0xcf, 0xab, 0xc1, 0x92, 0x3e, 0x62, 0x25, 0xc5, + 0x47, 0x94, 0x7f, 0x13, 0xea, 0xa1, 0x09, 0xa8, 0x86, 0x66, 0x49, 0x2b, 0x4e, 0x31, 0xbf, 0x89, + 0x3e, 0x0a, 0xfc, 0x22, 0x46, 0xaa, 0xcb, 0x29, 0x6b, 0x89, 0xb9, 0x44, 0xf2, 0x3f, 0x48, 0x50, + 0xe1, 0x33, 0xdf, 0x80, 0x3a, 0x57, 0x3a, 0xd4, 0x67, 0x64, 0xb3, 0x03, 0xef, 0x22, 0x4e, 0xe3, + 0xcb, 0xd3, 0x3a, 0x97, 0xa1, 0x1a, 0xd3, 0x37, 0x0b, 0xdc, 0x2c, 0xf8, 0x9f, 0x42, 0x4a, 0x86, + 0x7c, 0x22, 0xfa, 0x05, 0x5d, 0x82, 0xb2, 0x61, 0x0f, 0xc5, 0x25, 0x10, 0x6b, 0xc8, 0x5f, 0x4b, + 0x34, 0x67, 0xaf, 0xe0, 0x81, 0x7d, 0x82, 0x9d, 0xb3, 0xf9, 0x93, 0x9d, 0x0f, 0x43, 0x6c, 0x9e, + 0x33, 0xf8, 0x12, 0x03, 0xd0, 0xc3, 0xe0, 0x10, 0x8a, 0x69, 0x99, 0x9e, 0xb0, 0xde, 0xe1, 0x4c, + 0x1a, 0x1c, 0xc6, 0x1f, 0xb0, 0xb4, 0x6d, 0x74, 0x2b, 0xb3, 0x7a, 0x3b, 0x2f, 0x25, 0x90, 0x91, + 0x7f, 0x29, 0x41, 0x37, 0x48, 0x25, 0xb9, 0x6b, 0x67, 0xf3, 0x5e, 0x8a, 0xbc, 0x9c, 0xf8, 0xea, 0x57, 0x45, 0xd6, 0x9e, 0x08, 0x6d, 0xae, 0xc8, 0xc8, 0xcf, 0xd9, 0x5b, 0x34, 0x2b, 0x9d, 0xdc, - 0xd0, 0x3c, 0x2c, 0xd3, 0x85, 0xaa, 0xc8, 0x67, 0xb0, 0xcc, 0xbd, 0x68, 0xcb, 0x7f, 0x24, 0xc1, - 0xe5, 0xc7, 0xd8, 0xdb, 0x8c, 0xa6, 0x42, 0x5e, 0xf5, 0xb9, 0x9a, 0xf4, 0x58, 0x13, 0x8b, 0x7a, - 0x59, 0x44, 0xf8, 0x1d, 0x09, 0x3a, 0x1c, 0x0b, 0xc5, 0x49, 0xc2, 0x1c, 0x03, 0x7b, 0x58, 0xfb, - 0xa6, 0xc3, 0xff, 0xff, 0x91, 0xa0, 0x1d, 0xb6, 0xa4, 0xd4, 0x18, 0x7e, 0x08, 0x65, 0x9a, 0x3d, - 0xe1, 0x2b, 0x98, 0x2a, 0xee, 0x0c, 0x9a, 0xa8, 0x62, 0xea, 0x3e, 0xef, 0x0b, 0xa3, 0xcf, 0x9b, - 0x81, 0x39, 0x2f, 0x9e, 0xdf, 0x9c, 0x73, 0xf7, 0xc6, 0x1e, 0x93, 0x79, 0x59, 0xda, 0x31, 0xe8, - 0x40, 0x1f, 0x43, 0x85, 0x15, 0x57, 0xf0, 0x5b, 0xb3, 0xdb, 0xd1, 0xa9, 0x79, 0xe1, 0x45, 0x28, - 0x97, 0x4f, 0x3b, 0x14, 0x3e, 0x48, 0xfe, 0x75, 0x58, 0x0e, 0x22, 0x4c, 0x86, 0x76, 0x56, 0x46, - 0x94, 0xff, 0x4d, 0x82, 0x8b, 0x7b, 0x67, 0xd6, 0x20, 0xce, 0xd2, 0xcb, 0x50, 0x19, 0x19, 0x6a, - 0x90, 0x05, 0xe5, 0x2d, 0xea, 0xda, 0x31, 0xdc, 0x58, 0x23, 0x76, 0x81, 0xd1, 0xac, 0x2e, 0xfa, - 0xf6, 0xed, 0xa9, 0xe6, 0xfa, 0xb6, 0x08, 0x89, 0xb1, 0xc6, 0x2c, 0x10, 0x4b, 0x2d, 0x35, 0x45, - 0x2f, 0xb5, 0x40, 0x1f, 0x03, 0x50, 0x23, 0xdd, 0x3f, 0x8f, 0x61, 0xa6, 0x23, 0xb6, 0x88, 0x1a, - 0xfe, 0x45, 0x01, 0x3a, 0x21, 0x2a, 0x7d, 0xd3, 0x3e, 0x4b, 0x46, 0xa4, 0x55, 0x7c, 0x41, 0x91, - 0x56, 0x69, 0x7e, 0x3f, 0xa5, 0x9c, 0xe6, 0xa7, 0xfc, 0x7b, 0x01, 0x5a, 0x01, 0xd5, 0x76, 0x0d, - 0xd5, 0xca, 0xe4, 0x84, 0x3d, 0xe1, 0xa3, 0x47, 0xe9, 0xf4, 0x4e, 0x9a, 0x9c, 0x64, 0x1c, 0x84, - 0x12, 0x9b, 0x02, 0x5d, 0xa3, 0x87, 0xee, 0x78, 0x2c, 0x99, 0xc5, 0xe3, 0x02, 0x26, 0x90, 0xba, - 0x89, 0xd1, 0x3d, 0x40, 0x5c, 0x8a, 0xfa, 0xba, 0xd5, 0x77, 0xf1, 0xc0, 0xb6, 0x34, 0x26, 0x5f, - 0x65, 0xa5, 0xcd, 0xbf, 0xf4, 0xac, 0x3d, 0xd6, 0x8f, 0x3e, 0x84, 0x92, 0x77, 0x36, 0x62, 0x1e, - 0x48, 0x2b, 0xd5, 0x86, 0x07, 0xeb, 0xda, 0x3f, 0x1b, 0x61, 0x85, 0x82, 0xfb, 0xd5, 0x37, 0x9e, - 0xa3, 0x9e, 0x70, 0x77, 0xae, 0xa4, 0x84, 0x7a, 0x88, 0xc6, 0xf0, 0x69, 0xb8, 0xc0, 0xdc, 0x1e, - 0xde, 0x64, 0x9c, 0xed, 0x0b, 0x6d, 0xdf, 0xf3, 0x0c, 0x9a, 0x8e, 0xa3, 0x9c, 0xed, 0xf7, 0xee, - 0x7b, 0x86, 0xfc, 0xaf, 0x05, 0x68, 0x07, 0x98, 0x15, 0xec, 0x8e, 0x8d, 0x6c, 0x81, 0x9b, 0x9c, - 0xef, 0x98, 0x26, 0x6b, 0xdf, 0x81, 0x3a, 0x3f, 0xf6, 0x73, 0xb0, 0x0d, 0xb0, 0x21, 0x5b, 0x13, - 0xf8, 0xb8, 0xfc, 0x82, 0xf8, 0xb8, 0x32, 0x43, 0xc6, 0x20, 0x9d, 0xf8, 0xf2, 0xcf, 0x24, 0x78, - 0x2d, 0xa1, 0x16, 0x27, 0x92, 0x76, 0x72, 0xbc, 0xc6, 0xd5, 0x65, 0x7c, 0x4a, 0xae, 0xe0, 0x1f, - 0x42, 0xc5, 0xa1, 0xb3, 0xf3, 0xeb, 0x9d, 0x5b, 0x13, 0xb9, 0x8b, 0x2d, 0x44, 0xe1, 0x43, 0xe4, - 0x3f, 0x94, 0x60, 0x25, 0xb9, 0xd4, 0x39, 0xac, 0xf6, 0x1a, 0x2c, 0xb0, 0xa9, 0x7d, 0x21, 0xbc, - 0x33, 0x59, 0x08, 0x03, 0xe2, 0x28, 0xfe, 0x40, 0x79, 0x0f, 0x96, 0x7d, 0xe3, 0x1e, 0x90, 0x7e, - 0x1b, 0x7b, 0xea, 0x84, 0x68, 0xe5, 0x06, 0xd4, 0x99, 0xdb, 0xcb, 0xa2, 0x00, 0x16, 0xe7, 0xc3, - 0x81, 0x48, 0x8f, 0xc9, 0xff, 0x25, 0xc1, 0x25, 0x6a, 0x1d, 0xe3, 0xf7, 0x29, 0x79, 0xee, 0xda, - 0x64, 0x91, 0x46, 0xd8, 0x51, 0x4d, 0x5e, 0xdb, 0x51, 0x53, 0x22, 0x7d, 0xa8, 0x97, 0xcc, 0x9e, - 0xa5, 0x46, 0xb5, 0xc1, 0xe5, 0x2c, 0x89, 0xa0, 0xe9, 0xdd, 0x6c, 0x3c, 0x6d, 0x16, 0x58, 0xe5, - 0xd2, 0x2c, 0x56, 0x79, 0x0b, 0x5e, 0x8b, 0xed, 0x74, 0x8e, 0x13, 0x95, 0xff, 0x4a, 0x22, 0xc7, - 0x11, 0xa9, 0x91, 0x99, 0xdd, 0xdb, 0xbc, 0x26, 0x2e, 0x72, 0xfa, 0xba, 0x16, 0x57, 0x22, 0x1a, - 0xfa, 0x04, 0x6a, 0x16, 0x3e, 0xed, 0x87, 0x9d, 0x9d, 0x1c, 0xae, 0x78, 0xd5, 0xc2, 0xa7, 0xf4, - 0x97, 0xbc, 0x03, 0x2b, 0x89, 0xa5, 0xce, 0xb3, 0xf7, 0x7f, 0x90, 0xe0, 0xf2, 0x86, 0x63, 0x8f, - 0x3e, 0xd7, 0x1d, 0x6f, 0xac, 0x1a, 0xd1, 0x6b, 0xef, 0x97, 0x93, 0x8e, 0xfa, 0x2c, 0xe4, 0xf6, - 0x32, 0xfe, 0xb9, 0x97, 0x22, 0x41, 0xc9, 0x45, 0xf1, 0x4d, 0x87, 0x9c, 0xe4, 0xff, 0x2c, 0xa6, - 0x2d, 0x9e, 0xc3, 0x4d, 0x71, 0x3c, 0xf2, 0x44, 0x05, 0xa9, 0xd9, 0xeb, 0xe2, 0xac, 0xd9, 0xeb, - 0x0c, 0xf5, 0x5e, 0x7a, 0x41, 0xea, 0xfd, 0xdc, 0xe9, 0x94, 0xcf, 0x20, 0x7a, 0xb3, 0x40, 0xcd, - 0xef, 0x4c, 0x57, 0x12, 0x6b, 0x00, 0x41, 0x96, 0x9d, 0x97, 0x38, 0xe6, 0x99, 0x26, 0x34, 0x8a, - 0x9c, 0x96, 0x30, 0xa5, 0xdc, 0x94, 0x87, 0xf2, 0xbe, 0xdf, 0x83, 0x6e, 0x1a, 0x97, 0xce, 0xc3, - 0xf9, 0xbf, 0x28, 0x00, 0xf4, 0x44, 0x55, 0xec, 0x6c, 0xb6, 0xe0, 0x16, 0x84, 0xdc, 0x8d, 0x40, - 0xde, 0xc3, 0x5c, 0xa4, 0x11, 0x91, 0x10, 0x81, 0x24, 0x81, 0x49, 0x04, 0x97, 0x1a, 0x9d, 0x27, - 0x24, 0x35, 0x8c, 0x29, 0xe2, 0xea, 0xf7, 0x0a, 0xd4, 0x1c, 0xfb, 0xb4, 0x4f, 0xc4, 0x4c, 0xf3, - 0xcb, 0x7e, 0x1d, 0xfb, 0x94, 0x08, 0x9f, 0x86, 0x56, 0x60, 0xc1, 0x53, 0xdd, 0x63, 0x32, 0x7f, - 0x25, 0x54, 0x79, 0xa1, 0xa1, 0x4b, 0x50, 0x3e, 0xd4, 0x0d, 0xcc, 0x2e, 0xfa, 0x6b, 0x0a, 0x6b, - 0xa0, 0x6f, 0xf9, 0xf5, 0x69, 0xd5, 0xdc, 0xd5, 0x35, 0xac, 0x44, 0xed, 0x2b, 0x09, 0x16, 0x03, - 0xaa, 0x51, 0x05, 0x44, 0x74, 0x1a, 0xd5, 0x67, 0xeb, 0xb6, 0xc6, 0x54, 0x45, 0x2b, 0xc3, 0x22, - 0xb0, 0x81, 0x4c, 0x6b, 0x05, 0x43, 0x26, 0xc5, 0xc1, 0x64, 0x5f, 0x64, 0xd3, 0xba, 0xe6, 0x57, - 0x9b, 0x54, 0x1c, 0xfb, 0xb4, 0xa7, 0x09, 0x6a, 0xb0, 0x9a, 0x5e, 0x16, 0xf5, 0x11, 0x6a, 0xac, - 0xd3, 0xb2, 0xde, 0x5b, 0xd0, 0xc4, 0x8e, 0x63, 0x3b, 0x7d, 0x13, 0xbb, 0xae, 0x3a, 0xc4, 0xdc, - 0x01, 0x6f, 0xd0, 0xce, 0x6d, 0xd6, 0x27, 0xff, 0x49, 0x09, 0x5a, 0xc1, 0x56, 0xfc, 0xbb, 0x6d, - 0x5d, 0xf3, 0xef, 0xb6, 0x75, 0x72, 0x74, 0xe0, 0x30, 0x55, 0x28, 0x0e, 0x77, 0xad, 0xd0, 0x91, - 0x94, 0x1a, 0xef, 0xed, 0x69, 0xc4, 0x2c, 0x13, 0x21, 0xb3, 0x6c, 0x0d, 0x07, 0x87, 0x0b, 0x7e, - 0x17, 0x3f, 0xdb, 0x08, 0x8f, 0x94, 0x72, 0xf0, 0x48, 0x39, 0x07, 0x8f, 0x54, 0x52, 0x78, 0x64, - 0x19, 0x2a, 0x07, 0xe3, 0xc1, 0x31, 0xf6, 0xb8, 0xc7, 0xc6, 0x5b, 0x51, 0xde, 0xa9, 0xc6, 0x78, - 0x47, 0xb0, 0x48, 0x2d, 0xcc, 0x22, 0x57, 0xa0, 0xc6, 0x2e, 0x59, 0xfb, 0x9e, 0x4b, 0x6f, 0x8c, - 0x8a, 0x4a, 0x95, 0x75, 0xec, 0xbb, 0xe8, 0x23, 0xdf, 0x9d, 0xab, 0xa7, 0x09, 0x3b, 0xd5, 0x3a, - 0x31, 0x2e, 0xf1, 0x9d, 0xb9, 0xb7, 0x60, 0x31, 0x44, 0x0e, 0x6a, 0x23, 0x1a, 0x74, 0xa9, 0x21, - 0x77, 0x9e, 0x9a, 0x89, 0xdb, 0xd0, 0x0a, 0x48, 0x42, 0xe1, 0x9a, 0x2c, 0x8a, 0x12, 0xbd, 0x14, - 0x4c, 0x70, 0x72, 0xeb, 0x7c, 0x9c, 0x8c, 0x2e, 0x43, 0x95, 0x87, 0x3f, 0x6e, 0x67, 0x31, 0x92, - 0x8d, 0x90, 0x7f, 0x08, 0x28, 0x58, 0xfd, 0x7c, 0xde, 0x62, 0x8c, 0x3d, 0x0a, 0x71, 0xf6, 0x90, - 0x7f, 0x2e, 0xc1, 0x52, 0x18, 0xd9, 0xac, 0x86, 0xf7, 0x13, 0xa8, 0xb3, 0x3b, 0xbb, 0x3e, 0x11, - 0x7c, 0x9e, 0xe5, 0xb9, 0x36, 0xf1, 0x5c, 0x14, 0x08, 0x5e, 0x05, 0x10, 0xf6, 0x3a, 0xb5, 0x9d, - 0x63, 0xdd, 0x1a, 0xf6, 0xc9, 0xca, 0x7c, 0x71, 0x6b, 0xf0, 0xce, 0x1d, 0xd2, 0x27, 0x7f, 0x29, - 0xc1, 0xf5, 0x27, 0x23, 0x4d, 0xf5, 0x70, 0xc8, 0x03, 0x99, 0xb7, 0xd0, 0xf0, 0x43, 0xbf, 0xd2, - 0xaf, 0x90, 0xef, 0xde, 0x89, 0x41, 0xcb, 0x7f, 0x2b, 0xd6, 0xc2, 0xcd, 0x01, 0xbd, 0xa4, 0x1c, - 0xd1, 0x4b, 0xdf, 0x99, 0xd7, 0xd2, 0x85, 0xea, 0x09, 0x9f, 0xce, 0x7f, 0xe5, 0xe0, 0xb7, 0x23, - 0x77, 0x9b, 0xc5, 0xf3, 0xdf, 0x6d, 0xca, 0xdb, 0x70, 0x59, 0xc1, 0x2e, 0xb6, 0xb4, 0xc8, 0x6e, - 0x66, 0xce, 0x26, 0x8d, 0xa0, 0x9b, 0x36, 0xdd, 0x3c, 0xcc, 0xca, 0x7c, 0xd7, 0xbe, 0x43, 0xa6, - 0xf5, 0xb8, 0x2a, 0x26, 0x2e, 0x13, 0xc5, 0xe3, 0xc9, 0x7f, 0x5d, 0x80, 0x95, 0x47, 0x9a, 0xc6, - 0xb5, 0x38, 0xf7, 0xc6, 0x5e, 0x96, 0xa3, 0x1c, 0x77, 0x24, 0x8b, 0x49, 0x47, 0xf2, 0x45, 0x69, - 0x56, 0x6e, 0x63, 0xac, 0xb1, 0xe9, 0xdb, 0x4e, 0x87, 0x15, 0xfd, 0x3c, 0xe4, 0x97, 0x5d, 0x24, - 0xa0, 0xa7, 0xf6, 0x73, 0xba, 0x7f, 0x55, 0xf5, 0xb3, 0x62, 0xf2, 0x08, 0x3a, 0x49, 0x62, 0xcd, - 0xa9, 0x4a, 0x7c, 0x8a, 0x8c, 0x6c, 0x96, 0x41, 0x6d, 0x10, 0x17, 0x8a, 0x76, 0xed, 0xda, 0xae, - 0xfc, 0xdf, 0x05, 0xe8, 0xec, 0xa9, 0x27, 0xf8, 0x97, 0xe7, 0x80, 0xbe, 0x0f, 0x97, 0x5c, 0xf5, - 0x04, 0xf7, 0x43, 0x81, 0x71, 0xdf, 0xc1, 0xcf, 0xb8, 0x0b, 0xfa, 0x76, 0x9a, 0x26, 0x49, 0xad, - 0x8d, 0x51, 0x96, 0xdc, 0x48, 0xbf, 0x82, 0x9f, 0xa1, 0x37, 0x61, 0x31, 0x5c, 0x7c, 0x45, 0x96, - 0x56, 0xa5, 0x24, 0x6f, 0x86, 0x6a, 0xab, 0x7a, 0x9a, 0xfc, 0x0c, 0xae, 0x3e, 0xb1, 0x5c, 0xec, - 0xf5, 0x82, 0xfa, 0xa0, 0x39, 0x43, 0xc8, 0x1b, 0x50, 0x0f, 0x08, 0x9f, 0x78, 0xd9, 0xa0, 0xb9, - 0xb2, 0x0d, 0xdd, 0x6d, 0xd5, 0x39, 0xf6, 0xf3, 0xc8, 0x1b, 0xac, 0x8e, 0xe3, 0x25, 0x22, 0x3c, - 0x14, 0x65, 0x4d, 0x0a, 0x3e, 0xc4, 0x0e, 0xb6, 0x06, 0x78, 0xcb, 0x1e, 0x1c, 0x87, 0xca, 0x7d, - 0xa5, 0x70, 0xb9, 0xef, 0xac, 0xe5, 0xc3, 0x77, 0x3f, 0x11, 0xa5, 0x86, 0xfb, 0x67, 0x23, 0x8c, - 0x16, 0xa0, 0xb8, 0x83, 0x4f, 0xdb, 0x17, 0x10, 0x40, 0x65, 0xc7, 0x76, 0x4c, 0xd5, 0x68, 0x4b, - 0xa8, 0x0e, 0x0b, 0xfc, 0x16, 0xa6, 0x5d, 0x40, 0x4d, 0xa8, 0xad, 0xfb, 0x99, 0xec, 0x76, 0xf1, - 0xee, 0x9f, 0x49, 0xb0, 0x94, 0xb8, 0x27, 0x40, 0x2d, 0x80, 0x27, 0xd6, 0x80, 0x5f, 0xa0, 0xb4, - 0x2f, 0xa0, 0x06, 0x54, 0xfd, 0xeb, 0x14, 0x36, 0xdf, 0xbe, 0x4d, 0xa1, 0xdb, 0x05, 0xd4, 0x86, - 0x06, 0x1b, 0x38, 0x1e, 0x0c, 0xb0, 0xeb, 0xb6, 0x8b, 0xa2, 0x67, 0x53, 0xd5, 0x8d, 0xb1, 0x83, - 0xdb, 0x25, 0x82, 0x73, 0xdf, 0xe6, 0xc5, 0xd6, 0xed, 0x32, 0x42, 0xd0, 0xf2, 0x2b, 0xaf, 0xf9, - 0xa0, 0x4a, 0xa8, 0xcf, 0x1f, 0xb6, 0x70, 0xf7, 0x69, 0x38, 0xdb, 0x4b, 0xb7, 0xb7, 0x02, 0x17, - 0x9f, 0x58, 0x1a, 0x3e, 0xd4, 0x2d, 0xac, 0x05, 0x9f, 0xda, 0x17, 0xd0, 0x45, 0x58, 0xdc, 0xc6, - 0xce, 0x10, 0x87, 0x3a, 0x0b, 0x68, 0x09, 0x9a, 0xdb, 0xfa, 0xf3, 0x50, 0x57, 0x51, 0x2e, 0x55, - 0xa5, 0xb6, 0xb4, 0xfa, 0xe5, 0x35, 0xa8, 0x6d, 0xa8, 0x9e, 0xba, 0x6e, 0xdb, 0x8e, 0x86, 0x0c, - 0x40, 0xf4, 0x6d, 0x82, 0x39, 0xb2, 0x2d, 0xf1, 0xe2, 0x07, 0xdd, 0x8f, 0x72, 0x01, 0x6f, 0x24, - 0x01, 0x39, 0x0f, 0x75, 0xdf, 0x48, 0x85, 0x8f, 0x01, 0xcb, 0x17, 0x90, 0x49, 0xb1, 0xed, 0xeb, - 0x26, 0xde, 0xd7, 0x07, 0xc7, 0xbe, 0xa5, 0x7c, 0x2f, 0xc3, 0x2e, 0x26, 0x41, 0x7d, 0x7c, 0xb7, - 0x52, 0xf1, 0xb1, 0xc7, 0x23, 0xbe, 0xd6, 0x94, 0x2f, 0xa0, 0x67, 0x70, 0xe9, 0x31, 0x0e, 0x39, - 0x1d, 0x3e, 0xc2, 0xd5, 0x6c, 0x84, 0x09, 0xe0, 0x73, 0xa2, 0xdc, 0x82, 0x32, 0x65, 0x37, 0x94, - 0xe6, 0x97, 0x84, 0x1f, 0xe7, 0x76, 0x6f, 0x66, 0x03, 0x88, 0xd9, 0x7e, 0x08, 0x8b, 0xb1, 0x27, - 0x7d, 0x28, 0x4d, 0x4b, 0xa5, 0x3f, 0xce, 0xec, 0xde, 0xcd, 0x03, 0x2a, 0x70, 0x0d, 0xa1, 0x15, - 0x7d, 0xd3, 0x80, 0xd2, 0x32, 0x95, 0xa9, 0xaf, 0xb1, 0xba, 0x6f, 0xe7, 0x80, 0x14, 0x88, 0x4c, - 0x68, 0xc7, 0x9f, 0x98, 0xa1, 0xbb, 0x13, 0x27, 0x88, 0x32, 0xdb, 0x3b, 0xb9, 0x60, 0x05, 0xba, - 0x33, 0xca, 0x04, 0x89, 0x57, 0x4b, 0x71, 0x1e, 0xf7, 0xa7, 0xc9, 0x7a, 0x4e, 0xd5, 0x7d, 0x90, - 0x1b, 0x5e, 0xa0, 0xfe, 0x6d, 0x56, 0x3a, 0x91, 0xf6, 0xf2, 0x07, 0xbd, 0x9f, 0x3e, 0xdd, 0x84, - 0x27, 0x4b, 0xdd, 0xd5, 0xf3, 0x0c, 0x11, 0x8b, 0xf8, 0x31, 0xad, 0x79, 0x48, 0x79, 0x3b, 0x13, - 0x97, 0x3b, 0x7f, 0xbe, 0xec, 0x67, 0x41, 0xdd, 0xf7, 0xcf, 0x31, 0x42, 0x2c, 0xc0, 0x8e, 0xbf, - 0xe1, 0xf3, 0xc5, 0xf0, 0xc1, 0x54, 0xae, 0x99, 0x4d, 0x06, 0x7f, 0x00, 0x8b, 0x31, 0xbb, 0x8d, - 0xf2, 0xdb, 0xf6, 0xee, 0x24, 0xe7, 0x8a, 0x89, 0x64, 0xac, 0x84, 0x04, 0x65, 0x70, 0x7f, 0x4a, - 0x99, 0x49, 0xf7, 0x6e, 0x1e, 0x50, 0xb1, 0x11, 0x97, 0xaa, 0xcb, 0x58, 0x11, 0x01, 0xba, 0x97, - 0x3e, 0x47, 0x7a, 0x01, 0x44, 0xf7, 0xdd, 0x9c, 0xd0, 0x02, 0xe9, 0x09, 0x5c, 0x4c, 0xa9, 0xdf, - 0x40, 0xef, 0x4e, 0x3c, 0xac, 0x78, 0xe1, 0x4a, 0xf7, 0x7e, 0x5e, 0x70, 0x81, 0xf7, 0xb7, 0x00, - 0xed, 0x1d, 0xd9, 0xa7, 0xeb, 0xb6, 0x75, 0xa8, 0x0f, 0xc7, 0x8e, 0xca, 0x32, 0xff, 0x59, 0xb6, - 0x21, 0x09, 0x9a, 0xc1, 0xa3, 0x13, 0x47, 0x08, 0xe4, 0x7d, 0x80, 0xc7, 0xd8, 0xdb, 0xc6, 0x9e, - 0x43, 0x04, 0xe3, 0xcd, 0x2c, 0xf3, 0xc7, 0x01, 0x7c, 0x54, 0x6f, 0x4d, 0x85, 0x0b, 0x99, 0xa2, - 0xf6, 0xb6, 0x6a, 0x8d, 0x55, 0x23, 0x54, 0x80, 0x7e, 0x2f, 0x75, 0x78, 0x1c, 0x2c, 0xe3, 0x20, - 0x33, 0xa1, 0x05, 0xca, 0x53, 0x61, 0xda, 0x43, 0x57, 0x4b, 0x93, 0x4d, 0x7b, 0xb2, 0x6e, 0x21, - 0xae, 0xf6, 0x26, 0xc0, 0x0b, 0xc4, 0x5f, 0x48, 0xb4, 0x04, 0x28, 0x06, 0xf0, 0x54, 0xf7, 0x8e, - 0x76, 0x0d, 0xd5, 0x72, 0xf3, 0x2c, 0x81, 0x02, 0x9e, 0x63, 0x09, 0x1c, 0x5e, 0x2c, 0x41, 0x83, - 0x66, 0xe4, 0xc6, 0x07, 0xa5, 0x55, 0x6c, 0xa7, 0xdd, 0x7e, 0x75, 0xef, 0x4c, 0x07, 0x14, 0x58, - 0x8e, 0xa0, 0xe9, 0x8b, 0x12, 0x23, 0xee, 0xdb, 0x59, 0x2b, 0x0d, 0x60, 0x32, 0x34, 0x41, 0x3a, - 0x68, 0x58, 0x13, 0x24, 0x13, 0xda, 0x28, 0xdf, 0x45, 0xc8, 0x24, 0x4d, 0x90, 0x9d, 0x25, 0x67, - 0xaa, 0x2e, 0x76, 0x79, 0x94, 0xae, 0x47, 0x53, 0xef, 0xc2, 0x52, 0x55, 0x5d, 0xc6, 0x5d, 0x94, - 0x7c, 0x01, 0x3d, 0x85, 0x0a, 0xff, 0x47, 0x8a, 0x37, 0x26, 0x27, 0xa1, 0xf8, 0xec, 0xb7, 0xa7, - 0x40, 0x89, 0x89, 0x8f, 0x61, 0x25, 0x23, 0x05, 0x95, 0x6a, 0x82, 0x27, 0xa7, 0xab, 0xa6, 0x19, - 0x07, 0x81, 0x2c, 0x91, 0x63, 0x9a, 0x80, 0x2c, 0x2b, 0x1f, 0x35, 0x0d, 0x99, 0x0a, 0x28, 0xf9, - 0xc6, 0x34, 0x95, 0x27, 0x32, 0x9f, 0xa2, 0xe6, 0x40, 0x91, 0x7c, 0x26, 0x9a, 0x8a, 0x22, 0xf3, - 0x35, 0xe9, 0x34, 0x14, 0x7d, 0x58, 0x4a, 0x24, 0x21, 0xd0, 0x3b, 0x19, 0xe6, 0x3a, 0x2d, 0x55, - 0x31, 0x0d, 0xc1, 0x10, 0x5e, 0x4b, 0x0d, 0xb8, 0x53, 0xdd, 0x8f, 0x49, 0xa1, 0xf9, 0x34, 0x44, - 0x03, 0xb8, 0x98, 0x12, 0x66, 0xa7, 0x1a, 0xce, 0xec, 0x70, 0x7c, 0x1a, 0x92, 0x23, 0xe8, 0xae, - 0x39, 0xb6, 0xaa, 0x0d, 0x54, 0xd7, 0x7b, 0x64, 0x78, 0xd8, 0x21, 0xb1, 0xa0, 0xef, 0xff, 0xc5, - 0xe9, 0xc6, 0x1b, 0x14, 0x2e, 0x80, 0xca, 0x89, 0xe9, 0x00, 0xea, 0x94, 0x25, 0xd9, 0x7f, 0x1e, - 0xa0, 0x74, 0x5b, 0x17, 0x82, 0xc8, 0x50, 0xa0, 0x69, 0x80, 0xbe, 0x70, 0xae, 0x7e, 0x55, 0x83, - 0xaa, 0x5f, 0x36, 0xff, 0x0d, 0x87, 0xa2, 0xaf, 0x20, 0x36, 0xfc, 0x01, 0x2c, 0xc6, 0x9e, 0xb0, - 0xa6, 0xea, 0xd3, 0xf4, 0x67, 0xae, 0xd3, 0x8e, 0xeb, 0x29, 0xff, 0x83, 0x25, 0xe1, 0x26, 0xbe, - 0x95, 0x15, 0x5f, 0xc6, 0x3d, 0xc4, 0x29, 0x13, 0xff, 0xff, 0xf6, 0xcb, 0x76, 0x00, 0x42, 0x1e, - 0xd9, 0xe4, 0x42, 0x34, 0xe2, 0x64, 0x4c, 0xa3, 0x96, 0x99, 0xea, 0x74, 0xbd, 0x9d, 0xa7, 0xe6, - 0x27, 0xdb, 0x6c, 0x66, 0xbb, 0x5a, 0x4f, 0xa0, 0x11, 0x2e, 0x11, 0x45, 0xa9, 0x7f, 0xe7, 0x93, - 0xac, 0x21, 0x9d, 0xb6, 0x8b, 0xed, 0x73, 0x5a, 0xe3, 0x29, 0xd3, 0xb9, 0xc4, 0x8c, 0xc4, 0xef, - 0x1e, 0x32, 0xcc, 0x48, 0xc6, 0x8d, 0x47, 0xaa, 0xf7, 0x92, 0x7d, 0xa1, 0xc1, 0xd2, 0x0c, 0xf1, - 0x84, 0x7a, 0x6a, 0x9a, 0x21, 0xe3, 0x8a, 0x22, 0x35, 0xcd, 0x90, 0x95, 0xa1, 0x97, 0x2f, 0xac, - 0x7d, 0xf0, 0xfd, 0xf7, 0x87, 0xba, 0x77, 0x34, 0x3e, 0x20, 0xbb, 0x7f, 0xc0, 0x86, 0xbe, 0xab, - 0xdb, 0xfc, 0xd7, 0x03, 0x9f, 0xdd, 0x1f, 0xd0, 0xd9, 0x1e, 0x90, 0xd9, 0x46, 0x07, 0x07, 0x15, - 0xda, 0xfa, 0xe0, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x6b, 0x3a, 0x03, 0xfa, 0x22, 0x4e, 0x00, - 0x00, + 0xd0, 0x3c, 0x2c, 0xd3, 0x85, 0xaa, 0xc8, 0x67, 0xb0, 0xcc, 0xbd, 0x68, 0x13, 0x09, 0xbb, 0xfc, + 0x18, 0x7b, 0x9b, 0xd1, 0x54, 0xc8, 0xeb, 0x26, 0x60, 0xf8, 0x36, 0xe1, 0x88, 0xdf, 0x26, 0x94, + 0x62, 0xb7, 0x09, 0xbc, 0x5f, 0x36, 0x29, 0x0b, 0x24, 0x36, 0xf0, 0xaa, 0x08, 0xf6, 0x3b, 0x12, + 0x74, 0x38, 0x16, 0x8a, 0x93, 0x84, 0x44, 0x06, 0xf6, 0xb0, 0xf6, 0x4d, 0xa7, 0x0a, 0xfe, 0x5b, + 0x82, 0x76, 0xd8, 0xea, 0x52, 0xc3, 0xf9, 0x31, 0x94, 0x69, 0xa6, 0x85, 0xaf, 0x60, 0xaa, 0x6a, + 0x60, 0xd0, 0x44, 0x6d, 0x53, 0x57, 0x7b, 0x5f, 0x38, 0x08, 0xbc, 0x19, 0x98, 0xfe, 0xe2, 0xf9, + 0x4d, 0x3f, 0x77, 0x85, 0xec, 0x31, 0x99, 0x97, 0xa5, 0x28, 0x83, 0x0e, 0xf4, 0x29, 0x54, 0x58, + 0x21, 0x06, 0xbf, 0x61, 0xbb, 0x1d, 0x9d, 0x9a, 0x17, 0x69, 0x84, 0xf2, 0xfe, 0xb4, 0x43, 0xe1, + 0x83, 0xe4, 0x5f, 0x87, 0xe5, 0x20, 0x1a, 0x65, 0x68, 0x67, 0x65, 0x5a, 0xf9, 0x5f, 0x25, 0xb8, + 0xb8, 0x77, 0x66, 0x0d, 0xe2, 0xec, 0xbf, 0x0c, 0x95, 0x91, 0xa1, 0x06, 0x19, 0x53, 0xde, 0xa2, + 0x6e, 0x20, 0xc3, 0x8d, 0x35, 0x62, 0x43, 0x18, 0xcd, 0xea, 0xa2, 0x6f, 0xdf, 0x9e, 0x6a, 0xda, + 0x6f, 0x8b, 0xf0, 0x19, 0x6b, 0xcc, 0x5a, 0xb1, 0x34, 0x54, 0x53, 0xf4, 0x52, 0x6b, 0xf5, 0x29, + 0x00, 0x35, 0xe8, 0xfd, 0xf3, 0x18, 0x71, 0x3a, 0x62, 0x8b, 0xa8, 0xec, 0x5f, 0x14, 0xa0, 0x13, + 0xa2, 0xd2, 0x37, 0xed, 0xdf, 0x64, 0x44, 0x65, 0xc5, 0x97, 0x14, 0x95, 0x95, 0xe6, 0xf7, 0x69, + 0xca, 0x69, 0x3e, 0xcd, 0xbf, 0x15, 0xa0, 0x15, 0x50, 0x6d, 0xd7, 0x50, 0xad, 0x4c, 0x4e, 0xd8, + 0x13, 0xfe, 0x7c, 0x94, 0x4e, 0xef, 0xa5, 0xc9, 0x49, 0xc6, 0x41, 0x28, 0xb1, 0x29, 0xd0, 0x35, + 0x7a, 0xe8, 0x8e, 0xc7, 0x12, 0x5f, 0x3c, 0x86, 0x60, 0x02, 0xa9, 0x9b, 0x18, 0xdd, 0x03, 0xc4, + 0xa5, 0xa8, 0xaf, 0x5b, 0x7d, 0x17, 0x0f, 0x6c, 0x4b, 0x63, 0xf2, 0x55, 0x56, 0xda, 0xfc, 0x4b, + 0xcf, 0xda, 0x63, 0xfd, 0xe8, 0x63, 0x28, 0x79, 0x67, 0x23, 0xe6, 0xad, 0xb4, 0x52, 0xed, 0x7d, + 0xb0, 0xae, 0xfd, 0xb3, 0x11, 0x56, 0x28, 0xb8, 0x5f, 0xa9, 0xe3, 0x39, 0xea, 0x09, 0x77, 0xfd, + 0x4a, 0x4a, 0xa8, 0x87, 0x68, 0x0c, 0x9f, 0x86, 0x0b, 0xcc, 0x45, 0xe2, 0x4d, 0xc6, 0xd9, 0xbe, + 0xd0, 0xf6, 0x3d, 0xcf, 0xa0, 0xa9, 0x3b, 0xca, 0xd9, 0x7e, 0xef, 0xbe, 0x67, 0xc8, 0xff, 0x52, + 0x80, 0x76, 0x80, 0x59, 0xc1, 0xee, 0xd8, 0xc8, 0x16, 0xb8, 0xc9, 0xb9, 0x91, 0x69, 0xb2, 0xf6, + 0x1d, 0xa8, 0xf3, 0x63, 0x3f, 0x07, 0xdb, 0x00, 0x1b, 0xb2, 0x35, 0x81, 0x8f, 0xcb, 0x2f, 0x89, + 0x8f, 0x2b, 0x33, 0x64, 0x17, 0xd2, 0x89, 0x2f, 0xff, 0x4c, 0x82, 0x37, 0x12, 0x6a, 0x71, 0x22, + 0x69, 0x27, 0xc7, 0x76, 0x5c, 0x5d, 0xc6, 0xa7, 0xe4, 0x0a, 0xfe, 0x21, 0x54, 0x1c, 0x3a, 0x3b, + 0xbf, 0x0a, 0xba, 0x35, 0x91, 0xbb, 0xd8, 0x42, 0x14, 0x3e, 0x44, 0xfe, 0x43, 0x09, 0x56, 0x92, + 0x4b, 0x9d, 0xc3, 0x6a, 0xaf, 0xc1, 0x02, 0x9b, 0xda, 0x17, 0xc2, 0x3b, 0x93, 0x85, 0x30, 0x20, + 0x8e, 0xe2, 0x0f, 0x94, 0xf7, 0x60, 0xd9, 0x37, 0xee, 0x01, 0xe9, 0xb7, 0xb1, 0xa7, 0x4e, 0x88, + 0x6c, 0x6e, 0x40, 0x9d, 0xb9, 0xc8, 0x2c, 0x62, 0x60, 0x39, 0x01, 0x38, 0x10, 0xa9, 0x34, 0xf9, + 0x3f, 0x25, 0xb8, 0x44, 0xad, 0x63, 0xfc, 0xee, 0x25, 0xcf, 0xbd, 0x9c, 0x2c, 0x52, 0x0e, 0x3b, + 0xaa, 0xc9, 0xeb, 0x40, 0x6a, 0x4a, 0xa4, 0x0f, 0xf5, 0x92, 0x99, 0xb6, 0xd4, 0x08, 0x38, 0xb8, + 0xc8, 0x25, 0xd1, 0x36, 0xbd, 0xc7, 0x8d, 0xa7, 0xd8, 0x02, 0xab, 0x5c, 0x9a, 0xc5, 0x2a, 0x6f, + 0xc1, 0x1b, 0xb1, 0x9d, 0xce, 0x71, 0xa2, 0xf2, 0x5f, 0x4a, 0xe4, 0x38, 0x22, 0xf5, 0x34, 0xb3, + 0x7b, 0xa6, 0xd7, 0xc4, 0xa5, 0x4f, 0x5f, 0xd7, 0xe2, 0x4a, 0x44, 0x43, 0x9f, 0x41, 0xcd, 0xc2, + 0xa7, 0xfd, 0xb0, 0xb3, 0x93, 0xc3, 0x6d, 0xaf, 0x5a, 0xf8, 0x94, 0xfe, 0x92, 0x77, 0x60, 0x25, + 0xb1, 0xd4, 0x79, 0xf6, 0xfe, 0xf7, 0x12, 0x5c, 0xde, 0x70, 0xec, 0xd1, 0x17, 0xba, 0xe3, 0x8d, + 0x55, 0x23, 0x7a, 0x45, 0xfe, 0x6a, 0x52, 0x57, 0x4f, 0x42, 0x6e, 0x2f, 0xe3, 0x9f, 0x7b, 0x29, + 0x12, 0x94, 0x5c, 0x14, 0xdf, 0x74, 0xc8, 0x49, 0xfe, 0x8f, 0x62, 0xda, 0xe2, 0x39, 0xdc, 0x14, + 0xc7, 0x23, 0x4f, 0x04, 0x91, 0x9a, 0xe9, 0x2e, 0xce, 0x9a, 0xe9, 0xce, 0x50, 0xef, 0xa5, 0x97, + 0xa4, 0xde, 0xcf, 0x9d, 0x7a, 0x79, 0x02, 0xd1, 0x5b, 0x08, 0x6a, 0x7e, 0x67, 0xba, 0xbe, 0x58, + 0x03, 0x08, 0x32, 0xf2, 0xbc, 0x1c, 0x32, 0xcf, 0x34, 0xa1, 0x51, 0xe4, 0xb4, 0x84, 0x29, 0xe5, + 0xa6, 0x3c, 0x94, 0x23, 0xfe, 0x1e, 0x74, 0xd3, 0xb8, 0x74, 0x1e, 0xce, 0xff, 0x45, 0x01, 0xa0, + 0x27, 0x2a, 0x68, 0x67, 0xb3, 0x05, 0xb7, 0x20, 0xe4, 0x6e, 0x04, 0xf2, 0x1e, 0xe6, 0x22, 0x8d, + 0x88, 0x84, 0x08, 0x3a, 0x09, 0x4c, 0x22, 0x10, 0xd5, 0xe8, 0x3c, 0x21, 0xa9, 0x61, 0x4c, 0x11, + 0x57, 0xbf, 0x57, 0xa0, 0xe6, 0xd8, 0xa7, 0x7d, 0x22, 0x66, 0x9a, 0x5f, 0x22, 0xec, 0xd8, 0xa7, + 0x44, 0xf8, 0x34, 0xb4, 0x02, 0x0b, 0x9e, 0xea, 0x1e, 0x93, 0xf9, 0x2b, 0xa1, 0x2a, 0x0d, 0x0d, + 0x5d, 0x82, 0xf2, 0xa1, 0x6e, 0x60, 0x56, 0x14, 0x50, 0x53, 0x58, 0x03, 0x7d, 0xcb, 0xaf, 0x65, + 0xab, 0xe6, 0xae, 0xc4, 0x61, 0xe5, 0x6c, 0x5f, 0x4b, 0xb0, 0x18, 0x50, 0x8d, 0x2a, 0x20, 0xa2, + 0xd3, 0xa8, 0x3e, 0x5b, 0xb7, 0x35, 0xa6, 0x2a, 0x5a, 0x19, 0x16, 0x81, 0x0d, 0x64, 0x5a, 0x2b, + 0x18, 0x32, 0x29, 0x0e, 0x26, 0xfb, 0x22, 0x9b, 0xd6, 0x35, 0xbf, 0x32, 0xa5, 0xe2, 0xd8, 0xa7, + 0x3d, 0x4d, 0x50, 0x83, 0xd5, 0xff, 0xb2, 0xa8, 0x8f, 0x50, 0x63, 0x9d, 0x96, 0x00, 0xdf, 0x82, + 0x26, 0x76, 0x1c, 0xdb, 0xe9, 0x9b, 0xd8, 0x75, 0xd5, 0x21, 0xe6, 0x0e, 0x78, 0x83, 0x76, 0x6e, + 0xb3, 0x3e, 0xf9, 0x8f, 0x4b, 0xd0, 0x0a, 0xb6, 0xe2, 0xdf, 0x83, 0xeb, 0x9a, 0x7f, 0x0f, 0xae, + 0x93, 0xa3, 0x03, 0x87, 0xa9, 0x42, 0x71, 0xb8, 0x6b, 0x85, 0x8e, 0xa4, 0xd4, 0x78, 0x6f, 0x4f, + 0x23, 0x66, 0x99, 0x08, 0x99, 0x65, 0x6b, 0x38, 0x38, 0x5c, 0xf0, 0xbb, 0xf8, 0xd9, 0x46, 0x78, + 0xa4, 0x94, 0x83, 0x47, 0xca, 0x39, 0x78, 0xa4, 0x92, 0xc2, 0x23, 0xcb, 0x50, 0x39, 0x18, 0x0f, + 0x8e, 0xb1, 0xc7, 0x3d, 0x36, 0xde, 0x8a, 0xf2, 0x4e, 0x35, 0xc6, 0x3b, 0x82, 0x45, 0x6a, 0x61, + 0x16, 0xb9, 0x02, 0x35, 0x76, 0x21, 0xdb, 0xf7, 0x5c, 0x7a, 0xbb, 0x54, 0x54, 0xaa, 0xac, 0x63, + 0xdf, 0x45, 0x9f, 0xf8, 0xee, 0x5c, 0x3d, 0x4d, 0xd8, 0xa9, 0xd6, 0x89, 0x71, 0x89, 0xef, 0xcc, + 0xbd, 0x03, 0x8b, 0x21, 0x72, 0x50, 0x1b, 0xd1, 0xa0, 0x4b, 0x0d, 0xb9, 0xf3, 0xd4, 0x4c, 0xdc, + 0x86, 0x56, 0x40, 0x12, 0x0a, 0xd7, 0x64, 0x51, 0x94, 0xe8, 0xa5, 0x60, 0x82, 0x93, 0x5b, 0xe7, + 0xe3, 0x64, 0x74, 0x19, 0xaa, 0x3c, 0xfc, 0x71, 0x3b, 0x8b, 0x91, 0x6c, 0x84, 0xfc, 0x43, 0x40, + 0xc1, 0xea, 0xe7, 0xf3, 0x16, 0x63, 0xec, 0x51, 0x88, 0xb3, 0x87, 0xfc, 0x73, 0x09, 0x96, 0xc2, + 0xc8, 0x66, 0x35, 0xbc, 0x9f, 0x41, 0x9d, 0xdd, 0xef, 0xf5, 0x89, 0xe0, 0xf3, 0x2c, 0xcf, 0xb5, + 0x89, 0xe7, 0xa2, 0x40, 0xf0, 0x82, 0x80, 0xb0, 0xd7, 0xa9, 0xed, 0x1c, 0xeb, 0xd6, 0xb0, 0x4f, + 0x56, 0xe6, 0x8b, 0x5b, 0x83, 0x77, 0xee, 0x90, 0x3e, 0xf9, 0x2b, 0x09, 0xae, 0x3f, 0x1d, 0x69, + 0xaa, 0x87, 0x43, 0x1e, 0xc8, 0xbc, 0x45, 0x89, 0x1f, 0xfb, 0x55, 0x81, 0x85, 0x7c, 0x77, 0x54, + 0x0c, 0x5a, 0xfe, 0x1b, 0xb1, 0x16, 0x6e, 0x0e, 0xe8, 0x85, 0xe6, 0x88, 0x5e, 0x10, 0xcf, 0xbc, + 0x96, 0x2e, 0x54, 0x4f, 0xf8, 0x74, 0xfe, 0x8b, 0x08, 0xbf, 0x1d, 0xb9, 0x07, 0x2d, 0x9e, 0xff, + 0x1e, 0x54, 0xde, 0x86, 0xcb, 0x0a, 0x76, 0xb1, 0xa5, 0x45, 0x76, 0x33, 0x73, 0x36, 0x69, 0x04, + 0xdd, 0xb4, 0xe9, 0xe6, 0x61, 0x56, 0xe6, 0xbb, 0xf6, 0x1d, 0x32, 0xad, 0xc7, 0x55, 0x31, 0x71, + 0x99, 0x28, 0x1e, 0x4f, 0xfe, 0xab, 0x02, 0xac, 0x3c, 0xd2, 0x34, 0xae, 0xc5, 0xb9, 0x37, 0xf6, + 0xaa, 0x1c, 0xe5, 0xb8, 0x23, 0x59, 0x4c, 0x3a, 0x92, 0x2f, 0x4b, 0xb3, 0x72, 0x1b, 0x63, 0x8d, + 0x4d, 0xdf, 0x76, 0x3a, 0xac, 0x40, 0xe8, 0x21, 0xbf, 0x18, 0x23, 0x01, 0x3d, 0xb5, 0x9f, 0xd3, + 0xfd, 0xab, 0xaa, 0x9f, 0x15, 0x93, 0x47, 0xd0, 0x49, 0x12, 0x6b, 0x4e, 0x55, 0xe2, 0x53, 0x64, + 0x64, 0xb3, 0x0c, 0x6a, 0x83, 0xb8, 0x50, 0xb4, 0x6b, 0xd7, 0x76, 0xe5, 0xff, 0x2a, 0x40, 0x67, + 0x4f, 0x3d, 0xc1, 0xff, 0x7f, 0x0e, 0xe8, 0xfb, 0x70, 0xc9, 0x55, 0x4f, 0x70, 0x3f, 0x14, 0x18, + 0xf7, 0x1d, 0xfc, 0x9c, 0xbb, 0xa0, 0xef, 0xa6, 0x69, 0x92, 0xd4, 0x3a, 0x1a, 0x65, 0xc9, 0x8d, + 0xf4, 0x2b, 0xf8, 0x39, 0x7a, 0x1b, 0x16, 0xc3, 0x85, 0x5a, 0x64, 0x69, 0x55, 0x4a, 0xf2, 0x66, + 0xa8, 0x0e, 0xab, 0xa7, 0xc9, 0xcf, 0xe1, 0xea, 0x53, 0xcb, 0xc5, 0x5e, 0x2f, 0xa8, 0x25, 0x9a, + 0x33, 0x84, 0xbc, 0x01, 0xf5, 0x80, 0xf0, 0x89, 0x57, 0x10, 0x9a, 0x2b, 0xdb, 0xd0, 0xdd, 0x56, + 0x9d, 0x63, 0x3f, 0x8f, 0xbc, 0xc1, 0x6a, 0x3e, 0x5e, 0x21, 0xc2, 0x43, 0x51, 0x02, 0xa5, 0xe0, + 0x43, 0xec, 0x60, 0x6b, 0x80, 0xb7, 0xec, 0xc1, 0x71, 0xa8, 0x34, 0x58, 0x0a, 0x97, 0x06, 0xcf, + 0x5a, 0x6a, 0x7c, 0xf7, 0x33, 0x51, 0x96, 0xb8, 0x7f, 0x36, 0xc2, 0x68, 0x01, 0x8a, 0x3b, 0xf8, + 0xb4, 0x7d, 0x01, 0x01, 0x54, 0x76, 0x6c, 0xc7, 0x54, 0x8d, 0xb6, 0x84, 0xea, 0xb0, 0xc0, 0x6f, + 0x61, 0xda, 0x05, 0xd4, 0x84, 0xda, 0xba, 0x9f, 0xc9, 0x6e, 0x17, 0xef, 0xfe, 0xa9, 0x04, 0x4b, + 0x89, 0x7b, 0x02, 0xd4, 0x02, 0x78, 0x6a, 0x0d, 0xf8, 0x05, 0x4a, 0xfb, 0x02, 0x6a, 0x40, 0xd5, + 0xbf, 0x4e, 0x61, 0xf3, 0xed, 0xdb, 0x14, 0xba, 0x5d, 0x40, 0x6d, 0x68, 0xb0, 0x81, 0xe3, 0xc1, + 0x00, 0xbb, 0x6e, 0xbb, 0x28, 0x7a, 0x36, 0x55, 0xdd, 0x18, 0x3b, 0xb8, 0x5d, 0x22, 0x38, 0xf7, + 0x6d, 0x5e, 0x98, 0xdd, 0x2e, 0x23, 0x04, 0x2d, 0xbf, 0x4a, 0x9b, 0x0f, 0xaa, 0x84, 0xfa, 0xfc, + 0x61, 0x0b, 0x77, 0x9f, 0x85, 0xb3, 0xbd, 0x74, 0x7b, 0x2b, 0x70, 0xf1, 0xa9, 0xa5, 0xe1, 0x43, + 0xdd, 0xc2, 0x5a, 0xf0, 0xa9, 0x7d, 0x01, 0x5d, 0x84, 0xc5, 0x6d, 0xec, 0x0c, 0x71, 0xa8, 0xb3, + 0x80, 0x96, 0xa0, 0xb9, 0xad, 0xbf, 0x08, 0x75, 0x15, 0xe5, 0x52, 0x55, 0x6a, 0x4b, 0xab, 0x5f, + 0x5d, 0x83, 0xda, 0x86, 0xea, 0xa9, 0xeb, 0xb6, 0xed, 0x68, 0xc8, 0x00, 0x44, 0xdf, 0x31, 0x98, + 0x23, 0xdb, 0x12, 0xaf, 0x83, 0xd0, 0xfd, 0x28, 0x17, 0xf0, 0x46, 0x12, 0x90, 0xf3, 0x50, 0xf7, + 0xad, 0x54, 0xf8, 0x18, 0xb0, 0x7c, 0x01, 0x99, 0x14, 0xdb, 0xbe, 0x6e, 0xe2, 0x7d, 0x7d, 0x70, + 0xec, 0x5b, 0xca, 0x0f, 0x32, 0xec, 0x62, 0x12, 0xd4, 0xc7, 0x77, 0x2b, 0x15, 0x1f, 0x7b, 0x68, + 0xe2, 0x6b, 0x4d, 0xf9, 0x02, 0x7a, 0x0e, 0x97, 0x1e, 0xe3, 0x90, 0xd3, 0xe1, 0x23, 0x5c, 0xcd, + 0x46, 0x98, 0x00, 0x3e, 0x27, 0xca, 0x2d, 0x28, 0x53, 0x76, 0x43, 0x69, 0x7e, 0x49, 0xf8, 0x21, + 0x6f, 0xf7, 0x66, 0x36, 0x80, 0x98, 0xed, 0x87, 0xb0, 0x18, 0x7b, 0xfe, 0x87, 0xd2, 0xb4, 0x54, + 0xfa, 0x43, 0xce, 0xee, 0xdd, 0x3c, 0xa0, 0x02, 0xd7, 0x10, 0x5a, 0xd1, 0xf7, 0x0f, 0x28, 0x2d, + 0x53, 0x99, 0xfa, 0x72, 0xab, 0xfb, 0x6e, 0x0e, 0x48, 0x81, 0xc8, 0x84, 0x76, 0xfc, 0x39, 0x1a, + 0xba, 0x3b, 0x71, 0x82, 0x28, 0xb3, 0xbd, 0x97, 0x0b, 0x56, 0xa0, 0x3b, 0xa3, 0x4c, 0x90, 0x78, + 0xe1, 0x14, 0xe7, 0x71, 0x7f, 0x9a, 0xac, 0xa7, 0x57, 0xdd, 0x07, 0xb9, 0xe1, 0x05, 0xea, 0xdf, + 0x66, 0x65, 0x16, 0x69, 0xaf, 0x84, 0xd0, 0x87, 0xe9, 0xd3, 0x4d, 0x78, 0xde, 0xd4, 0x5d, 0x3d, + 0xcf, 0x10, 0xb1, 0x88, 0x1f, 0xd3, 0xfa, 0x88, 0x94, 0x77, 0x36, 0x71, 0xb9, 0xf3, 0xe7, 0xcb, + 0x7e, 0x42, 0xd4, 0xfd, 0xf0, 0x1c, 0x23, 0xc4, 0x02, 0xec, 0xf8, 0x7b, 0x3f, 0x5f, 0x0c, 0x1f, + 0x4c, 0xe5, 0x9a, 0xd9, 0x64, 0xf0, 0x07, 0xb0, 0x18, 0xb3, 0xdb, 0x28, 0xbf, 0x6d, 0xef, 0x4e, + 0x72, 0xae, 0x98, 0x48, 0xc6, 0xca, 0x4d, 0x50, 0x06, 0xf7, 0xa7, 0x94, 0xa4, 0x74, 0xef, 0xe6, + 0x01, 0x15, 0x1b, 0x71, 0xa9, 0xba, 0x8c, 0x15, 0x11, 0xa0, 0x7b, 0xe9, 0x73, 0xa4, 0x17, 0x4b, + 0x74, 0xdf, 0xcf, 0x09, 0x2d, 0x90, 0x9e, 0xc0, 0xc5, 0x94, 0x5a, 0x0f, 0xf4, 0xfe, 0xc4, 0xc3, + 0x8a, 0x17, 0xb9, 0x74, 0xef, 0xe7, 0x05, 0x17, 0x78, 0x7f, 0x0b, 0xd0, 0xde, 0x91, 0x7d, 0xba, + 0x6e, 0x5b, 0x87, 0xfa, 0x70, 0xec, 0xa8, 0x2c, 0xf3, 0x9f, 0x65, 0x1b, 0x92, 0xa0, 0x19, 0x3c, + 0x3a, 0x71, 0x84, 0x40, 0xde, 0x07, 0x78, 0x8c, 0xbd, 0x6d, 0xec, 0x39, 0x44, 0x30, 0xde, 0xce, + 0x32, 0x7f, 0x1c, 0xc0, 0x47, 0xf5, 0xce, 0x54, 0xb8, 0x90, 0x29, 0x6a, 0x6f, 0xab, 0xd6, 0x58, + 0x35, 0x42, 0xc5, 0xea, 0xf7, 0x52, 0x87, 0xc7, 0xc1, 0x32, 0x0e, 0x32, 0x13, 0x5a, 0xa0, 0x3c, + 0x15, 0xa6, 0x3d, 0x74, 0xb5, 0x34, 0xd9, 0xb4, 0x27, 0xeb, 0x16, 0xe2, 0x6a, 0x6f, 0x02, 0xbc, + 0x40, 0xfc, 0xa5, 0x44, 0xcb, 0x85, 0x62, 0x00, 0xcf, 0x74, 0xef, 0x68, 0xd7, 0x50, 0x2d, 0x37, + 0xcf, 0x12, 0x28, 0xe0, 0x39, 0x96, 0xc0, 0xe1, 0xc5, 0x12, 0x34, 0x68, 0x46, 0x6e, 0x7c, 0x50, + 0x5a, 0x75, 0x77, 0xda, 0xed, 0x57, 0xf7, 0xce, 0x74, 0x40, 0x81, 0xe5, 0x08, 0x9a, 0xbe, 0x28, + 0x31, 0xe2, 0xbe, 0x9b, 0xb5, 0xd2, 0x00, 0x26, 0x43, 0x13, 0xa4, 0x83, 0x86, 0x35, 0x41, 0x32, + 0xa1, 0x8d, 0xf2, 0x5d, 0x84, 0x4c, 0xd2, 0x04, 0xd9, 0x59, 0x72, 0xa6, 0xea, 0x62, 0x97, 0x47, + 0xe9, 0x7a, 0x34, 0xf5, 0x2e, 0x2c, 0x55, 0xd5, 0x65, 0xdc, 0x45, 0xc9, 0x17, 0xd0, 0x33, 0xa8, + 0xf0, 0x7f, 0xaf, 0x78, 0x6b, 0x72, 0x12, 0x8a, 0xcf, 0x7e, 0x7b, 0x0a, 0x94, 0x98, 0xf8, 0x18, + 0x56, 0x32, 0x52, 0x50, 0xa9, 0x26, 0x78, 0x72, 0xba, 0x6a, 0x9a, 0x71, 0x10, 0xc8, 0x12, 0x39, + 0xa6, 0x09, 0xc8, 0xb2, 0xf2, 0x51, 0xd3, 0x90, 0xa9, 0x80, 0x92, 0xef, 0x51, 0x53, 0x79, 0x22, + 0xf3, 0xd9, 0x6a, 0x0e, 0x14, 0xc9, 0x27, 0xa5, 0xa9, 0x28, 0x32, 0x5f, 0x9e, 0x4e, 0x43, 0xd1, + 0x87, 0xa5, 0x44, 0x12, 0x02, 0xbd, 0x97, 0x61, 0xae, 0xd3, 0x52, 0x15, 0xd3, 0x10, 0x0c, 0xe1, + 0x8d, 0xd4, 0x80, 0x3b, 0xd5, 0xfd, 0x98, 0x14, 0x9a, 0x4f, 0x43, 0x34, 0x80, 0x8b, 0x29, 0x61, + 0x76, 0xaa, 0xe1, 0xcc, 0x0e, 0xc7, 0xa7, 0x21, 0x39, 0x82, 0xee, 0x9a, 0x63, 0xab, 0xda, 0x40, + 0x75, 0xbd, 0x47, 0x86, 0x87, 0x1d, 0x12, 0x0b, 0xfa, 0xfe, 0x5f, 0x9c, 0x6e, 0xbc, 0x41, 0xe1, + 0x02, 0xa8, 0x9c, 0x98, 0x0e, 0xa0, 0x4e, 0x59, 0x92, 0xfd, 0x3f, 0x02, 0x4a, 0xb7, 0x75, 0x21, + 0x88, 0x0c, 0x05, 0x9a, 0x06, 0xe8, 0x0b, 0xe7, 0xea, 0xd7, 0x35, 0xa8, 0xfa, 0x25, 0xf6, 0xdf, + 0x70, 0x28, 0xfa, 0x1a, 0x62, 0xc3, 0x1f, 0xc0, 0x62, 0xec, 0xb9, 0x6b, 0xaa, 0x3e, 0x4d, 0x7f, + 0x12, 0x3b, 0xed, 0xb8, 0x9e, 0xf1, 0x3f, 0x63, 0x12, 0x6e, 0xe2, 0x3b, 0x59, 0xf1, 0x65, 0xdc, + 0x43, 0x9c, 0x32, 0xf1, 0xff, 0x6d, 0xbf, 0x6c, 0x07, 0x20, 0xe4, 0x91, 0x4d, 0x2e, 0x44, 0x23, + 0x4e, 0xc6, 0x34, 0x6a, 0x99, 0xa9, 0x4e, 0xd7, 0xbb, 0x79, 0x6a, 0x7e, 0xb2, 0xcd, 0x66, 0xb6, + 0xab, 0xf5, 0x14, 0x1a, 0xe1, 0x12, 0x51, 0x94, 0xfa, 0xd7, 0x3f, 0xc9, 0x1a, 0xd2, 0x69, 0xbb, + 0xd8, 0x3e, 0xa7, 0x35, 0x9e, 0x32, 0x9d, 0x4b, 0xcc, 0x48, 0xfc, 0xee, 0x21, 0xc3, 0x8c, 0x64, + 0xdc, 0x78, 0xa4, 0x7a, 0x2f, 0xd9, 0x17, 0x1a, 0x2c, 0xcd, 0x10, 0x4f, 0xa8, 0xa7, 0xa6, 0x19, + 0x32, 0xae, 0x28, 0x52, 0xd3, 0x0c, 0x59, 0x19, 0x7a, 0xf9, 0xc2, 0xda, 0x47, 0xdf, 0xff, 0x70, + 0xa8, 0x7b, 0x47, 0xe3, 0x03, 0xb2, 0xfb, 0x07, 0x6c, 0xe8, 0xfb, 0xba, 0xcd, 0x7f, 0x3d, 0xf0, + 0xd9, 0xfd, 0x01, 0x9d, 0xed, 0x01, 0x99, 0x6d, 0x74, 0x70, 0x50, 0xa1, 0xad, 0x8f, 0xfe, 0x27, + 0x00, 0x00, 0xff, 0xff, 0x36, 0x4c, 0xc5, 0x32, 0x4e, 0x4e, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/internal/proto/index_coord.proto b/internal/proto/index_coord.proto index 3f931ee87f..6be1a8e528 100644 --- a/internal/proto/index_coord.proto +++ b/internal/proto/index_coord.proto @@ -49,6 +49,7 @@ message IndexInfo { repeated common.KeyValuePair type_params = 5; repeated common.KeyValuePair index_params = 6; // index build progress + // The real-time statistics may not be expected due to the existence of the compaction mechanism. int64 indexed_rows = 7; int64 total_rows = 8; // index state diff --git a/internal/proto/indexpb/index_coord.pb.go b/internal/proto/indexpb/index_coord.pb.go index f8d11a2a0b..d651e4c21c 100644 --- a/internal/proto/indexpb/index_coord.pb.go +++ b/internal/proto/indexpb/index_coord.pb.go @@ -35,6 +35,7 @@ type IndexInfo struct { TypeParams []*commonpb.KeyValuePair `protobuf:"bytes,5,rep,name=type_params,json=typeParams,proto3" json:"type_params,omitempty"` IndexParams []*commonpb.KeyValuePair `protobuf:"bytes,6,rep,name=index_params,json=indexParams,proto3" json:"index_params,omitempty"` // index build progress + // The real-time statistics may not be expected due to the existence of the compaction mechanism. IndexedRows int64 `protobuf:"varint,7,opt,name=indexed_rows,json=indexedRows,proto3" json:"indexed_rows,omitempty"` TotalRows int64 `protobuf:"varint,8,opt,name=total_rows,json=totalRows,proto3" json:"total_rows,omitempty"` // index state diff --git a/tests/python_client/testcases/test_utility.py b/tests/python_client/testcases/test_utility.py index 6b48b4281f..156989df75 100644 --- a/tests/python_client/testcases/test_utility.py +++ b/tests/python_client/testcases/test_utility.py @@ -777,8 +777,8 @@ class TestUtilityBase(TestcaseBase): cw = self.init_collection_wrap(name=c_name) data = cf.gen_default_list_data(nb) cw.insert(data=data) - cw.create_index(default_field_name, default_index_params) cw.flush() + cw.create_index(default_field_name, default_index_params) res, _ = self.utility_wrap.wait_for_index_building_complete(c_name) assert res is True res, _ = self.utility_wrap.index_building_progress(c_name)