Support pass start_ts and end_ts through Import API (#19810)

Signed-off-by: wayblink <anyang.wang@zilliz.com>

Signed-off-by: wayblink <anyang.wang@zilliz.com>
pull/19917/head
wayblink 2022-10-20 12:15:27 +08:00 committed by GitHub
parent 470e8ef419
commit dbd60757c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 550 additions and 320 deletions

View File

@ -1045,25 +1045,36 @@ func (node *DataNode) Import(ctx context.Context, req *datapb.ImportTaskRequest)
}, nil
}
returnFailFunc := func(inputErr error) (*commonpb.Status, error) {
log.Warn("import wrapper failed to parse import request",
zap.Int64("task ID", req.GetImportTask().GetTaskId()),
zap.Error(inputErr))
importResult.State = commonpb.ImportState_ImportFailed
importResult.Infos = append(importResult.Infos, &commonpb.KeyValuePair{Key: "failed_reason", Value: inputErr.Error()})
reportErr := reportFunc(importResult)
if reportErr != nil {
log.Warn("fail to report import state to RootCoord", zap.Error(inputErr))
}
return &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: inputErr.Error(),
}, nil
}
// parse files and generate segments
segmentSize := int64(Params.DataCoordCfg.SegmentMaxSize) * 1024 * 1024
importWrapper := importutil.NewImportWrapper(newCtx, colInfo.GetSchema(), colInfo.GetShardsNum(), segmentSize, node.rowIDAllocator, node.chunkManager,
importFlushReqFunc(node, req, importResult, colInfo.GetSchema(), ts), importResult, reportFunc)
err = importWrapper.Import(req.GetImportTask().GetFiles(), req.GetImportTask().GetRowBased(), false)
// todo: pass tsStart and tsStart after import_wrapper support
tsStart, tsEnd, err := importutil.ParseTSFromOptions(req.GetImportTask().GetInfos())
if err != nil {
log.Warn("import wrapper failed to parse import request",
zap.Int64("task ID", req.GetImportTask().GetTaskId()),
zap.Error(err))
importResult.State = commonpb.ImportState_ImportFailed
importResult.Infos = append(importResult.Infos, &commonpb.KeyValuePair{Key: "failed_reason", Value: err.Error()})
reportErr := reportFunc(importResult)
if reportErr != nil {
log.Warn("fail to report import state to RootCoord", zap.Error(err))
}
return &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: err.Error(),
}, nil
return returnFailFunc(err)
}
log.Debug("import time range", zap.Uint64("start_ts", tsStart), zap.Uint64("end_ts", tsEnd))
err = importWrapper.Import(req.GetImportTask().GetFiles(), req.GetImportTask().GetRowBased(), false)
//err = importWrapper.Import(req.GetImportTask().GetFiles(), req.GetImportTask().GetRowBased(), false, tsStart, tsEnd)
if err != nil {
return returnFailFunc(err)
}
resp := &commonpb.Status{

View File

@ -556,6 +556,7 @@ message ImportTaskInfo {
ImportTaskState state = 11; // State of the import task.
string collection_name = 12; // Collection name for the import task.
string partition_name = 13; // Partition name for the import task.
repeated common.KeyValuePair infos = 14; // extra information about the task, bucket, etc.
}
message ImportTaskResponse {

View File

@ -3968,22 +3968,23 @@ func (m *ImportTaskState) GetErrorMessage() string {
}
type ImportTaskInfo struct {
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
RequestId int64 `protobuf:"varint,2,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"` // Deprecated: Do not use.
DatanodeId int64 `protobuf:"varint,3,opt,name=datanode_id,json=datanodeId,proto3" json:"datanode_id,omitempty"`
CollectionId int64 `protobuf:"varint,4,opt,name=collection_id,json=collectionId,proto3" json:"collection_id,omitempty"`
PartitionId int64 `protobuf:"varint,5,opt,name=partition_id,json=partitionId,proto3" json:"partition_id,omitempty"`
ChannelNames []string `protobuf:"bytes,6,rep,name=channel_names,json=channelNames,proto3" json:"channel_names,omitempty"`
Bucket string `protobuf:"bytes,7,opt,name=bucket,proto3" json:"bucket,omitempty"`
RowBased bool `protobuf:"varint,8,opt,name=row_based,json=rowBased,proto3" json:"row_based,omitempty"`
Files []string `protobuf:"bytes,9,rep,name=files,proto3" json:"files,omitempty"`
CreateTs int64 `protobuf:"varint,10,opt,name=create_ts,json=createTs,proto3" json:"create_ts,omitempty"`
State *ImportTaskState `protobuf:"bytes,11,opt,name=state,proto3" json:"state,omitempty"`
CollectionName string `protobuf:"bytes,12,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
PartitionName string `protobuf:"bytes,13,opt,name=partition_name,json=partitionName,proto3" json:"partition_name,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"`
RequestId int64 `protobuf:"varint,2,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"` // Deprecated: Do not use.
DatanodeId int64 `protobuf:"varint,3,opt,name=datanode_id,json=datanodeId,proto3" json:"datanode_id,omitempty"`
CollectionId int64 `protobuf:"varint,4,opt,name=collection_id,json=collectionId,proto3" json:"collection_id,omitempty"`
PartitionId int64 `protobuf:"varint,5,opt,name=partition_id,json=partitionId,proto3" json:"partition_id,omitempty"`
ChannelNames []string `protobuf:"bytes,6,rep,name=channel_names,json=channelNames,proto3" json:"channel_names,omitempty"`
Bucket string `protobuf:"bytes,7,opt,name=bucket,proto3" json:"bucket,omitempty"`
RowBased bool `protobuf:"varint,8,opt,name=row_based,json=rowBased,proto3" json:"row_based,omitempty"`
Files []string `protobuf:"bytes,9,rep,name=files,proto3" json:"files,omitempty"`
CreateTs int64 `protobuf:"varint,10,opt,name=create_ts,json=createTs,proto3" json:"create_ts,omitempty"`
State *ImportTaskState `protobuf:"bytes,11,opt,name=state,proto3" json:"state,omitempty"`
CollectionName string `protobuf:"bytes,12,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
PartitionName string `protobuf:"bytes,13,opt,name=partition_name,json=partitionName,proto3" json:"partition_name,omitempty"`
Infos []*commonpb.KeyValuePair `protobuf:"bytes,14,rep,name=infos,proto3" json:"infos,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ImportTaskInfo) Reset() { *m = ImportTaskInfo{} }
@ -4103,6 +4104,13 @@ func (m *ImportTaskInfo) GetPartitionName() string {
return ""
}
func (m *ImportTaskInfo) GetInfos() []*commonpb.KeyValuePair {
if m != nil {
return m.Infos
}
return nil
}
type ImportTaskResponse struct {
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
DatanodeId int64 `protobuf:"varint,2,opt,name=datanode_id,json=datanodeId,proto3" json:"datanode_id,omitempty"`
@ -4799,275 +4807,275 @@ func init() {
func init() { proto.RegisterFile("data_coord.proto", fileDescriptor_82cd95f524594f49) }
var fileDescriptor_82cd95f524594f49 = []byte{
// 4280 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3c, 0x4b, 0x6f, 0x24, 0x49,
0x5a, 0x9d, 0xf5, 0x72, 0xd5, 0x57, 0x0f, 0x97, 0xa3, 0x7b, 0xec, 0xea, 0xea, 0xe7, 0x64, 0x4f,
0xcf, 0xf4, 0xf4, 0xf4, 0x74, 0xcf, 0x78, 0x18, 0xed, 0x40, 0xef, 0xcc, 0xaa, 0x6d, 0x4f, 0xbb,
0x0b, 0x6c, 0xaf, 0x37, 0xed, 0x9e, 0x96, 0x76, 0x91, 0x4a, 0xe9, 0xca, 0x70, 0x39, 0xd7, 0xf9,
0xa8, 0xce, 0xcc, 0xb2, 0xdb, 0xcb, 0x61, 0x47, 0xac, 0x84, 0xb4, 0x08, 0xb1, 0x3c, 0x84, 0x04,
0x12, 0x48, 0x88, 0xd3, 0x02, 0x42, 0x42, 0x5a, 0x71, 0x80, 0x0b, 0x07, 0x2e, 0x23, 0x38, 0xac,
0xb8, 0xf0, 0x03, 0x38, 0x00, 0x77, 0xae, 0x1c, 0x50, 0x3c, 0x32, 0xf2, 0x5d, 0x95, 0xae, 0xea,
0x9e, 0x46, 0xec, 0xcd, 0x11, 0xf5, 0x45, 0x7c, 0x11, 0xdf, 0xfb, 0xfb, 0xe2, 0x4b, 0x43, 0x5b,
0x53, 0x3d, 0xb5, 0x3f, 0xb0, 0x6d, 0x47, 0xbb, 0x3f, 0x72, 0x6c, 0xcf, 0x46, 0x4b, 0xa6, 0x6e,
0x9c, 0x8c, 0x5d, 0x36, 0xba, 0x4f, 0x7e, 0xee, 0x36, 0x06, 0xb6, 0x69, 0xda, 0x16, 0x9b, 0xea,
0xb6, 0x74, 0xcb, 0xc3, 0x8e, 0xa5, 0x1a, 0x7c, 0xdc, 0x08, 0x2f, 0xe8, 0x36, 0xdc, 0xc1, 0x11,
0x36, 0x55, 0x36, 0x92, 0x17, 0xa0, 0xfc, 0xb9, 0x39, 0xf2, 0xce, 0xe4, 0x3f, 0x96, 0xa0, 0xf1,
0xd8, 0x18, 0xbb, 0x47, 0x0a, 0x7e, 0x3e, 0xc6, 0xae, 0x87, 0x3e, 0x80, 0xd2, 0x81, 0xea, 0xe2,
0x8e, 0x74, 0x53, 0xba, 0x53, 0x5f, 0xbd, 0x7a, 0x3f, 0x82, 0x95, 0xe3, 0xdb, 0x76, 0x87, 0x6b,
0xaa, 0x8b, 0x15, 0x0a, 0x89, 0x10, 0x94, 0xb4, 0x83, 0xde, 0x46, 0xa7, 0x70, 0x53, 0xba, 0x53,
0x54, 0xe8, 0xdf, 0xe8, 0x3a, 0x80, 0x8b, 0x87, 0x26, 0xb6, 0xbc, 0xde, 0x86, 0xdb, 0x29, 0xde,
0x2c, 0xde, 0x29, 0x2a, 0xa1, 0x19, 0x24, 0x43, 0x63, 0x60, 0x1b, 0x06, 0x1e, 0x78, 0xba, 0x6d,
0xf5, 0x36, 0x3a, 0x25, 0xba, 0x36, 0x32, 0x27, 0xff, 0x87, 0x04, 0x4d, 0x7e, 0x34, 0x77, 0x64,
0x5b, 0x2e, 0x46, 0x1f, 0x41, 0xc5, 0xf5, 0x54, 0x6f, 0xec, 0xf2, 0xd3, 0x5d, 0x49, 0x3d, 0xdd,
0x1e, 0x05, 0x51, 0x38, 0x68, 0xea, 0xf1, 0xe2, 0xe8, 0x8b, 0x49, 0xf4, 0xb1, 0x2b, 0x94, 0x12,
0x57, 0xb8, 0x03, 0x8b, 0x87, 0xe4, 0x74, 0x7b, 0x01, 0x50, 0x99, 0x02, 0xc5, 0xa7, 0xc9, 0x4e,
0x9e, 0x6e, 0xe2, 0x6f, 0x1f, 0xee, 0x61, 0xd5, 0xe8, 0x54, 0x28, 0xae, 0xd0, 0x8c, 0xfc, 0xaf,
0x12, 0xb4, 0x05, 0xb8, 0xcf, 0x87, 0x4b, 0x50, 0x1e, 0xd8, 0x63, 0xcb, 0xa3, 0x57, 0x6d, 0x2a,
0x6c, 0x80, 0xde, 0x84, 0xc6, 0xe0, 0x48, 0xb5, 0x2c, 0x6c, 0xf4, 0x2d, 0xd5, 0xc4, 0xf4, 0x52,
0x35, 0xa5, 0xce, 0xe7, 0x76, 0x54, 0x13, 0xe7, 0xba, 0xdb, 0x4d, 0xa8, 0x8f, 0x54, 0xc7, 0xd3,
0x23, 0xd4, 0x0f, 0x4f, 0xa1, 0x2e, 0x54, 0x75, 0xb7, 0x67, 0x8e, 0x6c, 0xc7, 0xeb, 0x94, 0x6f,
0x4a, 0x77, 0xaa, 0x8a, 0x18, 0x13, 0x0c, 0x3a, 0xfd, 0x6b, 0x5f, 0x75, 0x8f, 0x7b, 0x1b, 0xfc,
0x46, 0x91, 0x39, 0xf9, 0xcf, 0x25, 0x58, 0x7e, 0xe4, 0xba, 0xfa, 0xd0, 0x4a, 0xdc, 0x6c, 0x19,
0x2a, 0x96, 0xad, 0xe1, 0xde, 0x06, 0xbd, 0x5a, 0x51, 0xe1, 0x23, 0x74, 0x05, 0x6a, 0x23, 0x8c,
0x9d, 0xbe, 0x63, 0x1b, 0xfe, 0xc5, 0xaa, 0x64, 0x42, 0xb1, 0x0d, 0x8c, 0xbe, 0x03, 0x4b, 0x6e,
0x6c, 0x23, 0x26, 0x57, 0xf5, 0xd5, 0x5b, 0xf7, 0x13, 0x9a, 0x71, 0x3f, 0x8e, 0x54, 0x49, 0xae,
0x96, 0xbf, 0x2c, 0xc0, 0x45, 0x01, 0xc7, 0xce, 0x4a, 0xfe, 0x26, 0x94, 0x77, 0xf1, 0x50, 0x1c,
0x8f, 0x0d, 0xf2, 0x50, 0x5e, 0xb0, 0xac, 0x18, 0x66, 0x59, 0x0e, 0x51, 0x8f, 0xf3, 0xa3, 0x9c,
0xe4, 0xc7, 0x0d, 0xa8, 0xe3, 0x17, 0x23, 0xdd, 0xc1, 0x7d, 0x22, 0x38, 0x94, 0xe4, 0x25, 0x05,
0xd8, 0xd4, 0xbe, 0x6e, 0x86, 0x75, 0x63, 0x21, 0xb7, 0x6e, 0xc8, 0x7f, 0x21, 0xc1, 0x4a, 0x82,
0x4b, 0x5c, 0xd9, 0x14, 0x68, 0xd3, 0x9b, 0x07, 0x94, 0x21, 0x6a, 0x47, 0x08, 0xfe, 0xf6, 0x24,
0x82, 0x07, 0xe0, 0x4a, 0x62, 0x7d, 0xe8, 0x90, 0x85, 0xfc, 0x87, 0x3c, 0x86, 0x95, 0x4d, 0xec,
0x71, 0x04, 0xe4, 0x37, 0xec, 0xce, 0x6e, 0xac, 0xa2, 0x5a, 0x5d, 0x88, 0x6b, 0xb5, 0xfc, 0xb7,
0x05, 0xa1, 0x8b, 0x14, 0x55, 0xcf, 0x3a, 0xb4, 0xd1, 0x55, 0xa8, 0x09, 0x10, 0x2e, 0x15, 0xc1,
0x04, 0xfa, 0x06, 0x94, 0xc9, 0x49, 0x99, 0x48, 0xb4, 0x56, 0xdf, 0x4c, 0xbf, 0x53, 0x68, 0x4f,
0x85, 0xc1, 0xa3, 0x1e, 0xb4, 0x5c, 0x4f, 0x75, 0xbc, 0xfe, 0xc8, 0x76, 0x29, 0x9f, 0xa9, 0xe0,
0xd4, 0x57, 0xe5, 0xe8, 0x0e, 0xc2, 0xac, 0x6f, 0xbb, 0xc3, 0x5d, 0x0e, 0xa9, 0x34, 0xe9, 0x4a,
0x7f, 0x88, 0x3e, 0x87, 0x06, 0xb6, 0xb4, 0x60, 0xa3, 0x52, 0xee, 0x8d, 0xea, 0xd8, 0xd2, 0xc4,
0x36, 0x01, 0x7f, 0xca, 0xf9, 0xf9, 0xf3, 0x3b, 0x12, 0x74, 0x92, 0x0c, 0x9a, 0xc7, 0x64, 0x3f,
0x64, 0x8b, 0x30, 0x63, 0xd0, 0x44, 0x0d, 0x17, 0x4c, 0x52, 0xf8, 0x12, 0xf9, 0x8f, 0x24, 0x78,
0x23, 0x38, 0x0e, 0xfd, 0xe9, 0x55, 0x49, 0x0b, 0xba, 0x0b, 0x6d, 0xdd, 0x1a, 0x18, 0x63, 0x0d,
0x3f, 0xb5, 0x9e, 0x60, 0xd5, 0xf0, 0x8e, 0xce, 0x28, 0x0f, 0xab, 0x4a, 0x62, 0x5e, 0xfe, 0x91,
0x04, 0xcb, 0xf1, 0x73, 0xcd, 0x43, 0xa4, 0x5f, 0x82, 0xb2, 0x6e, 0x1d, 0xda, 0x3e, 0x8d, 0xae,
0x4f, 0x50, 0x4a, 0x82, 0x8b, 0x01, 0xcb, 0x26, 0x5c, 0xd9, 0xc4, 0x5e, 0xcf, 0x72, 0xb1, 0xe3,
0xad, 0xe9, 0x96, 0x61, 0x0f, 0x77, 0x55, 0xef, 0x68, 0x0e, 0x85, 0x8a, 0xe8, 0x46, 0x21, 0xa6,
0x1b, 0xf2, 0x4f, 0x25, 0xb8, 0x9a, 0x8e, 0x8f, 0x5f, 0xbd, 0x0b, 0xd5, 0x43, 0x1d, 0x1b, 0x1a,
0xa1, 0xaf, 0x44, 0xe9, 0x2b, 0xc6, 0x44, 0xb1, 0x46, 0x04, 0x98, 0xdf, 0xf0, 0xcd, 0x0c, 0x69,
0xde, 0xf3, 0x1c, 0xdd, 0x1a, 0x6e, 0xe9, 0xae, 0xa7, 0x30, 0xf8, 0x10, 0x3d, 0x8b, 0xf9, 0xc5,
0xf8, 0xb7, 0x25, 0xb8, 0xbe, 0x89, 0xbd, 0x75, 0x61, 0x97, 0xc9, 0xef, 0xba, 0xeb, 0xe9, 0x03,
0xf7, 0xe5, 0xc6, 0x46, 0x39, 0x1c, 0xb4, 0xfc, 0x13, 0x09, 0x6e, 0x64, 0x1e, 0x86, 0x93, 0x8e,
0xdb, 0x1d, 0xdf, 0x2a, 0xa7, 0xdb, 0x9d, 0x5f, 0xc3, 0x67, 0x5f, 0xa8, 0xc6, 0x18, 0xef, 0xaa,
0xba, 0xc3, 0xec, 0xce, 0x8c, 0x56, 0xf8, 0x6f, 0x24, 0xb8, 0xb6, 0x89, 0xbd, 0x5d, 0xdf, 0x27,
0xbd, 0x46, 0xea, 0x10, 0x98, 0x90, 0x6f, 0xf4, 0x83, 0xb3, 0xc8, 0x9c, 0xfc, 0xbb, 0x8c, 0x9d,
0xa9, 0xe7, 0x7d, 0x2d, 0x04, 0xbc, 0x4e, 0x35, 0x21, 0xa4, 0x92, 0xeb, 0x2c, 0x74, 0xe0, 0xe4,
0x93, 0xff, 0x4c, 0x82, 0xcb, 0x8f, 0x06, 0xcf, 0xc7, 0xba, 0x83, 0x39, 0xd0, 0x96, 0x3d, 0x38,
0x9e, 0x9d, 0xb8, 0x41, 0x98, 0x55, 0x88, 0x84, 0x59, 0xd3, 0x42, 0xf3, 0x65, 0xa8, 0x78, 0x2c,
0xae, 0x63, 0x91, 0x0a, 0x1f, 0xd1, 0xf3, 0x29, 0xd8, 0xc0, 0xaa, 0xfb, 0x7f, 0xf3, 0x7c, 0x3f,
0x29, 0x41, 0xe3, 0x0b, 0x1e, 0x8e, 0x51, 0xaf, 0x1d, 0x97, 0x24, 0x29, 0x3d, 0xf0, 0x0a, 0x45,
0x70, 0x69, 0x41, 0xdd, 0x26, 0x34, 0x5d, 0x8c, 0x8f, 0x67, 0xf1, 0xd1, 0x0d, 0xb2, 0x50, 0xf8,
0xd6, 0x2d, 0x58, 0x1a, 0x5b, 0x34, 0x35, 0xc0, 0x1a, 0x27, 0x20, 0x93, 0xdc, 0xe9, 0xb6, 0x3b,
0xb9, 0x10, 0x3d, 0xe1, 0xd9, 0x47, 0x68, 0xaf, 0x72, 0xae, 0xbd, 0xe2, 0xcb, 0x50, 0x0f, 0xda,
0x9a, 0x63, 0x8f, 0x46, 0x58, 0xeb, 0xbb, 0xfe, 0x56, 0x95, 0x7c, 0x5b, 0xf1, 0x75, 0x62, 0xab,
0x0f, 0xe0, 0x62, 0xfc, 0xa4, 0x3d, 0x8d, 0x04, 0xa4, 0x84, 0x87, 0x69, 0x3f, 0xa1, 0x7b, 0xb0,
0x94, 0x84, 0xaf, 0x52, 0xf8, 0xe4, 0x0f, 0xe8, 0x7d, 0x40, 0xb1, 0xa3, 0x12, 0xf0, 0x1a, 0x03,
0x8f, 0x1e, 0xa6, 0xa7, 0xb9, 0xf2, 0x8f, 0x25, 0x58, 0x7e, 0xa6, 0x7a, 0x83, 0xa3, 0x0d, 0x93,
0xeb, 0xda, 0x1c, 0xb6, 0xea, 0x53, 0xa8, 0x9d, 0x70, 0xb9, 0xf0, 0x1d, 0xd2, 0x8d, 0x14, 0xfa,
0x84, 0x25, 0x50, 0x09, 0x56, 0xc8, 0x5f, 0x49, 0x70, 0xe9, 0x71, 0x28, 0x2f, 0x7c, 0x0d, 0x56,
0x73, 0x5a, 0x42, 0xfb, 0x36, 0xb4, 0x4c, 0xd5, 0x39, 0x4e, 0xe4, 0xb3, 0xb1, 0x59, 0xf9, 0x05,
0x00, 0x1f, 0x6d, 0xbb, 0xc3, 0x19, 0xce, 0xff, 0x09, 0x2c, 0x70, 0xac, 0xdc, 0x7c, 0x4e, 0x93,
0x33, 0x1f, 0x5c, 0xfe, 0xfd, 0x0a, 0xd4, 0x43, 0x3f, 0xa0, 0x16, 0x14, 0x84, 0x5e, 0x17, 0x52,
0xa8, 0x50, 0x98, 0x9e, 0x6a, 0x15, 0x93, 0xa9, 0xd6, 0x6d, 0x68, 0xe9, 0x34, 0x5e, 0xe9, 0x73,
0xee, 0x51, 0x43, 0x53, 0x53, 0x9a, 0x6c, 0x96, 0x8b, 0x12, 0xba, 0x0e, 0x75, 0x6b, 0x6c, 0xf6,
0xed, 0xc3, 0xbe, 0x63, 0x9f, 0xba, 0x3c, 0x67, 0xab, 0x59, 0x63, 0xf3, 0xdb, 0x87, 0x8a, 0x7d,
0xea, 0x06, 0x69, 0x41, 0xe5, 0x9c, 0x69, 0xc1, 0x75, 0xa8, 0x9b, 0xea, 0x0b, 0xb2, 0x6b, 0xdf,
0x1a, 0x9b, 0x34, 0x9d, 0x2b, 0x2a, 0x35, 0x53, 0x7d, 0xa1, 0xd8, 0xa7, 0x3b, 0x63, 0x13, 0xdd,
0x81, 0xb6, 0xa1, 0xba, 0x5e, 0x3f, 0x9c, 0x0f, 0x56, 0x69, 0x3e, 0xd8, 0x22, 0xf3, 0x9f, 0x07,
0x39, 0x61, 0x32, 0xc1, 0xa8, 0xcd, 0x91, 0x60, 0x68, 0xa6, 0x11, 0x6c, 0x04, 0xf9, 0x13, 0x0c,
0xcd, 0x34, 0xc4, 0x36, 0x9f, 0xc0, 0xc2, 0x01, 0x8d, 0x02, 0xdd, 0x4e, 0x3d, 0xd3, 0xc6, 0x3c,
0x26, 0x01, 0x20, 0x0b, 0x16, 0x15, 0x1f, 0x1c, 0x7d, 0x13, 0x6a, 0xd4, 0xf9, 0xd2, 0xb5, 0x8d,
0x5c, 0x6b, 0x83, 0x05, 0x64, 0xb5, 0x86, 0x0d, 0x4f, 0xa5, 0xab, 0x9b, 0xf9, 0x56, 0x8b, 0x05,
0xc4, 0xae, 0x0d, 0x1c, 0xac, 0x7a, 0x58, 0x5b, 0x3b, 0x5b, 0xb7, 0xcd, 0x91, 0x4a, 0x85, 0xa9,
0xd3, 0xa2, 0x91, 0x7e, 0xda, 0x4f, 0x44, 0x97, 0x06, 0x62, 0xf4, 0xd8, 0xb1, 0xcd, 0xce, 0x22,
0xd3, 0xa5, 0xe8, 0x2c, 0xba, 0x06, 0xe0, 0x5b, 0x34, 0xd5, 0xeb, 0xb4, 0x29, 0x17, 0x6b, 0x7c,
0xe6, 0x11, 0x2d, 0xf7, 0xe8, 0x6e, 0x9f, 0x15, 0x56, 0x74, 0x6b, 0xd8, 0x59, 0xa2, 0x18, 0xeb,
0x7e, 0x25, 0x46, 0xb7, 0x86, 0xf2, 0x0f, 0xe1, 0x52, 0x20, 0x44, 0x21, 0x86, 0x25, 0x79, 0x2f,
0xcd, 0xca, 0xfb, 0xc9, 0x21, 0xfe, 0xcf, 0x4b, 0xb0, 0xbc, 0xa7, 0x9e, 0xe0, 0x57, 0x9f, 0x4d,
0xe4, 0xb2, 0x72, 0x5b, 0xb0, 0x44, 0x13, 0x88, 0xd5, 0xd0, 0x79, 0x26, 0xb8, 0xd9, 0x30, 0xc7,
0x93, 0x0b, 0xd1, 0xb7, 0x48, 0x7c, 0x80, 0x07, 0xc7, 0xbb, 0xb6, 0x1e, 0xb8, 0xd8, 0x6b, 0x29,
0xfb, 0xac, 0x0b, 0x28, 0x25, 0xbc, 0x02, 0xed, 0xc2, 0x62, 0x94, 0x0d, 0xbe, 0x73, 0x7d, 0x67,
0x62, 0x4e, 0x1b, 0x50, 0x5f, 0x69, 0x45, 0x98, 0xe1, 0xa2, 0x0e, 0x2c, 0x70, 0xcf, 0x48, 0x4d,
0x43, 0x55, 0xf1, 0x87, 0x68, 0x17, 0x2e, 0xb2, 0x1b, 0xec, 0x71, 0xb9, 0x67, 0x97, 0xaf, 0xe6,
0xba, 0x7c, 0xda, 0xd2, 0xa8, 0xda, 0xd4, 0xce, 0xab, 0x36, 0x1d, 0x58, 0xe0, 0xa2, 0x4c, 0xcd,
0x45, 0x55, 0xf1, 0x87, 0x84, 0xcd, 0x81, 0x50, 0xd7, 0xe9, 0x6f, 0xc1, 0x04, 0xc9, 0xc4, 0x20,
0xa0, 0xe7, 0x94, 0xea, 0xcb, 0x67, 0x50, 0x15, 0x12, 0x5e, 0xc8, 0x2d, 0xe1, 0x62, 0x4d, 0xdc,
0x8c, 0x17, 0x63, 0x66, 0x5c, 0xfe, 0x17, 0x09, 0x1a, 0x1b, 0xe4, 0x4a, 0x5b, 0xf6, 0x90, 0x3a,
0x9d, 0xdb, 0xd0, 0x72, 0xf0, 0xc0, 0x76, 0xb4, 0x3e, 0xb6, 0x3c, 0x47, 0xc7, 0x2c, 0x69, 0x2f,
0x29, 0x4d, 0x36, 0xfb, 0x39, 0x9b, 0x24, 0x60, 0xc4, 0x32, 0xbb, 0x9e, 0x6a, 0x8e, 0xfa, 0x87,
0xc4, 0x02, 0x14, 0x18, 0x98, 0x98, 0xa5, 0x06, 0xe0, 0x4d, 0x68, 0x04, 0x60, 0x9e, 0x4d, 0xf1,
0x97, 0x94, 0xba, 0x98, 0xdb, 0xb7, 0xd1, 0x5b, 0xd0, 0xa2, 0x34, 0xed, 0x1b, 0xf6, 0xb0, 0x4f,
0x12, 0x5c, 0xee, 0x8f, 0x1a, 0x1a, 0x3f, 0x16, 0xe1, 0x55, 0x14, 0xca, 0xd5, 0x7f, 0x80, 0xb9,
0x47, 0x12, 0x50, 0x7b, 0xfa, 0x0f, 0xb0, 0xfc, 0xcf, 0x12, 0x34, 0x37, 0x54, 0x4f, 0xdd, 0xb1,
0x35, 0xbc, 0x3f, 0xa3, 0xff, 0xce, 0x51, 0x09, 0xbd, 0x0a, 0x35, 0x71, 0x03, 0x7e, 0xa5, 0x60,
0x02, 0x3d, 0x86, 0x96, 0x1f, 0x69, 0xf6, 0x59, 0x02, 0x56, 0xca, 0x8c, 0xa7, 0x42, 0x0e, 0xd2,
0x55, 0x9a, 0xfe, 0x32, 0x3a, 0x94, 0x1f, 0x43, 0x23, 0xfc, 0x33, 0xc1, 0xba, 0x17, 0x17, 0x14,
0x31, 0x41, 0xa4, 0x71, 0x67, 0x6c, 0x12, 0x9e, 0x72, 0xc3, 0xe2, 0x0f, 0xe5, 0x1f, 0x49, 0xd0,
0xe4, 0x5e, 0x7d, 0x4f, 0xbc, 0x19, 0xd0, 0xab, 0x49, 0xf4, 0x6a, 0xf4, 0x6f, 0xf4, 0x2b, 0xd1,
0x32, 0xdf, 0x5b, 0xa9, 0x46, 0x80, 0x6e, 0x42, 0x63, 0xce, 0x88, 0x4b, 0xcf, 0x93, 0xf2, 0x7f,
0x49, 0x04, 0x8d, 0xb3, 0x86, 0x0a, 0x5a, 0x07, 0x16, 0x54, 0x4d, 0x73, 0xb0, 0xeb, 0xf2, 0x73,
0xf8, 0x43, 0xf2, 0xcb, 0x09, 0x76, 0x5c, 0x5f, 0xe4, 0x8b, 0x8a, 0x3f, 0x44, 0xdf, 0x84, 0xaa,
0x08, 0x52, 0x59, 0x75, 0xfc, 0x66, 0xf6, 0x39, 0x79, 0x82, 0x2a, 0x56, 0xc8, 0x7f, 0x57, 0x80,
0x16, 0x27, 0xd8, 0x1a, 0x77, 0xbb, 0x93, 0x95, 0x6f, 0x0d, 0x1a, 0x87, 0x81, 0xee, 0x4f, 0x2a,
0x45, 0x85, 0x4d, 0x44, 0x64, 0xcd, 0x34, 0x05, 0x8c, 0x3a, 0xfe, 0xd2, 0x5c, 0x8e, 0xbf, 0x7c,
0x5e, 0x0b, 0x96, 0x0c, 0x05, 0x2b, 0x29, 0xa1, 0xa0, 0xfc, 0xeb, 0x50, 0x0f, 0x6d, 0x40, 0x2d,
0x34, 0xab, 0x61, 0x71, 0x8a, 0xf9, 0x43, 0xf4, 0x51, 0x10, 0xfe, 0x30, 0x52, 0x5d, 0x4e, 0x39,
0x4b, 0x2c, 0xf2, 0x91, 0xff, 0x51, 0x82, 0x0a, 0xdf, 0xf9, 0x06, 0xd4, 0xb9, 0xd1, 0xa1, 0xa1,
0x21, 0xdb, 0x1d, 0xf8, 0x14, 0x89, 0x0d, 0x5f, 0x9e, 0xd5, 0xb9, 0x0c, 0xd5, 0x98, 0xbd, 0x59,
0xe0, 0x6e, 0xc1, 0xff, 0x29, 0x64, 0x64, 0xc8, 0x4f, 0xc4, 0xbe, 0xa0, 0x4b, 0x50, 0x36, 0xec,
0xa1, 0x78, 0x13, 0x62, 0x03, 0x92, 0xfc, 0xac, 0x6c, 0x62, 0x4f, 0xc1, 0x03, 0xfb, 0x04, 0x3b,
0x67, 0xf3, 0xd7, 0x3e, 0x1f, 0x86, 0xc4, 0x3c, 0x67, 0x2e, 0x26, 0x16, 0xa0, 0x87, 0x01, 0x13,
0x8a, 0x69, 0x85, 0x9f, 0xb0, 0xdd, 0xe1, 0x42, 0x1a, 0x30, 0xe3, 0xf7, 0x58, 0x15, 0x37, 0x7a,
0x95, 0x59, 0xa3, 0x9d, 0x97, 0x92, 0xaf, 0xc8, 0x3f, 0x97, 0xa0, 0x1b, 0x54, 0x96, 0xdc, 0xb5,
0xb3, 0x79, 0xdf, 0x48, 0x5e, 0x4e, 0x1a, 0xf5, 0xcb, 0xa2, 0x88, 0x4f, 0x94, 0x36, 0x57, 0x02,
0xe4, 0x97, 0xf0, 0x2d, 0x5a, 0xa4, 0x4e, 0x5e, 0x68, 0x1e, 0x91, 0xe9, 0x42, 0x55, 0x94, 0x37,
0x58, 0x21, 0x5f, 0x8c, 0xe5, 0x3f, 0x94, 0xe0, 0xf2, 0x26, 0xf6, 0x1e, 0x47, 0x2b, 0x23, 0xaf,
0x9b, 0xaf, 0x26, 0x65, 0x6b, 0xe2, 0x50, 0xaf, 0x8a, 0x08, 0xbf, 0x25, 0x41, 0x87, 0x63, 0xa1,
0x38, 0x49, 0x36, 0x63, 0x60, 0x0f, 0x6b, 0x5f, 0x77, 0x96, 0xff, 0x3f, 0x12, 0xb4, 0xc3, 0x9e,
0x94, 0x3a, 0xc3, 0x8f, 0xa1, 0x4c, 0x8b, 0x29, 0xfc, 0x04, 0x53, 0xd5, 0x9d, 0x41, 0x13, 0x53,
0x4c, 0xc3, 0xe7, 0x7d, 0xe1, 0xf4, 0xf9, 0x30, 0x70, 0xe7, 0xc5, 0xf3, 0xbb, 0x73, 0x1e, 0xde,
0xd8, 0x63, 0xb2, 0x2f, 0xab, 0x42, 0x06, 0x13, 0xe8, 0x53, 0xa8, 0xb0, 0x5e, 0x0b, 0xfe, 0x88,
0x76, 0x3b, 0xba, 0x35, 0xef, 0xc3, 0x08, 0x95, 0xf6, 0xe9, 0x84, 0xc2, 0x17, 0xc9, 0xbf, 0x0a,
0xcb, 0x41, 0x22, 0xc9, 0xd0, 0xce, 0x2a, 0x88, 0xf2, 0xbf, 0x49, 0x70, 0x71, 0xef, 0xcc, 0x1a,
0xc4, 0x45, 0x7a, 0x19, 0x2a, 0x23, 0x43, 0x0d, 0x8a, 0xa2, 0x7c, 0x44, 0x43, 0x3b, 0x86, 0x1b,
0x6b, 0xc4, 0x2f, 0x30, 0x9a, 0xd5, 0xc5, 0xdc, 0xbe, 0x3d, 0xd5, 0x5d, 0xdf, 0x16, 0x99, 0x2f,
0xd6, 0x98, 0x07, 0x62, 0x95, 0xa6, 0xa6, 0x98, 0xa5, 0x1e, 0xe8, 0x53, 0x00, 0xea, 0xa4, 0xfb,
0xe7, 0x71, 0xcc, 0x74, 0xc5, 0x16, 0x31, 0xc3, 0x3f, 0x2b, 0x40, 0x27, 0x44, 0xa5, 0xaf, 0x3b,
0x66, 0xc9, 0xc8, 0xb4, 0x8a, 0x2f, 0x29, 0xd3, 0x2a, 0xcd, 0x1f, 0xa7, 0x94, 0xd3, 0xe2, 0x94,
0x7f, 0x2f, 0x40, 0x2b, 0xa0, 0xda, 0xae, 0xa1, 0x5a, 0x99, 0x92, 0xb0, 0x27, 0x62, 0xf4, 0x28,
0x9d, 0xde, 0x4b, 0xd3, 0x93, 0x0c, 0x46, 0x28, 0xb1, 0x2d, 0xd0, 0x35, 0xca, 0x74, 0xc7, 0x63,
0x35, 0x2b, 0x9e, 0x17, 0x30, 0x85, 0xd4, 0x4d, 0x8c, 0xee, 0x01, 0xe2, 0x5a, 0xd4, 0xd7, 0xad,
0xbe, 0x8b, 0x07, 0xb6, 0xa5, 0x31, 0xfd, 0x2a, 0x2b, 0x6d, 0xfe, 0x4b, 0xcf, 0xda, 0x63, 0xf3,
0xe8, 0x63, 0x28, 0x79, 0x67, 0x23, 0x16, 0x81, 0xb4, 0x52, 0x7d, 0x78, 0x70, 0xae, 0xfd, 0xb3,
0x11, 0x56, 0x28, 0xb8, 0xdf, 0x8c, 0xe3, 0x39, 0xea, 0x09, 0x0f, 0xe7, 0x4a, 0x4a, 0x68, 0x86,
0x58, 0x0c, 0x9f, 0x86, 0x0b, 0x2c, 0xec, 0xe1, 0x43, 0x26, 0xd9, 0xbe, 0xd2, 0xf6, 0x3d, 0xcf,
0xa0, 0x55, 0x37, 0x2a, 0xd9, 0xfe, 0xec, 0xbe, 0x67, 0xc8, 0x7f, 0x5f, 0x80, 0x76, 0x80, 0x59,
0xc1, 0xee, 0xd8, 0xc8, 0x56, 0xb8, 0xc9, 0xf5, 0x8e, 0x69, 0xba, 0xf6, 0x2d, 0xa8, 0x73, 0xb6,
0x9f, 0x43, 0x6c, 0x80, 0x2d, 0xd9, 0x9a, 0x20, 0xc7, 0xe5, 0x97, 0x24, 0xc7, 0x95, 0x73, 0xca,
0xb1, 0xfc, 0x53, 0x09, 0xde, 0x48, 0x18, 0xbf, 0x89, 0x04, 0x9c, 0x9c, 0x95, 0x71, 0xa3, 0x18,
0xdf, 0x92, 0x9b, 0xf1, 0x87, 0x50, 0x71, 0xe8, 0xee, 0xfc, 0x4d, 0xe7, 0xd6, 0x44, 0x19, 0x62,
0x07, 0x51, 0xf8, 0x12, 0xf9, 0x0f, 0x24, 0x58, 0x49, 0x1e, 0x75, 0x0e, 0xdf, 0xbc, 0x06, 0x0b,
0x6c, 0x6b, 0x5f, 0xd5, 0xee, 0x4c, 0x56, 0xb5, 0x80, 0x38, 0x8a, 0xbf, 0x50, 0xde, 0x83, 0x65,
0xdf, 0x85, 0x07, 0x04, 0xde, 0xc6, 0x9e, 0x3a, 0x21, 0x27, 0xb9, 0x01, 0x75, 0x16, 0xdc, 0xb2,
0x58, 0x9f, 0x65, 0xf3, 0x70, 0x20, 0x8a, 0x60, 0xf2, 0x7f, 0x49, 0x70, 0x89, 0xfa, 0xc0, 0xf8,
0x23, 0x4a, 0x9e, 0x07, 0x36, 0x59, 0x14, 0x0b, 0x76, 0x54, 0x93, 0x37, 0x74, 0xd4, 0x94, 0xc8,
0x1c, 0xea, 0x25, 0x6b, 0x64, 0xa9, 0xb9, 0x6b, 0xf0, 0x22, 0x4b, 0xf2, 0x64, 0xfa, 0x20, 0x1b,
0x2f, 0x8e, 0x05, 0xbe, 0xb7, 0x34, 0x8b, 0xef, 0xdd, 0x82, 0x37, 0x62, 0x37, 0x9d, 0x83, 0xa3,
0xf2, 0x5f, 0x4a, 0x84, 0x1d, 0x91, 0xc6, 0x98, 0xd9, 0x63, 0xca, 0x6b, 0xe2, 0xf5, 0xa6, 0xaf,
0x6b, 0x71, 0x53, 0xa1, 0xa1, 0xcf, 0xa0, 0x66, 0xe1, 0xd3, 0x7e, 0x38, 0xa4, 0xc9, 0x11, 0x70,
0x57, 0x2d, 0x7c, 0x4a, 0xff, 0x92, 0x77, 0x60, 0x25, 0x71, 0xd4, 0x79, 0xee, 0xfe, 0x0f, 0x12,
0x5c, 0xde, 0x70, 0xec, 0xd1, 0x17, 0xba, 0xe3, 0x8d, 0x55, 0x23, 0xfa, 0xd6, 0xfd, 0x6a, 0x8a,
0x4e, 0x4f, 0x42, 0xc1, 0x2d, 0x93, 0x9f, 0x7b, 0x29, 0x1a, 0x94, 0x3c, 0x14, 0xbf, 0x74, 0x28,
0x14, 0xfe, 0xcf, 0x62, 0xda, 0xe1, 0x39, 0xdc, 0x94, 0xf0, 0x22, 0x4f, 0xec, 0x9f, 0x5a, 0xa3,
0x2e, 0xce, 0x5a, 0xa3, 0xce, 0x30, 0xe2, 0xa5, 0x97, 0x64, 0xc4, 0xcf, 0x5d, 0x34, 0x79, 0x02,
0xd1, 0xf7, 0x03, 0xea, 0x64, 0x67, 0x7a, 0x78, 0x58, 0x03, 0x08, 0x6a, 0xe9, 0xbc, 0xaf, 0x31,
0xcf, 0x36, 0xa1, 0x55, 0x84, 0x5b, 0xc2, 0x61, 0x72, 0x87, 0x1d, 0xaa, 0xee, 0x7e, 0x07, 0xba,
0x69, 0x52, 0x3a, 0x8f, 0xe4, 0xff, 0xac, 0x00, 0xd0, 0x13, 0xad, 0xb0, 0xb3, 0xf9, 0x82, 0x5b,
0x10, 0x0a, 0x2a, 0x02, 0x7d, 0x0f, 0x4b, 0x91, 0x46, 0x54, 0x42, 0xa4, 0x8b, 0x04, 0x26, 0x91,
0x42, 0x6a, 0x74, 0x9f, 0x90, 0xd6, 0x30, 0xa1, 0x88, 0x9b, 0xdf, 0x2b, 0x50, 0x73, 0xec, 0xd3,
0x3e, 0x51, 0x33, 0xcd, 0xef, 0xf5, 0x75, 0xec, 0x53, 0xa2, 0x7c, 0x1a, 0x5a, 0x81, 0x05, 0x4f,
0x75, 0x8f, 0xc9, 0xfe, 0x95, 0x50, 0xbb, 0x85, 0x86, 0x2e, 0x41, 0xf9, 0x50, 0x37, 0x30, 0x7b,
0xdd, 0xaf, 0x29, 0x6c, 0x80, 0xbe, 0xe1, 0x37, 0xa5, 0x55, 0x73, 0xb7, 0xd4, 0xb0, 0xbe, 0xb4,
0xaf, 0x24, 0x58, 0x0c, 0xa8, 0x46, 0x0d, 0x10, 0xb1, 0x69, 0xd4, 0x9e, 0xad, 0xdb, 0x1a, 0x33,
0x15, 0xad, 0x0c, 0x8f, 0xc0, 0x16, 0x32, 0xab, 0x15, 0x2c, 0x99, 0x94, 0xed, 0x92, 0x7b, 0x91,
0x4b, 0xeb, 0x9a, 0xdf, 0x62, 0x52, 0x71, 0xec, 0xd3, 0x9e, 0x26, 0xa8, 0xc1, 0x1a, 0x79, 0x59,
0x6e, 0x47, 0xa8, 0xb1, 0x4e, 0x7b, 0x79, 0x6f, 0x41, 0x13, 0x3b, 0x8e, 0xed, 0xf4, 0x4d, 0xec,
0xba, 0xea, 0x10, 0xf3, 0x30, 0xbb, 0x41, 0x27, 0xb7, 0xd9, 0x9c, 0xfc, 0x4f, 0x45, 0x68, 0x05,
0x57, 0xf1, 0x1f, 0xaa, 0x75, 0xcd, 0x7f, 0xa8, 0xd6, 0x09, 0xeb, 0xc0, 0x61, 0xa6, 0x50, 0x30,
0x77, 0xad, 0xd0, 0x91, 0x94, 0x1a, 0x9f, 0xed, 0x69, 0xc4, 0x2d, 0x13, 0x25, 0xb3, 0x6c, 0x0d,
0x07, 0xcc, 0x05, 0x7f, 0x8a, 0xf3, 0x36, 0x22, 0x23, 0xa5, 0x1c, 0x32, 0x52, 0xce, 0x21, 0x23,
0x95, 0x14, 0x19, 0x59, 0x86, 0xca, 0xc1, 0x78, 0x70, 0x8c, 0x3d, 0x1e, 0x14, 0xf3, 0x51, 0x54,
0x76, 0xaa, 0x31, 0xd9, 0x11, 0x22, 0x52, 0x0b, 0x8b, 0xc8, 0x15, 0xa8, 0xb1, 0x17, 0xd3, 0xbe,
0xe7, 0xd2, 0x77, 0xa1, 0xa2, 0x52, 0x65, 0x13, 0xfb, 0x2e, 0xfa, 0xc4, 0x0f, 0xe7, 0xea, 0x69,
0xca, 0x4e, 0xad, 0x4e, 0x4c, 0x4a, 0xfc, 0x60, 0xee, 0x1d, 0x58, 0x0c, 0x91, 0x83, 0xfa, 0x88,
0x06, 0x3d, 0x6a, 0x28, 0x68, 0xa7, 0x6e, 0xe2, 0x36, 0xb4, 0x02, 0x92, 0x50, 0xb8, 0x26, 0xcb,
0x95, 0xc4, 0x2c, 0x01, 0x93, 0xbf, 0x0f, 0x28, 0xc0, 0x34, 0x5f, 0x64, 0x17, 0x63, 0x65, 0x21,
0xce, 0x4a, 0xf9, 0xaf, 0x24, 0x58, 0x0a, 0x23, 0x9b, 0xd5, 0x49, 0x7e, 0x06, 0x75, 0xf6, 0x8a,
0xd6, 0x27, 0x4a, 0xca, 0xeb, 0x2e, 0xd7, 0x26, 0xd2, 0x50, 0x81, 0xa0, 0x6d, 0x9f, 0x88, 0xc2,
0xa9, 0xed, 0x1c, 0xeb, 0xd6, 0xb0, 0x4f, 0x4e, 0xe6, 0xab, 0x46, 0x83, 0x4f, 0xee, 0x90, 0x39,
0xf9, 0xc7, 0x12, 0x5c, 0x7f, 0x3a, 0xd2, 0x54, 0x0f, 0x87, 0xa2, 0x85, 0x79, 0x3b, 0x01, 0x3f,
0xf6, 0x5b, 0xf1, 0x0a, 0xf9, 0x5e, 0x82, 0x18, 0xb4, 0xbc, 0x0d, 0x97, 0x15, 0xec, 0x62, 0x4b,
0x8b, 0xfc, 0x38, 0x73, 0xb9, 0x64, 0x04, 0xdd, 0xb4, 0xed, 0xe6, 0xe1, 0x3d, 0x0b, 0xdb, 0xfa,
0x0e, 0xd9, 0xd6, 0xe3, 0x56, 0x88, 0x44, 0x0b, 0x14, 0x8f, 0x27, 0xff, 0x75, 0x01, 0x56, 0x1e,
0x69, 0x1a, 0x37, 0x60, 0x3c, 0x10, 0x79, 0x55, 0x31, 0x62, 0x3c, 0x86, 0x2a, 0x26, 0x63, 0xa8,
0x97, 0x65, 0x54, 0xb8, 0x79, 0xb5, 0xc6, 0xa6, 0xef, 0x36, 0x1c, 0xd6, 0xbc, 0xf2, 0x90, 0xbf,
0xe6, 0x90, 0x8c, 0x95, 0xba, 0x8e, 0xe9, 0xa1, 0x45, 0xd5, 0x2f, 0xfb, 0xc8, 0x23, 0xe8, 0x24,
0x89, 0x35, 0xa7, 0x66, 0xfa, 0x14, 0x19, 0xd9, 0xac, 0x44, 0xd8, 0x20, 0xd1, 0x03, 0x9d, 0xda,
0xb5, 0x5d, 0xf9, 0xbf, 0x0b, 0xd0, 0xd9, 0x53, 0x4f, 0xf0, 0x2f, 0x0e, 0x83, 0xbe, 0x0b, 0x97,
0x5c, 0xf5, 0x04, 0xf7, 0x43, 0x39, 0x61, 0xdf, 0xc1, 0xcf, 0x79, 0xf4, 0xf5, 0x6e, 0x9a, 0x62,
0xa6, 0x36, 0x7f, 0x28, 0x4b, 0x6e, 0x64, 0x5e, 0xc1, 0xcf, 0xd1, 0xdb, 0xb0, 0x18, 0x6e, 0x22,
0x22, 0x47, 0xab, 0x52, 0x92, 0x37, 0x43, 0x3d, 0x42, 0x3d, 0x4d, 0x7e, 0x0e, 0x57, 0x9f, 0x5a,
0x2e, 0xf6, 0x7a, 0x41, 0x9f, 0xcb, 0x9c, 0xd9, 0xd3, 0x0d, 0xa8, 0x07, 0x84, 0x4f, 0x74, 0xf2,
0x6b, 0xae, 0x6c, 0x43, 0x77, 0x3b, 0x68, 0x73, 0x73, 0x37, 0x58, 0xa3, 0xc2, 0x2b, 0x44, 0x78,
0x28, 0xfa, 0x76, 0x14, 0x7c, 0x88, 0x1d, 0x6c, 0x0d, 0xf0, 0x96, 0x3d, 0x38, 0x0e, 0xb5, 0xb7,
0x4a, 0xe1, 0xf6, 0xd6, 0x59, 0xdb, 0x65, 0xef, 0x7e, 0x26, 0x5a, 0xe6, 0xf6, 0xcf, 0x46, 0x18,
0x2d, 0x40, 0x71, 0x07, 0x9f, 0xb6, 0x2f, 0x20, 0x80, 0xca, 0x8e, 0xed, 0x98, 0xaa, 0xd1, 0x96,
0x50, 0x1d, 0x16, 0xf8, 0x33, 0x43, 0xbb, 0x80, 0x9a, 0x50, 0x5b, 0xf7, 0x4b, 0xb5, 0xed, 0xe2,
0xdd, 0x3f, 0x91, 0x60, 0x29, 0x51, 0x08, 0x47, 0x2d, 0x80, 0xa7, 0xd6, 0x80, 0xbf, 0x10, 0xb4,
0x2f, 0xa0, 0x06, 0x54, 0xfd, 0xf7, 0x02, 0xb6, 0xdf, 0xbe, 0x4d, 0xa1, 0xdb, 0x05, 0xd4, 0x86,
0x06, 0x5b, 0x38, 0x1e, 0x0c, 0xb0, 0xeb, 0xb6, 0x8b, 0x62, 0xe6, 0xb1, 0xaa, 0x1b, 0x63, 0x07,
0xb7, 0x4b, 0x04, 0xe7, 0xbe, 0xcd, 0x9b, 0x8b, 0xdb, 0x65, 0x84, 0xa0, 0xe5, 0x77, 0x1a, 0xf3,
0x45, 0x95, 0xd0, 0x9c, 0xbf, 0x6c, 0xe1, 0xee, 0xb3, 0x70, 0x39, 0x93, 0x5e, 0x6f, 0x05, 0x2e,
0x3e, 0xb5, 0x34, 0x7c, 0xa8, 0x5b, 0x58, 0x0b, 0x7e, 0x6a, 0x5f, 0x40, 0x17, 0x61, 0x71, 0x1b,
0x3b, 0x43, 0x1c, 0x9a, 0x2c, 0xa0, 0x25, 0x68, 0x6e, 0xeb, 0x2f, 0x42, 0x53, 0x45, 0xb9, 0x54,
0x95, 0xda, 0xd2, 0xea, 0x9f, 0x5e, 0x85, 0xda, 0x86, 0xea, 0xa9, 0xeb, 0xb6, 0xed, 0x68, 0xc8,
0x00, 0x44, 0x7b, 0xf1, 0xcd, 0x91, 0x6d, 0x89, 0x2f, 0x5c, 0xd0, 0xfd, 0xa8, 0x14, 0xf0, 0x41,
0x12, 0x90, 0xcb, 0x50, 0xf7, 0xad, 0x54, 0xf8, 0x18, 0xb0, 0x7c, 0x01, 0x99, 0x14, 0xdb, 0xbe,
0x6e, 0xe2, 0x7d, 0x7d, 0x70, 0xec, 0x77, 0x1b, 0x7e, 0x90, 0x91, 0xf6, 0x24, 0x41, 0x7d, 0x7c,
0xb7, 0x52, 0xf1, 0xb1, 0x8f, 0x25, 0x7c, 0xab, 0x29, 0x5f, 0x40, 0xcf, 0xe1, 0xd2, 0x26, 0x0e,
0xf9, 0x70, 0x1f, 0xe1, 0x6a, 0x36, 0xc2, 0x04, 0xf0, 0x39, 0x51, 0x6e, 0x41, 0x99, 0x8a, 0x1b,
0x4a, 0x73, 0xf3, 0xe1, 0x8f, 0x51, 0xbb, 0x37, 0xb3, 0x01, 0xc4, 0x6e, 0xdf, 0x87, 0xc5, 0xd8,
0x27, 0x6c, 0x28, 0xcd, 0x4a, 0xa5, 0x7f, 0x8c, 0xd8, 0xbd, 0x9b, 0x07, 0x54, 0xe0, 0x1a, 0x42,
0x2b, 0xda, 0xc3, 0x8f, 0xd2, 0x8a, 0x74, 0xa9, 0x5f, 0x1f, 0x75, 0xdf, 0xcd, 0x01, 0x29, 0x10,
0x99, 0xd0, 0x8e, 0x7f, 0x52, 0x85, 0xee, 0x4e, 0xdc, 0x20, 0x2a, 0x6c, 0xef, 0xe5, 0x82, 0x15,
0xe8, 0xce, 0xa8, 0x10, 0x24, 0xbe, 0xd2, 0x89, 0xcb, 0xb8, 0xbf, 0x4d, 0xd6, 0xe7, 0x43, 0xdd,
0x07, 0xb9, 0xe1, 0x05, 0xea, 0xdf, 0x64, 0xbd, 0x01, 0x69, 0x5f, 0xba, 0xa0, 0x0f, 0xd3, 0xb7,
0x9b, 0xf0, 0x89, 0x4e, 0x77, 0xf5, 0x3c, 0x4b, 0xc4, 0x21, 0x7e, 0x48, 0x1f, 0xf5, 0x53, 0xbe,
0x15, 0x89, 0xeb, 0x9d, 0xbf, 0x5f, 0xf6, 0x67, 0x30, 0xdd, 0x0f, 0xcf, 0xb1, 0x42, 0x1c, 0xc0,
0x8e, 0x7f, 0xb3, 0xe6, 0xab, 0xe1, 0x83, 0xa9, 0x52, 0x33, 0x9b, 0x0e, 0x7e, 0x0f, 0x16, 0x63,
0x7e, 0x1b, 0xe5, 0xf7, 0xed, 0xdd, 0x49, 0xc1, 0x15, 0x53, 0xc9, 0x58, 0x8f, 0x04, 0xca, 0x90,
0xfe, 0x94, 0x3e, 0x8a, 0xee, 0xdd, 0x3c, 0xa0, 0xe2, 0x22, 0x2e, 0x35, 0x97, 0xb1, 0x57, 0x72,
0x74, 0x2f, 0x7d, 0x8f, 0xf4, 0x17, 0xfe, 0xee, 0xfb, 0x39, 0xa1, 0x05, 0xd2, 0x13, 0xb8, 0x98,
0xd2, 0xa0, 0x80, 0xde, 0x9f, 0xc8, 0xac, 0x78, 0x67, 0x46, 0xf7, 0x7e, 0x5e, 0x70, 0x81, 0xf7,
0x37, 0x00, 0xed, 0x1d, 0xd9, 0xa7, 0xeb, 0xb6, 0x75, 0xa8, 0x0f, 0xc7, 0x8e, 0xca, 0x8a, 0xde,
0x59, 0xbe, 0x21, 0x09, 0x9a, 0x21, 0xa3, 0x13, 0x57, 0x08, 0xe4, 0x7d, 0x80, 0x4d, 0xec, 0x6d,
0x63, 0xcf, 0x21, 0x8a, 0xf1, 0x76, 0x96, 0xfb, 0xe3, 0x00, 0x3e, 0xaa, 0x77, 0xa6, 0xc2, 0x85,
0x5c, 0x51, 0x7b, 0x5b, 0xb5, 0xc6, 0xaa, 0x11, 0x6a, 0xa4, 0xbe, 0x97, 0xba, 0x3c, 0x0e, 0x96,
0xc1, 0xc8, 0x4c, 0x68, 0x81, 0xf2, 0x54, 0xb8, 0xf6, 0xd0, 0xab, 0xca, 0x64, 0xd7, 0x9e, 0x7c,
0x98, 0x8f, 0x9b, 0xbd, 0x09, 0xf0, 0x02, 0xf1, 0x97, 0x12, 0xed, 0x71, 0x89, 0x01, 0x3c, 0xd3,
0xbd, 0xa3, 0x5d, 0x43, 0xb5, 0xdc, 0x3c, 0x47, 0xa0, 0x80, 0xe7, 0x38, 0x02, 0x87, 0x17, 0x47,
0xd0, 0xa0, 0x19, 0x79, 0xec, 0x40, 0x69, 0x2d, 0xc9, 0x69, 0x0f, 0x3f, 0xdd, 0x3b, 0xd3, 0x01,
0x05, 0x96, 0x23, 0x68, 0xfa, 0xaa, 0xc4, 0x88, 0xfb, 0x6e, 0xd6, 0x49, 0x03, 0x98, 0x0c, 0x4b,
0x90, 0x0e, 0x1a, 0xb6, 0x04, 0xc9, 0x5a, 0x2e, 0xca, 0xf7, 0x06, 0x30, 0xc9, 0x12, 0x64, 0x17,
0x88, 0x99, 0xa9, 0x8b, 0xbd, 0x9b, 0xa4, 0xdb, 0xd1, 0xd4, 0x67, 0xa0, 0x54, 0x53, 0x97, 0xf1,
0x0c, 0x23, 0x5f, 0x40, 0xcf, 0xa0, 0xc2, 0xff, 0x03, 0xc3, 0x5b, 0x93, 0x6b, 0x3a, 0x7c, 0xf7,
0xdb, 0x53, 0xa0, 0xc4, 0xc6, 0xc7, 0xb0, 0x92, 0x51, 0xd1, 0x49, 0x75, 0xc1, 0x93, 0xab, 0x3f,
0xd3, 0x9c, 0x83, 0x0a, 0x28, 0xf9, 0x99, 0x63, 0x2a, 0x9b, 0x32, 0xbf, 0x86, 0xcc, 0x81, 0x22,
0xf9, 0xa5, 0x62, 0x2a, 0x8a, 0xcc, 0x0f, 0x1a, 0xa7, 0xa1, 0xe8, 0xc3, 0x52, 0xa2, 0x2e, 0x80,
0xde, 0xcb, 0xf0, 0xa0, 0x69, 0xd5, 0x83, 0x69, 0x08, 0x86, 0xf0, 0x46, 0x6a, 0x0e, 0x9c, 0x1a,
0x11, 0x4c, 0xca, 0x96, 0xa7, 0x21, 0x1a, 0xc0, 0xc5, 0x94, 0xcc, 0x37, 0xd5, 0x97, 0x65, 0x67,
0xc8, 0xd3, 0x90, 0x1c, 0x41, 0x77, 0xcd, 0xb1, 0x55, 0x6d, 0xa0, 0xba, 0xde, 0x23, 0xc3, 0xc3,
0x0e, 0x49, 0xcf, 0xfc, 0x90, 0x2c, 0x4e, 0x37, 0x3e, 0xa0, 0x70, 0x01, 0x54, 0x4e, 0x4c, 0x07,
0x50, 0xa7, 0xdf, 0x0e, 0xb0, 0xcf, 0xee, 0x51, 0xba, 0xfb, 0x09, 0x41, 0x64, 0xd8, 0xb4, 0x34,
0x40, 0x5f, 0x5f, 0x56, 0xbf, 0xaa, 0x41, 0xd5, 0x6f, 0xd5, 0xfe, 0x9a, 0xb3, 0xc3, 0xd7, 0x90,
0xae, 0x7d, 0x0f, 0x16, 0x63, 0x5f, 0x51, 0xa6, 0x9a, 0xb8, 0xf4, 0x2f, 0x2d, 0xa7, 0xb1, 0xeb,
0x19, 0xff, 0x1f, 0x3f, 0x22, 0x72, 0x7b, 0x27, 0x2b, 0xe5, 0x8b, 0x07, 0x6d, 0x53, 0x36, 0xfe,
0xff, 0x1d, 0x2a, 0xed, 0x00, 0x84, 0x82, 0xa4, 0xc9, 0xcd, 0x4f, 0xc4, 0xef, 0x4f, 0xa3, 0x96,
0x99, 0x1a, 0x07, 0xbd, 0x9b, 0xa7, 0x03, 0x25, 0xdb, 0x93, 0x65, 0x47, 0x3f, 0x4f, 0xa1, 0x11,
0x6e, 0x4b, 0x44, 0xa9, 0xff, 0x51, 0x26, 0xd9, 0xb7, 0x38, 0xed, 0x16, 0xdb, 0xe7, 0x74, 0x90,
0x53, 0xb6, 0x73, 0x89, 0x1b, 0x89, 0x3f, 0x07, 0x64, 0xb8, 0x91, 0x8c, 0x47, 0x88, 0xd4, 0x80,
0x22, 0xfb, 0x8d, 0x81, 0x65, 0xfe, 0xf1, 0x1a, 0x77, 0x6a, 0xe6, 0x9f, 0xf1, 0x6a, 0x90, 0x9a,
0xf9, 0x67, 0x15, 0xcd, 0xe5, 0x0b, 0x6b, 0x1f, 0x7d, 0xf7, 0xc3, 0xa1, 0xee, 0x1d, 0x8d, 0x0f,
0xc8, 0xed, 0x1f, 0xb0, 0xa5, 0xef, 0xeb, 0x36, 0xff, 0xeb, 0x81, 0x2f, 0xee, 0x0f, 0xe8, 0x6e,
0x0f, 0xc8, 0x6e, 0xa3, 0x83, 0x83, 0x0a, 0x1d, 0x7d, 0xf4, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff,
0x6a, 0x0f, 0xa9, 0xe2, 0xa5, 0x4c, 0x00, 0x00,
// 4284 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3c, 0x4b, 0x6f, 0x1c, 0x47,
0x7a, 0xea, 0x79, 0x71, 0xe6, 0x9b, 0x07, 0x87, 0x25, 0x99, 0x1c, 0x8d, 0x9e, 0x6e, 0x59, 0xb6,
0x2c, 0xcb, 0x92, 0x4d, 0xc7, 0x58, 0x27, 0x5a, 0x7b, 0x21, 0x92, 0x16, 0x35, 0x09, 0xc9, 0xe5,
0x36, 0x29, 0x0b, 0xd8, 0x0d, 0x30, 0x68, 0x4e, 0x17, 0x87, 0xbd, 0xec, 0xc7, 0xa8, 0xbb, 0x87,
0x14, 0x37, 0x87, 0x35, 0xb2, 0x40, 0x80, 0x0d, 0x82, 0x6c, 0x1e, 0x08, 0x90, 0x00, 0x09, 0x10,
0xe4, 0xb4, 0x49, 0x10, 0x20, 0xc0, 0x22, 0x87, 0xe4, 0x92, 0xab, 0x91, 0x1c, 0x16, 0xb9, 0xe4,
0x07, 0xe4, 0x90, 0xe4, 0x9e, 0xeb, 0x1e, 0x82, 0x7a, 0x74, 0xf5, 0x7b, 0xa6, 0x39, 0x23, 0x59,
0x41, 0xf6, 0xc6, 0xfa, 0xe6, 0xab, 0xfa, 0xaa, 0xbe, 0xfa, 0xde, 0xf5, 0x35, 0xa1, 0xad, 0xa9,
0x9e, 0xda, 0x1f, 0xd8, 0xb6, 0xa3, 0xdd, 0x1f, 0x39, 0xb6, 0x67, 0xa3, 0x25, 0x53, 0x37, 0x4e,
0xc6, 0x2e, 0x1b, 0xdd, 0x27, 0x3f, 0x77, 0x1b, 0x03, 0xdb, 0x34, 0x6d, 0x8b, 0x81, 0xba, 0x2d,
0xdd, 0xf2, 0xb0, 0x63, 0xa9, 0x06, 0x1f, 0x37, 0xc2, 0x13, 0xba, 0x0d, 0x77, 0x70, 0x84, 0x4d,
0x95, 0x8d, 0xe4, 0x05, 0x28, 0x7f, 0x6e, 0x8e, 0xbc, 0x33, 0xf9, 0x4f, 0x25, 0x68, 0x3c, 0x36,
0xc6, 0xee, 0x91, 0x82, 0x9f, 0x8f, 0xb1, 0xeb, 0xa1, 0x0f, 0xa0, 0x74, 0xa0, 0xba, 0xb8, 0x23,
0xdd, 0x94, 0xee, 0xd4, 0x57, 0xaf, 0xde, 0x8f, 0x50, 0xe5, 0xf4, 0xb6, 0xdd, 0xe1, 0x9a, 0xea,
0x62, 0x85, 0x62, 0x22, 0x04, 0x25, 0xed, 0xa0, 0xb7, 0xd1, 0x29, 0xdc, 0x94, 0xee, 0x14, 0x15,
0xfa, 0x37, 0xba, 0x0e, 0xe0, 0xe2, 0xa1, 0x89, 0x2d, 0xaf, 0xb7, 0xe1, 0x76, 0x8a, 0x37, 0x8b,
0x77, 0x8a, 0x4a, 0x08, 0x82, 0x64, 0x68, 0x0c, 0x6c, 0xc3, 0xc0, 0x03, 0x4f, 0xb7, 0xad, 0xde,
0x46, 0xa7, 0x44, 0xe7, 0x46, 0x60, 0xf2, 0x7f, 0x4a, 0xd0, 0xe4, 0x5b, 0x73, 0x47, 0xb6, 0xe5,
0x62, 0xf4, 0x11, 0x54, 0x5c, 0x4f, 0xf5, 0xc6, 0x2e, 0xdf, 0xdd, 0x95, 0xd4, 0xdd, 0xed, 0x51,
0x14, 0x85, 0xa3, 0xa6, 0x6e, 0x2f, 0x4e, 0xbe, 0x98, 0x24, 0x1f, 0x3b, 0x42, 0x29, 0x71, 0x84,
0x3b, 0xb0, 0x78, 0x48, 0x76, 0xb7, 0x17, 0x20, 0x95, 0x29, 0x52, 0x1c, 0x4c, 0x56, 0xf2, 0x74,
0x13, 0x7f, 0xfb, 0x70, 0x0f, 0xab, 0x46, 0xa7, 0x42, 0x69, 0x85, 0x20, 0xf2, 0xbf, 0x49, 0xd0,
0x16, 0xe8, 0xfe, 0x3d, 0x5c, 0x82, 0xf2, 0xc0, 0x1e, 0x5b, 0x1e, 0x3d, 0x6a, 0x53, 0x61, 0x03,
0xf4, 0x26, 0x34, 0x06, 0x47, 0xaa, 0x65, 0x61, 0xa3, 0x6f, 0xa9, 0x26, 0xa6, 0x87, 0xaa, 0x29,
0x75, 0x0e, 0xdb, 0x51, 0x4d, 0x9c, 0xeb, 0x6c, 0x37, 0xa1, 0x3e, 0x52, 0x1d, 0x4f, 0x8f, 0x70,
0x3f, 0x0c, 0x42, 0x5d, 0xa8, 0xea, 0x6e, 0xcf, 0x1c, 0xd9, 0x8e, 0xd7, 0x29, 0xdf, 0x94, 0xee,
0x54, 0x15, 0x31, 0x26, 0x14, 0x74, 0xfa, 0xd7, 0xbe, 0xea, 0x1e, 0xf7, 0x36, 0xf8, 0x89, 0x22,
0x30, 0xf9, 0x2f, 0x25, 0x58, 0x7e, 0xe4, 0xba, 0xfa, 0xd0, 0x4a, 0x9c, 0x6c, 0x19, 0x2a, 0x96,
0xad, 0xe1, 0xde, 0x06, 0x3d, 0x5a, 0x51, 0xe1, 0x23, 0x74, 0x05, 0x6a, 0x23, 0x8c, 0x9d, 0xbe,
0x63, 0x1b, 0xfe, 0xc1, 0xaa, 0x04, 0xa0, 0xd8, 0x06, 0x46, 0xdf, 0x81, 0x25, 0x37, 0xb6, 0x10,
0x93, 0xab, 0xfa, 0xea, 0xad, 0xfb, 0x09, 0xcd, 0xb8, 0x1f, 0x27, 0xaa, 0x24, 0x67, 0xcb, 0x5f,
0x16, 0xe0, 0xa2, 0xc0, 0x63, 0x7b, 0x25, 0x7f, 0x13, 0xce, 0xbb, 0x78, 0x28, 0xb6, 0xc7, 0x06,
0x79, 0x38, 0x2f, 0xae, 0xac, 0x18, 0xbe, 0xb2, 0x1c, 0xa2, 0x1e, 0xbf, 0x8f, 0x72, 0xf2, 0x3e,
0x6e, 0x40, 0x1d, 0xbf, 0x18, 0xe9, 0x0e, 0xee, 0x13, 0xc1, 0xa1, 0x2c, 0x2f, 0x29, 0xc0, 0x40,
0xfb, 0xba, 0x19, 0xd6, 0x8d, 0x85, 0xdc, 0xba, 0x21, 0xff, 0x95, 0x04, 0x2b, 0x89, 0x5b, 0xe2,
0xca, 0xa6, 0x40, 0x9b, 0x9e, 0x3c, 0xe0, 0x0c, 0x51, 0x3b, 0xc2, 0xf0, 0xb7, 0x27, 0x31, 0x3c,
0x40, 0x57, 0x12, 0xf3, 0x43, 0x9b, 0x2c, 0xe4, 0xdf, 0xe4, 0x31, 0xac, 0x6c, 0x62, 0x8f, 0x13,
0x20, 0xbf, 0x61, 0x77, 0x76, 0x63, 0x15, 0xd5, 0xea, 0x42, 0x5c, 0xab, 0xe5, 0xbf, 0x2f, 0x08,
0x5d, 0xa4, 0xa4, 0x7a, 0xd6, 0xa1, 0x8d, 0xae, 0x42, 0x4d, 0xa0, 0x70, 0xa9, 0x08, 0x00, 0xe8,
0x1b, 0x50, 0x26, 0x3b, 0x65, 0x22, 0xd1, 0x5a, 0x7d, 0x33, 0xfd, 0x4c, 0xa1, 0x35, 0x15, 0x86,
0x8f, 0x7a, 0xd0, 0x72, 0x3d, 0xd5, 0xf1, 0xfa, 0x23, 0xdb, 0xa5, 0xf7, 0x4c, 0x05, 0xa7, 0xbe,
0x2a, 0x47, 0x57, 0x10, 0x66, 0x7d, 0xdb, 0x1d, 0xee, 0x72, 0x4c, 0xa5, 0x49, 0x67, 0xfa, 0x43,
0xf4, 0x39, 0x34, 0xb0, 0xa5, 0x05, 0x0b, 0x95, 0x72, 0x2f, 0x54, 0xc7, 0x96, 0x26, 0x96, 0x09,
0xee, 0xa7, 0x9c, 0xff, 0x7e, 0x7e, 0x4f, 0x82, 0x4e, 0xf2, 0x82, 0xe6, 0x31, 0xd9, 0x0f, 0xd9,
0x24, 0xcc, 0x2e, 0x68, 0xa2, 0x86, 0x8b, 0x4b, 0x52, 0xf8, 0x14, 0xf9, 0x4f, 0x24, 0x78, 0x23,
0xd8, 0x0e, 0xfd, 0xe9, 0x55, 0x49, 0x0b, 0xba, 0x0b, 0x6d, 0xdd, 0x1a, 0x18, 0x63, 0x0d, 0x3f,
0xb5, 0x9e, 0x60, 0xd5, 0xf0, 0x8e, 0xce, 0xe8, 0x1d, 0x56, 0x95, 0x04, 0x5c, 0xfe, 0x91, 0x04,
0xcb, 0xf1, 0x7d, 0xcd, 0xc3, 0xa4, 0x5f, 0x81, 0xb2, 0x6e, 0x1d, 0xda, 0x3e, 0x8f, 0xae, 0x4f,
0x50, 0x4a, 0x42, 0x8b, 0x21, 0xcb, 0x26, 0x5c, 0xd9, 0xc4, 0x5e, 0xcf, 0x72, 0xb1, 0xe3, 0xad,
0xe9, 0x96, 0x61, 0x0f, 0x77, 0x55, 0xef, 0x68, 0x0e, 0x85, 0x8a, 0xe8, 0x46, 0x21, 0xa6, 0x1b,
0xf2, 0x4f, 0x25, 0xb8, 0x9a, 0x4e, 0x8f, 0x1f, 0xbd, 0x0b, 0xd5, 0x43, 0x1d, 0x1b, 0x1a, 0xe1,
0xaf, 0x44, 0xf9, 0x2b, 0xc6, 0x44, 0xb1, 0x46, 0x04, 0x99, 0x9f, 0xf0, 0xcd, 0x0c, 0x69, 0xde,
0xf3, 0x1c, 0xdd, 0x1a, 0x6e, 0xe9, 0xae, 0xa7, 0x30, 0xfc, 0x10, 0x3f, 0x8b, 0xf9, 0xc5, 0xf8,
0x77, 0x25, 0xb8, 0xbe, 0x89, 0xbd, 0x75, 0x61, 0x97, 0xc9, 0xef, 0xba, 0xeb, 0xe9, 0x03, 0xf7,
0xe5, 0xc6, 0x46, 0x39, 0x1c, 0xb4, 0xfc, 0x13, 0x09, 0x6e, 0x64, 0x6e, 0x86, 0xb3, 0x8e, 0xdb,
0x1d, 0xdf, 0x2a, 0xa7, 0xdb, 0x9d, 0xdf, 0xc0, 0x67, 0x5f, 0xa8, 0xc6, 0x18, 0xef, 0xaa, 0xba,
0xc3, 0xec, 0xce, 0x8c, 0x56, 0xf8, 0xef, 0x24, 0xb8, 0xb6, 0x89, 0xbd, 0x5d, 0xdf, 0x27, 0xbd,
0x46, 0xee, 0x10, 0x9c, 0x90, 0x6f, 0xf4, 0x83, 0xb3, 0x08, 0x4c, 0xfe, 0x7d, 0x76, 0x9d, 0xa9,
0xfb, 0x7d, 0x2d, 0x0c, 0xbc, 0x4e, 0x35, 0x21, 0xa4, 0x92, 0xeb, 0x2c, 0x74, 0xe0, 0xec, 0x93,
0xff, 0x42, 0x82, 0xcb, 0x8f, 0x06, 0xcf, 0xc7, 0xba, 0x83, 0x39, 0xd2, 0x96, 0x3d, 0x38, 0x9e,
0x9d, 0xb9, 0x41, 0x98, 0x55, 0x88, 0x84, 0x59, 0xd3, 0x42, 0xf3, 0x65, 0xa8, 0x78, 0x2c, 0xae,
0x63, 0x91, 0x0a, 0x1f, 0xd1, 0xfd, 0x29, 0xd8, 0xc0, 0xaa, 0xfb, 0x7f, 0x73, 0x7f, 0x3f, 0x29,
0x41, 0xe3, 0x0b, 0x1e, 0x8e, 0x51, 0xaf, 0x1d, 0x97, 0x24, 0x29, 0x3d, 0xf0, 0x0a, 0x45, 0x70,
0x69, 0x41, 0xdd, 0x26, 0x34, 0x5d, 0x8c, 0x8f, 0x67, 0xf1, 0xd1, 0x0d, 0x32, 0x51, 0xf8, 0xd6,
0x2d, 0x58, 0x1a, 0x5b, 0x34, 0x35, 0xc0, 0x1a, 0x67, 0x20, 0x93, 0xdc, 0xe9, 0xb6, 0x3b, 0x39,
0x11, 0x3d, 0xe1, 0xd9, 0x47, 0x68, 0xad, 0x72, 0xae, 0xb5, 0xe2, 0xd3, 0x50, 0x0f, 0xda, 0x9a,
0x63, 0x8f, 0x46, 0x58, 0xeb, 0xbb, 0xfe, 0x52, 0x95, 0x7c, 0x4b, 0xf1, 0x79, 0x62, 0xa9, 0x0f,
0xe0, 0x62, 0x7c, 0xa7, 0x3d, 0x8d, 0x04, 0xa4, 0xe4, 0x0e, 0xd3, 0x7e, 0x42, 0xf7, 0x60, 0x29,
0x89, 0x5f, 0xa5, 0xf8, 0xc9, 0x1f, 0xd0, 0xfb, 0x80, 0x62, 0x5b, 0x25, 0xe8, 0x35, 0x86, 0x1e,
0xdd, 0x4c, 0x4f, 0x73, 0xe5, 0x1f, 0x4b, 0xb0, 0xfc, 0x4c, 0xf5, 0x06, 0x47, 0x1b, 0x26, 0xd7,
0xb5, 0x39, 0x6c, 0xd5, 0xa7, 0x50, 0x3b, 0xe1, 0x72, 0xe1, 0x3b, 0xa4, 0x1b, 0x29, 0xfc, 0x09,
0x4b, 0xa0, 0x12, 0xcc, 0x90, 0xbf, 0x92, 0xe0, 0xd2, 0xe3, 0x50, 0x5e, 0xf8, 0x1a, 0xac, 0xe6,
0xb4, 0x84, 0xf6, 0x6d, 0x68, 0x99, 0xaa, 0x73, 0x9c, 0xc8, 0x67, 0x63, 0x50, 0xf9, 0x05, 0x00,
0x1f, 0x6d, 0xbb, 0xc3, 0x19, 0xf6, 0xff, 0x09, 0x2c, 0x70, 0xaa, 0xdc, 0x7c, 0x4e, 0x93, 0x33,
0x1f, 0x5d, 0xfe, 0xc3, 0x0a, 0xd4, 0x43, 0x3f, 0xa0, 0x16, 0x14, 0x84, 0x5e, 0x17, 0x52, 0xb8,
0x50, 0x98, 0x9e, 0x6a, 0x15, 0x93, 0xa9, 0xd6, 0x6d, 0x68, 0xe9, 0x34, 0x5e, 0xe9, 0xf3, 0xdb,
0xa3, 0x86, 0xa6, 0xa6, 0x34, 0x19, 0x94, 0x8b, 0x12, 0xba, 0x0e, 0x75, 0x6b, 0x6c, 0xf6, 0xed,
0xc3, 0xbe, 0x63, 0x9f, 0xba, 0x3c, 0x67, 0xab, 0x59, 0x63, 0xf3, 0xdb, 0x87, 0x8a, 0x7d, 0xea,
0x06, 0x69, 0x41, 0xe5, 0x9c, 0x69, 0xc1, 0x75, 0xa8, 0x9b, 0xea, 0x0b, 0xb2, 0x6a, 0xdf, 0x1a,
0x9b, 0x34, 0x9d, 0x2b, 0x2a, 0x35, 0x53, 0x7d, 0xa1, 0xd8, 0xa7, 0x3b, 0x63, 0x13, 0xdd, 0x81,
0xb6, 0xa1, 0xba, 0x5e, 0x3f, 0x9c, 0x0f, 0x56, 0x69, 0x3e, 0xd8, 0x22, 0xf0, 0xcf, 0x83, 0x9c,
0x30, 0x99, 0x60, 0xd4, 0xe6, 0x48, 0x30, 0x34, 0xd3, 0x08, 0x16, 0x82, 0xfc, 0x09, 0x86, 0x66,
0x1a, 0x62, 0x99, 0x4f, 0x60, 0xe1, 0x80, 0x46, 0x81, 0x6e, 0xa7, 0x9e, 0x69, 0x63, 0x1e, 0x93,
0x00, 0x90, 0x05, 0x8b, 0x8a, 0x8f, 0x8e, 0xbe, 0x09, 0x35, 0xea, 0x7c, 0xe9, 0xdc, 0x46, 0xae,
0xb9, 0xc1, 0x04, 0x32, 0x5b, 0xc3, 0x86, 0xa7, 0xd2, 0xd9, 0xcd, 0x7c, 0xb3, 0xc5, 0x04, 0x62,
0xd7, 0x06, 0x0e, 0x56, 0x3d, 0xac, 0xad, 0x9d, 0xad, 0xdb, 0xe6, 0x48, 0xa5, 0xc2, 0xd4, 0x69,
0xd1, 0x48, 0x3f, 0xed, 0x27, 0xa2, 0x4b, 0x03, 0x31, 0x7a, 0xec, 0xd8, 0x66, 0x67, 0x91, 0xe9,
0x52, 0x14, 0x8a, 0xae, 0x01, 0xf8, 0x16, 0x4d, 0xf5, 0x3a, 0x6d, 0x7a, 0x8b, 0x35, 0x0e, 0x79,
0x44, 0xcb, 0x3d, 0xba, 0xdb, 0x67, 0x85, 0x15, 0xdd, 0x1a, 0x76, 0x96, 0x28, 0xc5, 0xba, 0x5f,
0x89, 0xd1, 0xad, 0xa1, 0xfc, 0x43, 0xb8, 0x14, 0x08, 0x51, 0xe8, 0xc2, 0x92, 0x77, 0x2f, 0xcd,
0x7a, 0xf7, 0x93, 0x43, 0xfc, 0x9f, 0x97, 0x60, 0x79, 0x4f, 0x3d, 0xc1, 0xaf, 0x3e, 0x9b, 0xc8,
0x65, 0xe5, 0xb6, 0x60, 0x89, 0x26, 0x10, 0xab, 0xa1, 0xfd, 0x4c, 0x70, 0xb3, 0xe1, 0x1b, 0x4f,
0x4e, 0x44, 0xdf, 0x22, 0xf1, 0x01, 0x1e, 0x1c, 0xef, 0xda, 0x7a, 0xe0, 0x62, 0xaf, 0xa5, 0xac,
0xb3, 0x2e, 0xb0, 0x94, 0xf0, 0x0c, 0xb4, 0x0b, 0x8b, 0xd1, 0x6b, 0xf0, 0x9d, 0xeb, 0x3b, 0x13,
0x73, 0xda, 0x80, 0xfb, 0x4a, 0x2b, 0x72, 0x19, 0x2e, 0xea, 0xc0, 0x02, 0xf7, 0x8c, 0xd4, 0x34,
0x54, 0x15, 0x7f, 0x88, 0x76, 0xe1, 0x22, 0x3b, 0xc1, 0x1e, 0x97, 0x7b, 0x76, 0xf8, 0x6a, 0xae,
0xc3, 0xa7, 0x4d, 0x8d, 0xaa, 0x4d, 0xed, 0xbc, 0x6a, 0xd3, 0x81, 0x05, 0x2e, 0xca, 0xd4, 0x5c,
0x54, 0x15, 0x7f, 0x48, 0xae, 0x39, 0x10, 0xea, 0x3a, 0xfd, 0x2d, 0x00, 0x90, 0x4c, 0x0c, 0x02,
0x7e, 0x4e, 0xa9, 0xbe, 0x7c, 0x06, 0x55, 0x21, 0xe1, 0x85, 0xdc, 0x12, 0x2e, 0xe6, 0xc4, 0xcd,
0x78, 0x31, 0x66, 0xc6, 0xe5, 0x7f, 0x95, 0xa0, 0xb1, 0x41, 0x8e, 0xb4, 0x65, 0x0f, 0xa9, 0xd3,
0xb9, 0x0d, 0x2d, 0x07, 0x0f, 0x6c, 0x47, 0xeb, 0x63, 0xcb, 0x73, 0x74, 0xcc, 0x92, 0xf6, 0x92,
0xd2, 0x64, 0xd0, 0xcf, 0x19, 0x90, 0xa0, 0x11, 0xcb, 0xec, 0x7a, 0xaa, 0x39, 0xea, 0x1f, 0x12,
0x0b, 0x50, 0x60, 0x68, 0x02, 0x4a, 0x0d, 0xc0, 0x9b, 0xd0, 0x08, 0xd0, 0x3c, 0x9b, 0xd2, 0x2f,
0x29, 0x75, 0x01, 0xdb, 0xb7, 0xd1, 0x5b, 0xd0, 0xa2, 0x3c, 0xed, 0x1b, 0xf6, 0xb0, 0x4f, 0x12,
0x5c, 0xee, 0x8f, 0x1a, 0x1a, 0xdf, 0x16, 0xb9, 0xab, 0x28, 0x96, 0xab, 0xff, 0x00, 0x73, 0x8f,
0x24, 0xb0, 0xf6, 0xf4, 0x1f, 0x60, 0xf9, 0x5f, 0x24, 0x68, 0x6e, 0xa8, 0x9e, 0xba, 0x63, 0x6b,
0x78, 0x7f, 0x46, 0xff, 0x9d, 0xa3, 0x12, 0x7a, 0x15, 0x6a, 0xe2, 0x04, 0xfc, 0x48, 0x01, 0x00,
0x3d, 0x86, 0x96, 0x1f, 0x69, 0xf6, 0x59, 0x02, 0x56, 0xca, 0x8c, 0xa7, 0x42, 0x0e, 0xd2, 0x55,
0x9a, 0xfe, 0x34, 0x3a, 0x94, 0x1f, 0x43, 0x23, 0xfc, 0x33, 0xa1, 0xba, 0x17, 0x17, 0x14, 0x01,
0x20, 0xd2, 0xb8, 0x33, 0x36, 0xc9, 0x9d, 0x72, 0xc3, 0xe2, 0x0f, 0xe5, 0x1f, 0x49, 0xd0, 0xe4,
0x5e, 0x7d, 0x4f, 0xbc, 0x19, 0xd0, 0xa3, 0x49, 0xf4, 0x68, 0xf4, 0x6f, 0xf4, 0x6b, 0xd1, 0x32,
0xdf, 0x5b, 0xa9, 0x46, 0x80, 0x2e, 0x42, 0x63, 0xce, 0x88, 0x4b, 0xcf, 0x93, 0xf2, 0x7f, 0x49,
0x04, 0x8d, 0x5f, 0x0d, 0x15, 0xb4, 0x0e, 0x2c, 0xa8, 0x9a, 0xe6, 0x60, 0xd7, 0xe5, 0xfb, 0xf0,
0x87, 0xe4, 0x97, 0x13, 0xec, 0xb8, 0xbe, 0xc8, 0x17, 0x15, 0x7f, 0x88, 0xbe, 0x09, 0x55, 0x11,
0xa4, 0xb2, 0xea, 0xf8, 0xcd, 0xec, 0x7d, 0xf2, 0x04, 0x55, 0xcc, 0x90, 0xff, 0xa1, 0x00, 0x2d,
0xce, 0xb0, 0x35, 0xee, 0x76, 0x27, 0x2b, 0xdf, 0x1a, 0x34, 0x0e, 0x03, 0xdd, 0x9f, 0x54, 0x8a,
0x0a, 0x9b, 0x88, 0xc8, 0x9c, 0x69, 0x0a, 0x18, 0x75, 0xfc, 0xa5, 0xb9, 0x1c, 0x7f, 0xf9, 0xbc,
0x16, 0x2c, 0x19, 0x0a, 0x56, 0x52, 0x42, 0x41, 0xf9, 0x37, 0xa1, 0x1e, 0x5a, 0x80, 0x5a, 0x68,
0x56, 0xc3, 0xe2, 0x1c, 0xf3, 0x87, 0xe8, 0xa3, 0x20, 0xfc, 0x61, 0xac, 0xba, 0x9c, 0xb2, 0x97,
0x58, 0xe4, 0x23, 0xff, 0xb3, 0x04, 0x15, 0xbe, 0xf2, 0x0d, 0xa8, 0x73, 0xa3, 0x43, 0x43, 0x43,
0xb6, 0x3a, 0x70, 0x10, 0x89, 0x0d, 0x5f, 0x9e, 0xd5, 0xb9, 0x0c, 0xd5, 0x98, 0xbd, 0x59, 0xe0,
0x6e, 0xc1, 0xff, 0x29, 0x64, 0x64, 0xc8, 0x4f, 0xc4, 0xbe, 0xa0, 0x4b, 0x50, 0x36, 0xec, 0xa1,
0x78, 0x13, 0x62, 0x03, 0x92, 0xfc, 0xac, 0x6c, 0x62, 0x4f, 0xc1, 0x03, 0xfb, 0x04, 0x3b, 0x67,
0xf3, 0xd7, 0x3e, 0x1f, 0x86, 0xc4, 0x3c, 0x67, 0x2e, 0x26, 0x26, 0xa0, 0x87, 0xc1, 0x25, 0x14,
0xd3, 0x0a, 0x3f, 0x61, 0xbb, 0xc3, 0x85, 0x34, 0xb8, 0x8c, 0x3f, 0x60, 0x55, 0xdc, 0xe8, 0x51,
0x66, 0x8d, 0x76, 0x5e, 0x4a, 0xbe, 0x22, 0xff, 0x5c, 0x82, 0x6e, 0x50, 0x59, 0x72, 0xd7, 0xce,
0xe6, 0x7d, 0x23, 0x79, 0x39, 0x69, 0xd4, 0xaf, 0x8a, 0x22, 0x3e, 0x51, 0xda, 0x5c, 0x09, 0x90,
0x5f, 0xc2, 0xb7, 0x68, 0x91, 0x3a, 0x79, 0xa0, 0x79, 0x44, 0xa6, 0x0b, 0x55, 0x51, 0xde, 0x60,
0x85, 0x7c, 0x31, 0x96, 0xff, 0x58, 0x82, 0xcb, 0x9b, 0xd8, 0x7b, 0x1c, 0xad, 0x8c, 0xbc, 0xee,
0x7b, 0x35, 0xe9, 0xb5, 0x26, 0x36, 0xf5, 0xaa, 0x98, 0xf0, 0x3b, 0x12, 0x74, 0x38, 0x15, 0x4a,
0x93, 0x64, 0x33, 0x06, 0xf6, 0xb0, 0xf6, 0x75, 0x67, 0xf9, 0xbf, 0x90, 0xa0, 0x1d, 0xf6, 0xa4,
0xd4, 0x19, 0x7e, 0x0c, 0x65, 0x5a, 0x4c, 0xe1, 0x3b, 0x98, 0xaa, 0xee, 0x0c, 0x9b, 0x98, 0x62,
0x1a, 0x3e, 0xef, 0x0b, 0xa7, 0xcf, 0x87, 0x81, 0x3b, 0x2f, 0x9e, 0xdf, 0x9d, 0xf3, 0xf0, 0xc6,
0x1e, 0x93, 0x75, 0x59, 0x15, 0x32, 0x00, 0xa0, 0x4f, 0xa1, 0xc2, 0x7a, 0x2d, 0xf8, 0x23, 0xda,
0xed, 0xe8, 0xd2, 0xbc, 0x0f, 0x23, 0x54, 0xda, 0xa7, 0x00, 0x85, 0x4f, 0x92, 0x7f, 0x1d, 0x96,
0x83, 0x44, 0x92, 0x91, 0x9d, 0x55, 0x10, 0xe5, 0x7f, 0x97, 0xe0, 0xe2, 0xde, 0x99, 0x35, 0x88,
0x8b, 0xf4, 0x32, 0x54, 0x46, 0x86, 0x1a, 0x14, 0x45, 0xf9, 0x88, 0x86, 0x76, 0x8c, 0x36, 0xd6,
0x88, 0x5f, 0x60, 0x3c, 0xab, 0x0b, 0xd8, 0xbe, 0x3d, 0xd5, 0x5d, 0xdf, 0x16, 0x99, 0x2f, 0xd6,
0x98, 0x07, 0x62, 0x95, 0xa6, 0xa6, 0x80, 0x52, 0x0f, 0xf4, 0x29, 0x00, 0x75, 0xd2, 0xfd, 0xf3,
0x38, 0x66, 0x3a, 0x63, 0x8b, 0x98, 0xe1, 0x9f, 0x15, 0xa0, 0x13, 0xe2, 0xd2, 0xd7, 0x1d, 0xb3,
0x64, 0x64, 0x5a, 0xc5, 0x97, 0x94, 0x69, 0x95, 0xe6, 0x8f, 0x53, 0xca, 0x69, 0x71, 0xca, 0x7f,
0x14, 0xa0, 0x15, 0x70, 0x6d, 0xd7, 0x50, 0xad, 0x4c, 0x49, 0xd8, 0x13, 0x31, 0x7a, 0x94, 0x4f,
0xef, 0xa5, 0xe9, 0x49, 0xc6, 0x45, 0x28, 0xb1, 0x25, 0xd0, 0x35, 0x7a, 0xe9, 0x8e, 0xc7, 0x6a,
0x56, 0x3c, 0x2f, 0x60, 0x0a, 0xa9, 0x9b, 0x18, 0xdd, 0x03, 0xc4, 0xb5, 0xa8, 0xaf, 0x5b, 0x7d,
0x17, 0x0f, 0x6c, 0x4b, 0x63, 0xfa, 0x55, 0x56, 0xda, 0xfc, 0x97, 0x9e, 0xb5, 0xc7, 0xe0, 0xe8,
0x63, 0x28, 0x79, 0x67, 0x23, 0x16, 0x81, 0xb4, 0x52, 0x7d, 0x78, 0xb0, 0xaf, 0xfd, 0xb3, 0x11,
0x56, 0x28, 0xba, 0xdf, 0x8c, 0xe3, 0x39, 0xea, 0x09, 0x0f, 0xe7, 0x4a, 0x4a, 0x08, 0x42, 0x2c,
0x86, 0xcf, 0xc3, 0x05, 0x16, 0xf6, 0xf0, 0x21, 0x93, 0x6c, 0x5f, 0x69, 0xfb, 0x9e, 0x67, 0xd0,
0xaa, 0x1b, 0x95, 0x6c, 0x1f, 0xba, 0xef, 0x19, 0xf2, 0x3f, 0x16, 0xa0, 0x1d, 0x50, 0x56, 0xb0,
0x3b, 0x36, 0xb2, 0x15, 0x6e, 0x72, 0xbd, 0x63, 0x9a, 0xae, 0x7d, 0x0b, 0xea, 0xfc, 0xda, 0xcf,
0x21, 0x36, 0xc0, 0xa6, 0x6c, 0x4d, 0x90, 0xe3, 0xf2, 0x4b, 0x92, 0xe3, 0xca, 0x39, 0xe5, 0x58,
0xfe, 0xa9, 0x04, 0x6f, 0x24, 0x8c, 0xdf, 0x44, 0x06, 0x4e, 0xce, 0xca, 0xb8, 0x51, 0x8c, 0x2f,
0xc9, 0xcd, 0xf8, 0x43, 0xa8, 0x38, 0x74, 0x75, 0xfe, 0xa6, 0x73, 0x6b, 0xa2, 0x0c, 0xb1, 0x8d,
0x28, 0x7c, 0x8a, 0xfc, 0x47, 0x12, 0xac, 0x24, 0xb7, 0x3a, 0x87, 0x6f, 0x5e, 0x83, 0x05, 0xb6,
0xb4, 0xaf, 0x6a, 0x77, 0x26, 0xab, 0x5a, 0xc0, 0x1c, 0xc5, 0x9f, 0x28, 0xef, 0xc1, 0xb2, 0xef,
0xc2, 0x03, 0x06, 0x6f, 0x63, 0x4f, 0x9d, 0x90, 0x93, 0xdc, 0x80, 0x3a, 0x0b, 0x6e, 0x59, 0xac,
0xcf, 0xb2, 0x79, 0x38, 0x10, 0x45, 0x30, 0xf9, 0xbf, 0x25, 0xb8, 0x44, 0x7d, 0x60, 0xfc, 0x11,
0x25, 0xcf, 0x03, 0x9b, 0x2c, 0x8a, 0x05, 0x3b, 0xaa, 0xc9, 0x1b, 0x3a, 0x6a, 0x4a, 0x04, 0x86,
0x7a, 0xc9, 0x1a, 0x59, 0x6a, 0xee, 0x1a, 0xbc, 0xc8, 0x92, 0x3c, 0x99, 0x3e, 0xc8, 0xc6, 0x8b,
0x63, 0x81, 0xef, 0x2d, 0xcd, 0xe2, 0x7b, 0xb7, 0xe0, 0x8d, 0xd8, 0x49, 0xe7, 0xb8, 0x51, 0xf9,
0xaf, 0x25, 0x72, 0x1d, 0x91, 0xc6, 0x98, 0xd9, 0x63, 0xca, 0x6b, 0xe2, 0xf5, 0xa6, 0xaf, 0x6b,
0x71, 0x53, 0xa1, 0xa1, 0xcf, 0xa0, 0x66, 0xe1, 0xd3, 0x7e, 0x38, 0xa4, 0xc9, 0x11, 0x70, 0x57,
0x2d, 0x7c, 0x4a, 0xff, 0x92, 0x77, 0x60, 0x25, 0xb1, 0xd5, 0x79, 0xce, 0xfe, 0x4f, 0x12, 0x5c,
0xde, 0x70, 0xec, 0xd1, 0x17, 0xba, 0xe3, 0x8d, 0x55, 0x23, 0xfa, 0xd6, 0xfd, 0x6a, 0x8a, 0x4e,
0x4f, 0x42, 0xc1, 0x2d, 0x93, 0x9f, 0x7b, 0x29, 0x1a, 0x94, 0xdc, 0x14, 0x3f, 0x74, 0x28, 0x14,
0xfe, 0xaf, 0x62, 0xda, 0xe6, 0x39, 0xde, 0x94, 0xf0, 0x22, 0x4f, 0xec, 0x9f, 0x5a, 0xa3, 0x2e,
0xce, 0x5a, 0xa3, 0xce, 0x30, 0xe2, 0xa5, 0x97, 0x64, 0xc4, 0xcf, 0x5d, 0x34, 0x79, 0x02, 0xd1,
0xf7, 0x03, 0xea, 0x64, 0x67, 0x7a, 0x78, 0x58, 0x03, 0x08, 0x6a, 0xe9, 0xbc, 0xaf, 0x31, 0xcf,
0x32, 0xa1, 0x59, 0xe4, 0xb6, 0x84, 0xc3, 0xe4, 0x0e, 0x3b, 0x54, 0xdd, 0xfd, 0x0e, 0x74, 0xd3,
0xa4, 0x74, 0x1e, 0xc9, 0xff, 0x59, 0x01, 0xa0, 0x27, 0x5a, 0x61, 0x67, 0xf3, 0x05, 0xb7, 0x20,
0x14, 0x54, 0x04, 0xfa, 0x1e, 0x96, 0x22, 0x8d, 0xa8, 0x84, 0x48, 0x17, 0x09, 0x4e, 0x22, 0x85,
0xd4, 0xe8, 0x3a, 0x21, 0xad, 0x61, 0x42, 0x11, 0x37, 0xbf, 0x57, 0xa0, 0xe6, 0xd8, 0xa7, 0x7d,
0xa2, 0x66, 0x9a, 0xdf, 0xeb, 0xeb, 0xd8, 0xa7, 0x44, 0xf9, 0x34, 0xb4, 0x02, 0x0b, 0x9e, 0xea,
0x1e, 0x93, 0xf5, 0x2b, 0xa1, 0x76, 0x0b, 0x0d, 0x5d, 0x82, 0xf2, 0xa1, 0x6e, 0x60, 0xf6, 0xba,
0x5f, 0x53, 0xd8, 0x00, 0x7d, 0xc3, 0x6f, 0x4a, 0xab, 0xe6, 0x6e, 0xa9, 0x61, 0x7d, 0x69, 0x5f,
0x49, 0xb0, 0x18, 0x70, 0x8d, 0x1a, 0x20, 0x62, 0xd3, 0xa8, 0x3d, 0x5b, 0xb7, 0x35, 0x66, 0x2a,
0x5a, 0x19, 0x1e, 0x81, 0x4d, 0x64, 0x56, 0x2b, 0x98, 0x32, 0x29, 0xdb, 0x25, 0xe7, 0x22, 0x87,
0xd6, 0x35, 0xbf, 0xc5, 0xa4, 0xe2, 0xd8, 0xa7, 0x3d, 0x4d, 0x70, 0x83, 0x35, 0xf2, 0xb2, 0xdc,
0x8e, 0x70, 0x63, 0x9d, 0xf6, 0xf2, 0xde, 0x82, 0x26, 0x76, 0x1c, 0xdb, 0xe9, 0x9b, 0xd8, 0x75,
0xd5, 0x21, 0xe6, 0x61, 0x76, 0x83, 0x02, 0xb7, 0x19, 0x4c, 0xfe, 0x45, 0x11, 0x5a, 0xc1, 0x51,
0xfc, 0x87, 0x6a, 0x5d, 0xf3, 0x1f, 0xaa, 0x75, 0x72, 0x75, 0xe0, 0x30, 0x53, 0x28, 0x2e, 0x77,
0xad, 0xd0, 0x91, 0x94, 0x1a, 0x87, 0xf6, 0x34, 0xe2, 0x96, 0x89, 0x92, 0x59, 0xb6, 0x86, 0x83,
0xcb, 0x05, 0x1f, 0xc4, 0xef, 0x36, 0x22, 0x23, 0xa5, 0x1c, 0x32, 0x52, 0xce, 0x21, 0x23, 0x95,
0x14, 0x19, 0x59, 0x86, 0xca, 0xc1, 0x78, 0x70, 0x8c, 0x3d, 0x1e, 0x14, 0xf3, 0x51, 0x54, 0x76,
0xaa, 0x31, 0xd9, 0x11, 0x22, 0x52, 0x0b, 0x8b, 0xc8, 0x15, 0xa8, 0xb1, 0x17, 0xd3, 0xbe, 0xe7,
0xd2, 0x77, 0xa1, 0xa2, 0x52, 0x65, 0x80, 0x7d, 0x17, 0x7d, 0xe2, 0x87, 0x73, 0xf5, 0x34, 0x65,
0xa7, 0x56, 0x27, 0x26, 0x25, 0x7e, 0x30, 0xf7, 0x0e, 0x2c, 0x86, 0xd8, 0x41, 0x7d, 0x44, 0x83,
0x6e, 0x35, 0x14, 0xb4, 0x53, 0x37, 0x71, 0x1b, 0x5a, 0x01, 0x4b, 0x28, 0x5e, 0x93, 0xe5, 0x4a,
0x02, 0x4a, 0xd1, 0x84, 0x24, 0xb7, 0xce, 0x29, 0xc9, 0xdf, 0x07, 0x14, 0x6c, 0x71, 0xbe, 0x90,
0x30, 0x26, 0x03, 0x85, 0xb8, 0x0c, 0xc8, 0x7f, 0x23, 0xc1, 0x52, 0x98, 0xd8, 0xac, 0xde, 0xf5,
0x33, 0xa8, 0xb3, 0xe7, 0xb7, 0x3e, 0xd1, 0x6e, 0x5e, 0xb0, 0xb9, 0x36, 0x91, 0xf9, 0x0a, 0x04,
0xfd, 0xfe, 0x44, 0x86, 0x4e, 0x6d, 0xe7, 0x58, 0xb7, 0x86, 0x7d, 0xb2, 0x33, 0x5f, 0xa7, 0x1a,
0x1c, 0xb8, 0x43, 0x60, 0xf2, 0x8f, 0x25, 0xb8, 0xfe, 0x74, 0xa4, 0xa9, 0x1e, 0x0e, 0x85, 0x19,
0xf3, 0xb6, 0x10, 0x7e, 0xec, 0xf7, 0xf0, 0x15, 0xf2, 0x3d, 0x21, 0x31, 0x6c, 0x79, 0x1b, 0x2e,
0x2b, 0xd8, 0xc5, 0x96, 0x16, 0xf9, 0x71, 0xe6, 0x3a, 0xcb, 0x08, 0xba, 0x69, 0xcb, 0xcd, 0x73,
0xf7, 0x2c, 0xde, 0xeb, 0x3b, 0x64, 0x59, 0x8f, 0x9b, 0x2f, 0x12, 0x66, 0x50, 0x3a, 0x9e, 0xfc,
0xb7, 0x05, 0x58, 0x79, 0xa4, 0x69, 0xdc, 0xf2, 0xf1, 0x08, 0xe6, 0x55, 0x05, 0x97, 0xf1, 0xe0,
0xab, 0x98, 0x0c, 0xbe, 0x5e, 0x96, 0x35, 0xe2, 0x76, 0xd9, 0x1a, 0x9b, 0xbe, 0xbf, 0x71, 0x58,
0xd7, 0xcb, 0x43, 0xfe, 0x0c, 0x44, 0x52, 0x5d, 0xea, 0x73, 0xa6, 0xc7, 0x24, 0x55, 0xbf, 0x5e,
0x24, 0x8f, 0xa0, 0x93, 0x64, 0xd6, 0x9c, 0x9a, 0xe9, 0x73, 0x64, 0x64, 0xb3, 0xda, 0x62, 0x83,
0x84, 0x1d, 0x14, 0xb4, 0x6b, 0xbb, 0xf2, 0xff, 0x14, 0xa0, 0xb3, 0xa7, 0x9e, 0xe0, 0x5f, 0x9e,
0x0b, 0xfa, 0x2e, 0x5c, 0x72, 0xd5, 0x13, 0xdc, 0x0f, 0x25, 0x93, 0x7d, 0x07, 0x3f, 0xe7, 0x61,
0xdb, 0xbb, 0x69, 0x8a, 0x99, 0xda, 0x35, 0xa2, 0x2c, 0xb9, 0x11, 0xb8, 0x82, 0x9f, 0xa3, 0xb7,
0x61, 0x31, 0xdc, 0x7d, 0x44, 0xb6, 0x56, 0xa5, 0x2c, 0x6f, 0x86, 0x9a, 0x8b, 0x7a, 0x9a, 0xfc,
0x1c, 0xae, 0x3e, 0xb5, 0x5c, 0xec, 0xf5, 0x82, 0x06, 0x99, 0x39, 0xd3, 0xae, 0x1b, 0x50, 0x0f,
0x18, 0x9f, 0xf8, 0x04, 0x40, 0x73, 0x65, 0x1b, 0xba, 0xdb, 0x41, 0x7f, 0x9c, 0xbb, 0xc1, 0x3a,
0x1c, 0x5e, 0x21, 0xc1, 0x43, 0xd1, 0xf0, 0xa3, 0xe0, 0x43, 0xec, 0x60, 0x6b, 0x80, 0xb7, 0xec,
0xc1, 0x71, 0xa8, 0x2f, 0x56, 0x0a, 0xf7, 0xc5, 0xce, 0xda, 0x67, 0x7b, 0xf7, 0x33, 0xd1, 0x6b,
0xb7, 0x7f, 0x36, 0xc2, 0x68, 0x01, 0x8a, 0x3b, 0xf8, 0xb4, 0x7d, 0x01, 0x01, 0x54, 0x76, 0x6c,
0xc7, 0x54, 0x8d, 0xb6, 0x84, 0xea, 0xb0, 0xc0, 0xdf, 0x27, 0xda, 0x05, 0xd4, 0x84, 0xda, 0xba,
0x5f, 0xe3, 0x6d, 0x17, 0xef, 0xfe, 0x99, 0x04, 0x4b, 0x89, 0x0a, 0x3a, 0x6a, 0x01, 0x3c, 0xb5,
0x06, 0xfc, 0x69, 0xa1, 0x7d, 0x01, 0x35, 0xa0, 0xea, 0x3f, 0x34, 0xb0, 0xf5, 0xf6, 0x6d, 0x8a,
0xdd, 0x2e, 0xa0, 0x36, 0x34, 0xd8, 0xc4, 0xf1, 0x60, 0x80, 0x5d, 0xb7, 0x5d, 0x14, 0x90, 0xc7,
0xaa, 0x6e, 0x8c, 0x1d, 0xdc, 0x2e, 0x11, 0x9a, 0xfb, 0x36, 0xef, 0x4a, 0x6e, 0x97, 0x11, 0x82,
0x96, 0xdf, 0xa2, 0xcc, 0x27, 0x55, 0x42, 0x30, 0x7f, 0xda, 0xc2, 0xdd, 0x67, 0xe1, 0x3a, 0x28,
0x3d, 0xde, 0x0a, 0x5c, 0x7c, 0x6a, 0x69, 0xf8, 0x50, 0xb7, 0xb0, 0x16, 0xfc, 0xd4, 0xbe, 0x80,
0x2e, 0xc2, 0xe2, 0x36, 0x76, 0x86, 0x38, 0x04, 0x2c, 0xa0, 0x25, 0x68, 0x6e, 0xeb, 0x2f, 0x42,
0xa0, 0xa2, 0x5c, 0xaa, 0x4a, 0x6d, 0x69, 0xf5, 0xcf, 0xaf, 0x42, 0x6d, 0x43, 0xf5, 0xd4, 0x75,
0xdb, 0x76, 0x34, 0x64, 0x00, 0xa2, 0x4d, 0xfc, 0xe6, 0xc8, 0xb6, 0xc4, 0xa7, 0x31, 0xe8, 0x7e,
0x54, 0x0a, 0xf8, 0x20, 0x89, 0xc8, 0x65, 0xa8, 0xfb, 0x56, 0x2a, 0x7e, 0x0c, 0x59, 0xbe, 0x80,
0x4c, 0x4a, 0x6d, 0x5f, 0x37, 0xf1, 0xbe, 0x3e, 0x38, 0xf6, 0xdb, 0x14, 0x3f, 0xc8, 0xc8, 0x97,
0x92, 0xa8, 0x3e, 0xbd, 0x5b, 0xa9, 0xf4, 0xd8, 0x57, 0x16, 0xbe, 0xd5, 0x94, 0x2f, 0xa0, 0xe7,
0x70, 0x69, 0x13, 0x87, 0x7c, 0xb8, 0x4f, 0x70, 0x35, 0x9b, 0x60, 0x02, 0xf9, 0x9c, 0x24, 0xb7,
0xa0, 0x4c, 0xc5, 0x0d, 0xa5, 0xb9, 0xf9, 0xf0, 0x57, 0xac, 0xdd, 0x9b, 0xd9, 0x08, 0x62, 0xb5,
0xef, 0xc3, 0x62, 0xec, 0xdb, 0x37, 0x94, 0x66, 0xa5, 0xd2, 0xbf, 0x62, 0xec, 0xde, 0xcd, 0x83,
0x2a, 0x68, 0x0d, 0xa1, 0x15, 0x6d, 0xfe, 0x47, 0x69, 0xd5, 0xbd, 0xd4, 0xcf, 0x96, 0xba, 0xef,
0xe6, 0xc0, 0x14, 0x84, 0x4c, 0x68, 0xc7, 0xbf, 0xc5, 0x42, 0x77, 0x27, 0x2e, 0x10, 0x15, 0xb6,
0xf7, 0x72, 0xe1, 0x0a, 0x72, 0x67, 0x54, 0x08, 0x12, 0x9f, 0xf7, 0xc4, 0x65, 0xdc, 0x5f, 0x26,
0xeb, 0xbb, 0xa3, 0xee, 0x83, 0xdc, 0xf8, 0x82, 0xf4, 0x6f, 0xb3, 0xa6, 0x82, 0xb4, 0x4f, 0x64,
0xd0, 0x87, 0xe9, 0xcb, 0x4d, 0xf8, 0xb6, 0xa7, 0xbb, 0x7a, 0x9e, 0x29, 0x62, 0x13, 0x3f, 0xa4,
0xdd, 0x00, 0x29, 0x1f, 0x99, 0xc4, 0xf5, 0xce, 0x5f, 0x2f, 0xfb, 0xfb, 0x99, 0xee, 0x87, 0xe7,
0x98, 0x21, 0x36, 0x60, 0xc7, 0x3f, 0x76, 0xf3, 0xd5, 0xf0, 0xc1, 0x54, 0xa9, 0x99, 0x4d, 0x07,
0xbf, 0x07, 0x8b, 0x31, 0xbf, 0x8d, 0xf2, 0xfb, 0xf6, 0xee, 0xa4, 0xe0, 0x8a, 0xa9, 0x64, 0xac,
0xb9, 0x02, 0x65, 0x48, 0x7f, 0x4a, 0x03, 0x46, 0xf7, 0x6e, 0x1e, 0x54, 0x71, 0x10, 0x97, 0x9a,
0xcb, 0xd8, 0xf3, 0x3a, 0xba, 0x97, 0xbe, 0x46, 0x7a, 0x6b, 0x40, 0xf7, 0xfd, 0x9c, 0xd8, 0x82,
0xe8, 0x09, 0x5c, 0x4c, 0xe9, 0x6c, 0x40, 0xef, 0x4f, 0xbc, 0xac, 0x78, 0x4b, 0x47, 0xf7, 0x7e,
0x5e, 0x74, 0x41, 0xf7, 0xb7, 0x00, 0xed, 0x1d, 0xd9, 0xa7, 0xeb, 0xb6, 0x75, 0xa8, 0x0f, 0xc7,
0x8e, 0xca, 0xaa, 0xe5, 0x59, 0xbe, 0x21, 0x89, 0x9a, 0x21, 0xa3, 0x13, 0x67, 0x08, 0xe2, 0x7d,
0x80, 0x4d, 0xec, 0x6d, 0x63, 0xcf, 0x21, 0x8a, 0xf1, 0x76, 0x96, 0xfb, 0xe3, 0x08, 0x3e, 0xa9,
0x77, 0xa6, 0xe2, 0x85, 0x5c, 0x51, 0x7b, 0x5b, 0xb5, 0xc6, 0xaa, 0x11, 0xea, 0xc0, 0xbe, 0x97,
0x3a, 0x3d, 0x8e, 0x96, 0x71, 0x91, 0x99, 0xd8, 0x82, 0xe4, 0xa9, 0x70, 0xed, 0xa1, 0xe7, 0x98,
0xc9, 0xae, 0x3d, 0xf9, 0xa2, 0x1f, 0x37, 0x7b, 0x13, 0xf0, 0x05, 0xe1, 0x2f, 0x25, 0xda, 0x1c,
0x13, 0x43, 0x78, 0xa6, 0x7b, 0x47, 0xbb, 0x86, 0x6a, 0xb9, 0x79, 0xb6, 0x40, 0x11, 0xcf, 0xb1,
0x05, 0x8e, 0x2f, 0xb6, 0xa0, 0x41, 0x33, 0xf2, 0x4a, 0x82, 0xd2, 0x7a, 0x99, 0xd3, 0x5e, 0x8c,
0xba, 0x77, 0xa6, 0x23, 0x0a, 0x2a, 0x47, 0xd0, 0xf4, 0x55, 0x89, 0x31, 0xf7, 0xdd, 0xac, 0x9d,
0x06, 0x38, 0x19, 0x96, 0x20, 0x1d, 0x35, 0x6c, 0x09, 0x92, 0x45, 0x60, 0x94, 0xef, 0xf1, 0x60,
0x92, 0x25, 0xc8, 0xae, 0x2c, 0x33, 0x53, 0x17, 0x7b, 0x70, 0x49, 0xb7, 0xa3, 0xa9, 0xef, 0x47,
0xa9, 0xa6, 0x2e, 0xe3, 0xfd, 0x46, 0xbe, 0x80, 0x9e, 0x41, 0x85, 0xff, 0xeb, 0x86, 0xb7, 0x26,
0xd7, 0x74, 0xf8, 0xea, 0xb7, 0xa7, 0x60, 0x89, 0x85, 0x8f, 0x61, 0x25, 0xa3, 0xa2, 0x93, 0xea,
0x82, 0x27, 0x57, 0x7f, 0xa6, 0x39, 0x07, 0x15, 0x50, 0xf2, 0xfb, 0xc8, 0xd4, 0x6b, 0xca, 0xfc,
0x8c, 0x32, 0x07, 0x89, 0xe4, 0x27, 0x8e, 0xa9, 0x24, 0x32, 0xbf, 0x84, 0x9c, 0x46, 0xa2, 0x0f,
0x4b, 0x89, 0xba, 0x00, 0x7a, 0x2f, 0xc3, 0x83, 0xa6, 0x55, 0x0f, 0xa6, 0x11, 0x18, 0xc2, 0x1b,
0xa9, 0x39, 0x70, 0x6a, 0x44, 0x30, 0x29, 0x5b, 0x9e, 0x46, 0x68, 0x00, 0x17, 0x53, 0x32, 0xdf,
0x54, 0x5f, 0x96, 0x9d, 0x21, 0x4f, 0x23, 0x72, 0x04, 0xdd, 0x35, 0xc7, 0x56, 0xb5, 0x81, 0xea,
0x7a, 0x8f, 0x0c, 0x0f, 0x3b, 0x24, 0x3d, 0xf3, 0x43, 0xb2, 0x38, 0xdf, 0xf8, 0x80, 0xe2, 0x05,
0x58, 0x39, 0x29, 0x1d, 0x40, 0x9d, 0x7e, 0x74, 0xc0, 0xbe, 0xd7, 0x47, 0xe9, 0xee, 0x27, 0x84,
0x91, 0x61, 0xd3, 0xd2, 0x10, 0x7d, 0x7d, 0x59, 0xfd, 0xaa, 0x06, 0x55, 0xbf, 0xc7, 0xfb, 0x6b,
0xce, 0x0e, 0x5f, 0x43, 0xba, 0xf6, 0x3d, 0x58, 0x8c, 0x7d, 0x7e, 0x99, 0x6a, 0xe2, 0xd2, 0x3f,
0xd1, 0x9c, 0x76, 0x5d, 0xcf, 0xf8, 0x3f, 0x07, 0x12, 0x91, 0xdb, 0x3b, 0x59, 0x29, 0x5f, 0x3c,
0x68, 0x9b, 0xb2, 0xf0, 0xff, 0xef, 0x50, 0x69, 0x07, 0x20, 0x14, 0x24, 0x4d, 0xee, 0x9a, 0x22,
0x7e, 0x7f, 0x1a, 0xb7, 0xcc, 0xd4, 0x38, 0xe8, 0xdd, 0x3c, 0xad, 0x2b, 0xd9, 0x9e, 0x2c, 0x3b,
0xfa, 0x79, 0x0a, 0x8d, 0x70, 0x3f, 0x23, 0x4a, 0xfd, 0x57, 0x34, 0xc9, 0x86, 0xc7, 0x69, 0xa7,
0xd8, 0x3e, 0xa7, 0x83, 0x9c, 0xb2, 0x9c, 0x4b, 0xdc, 0x48, 0xfc, 0x39, 0x20, 0xc3, 0x8d, 0x64,
0x3c, 0x42, 0xa4, 0x06, 0x14, 0xd9, 0x6f, 0x0c, 0x2c, 0xf3, 0x8f, 0xd7, 0xb8, 0x53, 0x33, 0xff,
0x8c, 0x57, 0x83, 0xd4, 0xcc, 0x3f, 0xab, 0x68, 0x2e, 0x5f, 0x58, 0xfb, 0xe8, 0xbb, 0x1f, 0x0e,
0x75, 0xef, 0x68, 0x7c, 0x40, 0x4e, 0xff, 0x80, 0x4d, 0x7d, 0x5f, 0xb7, 0xf9, 0x5f, 0x0f, 0x7c,
0x71, 0x7f, 0x40, 0x57, 0x7b, 0x40, 0x56, 0x1b, 0x1d, 0x1c, 0x54, 0xe8, 0xe8, 0xa3, 0xff, 0x0d,
0x00, 0x00, 0xff, 0xff, 0xad, 0x2a, 0x3d, 0x46, 0xde, 0x4c, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.

View File

@ -41,6 +41,7 @@ import (
"github.com/milvus-io/milvus/internal/util/commonpbutil"
"github.com/milvus-io/milvus/internal/util/crypto"
"github.com/milvus-io/milvus/internal/util/errorutil"
"github.com/milvus-io/milvus/internal/util/importutil"
"github.com/milvus-io/milvus/internal/util/logutil"
"github.com/milvus-io/milvus/internal/util/metricsinfo"
"github.com/milvus-io/milvus/internal/util/timerecord"
@ -3974,6 +3975,14 @@ func (node *Proxy) Import(ctx context.Context, req *milvuspb.ImportRequest) (*mi
return resp, nil
}
err := importutil.ValidateOptions(req.GetOptions())
if err != nil {
log.Error("failed to execute import request", zap.Error(err))
resp.Status.ErrorCode = commonpb.ErrorCode_UnexpectedError
resp.Status.Reason = "request options is not illegal \n" + err.Error() + " \nIllegal option format \n" + importutil.OptionFormat
return resp, nil
}
method := "Import"
tr := timerecord.NewTimeRecorder(method)
metrics.ProxyFunctionCall.WithLabelValues(strconv.FormatInt(Params.ProxyCfg.GetNodeID(), 10), method,

View File

@ -41,12 +41,12 @@ import (
"github.com/milvus-io/milvus/internal/metrics"
"github.com/milvus-io/milvus/internal/rootcoord"
"github.com/milvus-io/milvus/internal/util"
"github.com/milvus-io/milvus/internal/util/crypto"
"github.com/milvus-io/milvus/internal/util/dependency"
"github.com/milvus-io/milvus/internal/util/distance"
"github.com/milvus-io/milvus/internal/util/etcd"
"github.com/milvus-io/milvus/internal/util/funcutil"
"github.com/milvus-io/milvus/internal/util/importutil"
"github.com/milvus-io/milvus/internal/util/logutil"
"github.com/milvus-io/milvus/internal/util/metricsinfo"
"github.com/milvus-io/milvus/internal/util/paramtable"
@ -3881,6 +3881,37 @@ func TestProxy_Import(t *testing.T) {
assert.Equal(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
})
wg.Add(1)
t.Run("illegal import options", func(t *testing.T) {
defer wg.Done()
proxy := &Proxy{}
proxy.UpdateStateCode(commonpb.StateCode_Healthy)
cache := newMockCache()
globalMetaCache = cache
chMgr := newMockChannelsMgr()
proxy.chMgr = chMgr
rc := newMockRootCoord()
rc.ImportFunc = func(ctx context.Context, req *milvuspb.ImportRequest) (*milvuspb.ImportResponse, error) {
return &milvuspb.ImportResponse{Status: &commonpb.Status{ErrorCode: commonpb.ErrorCode_Success}}, nil
}
proxy.rootCoord = rc
req := &milvuspb.ImportRequest{
CollectionName: "dummy",
Options: []*commonpb.KeyValuePair{
{
Key: importutil.StartTs,
Value: "0",
},
{
Key: importutil.EndTs,
Value: "not a number",
},
},
}
resp, err := proxy.Import(context.TODO(), req)
assert.NoError(t, err)
assert.Equal(t, commonpb.ErrorCode_UnexpectedError, resp.GetStatus().GetErrorCode())
})
wg.Wait()
}

View File

@ -39,7 +39,6 @@ import (
)
const (
Bucket = "bucket"
FailedReason = "failed_reason"
Files = "files"
CollectionName = "collection"
@ -214,12 +213,7 @@ func (m *importManager) sendOutTasks(ctx context.Context) error {
RowBased: task.GetRowBased(),
TaskId: task.GetId(),
Files: task.GetFiles(),
Infos: []*commonpb.KeyValuePair{
{
Key: Bucket,
Value: task.GetBucket(),
},
},
Infos: task.GetInfos(),
}
// Get all busy dataNodes for reference.
@ -438,14 +432,6 @@ func (m *importManager) importJob(ctx context.Context, req *milvuspb.ImportReque
return err
}
bucket := ""
for _, kv := range req.Options {
if kv.Key == Bucket {
bucket = kv.Value
break
}
}
// convert import request to import tasks
if req.RowBased {
// For row-based importing, each file makes a task.
@ -460,13 +446,13 @@ func (m *importManager) importJob(ctx context.Context, req *milvuspb.ImportReque
CollectionId: cID,
PartitionId: pID,
ChannelNames: req.ChannelNames,
Bucket: bucket,
RowBased: req.GetRowBased(),
Files: []string{req.GetFiles()[i]},
CreateTs: time.Now().Unix(),
State: &datapb.ImportTaskState{
StateCode: commonpb.ImportState_ImportPending,
},
Infos: req.Options,
}
// Here no need to check error returned by setCollectionPartitionName(),
@ -499,13 +485,13 @@ func (m *importManager) importJob(ctx context.Context, req *milvuspb.ImportReque
CollectionId: cID,
PartitionId: pID,
ChannelNames: req.ChannelNames,
Bucket: bucket,
RowBased: req.GetRowBased(),
Files: req.GetFiles(),
CreateTs: time.Now().Unix(),
State: &datapb.ImportTaskState{
StateCode: commonpb.ImportState_ImportPending,
},
Infos: req.Options,
}
// Here no need to check error returned by setCollectionPartitionName(),
// since here we always return task list to client no matter something missed.
@ -1068,13 +1054,13 @@ func cloneImportTaskInfo(taskInfo *datapb.ImportTaskInfo) *datapb.ImportTaskInfo
CollectionId: taskInfo.GetCollectionId(),
PartitionId: taskInfo.GetPartitionId(),
ChannelNames: taskInfo.GetChannelNames(),
Bucket: taskInfo.GetBucket(),
RowBased: taskInfo.GetRowBased(),
Files: taskInfo.GetFiles(),
CreateTs: taskInfo.GetCreateTs(),
State: taskInfo.GetState(),
CollectionName: taskInfo.GetCollectionName(),
PartitionName: taskInfo.GetPartitionName(),
Infos: taskInfo.GetInfos(),
}
return cloned
}

View File

@ -31,6 +31,7 @@ import (
"github.com/milvus-io/milvus/internal/proto/datapb"
"github.com/milvus-io/milvus/internal/proto/indexpb"
"github.com/milvus-io/milvus/internal/proto/rootcoordpb"
"github.com/milvus-io/milvus/internal/util/importutil"
"github.com/milvus-io/milvus/internal/util/typeutil"
"github.com/stretchr/testify/assert"
)
@ -594,7 +595,7 @@ func TestImportManager_ImportJob(t *testing.T) {
Files: []string{"f1", "f2"},
Options: []*commonpb.KeyValuePair{
{
Key: Bucket,
Key: importutil.Bucket,
Value: "mybucket",
},
},
@ -692,7 +693,7 @@ func TestImportManager_AllDataNodesBusy(t *testing.T) {
Files: []string{"f1", "f2"},
Options: []*commonpb.KeyValuePair{
{
Key: Bucket,
Key: importutil.Bucket,
Value: "mybucket",
},
},

View File

@ -0,0 +1,94 @@
// Licensed to the LF AI & Data foundation under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package importutil
import (
"errors"
"math"
"strconv"
"github.com/milvus-io/milvus-proto/go-api/commonpb"
"github.com/milvus-io/milvus/internal/util/funcutil"
"github.com/milvus-io/milvus/internal/util/tsoutil"
)
// Extra option keys to pass through import API
const (
Bucket = "bucket" // the source files' minio bucket
StartTs = "start_ts" // start timestamp to filter data, only data between StartTs and EndTs will be imported
EndTs = "end_ts" // end timestamp to filter data, only data between StartTs and EndTs will be imported
OptionFormat = "start_ts: 10-digit physical timestamp, e.g. 1665995420, default 0 \n" +
"end_ts: 10-digit physical timestamp, e.g. 1665995420, default math.MaxInt \n"
)
// ValidateOptions the options is illegal, return nil if illegal, return error if not.
// Illegal options:
// start_ts: 10-digit physical timestamp, e.g. 1665995420
// end_ts: 10-digit physical timestamp, e.g. 1665995420
func ValidateOptions(options []*commonpb.KeyValuePair) error {
optionMap := funcutil.KeyValuePair2Map(options)
// StartTs should be int
_, ok := optionMap[StartTs]
var startTs uint64
var endTs uint64 = math.MaxInt64
var err error
if ok {
startTs, err = strconv.ParseUint(optionMap[StartTs], 10, 64)
if err != nil {
return err
}
}
// EndTs should be int
_, ok = optionMap[EndTs]
if ok {
endTs, err = strconv.ParseUint(optionMap[EndTs], 10, 64)
if err != nil {
return err
}
}
if startTs > endTs {
return errors.New("start_ts shouldn't be larger than end_ts")
}
return nil
}
// ParseTSFromOptions get (start_ts, end_ts, error) from input options.
// return value will be composed to milvus system timestamp from physical timestamp
func ParseTSFromOptions(options []*commonpb.KeyValuePair) (uint64, uint64, error) {
err := ValidateOptions(options)
if err != nil {
return 0, 0, err
}
var tsStart uint64
var tsEnd uint64
importOptions := funcutil.KeyValuePair2Map(options)
value, ok := importOptions[StartTs]
if ok {
pTs, _ := strconv.ParseInt(value, 10, 64)
tsStart = tsoutil.ComposeTS(pTs, 0)
} else {
tsStart = 0
}
value, ok = importOptions[EndTs]
if ok {
pTs, _ := strconv.ParseInt(value, 10, 64)
tsEnd = tsoutil.ComposeTS(pTs, 0)
} else {
tsEnd = math.MaxUint64
}
return tsStart, tsEnd, nil
}

View File

@ -0,0 +1,89 @@
// Licensed to the LF AI & Data foundation under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package importutil
import (
"math"
"testing"
"github.com/milvus-io/milvus-proto/go-api/commonpb"
"github.com/stretchr/testify/assert"
)
func TestValidateOptions(t *testing.T) {
assert.NoError(t, ValidateOptions([]*commonpb.KeyValuePair{}))
assert.NoError(t, ValidateOptions([]*commonpb.KeyValuePair{
{Key: "start_ts", Value: "1666007457"},
{Key: "end_ts", Value: "1666007459"},
}))
assert.NoError(t, ValidateOptions([]*commonpb.KeyValuePair{
{Key: "start_ts", Value: "0"},
{Key: "end_ts", Value: "0"},
}))
assert.NoError(t, ValidateOptions([]*commonpb.KeyValuePair{
{Key: "start_ts", Value: "0"},
{Key: "end_ts", Value: "1666007457"},
}))
assert.Error(t, ValidateOptions([]*commonpb.KeyValuePair{
{Key: "start_ts", Value: "-1"},
{Key: "end_ts", Value: "-1"},
}))
assert.Error(t, ValidateOptions([]*commonpb.KeyValuePair{
{Key: "start_ts", Value: "2"},
{Key: "end_ts", Value: "1"},
}))
assert.Error(t, ValidateOptions([]*commonpb.KeyValuePair{
{Key: "start_ts", Value: "3.14"},
{Key: "end_ts", Value: "1666007457"},
}))
}
func TestParseTSFromOptions(t *testing.T) {
var tsStart uint64
var tsEnd uint64
var err error
tsStart, tsEnd, err = ParseTSFromOptions([]*commonpb.KeyValuePair{})
assert.Equal(t, uint64(0), tsStart)
assert.Equal(t, uint64(0), math.MaxUint64-tsEnd)
assert.NoError(t, err)
tsStart, tsEnd, err = ParseTSFromOptions([]*commonpb.KeyValuePair{
{Key: "start_ts", Value: "0"},
{Key: "end_ts", Value: "0"},
})
assert.Equal(t, uint64(0), tsStart)
assert.Equal(t, uint64(0), tsEnd)
assert.NoError(t, err)
tsStart, tsEnd, err = ParseTSFromOptions([]*commonpb.KeyValuePair{
{Key: "start_ts", Value: "0"},
{Key: "end_ts", Value: "1666007457"},
})
assert.Equal(t, uint64(0), tsStart)
assert.Equal(t, uint64(436733858807808), tsEnd)
assert.NoError(t, err)
tsStart, tsEnd, err = ParseTSFromOptions([]*commonpb.KeyValuePair{
{Key: "start_ts", Value: "2"},
{Key: "end_ts", Value: "1"},
})
assert.Equal(t, uint64(0), tsStart)
assert.Equal(t, uint64(0), tsEnd)
assert.Error(t, err)
}