Set start positions in datanode (#5757)

Signed-off-by: yangxuan <xuan.yang@zilliz.com>
pull/5779/head
XuanYang-cn 2021-06-11 19:15:48 +08:00 committed by zhenshan.cao
parent 7beab6eddc
commit 5bcb94294c
5 changed files with 212 additions and 169 deletions

View File

@ -20,6 +20,7 @@ import (
"go.uber.org/zap"
"github.com/milvus-io/milvus/internal/log"
"github.com/milvus-io/milvus/internal/proto/datapb"
"github.com/milvus-io/milvus/internal/proto/internalpb"
"github.com/milvus-io/milvus/internal/types"
)
@ -42,6 +43,7 @@ type Replica interface {
getChannelName(segID UniqueID) (string, error)
setStartPositions(segmentID UniqueID, startPos []*internalpb.MsgPosition) error
setEndPositions(segmentID UniqueID, endPos []*internalpb.MsgPosition) error
getAllStartPositions() []*datapb.SegmentStartPosition
getSegmentPositions(segID UniqueID) ([]*internalpb.MsgPosition, []*internalpb.MsgPosition)
listOpenSegmentCheckPointAndNumRows(segs []UniqueID) (map[UniqueID]internalpb.MsgPosition, map[UniqueID]int64)
}
@ -185,6 +187,32 @@ func (replica *CollectionSegmentReplica) addSegment(
return nil
}
func (replica *CollectionSegmentReplica) getAllStartPositions() []*datapb.SegmentStartPosition {
replica.mu.RLock()
defer replica.mu.RUnlock()
result := make([]*datapb.SegmentStartPosition, 0, len(replica.segments))
for id, seg := range replica.segments {
if seg.isNew.Load().(bool) {
pos, ok := replica.startPositions[id]
if !ok {
log.Warn("Segment has no start positions")
continue
}
result = append(result, &datapb.SegmentStartPosition{
SegmentID: id,
StartPosition: pos[0],
})
seg.isNew.Store(false)
}
}
return result
}
func (replica *CollectionSegmentReplica) removeSegment(segmentID UniqueID) error {
replica.mu.Lock()
delete(replica.segments, segmentID)

View File

@ -119,6 +119,7 @@ func (dsService *dataSyncService) initNodes(vchanInfo *datapb.VchannelInfo) {
zap.Int64("SegmentID", fu.segID),
zap.Int64("CollectionID", fu.collID),
zap.Int("Length of Field2BinlogPaths", len(id2path)),
zap.Any("Start Positions", fu.startPositions),
)
req := &datapb.SaveBinlogPathsRequest{
@ -132,6 +133,7 @@ func (dsService *dataSyncService) initNodes(vchanInfo *datapb.VchannelInfo) {
CollectionID: fu.collID,
Field2BinlogPaths: id2path,
CheckPoints: checkPoints,
StartPositions: fu.startPositions,
Flushed: fu.flushed,
}
rsp, err := dsService.dataService.SaveBinlogPaths(dsService.ctx, req)

View File

@ -72,11 +72,12 @@ type segmentCheckPoint struct {
}
type segmentFlushUnit struct {
collID UniqueID
segID UniqueID
field2Path map[UniqueID]string
checkPoint map[UniqueID]segmentCheckPoint
flushed bool
collID UniqueID
segID UniqueID
field2Path map[UniqueID]string
checkPoint map[UniqueID]segmentCheckPoint
startPositions []*datapb.SegmentStartPosition
flushed bool
}
type insertBuffer struct {
@ -714,7 +715,9 @@ func flushSegment(
_, ep := ibNode.replica.getSegmentPositions(segID)
sta, _ := ibNode.replica.getSegmentStatisticsUpdates(segID)
ibNode.setSegmentCheckPoint(segID, segmentCheckPoint{sta.NumRows, *ep[0]})
flushUnit <- segmentFlushUnit{collID: collID, segID: segID, field2Path: field2Path}
startPos := ibNode.replica.getAllStartPositions()
flushUnit <- segmentFlushUnit{collID: collID, segID: segID, field2Path: field2Path, startPositions: startPos}
clearFn(true)
}

View File

@ -245,9 +245,9 @@ message ID2PathList {
repeated string Paths = 2;
}
message PositionPair {
message SegmentStartPosition {
internal.MsgPosition start_position = 1;
internal.MsgPosition end_position = 2;
int64 segmentID = 2;
}
message SaveBinlogPathsRequest {
@ -256,7 +256,8 @@ message SaveBinlogPathsRequest {
int64 collectionID = 3;
repeated ID2PathList field2BinlogPaths = 4;
repeated CheckPoint checkPoints = 5;
bool flushed = 6;
repeated SegmentStartPosition start_positions = 6;
bool flushed = 7;
}
message CheckPoint {

View File

@ -1901,63 +1901,64 @@ func (m *ID2PathList) GetPaths() []string {
return nil
}
type PositionPair struct {
type SegmentStartPosition struct {
StartPosition *internalpb.MsgPosition `protobuf:"bytes,1,opt,name=start_position,json=startPosition,proto3" json:"start_position,omitempty"`
EndPosition *internalpb.MsgPosition `protobuf:"bytes,2,opt,name=end_position,json=endPosition,proto3" json:"end_position,omitempty"`
SegmentID int64 `protobuf:"varint,2,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *PositionPair) Reset() { *m = PositionPair{} }
func (m *PositionPair) String() string { return proto.CompactTextString(m) }
func (*PositionPair) ProtoMessage() {}
func (*PositionPair) Descriptor() ([]byte, []int) {
func (m *SegmentStartPosition) Reset() { *m = SegmentStartPosition{} }
func (m *SegmentStartPosition) String() string { return proto.CompactTextString(m) }
func (*SegmentStartPosition) ProtoMessage() {}
func (*SegmentStartPosition) Descriptor() ([]byte, []int) {
return fileDescriptor_3385cd32ad6cfe64, []int{34}
}
func (m *PositionPair) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_PositionPair.Unmarshal(m, b)
func (m *SegmentStartPosition) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SegmentStartPosition.Unmarshal(m, b)
}
func (m *PositionPair) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_PositionPair.Marshal(b, m, deterministic)
func (m *SegmentStartPosition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SegmentStartPosition.Marshal(b, m, deterministic)
}
func (m *PositionPair) XXX_Merge(src proto.Message) {
xxx_messageInfo_PositionPair.Merge(m, src)
func (m *SegmentStartPosition) XXX_Merge(src proto.Message) {
xxx_messageInfo_SegmentStartPosition.Merge(m, src)
}
func (m *PositionPair) XXX_Size() int {
return xxx_messageInfo_PositionPair.Size(m)
func (m *SegmentStartPosition) XXX_Size() int {
return xxx_messageInfo_SegmentStartPosition.Size(m)
}
func (m *PositionPair) XXX_DiscardUnknown() {
xxx_messageInfo_PositionPair.DiscardUnknown(m)
func (m *SegmentStartPosition) XXX_DiscardUnknown() {
xxx_messageInfo_SegmentStartPosition.DiscardUnknown(m)
}
var xxx_messageInfo_PositionPair proto.InternalMessageInfo
var xxx_messageInfo_SegmentStartPosition proto.InternalMessageInfo
func (m *PositionPair) GetStartPosition() *internalpb.MsgPosition {
func (m *SegmentStartPosition) GetStartPosition() *internalpb.MsgPosition {
if m != nil {
return m.StartPosition
}
return nil
}
func (m *PositionPair) GetEndPosition() *internalpb.MsgPosition {
func (m *SegmentStartPosition) GetSegmentID() int64 {
if m != nil {
return m.EndPosition
return m.SegmentID
}
return nil
return 0
}
type SaveBinlogPathsRequest struct {
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
SegmentID int64 `protobuf:"varint,2,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
CollectionID int64 `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
Field2BinlogPaths []*ID2PathList `protobuf:"bytes,4,rep,name=field2BinlogPaths,proto3" json:"field2BinlogPaths,omitempty"`
CheckPoints []*CheckPoint `protobuf:"bytes,5,rep,name=checkPoints,proto3" json:"checkPoints,omitempty"`
Flushed bool `protobuf:"varint,6,opt,name=flushed,proto3" json:"flushed,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
SegmentID int64 `protobuf:"varint,2,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
CollectionID int64 `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
Field2BinlogPaths []*ID2PathList `protobuf:"bytes,4,rep,name=field2BinlogPaths,proto3" json:"field2BinlogPaths,omitempty"`
CheckPoints []*CheckPoint `protobuf:"bytes,5,rep,name=checkPoints,proto3" json:"checkPoints,omitempty"`
StartPositions []*SegmentStartPosition `protobuf:"bytes,6,rep,name=start_positions,json=startPositions,proto3" json:"start_positions,omitempty"`
Flushed bool `protobuf:"varint,7,opt,name=flushed,proto3" json:"flushed,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SaveBinlogPathsRequest) Reset() { *m = SaveBinlogPathsRequest{} }
@ -2020,6 +2021,13 @@ func (m *SaveBinlogPathsRequest) GetCheckPoints() []*CheckPoint {
return nil
}
func (m *SaveBinlogPathsRequest) GetStartPositions() []*SegmentStartPosition {
if m != nil {
return m.StartPositions
}
return nil
}
func (m *SaveBinlogPathsRequest) GetFlushed() bool {
if m != nil {
return m.Flushed
@ -2487,7 +2495,7 @@ func init() {
proto.RegisterType((*CollectionInfo)(nil), "milvus.proto.data.CollectionInfo")
proto.RegisterType((*SegmentInfo)(nil), "milvus.proto.data.SegmentInfo")
proto.RegisterType((*ID2PathList)(nil), "milvus.proto.data.ID2PathList")
proto.RegisterType((*PositionPair)(nil), "milvus.proto.data.PositionPair")
proto.RegisterType((*SegmentStartPosition)(nil), "milvus.proto.data.SegmentStartPosition")
proto.RegisterType((*SaveBinlogPathsRequest)(nil), "milvus.proto.data.SaveBinlogPathsRequest")
proto.RegisterType((*CheckPoint)(nil), "milvus.proto.data.CheckPoint")
proto.RegisterType((*DataNodeTtMsg)(nil), "milvus.proto.data.DataNodeTtMsg")
@ -2502,137 +2510,138 @@ func init() {
func init() { proto.RegisterFile("data_service.proto", fileDescriptor_3385cd32ad6cfe64) }
var fileDescriptor_3385cd32ad6cfe64 = []byte{
// 2069 bytes of a gzipped FileDescriptorProto
// 2090 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x19, 0x5b, 0x6f, 0x1b, 0x59,
0x39, 0x63, 0x3b, 0x17, 0x7f, 0x1e, 0x3b, 0xc9, 0x69, 0xc8, 0x5a, 0x6e, 0x9b, 0xa6, 0xc3, 0x6e,
0x37, 0xdb, 0x15, 0xc9, 0xd6, 0x45, 0xdc, 0xca, 0x82, 0x9a, 0xba, 0x8d, 0x2c, 0x92, 0x12, 0x4e,
0x39, 0xe3, 0x4b, 0x12, 0x7f, 0x1e, 0x3b, 0xc9, 0xd9, 0x90, 0xb5, 0xdc, 0x36, 0x4d, 0x87, 0xdd,
0x36, 0xdb, 0x15, 0xc9, 0xd6, 0x45, 0xdc, 0xca, 0x82, 0x9a, 0xba, 0x8d, 0x2c, 0x92, 0x12, 0x4e,
0xba, 0xbb, 0x12, 0x2b, 0x64, 0x4d, 0x3c, 0x27, 0xce, 0x90, 0xb9, 0x78, 0xe7, 0x8c, 0xd3, 0xf4,
0xa9, 0xab, 0x85, 0x17, 0x10, 0x62, 0xe1, 0x81, 0x77, 0x40, 0x42, 0x42, 0xe2, 0x85, 0x17, 0xfe,
0x03, 0xbf, 0x80, 0x5f, 0xc2, 0x0f, 0x58, 0x9d, 0xcb, 0xdc, 0xc7, 0xf6, 0xc4, 0x69, 0x95, 0x37,
0x9f, 0xe3, 0xef, 0x76, 0xbe, 0xfb, 0xf7, 0x0d, 0x20, 0x43, 0xf7, 0xf5, 0x1e, 0x25, 0xde, 0xb9,
0xd9, 0x27, 0xdb, 0x43, 0xcf, 0xf5, 0x5d, 0xb4, 0x6a, 0x9b, 0xd6, 0xf9, 0x88, 0x8a, 0xd3, 0x36,
0x03, 0x68, 0xa9, 0x7d, 0xd7, 0xb6, 0x5d, 0x47, 0x5c, 0xb5, 0x1a, 0xa6, 0xe3, 0x13, 0xcf, 0xd1,
0x2d, 0x79, 0x56, 0xe3, 0x08, 0x2d, 0x95, 0xf6, 0x4f, 0x89, 0xad, 0x8b, 0x93, 0xf6, 0x1a, 0x6e,
0x60, 0x32, 0x30, 0xa9, 0x4f, 0xbc, 0xe7, 0xae, 0x41, 0x30, 0xf9, 0x62, 0x44, 0xa8, 0x8f, 0x3e,
0x82, 0xca, 0xb1, 0x4e, 0x49, 0x53, 0xd9, 0x54, 0xb6, 0x6a, 0xed, 0x5b, 0xdb, 0x09, 0x96, 0x92,
0xd9, 0x01, 0x1d, 0xec, 0xea, 0x94, 0x60, 0x0e, 0x89, 0xbe, 0x07, 0x8b, 0xba, 0x61, 0x78, 0x84,
0xd2, 0x66, 0x69, 0x02, 0xd2, 0x63, 0x01, 0x83, 0x03, 0x60, 0xed, 0x6b, 0x05, 0xd6, 0x92, 0x12,
0xd0, 0xa1, 0xeb, 0x50, 0x82, 0x76, 0xa1, 0x66, 0x3a, 0xa6, 0xdf, 0x1b, 0xea, 0x9e, 0x6e, 0x53,
0x29, 0xc9, 0xdd, 0x24, 0xd1, 0xf0, 0xa1, 0x5d, 0xc7, 0xf4, 0x0f, 0x39, 0x20, 0x06, 0x33, 0xfc,
0x8d, 0x1e, 0xc2, 0x02, 0xf5, 0x75, 0x7f, 0x14, 0xc8, 0x74, 0x33, 0x57, 0xa6, 0x23, 0x0e, 0x82,
0x25, 0xa8, 0x76, 0x01, 0xea, 0x33, 0x6b, 0x44, 0x4f, 0x67, 0xd7, 0x05, 0x82, 0x8a, 0x71, 0xdc,
0xed, 0x70, 0xa6, 0x65, 0xcc, 0x7f, 0x23, 0x0d, 0xd4, 0xbe, 0x6b, 0x59, 0xa4, 0xef, 0x9b, 0xae,
0xd3, 0xed, 0x34, 0x2b, 0xfc, 0xbf, 0xc4, 0x9d, 0xf6, 0x67, 0x05, 0x56, 0x8e, 0xc8, 0xc0, 0x26,
0x8e, 0xdf, 0xed, 0x04, 0xec, 0xd7, 0x60, 0xbe, 0xef, 0x8e, 0x1c, 0x9f, 0xf3, 0xaf, 0x63, 0x71,
0x40, 0x77, 0x41, 0xed, 0x9f, 0xea, 0x8e, 0x43, 0xac, 0x9e, 0xa3, 0xdb, 0x84, 0xb3, 0xaa, 0xe2,
0x9a, 0xbc, 0x7b, 0xae, 0xdb, 0x24, 0xc3, 0xb1, 0x9c, 0xe5, 0x88, 0x36, 0xa1, 0x36, 0xd4, 0x3d,
0xdf, 0x4c, 0x08, 0x15, 0xbf, 0xd2, 0xfe, 0xaa, 0xc0, 0xfa, 0x63, 0x4a, 0xcd, 0x81, 0x93, 0x91,
0x6c, 0x1d, 0x16, 0x1c, 0xd7, 0x20, 0xdd, 0x0e, 0x17, 0xad, 0x8c, 0xe5, 0x09, 0xdd, 0x84, 0xea,
0x90, 0x10, 0xaf, 0xe7, 0xb9, 0x56, 0x20, 0xd8, 0x12, 0xbb, 0xc0, 0xae, 0x45, 0xd0, 0x2f, 0x60,
0x95, 0xa6, 0x08, 0xd1, 0x66, 0x79, 0xb3, 0xbc, 0x55, 0x6b, 0x7f, 0x7b, 0x3b, 0xe3, 0xd9, 0xdb,
0x69, 0xa6, 0x38, 0x8b, 0xad, 0x7d, 0x59, 0x82, 0x1b, 0x21, 0x9c, 0x90, 0x95, 0xfd, 0x66, 0x9a,
0xa3, 0x64, 0x10, 0x8a, 0x27, 0x0e, 0x45, 0x34, 0x17, 0xaa, 0xbc, 0x1c, 0x57, 0x79, 0x01, 0x0b,
0xa6, 0xf5, 0x39, 0x9f, 0xd1, 0x27, 0xba, 0x03, 0x35, 0x72, 0x31, 0x34, 0x3d, 0xd2, 0xf3, 0x4d,
0x9b, 0x34, 0x17, 0x36, 0x95, 0xad, 0x0a, 0x06, 0x71, 0xf5, 0xc2, 0xb4, 0x49, 0xcc, 0x67, 0x17,
0x8b, 0xfb, 0xec, 0xdf, 0x15, 0x78, 0x27, 0x63, 0x25, 0x19, 0x48, 0x18, 0x56, 0xf8, 0xcb, 0x23,
0xcd, 0xb0, 0x68, 0x62, 0x0a, 0xbf, 0x37, 0x49, 0xe1, 0x11, 0x38, 0xce, 0xe0, 0xcf, 0x16, 0x58,
0x7f, 0x53, 0xe0, 0xc6, 0xd1, 0xa9, 0xfb, 0x52, 0xb2, 0xa0, 0xb3, 0x07, 0x58, 0xda, 0x14, 0xa5,
0xe9, 0xa6, 0x28, 0x67, 0x4d, 0x11, 0x84, 0x69, 0x25, 0x0a, 0x53, 0xed, 0x0c, 0xd6, 0x92, 0x22,
0x4a, 0x25, 0x6e, 0x00, 0x84, 0x8e, 0x27, 0xd4, 0x57, 0xc6, 0xb1, 0x9b, 0xd9, 0x14, 0x72, 0x06,
0xef, 0xec, 0x11, 0x5f, 0xf2, 0x62, 0xff, 0x91, 0x2b, 0xe8, 0x24, 0x29, 0x61, 0x29, 0x2d, 0xa1,
0xf6, 0xef, 0x52, 0x98, 0x5c, 0x38, 0xab, 0xae, 0x73, 0xe2, 0xa2, 0x5b, 0x50, 0x0d, 0x41, 0x64,
0x98, 0x44, 0x17, 0xe8, 0xfb, 0x30, 0xcf, 0x24, 0x15, 0x31, 0xd2, 0x48, 0x27, 0xdf, 0xe0, 0x4d,
0x31, 0x9a, 0x58, 0xc0, 0xa3, 0x2e, 0x34, 0xa8, 0xaf, 0x7b, 0x7e, 0x6f, 0xe8, 0x52, 0xae, 0x6d,
0xae, 0xfe, 0x5a, 0x5b, 0x1b, 0x93, 0xbe, 0x0f, 0xe8, 0xe0, 0x50, 0x42, 0xe2, 0x3a, 0xc7, 0x0c,
0x8e, 0xe8, 0x29, 0xa8, 0xc4, 0x31, 0x22, 0x42, 0x95, 0xc2, 0x84, 0x6a, 0xc4, 0x31, 0x42, 0x32,
0x91, 0x7d, 0xe6, 0x8b, 0xdb, 0xe7, 0x0f, 0x0a, 0x34, 0xb3, 0x06, 0x92, 0x1e, 0x11, 0x51, 0x54,
0x0a, 0x53, 0x44, 0x8f, 0x04, 0x12, 0x11, 0x06, 0x9a, 0x98, 0xf2, 0x42, 0x23, 0x61, 0x89, 0xa2,
0x99, 0xf0, 0xad, 0x48, 0x1a, 0xfe, 0xcf, 0x5b, 0x73, 0x96, 0xdf, 0x28, 0xb0, 0x9e, 0xe6, 0x75,
0x95, 0x77, 0x7f, 0x17, 0xe6, 0x4d, 0xe7, 0xc4, 0x0d, 0x9e, 0xbd, 0x31, 0x21, 0xf1, 0x30, 0x5e,
0x02, 0x58, 0xb3, 0xe1, 0xe6, 0x1e, 0xf1, 0xbb, 0x0e, 0x25, 0x9e, 0xbf, 0x6b, 0x3a, 0x96, 0x3b,
0x38, 0xd4, 0xfd, 0xd3, 0x2b, 0xc4, 0x48, 0xc2, 0xdd, 0x4b, 0x29, 0x77, 0xd7, 0xfe, 0xa9, 0xc0,
0xad, 0x7c, 0x7e, 0xf2, 0xe9, 0x2d, 0x58, 0x3a, 0x31, 0x89, 0x65, 0x44, 0x29, 0x20, 0x3c, 0xb3,
0x58, 0x19, 0x32, 0x60, 0xf9, 0xc2, 0x71, 0x8d, 0xca, 0x91, 0xef, 0x99, 0xce, 0x60, 0xdf, 0xa4,
0x3e, 0x16, 0xf0, 0x31, 0x7d, 0x96, 0x8b, 0x7b, 0xe6, 0x6f, 0x85, 0x67, 0x0a, 0x51, 0x9f, 0x88,
0xd2, 0x45, 0xdf, 0x6e, 0xc3, 0x92, 0xd3, 0x3e, 0x68, 0xbf, 0x57, 0x60, 0x63, 0x8f, 0xf8, 0x4f,
0xc2, 0x3b, 0x26, 0xa6, 0x49, 0x7d, 0xb3, 0x7f, 0x0d, 0xc2, 0x7c, 0xad, 0xc0, 0x9d, 0xb1, 0xc2,
0x48, 0x0b, 0xca, 0x8c, 0x16, 0x14, 0xc0, 0xfc, 0x8c, 0xf6, 0x33, 0xf2, 0xea, 0x53, 0xdd, 0x1a,
0x91, 0x43, 0xdd, 0xf4, 0x44, 0x46, 0x9b, 0x31, 0xbf, 0xff, 0x4b, 0x81, 0xdb, 0x7b, 0x84, 0x35,
0xa3, 0xa2, 0xe6, 0x5c, 0xa3, 0x76, 0x0a, 0x74, 0x7a, 0x7f, 0x14, 0xc6, 0xcc, 0x95, 0xf6, 0x5a,
0xd4, 0xb7, 0xc1, 0xc3, 0x31, 0x96, 0x17, 0xa4, 0xa3, 0x4b, 0xe5, 0x69, 0x7f, 0x29, 0x81, 0xfa,
0xa9, 0xec, 0xdb, 0x78, 0x35, 0x4b, 0xeb, 0x41, 0xc9, 0xd7, 0x43, 0xac, 0xd5, 0xcb, 0xeb, 0xfe,
0xf6, 0xa0, 0x4e, 0x09, 0x39, 0x9b, 0xa5, 0x76, 0xa9, 0x0c, 0x31, 0xac, 0x39, 0xfb, 0xb0, 0x3a,
0x72, 0x4e, 0xd8, 0x28, 0x41, 0x8c, 0xa0, 0xa1, 0x68, 0x56, 0x0a, 0x25, 0xc0, 0x2c, 0x22, 0xda,
0x82, 0xe5, 0x34, 0xad, 0x79, 0x9e, 0x83, 0xd2, 0xd7, 0xda, 0xef, 0x14, 0x58, 0xff, 0x4c, 0xf7,
0xfb, 0xa7, 0x1d, 0xfb, 0xea, 0xa9, 0xe1, 0x63, 0xa8, 0x9e, 0x4b, 0xed, 0x04, 0xb9, 0xed, 0x4e,
0x8e, 0xf0, 0x71, 0x3b, 0xe0, 0x08, 0x83, 0x8d, 0x0f, 0x6b, 0x7c, 0x9a, 0xba, 0x7a, 0xd3, 0x37,
0xab, 0xe7, 0x27, 0x6b, 0x5d, 0x25, 0x53, 0xeb, 0x2e, 0x00, 0xa4, 0x70, 0x07, 0x74, 0x30, 0x83,
0x5c, 0x3f, 0x80, 0x45, 0x49, 0x4d, 0x3a, 0xf7, 0x34, 0xe3, 0x06, 0xe0, 0xda, 0x11, 0xac, 0xcb,
0xfb, 0x67, 0xac, 0x8c, 0x88, 0x92, 0x73, 0x40, 0x7c, 0x1d, 0x35, 0x61, 0x51, 0x56, 0x16, 0xe9,
0xc4, 0xc1, 0x91, 0xcd, 0x0f, 0xc7, 0x1c, 0xae, 0xc7, 0xca, 0x87, 0xf4, 0x5f, 0x38, 0x0e, 0xab,
0x95, 0xf6, 0x2b, 0xa8, 0x77, 0x3a, 0xfb, 0x31, 0x5a, 0xf7, 0x60, 0xd9, 0x30, 0xac, 0x5e, 0x1c,
0x4b, 0xe1, 0x58, 0x75, 0xc3, 0xb0, 0xa2, 0x32, 0x87, 0xde, 0x85, 0x86, 0x4f, 0x7b, 0x59, 0xe2,
0xaa, 0x4f, 0x23, 0x28, 0xed, 0x00, 0x1a, 0x5c, 0x58, 0x6e, 0xd4, 0x29, 0xb2, 0xde, 0x05, 0x35,
0x46, 0x4e, 0xb8, 0x4f, 0x15, 0xd7, 0x22, 0x61, 0x29, 0xab, 0x20, 0x41, 0x57, 0x1a, 0x51, 0x9c,
0xdc, 0x95, 0xde, 0x06, 0x30, 0x69, 0x4f, 0x3a, 0x3d, 0x97, 0x71, 0x09, 0x57, 0x4d, 0xfa, 0x4c,
0x5c, 0xa0, 0x1f, 0xc2, 0x02, 0xe7, 0x2f, 0xc2, 0x23, 0x93, 0xa4, 0xb8, 0x35, 0x92, 0x2f, 0xc0,
0x12, 0x41, 0xfb, 0x04, 0xd4, 0x4e, 0x67, 0x3f, 0x92, 0xa3, 0x48, 0x3e, 0x29, 0xf0, 0xc6, 0xd7,
0xd0, 0x88, 0x8a, 0x12, 0x4f, 0x54, 0x0d, 0x28, 0x85, 0xe4, 0x4a, 0xdd, 0x0e, 0xfa, 0x18, 0x16,
0xc4, 0x56, 0x46, 0x7a, 0xd0, 0x7b, 0x49, 0x99, 0xe5, 0xc6, 0x26, 0x56, 0xd9, 0xf8, 0x05, 0x96,
0x48, 0xcc, 0xc3, 0xc3, 0x44, 0x2e, 0x86, 0xe9, 0x32, 0x8e, 0xdd, 0x68, 0xff, 0x2f, 0x41, 0x2d,
0xe6, 0x80, 0x19, 0xf6, 0x6f, 0x66, 0x9c, 0x7a, 0x0f, 0x1a, 0x26, 0xef, 0x47, 0x7a, 0x32, 0xfa,
0x79, 0x91, 0xa9, 0xe2, 0xba, 0x19, 0xef, 0x52, 0xd0, 0x06, 0xd4, 0x9c, 0x91, 0xdd, 0x73, 0x4f,
0x7a, 0x9e, 0xfb, 0x92, 0xca, 0x11, 0xb9, 0xea, 0x8c, 0xec, 0x9f, 0x9f, 0x60, 0xf7, 0x25, 0x8d,
0x86, 0x8e, 0x85, 0x4b, 0x0e, 0x1d, 0x4f, 0x41, 0x35, 0x6c, 0x2b, 0x4a, 0xdb, 0x8b, 0xc5, 0x27,
0x05, 0xc3, 0xb6, 0xc2, 0xac, 0xbd, 0x01, 0x35, 0x5b, 0xbf, 0x60, 0xc2, 0xf5, 0x9c, 0x91, 0xdd,
0x5c, 0x12, 0xf2, 0xd9, 0xfa, 0x05, 0x76, 0x5f, 0x3e, 0x1f, 0xd9, 0x68, 0x0b, 0x56, 0x2c, 0x9d,
0xfa, 0xbd, 0xf8, 0x14, 0x5f, 0xe5, 0x53, 0x7c, 0x83, 0xdd, 0x3f, 0x0d, 0x27, 0x79, 0xed, 0x21,
0xd4, 0xba, 0x9d, 0x36, 0xf3, 0x01, 0xd6, 0xef, 0x65, 0xb4, 0xbe, 0x06, 0xf3, 0x87, 0x31, 0x97,
0x11, 0x07, 0x96, 0x30, 0xd5, 0x40, 0x16, 0x56, 0x41, 0x73, 0x66, 0x29, 0xe5, 0x4d, 0xcd, 0x52,
0xa5, 0x99, 0x66, 0x29, 0xed, 0x3f, 0x25, 0x58, 0x3f, 0xd2, 0xcf, 0xc9, 0xdb, 0x6f, 0xc9, 0x0b,
0xe5, 0xf7, 0x7d, 0x58, 0xe5, 0xf1, 0xdb, 0x8e, 0xc9, 0x33, 0xa1, 0xcc, 0xc6, 0x4c, 0x82, 0xb3,
0x88, 0xe8, 0xa7, 0xac, 0x3f, 0x20, 0xfd, 0xb3, 0x43, 0xd7, 0x0c, 0x4a, 0x6c, 0xad, 0x7d, 0x3b,
0x87, 0xce, 0x93, 0x10, 0x0a, 0xc7, 0x31, 0x78, 0x3a, 0x94, 0xb9, 0x69, 0x81, 0xe7, 0xa6, 0xe0,
0xc8, 0x72, 0x1d, 0x44, 0x58, 0x53, 0xb2, 0xdc, 0x4f, 0x60, 0x69, 0x06, 0x3b, 0x85, 0x38, 0xe9,
0x30, 0x2b, 0xa7, 0xc2, 0x4c, 0xfb, 0x4a, 0x81, 0x7a, 0x47, 0xf7, 0xf5, 0xe7, 0xae, 0x41, 0x5e,
0xcc, 0x58, 0xf9, 0x0a, 0xac, 0xd2, 0x6e, 0x41, 0x95, 0x45, 0x08, 0xf5, 0x75, 0x7b, 0xc8, 0x85,
0xa8, 0xe0, 0xe8, 0x82, 0x8d, 0x99, 0x75, 0x99, 0x17, 0x44, 0xef, 0xc7, 0x8a, 0x3c, 0x27, 0x25,
0x2a, 0x14, 0xff, 0x8d, 0x7e, 0x94, 0x5c, 0x43, 0xbc, 0x9b, 0x6b, 0x0c, 0x4e, 0x84, 0x77, 0x3d,
0x89, 0xa4, 0x50, 0x64, 0x70, 0xf8, 0x52, 0x01, 0x35, 0x50, 0x05, 0xcf, 0x8f, 0xcd, 0x68, 0x97,
0x2d, 0xe4, 0x08, 0x8e, 0xec, 0x9f, 0x73, 0xe2, 0xd1, 0xc0, 0x28, 0x65, 0x1c, 0x1c, 0xd1, 0x8f,
0x61, 0x29, 0x6c, 0x93, 0xc4, 0x3a, 0x73, 0x73, 0xbc, 0x9c, 0xb2, 0xd1, 0x0d, 0x31, 0x34, 0x0f,
0x1a, 0x32, 0xa5, 0x09, 0x5f, 0xa4, 0x53, 0xbc, 0x63, 0x17, 0xd4, 0x93, 0xa8, 0x65, 0x98, 0x34,
0x56, 0xc7, 0x3a, 0x0b, 0x9c, 0xc0, 0xd1, 0x1e, 0x43, 0x2d, 0xf6, 0xe7, 0x84, 0x32, 0xde, 0x84,
0xc5, 0xe3, 0x18, 0x9f, 0x2a, 0x0e, 0x8e, 0xda, 0x7f, 0x15, 0xbe, 0xc1, 0xc2, 0xa4, 0xef, 0x9e,
0x13, 0xef, 0xd5, 0xd5, 0xf7, 0x04, 0x8f, 0x62, 0x5a, 0x2c, 0xd8, 0x6c, 0x86, 0x08, 0xe8, 0x51,
0x24, 0x67, 0x79, 0x6c, 0xe9, 0x4f, 0xaa, 0x39, 0x7a, 0xca, 0x9f, 0xc4, 0xc6, 0x23, 0xf9, 0x94,
0x6b, 0xdd, 0x4f, 0xde, 0x7f, 0x00, 0xab, 0x19, 0xbf, 0x46, 0x0d, 0x80, 0x4f, 0x9c, 0xbe, 0x6b,
0x0f, 0x2d, 0xe2, 0x93, 0x95, 0x39, 0xa4, 0xc2, 0xd2, 0x93, 0xe0, 0xa4, 0xb4, 0xff, 0x57, 0x87,
0x1a, 0x73, 0xe5, 0x23, 0xf1, 0xc5, 0x08, 0x0d, 0x01, 0xf1, 0x91, 0xd8, 0x1e, 0xba, 0x4e, 0xb8,
0xc2, 0x42, 0x1f, 0x8d, 0xc9, 0x24, 0x59, 0x50, 0xa9, 0x82, 0xd6, 0xbd, 0x31, 0x18, 0x29, 0x70,
0x6d, 0x0e, 0xd9, 0x9c, 0x23, 0xab, 0x7f, 0x2f, 0xcc, 0xfe, 0x59, 0x50, 0xf4, 0x27, 0x70, 0x4c,
0x81, 0x06, 0x1c, 0x53, 0x9b, 0x31, 0x79, 0x10, 0xeb, 0x93, 0xc0, 0xc7, 0xb4, 0x39, 0xf4, 0x05,
0xac, 0xb1, 0x19, 0x31, 0x1c, 0x55, 0x03, 0x86, 0xed, 0xf1, 0x0c, 0x33, 0xc0, 0x97, 0x64, 0xa9,
0x83, 0x1a, 0xff, 0x60, 0x85, 0xf2, 0xb6, 0xe8, 0x39, 0xdf, 0xd4, 0x5a, 0xef, 0x4f, 0x85, 0x0b,
0x59, 0xec, 0xc1, 0x3c, 0xef, 0x42, 0x51, 0x9e, 0xf7, 0xc7, 0x3f, 0x4e, 0xb5, 0x26, 0x45, 0x95,
0x36, 0x87, 0x7e, 0x0d, 0xcb, 0xa9, 0xcf, 0x02, 0xe8, 0x83, 0x1c, 0x92, 0xf9, 0x1f, 0x78, 0x5a,
0xf7, 0x8b, 0x80, 0xc6, 0xf5, 0x12, 0x5f, 0x9d, 0xe7, 0xea, 0x25, 0x67, 0xfd, 0x9f, 0xab, 0x97,
0xbc, 0x1d, 0xbc, 0x36, 0x87, 0x06, 0xd0, 0x48, 0x6e, 0x04, 0xd0, 0x56, 0x0e, 0x72, 0xee, 0x92,
0xb4, 0xf5, 0x41, 0x01, 0xc8, 0x90, 0x91, 0x0d, 0x2b, 0xe9, 0xc5, 0x2f, 0xba, 0x3f, 0x91, 0x40,
0x32, 0x5e, 0x3e, 0x2c, 0x04, 0x1b, 0xb2, 0x7b, 0xc5, 0xbd, 0x38, 0xb3, 0x78, 0x44, 0xdb, 0xf9,
0x64, 0xc6, 0x6d, 0x44, 0x5b, 0x3b, 0x85, 0xe1, 0x43, 0xd6, 0x04, 0x56, 0x33, 0x8b, 0x44, 0xf4,
0xe1, 0x24, 0x3a, 0xa9, 0x9d, 0x42, 0x6b, 0xfa, 0xaa, 0x53, 0x9b, 0x43, 0x5f, 0x89, 0x4a, 0x91,
0xb7, 0x9c, 0x43, 0x0f, 0xf2, 0xb9, 0x4d, 0xd8, 0x2a, 0xb6, 0xda, 0x97, 0x41, 0x09, 0xdf, 0xfa,
0x9a, 0xa7, 0xf8, 0x9c, 0x05, 0x57, 0x3a, 0x3f, 0x05, 0xf4, 0xc6, 0x6f, 0xee, 0x5a, 0x0f, 0x2e,
0x81, 0x11, 0x0a, 0xe0, 0xa6, 0x37, 0xf8, 0x41, 0xba, 0xda, 0x99, 0xea, 0x9c, 0xb3, 0xe5, 0xaa,
0xcf, 0x61, 0x39, 0xd5, 0xa9, 0xe7, 0xc6, 0x7f, 0x7e, 0x37, 0x5f, 0x20, 0xb9, 0xa4, 0x2a, 0x26,
0x1a, 0x13, 0x64, 0x39, 0x55, 0xb5, 0x75, 0xbf, 0x08, 0x68, 0xf0, 0x90, 0xf6, 0x3f, 0xca, 0xb0,
0x14, 0xf4, 0x68, 0xd7, 0x50, 0xd5, 0xae, 0xa1, 0xcc, 0x7c, 0x0e, 0xcb, 0xa9, 0x25, 0x5e, 0xae,
0x76, 0xf3, 0x17, 0x7d, 0xd3, 0x4c, 0xf7, 0x19, 0xd4, 0x13, 0x5b, 0x39, 0xf4, 0xfe, 0xb8, 0x42,
0x93, 0xce, 0xd6, 0x93, 0x09, 0xef, 0x3e, 0xfc, 0xe5, 0x83, 0x81, 0xe9, 0x9f, 0x8e, 0x8e, 0xd9,
0x3f, 0x3b, 0x02, 0xf4, 0x3b, 0xa6, 0x2b, 0x7f, 0xed, 0x04, 0x0a, 0xda, 0xe1, 0xd8, 0x3b, 0x8c,
0xcd, 0xf0, 0xf8, 0x78, 0x81, 0x9f, 0x1e, 0x7e, 0x13, 0x00, 0x00, 0xff, 0xff, 0x3a, 0xb4, 0x65,
0x6c, 0xee, 0x22, 0x00, 0x00,
0xa9, 0xab, 0x05, 0x09, 0x81, 0x10, 0x0b, 0x0f, 0xbc, 0x03, 0x12, 0x12, 0x12, 0x2f, 0xfc, 0x0c,
0x7e, 0x01, 0xbf, 0x84, 0x1f, 0x80, 0xce, 0x65, 0xee, 0x63, 0x7b, 0xea, 0x50, 0xe5, 0xcd, 0xe7,
0xf8, 0xbb, 0x9d, 0xef, 0xfe, 0x7d, 0x03, 0xc8, 0xd0, 0x7d, 0xbd, 0x4f, 0x89, 0x77, 0x61, 0x0e,
0xc8, 0xce, 0xc8, 0x73, 0x7d, 0x17, 0xad, 0xd9, 0xa6, 0x75, 0x31, 0xa6, 0xe2, 0xb4, 0xc3, 0x00,
0xda, 0xea, 0xc0, 0xb5, 0x6d, 0xd7, 0x11, 0x57, 0xed, 0xa6, 0xe9, 0xf8, 0xc4, 0x73, 0x74, 0x4b,
0x9e, 0xd5, 0x38, 0x42, 0x5b, 0xa5, 0x83, 0x33, 0x62, 0xeb, 0xe2, 0xa4, 0xbd, 0x86, 0x77, 0x30,
0x19, 0x9a, 0xd4, 0x27, 0xde, 0x73, 0xd7, 0x20, 0x98, 0x7c, 0x31, 0x26, 0xd4, 0x47, 0x1f, 0x41,
0xe5, 0x44, 0xa7, 0xa4, 0xa5, 0x6c, 0x29, 0xdb, 0xf5, 0xce, 0xcd, 0x9d, 0x04, 0x4b, 0xc9, 0xec,
0x90, 0x0e, 0xf7, 0x74, 0x4a, 0x30, 0x87, 0x44, 0xdf, 0x81, 0x25, 0xdd, 0x30, 0x3c, 0x42, 0x69,
0xab, 0x34, 0x05, 0xe9, 0xb1, 0x80, 0xc1, 0x01, 0xb0, 0xf6, 0xb5, 0x02, 0xeb, 0x49, 0x09, 0xe8,
0xc8, 0x75, 0x28, 0x41, 0x7b, 0x50, 0x37, 0x1d, 0xd3, 0xef, 0x8f, 0x74, 0x4f, 0xb7, 0xa9, 0x94,
0xe4, 0x4e, 0x92, 0x68, 0xf8, 0xd0, 0x9e, 0x63, 0xfa, 0x47, 0x1c, 0x10, 0x83, 0x19, 0xfe, 0x46,
0x0f, 0x61, 0x91, 0xfa, 0xba, 0x3f, 0x0e, 0x64, 0xba, 0x91, 0x2b, 0xd3, 0x31, 0x07, 0xc1, 0x12,
0x54, 0xbb, 0x04, 0xf5, 0x99, 0x35, 0xa6, 0x67, 0xf3, 0xeb, 0x02, 0x41, 0xc5, 0x38, 0xe9, 0x75,
0x39, 0xd3, 0x32, 0xe6, 0xbf, 0x91, 0x06, 0xea, 0xc0, 0xb5, 0x2c, 0x32, 0xf0, 0x4d, 0xd7, 0xe9,
0x75, 0x5b, 0x15, 0xfe, 0x5f, 0xe2, 0x4e, 0xfb, 0x93, 0x02, 0xab, 0xc7, 0x64, 0x68, 0x13, 0xc7,
0xef, 0x75, 0x03, 0xf6, 0xeb, 0x50, 0x1d, 0xb8, 0x63, 0xc7, 0xe7, 0xfc, 0x1b, 0x58, 0x1c, 0xd0,
0x1d, 0x50, 0x07, 0x67, 0xba, 0xe3, 0x10, 0xab, 0xef, 0xe8, 0x36, 0xe1, 0xac, 0x6a, 0xb8, 0x2e,
0xef, 0x9e, 0xeb, 0x36, 0xc9, 0x70, 0x2c, 0x67, 0x39, 0xa2, 0x2d, 0xa8, 0x8f, 0x74, 0xcf, 0x37,
0x13, 0x42, 0xc5, 0xaf, 0xb4, 0xbf, 0x28, 0xb0, 0xf1, 0x98, 0x52, 0x73, 0xe8, 0x64, 0x24, 0xdb,
0x80, 0x45, 0xc7, 0x35, 0x48, 0xaf, 0xcb, 0x45, 0x2b, 0x63, 0x79, 0x42, 0x37, 0xa0, 0x36, 0x22,
0xc4, 0xeb, 0x7b, 0xae, 0x15, 0x08, 0xb6, 0xcc, 0x2e, 0xb0, 0x6b, 0x11, 0xf4, 0x33, 0x58, 0xa3,
0x29, 0x42, 0xb4, 0x55, 0xde, 0x2a, 0x6f, 0xd7, 0x3b, 0xdf, 0xdc, 0xc9, 0x78, 0xf6, 0x4e, 0x9a,
0x29, 0xce, 0x62, 0x6b, 0x5f, 0x96, 0xe0, 0x9d, 0x10, 0x4e, 0xc8, 0xca, 0x7e, 0x33, 0xcd, 0x51,
0x32, 0x0c, 0xc5, 0x13, 0x87, 0x22, 0x9a, 0x0b, 0x55, 0x5e, 0x8e, 0xab, 0xbc, 0x80, 0x05, 0xd3,
0xfa, 0xac, 0x66, 0xf4, 0x89, 0x6e, 0x43, 0x9d, 0x5c, 0x8e, 0x4c, 0x8f, 0xf4, 0x7d, 0xd3, 0x26,
0xad, 0xc5, 0x2d, 0x65, 0xbb, 0x82, 0x41, 0x5c, 0xbd, 0x30, 0x6d, 0x12, 0xf3, 0xd9, 0xa5, 0xe2,
0x3e, 0xfb, 0x37, 0x05, 0xde, 0xcd, 0x58, 0x49, 0x06, 0x12, 0x86, 0x55, 0xfe, 0xf2, 0x48, 0x33,
0x2c, 0x9a, 0x98, 0xc2, 0xef, 0x4e, 0x53, 0x78, 0x04, 0x8e, 0x33, 0xf8, 0xf3, 0x05, 0xd6, 0x5f,
0x15, 0x78, 0xe7, 0xf8, 0xcc, 0x7d, 0x29, 0x59, 0xd0, 0xf9, 0x03, 0x2c, 0x6d, 0x8a, 0xd2, 0x6c,
0x53, 0x94, 0xb3, 0xa6, 0x08, 0xc2, 0xb4, 0x12, 0x85, 0xa9, 0x76, 0x0e, 0xeb, 0x49, 0x11, 0xa5,
0x12, 0x37, 0x01, 0x42, 0xc7, 0x13, 0xea, 0x2b, 0xe3, 0xd8, 0xcd, 0x7c, 0x0a, 0x39, 0x87, 0x77,
0xf7, 0x89, 0x2f, 0x79, 0xb1, 0xff, 0xc8, 0x15, 0x74, 0x92, 0x94, 0xb0, 0x94, 0x96, 0x50, 0xfb,
0x57, 0x29, 0x4c, 0x2e, 0x9c, 0x55, 0xcf, 0x39, 0x75, 0xd1, 0x4d, 0xa8, 0x85, 0x20, 0x32, 0x4c,
0xa2, 0x0b, 0xf4, 0x5d, 0xa8, 0x32, 0x49, 0x45, 0x8c, 0x34, 0xd3, 0xc9, 0x37, 0x78, 0x53, 0x8c,
0x26, 0x16, 0xf0, 0xa8, 0x07, 0x4d, 0xea, 0xeb, 0x9e, 0xdf, 0x1f, 0xb9, 0x94, 0x6b, 0x9b, 0xab,
0xbf, 0xde, 0xd1, 0x26, 0xa4, 0xef, 0x43, 0x3a, 0x3c, 0x92, 0x90, 0xb8, 0xc1, 0x31, 0x83, 0x23,
0x7a, 0x0a, 0x2a, 0x71, 0x8c, 0x88, 0x50, 0xa5, 0x30, 0xa1, 0x3a, 0x71, 0x8c, 0x90, 0x4c, 0x64,
0x9f, 0x6a, 0x71, 0xfb, 0xfc, 0x5e, 0x81, 0x56, 0xd6, 0x40, 0xd2, 0x23, 0x22, 0x8a, 0x4a, 0x61,
0x8a, 0xe8, 0x91, 0x40, 0x22, 0xc2, 0x40, 0x53, 0x53, 0x5e, 0x68, 0x24, 0x2c, 0x51, 0x34, 0x13,
0xbe, 0x11, 0x49, 0xc3, 0xff, 0x79, 0x6b, 0xce, 0xf2, 0x2b, 0x05, 0x36, 0xd2, 0xbc, 0xae, 0xf2,
0xee, 0x6f, 0x43, 0xd5, 0x74, 0x4e, 0xdd, 0xe0, 0xd9, 0x9b, 0x53, 0x12, 0x0f, 0xe3, 0x25, 0x80,
0x35, 0x1b, 0x6e, 0xec, 0x13, 0xbf, 0xe7, 0x50, 0xe2, 0xf9, 0x7b, 0xa6, 0x63, 0xb9, 0xc3, 0x23,
0xdd, 0x3f, 0xbb, 0x42, 0x8c, 0x24, 0xdc, 0xbd, 0x94, 0x72, 0x77, 0xed, 0x1f, 0x0a, 0xdc, 0xcc,
0xe7, 0x27, 0x9f, 0xde, 0x86, 0xe5, 0x53, 0x93, 0x58, 0x46, 0x94, 0x02, 0xc2, 0x33, 0x8b, 0x95,
0x11, 0x03, 0x96, 0x2f, 0x9c, 0xd4, 0xa8, 0x1c, 0xfb, 0x9e, 0xe9, 0x0c, 0x0f, 0x4c, 0xea, 0x63,
0x01, 0x1f, 0xd3, 0x67, 0xb9, 0xb8, 0x67, 0xfe, 0x5a, 0x78, 0xa6, 0x10, 0xf5, 0x89, 0x28, 0x5d,
0xf4, 0xed, 0x36, 0x2c, 0x39, 0xed, 0x83, 0xf6, 0x3b, 0x05, 0x36, 0xf7, 0x89, 0xff, 0x24, 0xbc,
0x63, 0x62, 0x9a, 0xd4, 0x37, 0x07, 0xd7, 0x20, 0xcc, 0xd7, 0x0a, 0xdc, 0x9e, 0x28, 0x8c, 0xb4,
0xa0, 0xcc, 0x68, 0x41, 0x01, 0xcc, 0xcf, 0x68, 0x3f, 0x21, 0xaf, 0x3e, 0xd5, 0xad, 0x31, 0x39,
0xd2, 0x4d, 0x4f, 0x64, 0xb4, 0x39, 0xf3, 0xfb, 0x3f, 0x15, 0xb8, 0xb5, 0x4f, 0x58, 0x33, 0x2a,
0x6a, 0xce, 0x35, 0x6a, 0xa7, 0x40, 0xa7, 0xf7, 0x07, 0x61, 0xcc, 0x5c, 0x69, 0xaf, 0x45, 0x7d,
0x9b, 0x3c, 0x1c, 0x63, 0x79, 0x41, 0x3a, 0xba, 0x54, 0x9e, 0xf6, 0xe7, 0x12, 0xa8, 0x9f, 0xca,
0xbe, 0x8d, 0x57, 0xb3, 0xb4, 0x1e, 0x94, 0x7c, 0x3d, 0xc4, 0x5a, 0xbd, 0xbc, 0xee, 0x6f, 0x1f,
0x1a, 0x94, 0x90, 0xf3, 0x79, 0x6a, 0x97, 0xca, 0x10, 0xc3, 0x9a, 0x73, 0x00, 0x6b, 0x63, 0xe7,
0x94, 0x8d, 0x12, 0xc4, 0x08, 0x1a, 0x8a, 0x56, 0xa5, 0x50, 0x02, 0xcc, 0x22, 0xa2, 0x6d, 0x58,
0x49, 0xd3, 0xaa, 0xf2, 0x1c, 0x94, 0xbe, 0xd6, 0x7e, 0xab, 0xc0, 0xc6, 0x67, 0xba, 0x3f, 0x38,
0xeb, 0xda, 0x57, 0x4f, 0x0d, 0x1f, 0x43, 0xed, 0x42, 0x6a, 0x27, 0xc8, 0x6d, 0xb7, 0x73, 0x84,
0x8f, 0xdb, 0x01, 0x47, 0x18, 0x6c, 0x7c, 0x58, 0xe7, 0xd3, 0xd4, 0xd5, 0x9b, 0xbe, 0x79, 0x3d,
0x3f, 0x59, 0xeb, 0x2a, 0x99, 0x5a, 0x77, 0x09, 0x20, 0x85, 0x3b, 0xa4, 0xc3, 0x39, 0xe4, 0xfa,
0x1e, 0x2c, 0x49, 0x6a, 0xd2, 0xb9, 0x67, 0x19, 0x37, 0x00, 0xd7, 0x8e, 0x61, 0x43, 0xde, 0x3f,
0x63, 0x65, 0x44, 0x94, 0x9c, 0x43, 0xe2, 0xeb, 0xa8, 0x05, 0x4b, 0xb2, 0xb2, 0x48, 0x27, 0x0e,
0x8e, 0x6c, 0x7e, 0x38, 0xe1, 0x70, 0x7d, 0x56, 0x3e, 0xa4, 0xff, 0xc2, 0x49, 0x58, 0xad, 0xb4,
0x5f, 0x40, 0xa3, 0xdb, 0x3d, 0x88, 0xd1, 0xba, 0x0b, 0x2b, 0x86, 0x61, 0xf5, 0xe3, 0x58, 0x0a,
0xc7, 0x6a, 0x18, 0x86, 0x15, 0x95, 0x39, 0xf4, 0x1e, 0x34, 0x7d, 0xda, 0xcf, 0x12, 0x57, 0x7d,
0x1a, 0x41, 0x69, 0x87, 0xd0, 0xe4, 0xc2, 0x72, 0xa3, 0xce, 0x90, 0xf5, 0x0e, 0xa8, 0x31, 0x72,
0xc2, 0x7d, 0x6a, 0xb8, 0x1e, 0x09, 0x4b, 0x59, 0x05, 0x09, 0xba, 0xd2, 0x88, 0xe2, 0xf4, 0xae,
0xf4, 0x16, 0x80, 0x49, 0xfb, 0xd2, 0xe9, 0xb9, 0x8c, 0xcb, 0xb8, 0x66, 0xd2, 0x67, 0xe2, 0x02,
0x7d, 0x1f, 0x16, 0x39, 0x7f, 0x11, 0x1e, 0x99, 0x24, 0xc5, 0xad, 0x91, 0x7c, 0x01, 0x96, 0x08,
0xda, 0x27, 0xa0, 0x76, 0xbb, 0x07, 0x91, 0x1c, 0x45, 0xf2, 0x49, 0x81, 0x37, 0xbe, 0x86, 0x66,
0x54, 0x94, 0x78, 0xa2, 0x6a, 0x42, 0x29, 0x24, 0x57, 0xea, 0x75, 0xd1, 0xc7, 0xb0, 0x28, 0xb6,
0x32, 0xd2, 0x83, 0xde, 0x4f, 0xca, 0x2c, 0x37, 0x36, 0xb1, 0xca, 0xc6, 0x2f, 0xb0, 0x44, 0x62,
0x1e, 0x1e, 0x26, 0x72, 0x31, 0x4c, 0x97, 0x71, 0xec, 0x46, 0xfb, 0x6f, 0x09, 0xea, 0x31, 0x07,
0xcc, 0xb0, 0xff, 0xff, 0x8c, 0x53, 0xef, 0x43, 0xd3, 0xe4, 0xfd, 0x48, 0x5f, 0x46, 0x3f, 0x2f,
0x32, 0x35, 0xdc, 0x30, 0xe3, 0x5d, 0x0a, 0xda, 0x84, 0xba, 0x33, 0xb6, 0xfb, 0xee, 0x69, 0xdf,
0x73, 0x5f, 0x52, 0x39, 0x22, 0xd7, 0x9c, 0xb1, 0xfd, 0xd3, 0x53, 0xec, 0xbe, 0xa4, 0xd1, 0xd0,
0xb1, 0xf8, 0x86, 0x43, 0xc7, 0x53, 0x50, 0x0d, 0xdb, 0x8a, 0xd2, 0xf6, 0x52, 0xf1, 0x49, 0xc1,
0xb0, 0xad, 0x30, 0x6b, 0x6f, 0x42, 0xdd, 0xd6, 0x2f, 0x99, 0x70, 0x7d, 0x67, 0x6c, 0xb7, 0x96,
0x85, 0x7c, 0xb6, 0x7e, 0x89, 0xdd, 0x97, 0xcf, 0xc7, 0x36, 0xda, 0x86, 0x55, 0x4b, 0xa7, 0x7e,
0x3f, 0x3e, 0xc5, 0xd7, 0xf8, 0x14, 0xdf, 0x64, 0xf7, 0x4f, 0xc3, 0x49, 0x5e, 0x7b, 0x08, 0xf5,
0x5e, 0xb7, 0xc3, 0x7c, 0x80, 0xf5, 0x7b, 0x19, 0xad, 0xaf, 0x43, 0xf5, 0x28, 0xe6, 0x32, 0xd5,
0xc0, 0x59, 0xd6, 0xa3, 0xc7, 0xc5, 0xe6, 0xa0, 0xec, 0x48, 0xa5, 0xcc, 0x3b, 0x52, 0x4d, 0xef,
0x82, 0x7f, 0x53, 0x86, 0x8d, 0x63, 0xfd, 0x82, 0xbc, 0xfd, 0x86, 0xbb, 0x50, 0xf6, 0x3e, 0x80,
0x35, 0x1e, 0x9d, 0x9d, 0x98, 0x3c, 0x53, 0x8a, 0x68, 0x4c, 0xe1, 0x38, 0x8b, 0x88, 0x7e, 0xcc,
0xaa, 0x3f, 0x19, 0x9c, 0x1f, 0xb9, 0x66, 0x50, 0x40, 0xeb, 0x9d, 0x5b, 0x39, 0x74, 0x9e, 0x84,
0x50, 0x38, 0x8e, 0x81, 0x8e, 0x60, 0x25, 0x69, 0x06, 0xda, 0x5a, 0xe4, 0x44, 0xee, 0x4d, 0x9d,
0xe4, 0x22, 0xed, 0xe3, 0x66, 0xc2, 0x18, 0x94, 0xa7, 0x4f, 0x99, 0xcb, 0x96, 0x78, 0x2e, 0x0b,
0x8e, 0x2c, 0x37, 0x42, 0x24, 0xc7, 0x8c, 0xac, 0xf8, 0x23, 0x58, 0x0e, 0x3d, 0xa3, 0x54, 0xd8,
0x33, 0x42, 0x9c, 0x74, 0x58, 0x96, 0x53, 0x61, 0xa9, 0x7d, 0xa5, 0x40, 0xa3, 0xab, 0xfb, 0xfa,
0x73, 0xd7, 0x20, 0x2f, 0xe6, 0xac, 0x94, 0x05, 0x56, 0x6f, 0x37, 0xa1, 0xc6, 0x22, 0x8a, 0xfa,
0xba, 0x3d, 0xe2, 0x42, 0x54, 0x70, 0x74, 0xc1, 0xc6, 0xd2, 0x86, 0xcc, 0x23, 0xa2, 0x57, 0x64,
0x4d, 0x01, 0x27, 0x25, 0x2a, 0x1a, 0xff, 0x8d, 0x7e, 0x90, 0x5c, 0x5b, 0xbc, 0x97, 0x6b, 0x5e,
0x4e, 0x84, 0x77, 0x49, 0x89, 0x24, 0x52, 0x64, 0xd0, 0xf8, 0x52, 0x01, 0x35, 0x50, 0x05, 0xcf,
0xa7, 0xad, 0x68, 0xf7, 0x2d, 0xe4, 0x08, 0x8e, 0xec, 0x9f, 0x0b, 0xe2, 0xd1, 0xc0, 0x28, 0x65,
0x1c, 0x1c, 0xd1, 0x0f, 0x61, 0x39, 0x6c, 0xab, 0xc4, 0xfa, 0x73, 0x6b, 0xb2, 0x9c, 0xb2, 0x31,
0x0e, 0x31, 0x34, 0x0f, 0x9a, 0xd2, 0xb9, 0x84, 0x77, 0xd3, 0x19, 0xde, 0xb1, 0x07, 0xea, 0x69,
0xd4, 0x62, 0x4c, 0x1b, 0xc3, 0x63, 0x9d, 0x08, 0x4e, 0xe0, 0x68, 0x8f, 0xa1, 0x1e, 0xfb, 0x73,
0x4a, 0xd9, 0x6f, 0xc1, 0xd2, 0x49, 0x8c, 0x4f, 0x0d, 0x07, 0x47, 0xed, 0xdf, 0x0a, 0xdf, 0x78,
0x61, 0x32, 0x70, 0x2f, 0x88, 0xf7, 0xea, 0xea, 0x7b, 0x85, 0x47, 0x31, 0x2d, 0x16, 0x6c, 0x4e,
0x43, 0x04, 0xf4, 0x28, 0x92, 0xb3, 0x3c, 0xb1, 0x55, 0x48, 0xaa, 0x39, 0x7a, 0xca, 0x1f, 0xc5,
0x86, 0x24, 0xf9, 0x94, 0x6b, 0xdd, 0x67, 0xde, 0x7f, 0x00, 0x6b, 0x19, 0xbf, 0x46, 0x4d, 0x80,
0x4f, 0x9c, 0x81, 0x6b, 0x8f, 0x2c, 0xe2, 0x93, 0xd5, 0x05, 0xa4, 0xc2, 0xf2, 0x93, 0xe0, 0xa4,
0x74, 0xfe, 0xd3, 0x80, 0x3a, 0x73, 0xe5, 0x63, 0xf1, 0x85, 0x09, 0x8d, 0x00, 0xf1, 0x11, 0xda,
0x1e, 0xb9, 0x4e, 0xb8, 0xf2, 0x42, 0x1f, 0x4d, 0xc8, 0x24, 0x59, 0x50, 0xa9, 0x82, 0xf6, 0xdd,
0x09, 0x18, 0x29, 0x70, 0x6d, 0x01, 0xd9, 0x9c, 0x23, 0xab, 0x97, 0x2f, 0xcc, 0xc1, 0x79, 0xd0,
0x24, 0x4c, 0xe1, 0x98, 0x02, 0x0d, 0x38, 0xa6, 0x36, 0x69, 0xf2, 0x20, 0xd6, 0x2d, 0x81, 0x8f,
0x69, 0x0b, 0xe8, 0x0b, 0x58, 0x67, 0x33, 0x65, 0x38, 0xda, 0x06, 0x0c, 0x3b, 0x93, 0x19, 0x66,
0x80, 0xdf, 0x90, 0xa5, 0x0e, 0x6a, 0xfc, 0x03, 0x17, 0xca, 0xdb, 0xba, 0xe7, 0x7c, 0x83, 0x6b,
0xdf, 0x9b, 0x09, 0x17, 0xb2, 0xd8, 0x87, 0x2a, 0xef, 0x5a, 0x51, 0x9e, 0xf7, 0xc7, 0x3f, 0x66,
0xb5, 0xa7, 0x45, 0x95, 0xb6, 0x80, 0x7e, 0x09, 0x2b, 0xa9, 0xcf, 0x08, 0xe8, 0x83, 0x1c, 0x92,
0xf9, 0x1f, 0x84, 0xda, 0xf7, 0x8b, 0x80, 0xc6, 0xf5, 0x12, 0x5f, 0xb5, 0xe7, 0xea, 0x25, 0xe7,
0x73, 0x41, 0xae, 0x5e, 0xf2, 0x76, 0xf6, 0xda, 0x02, 0x1a, 0x42, 0x33, 0xb9, 0x41, 0x40, 0xdb,
0x39, 0xc8, 0xb9, 0x4b, 0xd5, 0xf6, 0x07, 0x05, 0x20, 0x43, 0x46, 0x36, 0xac, 0xa6, 0x17, 0xc5,
0xe8, 0xfe, 0x54, 0x02, 0xc9, 0x78, 0xf9, 0xb0, 0x10, 0x6c, 0xc8, 0xee, 0x15, 0xf7, 0xe2, 0xcc,
0xa2, 0x12, 0xed, 0xe4, 0x93, 0x99, 0xb4, 0x41, 0x6d, 0xef, 0x16, 0x86, 0x0f, 0x59, 0x13, 0x58,
0xcb, 0x2c, 0x1e, 0xd1, 0x87, 0xd3, 0xe8, 0xa4, 0x76, 0x10, 0xed, 0xd9, 0xab, 0x51, 0x6d, 0x01,
0x7d, 0x25, 0x2a, 0x45, 0xde, 0x32, 0x0f, 0x3d, 0xc8, 0xe7, 0x36, 0x65, 0x0b, 0xd9, 0xee, 0xbc,
0x09, 0x4a, 0xf8, 0xd6, 0xd7, 0x3c, 0xc5, 0xe7, 0x2c, 0xc4, 0xd2, 0xf9, 0x29, 0xa0, 0x37, 0x79,
0xd3, 0xd7, 0x7e, 0xf0, 0x06, 0x18, 0xa1, 0x00, 0x6e, 0x7a, 0xe3, 0x1f, 0xa4, 0xab, 0xdd, 0x99,
0xce, 0x39, 0x5f, 0xae, 0xfa, 0x1c, 0x56, 0x52, 0xbd, 0x7f, 0x6e, 0xfc, 0xe7, 0xcf, 0x07, 0x05,
0x92, 0x4b, 0xaa, 0x62, 0xa2, 0x09, 0x41, 0x96, 0x53, 0x55, 0xdb, 0xf7, 0x8b, 0x80, 0x06, 0x0f,
0xe9, 0xfc, 0xbd, 0x0c, 0xcb, 0x41, 0x8f, 0x76, 0x0d, 0x55, 0xed, 0x1a, 0xca, 0xcc, 0xe7, 0xb0,
0x92, 0x5a, 0xfa, 0xe5, 0x6a, 0x37, 0x7f, 0x31, 0x38, 0xcb, 0x74, 0x9f, 0x41, 0x23, 0xb1, 0xc5,
0x43, 0xf7, 0x26, 0x15, 0x9a, 0x74, 0xb6, 0x9e, 0x4e, 0x78, 0xef, 0xe1, 0xcf, 0x1f, 0x0c, 0x4d,
0xff, 0x6c, 0x7c, 0xc2, 0xfe, 0xd9, 0x15, 0xa0, 0xdf, 0x32, 0x5d, 0xf9, 0x6b, 0x37, 0x50, 0xd0,
0x2e, 0xc7, 0xde, 0x65, 0x6c, 0x46, 0x27, 0x27, 0x8b, 0xfc, 0xf4, 0xf0, 0x7f, 0x01, 0x00, 0x00,
0xff, 0xff, 0x8e, 0x7a, 0x6d, 0x02, 0x1e, 0x23, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.