Update SegmentInfo proto to support deltalogs (#9925)

Resolves: #9922
See also: #9530

Signed-off-by: yangxuan <xuan.yang@zilliz.com>
This commit is contained in:
XuanYang-cn 2021-10-15 18:24:39 +08:00 committed by GitHub
parent b9fd016e64
commit 98ed253e2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 180 additions and 213 deletions

View File

@ -178,11 +178,6 @@ message SegmentMsg{
SegmentInfo segment = 2;
}
message DDLFlushMeta {
int64 collectionID = 1;
repeated string binlog_paths = 2;
}
message CollectionInfo {
int64 ID = 1;
schema.CollectionSchema schema = 2;
@ -201,7 +196,10 @@ message SegmentInfo {
uint64 last_expire_time = 8;
internal.MsgPosition start_position = 9;
internal.MsgPosition dml_position = 10;
// binlogs consist of insert-binlogs and stats-binlogs
repeated FieldBinlog binlogs = 11;
repeated FieldBinlog statslogs = 12;
repeated string deltalogs = 13;
}
message SegmentStartPosition {
@ -215,7 +213,7 @@ message SaveBinlogPathsRequest {
int64 collectionID = 3;
repeated FieldBinlog field2BinlogPaths = 4;
repeated CheckPoint checkPoints = 5;
repeated SegmentStartPosition start_positions = 6;
repeated SegmentStartPosition start_positions = 6;
bool flushed = 7;
}
@ -223,7 +221,6 @@ message CheckPoint {
int64 segmentID = 1;
internal.MsgPosition position = 2;
int64 num_of_rows = 3;
}
message DataNodeTtMsg {

View File

@ -1255,53 +1255,6 @@ func (m *SegmentMsg) GetSegment() *SegmentInfo {
return nil
}
type DDLFlushMeta struct {
CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
BinlogPaths []string `protobuf:"bytes,2,rep,name=binlog_paths,json=binlogPaths,proto3" json:"binlog_paths,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *DDLFlushMeta) Reset() { *m = DDLFlushMeta{} }
func (m *DDLFlushMeta) String() string { return proto.CompactTextString(m) }
func (*DDLFlushMeta) ProtoMessage() {}
func (*DDLFlushMeta) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{22}
}
func (m *DDLFlushMeta) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DDLFlushMeta.Unmarshal(m, b)
}
func (m *DDLFlushMeta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_DDLFlushMeta.Marshal(b, m, deterministic)
}
func (m *DDLFlushMeta) XXX_Merge(src proto.Message) {
xxx_messageInfo_DDLFlushMeta.Merge(m, src)
}
func (m *DDLFlushMeta) XXX_Size() int {
return xxx_messageInfo_DDLFlushMeta.Size(m)
}
func (m *DDLFlushMeta) XXX_DiscardUnknown() {
xxx_messageInfo_DDLFlushMeta.DiscardUnknown(m)
}
var xxx_messageInfo_DDLFlushMeta proto.InternalMessageInfo
func (m *DDLFlushMeta) GetCollectionID() int64 {
if m != nil {
return m.CollectionID
}
return 0
}
func (m *DDLFlushMeta) GetBinlogPaths() []string {
if m != nil {
return m.BinlogPaths
}
return nil
}
type CollectionInfo struct {
ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
Schema *schemapb.CollectionSchema `protobuf:"bytes,2,opt,name=schema,proto3" json:"schema,omitempty"`
@ -1316,7 +1269,7 @@ func (m *CollectionInfo) Reset() { *m = CollectionInfo{} }
func (m *CollectionInfo) String() string { return proto.CompactTextString(m) }
func (*CollectionInfo) ProtoMessage() {}
func (*CollectionInfo) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{23}
return fileDescriptor_82cd95f524594f49, []int{22}
}
func (m *CollectionInfo) XXX_Unmarshal(b []byte) error {
@ -1366,27 +1319,30 @@ func (m *CollectionInfo) GetStartPositions() []*commonpb.KeyDataPair {
}
type SegmentInfo struct {
ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,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"`
InsertChannel string `protobuf:"bytes,4,opt,name=insert_channel,json=insertChannel,proto3" json:"insert_channel,omitempty"`
NumOfRows int64 `protobuf:"varint,5,opt,name=num_of_rows,json=numOfRows,proto3" json:"num_of_rows,omitempty"`
State commonpb.SegmentState `protobuf:"varint,6,opt,name=state,proto3,enum=milvus.proto.common.SegmentState" json:"state,omitempty"`
MaxRowNum int64 `protobuf:"varint,7,opt,name=max_row_num,json=maxRowNum,proto3" json:"max_row_num,omitempty"`
LastExpireTime uint64 `protobuf:"varint,8,opt,name=last_expire_time,json=lastExpireTime,proto3" json:"last_expire_time,omitempty"`
StartPosition *internalpb.MsgPosition `protobuf:"bytes,9,opt,name=start_position,json=startPosition,proto3" json:"start_position,omitempty"`
DmlPosition *internalpb.MsgPosition `protobuf:"bytes,10,opt,name=dml_position,json=dmlPosition,proto3" json:"dml_position,omitempty"`
Binlogs []*FieldBinlog `protobuf:"bytes,11,rep,name=binlogs,proto3" json:"binlogs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,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"`
InsertChannel string `protobuf:"bytes,4,opt,name=insert_channel,json=insertChannel,proto3" json:"insert_channel,omitempty"`
NumOfRows int64 `protobuf:"varint,5,opt,name=num_of_rows,json=numOfRows,proto3" json:"num_of_rows,omitempty"`
State commonpb.SegmentState `protobuf:"varint,6,opt,name=state,proto3,enum=milvus.proto.common.SegmentState" json:"state,omitempty"`
MaxRowNum int64 `protobuf:"varint,7,opt,name=max_row_num,json=maxRowNum,proto3" json:"max_row_num,omitempty"`
LastExpireTime uint64 `protobuf:"varint,8,opt,name=last_expire_time,json=lastExpireTime,proto3" json:"last_expire_time,omitempty"`
StartPosition *internalpb.MsgPosition `protobuf:"bytes,9,opt,name=start_position,json=startPosition,proto3" json:"start_position,omitempty"`
DmlPosition *internalpb.MsgPosition `protobuf:"bytes,10,opt,name=dml_position,json=dmlPosition,proto3" json:"dml_position,omitempty"`
// binlogs consist of insert-binlogs and stats-binlogs
Binlogs []*FieldBinlog `protobuf:"bytes,11,rep,name=binlogs,proto3" json:"binlogs,omitempty"`
Statslogs []*FieldBinlog `protobuf:"bytes,12,rep,name=statslogs,proto3" json:"statslogs,omitempty"`
Deltalogs []string `protobuf:"bytes,13,rep,name=deltalogs,proto3" json:"deltalogs,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SegmentInfo) Reset() { *m = SegmentInfo{} }
func (m *SegmentInfo) String() string { return proto.CompactTextString(m) }
func (*SegmentInfo) ProtoMessage() {}
func (*SegmentInfo) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{24}
return fileDescriptor_82cd95f524594f49, []int{23}
}
func (m *SegmentInfo) XXX_Unmarshal(b []byte) error {
@ -1484,6 +1440,20 @@ func (m *SegmentInfo) GetBinlogs() []*FieldBinlog {
return nil
}
func (m *SegmentInfo) GetStatslogs() []*FieldBinlog {
if m != nil {
return m.Statslogs
}
return nil
}
func (m *SegmentInfo) GetDeltalogs() []string {
if m != nil {
return m.Deltalogs
}
return nil
}
type SegmentStartPosition struct {
StartPosition *internalpb.MsgPosition `protobuf:"bytes,1,opt,name=start_position,json=startPosition,proto3" json:"start_position,omitempty"`
SegmentID int64 `protobuf:"varint,2,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
@ -1496,7 +1466,7 @@ 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_82cd95f524594f49, []int{25}
return fileDescriptor_82cd95f524594f49, []int{24}
}
func (m *SegmentStartPosition) XXX_Unmarshal(b []byte) error {
@ -1548,7 +1518,7 @@ func (m *SaveBinlogPathsRequest) Reset() { *m = SaveBinlogPathsRequest{}
func (m *SaveBinlogPathsRequest) String() string { return proto.CompactTextString(m) }
func (*SaveBinlogPathsRequest) ProtoMessage() {}
func (*SaveBinlogPathsRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{26}
return fileDescriptor_82cd95f524594f49, []int{25}
}
func (m *SaveBinlogPathsRequest) XXX_Unmarshal(b []byte) error {
@ -1631,7 +1601,7 @@ func (m *CheckPoint) Reset() { *m = CheckPoint{} }
func (m *CheckPoint) String() string { return proto.CompactTextString(m) }
func (*CheckPoint) ProtoMessage() {}
func (*CheckPoint) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{27}
return fileDescriptor_82cd95f524594f49, []int{26}
}
func (m *CheckPoint) XXX_Unmarshal(b []byte) error {
@ -1686,7 +1656,7 @@ func (m *DataNodeTtMsg) Reset() { *m = DataNodeTtMsg{} }
func (m *DataNodeTtMsg) String() string { return proto.CompactTextString(m) }
func (*DataNodeTtMsg) ProtoMessage() {}
func (*DataNodeTtMsg) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{28}
return fileDescriptor_82cd95f524594f49, []int{27}
}
func (m *DataNodeTtMsg) XXX_Unmarshal(b []byte) error {
@ -1741,7 +1711,7 @@ func (m *ChannelStatus) Reset() { *m = ChannelStatus{} }
func (m *ChannelStatus) String() string { return proto.CompactTextString(m) }
func (*ChannelStatus) ProtoMessage() {}
func (*ChannelStatus) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{29}
return fileDescriptor_82cd95f524594f49, []int{28}
}
func (m *ChannelStatus) XXX_Unmarshal(b []byte) error {
@ -1796,7 +1766,7 @@ func (m *DataNodeInfo) Reset() { *m = DataNodeInfo{} }
func (m *DataNodeInfo) String() string { return proto.CompactTextString(m) }
func (*DataNodeInfo) ProtoMessage() {}
func (*DataNodeInfo) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{30}
return fileDescriptor_82cd95f524594f49, []int{29}
}
func (m *DataNodeInfo) XXX_Unmarshal(b []byte) error {
@ -1851,7 +1821,7 @@ func (m *SegmentBinlogs) Reset() { *m = SegmentBinlogs{} }
func (m *SegmentBinlogs) String() string { return proto.CompactTextString(m) }
func (*SegmentBinlogs) ProtoMessage() {}
func (*SegmentBinlogs) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{31}
return fileDescriptor_82cd95f524594f49, []int{30}
}
func (m *SegmentBinlogs) XXX_Unmarshal(b []byte) error {
@ -1905,7 +1875,7 @@ func (m *FieldBinlog) Reset() { *m = FieldBinlog{} }
func (m *FieldBinlog) String() string { return proto.CompactTextString(m) }
func (*FieldBinlog) ProtoMessage() {}
func (*FieldBinlog) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{32}
return fileDescriptor_82cd95f524594f49, []int{31}
}
func (m *FieldBinlog) XXX_Unmarshal(b []byte) error {
@ -1953,7 +1923,7 @@ func (m *GetRecoveryInfoResponse) Reset() { *m = GetRecoveryInfoResponse
func (m *GetRecoveryInfoResponse) String() string { return proto.CompactTextString(m) }
func (*GetRecoveryInfoResponse) ProtoMessage() {}
func (*GetRecoveryInfoResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{33}
return fileDescriptor_82cd95f524594f49, []int{32}
}
func (m *GetRecoveryInfoResponse) XXX_Unmarshal(b []byte) error {
@ -2008,7 +1978,7 @@ func (m *GetRecoveryInfoRequest) Reset() { *m = GetRecoveryInfoRequest{}
func (m *GetRecoveryInfoRequest) String() string { return proto.CompactTextString(m) }
func (*GetRecoveryInfoRequest) ProtoMessage() {}
func (*GetRecoveryInfoRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{34}
return fileDescriptor_82cd95f524594f49, []int{33}
}
func (m *GetRecoveryInfoRequest) XXX_Unmarshal(b []byte) error {
@ -2063,7 +2033,7 @@ func (m *GetFlushedSegmentsRequest) Reset() { *m = GetFlushedSegmentsReq
func (m *GetFlushedSegmentsRequest) String() string { return proto.CompactTextString(m) }
func (*GetFlushedSegmentsRequest) ProtoMessage() {}
func (*GetFlushedSegmentsRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{35}
return fileDescriptor_82cd95f524594f49, []int{34}
}
func (m *GetFlushedSegmentsRequest) XXX_Unmarshal(b []byte) error {
@ -2117,7 +2087,7 @@ func (m *GetFlushedSegmentsResponse) Reset() { *m = GetFlushedSegmentsRe
func (m *GetFlushedSegmentsResponse) String() string { return proto.CompactTextString(m) }
func (*GetFlushedSegmentsResponse) ProtoMessage() {}
func (*GetFlushedSegmentsResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{36}
return fileDescriptor_82cd95f524594f49, []int{35}
}
func (m *GetFlushedSegmentsResponse) XXX_Unmarshal(b []byte) error {
@ -2164,7 +2134,7 @@ func (m *SegmentFlushCompletedMsg) Reset() { *m = SegmentFlushCompletedM
func (m *SegmentFlushCompletedMsg) String() string { return proto.CompactTextString(m) }
func (*SegmentFlushCompletedMsg) ProtoMessage() {}
func (*SegmentFlushCompletedMsg) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{37}
return fileDescriptor_82cd95f524594f49, []int{36}
}
func (m *SegmentFlushCompletedMsg) XXX_Unmarshal(b []byte) error {
@ -2212,7 +2182,7 @@ func (m *ChannelWatchInfo) Reset() { *m = ChannelWatchInfo{} }
func (m *ChannelWatchInfo) String() string { return proto.CompactTextString(m) }
func (*ChannelWatchInfo) ProtoMessage() {}
func (*ChannelWatchInfo) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{38}
return fileDescriptor_82cd95f524594f49, []int{37}
}
func (m *ChannelWatchInfo) XXX_Unmarshal(b []byte) error {
@ -2267,7 +2237,7 @@ func (m *SegmentFieldBinlogMeta) Reset() { *m = SegmentFieldBinlogMeta{}
func (m *SegmentFieldBinlogMeta) String() string { return proto.CompactTextString(m) }
func (*SegmentFieldBinlogMeta) ProtoMessage() {}
func (*SegmentFieldBinlogMeta) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{39}
return fileDescriptor_82cd95f524594f49, []int{38}
}
func (m *SegmentFieldBinlogMeta) XXX_Unmarshal(b []byte) error {
@ -2326,7 +2296,6 @@ func init() {
proto.RegisterType((*WatchDmChannelsRequest)(nil), "milvus.proto.data.WatchDmChannelsRequest")
proto.RegisterType((*FlushSegmentsRequest)(nil), "milvus.proto.data.FlushSegmentsRequest")
proto.RegisterType((*SegmentMsg)(nil), "milvus.proto.data.SegmentMsg")
proto.RegisterType((*DDLFlushMeta)(nil), "milvus.proto.data.DDLFlushMeta")
proto.RegisterType((*CollectionInfo)(nil), "milvus.proto.data.CollectionInfo")
proto.RegisterType((*SegmentInfo)(nil), "milvus.proto.data.SegmentInfo")
proto.RegisterType((*SegmentStartPosition)(nil), "milvus.proto.data.SegmentStartPosition")
@ -2349,133 +2318,134 @@ func init() {
func init() { proto.RegisterFile("data_coord.proto", fileDescriptor_82cd95f524594f49) }
var fileDescriptor_82cd95f524594f49 = []byte{
// 2014 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xcb, 0x73, 0x1b, 0x49,
0x19, 0xcf, 0x68, 0xfc, 0x90, 0x3e, 0xc9, 0xb2, 0xdd, 0x04, 0xaf, 0x98, 0x64, 0x1d, 0x67, 0x60,
0x13, 0x6f, 0x60, 0xed, 0x8d, 0x02, 0xc5, 0x16, 0x61, 0xa1, 0x36, 0xd6, 0xc6, 0xa8, 0xb0, 0x83,
0x19, 0x67, 0x77, 0xab, 0xd8, 0x83, 0x6a, 0x24, 0xb5, 0xe5, 0x21, 0x9a, 0x19, 0xed, 0x74, 0xcb,
0x71, 0x4e, 0xbb, 0x15, 0xaa, 0x96, 0x82, 0xa2, 0x78, 0x5e, 0xa9, 0x82, 0xe2, 0x44, 0x15, 0x17,
0x2e, 0xfc, 0x0f, 0x14, 0xff, 0x11, 0x37, 0xaa, 0x7b, 0xba, 0x7b, 0x9e, 0x92, 0xc6, 0x32, 0x89,
0x6f, 0xee, 0x9e, 0xef, 0xd5, 0x5f, 0x7f, 0x8f, 0xdf, 0xd7, 0x32, 0xac, 0xf5, 0x6d, 0x6a, 0x77,
0x7a, 0xbe, 0x1f, 0xf4, 0x77, 0x46, 0x81, 0x4f, 0x7d, 0xb4, 0xee, 0x3a, 0xc3, 0xb3, 0x31, 0x09,
0x57, 0x3b, 0xec, 0xb3, 0x51, 0xeb, 0xf9, 0xae, 0xeb, 0x7b, 0xe1, 0x96, 0x51, 0x77, 0x3c, 0x8a,
0x03, 0xcf, 0x1e, 0x8a, 0x75, 0x2d, 0xce, 0x60, 0xd4, 0x48, 0xef, 0x14, 0xbb, 0x76, 0xb8, 0x32,
0xcf, 0xa1, 0xf6, 0x78, 0x38, 0x26, 0xa7, 0x16, 0xfe, 0x6c, 0x8c, 0x09, 0x45, 0xef, 0xc2, 0x42,
0xd7, 0x26, 0xb8, 0xa1, 0x6d, 0x69, 0xdb, 0xd5, 0xe6, 0xcd, 0x9d, 0x84, 0x2e, 0xa1, 0xe5, 0x90,
0x0c, 0x1e, 0xd9, 0x04, 0x5b, 0x9c, 0x12, 0x21, 0x58, 0xe8, 0x77, 0xdb, 0xad, 0x46, 0x69, 0x4b,
0xdb, 0xd6, 0x2d, 0xfe, 0x37, 0x32, 0xa1, 0xd6, 0xf3, 0x87, 0x43, 0xdc, 0xa3, 0x8e, 0xef, 0xb5,
0x5b, 0x8d, 0x05, 0xfe, 0x2d, 0xb1, 0x67, 0xfe, 0x59, 0x83, 0x15, 0xa1, 0x9a, 0x8c, 0x7c, 0x8f,
0x60, 0xf4, 0x00, 0x96, 0x08, 0xb5, 0xe9, 0x98, 0x08, 0xed, 0x37, 0x72, 0xb5, 0x1f, 0x73, 0x12,
0x4b, 0x90, 0x16, 0x52, 0xaf, 0x67, 0xd5, 0xa3, 0x4d, 0x00, 0x82, 0x07, 0x2e, 0xf6, 0x68, 0xbb,
0x45, 0x1a, 0x0b, 0x5b, 0xfa, 0xb6, 0x6e, 0xc5, 0x76, 0xcc, 0x3f, 0x68, 0xb0, 0x76, 0x2c, 0x97,
0xd2, 0x3b, 0xd7, 0x61, 0xb1, 0xe7, 0x8f, 0x3d, 0xca, 0x0d, 0x5c, 0xb1, 0xc2, 0x05, 0xba, 0x0d,
0xb5, 0xde, 0xa9, 0xed, 0x79, 0x78, 0xd8, 0xf1, 0x6c, 0x17, 0x73, 0x53, 0x2a, 0x56, 0x55, 0xec,
0x3d, 0xb1, 0x5d, 0x5c, 0xc8, 0xa2, 0x2d, 0xa8, 0x8e, 0xec, 0x80, 0x3a, 0x09, 0x9f, 0xc5, 0xb7,
0xcc, 0xbf, 0x6a, 0xb0, 0xf1, 0x01, 0x21, 0xce, 0xc0, 0xcb, 0x58, 0xb6, 0x01, 0x4b, 0x9e, 0xdf,
0xc7, 0xed, 0x16, 0x37, 0x4d, 0xb7, 0xc4, 0x0a, 0xdd, 0x80, 0xca, 0x08, 0xe3, 0xa0, 0x13, 0xf8,
0x43, 0x69, 0x58, 0x99, 0x6d, 0x58, 0xfe, 0x10, 0xa3, 0x9f, 0xc2, 0x3a, 0x49, 0x09, 0x22, 0x0d,
0x7d, 0x4b, 0xdf, 0xae, 0x36, 0xbf, 0xbe, 0x93, 0x89, 0xb2, 0x9d, 0xb4, 0x52, 0x2b, 0xcb, 0x6d,
0x7e, 0x51, 0x82, 0xaf, 0x28, 0xba, 0xd0, 0x56, 0xf6, 0x37, 0xf3, 0x1c, 0xc1, 0x03, 0x65, 0x5e,
0xb8, 0x28, 0xe2, 0x39, 0xe5, 0x72, 0x3d, 0xee, 0xf2, 0x02, 0x01, 0x96, 0xf6, 0xe7, 0x62, 0xc6,
0x9f, 0xe8, 0x16, 0x54, 0xf1, 0xf9, 0xc8, 0x09, 0x70, 0x87, 0x3a, 0x2e, 0x6e, 0x2c, 0x6d, 0x69,
0xdb, 0x0b, 0x16, 0x84, 0x5b, 0x4f, 0x1d, 0x37, 0x1e, 0x91, 0xcb, 0x85, 0x23, 0xd2, 0xfc, 0x9b,
0x06, 0x6f, 0x64, 0x6e, 0x49, 0x84, 0xb8, 0x05, 0x6b, 0xfc, 0xe4, 0x91, 0x67, 0x58, 0xb0, 0x33,
0x87, 0xdf, 0x99, 0xe6, 0xf0, 0x88, 0xdc, 0xca, 0xf0, 0xc7, 0x8c, 0x2c, 0x15, 0x37, 0xf2, 0x19,
0xbc, 0xb1, 0x8f, 0xa9, 0x50, 0xc0, 0xbe, 0x61, 0x32, 0x7f, 0x09, 0x48, 0xe6, 0x52, 0x29, 0x93,
0x4b, 0xff, 0x2c, 0xa9, 0x5c, 0xe2, 0xaa, 0xda, 0xde, 0x89, 0x8f, 0x6e, 0x42, 0x45, 0x91, 0x88,
0xa8, 0x88, 0x36, 0xd0, 0x77, 0x61, 0x91, 0x59, 0x1a, 0x86, 0x44, 0xbd, 0x79, 0x3b, 0xff, 0x4c,
0x31, 0x99, 0x56, 0x48, 0x8f, 0xda, 0x50, 0x27, 0xd4, 0x0e, 0x68, 0x67, 0xe4, 0x13, 0x7e, 0xcf,
0x3c, 0x70, 0xaa, 0x4d, 0x33, 0x29, 0x41, 0x95, 0xc8, 0x43, 0x32, 0x38, 0x12, 0x94, 0xd6, 0x0a,
0xe7, 0x94, 0x4b, 0xf4, 0x21, 0xd4, 0xb0, 0xd7, 0x8f, 0x04, 0x2d, 0x14, 0x16, 0x54, 0xc5, 0x5e,
0x5f, 0x89, 0x89, 0xee, 0x67, 0xb1, 0xf8, 0xfd, 0xfc, 0x46, 0x83, 0x46, 0xf6, 0x82, 0x2e, 0x53,
0x28, 0x1f, 0x86, 0x4c, 0x38, 0xbc, 0xa0, 0xa9, 0x19, 0xae, 0x2e, 0xc9, 0x12, 0x2c, 0xa6, 0x03,
0x5f, 0x8d, 0xac, 0xe1, 0x5f, 0x5e, 0x59, 0xb0, 0xfc, 0x42, 0x83, 0x8d, 0xb4, 0xae, 0xcb, 0x9c,
0xfb, 0xdb, 0xb0, 0xe8, 0x78, 0x27, 0xbe, 0x3c, 0xf6, 0xe6, 0x94, 0x3c, 0x63, 0xba, 0x42, 0x62,
0xd3, 0x85, 0x1b, 0xfb, 0x98, 0xb6, 0x3d, 0x82, 0x03, 0xfa, 0xc8, 0xf1, 0x86, 0xfe, 0xe0, 0xc8,
0xa6, 0xa7, 0x97, 0xc8, 0x91, 0x44, 0xb8, 0x97, 0x52, 0xe1, 0x6e, 0xfe, 0x5d, 0x83, 0x9b, 0xf9,
0xfa, 0xc4, 0xd1, 0x0d, 0x28, 0x9f, 0x38, 0x78, 0xd8, 0x67, 0x3e, 0xd3, 0xb8, 0xcf, 0xd4, 0x9a,
0xe5, 0xca, 0x88, 0x11, 0x8b, 0x13, 0xde, 0x9e, 0x10, 0xa0, 0xc7, 0x34, 0x70, 0xbc, 0xc1, 0x81,
0x43, 0xa8, 0x15, 0xd2, 0xc7, 0xfc, 0xa9, 0x17, 0x8f, 0xcc, 0x5f, 0x6b, 0xb0, 0xb9, 0x8f, 0xe9,
0x9e, 0x2a, 0xb5, 0xec, 0xbb, 0x43, 0xa8, 0xd3, 0x23, 0xaf, 0x16, 0x44, 0xe4, 0xf4, 0x4c, 0xf3,
0x77, 0x1a, 0xdc, 0x9a, 0x68, 0x8c, 0x70, 0x9d, 0x28, 0x25, 0xb2, 0xd0, 0xe6, 0x97, 0x92, 0x1f,
0xe3, 0x17, 0x1f, 0xdb, 0xc3, 0x31, 0x3e, 0xb2, 0x9d, 0x20, 0x2c, 0x25, 0x73, 0x16, 0xd6, 0x7f,
0x68, 0xf0, 0xe6, 0x3e, 0xa6, 0x47, 0xb2, 0xcd, 0x5c, 0xa1, 0x77, 0x0a, 0x20, 0x8a, 0xdf, 0x86,
0x97, 0x99, 0x6b, 0xed, 0x95, 0xb8, 0x6f, 0x93, 0xe7, 0x41, 0x2c, 0x21, 0xf7, 0x42, 0x2c, 0x20,
0x9c, 0x67, 0xfe, 0xab, 0x04, 0xb5, 0x8f, 0x05, 0x3e, 0xe0, 0x6d, 0x24, 0xed, 0x07, 0x2d, 0xdf,
0x0f, 0x31, 0x48, 0x91, 0x87, 0x32, 0xf6, 0x61, 0x85, 0x60, 0xfc, 0x6c, 0x9e, 0xa6, 0x51, 0x63,
0x8c, 0xaa, 0xd8, 0x1f, 0xc0, 0xfa, 0xd8, 0x3b, 0x61, 0xb0, 0x16, 0xf7, 0xc5, 0x29, 0x42, 0x74,
0x39, 0xbb, 0xf2, 0x64, 0x19, 0xd1, 0x8f, 0x60, 0x35, 0x2d, 0x6b, 0xb1, 0x90, 0xac, 0x34, 0x9b,
0xf9, 0x2b, 0x0d, 0x36, 0x3e, 0xb1, 0x69, 0xef, 0xb4, 0xe5, 0x0a, 0x8f, 0x5e, 0x22, 0x1e, 0xdf,
0x87, 0xca, 0x99, 0xf0, 0x9e, 0x2c, 0x3a, 0xb7, 0x72, 0x0c, 0x8a, 0xdf, 0x93, 0x15, 0x71, 0x30,
0x18, 0x7b, 0x9d, 0x23, 0x7f, 0x69, 0xdd, 0xeb, 0xcf, 0x8c, 0x59, 0xe8, 0xff, 0x1c, 0x40, 0x18,
0x77, 0x48, 0x06, 0x73, 0xd8, 0xf5, 0x1e, 0x2c, 0x0b, 0x69, 0x22, 0xf8, 0x67, 0x5d, 0x98, 0x24,
0x37, 0x3f, 0x82, 0x5a, 0xab, 0x75, 0xc0, 0xdd, 0x73, 0x88, 0xa9, 0x5d, 0x28, 0xbe, 0x6f, 0x43,
0xad, 0xcb, 0x7b, 0x46, 0x27, 0xea, 0x03, 0x15, 0xab, 0xda, 0x8d, 0xfa, 0x88, 0xf9, 0x1f, 0x0d,
0xea, 0x51, 0x95, 0xe4, 0x99, 0x53, 0x87, 0x92, 0x92, 0x57, 0x6a, 0xb7, 0xd0, 0xfb, 0xb0, 0x14,
0x8e, 0x86, 0xc2, 0xe4, 0xb7, 0x92, 0x26, 0x8b, 0xb1, 0x31, 0x56, 0x6a, 0xf9, 0x86, 0x25, 0x98,
0x98, 0x4b, 0x55, 0x65, 0x09, 0xa7, 0x08, 0xdd, 0x8a, 0xed, 0xa0, 0x36, 0xac, 0x26, 0x81, 0x99,
0xcc, 0x8b, 0xad, 0x49, 0x15, 0xa5, 0x65, 0x53, 0x9b, 0x17, 0x94, 0x7a, 0x02, 0x97, 0x11, 0xf3,
0xbf, 0x3a, 0x54, 0x63, 0xce, 0xcb, 0x9c, 0x24, 0xed, 0xb3, 0xd2, 0xec, 0xda, 0xa8, 0x67, 0xa7,
0x83, 0xb7, 0xa0, 0xee, 0xf0, 0x7e, 0xdc, 0x11, 0x91, 0xcb, 0x0b, 0x68, 0xc5, 0x5a, 0x09, 0x77,
0x45, 0x1a, 0xa1, 0x4d, 0xa8, 0x7a, 0x63, 0xb7, 0xe3, 0x9f, 0x74, 0x02, 0xff, 0x39, 0x11, 0x63,
0x46, 0xc5, 0x1b, 0xbb, 0x3f, 0x39, 0xb1, 0xfc, 0xe7, 0x24, 0x42, 0xb2, 0x4b, 0x17, 0x44, 0xb2,
0x9b, 0x50, 0x75, 0xed, 0x73, 0x26, 0xb5, 0xe3, 0x8d, 0x5d, 0x3e, 0x81, 0xe8, 0x56, 0xc5, 0xb5,
0xcf, 0x2d, 0xff, 0xf9, 0x93, 0xb1, 0x8b, 0xb6, 0x61, 0x6d, 0x68, 0x13, 0xda, 0x89, 0x8f, 0x30,
0x65, 0x3e, 0xc2, 0xd4, 0xd9, 0xfe, 0x87, 0xd1, 0x18, 0x93, 0xc5, 0xc4, 0x95, 0x4b, 0x60, 0xe2,
0xbe, 0x3b, 0x8c, 0x04, 0x41, 0x71, 0x4c, 0xdc, 0x77, 0x87, 0x4a, 0xcc, 0x7b, 0xb0, 0x1c, 0x46,
0x27, 0x69, 0x54, 0x27, 0x16, 0xb4, 0xc7, 0x0c, 0xe0, 0x84, 0x60, 0xc8, 0x92, 0xe4, 0xe6, 0xe7,
0x70, 0x3d, 0x72, 0x56, 0xcc, 0xb0, 0xec, 0x19, 0xb5, 0x79, 0xcf, 0x38, 0x1d, 0xaa, 0xfd, 0x52,
0x87, 0x8d, 0x63, 0xfb, 0x0c, 0xbf, 0x7a, 0x54, 0x58, 0xa8, 0x92, 0x1d, 0xc0, 0x3a, 0x07, 0x82,
0xcd, 0x98, 0x3d, 0x53, 0x1a, 0x4e, 0xdc, 0xa7, 0x59, 0x46, 0xf4, 0x43, 0xd6, 0x29, 0x71, 0xef,
0xd9, 0x91, 0xef, 0x44, 0xcd, 0xe6, 0xcd, 0x1c, 0x39, 0x7b, 0x8a, 0xca, 0x8a, 0x73, 0xa0, 0xa3,
0x6c, 0x96, 0x2f, 0x71, 0x21, 0x77, 0xa7, 0x8e, 0x1b, 0x91, 0xf7, 0xd3, 0xc9, 0x8e, 0x1a, 0xb0,
0x2c, 0x9a, 0x19, 0x4f, 0x81, 0xb2, 0x25, 0x97, 0x0c, 0x89, 0x42, 0x64, 0xc7, 0x8c, 0x81, 0xf2,
0x07, 0x50, 0x56, 0x91, 0x51, 0x2a, 0x1c, 0x19, 0x8a, 0x27, 0x9d, 0xe6, 0x7a, 0x2a, 0xcd, 0xcd,
0x97, 0x1a, 0xac, 0xb0, 0x82, 0xf5, 0xc4, 0xef, 0xe3, 0xa7, 0x73, 0x76, 0x8d, 0x02, 0xcf, 0x21,
0x37, 0xa1, 0xc2, 0x12, 0x9d, 0x50, 0xdb, 0x1d, 0x71, 0x23, 0x16, 0xac, 0x68, 0x83, 0xcd, 0x4e,
0x2b, 0xa2, 0x2e, 0x1d, 0xab, 0xe7, 0x31, 0x2e, 0x4a, 0xe3, 0xa2, 0xf8, 0xdf, 0xe8, 0x7b, 0xc9,
0xd9, 0xfa, 0x1b, 0xb9, 0xd7, 0xcb, 0x85, 0x70, 0xc4, 0x90, 0x28, 0x4a, 0x45, 0x40, 0xf9, 0x17,
0x1a, 0xd4, 0xa4, 0x2b, 0x78, 0x7d, 0x6e, 0xc0, 0xb2, 0xdd, 0xef, 0x07, 0x98, 0x10, 0x61, 0x87,
0x5c, 0xb2, 0x2f, 0x67, 0x38, 0x20, 0xf2, 0x52, 0x74, 0x4b, 0x2e, 0xd1, 0xf7, 0xa1, 0xac, 0x20,
0x86, 0x9e, 0xd7, 0x27, 0xe2, 0x76, 0x0a, 0x10, 0xa9, 0x38, 0xcc, 0x3f, 0x6a, 0x50, 0x17, 0xd1,
0x15, 0x86, 0x37, 0x99, 0x11, 0x1e, 0x8f, 0xa0, 0x76, 0x12, 0xa5, 0xc6, 0xb4, 0x61, 0x31, 0x9e,
0x41, 0x09, 0x9e, 0x99, 0x21, 0xf2, 0x01, 0x54, 0x63, 0xcc, 0x3c, 0xb0, 0xc3, 0x11, 0x4e, 0x98,
0x23, 0x97, 0xec, 0x4b, 0x37, 0x66, 0x47, 0x25, 0xaa, 0x7e, 0xff, 0xd6, 0xf8, 0xbb, 0x8d, 0x85,
0x7b, 0xfe, 0x19, 0x0e, 0x5e, 0x5c, 0x7e, 0x3a, 0x7e, 0x18, 0x73, 0x73, 0x41, 0x24, 0xa7, 0x18,
0xd0, 0xc3, 0xc8, 0x4e, 0x3d, 0x6f, 0x38, 0x88, 0x27, 0xb9, 0x70, 0x52, 0x74, 0x94, 0xdf, 0x87,
0x73, 0x7e, 0xf2, 0x28, 0xf3, 0xd6, 0xd1, 0xff, 0x4b, 0xc7, 0x37, 0xff, 0xa4, 0xc1, 0xd7, 0xf6,
0x31, 0x7d, 0x9c, 0xc4, 0xce, 0x57, 0x6d, 0x95, 0x0b, 0x46, 0x9e, 0x51, 0x97, 0xb9, 0x75, 0x03,
0xca, 0x44, 0x0e, 0x14, 0xe1, 0x0b, 0x8c, 0x5a, 0x9b, 0x5f, 0x6a, 0xd0, 0x10, 0x5a, 0xb8, 0xce,
0x3d, 0xdf, 0x1d, 0x0d, 0x31, 0xc5, 0xfd, 0xd7, 0x8d, 0x84, 0xff, 0xa2, 0xc1, 0x5a, 0xbc, 0x0e,
0xf1, 0x52, 0xf2, 0x1d, 0x58, 0xe4, 0x83, 0x84, 0xb0, 0x60, 0x66, 0xb0, 0x86, 0xd4, 0x2c, 0xa3,
0x78, 0x5b, 0x79, 0x4a, 0x64, 0x9d, 0x11, 0xcb, 0xa8, 0x18, 0xea, 0x17, 0x2e, 0x86, 0xe6, 0x31,
0x6c, 0x48, 0x4f, 0x45, 0x79, 0xcd, 0x51, 0xfb, 0xe4, 0xdc, 0xbe, 0x05, 0xd5, 0x18, 0x56, 0x17,
0x25, 0x1e, 0x22, 0xa8, 0x7e, 0xef, 0x3e, 0xac, 0x67, 0x14, 0xa2, 0x3a, 0xc0, 0x47, 0x5e, 0x4f,
0xdc, 0xc4, 0xda, 0x35, 0x54, 0x83, 0xb2, 0xbc, 0x97, 0x35, 0xad, 0xf9, 0x72, 0x05, 0x2a, 0xac,
0xe0, 0xee, 0xf9, 0x7e, 0xd0, 0x47, 0x23, 0x40, 0xfc, 0x49, 0xc4, 0x1d, 0xf9, 0x9e, 0x7a, 0x3b,
0x44, 0xef, 0x4e, 0xe8, 0x76, 0x59, 0x52, 0x11, 0xef, 0xc6, 0x9d, 0x09, 0x1c, 0x29, 0x72, 0xf3,
0x1a, 0x72, 0xb9, 0x46, 0x06, 0x35, 0x9f, 0x3a, 0xbd, 0x67, 0x12, 0x18, 0x4f, 0xd1, 0x98, 0x22,
0x95, 0x1a, 0x53, 0x4f, 0x92, 0x62, 0x11, 0xbe, 0x5b, 0xc9, 0x80, 0x37, 0xaf, 0xa1, 0xcf, 0xe0,
0xfa, 0x3e, 0xa6, 0xd1, 0x53, 0x85, 0x54, 0xd8, 0x9c, 0xac, 0x30, 0x43, 0x7c, 0x41, 0x95, 0x07,
0xb0, 0xc8, 0x93, 0x01, 0xe5, 0x05, 0x5c, 0xfc, 0x07, 0x34, 0x63, 0x6b, 0x32, 0x81, 0x92, 0xf6,
0x73, 0x58, 0x4d, 0xfd, 0x40, 0x80, 0xde, 0xce, 0x61, 0xcb, 0xff, 0xa9, 0xc7, 0xb8, 0x57, 0x84,
0x54, 0xe9, 0x1a, 0x40, 0x3d, 0xf9, 0xa0, 0x82, 0xb6, 0x73, 0xf8, 0x73, 0x1f, 0x77, 0x8d, 0xb7,
0x0b, 0x50, 0x2a, 0x45, 0x2e, 0xac, 0xa5, 0x1f, 0xac, 0xd1, 0xbd, 0xa9, 0x02, 0x92, 0xe1, 0xf6,
0xcd, 0x42, 0xb4, 0x4a, 0xdd, 0x0b, 0x1e, 0x04, 0x99, 0x07, 0x53, 0xb4, 0x93, 0x2f, 0x66, 0xd2,
0x4b, 0xae, 0xb1, 0x5b, 0x98, 0x5e, 0xa9, 0x7e, 0x19, 0x36, 0xe1, 0xbc, 0x47, 0x47, 0x74, 0x3f,
0x5f, 0xdc, 0x94, 0xd7, 0x52, 0xa3, 0x79, 0x11, 0x16, 0x65, 0xc4, 0xe7, 0xbc, 0x7b, 0xe6, 0x3c,
0xdc, 0xa5, 0xf3, 0x4e, 0xca, 0x9b, 0xfc, 0x22, 0x69, 0xdc, 0xbf, 0x00, 0x87, 0x32, 0xc0, 0x4f,
0xff, 0x24, 0x20, 0xd3, 0x70, 0x77, 0x66, 0xd4, 0xcc, 0x97, 0x83, 0x9f, 0xc2, 0x6a, 0x6a, 0xee,
0xca, 0xcd, 0x9a, 0xfc, 0xd9, 0xcc, 0x98, 0xd6, 0x17, 0xc3, 0x94, 0x4c, 0x81, 0x11, 0x34, 0x21,
0xfa, 0x73, 0x00, 0x8b, 0x71, 0xaf, 0x08, 0xa9, 0x3a, 0x08, 0xe1, 0xe5, 0x32, 0xd5, 0xd0, 0xd1,
0xb7, 0xf2, 0x65, 0xe4, 0x83, 0x11, 0xe3, 0x9d, 0x82, 0xd4, 0x4a, 0x69, 0x07, 0x60, 0x1f, 0xd3,
0x43, 0x4c, 0x03, 0x16, 0x23, 0x77, 0x72, 0x5d, 0x1e, 0x11, 0x48, 0x35, 0x77, 0x67, 0xd2, 0x49,
0x05, 0xcd, 0x2f, 0x17, 0xa0, 0x2c, 0x51, 0xff, 0x15, 0xf4, 0xa0, 0x2b, 0x68, 0x0a, 0x9f, 0xc2,
0x6a, 0xea, 0x49, 0x35, 0x37, 0x66, 0xf2, 0x9f, 0x5d, 0x67, 0x05, 0xe4, 0x27, 0xe2, 0xbf, 0x23,
0x54, 0x7c, 0xdc, 0x9d, 0xd4, 0x58, 0xd2, 0xa1, 0x31, 0x43, 0xf0, 0xab, 0x0e, 0x84, 0x47, 0x0f,
0x7e, 0x76, 0x7f, 0xe0, 0xd0, 0xd3, 0x71, 0x97, 0xa9, 0xde, 0x0d, 0x29, 0xdf, 0x71, 0x7c, 0xf1,
0xd7, 0xae, 0xbc, 0x81, 0x5d, 0x2e, 0x69, 0x97, 0x9d, 0x63, 0xd4, 0xed, 0x2e, 0xf1, 0xd5, 0x83,
0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x1b, 0x5d, 0x9c, 0xf6, 0xef, 0x22, 0x00, 0x00,
// 2019 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xdb, 0x6f, 0x5b, 0x49,
0x19, 0xef, 0xf1, 0x71, 0x12, 0xfb, 0xf3, 0x25, 0xc9, 0x50, 0xb2, 0xc6, 0xed, 0xa6, 0xee, 0x81,
0x6d, 0xb3, 0x85, 0x4d, 0xb6, 0x2e, 0x88, 0x15, 0xdd, 0x05, 0x6d, 0x92, 0x6d, 0xb0, 0x68, 0x4a,
0x38, 0x29, 0xbb, 0x12, 0xfb, 0x60, 0x9d, 0xd8, 0x13, 0xe7, 0xd0, 0x73, 0xf1, 0x9e, 0x19, 0xa7,
0xe9, 0xd3, 0xae, 0x8a, 0xb4, 0x08, 0x84, 0xb8, 0xbe, 0x22, 0x81, 0x78, 0x42, 0xe2, 0x85, 0x17,
0xfe, 0x07, 0xc4, 0x3b, 0xff, 0x0f, 0x9a, 0x39, 0x33, 0x73, 0xae, 0xb6, 0x4f, 0x12, 0xda, 0xbc,
0x65, 0xe6, 0x7c, 0xb7, 0xf9, 0xe6, 0xbb, 0xfc, 0xe6, 0x73, 0x60, 0x65, 0x68, 0x51, 0xab, 0x3f,
0xf0, 0xfd, 0x60, 0xb8, 0x39, 0x0e, 0x7c, 0xea, 0xa3, 0x55, 0xd7, 0x76, 0x4e, 0x27, 0x24, 0x5c,
0x6d, 0xb2, 0xcf, 0xed, 0xfa, 0xc0, 0x77, 0x5d, 0xdf, 0x0b, 0xb7, 0xda, 0x4d, 0xdb, 0xa3, 0x38,
0xf0, 0x2c, 0x47, 0xac, 0xeb, 0x71, 0x86, 0x76, 0x9d, 0x0c, 0x4e, 0xb0, 0x6b, 0x85, 0x2b, 0xe3,
0x0c, 0xea, 0x8f, 0x9c, 0x09, 0x39, 0x31, 0xf1, 0x67, 0x13, 0x4c, 0x28, 0x7a, 0x17, 0xca, 0x47,
0x16, 0xc1, 0x2d, 0xad, 0xa3, 0x6d, 0xd4, 0xba, 0x37, 0x37, 0x13, 0xba, 0x84, 0x96, 0x7d, 0x32,
0xda, 0xb6, 0x08, 0x36, 0x39, 0x25, 0x42, 0x50, 0x1e, 0x1e, 0xf5, 0x76, 0x5b, 0xa5, 0x8e, 0xb6,
0xa1, 0x9b, 0xfc, 0x6f, 0x64, 0x40, 0x7d, 0xe0, 0x3b, 0x0e, 0x1e, 0x50, 0xdb, 0xf7, 0x7a, 0xbb,
0xad, 0x32, 0xff, 0x96, 0xd8, 0x33, 0xfe, 0xac, 0x41, 0x43, 0xa8, 0x26, 0x63, 0xdf, 0x23, 0x18,
0x3d, 0x80, 0x45, 0x42, 0x2d, 0x3a, 0x21, 0x42, 0xfb, 0x8d, 0x5c, 0xed, 0x87, 0x9c, 0xc4, 0x14,
0xa4, 0x85, 0xd4, 0xeb, 0x59, 0xf5, 0x68, 0x1d, 0x80, 0xe0, 0x91, 0x8b, 0x3d, 0xda, 0xdb, 0x25,
0xad, 0x72, 0x47, 0xdf, 0xd0, 0xcd, 0xd8, 0x8e, 0xf1, 0x07, 0x0d, 0x56, 0x0e, 0xe5, 0x52, 0x7a,
0xe7, 0x3a, 0x2c, 0x0c, 0xfc, 0x89, 0x47, 0xb9, 0x81, 0x0d, 0x33, 0x5c, 0xa0, 0xdb, 0x50, 0x1f,
0x9c, 0x58, 0x9e, 0x87, 0x9d, 0xbe, 0x67, 0xb9, 0x98, 0x9b, 0x52, 0x35, 0x6b, 0x62, 0xef, 0x89,
0xe5, 0xe2, 0x42, 0x16, 0x75, 0xa0, 0x36, 0xb6, 0x02, 0x6a, 0x27, 0x7c, 0x16, 0xdf, 0x32, 0xfe,
0xaa, 0xc1, 0xda, 0x87, 0x84, 0xd8, 0x23, 0x2f, 0x63, 0xd9, 0x1a, 0x2c, 0x7a, 0xfe, 0x10, 0xf7,
0x76, 0xb9, 0x69, 0xba, 0x29, 0x56, 0xe8, 0x06, 0x54, 0xc7, 0x18, 0x07, 0xfd, 0xc0, 0x77, 0xa4,
0x61, 0x15, 0xb6, 0x61, 0xfa, 0x0e, 0x46, 0x3f, 0x81, 0x55, 0x92, 0x12, 0x44, 0x5a, 0x7a, 0x47,
0xdf, 0xa8, 0x75, 0xbf, 0xbe, 0x99, 0x89, 0xb2, 0xcd, 0xb4, 0x52, 0x33, 0xcb, 0x6d, 0x7c, 0x51,
0x82, 0xaf, 0x28, 0xba, 0xd0, 0x56, 0xf6, 0x37, 0xf3, 0x1c, 0xc1, 0x23, 0x65, 0x5e, 0xb8, 0x28,
0xe2, 0x39, 0xe5, 0x72, 0x3d, 0xee, 0xf2, 0x02, 0x01, 0x96, 0xf6, 0xe7, 0x42, 0xc6, 0x9f, 0xe8,
0x16, 0xd4, 0xf0, 0xd9, 0xd8, 0x0e, 0x70, 0x9f, 0xda, 0x2e, 0x6e, 0x2d, 0x76, 0xb4, 0x8d, 0xb2,
0x09, 0xe1, 0xd6, 0x53, 0xdb, 0x8d, 0x47, 0xe4, 0x52, 0xe1, 0x88, 0x34, 0xfe, 0xa6, 0xc1, 0x1b,
0x99, 0x5b, 0x12, 0x21, 0x6e, 0xc2, 0x0a, 0x3f, 0x79, 0xe4, 0x19, 0x16, 0xec, 0xcc, 0xe1, 0x77,
0x66, 0x39, 0x3c, 0x22, 0x37, 0x33, 0xfc, 0x31, 0x23, 0x4b, 0xc5, 0x8d, 0x7c, 0x06, 0x6f, 0xec,
0x61, 0x2a, 0x14, 0xb0, 0x6f, 0x98, 0x5c, 0xbc, 0x04, 0x24, 0x73, 0xa9, 0x94, 0xc9, 0xa5, 0x7f,
0x96, 0x54, 0x2e, 0x71, 0x55, 0x3d, 0xef, 0xd8, 0x47, 0x37, 0xa1, 0xaa, 0x48, 0x44, 0x54, 0x44,
0x1b, 0xe8, 0xbb, 0xb0, 0xc0, 0x2c, 0x0d, 0x43, 0xa2, 0xd9, 0xbd, 0x9d, 0x7f, 0xa6, 0x98, 0x4c,
0x33, 0xa4, 0x47, 0x3d, 0x68, 0x12, 0x6a, 0x05, 0xb4, 0x3f, 0xf6, 0x09, 0xbf, 0x67, 0x1e, 0x38,
0xb5, 0xae, 0x91, 0x94, 0xa0, 0x4a, 0xe4, 0x3e, 0x19, 0x1d, 0x08, 0x4a, 0xb3, 0xc1, 0x39, 0xe5,
0x12, 0x7d, 0x04, 0x75, 0xec, 0x0d, 0x23, 0x41, 0xe5, 0xc2, 0x82, 0x6a, 0xd8, 0x1b, 0x2a, 0x31,
0xd1, 0xfd, 0x2c, 0x14, 0xbf, 0x9f, 0xdf, 0x68, 0xd0, 0xca, 0x5e, 0xd0, 0x65, 0x0a, 0xe5, 0xc3,
0x90, 0x09, 0x87, 0x17, 0x34, 0x33, 0xc3, 0xd5, 0x25, 0x99, 0x82, 0xc5, 0xb0, 0xe1, 0xab, 0x91,
0x35, 0xfc, 0xcb, 0x2b, 0x0b, 0x96, 0x5f, 0x68, 0xb0, 0x96, 0xd6, 0x75, 0x99, 0x73, 0x7f, 0x1b,
0x16, 0x6c, 0xef, 0xd8, 0x97, 0xc7, 0x5e, 0x9f, 0x91, 0x67, 0x4c, 0x57, 0x48, 0x6c, 0xb8, 0x70,
0x63, 0x0f, 0xd3, 0x9e, 0x47, 0x70, 0x40, 0xb7, 0x6d, 0xcf, 0xf1, 0x47, 0x07, 0x16, 0x3d, 0xb9,
0x44, 0x8e, 0x24, 0xc2, 0xbd, 0x94, 0x0a, 0x77, 0xe3, 0xef, 0x1a, 0xdc, 0xcc, 0xd7, 0x27, 0x8e,
0xde, 0x86, 0xca, 0xb1, 0x8d, 0x9d, 0x21, 0xf3, 0x99, 0xc6, 0x7d, 0xa6, 0xd6, 0x2c, 0x57, 0xc6,
0x8c, 0x58, 0x9c, 0xf0, 0xf6, 0x94, 0x00, 0x3d, 0xa4, 0x81, 0xed, 0x8d, 0x1e, 0xdb, 0x84, 0x9a,
0x21, 0x7d, 0xcc, 0x9f, 0x7a, 0xf1, 0xc8, 0xfc, 0xb5, 0x06, 0xeb, 0x7b, 0x98, 0xee, 0xa8, 0x52,
0xcb, 0xbe, 0xdb, 0x84, 0xda, 0x03, 0xf2, 0x6a, 0x41, 0x44, 0x4e, 0xcf, 0x34, 0x7e, 0xa7, 0xc1,
0xad, 0xa9, 0xc6, 0x08, 0xd7, 0x89, 0x52, 0x22, 0x0b, 0x6d, 0x7e, 0x29, 0xf9, 0x11, 0x7e, 0xf1,
0xb1, 0xe5, 0x4c, 0xf0, 0x81, 0x65, 0x07, 0x61, 0x29, 0xb9, 0x60, 0x61, 0xfd, 0x87, 0x06, 0x6f,
0xee, 0x61, 0x7a, 0x20, 0xdb, 0xcc, 0x15, 0x7a, 0xa7, 0x00, 0xa2, 0xf8, 0x6d, 0x78, 0x99, 0xb9,
0xd6, 0x5e, 0x89, 0xfb, 0xd6, 0x79, 0x1e, 0xc4, 0x12, 0x72, 0x27, 0xc4, 0x02, 0xc2, 0x79, 0xc6,
0xbf, 0x4a, 0x50, 0xff, 0x58, 0xe0, 0x03, 0xde, 0x46, 0xd2, 0x7e, 0xd0, 0xf2, 0xfd, 0x10, 0x83,
0x14, 0x79, 0x28, 0x63, 0x0f, 0x1a, 0x04, 0xe3, 0x67, 0x17, 0x69, 0x1a, 0x75, 0xc6, 0xa8, 0x8a,
0xfd, 0x63, 0x58, 0x9d, 0x78, 0xc7, 0x0c, 0xd6, 0xe2, 0xa1, 0x38, 0x45, 0x88, 0x2e, 0xe7, 0x57,
0x9e, 0x2c, 0x23, 0xfa, 0x21, 0x2c, 0xa7, 0x65, 0x2d, 0x14, 0x92, 0x95, 0x66, 0x33, 0x7e, 0xa5,
0xc1, 0xda, 0x27, 0x16, 0x1d, 0x9c, 0xec, 0xba, 0xc2, 0xa3, 0x97, 0x88, 0xc7, 0x0f, 0xa0, 0x7a,
0x2a, 0xbc, 0x27, 0x8b, 0xce, 0xad, 0x1c, 0x83, 0xe2, 0xf7, 0x64, 0x46, 0x1c, 0x0c, 0xc6, 0x5e,
0xe7, 0xc8, 0x5f, 0x5a, 0xf7, 0xfa, 0x33, 0x63, 0x1e, 0xfa, 0x3f, 0x03, 0x10, 0xc6, 0xed, 0x93,
0xd1, 0x05, 0xec, 0x7a, 0x0f, 0x96, 0x84, 0x34, 0x11, 0xfc, 0xf3, 0x2e, 0x4c, 0x92, 0x1b, 0xff,
0xd1, 0xa0, 0x19, 0x95, 0x33, 0x1e, 0xe2, 0x4d, 0x28, 0xa9, 0xc0, 0x2e, 0xf5, 0x76, 0xd1, 0x07,
0xb0, 0x18, 0xbe, 0xe1, 0x84, 0xec, 0xb7, 0x92, 0xb2, 0xc5, 0xfb, 0x2e, 0x56, 0x13, 0xf9, 0x86,
0x29, 0x98, 0xd8, 0xd9, 0x55, 0x09, 0x08, 0xe1, 0xbe, 0x6e, 0xc6, 0x76, 0x50, 0x0f, 0x96, 0x93,
0x08, 0x4a, 0x06, 0x70, 0x67, 0x5a, 0xea, 0xef, 0x5a, 0xd4, 0xe2, 0x99, 0xdf, 0x4c, 0x00, 0x28,
0x62, 0xfc, 0xb7, 0x0c, 0xb5, 0xd8, 0x29, 0x33, 0x27, 0x49, 0x5f, 0x55, 0x69, 0x7e, 0x11, 0xd3,
0xb3, 0x30, 0xfe, 0x2d, 0x68, 0xda, 0xbc, 0x71, 0xf6, 0x45, 0x88, 0xf1, 0x4a, 0x57, 0x35, 0x1b,
0xe1, 0xae, 0x88, 0x77, 0xb4, 0x0e, 0x35, 0x6f, 0xe2, 0xf6, 0xfd, 0xe3, 0x7e, 0xe0, 0x3f, 0x27,
0xe2, 0x3d, 0x50, 0xf5, 0x26, 0xee, 0x8f, 0x8f, 0x4d, 0xff, 0x39, 0x89, 0x20, 0xe7, 0xe2, 0x39,
0x21, 0xe7, 0x3a, 0xd4, 0x5c, 0xeb, 0x8c, 0x49, 0xed, 0x7b, 0x13, 0x97, 0x3f, 0x15, 0x74, 0xb3,
0xea, 0x5a, 0x67, 0xa6, 0xff, 0xfc, 0xc9, 0xc4, 0x45, 0x1b, 0xb0, 0xe2, 0x58, 0x84, 0xf6, 0xe3,
0x6f, 0x8d, 0x0a, 0x7f, 0x6b, 0x34, 0xd9, 0xfe, 0x47, 0xd1, 0x7b, 0x23, 0x0b, 0x5e, 0xab, 0x97,
0x00, 0xaf, 0x43, 0xd7, 0x89, 0x04, 0x41, 0x71, 0xf0, 0x3a, 0x74, 0x1d, 0x25, 0xe6, 0x3d, 0x58,
0x3a, 0xe2, 0x70, 0x84, 0xb4, 0x6a, 0x53, 0x2b, 0xcf, 0x23, 0x86, 0x44, 0x42, 0xd4, 0x62, 0x4a,
0x72, 0xf4, 0x3e, 0x54, 0x79, 0x1f, 0xe0, 0xbc, 0xf5, 0x42, 0xbc, 0x11, 0x03, 0x83, 0x4b, 0x43,
0xec, 0x50, 0x8b, 0x73, 0x37, 0x3a, 0xfa, 0x46, 0xd5, 0x8c, 0x36, 0x8c, 0xcf, 0xe1, 0x7a, 0x74,
0x11, 0xb1, 0x43, 0x67, 0xfd, 0xa7, 0x5d, 0xd4, 0x7f, 0xb3, 0xf1, 0xda, 0x2f, 0x75, 0x58, 0x3b,
0xb4, 0x4e, 0xf1, 0xab, 0x87, 0x86, 0x85, 0xca, 0xd9, 0x63, 0x58, 0xe5, 0x68, 0xb0, 0x1b, 0xb3,
0x67, 0x46, 0xd7, 0x89, 0xfb, 0x3c, 0xcb, 0x88, 0x7e, 0xc0, 0xda, 0x25, 0x1e, 0x3c, 0x3b, 0xf0,
0xed, 0xa8, 0xe3, 0xbc, 0x99, 0x23, 0x67, 0x47, 0x51, 0x99, 0x71, 0x0e, 0x74, 0x90, 0xad, 0x20,
0x8b, 0x5c, 0xc8, 0xdd, 0x99, 0x6f, 0x8e, 0xc8, 0xfb, 0xe9, 0x42, 0x82, 0x5a, 0xb0, 0x24, 0x3a,
0x1a, 0x4f, 0xaf, 0x8a, 0x29, 0x97, 0x0c, 0x8e, 0x42, 0x64, 0xc7, 0x9c, 0x57, 0xe5, 0xf7, 0xa1,
0xa2, 0x22, 0xa3, 0x54, 0x38, 0x32, 0x14, 0x4f, 0xba, 0x84, 0xe8, 0xa9, 0x12, 0x62, 0xbc, 0xd4,
0xa0, 0xc1, 0x8a, 0xe1, 0x13, 0x7f, 0x88, 0x9f, 0x5e, 0xb0, 0x75, 0x14, 0x98, 0x89, 0xdc, 0x84,
0x2a, 0x2b, 0x22, 0x84, 0x5a, 0xee, 0x98, 0x1b, 0x51, 0x36, 0xa3, 0x0d, 0xf6, 0x80, 0x6a, 0x88,
0x9a, 0x77, 0xa8, 0x66, 0x64, 0x5c, 0x94, 0xc6, 0x45, 0xf1, 0xbf, 0xd1, 0xf7, 0x92, 0x0f, 0xec,
0x6f, 0xe4, 0x5e, 0x2f, 0x17, 0xc2, 0x61, 0x43, 0xa2, 0xe0, 0x15, 0x41, 0xe6, 0x5f, 0x68, 0x50,
0x97, 0xae, 0xe0, 0xb5, 0xbf, 0x05, 0x4b, 0xd6, 0x70, 0x18, 0x60, 0x42, 0x84, 0x1d, 0x72, 0xc9,
0xbe, 0x9c, 0xe2, 0x80, 0xc8, 0x4b, 0xd1, 0x4d, 0xb9, 0x44, 0xef, 0x43, 0x45, 0xe1, 0x0c, 0x3d,
0xaf, 0x07, 0xc5, 0xed, 0x14, 0x48, 0x52, 0x71, 0x18, 0x7f, 0xd4, 0xa0, 0x29, 0xa2, 0x6b, 0x5b,
0x14, 0xa5, 0xd9, 0xe1, 0xb1, 0x0d, 0xf5, 0xe3, 0x28, 0x35, 0x66, 0xbd, 0x18, 0xe3, 0x19, 0x94,
0xe0, 0x99, 0x1b, 0x22, 0x1f, 0x42, 0x2d, 0xc6, 0xcc, 0x03, 0x3b, 0x7c, 0xc7, 0x09, 0x73, 0xe4,
0x92, 0x7d, 0x39, 0x8a, 0xd9, 0x51, 0x55, 0x95, 0xd5, 0xf8, 0xb7, 0xc6, 0x87, 0x37, 0x26, 0x1e,
0xf8, 0xa7, 0x38, 0x78, 0x71, 0xf9, 0x27, 0xf2, 0xc3, 0x98, 0x9b, 0x0b, 0xc2, 0x39, 0xc5, 0x80,
0x1e, 0x46, 0x76, 0xea, 0x79, 0x2f, 0x84, 0x78, 0x92, 0x0b, 0x27, 0x45, 0x47, 0xf9, 0x7d, 0xf8,
0xd8, 0x4f, 0x1e, 0xe5, 0xa2, 0x75, 0xf4, 0xff, 0x82, 0x26, 0x8c, 0x3f, 0x69, 0xf0, 0xb5, 0x3d,
0x4c, 0x1f, 0x25, 0x01, 0xf4, 0x55, 0x5b, 0xe5, 0x42, 0x3b, 0xcf, 0xa8, 0xcb, 0xdc, 0x7a, 0x1b,
0x2a, 0x44, 0xbe, 0x2a, 0xc2, 0x31, 0x8c, 0x5a, 0x1b, 0x5f, 0x6a, 0xd0, 0x12, 0x5a, 0xb8, 0xce,
0x1d, 0xdf, 0x1d, 0x3b, 0x98, 0xe2, 0xe1, 0xeb, 0x86, 0xc3, 0x7f, 0xd1, 0x60, 0x25, 0x5e, 0x87,
0x78, 0x29, 0xf9, 0x0e, 0x2c, 0xf0, 0xd7, 0x84, 0xb0, 0x60, 0x6e, 0xb0, 0x86, 0xd4, 0x2c, 0xa3,
0x78, 0x5b, 0x79, 0x4a, 0x64, 0x9d, 0x11, 0xcb, 0xa8, 0x18, 0xea, 0xe7, 0x2e, 0x86, 0xc6, 0x21,
0xac, 0x49, 0x4f, 0x45, 0x79, 0xbd, 0x8f, 0xa9, 0x35, 0x23, 0xb7, 0x6f, 0x41, 0x2d, 0xcc, 0x80,
0xfe, 0xd8, 0xa2, 0x27, 0xa2, 0xc4, 0xc3, 0x91, 0xea, 0xc1, 0xf7, 0xee, 0xc3, 0x6a, 0x46, 0x21,
0x6a, 0x02, 0xfc, 0xd4, 0x1b, 0x88, 0x9b, 0x58, 0xb9, 0x86, 0xea, 0x50, 0x91, 0xf7, 0xb2, 0xa2,
0x75, 0x5f, 0x36, 0xa0, 0xca, 0x0a, 0xee, 0x8e, 0xef, 0x07, 0x43, 0x34, 0x06, 0xc4, 0xe7, 0x22,
0xee, 0xd8, 0xf7, 0xd4, 0x00, 0x11, 0xbd, 0x3b, 0xa5, 0xdb, 0x65, 0x49, 0x45, 0xbc, 0xb7, 0xef,
0x4c, 0xe1, 0x48, 0x91, 0x1b, 0xd7, 0x90, 0xcb, 0x35, 0x32, 0x18, 0xfb, 0xd4, 0x1e, 0x3c, 0x93,
0xa0, 0x7b, 0x86, 0xc6, 0x14, 0xa9, 0xd4, 0x98, 0x9a, 0x4b, 0x8a, 0x45, 0x38, 0xbc, 0x92, 0x01,
0x6f, 0x5c, 0x43, 0x9f, 0xc1, 0xf5, 0x3d, 0x4c, 0xa3, 0x79, 0x85, 0x54, 0xd8, 0x9d, 0xae, 0x30,
0x43, 0x7c, 0x4e, 0x95, 0x8f, 0x61, 0x81, 0x27, 0x03, 0xca, 0x0b, 0xb8, 0xf8, 0xaf, 0x68, 0xed,
0xce, 0x74, 0x02, 0x25, 0xed, 0xe7, 0xb0, 0x9c, 0xfa, 0x95, 0x00, 0xbd, 0x9d, 0xc3, 0x96, 0xff,
0x7b, 0x4f, 0xfb, 0x5e, 0x11, 0x52, 0xa5, 0x6b, 0x04, 0xcd, 0xe4, 0x54, 0x05, 0x6d, 0xe4, 0xf0,
0xe7, 0x4e, 0x78, 0xdb, 0x6f, 0x17, 0xa0, 0x54, 0x8a, 0x5c, 0x58, 0x49, 0x4f, 0xad, 0xd1, 0xbd,
0x99, 0x02, 0x92, 0xe1, 0xf6, 0xcd, 0x42, 0xb4, 0x4a, 0xdd, 0x0b, 0x1e, 0x04, 0x99, 0xa9, 0x29,
0xda, 0xcc, 0x17, 0x33, 0x6d, 0x9c, 0xdb, 0xde, 0x2a, 0x4c, 0xaf, 0x54, 0xbf, 0x0c, 0x9b, 0x70,
0xde, 0xe4, 0x11, 0xdd, 0xcf, 0x17, 0x37, 0x63, 0x64, 0xda, 0xee, 0x9e, 0x87, 0x45, 0x19, 0xf1,
0x39, 0xef, 0x9e, 0x39, 0xd3, 0xbb, 0x74, 0xde, 0x49, 0x79, 0xd3, 0xc7, 0x92, 0xed, 0xfb, 0xe7,
0xe0, 0x50, 0x06, 0xf8, 0xe9, 0xdf, 0x05, 0x64, 0x1a, 0x6e, 0xcd, 0x8d, 0x9a, 0x8b, 0xe5, 0xe0,
0xa7, 0xb0, 0x9c, 0x7a, 0x77, 0xe5, 0x66, 0x4d, 0xfe, 0xdb, 0xac, 0x3d, 0xab, 0x2f, 0x86, 0x29,
0x99, 0x02, 0x23, 0x68, 0x4a, 0xf4, 0xe7, 0x00, 0x96, 0xf6, 0xbd, 0x22, 0xa4, 0xea, 0x20, 0x84,
0x97, 0xcb, 0x54, 0x43, 0x47, 0xdf, 0xca, 0x97, 0x91, 0x0f, 0x46, 0xda, 0xef, 0x14, 0xa4, 0x56,
0x4a, 0xfb, 0x00, 0x7b, 0x98, 0xee, 0x63, 0x1a, 0xb0, 0x18, 0xb9, 0x93, 0xeb, 0xf2, 0x88, 0x40,
0xaa, 0xb9, 0x3b, 0x97, 0x4e, 0x2a, 0xe8, 0x7e, 0x59, 0x86, 0x8a, 0x44, 0xfd, 0x57, 0xd0, 0x83,
0xae, 0xa0, 0x29, 0x7c, 0x0a, 0xcb, 0xa9, 0xb9, 0x6a, 0x6e, 0xcc, 0xe4, 0xcf, 0x5e, 0xe7, 0x05,
0xe4, 0x27, 0xe2, 0x5f, 0x24, 0x54, 0x7c, 0xdc, 0x9d, 0xd6, 0x58, 0xd2, 0xa1, 0x31, 0x47, 0xf0,
0xab, 0x0e, 0x84, 0xed, 0x07, 0x3f, 0xbb, 0x3f, 0xb2, 0xe9, 0xc9, 0xe4, 0x88, 0xa9, 0xde, 0x0a,
0x29, 0xdf, 0xb1, 0x7d, 0xf1, 0xd7, 0x96, 0xbc, 0x81, 0x2d, 0x2e, 0x69, 0x8b, 0x9d, 0x63, 0x7c,
0x74, 0xb4, 0xc8, 0x57, 0x0f, 0xfe, 0x17, 0x00, 0x00, 0xff, 0xff, 0x8e, 0x11, 0x1d, 0xa5, 0xf4,
0x22, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.