diff --git a/internal/indexcoord/flush_segment_watcher.go b/internal/indexcoord/flush_segment_watcher.go index 8fea4708a6..f9de3f9076 100644 --- a/internal/indexcoord/flush_segment_watcher.go +++ b/internal/indexcoord/flush_segment_watcher.go @@ -244,10 +244,13 @@ func (fsw *flushedSegmentWatcher) childrenRun() { defer fsw.childrenTaskMutex.Unlock() if len(fsw.childrenTasks) > 0 { log.Debug("IndexCoord flushedSegmentWatcher schedule children tasks", zap.Int("internal task num", len(fsw.childrenTasks))) - for _, tasks := range fsw.childrenTasks { + for segID, tasks := range fsw.childrenTasks { for _, t := range tasks { fsw.childrenProcess(t) } + if len(fsw.childrenTasks[segID]) == 0 { + delete(fsw.childrenTasks, segID) + } } } } diff --git a/internal/indexcoord/index_builder.go b/internal/indexcoord/index_builder.go index e3bca6e70e..99886a95c4 100644 --- a/internal/indexcoord/index_builder.go +++ b/internal/indexcoord/index_builder.go @@ -359,7 +359,7 @@ func (ib *indexBuilder) getTaskState(buildID, nodeID UniqueID) indexTaskState { if info.State == commonpb.IndexState_Failed || info.State == commonpb.IndexState_Finished { log.Info("this task has been finished", zap.Int64("buildID", info.BuildID), zap.String("index state", info.State.String())) - if err := ib.meta.FinishTask(info.BuildID, info.State, info.IndexFiles); err != nil { + if err := ib.meta.FinishTask(info); err != nil { log.Error("IndexCoord update index state fail", zap.Int64("buildID", info.BuildID), zap.String("index state", info.State.String()), zap.Error(err)) return indexTaskInProgress diff --git a/internal/indexcoord/meta_table.go b/internal/indexcoord/meta_table.go index 5222540f28..60644db6a3 100644 --- a/internal/indexcoord/meta_table.go +++ b/internal/indexcoord/meta_table.go @@ -340,7 +340,7 @@ func (mt *metaTable) UpdateVersion(buildID UniqueID, nodeID UniqueID) error { updateFunc := func(segIdx *model.SegmentIndex) error { segIdx.NodeID = nodeID segIdx.IndexVersion++ - return mt.saveSegmentIndexMeta(segIdx) + return mt.alterSegmentIndexes([]*model.SegmentIndex{segIdx}) } return mt.updateSegIndexMeta(segIdx, updateFunc) @@ -936,9 +936,9 @@ func (mt *metaTable) ResetNodeID(buildID UniqueID) error { mt.segmentIndexLock.Lock() defer mt.segmentIndexLock.Unlock() - updateFunc := func(sedIdx *model.SegmentIndex) error { - sedIdx.NodeID = 0 - return mt.saveSegmentIndexMeta(sedIdx) + updateFunc := func(segIdx *model.SegmentIndex) error { + segIdx.NodeID = 0 + return mt.alterSegmentIndexes([]*model.SegmentIndex{segIdx}) } segIdx, ok := mt.buildID2SegmentIndex[buildID] if !ok { @@ -956,27 +956,29 @@ func (mt *metaTable) ResetMeta(buildID UniqueID) error { if !ok { return fmt.Errorf("there is no index with buildID: %d", buildID) } - updateFunc := func(sedIdx *model.SegmentIndex) error { - sedIdx.NodeID = 0 + updateFunc := func(segIdx *model.SegmentIndex) error { + segIdx.NodeID = 0 segIdx.IndexState = commonpb.IndexState_Unissued - return mt.saveSegmentIndexMeta(sedIdx) + return mt.alterSegmentIndexes([]*model.SegmentIndex{segIdx}) } return mt.updateSegIndexMeta(segIdx, updateFunc) } -func (mt *metaTable) FinishTask(buildID UniqueID, state commonpb.IndexState, filePaths []string) error { +func (mt *metaTable) FinishTask(taskInfo *indexpb.IndexTaskInfo) error { mt.segmentIndexLock.Lock() defer mt.segmentIndexLock.Unlock() - segIdx, ok := mt.buildID2SegmentIndex[buildID] + segIdx, ok := mt.buildID2SegmentIndex[taskInfo.BuildID] if !ok || segIdx.IsDeleted { - return fmt.Errorf("there is no index with buildID: %d", buildID) + return fmt.Errorf("there is no index with buildID: %d", taskInfo.BuildID) } updateFunc := func(segIdx *model.SegmentIndex) error { - segIdx.IndexState = state - segIdx.IndexFilePaths = filePaths - return mt.saveSegmentIndexMeta(segIdx) + segIdx.IndexState = taskInfo.State + segIdx.IndexFilePaths = taskInfo.IndexFiles + segIdx.FailReason = taskInfo.FailReason + segIdx.IndexSize = taskInfo.SerializedSize + return mt.alterSegmentIndexes([]*model.SegmentIndex{segIdx}) } return mt.updateSegIndexMeta(segIdx, updateFunc) diff --git a/internal/indexcoord/meta_table_test.go b/internal/indexcoord/meta_table_test.go index 20c4c042f9..ef330f394f 100644 --- a/internal/indexcoord/meta_table_test.go +++ b/internal/indexcoord/meta_table_test.go @@ -173,11 +173,11 @@ func constructMetaTable(catalog metastore.IndexCoordCatalog) *metaTable { NodeID: 0, IndexState: commonpb.IndexState_Finished, FailReason: "", - IndexVersion: 0, + IndexVersion: 1, IsDeleted: false, CreateTime: createTs, - IndexFilePaths: nil, - IndexSize: 0, + IndexFilePaths: []string{"file1", "file2"}, + IndexSize: 1024, }, }, } @@ -330,6 +330,9 @@ func TestMetaTable_UpdateVersion(t *testing.T) { save: func(s string, s2 string) error { return nil }, + multiSave: func(m map[string]string) error { + return nil + }, } mt := constructMetaTable(&indexcoord.Catalog{Txn: kv}) err := mt.AddIndex(segIdx) @@ -377,16 +380,15 @@ func TestMetaTable_UpdateVersion(t *testing.T) { save: func(s string, s2 string) error { return nil }, + multiSave: func(m map[string]string) error { + return errors.New("error") + }, } mt := constructMetaTable(&indexcoord.Catalog{Txn: kv}) err := mt.AddIndex(segIdx) assert.NoError(t, err) - kv.save = func(s string, s2 string) error { - return errors.New("error") - } - err = mt.UpdateVersion(newBuildID, nodeID) assert.Error(t, err) }) @@ -772,3 +774,372 @@ func TestMetaTable_GetIndexFilePathInfo(t *testing.T) { assert.Nil(t, info) }) } + +func TestMetaTable_GetIndexFilePathByBuildID(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: &mockETCDKV{ + save: func(s string, s2 string) error { + return nil + }, + }}) + canRecycle, files := mt.GetIndexFilePathByBuildID(buildID) + assert.True(t, canRecycle) + assert.ElementsMatch(t, []string{"file1", "file2"}, files) + + segIdx := &model.SegmentIndex{ + SegmentID: segID + 1, + CollectionID: collID, + PartitionID: partID, + NumRows: 1026, + IndexID: indexID, + BuildID: buildID + 1, + NodeID: 0, + IndexVersion: 0, + IndexState: commonpb.IndexState_Unissued, + FailReason: "", + IsDeleted: false, + CreateTime: 0, + IndexFilePaths: nil, + IndexSize: 0, + } + err := mt.AddIndex(segIdx) + assert.NoError(t, err) + + canRecycle, files = mt.GetIndexFilePathByBuildID(buildID + 1) + assert.False(t, canRecycle) + assert.Zero(t, len(files)) + + canRecycle, files = mt.GetIndexFilePathByBuildID(buildID + 2) + assert.False(t, canRecycle) + assert.Zero(t, len(files)) +} + +func TestMetaTable_IsIndexDeleted(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: &mockETCDKV{ + multiSave: func(m map[string]string) error { + return nil + }, + }, + }) + + deleted := mt.IsIndexDeleted(collID, indexID) + assert.False(t, deleted) + + err := mt.MarkIndexAsDeleted(collID, []int64{indexID}) + assert.NoError(t, err) + deleted = mt.IsIndexDeleted(collID, indexID) + assert.True(t, deleted) + + deleted = mt.IsIndexDeleted(collID+1, indexID) + assert.True(t, deleted) + + deleted = mt.IsIndexDeleted(collID, indexID+1) + assert.True(t, deleted) +} + +func TestMetaTable_IsSegIndexDeleted(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: &mockETCDKV{ + multiSave: func(m map[string]string) error { + return nil + }, + }, + }) + + deleted := mt.IsSegIndexDeleted(buildID) + assert.False(t, deleted) + + err := mt.MarkSegmentsIndexAsDeleted([]int64{segID}) + assert.NoError(t, err) + deleted = mt.IsSegIndexDeleted(buildID) + assert.True(t, deleted) + + deleted = mt.IsSegIndexDeleted(buildID + 1) + assert.True(t, deleted) +} + +func TestMetaTable_GetMetasByNodeID(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: &mockETCDKV{ + save: func(s string, s2 string) error { + return nil + }, + multiSave: func(m map[string]string) error { + return nil + }, + }, + }) + err := mt.AddIndex(&model.SegmentIndex{ + SegmentID: segID + 1, + CollectionID: collID, + PartitionID: partID, + NumRows: 1025, + IndexID: indexID, + BuildID: buildID + 1, + NodeID: 0, + }) + assert.NoError(t, err) + err = mt.UpdateVersion(buildID+1, nodeID) + assert.NoError(t, err) + segIdxes := mt.GetMetasByNodeID(nodeID) + assert.Equal(t, 1, len(segIdxes)) + + err = mt.MarkSegmentsIndexAsDeleted([]int64{segID + 1}) + assert.NoError(t, err) + + segIdxes = mt.GetMetasByNodeID(nodeID) + assert.Equal(t, 0, len(segIdxes)) +} + +func TestMetaTable_GetAllSegIndexes(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: &mockETCDKV{ + multiSave: func(m map[string]string) error { + return nil + }, + }, + }) + segIdxes := mt.GetAllSegIndexes() + assert.Equal(t, 1, len(segIdxes)) + + err := mt.MarkSegmentsIndexAsDeleted([]int64{segID}) + assert.NoError(t, err) + + segIdxes = mt.GetAllSegIndexes() + assert.Equal(t, 1, len(segIdxes)) +} + +func TestMetaTable_GetDeletedIndexes(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: &mockETCDKV{ + multiSave: func(m map[string]string) error { + return nil + }, + }, + }) + + deletedIndexes := mt.GetDeletedIndexes() + assert.Equal(t, 0, len(deletedIndexes)) + + err := mt.MarkIndexAsDeleted(collID, []int64{indexID}) + assert.NoError(t, err) + + deletedIndexes = mt.GetDeletedIndexes() + assert.Equal(t, 1, len(deletedIndexes)) +} + +func TestMetaTable_GetBuildIDsFromIndexID(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{}) + buildIDs := mt.GetBuildIDsFromIndexID(indexID) + assert.Equal(t, 1, len(buildIDs)) +} + +func TestMetaTable_GetBuildIDsFromSegIDs(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{}) + buildIDs := mt.GetBuildIDsFromSegIDs([]int64{segID, segID + 1}) + assert.Equal(t, 1, len(buildIDs)) +} + +func TestMetaTable_RemoveIndex(t *testing.T) { + t.Run("success", func(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: &mockETCDKV{ + remove: func(s string) error { + return nil + }, + }, + }) + err := mt.RemoveIndex(collID, indexID) + assert.NoError(t, err) + _, ok := mt.collectionIndexes[collID][indexID] + assert.False(t, ok) + }) + + t.Run("fail", func(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: &mockETCDKV{ + remove: func(s string) error { + return errors.New("error") + }, + }, + }) + err := mt.RemoveIndex(collID, indexID) + assert.Error(t, err) + _, ok := mt.collectionIndexes[collID][indexID] + assert.True(t, ok) + }) +} + +func TestMetaTable_RemoveSegmentIndex(t *testing.T) { + t.Run("success", func(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: &mockETCDKV{ + remove: func(s string) error { + return nil + }, + }, + }) + err := mt.RemoveSegmentIndex(collID, partID, segID, buildID) + assert.NoError(t, err) + _, ok := mt.segmentIndexes[segID][indexID] + assert.False(t, ok) + _, ok = mt.buildID2SegmentIndex[buildID] + assert.False(t, ok) + }) + t.Run("fail", func(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: &mockETCDKV{ + remove: func(s string) error { + return errors.New("error") + }, + }, + }) + err := mt.RemoveSegmentIndex(collID, partID, segID, buildID) + assert.Error(t, err) + _, ok := mt.segmentIndexes[segID][indexID] + assert.True(t, ok) + _, ok = mt.buildID2SegmentIndex[buildID] + assert.True(t, ok) + }) +} + +func TestMetaTable_HasBuildID(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{}) + has := mt.HasBuildID(buildID) + assert.True(t, has) + + has = mt.HasBuildID(buildID + 1) + assert.False(t, has) +} + +func TestMetaTable_ResetNodeID(t *testing.T) { + t.Run("success", func(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: &mockETCDKV{ + multiSave: func(m map[string]string) error { + return nil + }, + }, + }) + err := mt.ResetNodeID(buildID) + assert.NoError(t, err) + assert.Equal(t, int64(0), mt.buildID2SegmentIndex[buildID].NodeID) + }) + + t.Run("fail", func(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: &mockETCDKV{ + multiSave: func(m map[string]string) error { + return errors.New("error") + }, + }, + }) + err := mt.ResetNodeID(buildID) + assert.Error(t, err) + + err = mt.ResetNodeID(buildID + 1) + assert.Error(t, err) + }) +} + +func TestMetaTable_ResetMeta(t *testing.T) { + t.Run("success", func(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: &mockETCDKV{ + multiSave: func(m map[string]string) error { + return nil + }, + }, + }) + err := mt.ResetMeta(buildID) + assert.NoError(t, err) + assert.Equal(t, int64(0), mt.buildID2SegmentIndex[buildID].NodeID) + assert.Equal(t, commonpb.IndexState_Unissued, mt.buildID2SegmentIndex[buildID].IndexState) + }) + + t.Run("fail", func(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: &mockETCDKV{ + multiSave: func(m map[string]string) error { + return errors.New("error") + }, + }, + }) + err := mt.ResetMeta(buildID) + assert.Error(t, err) + + err = mt.ResetMeta(buildID + 1) + assert.Error(t, err) + }) +} + +func TestMetaTable_FinishTask(t *testing.T) { + segIdx := &model.SegmentIndex{ + SegmentID: segID + 1, + CollectionID: collID, + PartitionID: partID, + NumRows: 10240, + IndexID: indexID, + BuildID: buildID + 1, + NodeID: 1, + IndexVersion: 1, + IndexState: commonpb.IndexState_InProgress, + FailReason: "", + IsDeleted: false, + CreateTime: 1234, + IndexFilePaths: nil, + IndexSize: 0, + } + t.Run("success", func(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: &mockETCDKV{ + save: func(s string, s2 string) error { + return nil + }, + multiSave: func(m map[string]string) error { + return nil + }, + }, + }) + err := mt.AddIndex(segIdx) + assert.NoError(t, err) + + err = mt.FinishTask(&indexpb.IndexTaskInfo{ + BuildID: buildID + 1, + State: commonpb.IndexState_Finished, + IndexFiles: []string{"file3", "file4"}, + SerializedSize: 1025, + FailReason: "", + }) + + assert.NoError(t, err) + assert.Equal(t, commonpb.IndexState_Finished, mt.buildID2SegmentIndex[buildID+1].IndexState) + assert.Equal(t, uint64(1025), mt.buildID2SegmentIndex[buildID+1].IndexSize) + assert.ElementsMatch(t, []string{"file3", "file4"}, mt.buildID2SegmentIndex[buildID+1].IndexFilePaths) + }) + + t.Run("fail", func(t *testing.T) { + mt := constructMetaTable(&indexcoord.Catalog{ + Txn: &mockETCDKV{ + save: func(s string, s2 string) error { + return nil + }, + multiSave: func(m map[string]string) error { + return errors.New("error") + }, + }, + }) + err := mt.AddIndex(segIdx) + assert.NoError(t, err) + + err = mt.FinishTask(&indexpb.IndexTaskInfo{ + BuildID: buildID + 1, + State: commonpb.IndexState_Finished, + IndexFiles: []string{"file3", "file4"}, + SerializedSize: 1025, + FailReason: "", + }) + assert.Error(t, err) + }) +} diff --git a/internal/proto/index_coord.proto b/internal/proto/index_coord.proto index c638fb08d8..6cbeb0262f 100644 --- a/internal/proto/index_coord.proto +++ b/internal/proto/index_coord.proto @@ -207,6 +207,7 @@ message IndexTaskInfo { common.IndexState state = 2; repeated string index_files = 3; uint64 serialized_size = 4; + string fail_reason = 5; } message QueryJobsResponse { diff --git a/internal/proto/indexpb/index_coord.pb.go b/internal/proto/indexpb/index_coord.pb.go index efcbe6fdaa..86f26e75b0 100644 --- a/internal/proto/indexpb/index_coord.pb.go +++ b/internal/proto/indexpb/index_coord.pb.go @@ -1513,6 +1513,7 @@ type IndexTaskInfo struct { State commonpb.IndexState `protobuf:"varint,2,opt,name=state,proto3,enum=milvus.proto.common.IndexState" json:"state,omitempty"` IndexFiles []string `protobuf:"bytes,3,rep,name=index_files,json=indexFiles,proto3" json:"index_files,omitempty"` SerializedSize uint64 `protobuf:"varint,4,opt,name=serialized_size,json=serializedSize,proto3" json:"serialized_size,omitempty"` + FailReason string `protobuf:"bytes,5,opt,name=fail_reason,json=failReason,proto3" json:"fail_reason,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1571,6 +1572,13 @@ func (m *IndexTaskInfo) GetSerializedSize() uint64 { return 0 } +func (m *IndexTaskInfo) GetFailReason() string { + if m != nil { + return m.FailReason + } + return "" +} + type QueryJobsResponse struct { Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` ClusterID int64 `protobuf:"varint,2,opt,name=clusterID,proto3" json:"clusterID,omitempty"` @@ -1898,131 +1906,131 @@ func init() { func init() { proto.RegisterFile("index_coord.proto", fileDescriptor_f9e019eb3fda53c2) } var fileDescriptor_f9e019eb3fda53c2 = []byte{ - // 1976 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0xdd, 0x6f, 0x1b, 0x59, - 0x15, 0xcf, 0x78, 0xf2, 0xe1, 0x39, 0xb6, 0x93, 0xf4, 0xb6, 0x8b, 0xbc, 0x6e, 0x4b, 0x93, 0x29, - 0x6d, 0x0d, 0xd2, 0x26, 0x25, 0x0b, 0x68, 0x41, 0x80, 0x94, 0x8f, 0x6d, 0x71, 0xba, 0x89, 0xc2, - 0xb8, 0x5a, 0x89, 0x15, 0xd2, 0x30, 0xf6, 0x5c, 0xa7, 0x77, 0x63, 0xcf, 0x75, 0xe7, 0xde, 0x69, - 0x9b, 0x22, 0x21, 0x5e, 0x90, 0x00, 0xad, 0x84, 0xc4, 0x03, 0x88, 0x17, 0x9e, 0x78, 0xea, 0x03, - 0xaf, 0x48, 0xfc, 0x03, 0xbc, 0xf0, 0x67, 0xf0, 0x87, 0xa0, 0xfb, 0x31, 0xe3, 0x99, 0xf1, 0x38, - 0x76, 0xe2, 0xec, 0x53, 0xdf, 0x7c, 0xcf, 0x9c, 0xfb, 0x75, 0x7e, 0xe7, 0x9e, 0xdf, 0xef, 0x5e, - 0xc3, 0x0d, 0x12, 0xf8, 0xf8, 0x8d, 0xdb, 0xa5, 0x34, 0xf4, 0xb7, 0x86, 0x21, 0xe5, 0x14, 0xa1, - 0x01, 0xe9, 0xbf, 0x8a, 0x98, 0x6a, 0x6d, 0xc9, 0xef, 0x8d, 0x6a, 0x97, 0x0e, 0x06, 0x34, 0x50, - 0xb6, 0xc6, 0x2a, 0x09, 0x38, 0x0e, 0x03, 0xaf, 0xaf, 0xdb, 0xd5, 0x74, 0x0f, 0xfb, 0xab, 0x12, - 0x58, 0x2d, 0xd1, 0xab, 0x15, 0xf4, 0x28, 0xb2, 0xa1, 0xda, 0xa5, 0xfd, 0x3e, 0xee, 0x72, 0x42, - 0x83, 0xd6, 0x41, 0xdd, 0xd8, 0x30, 0x9a, 0xa6, 0x93, 0xb1, 0xa1, 0x3a, 0xac, 0xf4, 0x08, 0xee, - 0xfb, 0xad, 0x83, 0x7a, 0x49, 0x7e, 0x8e, 0x9b, 0xe8, 0x2e, 0x80, 0x5a, 0x60, 0xe0, 0x0d, 0x70, - 0xdd, 0xdc, 0x30, 0x9a, 0x96, 0x63, 0x49, 0xcb, 0xb1, 0x37, 0xc0, 0xa2, 0xa3, 0x6c, 0xb4, 0x0e, - 0xea, 0x8b, 0xaa, 0xa3, 0x6e, 0xa2, 0x3d, 0xa8, 0xf0, 0xf3, 0x21, 0x76, 0x87, 0x5e, 0xe8, 0x0d, - 0x58, 0x7d, 0x69, 0xc3, 0x6c, 0x56, 0x76, 0x36, 0xb7, 0x32, 0x5b, 0xd3, 0x7b, 0x7a, 0x86, 0xcf, - 0x3f, 0xf7, 0xfa, 0x11, 0x3e, 0xf1, 0x48, 0xe8, 0x80, 0xe8, 0x75, 0x22, 0x3b, 0xa1, 0x03, 0xa8, - 0xaa, 0xc9, 0xf5, 0x20, 0xcb, 0xb3, 0x0e, 0x52, 0x91, 0xdd, 0xd4, 0x28, 0xf6, 0xef, 0x0c, 0x80, - 0x27, 0x72, 0x3b, 0xc2, 0x88, 0x7e, 0x1c, 0xef, 0x88, 0x04, 0x3d, 0x2a, 0xa3, 0x51, 0xd9, 0xb9, - 0xbb, 0x35, 0x1e, 0xf2, 0xad, 0x24, 0x84, 0x7a, 0xc3, 0x32, 0x9a, 0x75, 0x58, 0xf1, 0x71, 0x1f, + // 1983 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0xcd, 0x8f, 0x1b, 0x49, + 0x15, 0x9f, 0x76, 0xcf, 0x87, 0xfb, 0xd9, 0x9e, 0x99, 0x54, 0xb2, 0xc8, 0xeb, 0x24, 0x64, 0xa6, + 0x43, 0x12, 0x83, 0xb4, 0x33, 0x61, 0x16, 0xd0, 0x82, 0x00, 0x69, 0x3e, 0x36, 0xc1, 0x93, 0x9d, + 0xd1, 0xd0, 0x8e, 0x56, 0x62, 0x85, 0xd4, 0xb4, 0xdd, 0x65, 0xa7, 0x76, 0xec, 0x2e, 0xa7, 0xab, + 0x3a, 0xc9, 0x04, 0x09, 0x71, 0x41, 0x02, 0xb4, 0x12, 0x12, 0x07, 0x10, 0x17, 0x4e, 0x9c, 0xf6, + 0xc0, 0x15, 0x89, 0x7f, 0x80, 0x03, 0xfc, 0x19, 0xfc, 0x21, 0xa8, 0x3e, 0xba, 0xdd, 0xdd, 0x6e, + 0x8f, 0x9d, 0xf1, 0x70, 0xda, 0x9b, 0xeb, 0xf5, 0xab, 0xaf, 0xf7, 0x7b, 0xf5, 0x7e, 0xbf, 0x2a, + 0xc3, 0x0d, 0x12, 0xf8, 0xf8, 0x8d, 0xdb, 0xa5, 0x34, 0xf4, 0x77, 0x46, 0x21, 0xe5, 0x14, 0xa1, + 0x21, 0x19, 0xbc, 0x8a, 0x98, 0x6a, 0xed, 0xc8, 0xef, 0x8d, 0x6a, 0x97, 0x0e, 0x87, 0x34, 0x50, + 0xb6, 0xc6, 0x3a, 0x09, 0x38, 0x0e, 0x03, 0x6f, 0xa0, 0xdb, 0xd5, 0x74, 0x0f, 0xfb, 0x8b, 0x12, + 0x58, 0x2d, 0xd1, 0xab, 0x15, 0xf4, 0x28, 0xb2, 0xa1, 0xda, 0xa5, 0x83, 0x01, 0xee, 0x72, 0x42, + 0x83, 0xd6, 0x51, 0xdd, 0xd8, 0x32, 0x9a, 0xa6, 0x93, 0xb1, 0xa1, 0x3a, 0xac, 0xf5, 0x08, 0x1e, + 0xf8, 0xad, 0xa3, 0x7a, 0x49, 0x7e, 0x8e, 0x9b, 0xe8, 0x2e, 0x80, 0x5a, 0x60, 0xe0, 0x0d, 0x71, + 0xdd, 0xdc, 0x32, 0x9a, 0x96, 0x63, 0x49, 0xcb, 0xa9, 0x37, 0xc4, 0xa2, 0xa3, 0x6c, 0xb4, 0x8e, + 0xea, 0xcb, 0xaa, 0xa3, 0x6e, 0xa2, 0x03, 0xa8, 0xf0, 0x8b, 0x11, 0x76, 0x47, 0x5e, 0xe8, 0x0d, + 0x59, 0x7d, 0x65, 0xcb, 0x6c, 0x56, 0xf6, 0xb6, 0x77, 0x32, 0x5b, 0xd3, 0x7b, 0x7a, 0x86, 0x2f, + 0x3e, 0xf5, 0x06, 0x11, 0x3e, 0xf3, 0x48, 0xe8, 0x80, 0xe8, 0x75, 0x26, 0x3b, 0xa1, 0x23, 0xa8, + 0xaa, 0xc9, 0xf5, 0x20, 0xab, 0xf3, 0x0e, 0x52, 0x91, 0xdd, 0xd4, 0x28, 0xf6, 0x6f, 0x0c, 0x80, + 0x27, 0x72, 0x3b, 0xc2, 0x88, 0x7e, 0x18, 0xef, 0x88, 0x04, 0x3d, 0x2a, 0xa3, 0x51, 0xd9, 0xbb, + 0xbb, 0x33, 0x19, 0xf2, 0x9d, 0x24, 0x84, 0x7a, 0xc3, 0x32, 0x9a, 0x75, 0x58, 0xf3, 0xf1, 0x00, 0x73, 0xec, 0xcb, 0x48, 0x95, 0x9d, 0xb8, 0x89, 0xee, 0x41, 0xa5, 0x1b, 0x62, 0x8f, 0x63, 0x97, - 0x13, 0x1d, 0xaa, 0x45, 0x07, 0x94, 0xe9, 0x39, 0x19, 0x60, 0xfb, 0x7f, 0x26, 0x54, 0xdb, 0xf8, - 0x74, 0x80, 0x03, 0xae, 0x56, 0x32, 0x0b, 0x32, 0x1b, 0x50, 0x19, 0x7a, 0x21, 0x27, 0xda, 0x45, - 0xa1, 0x93, 0x36, 0xa1, 0x3b, 0x60, 0x31, 0x3d, 0xea, 0x81, 0x9c, 0xd5, 0x74, 0x46, 0x06, 0xf4, - 0x21, 0x94, 0x83, 0x68, 0xe0, 0x86, 0xf4, 0x35, 0x8b, 0x11, 0x0a, 0xa2, 0x81, 0x43, 0x5f, 0xb3, - 0x34, 0x76, 0x4b, 0x59, 0xec, 0xea, 0xb0, 0xd2, 0x89, 0x88, 0x4c, 0x87, 0x65, 0xf5, 0x45, 0x37, - 0xd1, 0x37, 0x60, 0x39, 0xa0, 0x3e, 0x6e, 0x1d, 0xd4, 0x57, 0xe4, 0x07, 0xdd, 0x42, 0xf7, 0xa1, - 0xa6, 0x82, 0xfa, 0x0a, 0x87, 0x8c, 0xd0, 0xa0, 0x5e, 0x56, 0x7b, 0x91, 0xc6, 0xcf, 0x95, 0x0d, - 0x7d, 0x1f, 0x96, 0x18, 0xf7, 0x38, 0xae, 0x5b, 0x1b, 0x46, 0x73, 0x75, 0xe7, 0x5e, 0x21, 0x8e, - 0x32, 0x34, 0x6d, 0xe1, 0xe6, 0x28, 0x6f, 0x11, 0xd8, 0x9e, 0x47, 0xfa, 0x6e, 0x88, 0x3d, 0x46, - 0x83, 0x3a, 0xc8, 0x1c, 0x04, 0x61, 0x72, 0xa4, 0x05, 0x7d, 0x27, 0x3e, 0x44, 0x3d, 0xd2, 0xc7, - 0xcc, 0x1d, 0x7a, 0xfc, 0x05, 0xab, 0x57, 0x36, 0xcc, 0xa6, 0xe5, 0xac, 0xc9, 0x0f, 0x4f, 0x84, - 0xfd, 0x44, 0x98, 0xd3, 0xf8, 0x55, 0x2f, 0xc4, 0xaf, 0x96, 0xc7, 0x0f, 0x3d, 0x80, 0x55, 0x86, - 0x43, 0xe2, 0xf5, 0xc9, 0x5b, 0xec, 0x32, 0xf2, 0x16, 0xd7, 0x57, 0xa5, 0x4f, 0x2d, 0xb1, 0xb6, - 0xc9, 0x5b, 0x6c, 0xff, 0xd5, 0x80, 0x9b, 0x0e, 0x3e, 0x25, 0x8c, 0xe3, 0xf0, 0x98, 0xfa, 0xd8, - 0xc1, 0x2f, 0x23, 0xcc, 0x38, 0x7a, 0x0c, 0x8b, 0x1d, 0x8f, 0x61, 0x9d, 0x71, 0x77, 0x0a, 0x37, - 0x7f, 0xc4, 0x4e, 0xf7, 0x3c, 0x86, 0x1d, 0xe9, 0x89, 0x7e, 0x00, 0x2b, 0x9e, 0xef, 0x87, 0x98, - 0x31, 0x89, 0xfb, 0xa4, 0x4e, 0xbb, 0xca, 0xc7, 0x89, 0x9d, 0x53, 0x20, 0x99, 0x69, 0x90, 0xec, - 0x3f, 0x19, 0x70, 0x2b, 0xbb, 0x32, 0x36, 0xa4, 0x01, 0xc3, 0xe8, 0x63, 0x58, 0x16, 0xa1, 0x8e, - 0x98, 0x5e, 0xdc, 0xed, 0xc2, 0x79, 0xda, 0xd2, 0xc5, 0xd1, 0xae, 0xe2, 0x80, 0x93, 0x80, 0xf0, - 0xf8, 0x6c, 0xaa, 0x15, 0x6e, 0xe6, 0x0f, 0x92, 0x2e, 0x53, 0xad, 0x80, 0x70, 0x75, 0x1c, 0x1d, - 0x20, 0xc9, 0x6f, 0xfb, 0x17, 0x70, 0xeb, 0x29, 0xe6, 0x29, 0xc8, 0x75, 0xac, 0x66, 0x39, 0x19, - 0xd9, 0xca, 0x54, 0xca, 0x55, 0x26, 0xfb, 0x1f, 0x06, 0x7c, 0x90, 0x1b, 0x7b, 0x9e, 0xdd, 0x26, - 0xb9, 0x5b, 0x9a, 0x27, 0x77, 0xcd, 0x7c, 0xee, 0xda, 0xbf, 0x35, 0xe0, 0xf6, 0x53, 0xcc, 0xd3, - 0x75, 0xe1, 0x9a, 0x23, 0x81, 0xbe, 0x09, 0x90, 0xd4, 0x03, 0x56, 0x37, 0x37, 0xcc, 0xa6, 0xe9, - 0xa4, 0x2c, 0xf6, 0x1f, 0x0c, 0xb8, 0x31, 0x36, 0x7f, 0xb6, 0xac, 0x18, 0xf9, 0xb2, 0xf2, 0x75, - 0x85, 0xe3, 0xcf, 0x06, 0xdc, 0x29, 0x0e, 0xc7, 0x3c, 0xe0, 0xfd, 0x44, 0x75, 0xc2, 0x22, 0x4b, - 0x05, 0x83, 0x3c, 0x28, 0x2a, 0xf7, 0xe3, 0x73, 0xea, 0x4e, 0xf6, 0xdf, 0x4a, 0x80, 0xf6, 0x65, - 0x1d, 0x90, 0x1f, 0x2f, 0x03, 0xcd, 0x95, 0x89, 0x35, 0x47, 0x9f, 0x8b, 0xd7, 0x41, 0x9f, 0x4b, - 0x57, 0xa1, 0x4f, 0x91, 0x08, 0xa2, 0x20, 0x32, 0xee, 0x0d, 0x86, 0x92, 0x0e, 0x16, 0x9d, 0x91, - 0xc1, 0x7e, 0x03, 0x37, 0xe3, 0x53, 0x26, 0xa9, 0xf2, 0x12, 0xb1, 0xc9, 0xe6, 0x65, 0x29, 0x9f, - 0x97, 0x53, 0x22, 0x64, 0xff, 0xab, 0x04, 0x37, 0x5a, 0x71, 0x75, 0x17, 0xc5, 0x5d, 0xf2, 0xf3, - 0xc5, 0x69, 0x3b, 0x19, 0x8e, 0x14, 0x19, 0x9a, 0x13, 0xc9, 0x70, 0x31, 0x4b, 0x86, 0xd9, 0x05, - 0x2e, 0xe5, 0x21, 0xbc, 0x16, 0xf5, 0x82, 0x9a, 0xb0, 0x3e, 0x22, 0x37, 0xcd, 0x6d, 0x2b, 0x92, - 0xdb, 0x56, 0x49, 0x7a, 0xf7, 0x0c, 0x3d, 0x82, 0xb5, 0x84, 0x89, 0x7c, 0x45, 0x50, 0x65, 0x09, - 0xd7, 0x88, 0xb6, 0x7c, 0xc9, 0x50, 0xff, 0x36, 0xa0, 0x92, 0x64, 0xfb, 0x8c, 0x0a, 0x31, 0x13, - 0xd7, 0x52, 0x3e, 0xae, 0x9b, 0x50, 0xc5, 0x81, 0xd7, 0xe9, 0x63, 0x57, 0xae, 0x49, 0x86, 0xb0, - 0xec, 0x54, 0x94, 0x4d, 0x89, 0x9d, 0x27, 0x50, 0x19, 0xc9, 0xae, 0x38, 0xa1, 0x1f, 0x4c, 0xd4, - 0x5d, 0x69, 0x50, 0x1d, 0x48, 0xf4, 0x17, 0xb3, 0xff, 0x58, 0x1a, 0x71, 0x86, 0xca, 0xb8, 0x79, - 0x2a, 0xc3, 0x2f, 0xa1, 0xaa, 0x77, 0xa1, 0xe4, 0xa0, 0xaa, 0x0f, 0x3f, 0x2c, 0x5a, 0x56, 0xd1, - 0xa4, 0x5b, 0xa9, 0x30, 0x7e, 0x1a, 0xf0, 0xf0, 0xdc, 0xa9, 0xb0, 0x91, 0xa5, 0xe1, 0xc2, 0x7a, - 0xde, 0x01, 0xad, 0x83, 0x79, 0x86, 0xcf, 0x75, 0x8c, 0xc5, 0x4f, 0x51, 0x4b, 0x5f, 0x09, 0xec, - 0x35, 0x85, 0xde, 0xbb, 0xb0, 0x38, 0xf5, 0xa8, 0xa3, 0xbc, 0x7f, 0x54, 0xfa, 0xc4, 0xb0, 0x29, - 0xac, 0x1f, 0x84, 0x74, 0x78, 0xe9, 0xb2, 0x34, 0x5d, 0xd5, 0x17, 0x1f, 0x13, 0x41, 0xd8, 0x07, - 0x98, 0x75, 0x43, 0xd2, 0xc1, 0x73, 0x4e, 0x3a, 0x46, 0xd8, 0x5f, 0x19, 0xf0, 0x41, 0x6e, 0xec, - 0x79, 0x90, 0xfd, 0x69, 0x36, 0xdf, 0x14, 0xb0, 0x53, 0x74, 0x7e, 0x3a, 0xcf, 0x3c, 0x49, 0x44, - 0xf2, 0xdb, 0x9e, 0x38, 0xef, 0x27, 0x21, 0x3d, 0x95, 0x32, 0xeb, 0xfa, 0x76, 0xfc, 0x17, 0x03, - 0xee, 0x4e, 0x98, 0x63, 0x9e, 0x9d, 0x6f, 0xea, 0xba, 0x83, 0x7d, 0x25, 0xfb, 0xf5, 0x9d, 0x41, - 0xdb, 0xa4, 0xf4, 0xbf, 0x0b, 0xc0, 0x29, 0xf7, 0xfa, 0xca, 0x41, 0x5f, 0x1a, 0xa4, 0x45, 0x7c, - 0xb6, 0x7f, 0x5f, 0x82, 0x5a, 0x9b, 0xd3, 0xd0, 0x3b, 0xc5, 0xfb, 0x34, 0xe8, 0x91, 0x53, 0x91, - 0x11, 0xb1, 0x14, 0x35, 0xe4, 0x36, 0x12, 0xb1, 0xb9, 0x09, 0x55, 0xaf, 0xdb, 0xc5, 0x8c, 0xb9, - 0x67, 0xf8, 0x5c, 0x27, 0x8c, 0xe5, 0x54, 0x94, 0xed, 0x99, 0x30, 0x09, 0x7d, 0xce, 0x70, 0x37, - 0xc4, 0xdc, 0x1d, 0x79, 0xea, 0xa4, 0x5b, 0x53, 0x1f, 0x76, 0x63, 0x6f, 0xa1, 0x5d, 0x23, 0x86, - 0xdb, 0xed, 0xcf, 0x64, 0xb1, 0x2d, 0x3b, 0xba, 0x25, 0x94, 0x43, 0x27, 0xea, 0x9e, 0x61, 0x9e, - 0x2e, 0xb6, 0xa0, 0x4c, 0x32, 0x67, 0x6f, 0x83, 0x15, 0x52, 0xca, 0x65, 0x85, 0x94, 0x34, 0x65, - 0x39, 0x65, 0x61, 0x10, 0x45, 0x44, 0x8f, 0xda, 0xda, 0x3d, 0x92, 0xd7, 0x16, 0x35, 0x6a, 0x6b, - 0xf7, 0x48, 0xdc, 0xae, 0x5a, 0xbb, 0x47, 0x9f, 0x06, 0xfe, 0x90, 0x92, 0x80, 0xcb, 0x72, 0x69, - 0x39, 0x69, 0x93, 0xfd, 0x1f, 0x13, 0xd6, 0x15, 0xf7, 0x1f, 0xd2, 0x4e, 0x8c, 0xfd, 0x1d, 0xb0, - 0xba, 0xfd, 0x48, 0xc8, 0xe8, 0x11, 0xc9, 0x24, 0x86, 0xec, 0x75, 0xc4, 0x1d, 0x86, 0xb8, 0x47, - 0xde, 0xe8, 0xb0, 0x8c, 0xae, 0x23, 0x27, 0xd2, 0x9c, 0x26, 0x17, 0x73, 0x8c, 0x5c, 0x7c, 0x8f, - 0x7b, 0xba, 0xe2, 0x2f, 0xca, 0x8a, 0x6f, 0x09, 0x8b, 0x2a, 0xf6, 0x63, 0x17, 0xae, 0xa5, 0x82, - 0x0b, 0x57, 0x8a, 0xd4, 0x96, 0xb3, 0xa4, 0x96, 0xcd, 0xcc, 0x95, 0x7c, 0x01, 0xf8, 0x19, 0xac, - 0x32, 0x85, 0xbf, 0xdb, 0x95, 0x09, 0x20, 0x43, 0x53, 0x20, 0xef, 0x65, 0x6d, 0x4a, 0x67, 0x8a, - 0x53, 0x63, 0x99, 0xc4, 0xc9, 0x93, 0xa0, 0x75, 0x25, 0x12, 0xcc, 0xa9, 0x21, 0xb8, 0x82, 0x1a, - 0xb2, 0x3f, 0x83, 0xf5, 0x9f, 0x47, 0x38, 0x3c, 0x3f, 0xa4, 0x1d, 0x36, 0x1b, 0x90, 0x0d, 0x28, - 0x6b, 0x34, 0x62, 0x79, 0x92, 0xb4, 0xed, 0x77, 0x06, 0xd4, 0xe4, 0xc1, 0x7d, 0xee, 0xb1, 0xb3, + 0x13, 0x1d, 0xaa, 0x65, 0x07, 0x94, 0xe9, 0x39, 0x19, 0x62, 0xfb, 0xbf, 0x26, 0x54, 0xdb, 0xb8, + 0x3f, 0xc4, 0x01, 0x57, 0x2b, 0x99, 0x07, 0x99, 0x2d, 0xa8, 0x8c, 0xbc, 0x90, 0x13, 0xed, 0xa2, + 0xd0, 0x49, 0x9b, 0xd0, 0x1d, 0xb0, 0x98, 0x1e, 0xf5, 0x48, 0xce, 0x6a, 0x3a, 0x63, 0x03, 0x7a, + 0x1f, 0xca, 0x41, 0x34, 0x74, 0x43, 0xfa, 0x9a, 0xc5, 0x08, 0x05, 0xd1, 0xd0, 0xa1, 0xaf, 0x59, + 0x1a, 0xbb, 0x95, 0x2c, 0x76, 0x75, 0x58, 0xeb, 0x44, 0x44, 0xa6, 0xc3, 0xaa, 0xfa, 0xa2, 0x9b, + 0xe8, 0x6b, 0xb0, 0x1a, 0x50, 0x1f, 0xb7, 0x8e, 0xea, 0x6b, 0xf2, 0x83, 0x6e, 0xa1, 0xfb, 0x50, + 0x53, 0x41, 0x7d, 0x85, 0x43, 0x46, 0x68, 0x50, 0x2f, 0xab, 0xbd, 0x48, 0xe3, 0xa7, 0xca, 0x86, + 0xbe, 0x0b, 0x2b, 0x8c, 0x7b, 0x1c, 0xd7, 0xad, 0x2d, 0xa3, 0xb9, 0xbe, 0x77, 0xaf, 0x10, 0x47, + 0x19, 0x9a, 0xb6, 0x70, 0x73, 0x94, 0xb7, 0x08, 0x6c, 0xcf, 0x23, 0x03, 0x37, 0xc4, 0x1e, 0xa3, + 0x41, 0x1d, 0x64, 0x0e, 0x82, 0x30, 0x39, 0xd2, 0x82, 0xbe, 0x15, 0x1f, 0xa2, 0x1e, 0x19, 0x60, + 0xe6, 0x8e, 0x3c, 0xfe, 0x82, 0xd5, 0x2b, 0x5b, 0x66, 0xd3, 0x72, 0x36, 0xe4, 0x87, 0x27, 0xc2, + 0x7e, 0x26, 0xcc, 0x69, 0xfc, 0xaa, 0x97, 0xe2, 0x57, 0xcb, 0xe3, 0x87, 0x1e, 0xc0, 0x3a, 0xc3, + 0x21, 0xf1, 0x06, 0xe4, 0x2d, 0x76, 0x19, 0x79, 0x8b, 0xeb, 0xeb, 0xd2, 0xa7, 0x96, 0x58, 0xdb, + 0xe4, 0x2d, 0xb6, 0xff, 0x6c, 0xc0, 0x4d, 0x07, 0xf7, 0x09, 0xe3, 0x38, 0x3c, 0xa5, 0x3e, 0x76, + 0xf0, 0xcb, 0x08, 0x33, 0x8e, 0x1e, 0xc3, 0x72, 0xc7, 0x63, 0x58, 0x67, 0xdc, 0x9d, 0xc2, 0xcd, + 0x9f, 0xb0, 0xfe, 0x81, 0xc7, 0xb0, 0x23, 0x3d, 0xd1, 0xf7, 0x60, 0xcd, 0xf3, 0xfd, 0x10, 0x33, + 0x26, 0x71, 0x9f, 0xd6, 0x69, 0x5f, 0xf9, 0x38, 0xb1, 0x73, 0x0a, 0x24, 0x33, 0x0d, 0x92, 0xfd, + 0x07, 0x03, 0x6e, 0x65, 0x57, 0xc6, 0x46, 0x34, 0x60, 0x18, 0x7d, 0x08, 0xab, 0x22, 0xd4, 0x11, + 0xd3, 0x8b, 0xbb, 0x5d, 0x38, 0x4f, 0x5b, 0xba, 0x38, 0xda, 0x55, 0x1c, 0x70, 0x12, 0x10, 0x1e, + 0x9f, 0x4d, 0xb5, 0xc2, 0xed, 0xfc, 0x41, 0xd2, 0x65, 0xaa, 0x15, 0x10, 0xae, 0x8e, 0xa3, 0x03, + 0x24, 0xf9, 0x6d, 0xff, 0x0c, 0x6e, 0x3d, 0xc5, 0x3c, 0x05, 0xb9, 0x8e, 0xd5, 0x3c, 0x27, 0x23, + 0x5b, 0x99, 0x4a, 0xb9, 0xca, 0x64, 0xff, 0xcd, 0x80, 0xf7, 0x72, 0x63, 0x2f, 0xb2, 0xdb, 0x24, + 0x77, 0x4b, 0x8b, 0xe4, 0xae, 0x99, 0xcf, 0x5d, 0xfb, 0xd7, 0x06, 0xdc, 0x7e, 0x8a, 0x79, 0xba, + 0x2e, 0x5c, 0x73, 0x24, 0xd0, 0xd7, 0x01, 0x92, 0x7a, 0xc0, 0xea, 0xe6, 0x96, 0xd9, 0x34, 0x9d, + 0x94, 0xc5, 0xfe, 0x9d, 0x01, 0x37, 0x26, 0xe6, 0xcf, 0x96, 0x15, 0x23, 0x5f, 0x56, 0xfe, 0x5f, + 0xe1, 0xf8, 0xa3, 0x01, 0x77, 0x8a, 0xc3, 0xb1, 0x08, 0x78, 0x3f, 0x52, 0x9d, 0xb0, 0xc8, 0x52, + 0xc1, 0x20, 0x0f, 0x8a, 0xca, 0xfd, 0xe4, 0x9c, 0xba, 0x93, 0xfd, 0x97, 0x12, 0xa0, 0x43, 0x59, + 0x07, 0xe4, 0xc7, 0x77, 0x81, 0xe6, 0xca, 0xc4, 0x9a, 0xa3, 0xcf, 0xe5, 0xeb, 0xa0, 0xcf, 0x95, + 0xab, 0xd0, 0xa7, 0x48, 0x04, 0x51, 0x10, 0x19, 0xf7, 0x86, 0x23, 0x49, 0x07, 0xcb, 0xce, 0xd8, + 0x60, 0xbf, 0x81, 0x9b, 0xf1, 0x29, 0x93, 0x54, 0xf9, 0x0e, 0xb1, 0xc9, 0xe6, 0x65, 0x29, 0x9f, + 0x97, 0x33, 0x22, 0x64, 0xff, 0xa3, 0x04, 0x37, 0x5a, 0x71, 0x75, 0x17, 0xc5, 0x5d, 0xf2, 0xf3, + 0xe5, 0x69, 0x3b, 0x1d, 0x8e, 0x14, 0x19, 0x9a, 0x53, 0xc9, 0x70, 0x39, 0x4b, 0x86, 0xd9, 0x05, + 0xae, 0xe4, 0x21, 0xbc, 0x16, 0xf5, 0x82, 0x9a, 0xb0, 0x39, 0x26, 0x37, 0xcd, 0x6d, 0x6b, 0x92, + 0xdb, 0xd6, 0x49, 0x7a, 0xf7, 0x0c, 0x3d, 0x82, 0x8d, 0x84, 0x89, 0x7c, 0x45, 0x50, 0x65, 0x09, + 0xd7, 0x98, 0xb6, 0x7c, 0xc9, 0x50, 0xff, 0x34, 0xa0, 0x92, 0x64, 0xfb, 0x9c, 0x0a, 0x31, 0x13, + 0xd7, 0x52, 0x3e, 0xae, 0xdb, 0x50, 0xc5, 0x81, 0xd7, 0x19, 0x60, 0x57, 0xae, 0x49, 0x86, 0xb0, + 0xec, 0x54, 0x94, 0x4d, 0x89, 0x9d, 0x27, 0x50, 0x19, 0xcb, 0xae, 0x38, 0xa1, 0x1f, 0x4c, 0xd5, + 0x5d, 0x69, 0x50, 0x1d, 0x48, 0xf4, 0x17, 0xb3, 0x7f, 0x5f, 0x1a, 0x73, 0x86, 0xca, 0xb8, 0x45, + 0x2a, 0xc3, 0xcf, 0xa1, 0xaa, 0x77, 0xa1, 0xe4, 0xa0, 0xaa, 0x0f, 0xdf, 0x2f, 0x5a, 0x56, 0xd1, + 0xa4, 0x3b, 0xa9, 0x30, 0x7e, 0x1c, 0xf0, 0xf0, 0xc2, 0xa9, 0xb0, 0xb1, 0xa5, 0xe1, 0xc2, 0x66, + 0xde, 0x01, 0x6d, 0x82, 0x79, 0x8e, 0x2f, 0x74, 0x8c, 0xc5, 0x4f, 0x51, 0x4b, 0x5f, 0x09, 0xec, + 0x35, 0x85, 0xde, 0xbb, 0xb4, 0x38, 0xf5, 0xa8, 0xa3, 0xbc, 0x7f, 0x50, 0xfa, 0xc8, 0xb0, 0x29, + 0x6c, 0x1e, 0x85, 0x74, 0xf4, 0xce, 0x65, 0x69, 0xb6, 0xaa, 0x2f, 0x3e, 0x26, 0x82, 0xb0, 0x8f, + 0x30, 0xeb, 0x86, 0xa4, 0x83, 0x17, 0x9c, 0x74, 0x82, 0xb0, 0xbf, 0x30, 0xe0, 0xbd, 0xdc, 0xd8, + 0x8b, 0x20, 0xfb, 0xe3, 0x6c, 0xbe, 0x29, 0x60, 0x67, 0xe8, 0xfc, 0x74, 0x9e, 0x79, 0x92, 0x88, + 0xe4, 0xb7, 0x03, 0x71, 0xde, 0xcf, 0x42, 0xda, 0x97, 0x32, 0xeb, 0xfa, 0x76, 0xfc, 0x27, 0x03, + 0xee, 0x4e, 0x99, 0x63, 0x91, 0x9d, 0x6f, 0xeb, 0xba, 0x83, 0x7d, 0x25, 0xfb, 0xf5, 0x9d, 0x41, + 0xdb, 0xa4, 0xf4, 0xbf, 0x0b, 0xc0, 0x29, 0xf7, 0x06, 0xca, 0x41, 0x5f, 0x1a, 0xa4, 0x45, 0x7c, + 0xb6, 0x7f, 0x5b, 0x82, 0x5a, 0x9b, 0xd3, 0xd0, 0xeb, 0xe3, 0x43, 0x1a, 0xf4, 0x48, 0x5f, 0x64, + 0x44, 0x2c, 0x45, 0x0d, 0xb9, 0x8d, 0x44, 0x6c, 0x6e, 0x43, 0xd5, 0xeb, 0x76, 0x31, 0x63, 0xee, + 0x39, 0xbe, 0xd0, 0x09, 0x63, 0x39, 0x15, 0x65, 0x7b, 0x26, 0x4c, 0x42, 0x9f, 0x33, 0xdc, 0x0d, + 0x31, 0x77, 0xc7, 0x9e, 0x3a, 0xe9, 0x36, 0xd4, 0x87, 0xfd, 0xd8, 0x5b, 0x68, 0xd7, 0x88, 0xe1, + 0x76, 0xfb, 0x13, 0x59, 0x6c, 0xcb, 0x8e, 0x6e, 0x09, 0xe5, 0xd0, 0x89, 0xba, 0xe7, 0x98, 0xa7, + 0x8b, 0x2d, 0x28, 0x93, 0xcc, 0xd9, 0xdb, 0x60, 0x85, 0x94, 0x72, 0x59, 0x21, 0x25, 0x4d, 0x59, + 0x4e, 0x59, 0x18, 0x44, 0x11, 0xd1, 0xa3, 0xb6, 0xf6, 0x4f, 0xe4, 0xb5, 0x45, 0x8d, 0xda, 0xda, + 0x3f, 0x11, 0xb7, 0xab, 0xd6, 0xfe, 0xc9, 0xc7, 0x81, 0x3f, 0xa2, 0x24, 0xe0, 0xb2, 0x5c, 0x5a, + 0x4e, 0xda, 0x64, 0xff, 0xcb, 0x84, 0x4d, 0xc5, 0xfd, 0xc7, 0xb4, 0x13, 0x63, 0x7f, 0x07, 0xac, + 0xee, 0x20, 0x12, 0x32, 0x7a, 0x4c, 0x32, 0x89, 0x21, 0x7b, 0x1d, 0x71, 0x47, 0x21, 0xee, 0x91, + 0x37, 0x3a, 0x2c, 0xe3, 0xeb, 0xc8, 0x99, 0x34, 0xa7, 0xc9, 0xc5, 0x9c, 0x20, 0x17, 0xdf, 0xe3, + 0x9e, 0xae, 0xf8, 0xcb, 0xb2, 0xe2, 0x5b, 0xc2, 0xa2, 0x8a, 0xfd, 0xc4, 0x85, 0x6b, 0xa5, 0xe0, + 0xc2, 0x95, 0x22, 0xb5, 0xd5, 0x2c, 0xa9, 0x65, 0x33, 0x73, 0x2d, 0x5f, 0x00, 0x7e, 0x02, 0xeb, + 0x4c, 0xe1, 0xef, 0x76, 0x65, 0x02, 0xc8, 0xd0, 0x14, 0xc8, 0x7b, 0x59, 0x9b, 0xd2, 0x99, 0xe2, + 0xd4, 0x58, 0x26, 0x71, 0xf2, 0x24, 0x68, 0x5d, 0x89, 0x04, 0x73, 0x6a, 0x08, 0xae, 0xa0, 0x86, + 0xec, 0x4f, 0x60, 0xf3, 0xa7, 0x11, 0x0e, 0x2f, 0x8e, 0x69, 0x87, 0xcd, 0x07, 0x64, 0x03, 0xca, + 0x1a, 0x8d, 0x58, 0x9e, 0x24, 0x6d, 0xfb, 0xdf, 0x06, 0xd4, 0xe4, 0xc1, 0x7d, 0xee, 0xb1, 0xf3, 0xf8, 0x65, 0x20, 0x86, 0xd2, 0xc8, 0x42, 0x79, 0x75, 0xb1, 0x9c, 0xba, 0xd6, 0x4a, 0xe1, 0x6e, - 0xe9, 0x12, 0x25, 0x2f, 0xb4, 0x45, 0x84, 0xbf, 0x58, 0x48, 0xf8, 0xef, 0x0c, 0xb8, 0x91, 0xda, - 0xfb, 0x3c, 0xc5, 0x25, 0x13, 0xb1, 0x52, 0x3e, 0x62, 0x7b, 0xd9, 0xa2, 0x6b, 0x16, 0xe1, 0x94, - 0x2a, 0xba, 0x71, 0xec, 0x32, 0x85, 0xf7, 0x19, 0xac, 0x09, 0x4e, 0xbb, 0x1e, 0x98, 0xfe, 0x6b, - 0xc0, 0xca, 0x21, 0xed, 0x48, 0x80, 0xd2, 0x4f, 0x21, 0x46, 0xf6, 0x29, 0x64, 0x1d, 0x4c, 0x9f, - 0x0c, 0xf4, 0x7e, 0xc4, 0x4f, 0x71, 0x40, 0x18, 0xf7, 0x42, 0x3e, 0x7a, 0xcc, 0x11, 0x82, 0x47, - 0x58, 0xe4, 0x5b, 0xc0, 0x87, 0x50, 0xc6, 0x81, 0xaf, 0x3e, 0x6a, 0x55, 0x88, 0x03, 0x5f, 0x7e, - 0xba, 0x1e, 0xd5, 0x7d, 0x0b, 0x96, 0x86, 0x74, 0xf4, 0x00, 0xa3, 0x1a, 0xf6, 0x2d, 0x40, 0x4f, - 0x31, 0x3f, 0xa4, 0x1d, 0x81, 0x4a, 0x1c, 0x1e, 0xfb, 0xef, 0x25, 0x29, 0xc2, 0x47, 0xe6, 0x79, - 0x00, 0xb6, 0xa1, 0xa6, 0xa8, 0xe1, 0x4b, 0xda, 0x71, 0x83, 0x28, 0x0e, 0x4a, 0x45, 0x1a, 0x0f, - 0x69, 0xe7, 0x38, 0x1a, 0xa0, 0x8f, 0xe0, 0x26, 0x09, 0xdc, 0xa1, 0x66, 0xab, 0xc4, 0x53, 0x45, - 0x69, 0x9d, 0x04, 0x31, 0x8f, 0x69, 0xf7, 0x87, 0xb0, 0x86, 0x83, 0x97, 0x11, 0x8e, 0x70, 0xe2, - 0xaa, 0x62, 0x56, 0xd3, 0x66, 0xed, 0x27, 0x58, 0xc9, 0x63, 0x67, 0x2e, 0xeb, 0x53, 0xce, 0x74, - 0x41, 0xb3, 0x84, 0xa5, 0x2d, 0x0c, 0xe8, 0x13, 0xb0, 0x44, 0x77, 0x95, 0x5a, 0x4a, 0x4c, 0xdf, - 0x2e, 0x4a, 0x2d, 0x8d, 0xb7, 0x53, 0xfe, 0x52, 0xfd, 0x60, 0x3b, 0xef, 0x2c, 0x00, 0x99, 0x70, - 0xfb, 0x94, 0x86, 0x3e, 0x1a, 0xca, 0x28, 0xee, 0xd3, 0xc1, 0x90, 0x06, 0x38, 0xe0, 0xf2, 0xd0, - 0x31, 0xf4, 0x78, 0xc2, 0xd3, 0xc5, 0xb8, 0xab, 0x8e, 0x7b, 0xe3, 0xe1, 0x84, 0x1e, 0x39, 0x77, - 0x7b, 0x01, 0xbd, 0x94, 0x9a, 0x55, 0x34, 0x09, 0xe3, 0xa4, 0xcb, 0xf6, 0x5f, 0x78, 0x41, 0x80, - 0xfb, 0x68, 0x67, 0xf2, 0x9c, 0x63, 0xce, 0xf1, 0xac, 0xf7, 0xb3, 0x7d, 0x74, 0xa3, 0xcd, 0x43, - 0x12, 0x9c, 0xc6, 0xd0, 0xdb, 0x0b, 0xe8, 0x39, 0x54, 0x52, 0x77, 0x56, 0xf4, 0xb0, 0x28, 0x52, - 0xe3, 0x97, 0xda, 0xc6, 0x45, 0x39, 0x62, 0x2f, 0xa0, 0x1e, 0xd4, 0x32, 0x8f, 0x2a, 0xa8, 0x79, - 0x91, 0x54, 0x4e, 0xbf, 0x64, 0x34, 0xbe, 0x3d, 0x83, 0x67, 0xb2, 0xfa, 0x5f, 0xab, 0x80, 0x8d, - 0xbd, 0x4a, 0x6c, 0x4f, 0x18, 0x64, 0xd2, 0xfb, 0x49, 0xe3, 0xf1, 0xec, 0x1d, 0x92, 0xc9, 0xfd, - 0xd1, 0x26, 0x65, 0xfe, 0xa0, 0x47, 0xd3, 0xef, 0x03, 0x6a, 0xb6, 0xe6, 0xac, 0x17, 0x07, 0x7b, - 0x01, 0x9d, 0x80, 0x95, 0x68, 0x77, 0xf4, 0xad, 0xa2, 0x8e, 0x79, 0x69, 0x3f, 0x03, 0x38, 0x19, - 0x01, 0x5d, 0x0c, 0x4e, 0x91, 0x7e, 0x2f, 0x06, 0xa7, 0x50, 0x8d, 0xdb, 0x0b, 0xe8, 0x37, 0xa3, - 0x97, 0xb5, 0x8c, 0x6c, 0x45, 0x8f, 0x2f, 0xda, 0x7e, 0x91, 0x8a, 0x6e, 0x7c, 0xf7, 0x12, 0x3d, - 0x52, 0xc9, 0x81, 0xda, 0x2f, 0xe8, 0x6b, 0xa5, 0x30, 0xa2, 0xd0, 0x13, 0x6a, 0x7b, 0xf2, 0xf9, - 0x1d, 0x77, 0x9d, 0x38, 0xf9, 0x05, 0x3d, 0x92, 0xc9, 0x5d, 0x80, 0xa7, 0x98, 0x1f, 0x61, 0x1e, - 0x92, 0x2e, 0xcb, 0x1f, 0x2b, 0xdd, 0x18, 0x39, 0xc4, 0x53, 0x3d, 0x9a, 0xea, 0x17, 0x4f, 0xb0, - 0xf3, 0xcf, 0x65, 0xfd, 0xef, 0xcd, 0x31, 0xf5, 0xf1, 0xfb, 0x51, 0xab, 0x4e, 0xc0, 0x4a, 0x34, - 0x76, 0xf1, 0x51, 0xc8, 0x4b, 0xf0, 0x69, 0x47, 0xe1, 0x0b, 0xb0, 0x12, 0xc1, 0x53, 0x3c, 0x62, - 0x5e, 0x0b, 0x36, 0x1e, 0x4c, 0xf1, 0x4a, 0x56, 0x7b, 0x0c, 0xe5, 0x58, 0xa0, 0xa0, 0xfb, 0x93, - 0xce, 0x6d, 0x7a, 0xe4, 0x29, 0x6b, 0xfd, 0x15, 0x54, 0x52, 0xec, 0x5d, 0x5c, 0xa9, 0xc7, 0x59, - 0xbf, 0xf1, 0x68, 0xaa, 0xdf, 0xfb, 0x71, 0x60, 0xf6, 0xbe, 0xf7, 0xc5, 0xce, 0x29, 0xe1, 0x2f, - 0xa2, 0x8e, 0x88, 0xec, 0xb6, 0xf2, 0xfc, 0x88, 0x50, 0xfd, 0x6b, 0x3b, 0x5e, 0xe5, 0xb6, 0x1c, - 0x69, 0x5b, 0xc6, 0x69, 0xd8, 0xe9, 0x2c, 0xcb, 0xe6, 0xc7, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, - 0xfe, 0x81, 0xfe, 0xd0, 0x80, 0x1d, 0x00, 0x00, + 0xe9, 0x12, 0x25, 0x2f, 0xb4, 0x45, 0x84, 0xbf, 0x5c, 0x44, 0xf8, 0x79, 0xd9, 0xbd, 0x32, 0x21, + 0xbb, 0xbf, 0x34, 0xe0, 0x46, 0x2a, 0x38, 0x8b, 0x54, 0x9f, 0x4c, 0x48, 0x4b, 0xf9, 0x90, 0x1e, + 0x64, 0xab, 0xb2, 0x59, 0x04, 0x64, 0xaa, 0x2a, 0xc7, 0xc1, 0xcd, 0x54, 0xe6, 0x67, 0xb0, 0x21, + 0x48, 0xef, 0x7a, 0x70, 0xfc, 0x8f, 0x01, 0x6b, 0xc7, 0xb4, 0x23, 0x11, 0x4c, 0xbf, 0x95, 0x18, + 0xd9, 0xb7, 0x92, 0x4d, 0x30, 0x7d, 0x32, 0xd4, 0xfb, 0x11, 0x3f, 0xc5, 0x09, 0x62, 0xdc, 0x0b, + 0xf9, 0xf8, 0xb5, 0x47, 0x28, 0x22, 0x61, 0x91, 0x8f, 0x05, 0xef, 0x43, 0x19, 0x07, 0xbe, 0xfa, + 0xa8, 0x65, 0x23, 0x0e, 0x7c, 0xf9, 0xe9, 0x7a, 0x64, 0xf9, 0x2d, 0x58, 0x19, 0xd1, 0xf1, 0x0b, + 0x8d, 0x6a, 0xd8, 0xb7, 0x00, 0x3d, 0xc5, 0xfc, 0x98, 0x76, 0x04, 0x2a, 0x71, 0x78, 0xec, 0xbf, + 0x96, 0xa4, 0x4a, 0x1f, 0x9b, 0x17, 0x01, 0xd8, 0x86, 0x9a, 0xe2, 0x8e, 0xcf, 0x69, 0xc7, 0x0d, + 0xa2, 0x38, 0x28, 0x15, 0x69, 0x3c, 0xa6, 0x9d, 0xd3, 0x68, 0x88, 0x3e, 0x80, 0x9b, 0x24, 0x70, + 0x47, 0x9a, 0xce, 0x12, 0x4f, 0x15, 0xa5, 0x4d, 0x12, 0xc4, 0x44, 0xa7, 0xdd, 0x1f, 0xc2, 0x06, + 0x0e, 0x5e, 0x46, 0x38, 0xc2, 0x89, 0xab, 0x8a, 0x59, 0x4d, 0x9b, 0xb5, 0x9f, 0xa0, 0x2d, 0x8f, + 0x9d, 0xbb, 0x6c, 0x40, 0x39, 0xd3, 0x15, 0xcf, 0x12, 0x96, 0xb6, 0x30, 0xa0, 0x8f, 0xc0, 0x12, + 0xdd, 0x55, 0x6a, 0x29, 0xb5, 0x7d, 0xbb, 0x28, 0xb5, 0x34, 0xde, 0x4e, 0xf9, 0x73, 0xf5, 0x83, + 0xed, 0x7d, 0x69, 0x01, 0xc8, 0x84, 0x3b, 0xa4, 0x34, 0xf4, 0xd1, 0x48, 0x46, 0xf1, 0x90, 0x0e, + 0x47, 0x34, 0xc0, 0x01, 0x97, 0xa7, 0x92, 0xa1, 0xc7, 0x53, 0xde, 0x36, 0x26, 0x5d, 0x75, 0xdc, + 0x1b, 0x0f, 0xa7, 0xf4, 0xc8, 0xb9, 0xdb, 0x4b, 0xe8, 0xa5, 0x14, 0xb5, 0xa2, 0x49, 0x18, 0x27, + 0x5d, 0x76, 0xf8, 0xc2, 0x0b, 0x02, 0x3c, 0x40, 0x7b, 0xd3, 0xe7, 0x9c, 0x70, 0x8e, 0x67, 0xbd, + 0x9f, 0xed, 0xa3, 0x1b, 0x6d, 0x1e, 0x92, 0xa0, 0x1f, 0x43, 0x6f, 0x2f, 0xa1, 0xe7, 0x50, 0x49, + 0x5d, 0x6a, 0xd1, 0xc3, 0xa2, 0x48, 0x4d, 0xde, 0x7a, 0x1b, 0x97, 0xe5, 0x88, 0xbd, 0x84, 0x7a, + 0x50, 0xcb, 0xbc, 0xba, 0xa0, 0xe6, 0x65, 0x5a, 0x3a, 0xfd, 0xd4, 0xd1, 0xf8, 0xe6, 0x1c, 0x9e, + 0xc9, 0xea, 0x7f, 0xa9, 0x02, 0x36, 0xf1, 0x6c, 0xb1, 0x3b, 0x65, 0x90, 0x69, 0x0f, 0x2c, 0x8d, + 0xc7, 0xf3, 0x77, 0x48, 0x26, 0xf7, 0xc7, 0x9b, 0x94, 0xf9, 0x83, 0x1e, 0xcd, 0xbe, 0x30, 0xa8, + 0xd9, 0x9a, 0xf3, 0xde, 0x2c, 0xec, 0x25, 0x74, 0x06, 0x56, 0x22, 0xee, 0xd1, 0x37, 0x8a, 0x3a, + 0xe6, 0xb5, 0xff, 0x1c, 0xe0, 0x64, 0x14, 0x76, 0x31, 0x38, 0x45, 0x02, 0xbf, 0x18, 0x9c, 0x42, + 0xb9, 0x6e, 0x2f, 0xa1, 0x5f, 0x8d, 0x9f, 0xde, 0x32, 0xba, 0x16, 0x3d, 0xbe, 0x6c, 0xfb, 0x45, + 0x32, 0xbb, 0xf1, 0xed, 0x77, 0xe8, 0x91, 0x4a, 0x0e, 0xd4, 0x7e, 0x41, 0x5f, 0x2b, 0x09, 0x12, + 0x85, 0x9e, 0x90, 0xe3, 0xd3, 0xcf, 0xef, 0xa4, 0xeb, 0xd4, 0xc9, 0x2f, 0xe9, 0x91, 0x4c, 0xee, + 0x02, 0x3c, 0xc5, 0xfc, 0x04, 0xf3, 0x90, 0x74, 0x59, 0xfe, 0x58, 0xe9, 0xc6, 0xd8, 0x21, 0x9e, + 0xea, 0xd1, 0x4c, 0xbf, 0x78, 0x82, 0xbd, 0xbf, 0xaf, 0xea, 0xbf, 0x77, 0x4e, 0xa9, 0x8f, 0xbf, + 0x1a, 0xb5, 0xea, 0x0c, 0xac, 0x44, 0x84, 0x17, 0x1f, 0x85, 0xbc, 0x46, 0x9f, 0x75, 0x14, 0x3e, + 0x03, 0x2b, 0x11, 0x3c, 0xc5, 0x23, 0xe6, 0xc5, 0x62, 0xe3, 0xc1, 0x0c, 0xaf, 0x64, 0xb5, 0xa7, + 0x50, 0x8e, 0x05, 0x0a, 0xba, 0x3f, 0xed, 0xdc, 0xa6, 0x47, 0x9e, 0xb1, 0xd6, 0x5f, 0x40, 0x25, + 0xc5, 0xde, 0xc5, 0x95, 0x7a, 0x92, 0xf5, 0x1b, 0x8f, 0x66, 0xfa, 0x7d, 0x35, 0x0e, 0xcc, 0xc1, + 0x77, 0x3e, 0xdb, 0xeb, 0x13, 0xfe, 0x22, 0xea, 0x88, 0xc8, 0xee, 0x2a, 0xcf, 0x0f, 0x08, 0xd5, + 0xbf, 0x76, 0xe3, 0x55, 0xee, 0xca, 0x91, 0x76, 0x65, 0x9c, 0x46, 0x9d, 0xce, 0xaa, 0x6c, 0x7e, + 0xf8, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xee, 0x3b, 0x48, 0x73, 0xa1, 0x1d, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.