Support async refresh (#23107)

Signed-off-by: yah01 <yang.cen@zilliz.com>
pull/23390/head
yah01 2023-04-12 15:06:28 +08:00 committed by GitHub
parent a938c6b8e5
commit 296380d6e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 532 additions and 525 deletions

2
go.mod
View File

@ -20,7 +20,7 @@ require (
github.com/golang/protobuf v1.5.3
github.com/klauspost/compress v1.14.4
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
github.com/milvus-io/milvus-proto/go-api v0.0.0-20230322065753-aa8a66130217
github.com/milvus-io/milvus-proto/go-api v0.0.0-20230411174625-2c86533465fb
github.com/milvus-io/milvus/pkg v0.0.0-00010101000000-000000000000
github.com/minio/minio-go/v7 v7.0.17
github.com/panjf2000/ants/v2 v2.7.2

2
go.sum
View File

@ -574,6 +574,8 @@ github.com/milvus-io/gorocksdb v0.0.0-20220624081344-8c5f4212846b h1:TfeY0NxYxZz
github.com/milvus-io/gorocksdb v0.0.0-20220624081344-8c5f4212846b/go.mod h1:iwW+9cWfIzzDseEBCCeDSN5SD16Tidvy8cwQ7ZY8Qj4=
github.com/milvus-io/milvus-proto/go-api v0.0.0-20230322065753-aa8a66130217 h1:58lCM3+oh3ZuCemnOE3V2VdaPnIL+LS7eoEyrFfrxOM=
github.com/milvus-io/milvus-proto/go-api v0.0.0-20230322065753-aa8a66130217/go.mod h1:148qnlmZ0Fdm1Fq+Mj/OW2uDoEP25g3mjh0vMGtkgmk=
github.com/milvus-io/milvus-proto/go-api v0.0.0-20230411174625-2c86533465fb h1:gMSlJbBbfI6IZ6vktimD94/ASaLYFNXiX2xhXqVeFxA=
github.com/milvus-io/milvus-proto/go-api v0.0.0-20230411174625-2c86533465fb/go.mod h1:148qnlmZ0Fdm1Fq+Mj/OW2uDoEP25g3mjh0vMGtkgmk=
github.com/milvus-io/pulsar-client-go v0.6.10 h1:eqpJjU+/QX0iIhEo3nhOqMNXL+TyInAs1IAHZCrCM/A=
github.com/milvus-io/pulsar-client-go v0.6.10/go.mod h1:lQqCkgwDF8YFYjKA+zOheTk1tev2B+bKj5j7+nm8M1w=
github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 h1:AMFGa4R4MiIpspGNG7Z948v4n35fFGB3RR3G/ry4FWs=

View File

@ -88,6 +88,7 @@ message ShowCollectionsResponse {
repeated int64 collectionIDs = 2;
repeated int64 inMemory_percentages = 3;
repeated bool query_service_available = 4;
repeated int64 refresh_progress = 5;
}
message ShowPartitionsRequest {
@ -101,6 +102,7 @@ message ShowPartitionsResponse {
common.Status status = 1;
repeated int64 partitionIDs = 2;
repeated int64 inMemory_percentages = 3;
repeated int64 refresh_progress = 4;
}
message LoadCollectionRequest {

View File

@ -306,6 +306,7 @@ type ShowCollectionsResponse struct {
CollectionIDs []int64 `protobuf:"varint,2,rep,packed,name=collectionIDs,proto3" json:"collectionIDs,omitempty"`
InMemoryPercentages []int64 `protobuf:"varint,3,rep,packed,name=inMemory_percentages,json=inMemoryPercentages,proto3" json:"inMemory_percentages,omitempty"`
QueryServiceAvailable []bool `protobuf:"varint,4,rep,packed,name=query_service_available,json=queryServiceAvailable,proto3" json:"query_service_available,omitempty"`
RefreshProgress []int64 `protobuf:"varint,5,rep,packed,name=refresh_progress,json=refreshProgress,proto3" json:"refresh_progress,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -364,6 +365,13 @@ func (m *ShowCollectionsResponse) GetQueryServiceAvailable() []bool {
return nil
}
func (m *ShowCollectionsResponse) GetRefreshProgress() []int64 {
if m != nil {
return m.RefreshProgress
}
return nil
}
type ShowPartitionsRequest struct {
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
DbID int64 `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
@ -431,6 +439,7 @@ type ShowPartitionsResponse struct {
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
PartitionIDs []int64 `protobuf:"varint,2,rep,packed,name=partitionIDs,proto3" json:"partitionIDs,omitempty"`
InMemoryPercentages []int64 `protobuf:"varint,3,rep,packed,name=inMemory_percentages,json=inMemoryPercentages,proto3" json:"inMemory_percentages,omitempty"`
RefreshProgress []int64 `protobuf:"varint,4,rep,packed,name=refresh_progress,json=refreshProgress,proto3" json:"refresh_progress,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -482,6 +491,13 @@ func (m *ShowPartitionsResponse) GetInMemoryPercentages() []int64 {
return nil
}
func (m *ShowPartitionsResponse) GetRefreshProgress() []int64 {
if m != nil {
return m.RefreshProgress
}
return nil
}
type LoadCollectionRequest struct {
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
DbID int64 `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
@ -4462,291 +4478,293 @@ func init() {
func init() { proto.RegisterFile("query_coord.proto", fileDescriptor_aab7cc9a69ed26e8) }
var fileDescriptor_aab7cc9a69ed26e8 = []byte{
// 4534 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x3c, 0x4b, 0x6c, 0x24, 0x49,
0x56, 0x9d, 0xf5, 0xb1, 0xab, 0x5e, 0x7d, 0x5c, 0x0e, 0xdb, 0xdd, 0xb5, 0xb5, 0xdd, 0x3d, 0x9e,
0xec, 0xf9, 0x18, 0xcf, 0x8c, 0x3d, 0xeb, 0xde, 0x9d, 0xed, 0xdd, 0x99, 0xd5, 0x6c, 0xb7, 0xbd,
0xdd, 0xe3, 0x9d, 0x1e, 0x4f, 0x93, 0xee, 0xee, 0x45, 0xa3, 0xd9, 0xad, 0x4d, 0x57, 0x86, 0xcb,
0xa9, 0xce, 0x4f, 0x75, 0x66, 0x96, 0x3d, 0x1e, 0x24, 0x4e, 0x5c, 0x40, 0x80, 0xe0, 0x04, 0x07,
0xc4, 0x81, 0x8f, 0xb4, 0x20, 0xb8, 0xc1, 0x8d, 0x03, 0x27, 0x40, 0x42, 0x20, 0x2e, 0x88, 0x23,
0x17, 0x38, 0x20, 0x81, 0x10, 0x87, 0x15, 0x9a, 0x1b, 0x8a, 0x5f, 0x66, 0x46, 0x66, 0x94, 0x2b,
0xed, 0xea, 0xde, 0x99, 0x41, 0xdc, 0x2a, 0x5f, 0x7c, 0xde, 0x8b, 0x78, 0xff, 0x17, 0x11, 0x05,
0x8b, 0x4f, 0xc7, 0x38, 0x38, 0xed, 0x0f, 0x7c, 0x3f, 0xb0, 0x36, 0x46, 0x81, 0x1f, 0xf9, 0x08,
0xb9, 0xb6, 0x73, 0x3c, 0x0e, 0xd9, 0xd7, 0x06, 0x6d, 0xef, 0x35, 0x07, 0xbe, 0xeb, 0xfa, 0x1e,
0x83, 0xf5, 0x9a, 0xe9, 0x1e, 0xbd, 0xb6, 0xed, 0x45, 0x38, 0xf0, 0x4c, 0x47, 0xb4, 0x86, 0x83,
0x23, 0xec, 0x9a, 0xfc, 0xab, 0xee, 0x86, 0x43, 0xfe, 0xb3, 0x63, 0x99, 0x91, 0x99, 0x46, 0xa5,
0xff, 0xb2, 0x06, 0x97, 0xf7, 0x8f, 0xfc, 0x93, 0x6d, 0xdf, 0x71, 0xf0, 0x20, 0xb2, 0x7d, 0x2f,
0x34, 0xf0, 0xd3, 0x31, 0x0e, 0x23, 0xf4, 0x26, 0x54, 0x0e, 0xcc, 0x10, 0x77, 0xb5, 0x55, 0x6d,
0xad, 0xb1, 0x75, 0x75, 0x43, 0x22, 0x8a, 0x53, 0xf3, 0x41, 0x38, 0xbc, 0x63, 0x86, 0xd8, 0xa0,
0x3d, 0x11, 0x82, 0x8a, 0x75, 0xb0, 0xbb, 0xd3, 0x2d, 0xad, 0x6a, 0x6b, 0x65, 0x83, 0xfe, 0x46,
0x2f, 0x41, 0x6b, 0x10, 0xcf, 0xbd, 0xbb, 0x13, 0x76, 0xcb, 0xab, 0xe5, 0xb5, 0xb2, 0x21, 0x03,
0xf5, 0x7f, 0xd1, 0xe0, 0x4a, 0x8e, 0x8c, 0x70, 0xe4, 0x7b, 0x21, 0x46, 0x37, 0x61, 0x2e, 0x8c,
0xcc, 0x68, 0x1c, 0x72, 0x4a, 0xbe, 0xaa, 0xa4, 0x64, 0x9f, 0x76, 0x31, 0x78, 0xd7, 0x3c, 0xda,
0x92, 0x02, 0x2d, 0xfa, 0x1a, 0x2c, 0xdb, 0xde, 0x07, 0xd8, 0xf5, 0x83, 0xd3, 0xfe, 0x08, 0x07,
0x03, 0xec, 0x45, 0xe6, 0x10, 0x0b, 0x1a, 0x97, 0x44, 0xdb, 0x83, 0xa4, 0x09, 0xbd, 0x05, 0x57,
0x18, 0xc3, 0x42, 0x1c, 0x1c, 0xdb, 0x03, 0xdc, 0x37, 0x8f, 0x4d, 0xdb, 0x31, 0x0f, 0x1c, 0xdc,
0xad, 0xac, 0x96, 0xd7, 0x6a, 0xc6, 0x0a, 0x6d, 0xde, 0x67, 0xad, 0xb7, 0x45, 0xa3, 0xfe, 0x47,
0x1a, 0xac, 0x90, 0x15, 0x3e, 0x30, 0x83, 0xc8, 0x7e, 0x0e, 0xfb, 0xac, 0x43, 0x33, 0xbd, 0xb6,
0x6e, 0x99, 0xb6, 0x49, 0x30, 0xd2, 0x67, 0x24, 0xd0, 0x93, 0x3d, 0xa9, 0xd0, 0x65, 0x4a, 0x30,
0xfd, 0x0f, 0xb9, 0x40, 0xa4, 0xe9, 0x9c, 0x85, 0x11, 0x59, 0x9c, 0xa5, 0x3c, 0xce, 0x0b, 0xb0,
0x41, 0xff, 0xfb, 0x32, 0xac, 0xdc, 0xf7, 0x4d, 0x2b, 0x11, 0x98, 0x9f, 0xfd, 0x76, 0x7e, 0x07,
0xe6, 0x98, 0xa2, 0x75, 0x2b, 0x14, 0xd7, 0xcb, 0x32, 0x2e, 0xae, 0x84, 0x09, 0x85, 0xfb, 0x14,
0x60, 0xf0, 0x41, 0xe8, 0x65, 0x68, 0x07, 0x78, 0xe4, 0xd8, 0x03, 0xb3, 0xef, 0x8d, 0xdd, 0x03,
0x1c, 0x74, 0xab, 0xab, 0xda, 0x5a, 0xd5, 0x68, 0x71, 0xe8, 0x1e, 0x05, 0xa2, 0x1f, 0x43, 0xeb,
0xd0, 0xc6, 0x8e, 0xd5, 0xb7, 0x3d, 0x0b, 0x7f, 0xb2, 0xbb, 0xd3, 0x9d, 0x5b, 0x2d, 0xaf, 0x35,
0xb6, 0xde, 0xde, 0xc8, 0x1b, 0x89, 0x0d, 0xe5, 0x8e, 0x6c, 0xdc, 0x25, 0xc3, 0x77, 0xd9, 0xe8,
0xef, 0x79, 0x51, 0x70, 0x6a, 0x34, 0x0f, 0x53, 0x20, 0xd4, 0x85, 0xf9, 0x00, 0x1f, 0x06, 0x38,
0x3c, 0xea, 0xce, 0xaf, 0x6a, 0x6b, 0x35, 0x43, 0x7c, 0xa2, 0x57, 0x61, 0x21, 0xc0, 0xa1, 0x3f,
0x0e, 0x06, 0xb8, 0x3f, 0x0c, 0xfc, 0xf1, 0x28, 0xec, 0xd6, 0x56, 0xcb, 0x6b, 0x75, 0xa3, 0x2d,
0xc0, 0xf7, 0x28, 0xb4, 0xf7, 0x2e, 0x2c, 0xe6, 0xb0, 0xa0, 0x0e, 0x94, 0x9f, 0xe0, 0x53, 0xca,
0x88, 0xb2, 0x41, 0x7e, 0xa2, 0x65, 0xa8, 0x1e, 0x9b, 0xce, 0x18, 0xf3, 0xad, 0x66, 0x1f, 0xdf,
0x2e, 0xdd, 0xd2, 0xf4, 0xdf, 0xd5, 0xa0, 0x6b, 0x60, 0x07, 0x9b, 0x21, 0xfe, 0x3c, 0x59, 0x7a,
0x19, 0xe6, 0x3c, 0xdf, 0xc2, 0xbb, 0x3b, 0x94, 0xa5, 0x65, 0x83, 0x7f, 0xe9, 0x9f, 0x69, 0xb0,
0x7c, 0x0f, 0x47, 0x44, 0xb6, 0xed, 0x30, 0xb2, 0x07, 0xb1, 0xf2, 0x7e, 0x07, 0xca, 0x01, 0x7e,
0xca, 0x29, 0x7b, 0x4d, 0xa6, 0x2c, 0xb6, 0xca, 0xaa, 0x91, 0x06, 0x19, 0x87, 0x5e, 0x84, 0xa6,
0xe5, 0x3a, 0xfd, 0xc1, 0x91, 0xe9, 0x79, 0xd8, 0x61, 0xda, 0x51, 0x37, 0x1a, 0x96, 0xeb, 0x6c,
0x73, 0x10, 0xba, 0x0e, 0x10, 0xe2, 0xa1, 0x8b, 0xbd, 0x28, 0xb1, 0x9e, 0x29, 0x08, 0x5a, 0x87,
0xc5, 0xc3, 0xc0, 0x77, 0xfb, 0xe1, 0x91, 0x19, 0x58, 0x7d, 0x07, 0x9b, 0x16, 0x0e, 0x28, 0xf5,
0x35, 0x63, 0x81, 0x34, 0xec, 0x13, 0xf8, 0x7d, 0x0a, 0x46, 0x37, 0xa1, 0x1a, 0x0e, 0xfc, 0x11,
0xa6, 0x92, 0xd6, 0xde, 0xba, 0xa6, 0x92, 0xa1, 0x1d, 0x33, 0x32, 0xf7, 0x49, 0x27, 0x83, 0xf5,
0xd5, 0xff, 0x9b, 0xab, 0xda, 0x17, 0xdc, 0x72, 0xa5, 0xd4, 0xb1, 0xfa, 0x6c, 0xd4, 0x71, 0xae,
0x90, 0x3a, 0xce, 0x9f, 0xad, 0x8e, 0xb9, 0x5d, 0x3b, 0x8f, 0x3a, 0xd6, 0xa6, 0xaa, 0x63, 0xfd,
0xf9, 0xa8, 0xe3, 0x5f, 0x25, 0xea, 0xf8, 0x45, 0x67, 0x7b, 0xa2, 0xb2, 0x55, 0x49, 0x65, 0xff,
0x58, 0x83, 0xaf, 0xdc, 0xc3, 0x51, 0x4c, 0x3e, 0xd1, 0x40, 0xfc, 0x05, 0x75, 0xba, 0x7f, 0xa6,
0x41, 0x4f, 0x45, 0xeb, 0x2c, 0x8e, 0xf7, 0x23, 0xb8, 0x1c, 0xe3, 0xe8, 0x5b, 0x38, 0x1c, 0x04,
0xf6, 0x88, 0xb2, 0x91, 0x1a, 0x99, 0xc6, 0xd6, 0x0d, 0x95, 0xc4, 0x66, 0x29, 0x58, 0x89, 0xa7,
0xd8, 0x49, 0xcd, 0xa0, 0xff, 0xba, 0x06, 0x2b, 0xc4, 0xa8, 0x71, 0x2b, 0xe4, 0x1d, 0xfa, 0x17,
0xdf, 0x57, 0xd9, 0xbe, 0x95, 0x72, 0xf6, 0xad, 0xc0, 0x1e, 0xd3, 0x28, 0x36, 0x4b, 0xcf, 0x2c,
0x7b, 0xf7, 0x0d, 0xa8, 0xda, 0xde, 0xa1, 0x2f, 0xb6, 0xea, 0x05, 0xd5, 0x56, 0xa5, 0x91, 0xb1,
0xde, 0xba, 0xc7, 0xa8, 0x48, 0x0c, 0xee, 0x0c, 0xe2, 0x96, 0x5d, 0x76, 0x49, 0xb1, 0xec, 0x5f,
0xd3, 0xe0, 0x4a, 0x0e, 0xe1, 0x2c, 0xeb, 0x7e, 0x07, 0xe6, 0xa8, 0x1b, 0x11, 0x0b, 0x7f, 0x49,
0xb9, 0xf0, 0x14, 0xba, 0xfb, 0x76, 0x18, 0x19, 0x7c, 0x8c, 0xee, 0x43, 0x27, 0xdb, 0x46, 0x1c,
0x1c, 0x77, 0x6e, 0x7d, 0xcf, 0x74, 0xd9, 0x06, 0xd4, 0x8d, 0x06, 0x87, 0xed, 0x99, 0x2e, 0x46,
0x5f, 0x81, 0x1a, 0x51, 0xd9, 0xbe, 0x6d, 0x09, 0xf6, 0xcf, 0x53, 0x15, 0xb6, 0x42, 0x74, 0x0d,
0x80, 0x36, 0x99, 0x96, 0x15, 0x30, 0xdf, 0x57, 0x37, 0xea, 0x04, 0x72, 0x9b, 0x00, 0xf4, 0xdf,
0xd1, 0xe0, 0xfa, 0xfe, 0xa9, 0x37, 0xd8, 0xc3, 0x27, 0xdb, 0x01, 0x36, 0x23, 0x9c, 0x58, 0xdb,
0xe7, 0xba, 0xf1, 0x68, 0x15, 0x1a, 0x29, 0xfd, 0xe5, 0x22, 0x99, 0x06, 0xe9, 0xbf, 0xa5, 0x41,
0x93, 0x98, 0xff, 0x0f, 0x70, 0x64, 0x12, 0x11, 0x41, 0xdf, 0x82, 0xba, 0xe3, 0x9b, 0x56, 0x3f,
0x3a, 0x1d, 0x31, 0x6a, 0xda, 0x59, 0x6a, 0x12, 0x9f, 0xf1, 0xf0, 0x74, 0x84, 0x8d, 0x9a, 0xc3,
0x7f, 0x15, 0xa2, 0x28, 0x6b, 0x65, 0xca, 0x0a, 0x2b, 0xf3, 0xd7, 0x55, 0xb8, 0xfc, 0x03, 0x33,
0x1a, 0x1c, 0xed, 0xb8, 0x22, 0xba, 0xb8, 0xf8, 0x36, 0x25, 0x66, 0xb7, 0x94, 0x36, 0xbb, 0xcf,
0xcc, 0xac, 0xc7, 0x2a, 0x58, 0x55, 0xa9, 0x20, 0xc9, 0x63, 0x37, 0x1e, 0x73, 0x29, 0x4a, 0xa9,
0x60, 0x2a, 0x08, 0x98, 0xbb, 0x48, 0x10, 0xb0, 0x0d, 0x2d, 0xfc, 0xc9, 0xc0, 0x19, 0x13, 0x71,
0xa4, 0xd8, 0x99, 0x77, 0xbf, 0xae, 0xc0, 0x9e, 0xd6, 0xff, 0x26, 0x1f, 0xb4, 0xcb, 0x69, 0x60,
0xac, 0x76, 0x71, 0x64, 0x52, 0x17, 0xde, 0xd8, 0x5a, 0x9d, 0xc4, 0x6a, 0x21, 0x1f, 0x8c, 0xdd,
0xe4, 0x0b, 0x5d, 0x85, 0x3a, 0x0f, 0x39, 0x76, 0x77, 0xba, 0x75, 0xba, 0x7d, 0x09, 0x00, 0x99,
0xd0, 0xe2, 0xc6, 0x91, 0x53, 0x08, 0x94, 0xc2, 0x77, 0x54, 0x08, 0xd4, 0xcc, 0x4e, 0x53, 0x1e,
0xf2, 0x00, 0x24, 0x4c, 0x81, 0x48, 0xee, 0xec, 0x1f, 0x1e, 0x3a, 0xb6, 0x87, 0xf7, 0x18, 0x87,
0x1b, 0x94, 0x08, 0x19, 0x48, 0xc2, 0x94, 0x63, 0x1c, 0x84, 0xb6, 0xef, 0x75, 0x9b, 0xb4, 0x5d,
0x7c, 0xf6, 0xfa, 0xb0, 0x98, 0x43, 0xa1, 0x88, 0x3e, 0xbe, 0x9e, 0x8e, 0x3e, 0xa6, 0xef, 0x71,
0x2a, 0x3a, 0xf9, 0x89, 0x06, 0x2b, 0x8f, 0xbc, 0x70, 0x7c, 0x10, 0xaf, 0xed, 0xf3, 0x91, 0xe3,
0xac, 0x71, 0xab, 0xe4, 0x8c, 0x1b, 0xd1, 0xb9, 0x05, 0xbe, 0x0a, 0xc2, 0x6e, 0x6a, 0x0a, 0xae,
0x42, 0x3d, 0xf6, 0x6f, 0x7c, 0x43, 0x12, 0x40, 0xd6, 0xb6, 0x94, 0x72, 0xb6, 0xa5, 0x10, 0x69,
0x22, 0x5a, 0xa9, 0xa4, 0xa2, 0x95, 0x6b, 0x00, 0x87, 0xce, 0x38, 0x3c, 0xea, 0x47, 0xb6, 0x8b,
0x79, 0xb4, 0x54, 0xa7, 0x90, 0x87, 0xb6, 0x8b, 0xd1, 0x6d, 0x68, 0x1e, 0xd8, 0x9e, 0xe3, 0x0f,
0xfb, 0x23, 0x33, 0x3a, 0x0a, 0x79, 0x9e, 0xa9, 0x62, 0x0b, 0x8d, 0x2d, 0xef, 0xd0, 0xbe, 0x46,
0x83, 0x8d, 0x79, 0x40, 0x86, 0xa0, 0xeb, 0xd0, 0xf0, 0xc6, 0x6e, 0xdf, 0x3f, 0xec, 0x07, 0xfe,
0x49, 0x48, 0xb3, 0xc9, 0xb2, 0x51, 0xf7, 0xc6, 0xee, 0x87, 0x87, 0x86, 0x7f, 0x42, 0xfc, 0x4b,
0x9d, 0x78, 0x9a, 0xd0, 0xf1, 0x87, 0x2c, 0x93, 0x9c, 0x3e, 0x7f, 0x32, 0x80, 0x8c, 0xb6, 0xb0,
0x13, 0x99, 0x74, 0x74, 0xbd, 0xd8, 0xe8, 0x78, 0x00, 0x7a, 0x05, 0xda, 0x03, 0xdf, 0x1d, 0x99,
0x74, 0x87, 0xee, 0x06, 0xbe, 0x4b, 0x35, 0xa7, 0x6c, 0x64, 0xa0, 0x68, 0x1b, 0x1a, 0x34, 0xb4,
0xe7, 0xea, 0xd5, 0xa0, 0x78, 0x74, 0x95, 0x7a, 0xa5, 0x42, 0x6c, 0x22, 0xa0, 0x60, 0x8b, 0x9f,
0x21, 0x91, 0x0c, 0xa1, 0xa5, 0xa1, 0xfd, 0x29, 0xe6, 0x1a, 0xd2, 0xe0, 0xb0, 0x7d, 0xfb, 0x53,
0x4c, 0xf2, 0x0d, 0xdb, 0x0b, 0x71, 0x10, 0x89, 0xec, 0xaf, 0xdb, 0xa2, 0xe2, 0xd3, 0x62, 0x50,
0x2e, 0xd8, 0x68, 0x07, 0xda, 0x61, 0x64, 0x06, 0x51, 0x7f, 0xe4, 0x87, 0x54, 0x00, 0xba, 0x6d,
0x2a, 0xdb, 0x99, 0xdc, 0xcd, 0x0d, 0x87, 0x44, 0xb0, 0x1f, 0xf0, 0x4e, 0x46, 0x8b, 0x0e, 0x12,
0x9f, 0xe8, 0xbb, 0xd0, 0xc4, 0x9e, 0x95, 0xcc, 0xb1, 0x50, 0x64, 0x8e, 0x06, 0xf6, 0x2c, 0xf1,
0xa1, 0xff, 0x57, 0x09, 0xda, 0xf2, 0x82, 0x89, 0x05, 0x60, 0x89, 0x8b, 0x90, 0x62, 0xf1, 0x49,
0x96, 0x8f, 0x3d, 0xf3, 0xc0, 0xc1, 0x2c, 0x4b, 0xa2, 0x42, 0x5c, 0x23, 0xf3, 0x11, 0x18, 0x9d,
0x80, 0x08, 0x23, 0xdb, 0x66, 0xaa, 0x39, 0x65, 0xba, 0xf4, 0x3a, 0x85, 0xd0, 0xa0, 0xa0, 0x0b,
0xf3, 0x22, 0xc1, 0x62, 0x22, 0x2c, 0x3e, 0x49, 0xcb, 0xc1, 0xd8, 0xa6, 0x58, 0x99, 0x08, 0x8b,
0x4f, 0xb4, 0x03, 0x4d, 0x36, 0xe5, 0xc8, 0x0c, 0x4c, 0x57, 0x08, 0xf0, 0x8b, 0x4a, 0x23, 0xf0,
0x3e, 0x3e, 0x7d, 0x4c, 0xec, 0xc9, 0x03, 0xd3, 0x0e, 0x0c, 0xc6, 0xf0, 0x07, 0x74, 0x14, 0x5a,
0x83, 0x0e, 0x9b, 0xe5, 0xd0, 0x76, 0x30, 0x57, 0x85, 0x79, 0x96, 0x65, 0x51, 0xf8, 0x5d, 0xdb,
0xc1, 0x4c, 0xda, 0xe3, 0x25, 0x50, 0x16, 0xd7, 0x98, 0xb0, 0x53, 0x08, 0x65, 0xf0, 0x0d, 0x68,
0xb1, 0x66, 0x61, 0x26, 0x99, 0x2d, 0x67, 0x34, 0x3e, 0x66, 0x30, 0x1a, 0xfc, 0x8c, 0x5d, 0xa6,
0x2e, 0xc0, 0x96, 0xe3, 0x8d, 0x5d, 0xa2, 0x2c, 0xfa, 0xdf, 0x55, 0x60, 0x89, 0xd8, 0x0c, 0x6e,
0x3e, 0x66, 0xf0, 0xd5, 0xd7, 0x00, 0xac, 0x30, 0xea, 0x4b, 0x76, 0xae, 0x6e, 0x85, 0x11, 0xb7,
0xe4, 0xdf, 0x12, 0xae, 0xb6, 0x3c, 0x39, 0x31, 0xc8, 0xd8, 0xb0, 0xbc, 0xbb, 0xbd, 0x50, 0x09,
0xec, 0x06, 0xb4, 0x78, 0x3a, 0x2b, 0xa5, 0x70, 0x4d, 0x06, 0xdc, 0x53, 0x5b, 0xe2, 0x39, 0x65,
0x29, 0x2e, 0xe5, 0x72, 0xe7, 0x67, 0x73, 0xb9, 0xb5, 0xac, 0xcb, 0xbd, 0x0b, 0x0b, 0xd4, 0x8c,
0xc4, 0xea, 0x23, 0xac, 0xcf, 0x14, 0xfd, 0x69, 0xd3, 0x51, 0xe2, 0x33, 0x4c, 0x7b, 0x4c, 0x90,
0x3c, 0x26, 0xd9, 0x07, 0x0f, 0x63, 0xab, 0x1f, 0x05, 0xa6, 0x17, 0x1e, 0xe2, 0x80, 0x7a, 0xdc,
0x9a, 0xd1, 0x24, 0xc0, 0x87, 0x1c, 0x86, 0xde, 0x01, 0xa0, 0x6b, 0x64, 0x15, 0x9c, 0xe6, 0xe4,
0x0a, 0x0e, 0x15, 0x1a, 0x5a, 0xc1, 0xa1, 0x9b, 0x42, 0x7f, 0xea, 0xff, 0x50, 0x82, 0xcb, 0x3c,
0xa3, 0x9f, 0x5d, 0xa0, 0x26, 0x39, 0x4d, 0xe1, 0x75, 0xca, 0x67, 0xe4, 0xc8, 0x95, 0x02, 0x01,
0x61, 0x55, 0x11, 0x10, 0xca, 0x79, 0xe2, 0x5c, 0x2e, 0x4f, 0x8c, 0x6b, 0x5b, 0xf3, 0xc5, 0x6b,
0x5b, 0x68, 0x19, 0xaa, 0x34, 0x79, 0xa1, 0x4c, 0xaf, 0x1b, 0xec, 0xa3, 0x10, 0x3b, 0xf4, 0xdf,
0x2e, 0x41, 0x6b, 0x1f, 0x9b, 0xc1, 0xe0, 0x48, 0xec, 0xe3, 0x5b, 0xe9, 0x5a, 0xe0, 0x4b, 0x13,
0x6a, 0x81, 0xd2, 0x90, 0x2f, 0x4d, 0x11, 0x90, 0x20, 0x88, 0xfc, 0xc8, 0x8c, 0xa9, 0xec, 0x7b,
0x63, 0x97, 0x17, 0xc8, 0x16, 0x68, 0x03, 0x27, 0x75, 0x6f, 0xec, 0xea, 0xff, 0xa1, 0x41, 0xf3,
0xe7, 0xc9, 0x34, 0x62, 0x63, 0x6e, 0xa5, 0x37, 0xe6, 0x95, 0x09, 0x1b, 0x63, 0xe0, 0x28, 0xb0,
0xf1, 0x31, 0xfe, 0xd2, 0xd5, 0x47, 0xff, 0x46, 0x83, 0x1e, 0xc9, 0x42, 0x0d, 0x66, 0x30, 0x66,
0xd7, 0xae, 0x1b, 0xd0, 0x3a, 0x96, 0xe2, 0xca, 0x12, 0x15, 0xce, 0xe6, 0x71, 0x3a, 0x6b, 0x36,
0xa0, 0x23, 0xca, 0x95, 0x7c, 0xb1, 0xc2, 0x7e, 0xbf, 0xaa, 0xa2, 0x3a, 0x43, 0x1c, 0xb5, 0x7f,
0x0b, 0x81, 0x0c, 0xd4, 0x7f, 0x43, 0x83, 0x25, 0x45, 0x47, 0x74, 0x05, 0xe6, 0x79, 0x86, 0xce,
0x1d, 0x3d, 0xd3, 0x77, 0x8b, 0xb0, 0x27, 0xa9, 0x31, 0xd9, 0x56, 0x3e, 0x58, 0xb5, 0xd0, 0x0b,
0xd0, 0x88, 0xf3, 0x15, 0x2b, 0xc7, 0x1f, 0x2b, 0x44, 0x3d, 0xa8, 0x71, 0x33, 0x28, 0x12, 0xc1,
0xf8, 0x5b, 0x7f, 0x02, 0xe8, 0x1e, 0x4e, 0x9c, 0xce, 0x2c, 0x3b, 0x9a, 0xd8, 0x9b, 0x84, 0xd0,
0xb4, 0x11, 0xb2, 0xf4, 0x7f, 0xd5, 0x60, 0x49, 0xc2, 0x36, 0x4b, 0x25, 0x25, 0x71, 0x8c, 0xa5,
0x8b, 0x38, 0x46, 0xa9, 0x5a, 0x50, 0x3e, 0x57, 0xb5, 0xe0, 0x3a, 0x40, 0xbc, 0xff, 0x62, 0x47,
0x53, 0x10, 0xfd, 0x2f, 0x35, 0xb8, 0xfc, 0x9e, 0xe9, 0x59, 0xfe, 0xe1, 0xe1, 0xec, 0xa2, 0xba,
0x0d, 0x52, 0xea, 0x58, 0xb4, 0x5e, 0x26, 0xe7, 0x9b, 0xaf, 0xc1, 0x62, 0xc0, 0x3c, 0x93, 0x25,
0xcb, 0x72, 0xd9, 0xe8, 0x88, 0x86, 0x58, 0x46, 0xff, 0xb4, 0x04, 0x88, 0xac, 0xfa, 0x8e, 0xe9,
0x98, 0xde, 0x00, 0x5f, 0x9c, 0xf4, 0x97, 0xa1, 0x2d, 0xc5, 0x1e, 0xf1, 0x11, 0x71, 0x3a, 0xf8,
0x08, 0xd1, 0xfb, 0xd0, 0x3e, 0x60, 0xa8, 0xfa, 0x01, 0x36, 0x43, 0xdf, 0xe3, 0xec, 0x50, 0x96,
0xc6, 0x1e, 0x06, 0xf6, 0x70, 0x88, 0x83, 0x6d, 0xdf, 0xb3, 0x78, 0x18, 0x7e, 0x20, 0xc8, 0x24,
0x43, 0x89, 0x32, 0x24, 0x81, 0x58, 0xcc, 0x9c, 0x38, 0x12, 0xa3, 0x5b, 0x11, 0x62, 0xd3, 0x49,
0x36, 0x22, 0xf1, 0x86, 0x1d, 0xd6, 0xb0, 0x3f, 0xb9, 0x32, 0xaa, 0x08, 0x8c, 0xf4, 0x3f, 0xd7,
0x00, 0xc5, 0x59, 0x32, 0xad, 0x07, 0x50, 0x8d, 0xce, 0x0e, 0xd5, 0x14, 0x4e, 0xf9, 0x2a, 0xd4,
0x2d, 0x31, 0x92, 0x9b, 0xa0, 0x04, 0x40, 0x7d, 0x24, 0x25, 0xba, 0x4f, 0x24, 0x0f, 0x5b, 0x22,
0x0b, 0x65, 0xc0, 0xfb, 0x14, 0x26, 0xc7, 0x55, 0x95, 0x6c, 0x5c, 0x95, 0x2e, 0xfc, 0x55, 0xa5,
0xc2, 0x9f, 0xfe, 0x93, 0x12, 0x74, 0xa8, 0x0b, 0xd9, 0x4e, 0x4a, 0x3c, 0x85, 0x88, 0xbe, 0x01,
0x2d, 0x7e, 0x9f, 0x42, 0x22, 0xbc, 0xf9, 0x34, 0x35, 0x19, 0x7a, 0x13, 0x96, 0x59, 0xa7, 0x00,
0x87, 0x63, 0x27, 0x49, 0xc0, 0x58, 0x16, 0x82, 0x9e, 0x32, 0xdf, 0x45, 0x9a, 0xc4, 0x88, 0x47,
0x70, 0x79, 0xe8, 0xf8, 0x07, 0xa6, 0xd3, 0x97, 0xd9, 0xc3, 0x78, 0x58, 0x40, 0xe2, 0x97, 0xd9,
0xf0, 0xfd, 0x34, 0x0f, 0x43, 0x74, 0x07, 0x5a, 0x21, 0xc6, 0x4f, 0x92, 0xbc, 0xac, 0x5a, 0x24,
0x2f, 0x6b, 0x92, 0x31, 0x71, 0x62, 0xf6, 0x7b, 0x1a, 0x2c, 0x64, 0xca, 0xf6, 0xd9, 0x1a, 0x82,
0x96, 0xaf, 0x21, 0xdc, 0x82, 0x2a, 0xb1, 0x54, 0xcc, 0xb7, 0xb4, 0xd5, 0xf9, 0xad, 0x3c, 0xab,
0xc1, 0x06, 0xa0, 0x4d, 0x58, 0x52, 0x1c, 0xd6, 0x73, 0xf6, 0xa3, 0xfc, 0x59, 0xbd, 0xfe, 0xd3,
0x0a, 0x34, 0x52, 0x5b, 0x31, 0xa5, 0xfc, 0xf1, 0x4c, 0xca, 0xaf, 0x93, 0xce, 0x71, 0x89, 0xc8,
0xb9, 0xd8, 0x65, 0x09, 0x1b, 0xcf, 0x1e, 0x5d, 0xec, 0xd2, 0x74, 0x2d, 0x9d, 0x89, 0xcd, 0x49,
0x99, 0x58, 0x26, 0x57, 0x9d, 0x3f, 0x23, 0x57, 0xad, 0xc9, 0xb9, 0xaa, 0xa4, 0x42, 0xf5, 0xac,
0x0a, 0x15, 0xad, 0x48, 0xbc, 0x09, 0x4b, 0x03, 0x56, 0xde, 0xbe, 0x73, 0xba, 0x1d, 0x37, 0xf1,
0xa0, 0x54, 0xd5, 0x84, 0xee, 0x26, 0x45, 0x42, 0xc6, 0x65, 0x96, 0x2d, 0xa8, 0x53, 0x61, 0xce,
0x1b, 0xc6, 0x64, 0x61, 0x99, 0xe9, 0x57, 0xb6, 0x16, 0xd2, 0xba, 0x50, 0x2d, 0xe4, 0x05, 0x68,
0x88, 0x48, 0x85, 0x68, 0x7a, 0x9b, 0x19, 0x3d, 0x61, 0x06, 0xac, 0x50, 0xb2, 0x03, 0x0b, 0xf2,
0x01, 0x40, 0xb6, 0x90, 0xd0, 0xc9, 0x17, 0x12, 0xae, 0xc0, 0xbc, 0x1d, 0xf6, 0x0f, 0xcd, 0x27,
0xb8, 0xbb, 0x48, 0x5b, 0xe7, 0xec, 0xf0, 0xae, 0xf9, 0x04, 0xeb, 0xff, 0x58, 0x86, 0x76, 0xe2,
0x60, 0x0b, 0x5b, 0x90, 0x22, 0x17, 0x56, 0xf6, 0xa0, 0x93, 0xc4, 0x3d, 0x74, 0x87, 0xcf, 0x4c,
0x9e, 0xb3, 0xa7, 0x6a, 0x0b, 0xa3, 0x8c, 0xbe, 0x4a, 0xee, 0xbe, 0x72, 0x2e, 0x77, 0x3f, 0xe3,
0xa9, 0xf7, 0x4d, 0x58, 0x89, 0x7d, 0xaf, 0xb4, 0x6c, 0x96, 0x60, 0x2d, 0x8b, 0xc6, 0x07, 0xe9,
0xe5, 0x4f, 0x30, 0x01, 0xf3, 0x93, 0x4c, 0x40, 0x56, 0x04, 0x6a, 0x39, 0x11, 0xc8, 0x1f, 0xbe,
0xd7, 0x15, 0x87, 0xef, 0xfa, 0x23, 0x58, 0xa2, 0x75, 0xdf, 0x70, 0x10, 0xd8, 0x07, 0x38, 0x4e,
0x01, 0x8a, 0xb0, 0xb5, 0x07, 0xb5, 0x4c, 0x16, 0x11, 0x7f, 0xeb, 0xbf, 0xaa, 0xc1, 0xe5, 0xfc,
0xbc, 0x54, 0x62, 0x12, 0x43, 0xa2, 0x49, 0x86, 0xe4, 0x17, 0x60, 0x29, 0x15, 0x51, 0x4a, 0x33,
0x4f, 0x88, 0xc0, 0x15, 0x84, 0x1b, 0x28, 0x99, 0x43, 0xc0, 0xf4, 0x9f, 0x6a, 0x71, 0xf9, 0x9c,
0xc0, 0x86, 0xf4, 0x50, 0x81, 0xf8, 0x35, 0xdf, 0x73, 0x6c, 0x2f, 0xae, 0x94, 0xf0, 0x35, 0x32,
0x20, 0xaf, 0x94, 0xbc, 0x07, 0x0b, 0xbc, 0x53, 0xec, 0x9e, 0x0a, 0x06, 0x64, 0x6d, 0x36, 0x2e,
0x76, 0x4c, 0x2f, 0x43, 0x9b, 0x57, 0xfb, 0x05, 0xbe, 0xb2, 0xea, 0x0c, 0xe0, 0xfb, 0xd0, 0x11,
0xdd, 0xce, 0xeb, 0x10, 0x17, 0xf8, 0xc0, 0x38, 0xb0, 0xfb, 0x15, 0x0d, 0xba, 0xb2, 0x7b, 0x4c,
0x2d, 0xff, 0xfc, 0xe1, 0xdd, 0xdb, 0xf2, 0x11, 0xee, 0xcb, 0x67, 0xd0, 0x93, 0xe0, 0x11, 0x07,
0xb9, 0xbf, 0x59, 0xa2, 0xe7, 0xf1, 0x24, 0xd5, 0xdb, 0xb1, 0xc3, 0x28, 0xb0, 0x0f, 0xc6, 0xb3,
0x1d, 0x2a, 0x9a, 0xd0, 0x18, 0x1c, 0xe1, 0xc1, 0x93, 0x91, 0x6f, 0x27, 0x5c, 0x79, 0x57, 0x45,
0xd3, 0x64, 0xb4, 0x1b, 0xdb, 0xc9, 0x0c, 0xec, 0xd8, 0x26, 0x3d, 0x67, 0xef, 0x87, 0xd0, 0xc9,
0x76, 0x48, 0x1f, 0xba, 0xd4, 0xd9, 0xa1, 0xcb, 0x4d, 0xf9, 0xd0, 0x65, 0x4a, 0xa4, 0x91, 0x3a,
0x73, 0xf9, 0x8b, 0x12, 0x7c, 0x55, 0x49, 0xdb, 0x2c, 0x59, 0xd2, 0xa4, 0x3a, 0xd2, 0x1d, 0xa8,
0x65, 0x92, 0xda, 0x57, 0xce, 0xe0, 0x1f, 0xaf, 0xa5, 0xb2, 0x9a, 0x5e, 0x98, 0xc4, 0x56, 0x89,
0xc2, 0x57, 0x26, 0xcf, 0xc1, 0xf5, 0x4e, 0x9a, 0x43, 0x8c, 0x43, 0xb7, 0xa1, 0xc9, 0x0a, 0x06,
0xfd, 0x63, 0x1b, 0x9f, 0x88, 0xb3, 0xc8, 0xeb, 0x4a, 0xd3, 0x4c, 0xfb, 0x3d, 0xb6, 0xf1, 0x89,
0xd1, 0x70, 0xe2, 0xdf, 0xa1, 0xfe, 0x9f, 0x65, 0x80, 0xa4, 0x8d, 0x64, 0x67, 0x89, 0xce, 0x73,
0x25, 0x4e, 0x41, 0x48, 0x2c, 0x21, 0x47, 0xae, 0xe2, 0x13, 0x19, 0xc9, 0x91, 0x82, 0x65, 0x87,
0x11, 0xdf, 0x97, 0xcd, 0xb3, 0x69, 0x11, 0x5b, 0x44, 0x58, 0xc6, 0x65, 0x26, 0x4c, 0x20, 0xe8,
0x0d, 0x40, 0xc3, 0xc0, 0x3f, 0xb1, 0xbd, 0x61, 0x3a, 0xdf, 0x60, 0x69, 0xc9, 0x22, 0x6f, 0x49,
0x25, 0x1c, 0x3f, 0x82, 0x4e, 0xa6, 0xbb, 0xd8, 0x92, 0x9b, 0x53, 0xc8, 0xb8, 0x27, 0xcd, 0xc5,
0xc5, 0x77, 0x41, 0xc6, 0x10, 0xf6, 0xfa, 0xd0, 0xc9, 0xd2, 0xab, 0x38, 0x37, 0xfc, 0x86, 0x2c,
0xc2, 0x67, 0x59, 0x1a, 0x32, 0x4d, 0x4a, 0x88, 0x7b, 0x26, 0x2c, 0xab, 0x28, 0x51, 0x20, 0xb9,
0xb0, 0x9e, 0xbc, 0x1b, 0x07, 0xbb, 0x74, 0x87, 0x27, 0xf9, 0x8f, 0x54, 0x2d, 0xb8, 0x24, 0xd5,
0x82, 0xf5, 0xbf, 0xd5, 0x00, 0xe5, 0x05, 0x1b, 0xb5, 0xa1, 0x14, 0x4f, 0x52, 0xda, 0xdd, 0xc9,
0x08, 0x52, 0x29, 0x27, 0x48, 0x57, 0xa1, 0x1e, 0xfb, 0x73, 0x6e, 0xbc, 0x13, 0x40, 0x5a, 0xcc,
0x2a, 0xb2, 0x98, 0xa5, 0x08, 0xab, 0xca, 0x45, 0xea, 0x37, 0x61, 0xd9, 0x31, 0xc3, 0xa8, 0xcf,
0x6a, 0xe1, 0x91, 0xed, 0xe2, 0x30, 0x32, 0xdd, 0x11, 0x0d, 0x96, 0x2b, 0x06, 0x22, 0x6d, 0x3b,
0xa4, 0xe9, 0xa1, 0x68, 0xd1, 0x8f, 0x00, 0xe5, 0xd5, 0x2b, 0x8d, 0x5b, 0x93, 0x71, 0x4f, 0x5b,
0x53, 0x8a, 0xb6, 0xb2, 0xbc, 0x69, 0x7f, 0x50, 0x06, 0x94, 0xc4, 0x38, 0xf1, 0x49, 0x6b, 0x91,
0xc0, 0x60, 0x13, 0x96, 0xf2, 0x11, 0x90, 0x08, 0xfb, 0x50, 0x2e, 0xfe, 0x51, 0xc5, 0x2a, 0x65,
0xd5, 0x45, 0xc1, 0xb7, 0x62, 0x83, 0xc8, 0x02, 0xba, 0xeb, 0x13, 0x4b, 0xf5, 0xb2, 0x4d, 0xfc,
0x61, 0xf6, 0x82, 0x21, 0xd3, 0xb0, 0x5b, 0x4a, 0xe3, 0x95, 0x5b, 0xf2, 0xd4, 0xdb, 0x85, 0x52,
0xa8, 0x39, 0x77, 0x9e, 0x50, 0x73, 0xf6, 0x5b, 0x85, 0xff, 0x5c, 0x82, 0xc5, 0x78, 0x23, 0xcf,
0xc5, 0xa4, 0xe9, 0x87, 0xe2, 0xcf, 0x99, 0x2b, 0x1f, 0xab, 0xb9, 0xf2, 0xcd, 0x33, 0xc3, 0xfd,
0xa2, 0x4c, 0x99, 0x7d, 0x67, 0x3f, 0x85, 0x79, 0x5e, 0xb8, 0xcd, 0x19, 0x8a, 0x22, 0x09, 0xf5,
0x32, 0x54, 0x89, 0x5d, 0x12, 0x55, 0x37, 0xf6, 0xc1, 0xb6, 0x34, 0x7d, 0xdd, 0x94, 0xdb, 0x8a,
0x96, 0x74, 0xdb, 0x54, 0xff, 0x77, 0x0d, 0x60, 0xff, 0xd4, 0x1b, 0xdc, 0x66, 0x4a, 0xfa, 0x26,
0x54, 0xa6, 0xdd, 0x71, 0x22, 0xbd, 0xa9, 0x6c, 0xd1, 0x9e, 0x05, 0x98, 0x2b, 0x95, 0x0c, 0xca,
0xd9, 0x92, 0xc1, 0xa4, 0x64, 0x7f, 0xb2, 0x29, 0xfb, 0x26, 0x54, 0x48, 0xa0, 0xc7, 0xef, 0x08,
0x15, 0x3a, 0xf0, 0xa4, 0x03, 0xf4, 0xcf, 0x4a, 0x70, 0x85, 0x50, 0xff, 0x6c, 0xa2, 0xc2, 0x22,
0xac, 0x49, 0x59, 0xcb, 0xb2, 0x6c, 0x2d, 0x6f, 0xc1, 0x3c, 0x4b, 0xf7, 0x45, 0x7c, 0x73, 0x7d,
0xd2, 0x5e, 0x33, 0xce, 0x18, 0xa2, 0xfb, 0xac, 0x39, 0xa3, 0x74, 0xd8, 0x3a, 0x37, 0xdb, 0x61,
0xeb, 0x7c, 0xb6, 0x28, 0x98, 0x62, 0x5a, 0x4d, 0xb6, 0xf1, 0x8f, 0xa0, 0x65, 0xa4, 0x05, 0x0f,
0x21, 0xa8, 0xa4, 0xee, 0x14, 0xd2, 0xdf, 0x34, 0xcd, 0x33, 0x47, 0xe6, 0xc0, 0x8e, 0x4e, 0xe9,
0x76, 0x56, 0x8d, 0xf8, 0x5b, 0x2d, 0xe5, 0xfa, 0xff, 0x68, 0x70, 0x59, 0x1c, 0xea, 0x71, 0x1d,
0xba, 0x38, 0x47, 0xb7, 0x60, 0x85, 0x2b, 0x4c, 0x46, 0x73, 0x58, 0x30, 0xb7, 0xc4, 0x60, 0xf2,
0x32, 0xb6, 0x60, 0x25, 0x32, 0x83, 0x21, 0x8e, 0xb2, 0x63, 0x18, 0xbf, 0x97, 0x58, 0xa3, 0x3c,
0xa6, 0xc8, 0xa1, 0xea, 0x0b, 0xec, 0x32, 0x0e, 0xdf, 0x5a, 0xae, 0x02, 0xe0, 0x8d, 0x5d, 0xbe,
0x4a, 0xfd, 0x04, 0xae, 0xb2, 0x5b, 0xbd, 0x07, 0x32, 0x45, 0x33, 0xd5, 0xd4, 0x95, 0xeb, 0xce,
0x58, 0x8c, 0xdf, 0xd7, 0xe0, 0xda, 0x04, 0xcc, 0xb3, 0x64, 0x13, 0xf7, 0x95, 0xd8, 0x27, 0xe4,
0x7e, 0x12, 0x5e, 0x2a, 0xa1, 0x19, 0x22, 0x3f, 0xab, 0xc0, 0x62, 0xae, 0xd3, 0xb9, 0x65, 0xee,
0x75, 0x40, 0x84, 0x09, 0xf1, 0x23, 0x31, 0x9a, 0x4e, 0x73, 0xd7, 0xd4, 0xf1, 0xc6, 0x6e, 0xfc,
0x40, 0x8c, 0x64, 0xd4, 0xc8, 0x66, 0xbd, 0x59, 0x45, 0x3d, 0xe6, 0x5c, 0x65, 0xf2, 0x0b, 0x83,
0x1c, 0x81, 0x1b, 0x7b, 0x63, 0x97, 0x15, 0xdf, 0x39, 0x97, 0x99, 0xbb, 0x21, 0xa8, 0x24, 0x30,
0x3a, 0x84, 0x45, 0x7a, 0x55, 0x6b, 0x1c, 0x0d, 0x7d, 0x12, 0xd0, 0x53, 0xba, 0x98, 0x53, 0xfb,
0x76, 0x61, 0x4c, 0x1f, 0xf2, 0xd1, 0x84, 0x78, 0x1e, 0xd3, 0x7b, 0x32, 0x54, 0xe0, 0xb1, 0xbd,
0x81, 0xef, 0xc6, 0x78, 0xe6, 0xce, 0x89, 0x67, 0x97, 0x8f, 0x96, 0xf1, 0xa4, 0xa1, 0xbd, 0x6d,
0x58, 0x51, 0x2e, 0x7d, 0x9a, 0x1b, 0xad, 0xa6, 0xf3, 0x83, 0x3b, 0xb0, 0xac, 0x5a, 0xd5, 0x05,
0xe6, 0xc8, 0x51, 0x7c, 0x9e, 0x39, 0xf4, 0x3f, 0x29, 0x41, 0x6b, 0x07, 0x3b, 0x38, 0xc2, 0xcf,
0xf7, 0xcc, 0x33, 0x77, 0x80, 0x5b, 0xce, 0x1f, 0xe0, 0xe6, 0x4e, 0xa3, 0x2b, 0x8a, 0xd3, 0xe8,
0x6b, 0xf1, 0x21, 0x3c, 0x99, 0xa5, 0x2a, 0x7b, 0x68, 0x0b, 0xbd, 0x0d, 0xcd, 0x51, 0x60, 0xbb,
0x66, 0x70, 0xda, 0x7f, 0x82, 0x4f, 0x43, 0xee, 0x34, 0xba, 0x4a, 0xb7, 0xb3, 0xbb, 0x13, 0x1a,
0x0d, 0xde, 0xfb, 0x7d, 0x7c, 0x4a, 0x0f, 0xf8, 0xe3, 0x64, 0x83, 0x5d, 0xc5, 0xaa, 0x18, 0x29,
0xc8, 0xfa, 0x2a, 0xd4, 0xe3, 0x1b, 0x2f, 0xa8, 0x06, 0x95, 0xbb, 0x63, 0xc7, 0xe9, 0x5c, 0x42,
0x75, 0xa8, 0xd2, 0x74, 0xa4, 0xa3, 0xad, 0x7f, 0x17, 0xea, 0xf1, 0xa9, 0x3d, 0x6a, 0xc0, 0xfc,
0x23, 0xef, 0x7d, 0xcf, 0x3f, 0xf1, 0x3a, 0x97, 0xd0, 0x3c, 0x94, 0x6f, 0x3b, 0x4e, 0x47, 0x43,
0x2d, 0xa8, 0xef, 0x47, 0x01, 0x36, 0x09, 0xcf, 0x3a, 0x25, 0xd4, 0x06, 0x78, 0xcf, 0x0e, 0x23,
0x3f, 0xb0, 0x07, 0xa6, 0xd3, 0x29, 0xaf, 0x7f, 0x0a, 0x6d, 0xb9, 0x88, 0x8b, 0x9a, 0x50, 0xdb,
0xf3, 0xa3, 0xef, 0x7d, 0x62, 0x87, 0x51, 0xe7, 0x12, 0xe9, 0xbf, 0xe7, 0x47, 0x0f, 0x02, 0x1c,
0x62, 0x2f, 0xea, 0x68, 0x08, 0x60, 0xee, 0x43, 0x6f, 0xc7, 0x0e, 0x9f, 0x74, 0x4a, 0x68, 0x89,
0x9f, 0xcf, 0x98, 0xce, 0x2e, 0xaf, 0x8c, 0x76, 0xca, 0x64, 0x78, 0xfc, 0x55, 0x41, 0x1d, 0x68,
0xc6, 0x5d, 0xee, 0x3d, 0x78, 0xd4, 0xa9, 0x12, 0xea, 0xd9, 0xcf, 0xb9, 0x75, 0x0b, 0x3a, 0xd9,
0x73, 0x45, 0x32, 0x27, 0x5b, 0x44, 0x0c, 0xea, 0x5c, 0x22, 0x2b, 0xe3, 0x07, 0xbb, 0x1d, 0x0d,
0x2d, 0x40, 0x23, 0x75, 0x4c, 0xda, 0x29, 0x11, 0xc0, 0xbd, 0x60, 0x34, 0xe0, 0x02, 0xc5, 0x48,
0x20, 0xd2, 0xb9, 0x43, 0x76, 0xa2, 0xb2, 0x7e, 0x07, 0x6a, 0x22, 0xe4, 0x27, 0x5d, 0xf9, 0x16,
0x91, 0xcf, 0xce, 0x25, 0xb4, 0x08, 0x2d, 0xe9, 0x2d, 0x53, 0x47, 0x43, 0x08, 0xda, 0xf2, 0x6b,
0xc3, 0x4e, 0x69, 0x7d, 0x0b, 0x20, 0x09, 0x9d, 0x09, 0x39, 0xbb, 0xde, 0xb1, 0xe9, 0xd8, 0x16,
0xa3, 0x8d, 0x34, 0x91, 0xdd, 0xa5, 0xbb, 0xc3, 0x14, 0xb5, 0x53, 0x5a, 0x5f, 0x87, 0x9a, 0x08,
0x07, 0x09, 0xdc, 0xc0, 0xae, 0x7f, 0x8c, 0x19, 0x67, 0xf6, 0x31, 0xd9, 0xca, 0x3a, 0x54, 0x6f,
0xbb, 0xd8, 0xb3, 0x3a, 0xa5, 0xad, 0x7f, 0x5b, 0x02, 0x60, 0xa7, 0x82, 0xbe, 0x1f, 0x58, 0xc8,
0xa1, 0xb7, 0x03, 0xb6, 0x7d, 0x77, 0xe4, 0x7b, 0xe2, 0xc8, 0x22, 0x44, 0x1b, 0x99, 0x54, 0x9d,
0x7d, 0xe4, 0x3b, 0xf2, 0x8d, 0xe8, 0xbd, 0xa4, 0xec, 0x9f, 0xe9, 0xac, 0x5f, 0x42, 0x2e, 0xc5,
0x46, 0x92, 0xdb, 0x87, 0xf6, 0xe0, 0x49, 0x7c, 0x94, 0x38, 0xf9, 0xc9, 0x5f, 0xa6, 0xab, 0xc0,
0x77, 0x43, 0x89, 0x6f, 0x3f, 0x0a, 0x6c, 0x6f, 0x28, 0xfc, 0x9f, 0x7e, 0x09, 0x3d, 0xcd, 0x3c,
0x38, 0x14, 0x08, 0xb7, 0x8a, 0xbc, 0x31, 0xbc, 0x18, 0x4a, 0x07, 0x16, 0x32, 0x6f, 0xb0, 0xd1,
0xba, 0xfa, 0x01, 0x88, 0xea, 0xbd, 0x78, 0xef, 0xb5, 0x42, 0x7d, 0x63, 0x6c, 0x36, 0xb4, 0xe5,
0x77, 0xc6, 0xe8, 0xe7, 0x26, 0x4d, 0x90, 0x7b, 0x82, 0xd6, 0x5b, 0x2f, 0xd2, 0x35, 0x46, 0xf5,
0x11, 0x93, 0xd5, 0x69, 0xa8, 0x94, 0xcf, 0xf5, 0x7a, 0x67, 0x85, 0x1e, 0xfa, 0x25, 0xf4, 0x63,
0x12, 0x25, 0x64, 0x1e, 0xca, 0xa1, 0xd7, 0xd5, 0x9e, 0x4d, 0xfd, 0x9e, 0x6e, 0x1a, 0x86, 0x8f,
0xb2, 0x9a, 0x36, 0x99, 0xfa, 0xdc, 0xd3, 0xd9, 0xe2, 0xd4, 0xa7, 0xa6, 0x3f, 0x8b, 0xfa, 0x73,
0x63, 0x70, 0x58, 0xc2, 0xa4, 0x78, 0xa2, 0x93, 0x15, 0xe5, 0x24, 0x5f, 0x99, 0xfc, 0x9e, 0x67,
0x1a, 0xb6, 0x31, 0x55, 0xd2, 0xec, 0x71, 0xf8, 0x1b, 0x13, 0x0a, 0xed, 0xea, 0xb7, 0x81, 0xbd,
0x8d, 0xa2, 0xdd, 0xd3, 0xb2, 0x2c, 0x3f, 0x3f, 0x53, 0xb3, 0x48, 0xf9, 0x64, 0x4e, 0x2d, 0xcb,
0xea, 0xd7, 0x6c, 0xfa, 0x25, 0xf4, 0x50, 0xb2, 0xeb, 0xe8, 0x95, 0x49, 0xa2, 0x20, 0xdf, 0x8f,
0x99, 0xb6, 0x6f, 0xbf, 0x08, 0x88, 0x69, 0xaa, 0x77, 0x68, 0x0f, 0xc7, 0x81, 0xc9, 0xc4, 0x78,
0x92, 0x71, 0xcb, 0x77, 0x15, 0x68, 0xbe, 0x76, 0x8e, 0x11, 0xf1, 0x92, 0xfa, 0x00, 0xf7, 0x70,
0xf4, 0x01, 0x8e, 0x02, 0x7b, 0x10, 0x66, 0x57, 0x94, 0xd8, 0x6f, 0xde, 0x41, 0xa0, 0x7a, 0x75,
0x6a, 0xbf, 0x18, 0xc1, 0x01, 0x34, 0xee, 0x91, 0x0c, 0x8a, 0x46, 0x85, 0x21, 0x9a, 0x38, 0x52,
0xf4, 0x10, 0x28, 0xd6, 0xa6, 0x77, 0x4c, 0x1b, 0xcf, 0xcc, 0x53, 0x3c, 0x34, 0x91, 0xb1, 0xf9,
0x07, 0x82, 0x6a, 0xe3, 0x39, 0xe1, 0x6d, 0x1f, 0x5b, 0x11, 0x3d, 0xec, 0x79, 0x0f, 0x9b, 0x4e,
0x74, 0x34, 0x61, 0x45, 0xa9, 0x1e, 0x67, 0xaf, 0x48, 0xea, 0x18, 0xe3, 0xc0, 0xb0, 0xc4, 0xb4,
0x50, 0x4e, 0x3d, 0x37, 0xd5, 0x53, 0xe4, 0x7b, 0x16, 0x14, 0x3d, 0x13, 0x16, 0x77, 0x02, 0x7f,
0x24, 0x23, 0x79, 0x43, 0x89, 0x24, 0xd7, 0xaf, 0x20, 0x8a, 0x1f, 0x40, 0x53, 0x64, 0xf8, 0x34,
0x27, 0x51, 0xef, 0x42, 0xba, 0x4b, 0xc1, 0x89, 0x3f, 0x86, 0x85, 0x4c, 0xe9, 0x40, 0xcd, 0x74,
0x75, 0x7d, 0x61, 0xda, 0xec, 0x27, 0x80, 0xe8, 0xfb, 0x4a, 0xe9, 0x6d, 0xf7, 0x84, 0xf8, 0x26,
0xdf, 0x51, 0x20, 0xd9, 0x2c, 0xdc, 0x3f, 0xe6, 0xfc, 0x2f, 0xc1, 0x8a, 0x32, 0x3d, 0xcf, 0x1a,
0x04, 0x7e, 0x21, 0xf6, 0x8c, 0x1a, 0x42, 0xd6, 0x20, 0x9c, 0x39, 0x42, 0xe0, 0xdf, 0xfa, 0xa7,
0x05, 0xa8, 0xd3, 0x38, 0x8f, 0x72, 0xeb, 0xff, 0xc3, 0xbc, 0x67, 0x1b, 0xe6, 0x7d, 0x0c, 0x0b,
0x99, 0x87, 0x81, 0x6a, 0xa1, 0x55, 0xbf, 0x1e, 0x2c, 0x10, 0xad, 0xc8, 0x4f, 0xf3, 0xd4, 0xae,
0x50, 0xf9, 0x7c, 0x6f, 0xda, 0xdc, 0x8f, 0xd9, 0x9b, 0xda, 0xf8, 0x96, 0xc2, 0xab, 0x13, 0x8b,
0xf7, 0xf2, 0xc5, 0xd6, 0xcf, 0x3f, 0x0a, 0xfa, 0x72, 0x47, 0xa0, 0x1f, 0xc3, 0x42, 0xe6, 0xe9,
0x88, 0x5a, 0x62, 0xd4, 0xef, 0x4b, 0xa6, 0xcd, 0xfe, 0x33, 0x0c, 0x9e, 0x2c, 0x58, 0x52, 0xdc,
0xd4, 0x47, 0x1b, 0x93, 0x02, 0x51, 0xf5, 0x95, 0xfe, 0xe9, 0x0b, 0x6a, 0x49, 0x6a, 0x9a, 0xf5,
0x37, 0x09, 0x91, 0xd9, 0x3f, 0x85, 0xe9, 0xbd, 0x5e, 0xec, 0x1f, 0x64, 0xe2, 0x05, 0xed, 0xc3,
0x1c, 0x7b, 0x50, 0x82, 0x5e, 0x54, 0x1f, 0x62, 0xa4, 0x1e, 0x9b, 0xf4, 0xa6, 0x3d, 0x49, 0x09,
0xc7, 0x4e, 0x14, 0xd2, 0x49, 0xab, 0xd4, 0xfa, 0x22, 0x65, 0x55, 0x3f, 0xfd, 0xb2, 0xa3, 0x37,
0xfd, 0x31, 0x87, 0x98, 0xf4, 0xff, 0x76, 0x84, 0xf9, 0x09, 0x7d, 0x3a, 0x90, 0xbd, 0x1c, 0x83,
0x36, 0xce, 0x77, 0xc3, 0xa7, 0xb7, 0x59, 0xb8, 0x7f, 0x8c, 0xf9, 0x47, 0xd0, 0xc9, 0x1e, 0x48,
0xa1, 0xd7, 0x26, 0xc9, 0xb3, 0x0a, 0xe7, 0x14, 0x61, 0xfe, 0x3e, 0xcc, 0xb1, 0x4a, 0xa4, 0x5a,
0xc2, 0xa4, 0x2a, 0xe5, 0x94, 0xb9, 0xee, 0x7c, 0xfd, 0xa3, 0xad, 0xa1, 0x1d, 0x1d, 0x8d, 0x0f,
0x48, 0xcb, 0x26, 0xeb, 0xfa, 0x86, 0xed, 0xf3, 0x5f, 0x9b, 0x82, 0x97, 0x9b, 0x74, 0xf4, 0x26,
0x45, 0x30, 0x3a, 0x38, 0x98, 0xa3, 0x9f, 0x37, 0xff, 0x37, 0x00, 0x00, 0xff, 0xff, 0x19, 0xe2,
0x54, 0xd8, 0x29, 0x4f, 0x00, 0x00,
// 4563 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7c, 0xcd, 0x6f, 0x1c, 0x47,
0x76, 0xb8, 0x7a, 0x3e, 0xc8, 0x99, 0x37, 0x9f, 0x2c, 0x92, 0xd2, 0xec, 0xac, 0x24, 0xd3, 0x2d,
0xcb, 0xe6, 0xd2, 0x36, 0xa9, 0xa5, 0x76, 0xbd, 0xda, 0xb5, 0x17, 0x5e, 0x89, 0x5c, 0xc9, 0x5c,
0xcb, 0x34, 0x7f, 0x4d, 0x49, 0xfb, 0x83, 0xe1, 0xdd, 0xd9, 0xe6, 0x74, 0x71, 0xd8, 0x50, 0x7f,
0x8c, 0xba, 0x7b, 0x48, 0xd3, 0x01, 0x72, 0xca, 0x25, 0x8b, 0x24, 0x48, 0x4e, 0xc9, 0x21, 0xc8,
0x21, 0x41, 0x80, 0x4d, 0x90, 0xdc, 0x92, 0x5b, 0x0e, 0x39, 0x25, 0x01, 0x82, 0x7c, 0x5c, 0x82,
0xfc, 0x03, 0xc9, 0x21, 0x40, 0x82, 0x20, 0x87, 0x45, 0xe0, 0x5b, 0x50, 0x5f, 0xdd, 0x5d, 0xdd,
0x35, 0x9c, 0x21, 0x47, 0x5a, 0xdb, 0x41, 0x6e, 0xd3, 0xaf, 0xab, 0xea, 0xbd, 0x7a, 0xdf, 0xef,
0x55, 0xd7, 0xc0, 0xc2, 0xb3, 0x11, 0x0e, 0x4e, 0x7b, 0x7d, 0xdf, 0x0f, 0xac, 0xf5, 0x61, 0xe0,
0x47, 0x3e, 0x42, 0xae, 0xed, 0x1c, 0x8f, 0x42, 0xf6, 0xb4, 0x4e, 0xdf, 0x77, 0xeb, 0x7d, 0xdf,
0x75, 0x7d, 0x8f, 0xc1, 0xba, 0xf5, 0xf4, 0x88, 0x6e, 0xd3, 0xf6, 0x22, 0x1c, 0x78, 0xa6, 0x23,
0xde, 0x86, 0xfd, 0x23, 0xec, 0x9a, 0xfc, 0xa9, 0xea, 0x86, 0x03, 0xfe, 0xb3, 0x6d, 0x99, 0x91,
0x99, 0x46, 0xa5, 0xff, 0x8a, 0x06, 0x97, 0xf7, 0x8f, 0xfc, 0x93, 0x2d, 0xdf, 0x71, 0x70, 0x3f,
0xb2, 0x7d, 0x2f, 0x34, 0xf0, 0xb3, 0x11, 0x0e, 0x23, 0x74, 0x0b, 0x4a, 0x07, 0x66, 0x88, 0x3b,
0xda, 0x8a, 0xb6, 0x5a, 0xdb, 0xbc, 0xba, 0x2e, 0x11, 0xc5, 0xa9, 0xf9, 0x20, 0x1c, 0xdc, 0x33,
0x43, 0x6c, 0xd0, 0x91, 0x08, 0x41, 0xc9, 0x3a, 0xd8, 0xd9, 0xee, 0x14, 0x56, 0xb4, 0xd5, 0xa2,
0x41, 0x7f, 0xa3, 0x57, 0xa0, 0xd1, 0x8f, 0xd7, 0xde, 0xd9, 0x0e, 0x3b, 0xc5, 0x95, 0xe2, 0x6a,
0xd1, 0x90, 0x81, 0xfa, 0x4f, 0x0b, 0x70, 0x25, 0x47, 0x46, 0x38, 0xf4, 0xbd, 0x10, 0xa3, 0xdb,
0x30, 0x17, 0x46, 0x66, 0x34, 0x0a, 0x39, 0x25, 0x5f, 0x55, 0x52, 0xb2, 0x4f, 0x87, 0x18, 0x7c,
0x68, 0x1e, 0x6d, 0x41, 0x81, 0x16, 0x7d, 0x1d, 0x96, 0x6c, 0xef, 0x03, 0xec, 0xfa, 0xc1, 0x69,
0x6f, 0x88, 0x83, 0x3e, 0xf6, 0x22, 0x73, 0x80, 0x05, 0x8d, 0x8b, 0xe2, 0xdd, 0x5e, 0xf2, 0x0a,
0xbd, 0x05, 0x57, 0x98, 0xc0, 0x42, 0x1c, 0x1c, 0xdb, 0x7d, 0xdc, 0x33, 0x8f, 0x4d, 0xdb, 0x31,
0x0f, 0x1c, 0xdc, 0x29, 0xad, 0x14, 0x57, 0x2b, 0xc6, 0x32, 0x7d, 0xbd, 0xcf, 0xde, 0xde, 0x15,
0x2f, 0xd1, 0xd7, 0xa0, 0x1d, 0xe0, 0xc3, 0x00, 0x87, 0x47, 0xbd, 0x61, 0xe0, 0x0f, 0x02, 0x1c,
0x86, 0x9d, 0x32, 0x45, 0xd3, 0xe2, 0xf0, 0x3d, 0x0e, 0xd6, 0xff, 0x50, 0x83, 0x65, 0xc2, 0x8c,
0x3d, 0x33, 0x88, 0xec, 0x17, 0x20, 0x12, 0x1d, 0xea, 0x69, 0x36, 0x74, 0x8a, 0xf4, 0x9d, 0x04,
0x23, 0x63, 0x86, 0x02, 0x3d, 0x61, 0x5f, 0x89, 0x92, 0x2a, 0xc1, 0xf4, 0x7f, 0xe0, 0xba, 0x93,
0xa6, 0x73, 0x16, 0x99, 0x65, 0x71, 0x16, 0xf2, 0x38, 0x2f, 0x22, 0x31, 0x15, 0xe7, 0x4b, 0x6a,
0xce, 0xff, 0x5d, 0x11, 0x96, 0x1f, 0xfa, 0xa6, 0x95, 0xa8, 0xe1, 0x2f, 0x9e, 0xf3, 0xdf, 0x85,
0x39, 0x66, 0xbe, 0x9d, 0x12, 0xc5, 0x75, 0x53, 0xc6, 0xc5, 0x4d, 0x3b, 0xa1, 0x70, 0x9f, 0x02,
0x0c, 0x3e, 0x09, 0xdd, 0x84, 0x66, 0x80, 0x87, 0x8e, 0xdd, 0x37, 0x7b, 0xde, 0xc8, 0x3d, 0xc0,
0x41, 0xa7, 0xbc, 0xa2, 0xad, 0x96, 0x8d, 0x06, 0x87, 0xee, 0x52, 0x20, 0xfa, 0x09, 0x34, 0x0e,
0x6d, 0xec, 0x58, 0x3d, 0xdb, 0xb3, 0xf0, 0x27, 0x3b, 0xdb, 0x9d, 0xb9, 0x95, 0xe2, 0x6a, 0x6d,
0xf3, 0xed, 0xf5, 0xbc, 0xeb, 0x59, 0x57, 0x72, 0x64, 0xfd, 0x3e, 0x99, 0xbe, 0xc3, 0x66, 0x7f,
0xdf, 0x8b, 0x82, 0x53, 0xa3, 0x7e, 0x98, 0x02, 0xa1, 0x0e, 0xcc, 0x73, 0xf6, 0x76, 0xe6, 0x57,
0xb4, 0xd5, 0x8a, 0x21, 0x1e, 0xd1, 0x6b, 0xd0, 0x0a, 0x70, 0xe8, 0x8f, 0x82, 0x3e, 0xee, 0x0d,
0x02, 0x7f, 0x34, 0x0c, 0x3b, 0x95, 0x95, 0xe2, 0x6a, 0xd5, 0x68, 0x0a, 0xf0, 0x03, 0x0a, 0xed,
0xbe, 0x0b, 0x0b, 0x39, 0x2c, 0xa8, 0x0d, 0xc5, 0xa7, 0xf8, 0x94, 0x0a, 0xa2, 0x68, 0x90, 0x9f,
0x68, 0x09, 0xca, 0xc7, 0xa6, 0x33, 0xc2, 0x9c, 0xd5, 0xec, 0xe1, 0x3b, 0x85, 0x3b, 0x9a, 0xfe,
0xbb, 0x1a, 0x74, 0x0c, 0xec, 0x60, 0x33, 0xc4, 0x9f, 0xa7, 0x48, 0x2f, 0xc3, 0x9c, 0xe7, 0x5b,
0x78, 0x67, 0x9b, 0x8a, 0xb4, 0x68, 0xf0, 0x27, 0xfd, 0x33, 0x0d, 0x96, 0x1e, 0xe0, 0x88, 0x98,
0x81, 0x1d, 0x46, 0x76, 0x3f, 0xb6, 0xf3, 0xef, 0x42, 0x31, 0xc0, 0xcf, 0x38, 0x65, 0xaf, 0xcb,
0x94, 0xc5, 0xbe, 0x5e, 0x35, 0xd3, 0x20, 0xf3, 0xd0, 0xcb, 0x50, 0xb7, 0x5c, 0xa7, 0xd7, 0x3f,
0x32, 0x3d, 0x0f, 0x3b, 0xcc, 0x90, 0xaa, 0x46, 0xcd, 0x72, 0x9d, 0x2d, 0x0e, 0x42, 0xd7, 0x01,
0x42, 0x3c, 0x70, 0xb1, 0x17, 0x25, 0x3e, 0x39, 0x05, 0x41, 0x6b, 0xb0, 0x70, 0x18, 0xf8, 0x6e,
0x2f, 0x3c, 0x32, 0x03, 0xab, 0xe7, 0x60, 0xd3, 0xc2, 0x01, 0xa5, 0xbe, 0x62, 0xb4, 0xc8, 0x8b,
0x7d, 0x02, 0x7f, 0x48, 0xc1, 0xe8, 0x36, 0x94, 0xc3, 0xbe, 0x3f, 0xc4, 0x54, 0xd3, 0x9a, 0x9b,
0xd7, 0x54, 0x3a, 0xb4, 0x6d, 0x46, 0xe6, 0x3e, 0x19, 0x64, 0xb0, 0xb1, 0xfa, 0x7f, 0x71, 0x53,
0xfb, 0x82, 0x3b, 0xb9, 0x94, 0x39, 0x96, 0x9f, 0x8f, 0x39, 0xce, 0x4d, 0x65, 0x8e, 0xf3, 0x67,
0x9b, 0x63, 0x8e, 0x6b, 0xe7, 0x31, 0xc7, 0xca, 0x44, 0x73, 0xac, 0xbe, 0x18, 0x73, 0xfc, 0xcb,
0xc4, 0x1c, 0xbf, 0xe8, 0x62, 0x4f, 0x4c, 0xb6, 0x2c, 0x99, 0xec, 0x1f, 0x69, 0xf0, 0x95, 0x07,
0x38, 0x8a, 0xc9, 0x27, 0x16, 0x88, 0xbf, 0xa0, 0xf1, 0xf9, 0x4f, 0x35, 0xe8, 0xaa, 0x68, 0x9d,
0x25, 0x46, 0x7f, 0x04, 0x97, 0x63, 0x1c, 0x3d, 0x0b, 0x87, 0xfd, 0xc0, 0x1e, 0x52, 0x31, 0x52,
0x27, 0x53, 0xdb, 0xbc, 0xa1, 0xd2, 0xd8, 0x2c, 0x05, 0xcb, 0xf1, 0x12, 0xdb, 0xa9, 0x15, 0xf4,
0x5f, 0xd7, 0x60, 0x99, 0x38, 0x35, 0xee, 0x85, 0xbc, 0x43, 0xff, 0xe2, 0x7c, 0x95, 0xfd, 0x5b,
0x21, 0xe7, 0xdf, 0xa6, 0xe0, 0x31, 0xcd, 0x8d, 0xb3, 0xf4, 0xcc, 0xc2, 0xbb, 0x6f, 0x42, 0xd9,
0xf6, 0x0e, 0x7d, 0xc1, 0xaa, 0x97, 0x54, 0xac, 0x4a, 0x23, 0x63, 0xa3, 0x75, 0x8f, 0x51, 0x91,
0x38, 0xdc, 0x19, 0xd4, 0x2d, 0xbb, 0xed, 0x82, 0x62, 0xdb, 0xbf, 0xa6, 0xc1, 0x95, 0x1c, 0xc2,
0x59, 0xf6, 0xfd, 0x0e, 0xcc, 0xd1, 0x30, 0x22, 0x36, 0xfe, 0x8a, 0x72, 0xe3, 0x29, 0x74, 0x0f,
0xed, 0x30, 0x32, 0xf8, 0x1c, 0xdd, 0x87, 0x76, 0xf6, 0x1d, 0x09, 0x70, 0x3c, 0xb8, 0xf5, 0x3c,
0xd3, 0x65, 0x0c, 0xa8, 0x1a, 0x35, 0x0e, 0xdb, 0x35, 0x5d, 0x8c, 0xbe, 0x02, 0x15, 0x62, 0xb2,
0x3d, 0xdb, 0x12, 0xe2, 0x9f, 0xa7, 0x26, 0x6c, 0x85, 0xe8, 0x1a, 0x00, 0x7d, 0x65, 0x5a, 0x56,
0xc0, 0x62, 0x5f, 0xd5, 0xa8, 0x12, 0xc8, 0x5d, 0x02, 0xd0, 0x7f, 0x47, 0x83, 0xeb, 0xfb, 0xa7,
0x5e, 0x7f, 0x17, 0x9f, 0x6c, 0x05, 0xd8, 0x8c, 0x70, 0xe2, 0x6d, 0x5f, 0x28, 0xe3, 0xd1, 0x0a,
0xd4, 0x52, 0xf6, 0xcb, 0x55, 0x32, 0x0d, 0xd2, 0x7f, 0x4b, 0x83, 0x3a, 0x71, 0xff, 0x1f, 0xe0,
0xc8, 0x24, 0x2a, 0x82, 0xbe, 0x0d, 0x55, 0xc7, 0x37, 0xad, 0x5e, 0x74, 0x3a, 0x64, 0xd4, 0x34,
0xb3, 0xd4, 0x24, 0x31, 0xe3, 0xd1, 0xe9, 0x10, 0x1b, 0x15, 0x87, 0xff, 0x9a, 0x8a, 0xa2, 0xac,
0x97, 0x29, 0x2a, 0xbc, 0xcc, 0x5f, 0x95, 0xe1, 0xf2, 0x0f, 0xcd, 0xa8, 0x7f, 0xb4, 0xed, 0x8a,
0xec, 0xe2, 0xe2, 0x6c, 0x4a, 0xdc, 0x6e, 0x21, 0xed, 0x76, 0x9f, 0x9b, 0x5b, 0x8f, 0x4d, 0xb0,
0xac, 0x32, 0x41, 0x52, 0x1d, 0xaf, 0x3f, 0xe1, 0x5a, 0x94, 0x32, 0xc1, 0x54, 0x12, 0x30, 0x77,
0x91, 0x24, 0x60, 0x0b, 0x1a, 0xf8, 0x93, 0xbe, 0x33, 0x22, 0xea, 0x48, 0xb1, 0xb3, 0xe8, 0x7e,
0x5d, 0x81, 0x3d, 0x6d, 0xff, 0x75, 0x3e, 0x69, 0x87, 0xd3, 0xc0, 0x44, 0xed, 0xe2, 0xc8, 0xa4,
0x21, 0xbc, 0xb6, 0xb9, 0x32, 0x4e, 0xd4, 0x42, 0x3f, 0x98, 0xb8, 0xc9, 0x13, 0xba, 0x0a, 0x55,
0x9e, 0x72, 0xec, 0x6c, 0x77, 0xaa, 0x94, 0x7d, 0x09, 0x00, 0x99, 0xd0, 0xe0, 0xce, 0x91, 0x53,
0x08, 0x94, 0xc2, 0x77, 0x54, 0x08, 0xd4, 0xc2, 0x4e, 0x53, 0x1e, 0xf2, 0x04, 0x24, 0x4c, 0x81,
0x48, 0x45, 0xee, 0x1f, 0x1e, 0x3a, 0xb6, 0x87, 0x77, 0x99, 0x84, 0x6b, 0x94, 0x08, 0x19, 0x48,
0xd2, 0x94, 0x63, 0x1c, 0x84, 0xb6, 0xef, 0x75, 0xea, 0xf4, 0xbd, 0x78, 0xec, 0xf6, 0x60, 0x21,
0x87, 0x42, 0x91, 0x7d, 0x7c, 0x23, 0x9d, 0x7d, 0x4c, 0xe6, 0x71, 0x2a, 0x3b, 0xf9, 0x99, 0x06,
0xcb, 0x8f, 0xbd, 0x70, 0x74, 0x10, 0xef, 0xed, 0xf3, 0xd1, 0xe3, 0xac, 0x73, 0x2b, 0xe5, 0x9c,
0x1b, 0xb1, 0xb9, 0x16, 0xdf, 0x05, 0x11, 0x37, 0x75, 0x05, 0x57, 0xa1, 0x1a, 0xc7, 0x37, 0xce,
0x90, 0x04, 0x90, 0xf5, 0x2d, 0x85, 0x9c, 0x6f, 0x99, 0x8a, 0x34, 0x91, 0xad, 0x94, 0x52, 0xd9,
0xca, 0x35, 0x80, 0x43, 0x67, 0x14, 0x1e, 0xf5, 0x22, 0xdb, 0xc5, 0x3c, 0x5b, 0xaa, 0x52, 0xc8,
0x23, 0xdb, 0xc5, 0xe8, 0x2e, 0xd4, 0x0f, 0x6c, 0xcf, 0xf1, 0x07, 0xbd, 0xa1, 0x19, 0x1d, 0x85,
0xbc, 0xce, 0x54, 0x89, 0x85, 0xe6, 0x96, 0xf7, 0xe8, 0x58, 0xa3, 0xc6, 0xe6, 0xec, 0x91, 0x29,
0xe8, 0x3a, 0xd4, 0xbc, 0x91, 0xdb, 0xf3, 0x0f, 0x7b, 0x81, 0x7f, 0x12, 0xd2, 0x6a, 0xb2, 0x68,
0x54, 0xbd, 0x91, 0xfb, 0xe1, 0xa1, 0xe1, 0x9f, 0x90, 0xf8, 0x52, 0x25, 0x91, 0x26, 0x74, 0xfc,
0x01, 0xab, 0x24, 0x27, 0xaf, 0x9f, 0x4c, 0x20, 0xb3, 0x2d, 0xec, 0x44, 0x26, 0x9d, 0x5d, 0x9d,
0x6e, 0x76, 0x3c, 0x01, 0xbd, 0x0a, 0xcd, 0xbe, 0xef, 0x0e, 0x4d, 0xca, 0xa1, 0xfb, 0x81, 0xef,
0x52, 0xcb, 0x29, 0x1a, 0x19, 0x28, 0xda, 0x82, 0x1a, 0x4d, 0xed, 0xb9, 0x79, 0xd5, 0x28, 0x1e,
0x5d, 0x65, 0x5e, 0xa9, 0x14, 0x9b, 0x28, 0x28, 0xd8, 0xe2, 0x67, 0x48, 0x34, 0x43, 0x58, 0x69,
0x68, 0x7f, 0x8a, 0xb9, 0x85, 0xd4, 0x38, 0x6c, 0xdf, 0xfe, 0x14, 0x93, 0x7a, 0xc3, 0xf6, 0x42,
0x1c, 0x44, 0xa2, 0xfa, 0xeb, 0x34, 0xa8, 0xfa, 0x34, 0x18, 0x94, 0x2b, 0x36, 0xda, 0x86, 0x66,
0x18, 0x99, 0x41, 0xd4, 0x1b, 0xfa, 0x21, 0x55, 0x80, 0x4e, 0x93, 0xea, 0x76, 0xa6, 0x76, 0x73,
0xc3, 0x01, 0x51, 0xec, 0x3d, 0x3e, 0xc8, 0x68, 0xd0, 0x49, 0xe2, 0x11, 0x7d, 0x0f, 0xea, 0xd8,
0xb3, 0x92, 0x35, 0x5a, 0xd3, 0xac, 0x51, 0xc3, 0x9e, 0x25, 0x1e, 0xf4, 0xff, 0x2c, 0x40, 0x53,
0xde, 0x30, 0xf1, 0x00, 0xac, 0x70, 0x11, 0x5a, 0x2c, 0x1e, 0xc9, 0xf6, 0xb1, 0x67, 0x1e, 0x38,
0x98, 0x55, 0x49, 0x54, 0x89, 0x2b, 0x64, 0x3d, 0x02, 0xa3, 0x0b, 0x10, 0x65, 0x64, 0x6c, 0xa6,
0x96, 0x53, 0xa4, 0x5b, 0xaf, 0x52, 0x08, 0x4d, 0x0a, 0x3a, 0x30, 0x2f, 0x0a, 0x2c, 0xa6, 0xc2,
0xe2, 0x91, 0xbc, 0x39, 0x18, 0xd9, 0x14, 0x2b, 0x53, 0x61, 0xf1, 0x88, 0xb6, 0xa1, 0xce, 0x96,
0x1c, 0x9a, 0x81, 0xe9, 0x0a, 0x05, 0x7e, 0x59, 0xe9, 0x04, 0xde, 0xc7, 0xa7, 0x4f, 0x88, 0x3f,
0xd9, 0x33, 0xed, 0xc0, 0x60, 0x02, 0xdf, 0xa3, 0xb3, 0xd0, 0x2a, 0xb4, 0xd9, 0x2a, 0x87, 0xb6,
0x83, 0xb9, 0x29, 0xcc, 0xb3, 0x2a, 0x8b, 0xc2, 0xef, 0xdb, 0x0e, 0x66, 0xda, 0x1e, 0x6f, 0x81,
0x8a, 0xb8, 0xc2, 0x94, 0x9d, 0x42, 0xa8, 0x80, 0x6f, 0x40, 0x83, 0xbd, 0x16, 0x6e, 0x92, 0xf9,
0x72, 0x46, 0xe3, 0x13, 0x06, 0xa3, 0xc9, 0xcf, 0xc8, 0x65, 0xe6, 0x02, 0x6c, 0x3b, 0xde, 0xc8,
0x25, 0xc6, 0xa2, 0xff, 0x6d, 0x09, 0x16, 0x89, 0xcf, 0xe0, 0xee, 0x63, 0x86, 0x58, 0x7d, 0x0d,
0xc0, 0x0a, 0xa3, 0x9e, 0xe4, 0xe7, 0xaa, 0x56, 0x18, 0x71, 0x4f, 0xfe, 0x6d, 0x11, 0x6a, 0x8b,
0xe3, 0x0b, 0x83, 0x8c, 0x0f, 0xcb, 0x87, 0xdb, 0x0b, 0xb5, 0xc0, 0x6e, 0x40, 0x83, 0x97, 0xb3,
0x52, 0x09, 0x57, 0x67, 0xc0, 0x5d, 0xb5, 0x27, 0x9e, 0x53, 0xb6, 0xe2, 0x52, 0x21, 0x77, 0x7e,
0xb6, 0x90, 0x5b, 0xc9, 0x86, 0xdc, 0xfb, 0xd0, 0xa2, 0x6e, 0x24, 0x36, 0x1f, 0xe1, 0x7d, 0x26,
0xd8, 0x4f, 0x93, 0xce, 0x12, 0x8f, 0x61, 0x3a, 0x62, 0x82, 0x14, 0x31, 0x09, 0x1f, 0x3c, 0x8c,
0xad, 0x5e, 0x14, 0x98, 0x5e, 0x78, 0x88, 0x03, 0x1a, 0x71, 0x2b, 0x46, 0x9d, 0x00, 0x1f, 0x71,
0x18, 0x7a, 0x07, 0x80, 0xee, 0x91, 0x75, 0x70, 0xea, 0xe3, 0x3b, 0x38, 0x54, 0x69, 0x68, 0x07,
0x87, 0x32, 0x85, 0xfe, 0xd4, 0xff, 0xbe, 0x00, 0x97, 0x79, 0x45, 0x3f, 0xbb, 0x42, 0x8d, 0x0b,
0x9a, 0x22, 0xea, 0x14, 0xcf, 0xa8, 0x91, 0x4b, 0x53, 0x24, 0x84, 0x65, 0x45, 0x42, 0x28, 0xd7,
0x89, 0x73, 0xb9, 0x3a, 0x31, 0xee, 0x6d, 0xcd, 0x4f, 0xdf, 0xdb, 0x42, 0x4b, 0x50, 0xa6, 0xc5,
0x0b, 0x15, 0x7a, 0xd5, 0x60, 0x0f, 0x53, 0x89, 0x43, 0xff, 0xed, 0x02, 0x34, 0xf6, 0xb1, 0x19,
0xf4, 0x8f, 0x04, 0x1f, 0xdf, 0x4a, 0xf7, 0x02, 0x5f, 0x19, 0xd3, 0x0b, 0x94, 0xa6, 0x7c, 0x69,
0x9a, 0x80, 0x04, 0x41, 0xe4, 0x47, 0x66, 0x4c, 0x65, 0xcf, 0x1b, 0xb9, 0xbc, 0x41, 0xd6, 0xa2,
0x2f, 0x38, 0xa9, 0xbb, 0x23, 0x57, 0xff, 0x77, 0x0d, 0xea, 0xff, 0x8f, 0x2c, 0x23, 0x18, 0x73,
0x27, 0xcd, 0x98, 0x57, 0xc7, 0x30, 0xc6, 0xc0, 0x51, 0x60, 0xe3, 0x63, 0xfc, 0xa5, 0xeb, 0x8f,
0xfe, 0xb5, 0x06, 0x5d, 0x52, 0x85, 0x1a, 0xcc, 0x61, 0xcc, 0x6e, 0x5d, 0x37, 0xa0, 0x71, 0x2c,
0xe5, 0x95, 0x05, 0xaa, 0x9c, 0xf5, 0xe3, 0x74, 0xd5, 0x6c, 0x40, 0x5b, 0xb4, 0x2b, 0xf9, 0x66,
0x85, 0xff, 0x7e, 0x4d, 0x45, 0x75, 0x86, 0x38, 0xea, 0xff, 0x5a, 0x81, 0x0c, 0xd4, 0x7f, 0x43,
0x83, 0x45, 0xc5, 0x40, 0x74, 0x05, 0xe6, 0x79, 0x85, 0xce, 0x03, 0x3d, 0xb3, 0x77, 0x8b, 0x88,
0x27, 0xe9, 0x31, 0xd9, 0x56, 0x3e, 0x59, 0xb5, 0xd0, 0x4b, 0x50, 0x8b, 0xeb, 0x15, 0x2b, 0x27,
0x1f, 0x2b, 0x44, 0x5d, 0xa8, 0x70, 0x37, 0x28, 0x0a, 0xc1, 0xf8, 0x59, 0x7f, 0x0a, 0xe8, 0x01,
0x4e, 0x82, 0xce, 0x2c, 0x1c, 0x4d, 0xfc, 0x4d, 0x42, 0x68, 0xda, 0x09, 0x59, 0xfa, 0xbf, 0x68,
0xb0, 0x28, 0x61, 0x9b, 0xa5, 0x93, 0x92, 0x04, 0xc6, 0xc2, 0x45, 0x02, 0xa3, 0xd4, 0x2d, 0x28,
0x9e, 0xab, 0x5b, 0x70, 0x1d, 0x20, 0xe6, 0xbf, 0xe0, 0x68, 0x0a, 0xa2, 0xff, 0x85, 0x06, 0x97,
0xdf, 0x33, 0x3d, 0xcb, 0x3f, 0x3c, 0x9c, 0x5d, 0x55, 0xb7, 0x40, 0x2a, 0x1d, 0xa7, 0xed, 0x97,
0xc9, 0xf5, 0xe6, 0xeb, 0xb0, 0x10, 0xb0, 0xc8, 0x64, 0xc9, 0xba, 0x5c, 0x34, 0xda, 0xe2, 0x45,
0xac, 0xa3, 0x7f, 0x52, 0x00, 0x44, 0x76, 0x7d, 0xcf, 0x74, 0x4c, 0xaf, 0x8f, 0x2f, 0x4e, 0xfa,
0x4d, 0x68, 0x4a, 0xb9, 0x47, 0x7c, 0xf0, 0x9c, 0x4e, 0x3e, 0x42, 0xf4, 0x3e, 0x34, 0x0f, 0x18,
0xaa, 0x5e, 0x80, 0xcd, 0xd0, 0xf7, 0xb8, 0x38, 0x94, 0xad, 0xb1, 0x47, 0x81, 0x3d, 0x18, 0xe0,
0x60, 0xcb, 0xf7, 0x2c, 0x9e, 0x86, 0x1f, 0x08, 0x32, 0xc9, 0x54, 0x62, 0x0c, 0x49, 0x22, 0x16,
0x0b, 0x27, 0xce, 0xc4, 0x28, 0x2b, 0x42, 0x6c, 0x3a, 0x09, 0x23, 0x92, 0x68, 0xd8, 0x66, 0x2f,
0xf6, 0xc7, 0x77, 0x46, 0x15, 0x89, 0x91, 0xfe, 0x67, 0x1a, 0xa0, 0xb8, 0x4a, 0xa6, 0xfd, 0x00,
0x6a, 0xd1, 0xd9, 0xa9, 0x9a, 0x22, 0x28, 0x5f, 0x85, 0xaa, 0x25, 0x66, 0x72, 0x17, 0x94, 0x00,
0x68, 0x8c, 0xa4, 0x44, 0xf7, 0x88, 0xe6, 0x61, 0x4b, 0x54, 0xa1, 0x0c, 0xf8, 0x90, 0xc2, 0xe4,
0xbc, 0xaa, 0x94, 0xcd, 0xab, 0xd2, 0x8d, 0xbf, 0xb2, 0xd4, 0xf8, 0xd3, 0x7f, 0x56, 0x80, 0x36,
0x0d, 0x21, 0x5b, 0x49, 0x8b, 0x67, 0x2a, 0xa2, 0x6f, 0x40, 0x83, 0x7f, 0xa5, 0x21, 0x11, 0x5e,
0x7f, 0x96, 0x5a, 0x0c, 0xdd, 0x82, 0x25, 0x36, 0x28, 0xc0, 0xe1, 0xc8, 0x49, 0x0a, 0x30, 0x56,
0x85, 0xa0, 0x67, 0x2c, 0x76, 0x91, 0x57, 0x62, 0xc6, 0x63, 0xb8, 0x3c, 0x70, 0xfc, 0x03, 0xd3,
0xe9, 0xc9, 0xe2, 0x61, 0x32, 0x9c, 0x42, 0xe3, 0x97, 0xd8, 0xf4, 0xfd, 0xb4, 0x0c, 0x43, 0x74,
0x0f, 0x1a, 0x21, 0xc6, 0x4f, 0x93, 0xba, 0xac, 0x3c, 0x4d, 0x5d, 0x56, 0x27, 0x73, 0xe2, 0xc2,
0xec, 0xf7, 0x34, 0x68, 0x65, 0xda, 0xf6, 0xd9, 0x1e, 0x82, 0x96, 0xef, 0x21, 0xdc, 0x81, 0x32,
0xf1, 0x54, 0x2c, 0xb6, 0x34, 0xd5, 0xf5, 0xad, 0xbc, 0xaa, 0xc1, 0x26, 0xa0, 0x0d, 0x58, 0x54,
0x9c, 0xeb, 0x73, 0xf1, 0xa3, 0xfc, 0xb1, 0xbe, 0xfe, 0xf3, 0x12, 0xd4, 0x52, 0xac, 0x98, 0xd0,
0xfe, 0x78, 0x2e, 0xed, 0xd7, 0x71, 0xe7, 0xb8, 0x44, 0xe5, 0x5c, 0xec, 0xb2, 0x82, 0x8d, 0x57,
0x8f, 0x2e, 0x76, 0x69, 0xb9, 0x96, 0xae, 0xc4, 0xe6, 0xa4, 0x4a, 0x2c, 0x53, 0xab, 0xce, 0x9f,
0x51, 0xab, 0x56, 0xe4, 0x5a, 0x55, 0x32, 0xa1, 0x6a, 0xd6, 0x84, 0xa6, 0xed, 0x48, 0xdc, 0x82,
0xc5, 0x3e, 0x6b, 0x6f, 0xdf, 0x3b, 0xdd, 0x8a, 0x5f, 0xf1, 0xa4, 0x54, 0xf5, 0x0a, 0xdd, 0x4f,
0x9a, 0x84, 0x4c, 0xca, 0xac, 0x5a, 0x50, 0x97, 0xc2, 0x5c, 0x36, 0x4c, 0xc8, 0xc2, 0x33, 0xd3,
0xa7, 0x6c, 0x2f, 0xa4, 0x71, 0xa1, 0x5e, 0xc8, 0x4b, 0x50, 0x13, 0x99, 0x0a, 0xb1, 0xf4, 0x26,
0x73, 0x7a, 0xc2, 0x0d, 0x58, 0xa1, 0xe4, 0x07, 0x5a, 0xf2, 0x01, 0x40, 0xb6, 0x91, 0xd0, 0xce,
0x37, 0x12, 0xae, 0xc0, 0xbc, 0x1d, 0xf6, 0x0e, 0xcd, 0xa7, 0xb8, 0xb3, 0x40, 0xdf, 0xce, 0xd9,
0xe1, 0x7d, 0xf3, 0x29, 0xd6, 0xff, 0xb1, 0x08, 0xcd, 0x24, 0xc0, 0x4e, 0xed, 0x41, 0xa6, 0xf9,
0xb6, 0x65, 0x17, 0xda, 0x49, 0xde, 0x43, 0x39, 0x7c, 0x66, 0xf1, 0x9c, 0x3d, 0x55, 0x6b, 0x0d,
0x33, 0xf6, 0x2a, 0x85, 0xfb, 0xd2, 0xb9, 0xc2, 0xfd, 0x8c, 0xa7, 0xde, 0xb7, 0x61, 0x39, 0x8e,
0xbd, 0xd2, 0xb6, 0x59, 0x81, 0xb5, 0x24, 0x5e, 0xee, 0xa5, 0xb7, 0x3f, 0xc6, 0x05, 0xcc, 0x8f,
0x73, 0x01, 0x59, 0x15, 0xa8, 0xe4, 0x54, 0x20, 0x7f, 0xf8, 0x5e, 0x55, 0x1c, 0xbe, 0xeb, 0x8f,
0x61, 0x91, 0xf6, 0x7d, 0xc3, 0x7e, 0x60, 0x1f, 0xe0, 0xb8, 0x04, 0x98, 0x46, 0xac, 0x5d, 0xa8,
0x64, 0xaa, 0x88, 0xf8, 0x59, 0xff, 0xa9, 0x06, 0x97, 0xf3, 0xeb, 0x52, 0x8d, 0x49, 0x1c, 0x89,
0x26, 0x39, 0x92, 0xff, 0x0f, 0x8b, 0xa9, 0x8c, 0x52, 0x5a, 0x79, 0x4c, 0x06, 0xae, 0x20, 0xdc,
0x40, 0xc9, 0x1a, 0x02, 0xa6, 0xff, 0x5c, 0x8b, 0xdb, 0xe7, 0x04, 0x36, 0xa0, 0x87, 0x0a, 0x24,
0xae, 0xf9, 0x9e, 0x63, 0x7b, 0x71, 0xa7, 0x84, 0xef, 0x91, 0x01, 0x79, 0xa7, 0xe4, 0x3d, 0x68,
0xf1, 0x41, 0x71, 0x78, 0x9a, 0x32, 0x21, 0x6b, 0xb2, 0x79, 0x71, 0x60, 0xba, 0x09, 0x4d, 0xde,
0xed, 0x17, 0xf8, 0x8a, 0xaa, 0x33, 0x80, 0x1f, 0x40, 0x5b, 0x0c, 0x3b, 0x6f, 0x40, 0x6c, 0xf1,
0x89, 0x71, 0x62, 0xf7, 0xab, 0x1a, 0x74, 0xe4, 0xf0, 0x98, 0xda, 0xfe, 0xf9, 0xd3, 0xbb, 0xb7,
0xe5, 0x23, 0xdc, 0x9b, 0x67, 0xd0, 0x93, 0xe0, 0x11, 0x07, 0xb9, 0xbf, 0x59, 0xa0, 0xe7, 0xf1,
0xa4, 0xd4, 0xdb, 0xb6, 0xc3, 0x28, 0xb0, 0x0f, 0x46, 0xb3, 0x1d, 0x2a, 0x9a, 0x50, 0xeb, 0x1f,
0xe1, 0xfe, 0xd3, 0xa1, 0x6f, 0x27, 0x52, 0x79, 0x57, 0x45, 0xd3, 0x78, 0xb4, 0xeb, 0x5b, 0xc9,
0x0a, 0xec, 0xd8, 0x26, 0xbd, 0x66, 0xf7, 0x47, 0xd0, 0xce, 0x0e, 0x48, 0x1f, 0xba, 0x54, 0xd9,
0xa1, 0xcb, 0x6d, 0xf9, 0xd0, 0x65, 0x42, 0xa6, 0x91, 0x3a, 0x73, 0xf9, 0xf3, 0x02, 0x7c, 0x55,
0x49, 0xdb, 0x2c, 0x55, 0xd2, 0xb8, 0x3e, 0xd2, 0x3d, 0xa8, 0x64, 0x8a, 0xda, 0x57, 0xcf, 0x90,
0x1f, 0xef, 0xa5, 0xb2, 0x9e, 0x5e, 0x98, 0xe4, 0x56, 0x89, 0xc1, 0x97, 0xc6, 0xaf, 0xc1, 0xed,
0x4e, 0x5a, 0x43, 0xcc, 0x43, 0x77, 0xa1, 0xce, 0x1a, 0x06, 0xbd, 0x63, 0x1b, 0x9f, 0x88, 0xb3,
0xc8, 0xeb, 0x4a, 0xd7, 0x4c, 0xc7, 0x3d, 0xb1, 0xf1, 0x89, 0x51, 0x73, 0xe2, 0xdf, 0xa1, 0xfe,
0x1f, 0x45, 0x80, 0xe4, 0x1d, 0xa9, 0xce, 0x12, 0x9b, 0xe7, 0x46, 0x9c, 0x82, 0x90, 0x5c, 0x42,
0xce, 0x5c, 0xc5, 0x23, 0x32, 0x92, 0x23, 0x05, 0xcb, 0x0e, 0x23, 0xce, 0x97, 0x8d, 0xb3, 0x69,
0x11, 0x2c, 0x22, 0x22, 0xe3, 0x3a, 0x13, 0x26, 0x10, 0xf4, 0x26, 0xa0, 0x41, 0xe0, 0x9f, 0xd8,
0xde, 0x20, 0x5d, 0x6f, 0xb0, 0xb2, 0x64, 0x81, 0xbf, 0x49, 0x15, 0x1c, 0x3f, 0x86, 0x76, 0x66,
0xb8, 0x60, 0xc9, 0xed, 0x09, 0x64, 0x3c, 0x90, 0xd6, 0xe2, 0xea, 0xdb, 0x92, 0x31, 0x84, 0xdd,
0x1e, 0xb4, 0xb3, 0xf4, 0x2a, 0xce, 0x0d, 0xbf, 0x29, 0xab, 0xf0, 0x59, 0x9e, 0x86, 0x2c, 0x93,
0x52, 0xe2, 0xae, 0x09, 0x4b, 0x2a, 0x4a, 0x14, 0x48, 0x2e, 0x6c, 0x27, 0xef, 0xc6, 0xc9, 0x2e,
0xe5, 0xf0, 0xb8, 0xf8, 0x91, 0xea, 0x05, 0x17, 0xa4, 0x5e, 0xb0, 0xfe, 0x37, 0x1a, 0xa0, 0xbc,
0x62, 0xa3, 0x26, 0x14, 0xe2, 0x45, 0x0a, 0x3b, 0xdb, 0x19, 0x45, 0x2a, 0xe4, 0x14, 0xe9, 0x2a,
0x54, 0xe3, 0x78, 0xce, 0x9d, 0x77, 0x02, 0x48, 0xab, 0x59, 0x49, 0x56, 0xb3, 0x14, 0x61, 0x65,
0xb9, 0x49, 0x7d, 0x0b, 0x96, 0x1c, 0x33, 0x8c, 0x7a, 0xac, 0x17, 0x1e, 0xd9, 0x2e, 0x0e, 0x23,
0xd3, 0x1d, 0xd2, 0x64, 0xb9, 0x64, 0x20, 0xf2, 0x6e, 0x9b, 0xbc, 0x7a, 0x24, 0xde, 0xe8, 0x47,
0x80, 0xf2, 0xe6, 0x95, 0xc6, 0xad, 0xc9, 0xb8, 0x27, 0xed, 0x29, 0x45, 0x5b, 0x51, 0x66, 0xda,
0x1f, 0x14, 0x01, 0x25, 0x39, 0x4e, 0x7c, 0xd2, 0x3a, 0x4d, 0x62, 0xb0, 0x01, 0x8b, 0xf9, 0x0c,
0x48, 0xa4, 0x7d, 0x28, 0x97, 0xff, 0xa8, 0x72, 0x95, 0xa2, 0xea, 0x43, 0xc1, 0xb7, 0x62, 0x87,
0xc8, 0x12, 0xba, 0xeb, 0x63, 0x5b, 0xf5, 0xb2, 0x4f, 0xfc, 0x51, 0xf6, 0x03, 0x43, 0x66, 0x61,
0x77, 0x94, 0xce, 0x2b, 0xb7, 0xe5, 0x89, 0x5f, 0x17, 0x4a, 0xa9, 0xe6, 0xdc, 0x79, 0x52, 0xcd,
0xd9, 0xbf, 0x2a, 0xfc, 0xe7, 0x02, 0x2c, 0xc4, 0x8c, 0x3c, 0x97, 0x90, 0x26, 0x1f, 0x8a, 0xbf,
0x60, 0xa9, 0x7c, 0xac, 0x96, 0xca, 0xb7, 0xce, 0x4c, 0xf7, 0xa7, 0x15, 0xca, 0xec, 0x9c, 0xfd,
0x14, 0xe6, 0x79, 0xe3, 0x36, 0xe7, 0x28, 0xa6, 0x29, 0xa8, 0x97, 0xa0, 0x4c, 0xfc, 0x92, 0xe8,
0xba, 0xb1, 0x07, 0xc6, 0xd2, 0xf4, 0xe7, 0xa6, 0xdc, 0x57, 0x34, 0xa4, 0xaf, 0x4d, 0xf5, 0x7f,
0xd3, 0x00, 0xf6, 0x4f, 0xbd, 0xfe, 0x5d, 0x66, 0xa4, 0xb7, 0xa0, 0x34, 0xe9, 0x1b, 0x27, 0x32,
0x9a, 0xea, 0x16, 0x1d, 0x39, 0x85, 0x70, 0xa5, 0x96, 0x41, 0x31, 0xdb, 0x32, 0x18, 0x57, 0xec,
0x8f, 0x77, 0x65, 0xdf, 0x82, 0x12, 0x49, 0xf4, 0xf8, 0x37, 0x42, 0x53, 0x1d, 0x78, 0xd2, 0x09,
0xfa, 0x67, 0x05, 0xb8, 0x42, 0xa8, 0x7f, 0x3e, 0x59, 0xe1, 0x34, 0xa2, 0x49, 0x79, 0xcb, 0xa2,
0xec, 0x2d, 0xef, 0xc0, 0x3c, 0x2b, 0xf7, 0x45, 0x7e, 0x73, 0x7d, 0x1c, 0xaf, 0x99, 0x64, 0x0c,
0x31, 0x7c, 0xd6, 0x9a, 0x51, 0x3a, 0x6c, 0x9d, 0x9b, 0xed, 0xb0, 0x75, 0x3e, 0xdb, 0x14, 0x4c,
0x09, 0xad, 0x22, 0xfb, 0xf8, 0xc7, 0xd0, 0x30, 0xd2, 0x8a, 0x87, 0x10, 0x94, 0x52, 0xdf, 0x14,
0xd2, 0xdf, 0xb4, 0xcc, 0x33, 0x87, 0x66, 0xdf, 0x8e, 0x4e, 0x29, 0x3b, 0xcb, 0x46, 0xfc, 0xac,
0xd6, 0x72, 0xfd, 0xbf, 0x35, 0xb8, 0x2c, 0x0e, 0xf5, 0xb8, 0x0d, 0x5d, 0x5c, 0xa2, 0x9b, 0xb0,
0xcc, 0x0d, 0x26, 0x63, 0x39, 0x2c, 0x99, 0x5b, 0x64, 0x30, 0x79, 0x1b, 0x9b, 0xb0, 0x1c, 0x99,
0xc1, 0x00, 0x47, 0xd9, 0x39, 0x4c, 0xde, 0x8b, 0xec, 0xa5, 0x3c, 0x67, 0x9a, 0x43, 0xd5, 0x97,
0xd8, 0xc7, 0x38, 0x9c, 0xb5, 0xdc, 0x04, 0xc0, 0x1b, 0xb9, 0x7c, 0x97, 0xfa, 0x09, 0x5c, 0x65,
0x5f, 0xf5, 0x1e, 0xc8, 0x14, 0xcd, 0xd4, 0x53, 0x57, 0xee, 0x3b, 0xe3, 0x31, 0x7e, 0x5f, 0x83,
0x6b, 0x63, 0x30, 0xcf, 0x52, 0x4d, 0x3c, 0x54, 0x62, 0x1f, 0x53, 0xfb, 0x49, 0x78, 0xa9, 0x86,
0x66, 0x88, 0xfc, 0xac, 0x04, 0x0b, 0xb9, 0x41, 0xe7, 0xd6, 0xb9, 0x37, 0x00, 0x11, 0x21, 0xc4,
0x57, 0xcf, 0x68, 0x39, 0xcd, 0x43, 0x53, 0xdb, 0x1b, 0xb9, 0xf1, 0xb5, 0x33, 0x52, 0x51, 0x23,
0x9b, 0x8d, 0x66, 0x1d, 0xf5, 0x58, 0x72, 0xa5, 0xf1, 0x37, 0x0c, 0x72, 0x04, 0xae, 0xef, 0x8e,
0x5c, 0xd6, 0x7c, 0xe7, 0x52, 0x66, 0xe1, 0x86, 0xa0, 0x92, 0xc0, 0xe8, 0x10, 0x16, 0xe8, 0xa7,
0x5a, 0xa3, 0x68, 0xe0, 0x93, 0x84, 0x9e, 0xd2, 0xc5, 0x82, 0xda, 0x77, 0xa6, 0xc6, 0xf4, 0x21,
0x9f, 0x4d, 0x88, 0xe7, 0x39, 0xbd, 0x27, 0x43, 0x05, 0x1e, 0xdb, 0xeb, 0xfb, 0x6e, 0x8c, 0x67,
0xee, 0x9c, 0x78, 0x76, 0xf8, 0x6c, 0x19, 0x4f, 0x1a, 0xda, 0xdd, 0x82, 0x65, 0xe5, 0xd6, 0x27,
0x85, 0xd1, 0x72, 0xba, 0x3e, 0xb8, 0x07, 0x4b, 0xaa, 0x5d, 0x5d, 0x60, 0x8d, 0x1c, 0xc5, 0xe7,
0x59, 0x43, 0xff, 0xe3, 0x02, 0x34, 0xb6, 0xb1, 0x83, 0x23, 0xfc, 0x62, 0xcf, 0x3c, 0x73, 0x07,
0xb8, 0xc5, 0xfc, 0x01, 0x6e, 0xee, 0x34, 0xba, 0xa4, 0x38, 0x8d, 0xbe, 0x16, 0x1f, 0xc2, 0x93,
0x55, 0xca, 0x72, 0x84, 0xb6, 0xd0, 0xdb, 0x50, 0x1f, 0x06, 0xb6, 0x6b, 0x06, 0xa7, 0xbd, 0xa7,
0xf8, 0x34, 0xe4, 0x41, 0xa3, 0xa3, 0x0c, 0x3b, 0x3b, 0xdb, 0xa1, 0x51, 0xe3, 0xa3, 0xdf, 0xc7,
0xa7, 0xf4, 0x80, 0x3f, 0x2e, 0x36, 0xd8, 0xa7, 0x58, 0x25, 0x23, 0x05, 0x59, 0x5b, 0x81, 0x6a,
0xfc, 0xc5, 0x0b, 0xaa, 0x40, 0xe9, 0xfe, 0xc8, 0x71, 0xda, 0x97, 0x50, 0x15, 0xca, 0xb4, 0x1c,
0x69, 0x6b, 0x6b, 0xdf, 0x83, 0x6a, 0x7c, 0x6a, 0x8f, 0x6a, 0x30, 0xff, 0xd8, 0x7b, 0xdf, 0xf3,
0x4f, 0xbc, 0xf6, 0x25, 0x34, 0x0f, 0xc5, 0xbb, 0x8e, 0xd3, 0xd6, 0x50, 0x03, 0xaa, 0xfb, 0x51,
0x80, 0x4d, 0x22, 0xb3, 0x76, 0x01, 0x35, 0x01, 0xde, 0xb3, 0xc3, 0xc8, 0x0f, 0xec, 0xbe, 0xe9,
0xb4, 0x8b, 0x6b, 0x9f, 0x42, 0x53, 0x6e, 0xe2, 0xa2, 0x3a, 0x54, 0x76, 0xfd, 0xe8, 0xfb, 0x9f,
0xd8, 0x61, 0xd4, 0xbe, 0x44, 0xc6, 0xef, 0xfa, 0xd1, 0x5e, 0x80, 0x43, 0xec, 0x45, 0x6d, 0x0d,
0x01, 0xcc, 0x7d, 0xe8, 0x6d, 0xdb, 0xe1, 0xd3, 0x76, 0x01, 0x2d, 0xf2, 0xf3, 0x19, 0xd3, 0xd9,
0xe1, 0x9d, 0xd1, 0x76, 0x91, 0x4c, 0x8f, 0x9f, 0x4a, 0xa8, 0x0d, 0xf5, 0x78, 0xc8, 0x83, 0xbd,
0xc7, 0xed, 0x32, 0xa1, 0x9e, 0xfd, 0x9c, 0x5b, 0xb3, 0xa0, 0x9d, 0x3d, 0x57, 0x24, 0x6b, 0xb2,
0x4d, 0xc4, 0xa0, 0xf6, 0x25, 0xb2, 0x33, 0x7e, 0xb0, 0xdb, 0xd6, 0x50, 0x0b, 0x6a, 0xa9, 0x63,
0xd2, 0x76, 0x81, 0x00, 0x1e, 0x04, 0xc3, 0x3e, 0x57, 0x28, 0x46, 0x02, 0xd1, 0xce, 0x6d, 0xc2,
0x89, 0xd2, 0xda, 0x3d, 0xa8, 0x88, 0x94, 0x9f, 0x0c, 0xe5, 0x2c, 0x22, 0x8f, 0xed, 0x4b, 0x68,
0x01, 0x1a, 0xd2, 0x5d, 0xa6, 0xb6, 0x86, 0x10, 0x34, 0xe5, 0xdb, 0x86, 0xed, 0xc2, 0xda, 0x26,
0x40, 0x92, 0x3a, 0x13, 0x72, 0x76, 0xbc, 0x63, 0xd3, 0xb1, 0x2d, 0x46, 0x1b, 0x79, 0x45, 0xb8,
0x4b, 0xb9, 0xc3, 0x0c, 0xb5, 0x5d, 0x58, 0x5b, 0x83, 0x8a, 0x48, 0x07, 0x09, 0xdc, 0xc0, 0xae,
0x7f, 0x8c, 0x99, 0x64, 0xf6, 0x31, 0x61, 0x65, 0x15, 0xca, 0x77, 0x5d, 0xec, 0x59, 0xed, 0xc2,
0xe6, 0xbf, 0x2e, 0x02, 0xb0, 0x53, 0x41, 0xdf, 0x0f, 0x2c, 0xe4, 0xd0, 0xaf, 0x03, 0xb6, 0x7c,
0x77, 0xe8, 0x7b, 0xe2, 0xc8, 0x22, 0x44, 0xeb, 0x99, 0x52, 0x9d, 0x3d, 0xe4, 0x07, 0x72, 0x46,
0x74, 0x5f, 0x51, 0x8e, 0xcf, 0x0c, 0xd6, 0x2f, 0x21, 0x97, 0x62, 0x23, 0xc5, 0xed, 0x23, 0xbb,
0xff, 0x34, 0x3e, 0x4a, 0x1c, 0x7f, 0xe5, 0x2f, 0x33, 0x54, 0xe0, 0xbb, 0xa1, 0xc4, 0xb7, 0x1f,
0x05, 0xb6, 0x37, 0x10, 0xf1, 0x4f, 0xbf, 0x84, 0x9e, 0x65, 0x2e, 0x1c, 0x0a, 0x84, 0x9b, 0xd3,
0xdc, 0x31, 0xbc, 0x18, 0x4a, 0x07, 0x5a, 0x99, 0x9b, 0xdd, 0x68, 0x4d, 0x7d, 0x01, 0x44, 0x75,
0x0b, 0xbd, 0xfb, 0xfa, 0x54, 0x63, 0x63, 0x6c, 0x36, 0x34, 0xe5, 0x2b, 0xc9, 0xe8, 0x6b, 0xe3,
0x16, 0xc8, 0x5d, 0x41, 0xeb, 0xae, 0x4d, 0x33, 0x34, 0x46, 0xf5, 0x11, 0xd3, 0xd5, 0x49, 0xa8,
0x94, 0xd7, 0xf5, 0xba, 0x67, 0xa5, 0x1e, 0xfa, 0x25, 0xf4, 0x13, 0x92, 0x25, 0x64, 0x2e, 0xca,
0xa1, 0x37, 0xd4, 0x91, 0x4d, 0x7d, 0x9f, 0x6e, 0x12, 0x86, 0x8f, 0xb2, 0x96, 0x36, 0x9e, 0xfa,
0xdc, 0xd5, 0xd9, 0xe9, 0xa9, 0x4f, 0x2d, 0x7f, 0x16, 0xf5, 0xe7, 0xc6, 0xe0, 0xb0, 0x82, 0x49,
0x71, 0x45, 0x27, 0xab, 0xca, 0x49, 0xbd, 0x32, 0xfe, 0x3e, 0xcf, 0x24, 0x6c, 0x23, 0x6a, 0xa4,
0xd9, 0xe3, 0xf0, 0x37, 0xc7, 0x34, 0xda, 0xd5, 0x77, 0x03, 0xbb, 0xeb, 0xd3, 0x0e, 0x4f, 0xeb,
0xb2, 0x7c, 0xfd, 0x4c, 0x2d, 0x22, 0xe5, 0x95, 0x39, 0xb5, 0x2e, 0xab, 0x6f, 0xb3, 0xe9, 0x97,
0xd0, 0x23, 0xc9, 0xaf, 0xa3, 0x57, 0xc7, 0xa9, 0x82, 0xfc, 0x7d, 0xcc, 0x24, 0xbe, 0xfd, 0x12,
0x20, 0x66, 0xa9, 0xde, 0xa1, 0x3d, 0x18, 0x05, 0x26, 0x53, 0xe3, 0x71, 0xce, 0x2d, 0x3f, 0x54,
0xa0, 0xf9, 0xfa, 0x39, 0x66, 0xc4, 0x5b, 0xea, 0x01, 0x3c, 0xc0, 0xd1, 0x07, 0x38, 0x0a, 0xec,
0x7e, 0x98, 0xdd, 0x51, 0xe2, 0xbf, 0xf9, 0x00, 0x81, 0xea, 0xb5, 0x89, 0xe3, 0x62, 0x04, 0x07,
0x50, 0x7b, 0x40, 0x2a, 0x28, 0x9a, 0x15, 0x86, 0x68, 0xec, 0x4c, 0x31, 0x42, 0xa0, 0x58, 0x9d,
0x3c, 0x30, 0xed, 0x3c, 0x33, 0x57, 0xf1, 0xd0, 0x58, 0xc1, 0xe6, 0x2f, 0x08, 0xaa, 0x9d, 0xe7,
0x98, 0xbb, 0x7d, 0x6c, 0x47, 0xf4, 0xb0, 0xe7, 0x3d, 0x6c, 0x3a, 0xd1, 0xd1, 0x98, 0x1d, 0xa5,
0x46, 0x9c, 0xbd, 0x23, 0x69, 0x60, 0x8c, 0x03, 0xc3, 0x22, 0xb3, 0x42, 0xb9, 0xf4, 0xdc, 0x50,
0x2f, 0x91, 0x1f, 0x39, 0xa5, 0xea, 0x99, 0xb0, 0xb0, 0x1d, 0xf8, 0x43, 0x19, 0xc9, 0x9b, 0x4a,
0x24, 0xb9, 0x71, 0x53, 0xa2, 0xf8, 0x21, 0xd4, 0x45, 0x85, 0x4f, 0x6b, 0x12, 0x35, 0x17, 0xd2,
0x43, 0xa6, 0x5c, 0xf8, 0x63, 0x68, 0x65, 0x5a, 0x07, 0x6a, 0xa1, 0xab, 0xfb, 0x0b, 0x93, 0x56,
0x3f, 0x01, 0x44, 0xef, 0x57, 0x4a, 0x77, 0xbb, 0xc7, 0xe4, 0x37, 0xf9, 0x81, 0x02, 0xc9, 0xc6,
0xd4, 0xe3, 0x63, 0xc9, 0xff, 0x32, 0x2c, 0x2b, 0xcb, 0xf3, 0xac, 0x43, 0xe0, 0x1f, 0xc4, 0x9e,
0xd1, 0x43, 0xc8, 0x3a, 0x84, 0x33, 0x67, 0x08, 0xfc, 0x9b, 0xff, 0xd4, 0x82, 0x2a, 0xcd, 0xf3,
0xa8, 0xb4, 0xfe, 0x2f, 0xcd, 0x7b, 0xbe, 0x69, 0xde, 0xc7, 0xd0, 0xca, 0x5c, 0x0c, 0x54, 0x2b,
0xad, 0xfa, 0xf6, 0xe0, 0x14, 0xd9, 0x8a, 0x7c, 0x35, 0x4f, 0x1d, 0x0a, 0x95, 0xd7, 0xf7, 0x26,
0xad, 0xfd, 0x84, 0xdd, 0xa9, 0x8d, 0xbf, 0x52, 0x78, 0x6d, 0x6c, 0xf3, 0x5e, 0xfe, 0xb0, 0xf5,
0xf3, 0xcf, 0x82, 0xbe, 0xdc, 0x19, 0xe8, 0xc7, 0xd0, 0xca, 0x5c, 0x1d, 0x51, 0x6b, 0x8c, 0xfa,
0x7e, 0xc9, 0xa4, 0xd5, 0x7f, 0x81, 0xc9, 0x93, 0x05, 0x8b, 0x8a, 0x2f, 0xf5, 0xd1, 0xfa, 0xb8,
0x44, 0x54, 0xfd, 0x49, 0xff, 0xe4, 0x0d, 0x35, 0x24, 0x33, 0xcd, 0xc6, 0x9b, 0x84, 0xc8, 0xec,
0x9f, 0xc2, 0x74, 0xdf, 0x98, 0xee, 0x1f, 0x64, 0xe2, 0x0d, 0xed, 0xc3, 0x1c, 0xbb, 0x50, 0x82,
0x5e, 0x56, 0x1f, 0x62, 0xa4, 0x2e, 0x9b, 0x74, 0x27, 0x5d, 0x49, 0x09, 0x47, 0x4e, 0x14, 0xd2,
0x45, 0xcb, 0xd4, 0xfb, 0x22, 0x65, 0x57, 0x3f, 0x7d, 0xb3, 0xa3, 0x3b, 0xf9, 0x32, 0x87, 0x58,
0xf4, 0x7f, 0x77, 0x86, 0xf9, 0x09, 0xbd, 0x3a, 0x90, 0xfd, 0x38, 0x06, 0xad, 0x9f, 0xef, 0x0b,
0x9f, 0xee, 0xc6, 0xd4, 0xe3, 0x63, 0xcc, 0x3f, 0x86, 0x76, 0xf6, 0x40, 0x0a, 0xbd, 0x3e, 0x4e,
0x9f, 0x55, 0x38, 0x27, 0x28, 0xf3, 0x0f, 0x60, 0x8e, 0x75, 0x22, 0xd5, 0x1a, 0x26, 0x75, 0x29,
0x27, 0xac, 0x75, 0xef, 0x1b, 0x1f, 0x6d, 0x0e, 0xec, 0xe8, 0x68, 0x74, 0x40, 0xde, 0x6c, 0xb0,
0xa1, 0x6f, 0xda, 0x3e, 0xff, 0xb5, 0x21, 0x64, 0xb9, 0x41, 0x67, 0x6f, 0x50, 0x04, 0xc3, 0x83,
0x83, 0x39, 0xfa, 0x78, 0xfb, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xae, 0xfb, 0x09, 0x88, 0x7f,
0x4f, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.

View File

@ -1485,13 +1485,16 @@ func (node *Proxy) GetLoadingProgress(ctx context.Context, request *milvuspb.Get
request.Base.SourceID = msgBase.SourceID
}
var progress int64
var (
loadProgress int64
refreshProgress int64
)
if len(request.GetPartitionNames()) == 0 {
if progress, err = getCollectionProgress(ctx, node.queryCoord, request.GetBase(), collectionID); err != nil {
if loadProgress, refreshProgress, err = getCollectionProgress(ctx, node.queryCoord, request.GetBase(), collectionID); err != nil {
return getErrResponse(err), nil
}
} else {
if progress, err = getPartitionProgress(ctx, node.queryCoord, request.GetBase(),
if loadProgress, refreshProgress, err = getPartitionProgress(ctx, node.queryCoord, request.GetBase(),
request.GetPartitionNames(), request.GetCollectionName(), collectionID); err != nil {
return getErrResponse(err), nil
}
@ -1506,7 +1509,8 @@ func (node *Proxy) GetLoadingProgress(ctx context.Context, request *milvuspb.Get
Status: &commonpb.Status{
ErrorCode: commonpb.ErrorCode_Success,
},
Progress: progress,
Progress: loadProgress,
RefreshProgress: refreshProgress,
}, nil
}
@ -1582,7 +1586,7 @@ func (node *Proxy) GetLoadState(ctx context.Context, request *milvuspb.GetLoadSt
var progress int64
if len(request.GetPartitionNames()) == 0 {
if progress, err = getCollectionProgress(ctx, node.queryCoord, request.GetBase(), collectionID); err != nil {
if progress, _, err = getCollectionProgress(ctx, node.queryCoord, request.GetBase(), collectionID); err != nil {
if errors.Is(err, ErrInsufficientMemory) {
return &milvuspb.GetLoadStateResponse{
Status: InSufficientMemoryStatus(request.GetCollectionName()),
@ -1592,7 +1596,7 @@ func (node *Proxy) GetLoadState(ctx context.Context, request *milvuspb.GetLoadSt
return successResponse, nil
}
} else {
if progress, err = getPartitionProgress(ctx, node.queryCoord, request.GetBase(),
if progress, _, err = getPartitionProgress(ctx, node.queryCoord, request.GetBase(),
request.GetPartitionNames(), request.GetCollectionName(), collectionID); err != nil {
if errors.Is(err, ErrInsufficientMemory) {
return &milvuspb.GetLoadStateResponse{

View File

@ -983,8 +983,12 @@ func checkPrimaryFieldData(schema *schemapb.CollectionSchema, result *milvuspb.M
return ids, nil
}
func getCollectionProgress(ctx context.Context, queryCoord types.QueryCoord,
msgBase *commonpb.MsgBase, collectionID int64) (int64, error) {
func getCollectionProgress(
ctx context.Context,
queryCoord types.QueryCoord,
msgBase *commonpb.MsgBase,
collectionID int64,
) (loadProgress int64, refreshProgress int64, err error) {
resp, err := queryCoord.ShowCollections(ctx, &querypb.ShowCollectionsRequest{
Base: commonpbutil.UpdateMsgBase(
msgBase,
@ -994,36 +998,53 @@ func getCollectionProgress(ctx context.Context, queryCoord types.QueryCoord,
})
if err != nil {
log.Warn("fail to show collections", zap.Int64("collection_id", collectionID), zap.Error(err))
return 0, err
return
}
if resp.Status.ErrorCode == commonpb.ErrorCode_InsufficientMemoryToLoad {
err = ErrInsufficientMemory
log.Warn("detected insufficientMemoryError when getCollectionProgress", zap.Int64("collection_id", collectionID), zap.String("reason", resp.GetStatus().GetReason()))
return 0, ErrInsufficientMemory
return
}
if resp.Status.ErrorCode != commonpb.ErrorCode_Success {
err = merr.Error(resp.GetStatus())
log.Warn("fail to show collections", zap.Int64("collection_id", collectionID),
zap.String("reason", resp.Status.Reason))
return 0, errors.New(resp.Status.Reason)
return
}
if len(resp.InMemoryPercentages) == 0 {
errMsg := "fail to show collections from the querycoord, no data"
err = errors.New(errMsg)
log.Warn(errMsg, zap.Int64("collection_id", collectionID))
return 0, errors.New(errMsg)
return
}
return resp.InMemoryPercentages[0], nil
loadProgress = resp.GetInMemoryPercentages()[0]
if len(resp.GetRefreshProgress()) > 0 { // Compatibility for new Proxy with old QueryCoord
refreshProgress = resp.GetRefreshProgress()[0]
}
return
}
func getPartitionProgress(ctx context.Context, queryCoord types.QueryCoord,
msgBase *commonpb.MsgBase, partitionNames []string, collectionName string, collectionID int64) (int64, error) {
func getPartitionProgress(
ctx context.Context,
queryCoord types.QueryCoord,
msgBase *commonpb.MsgBase,
partitionNames []string,
collectionName string,
collectionID int64,
) (loadProgress int64, refreshProgress int64, err error) {
IDs2Names := make(map[int64]string)
partitionIDs := make([]int64, 0)
for _, partitionName := range partitionNames {
partitionID, err := globalMetaCache.GetPartitionID(ctx, collectionName, partitionName)
var partitionID int64
partitionID, err = globalMetaCache.GetPartitionID(ctx, collectionName, partitionName)
if err != nil {
return 0, err
return
}
IDs2Names[partitionID] = partitionName
partitionIDs = append(partitionIDs, partitionID)
@ -1041,24 +1062,34 @@ func getPartitionProgress(ctx context.Context, queryCoord types.QueryCoord,
zap.String("collection_name", collectionName),
zap.Strings("partition_names", partitionNames),
zap.Error(err))
return 0, err
return
}
if resp.GetStatus().GetErrorCode() == commonpb.ErrorCode_InsufficientMemoryToLoad {
log.Warn("detected insufficientMemoryError when getPartitionProgress", zap.Int64("collection_id", collectionID),
zap.String("collection_name", collectionName), zap.Strings("partition_names", partitionNames), zap.String("reason", resp.GetStatus().GetReason()))
return 0, ErrInsufficientMemory
err = ErrInsufficientMemory
log.Warn("detected insufficientMemoryError when getPartitionProgress",
zap.Int64("collection_id", collectionID),
zap.String("collection_name", collectionName),
zap.Strings("partition_names", partitionNames),
zap.String("reason", resp.GetStatus().GetReason()),
)
return
}
if len(resp.InMemoryPercentages) != len(partitionIDs) {
errMsg := "fail to show partitions from the querycoord, invalid data num"
err = errors.New(errMsg)
log.Warn(errMsg, zap.Int64("collection_id", collectionID),
zap.String("collection_name", collectionName),
zap.Strings("partition_names", partitionNames))
return 0, errors.New(errMsg)
return
}
var progress int64
for _, p := range resp.InMemoryPercentages {
progress += p
loadProgress += p
}
progress /= int64(len(partitionIDs))
return progress, nil
loadProgress /= int64(len(partitionIDs))
if len(resp.GetRefreshProgress()) > 0 { // Compatibility for new Proxy with old QueryCoord
refreshProgress = resp.GetRefreshProgress()[0]
}
return
}

View File

@ -38,12 +38,50 @@ type Collection struct {
LoadPercentage int32
CreatedAt time.Time
UpdatedAt time.Time
mut sync.RWMutex
refreshNotifier chan struct{}
}
func (collection *Collection) SetRefreshNotifier(notifer chan struct{}) {
collection.mut.Lock()
defer collection.mut.Unlock()
collection.refreshNotifier = notifer
}
func (collection *Collection) IsRefreshed() bool {
collection.mut.RLock()
notifier := collection.refreshNotifier
collection.mut.RUnlock()
if notifier == nil {
return true
}
select {
case <-notifier:
collection.mut.Lock()
defer collection.mut.Unlock()
// Only clear the notifier if the current notifier is which we got
if collection.refreshNotifier == notifier {
collection.refreshNotifier = nil
}
return true
default:
}
return false
}
func (collection *Collection) Clone() *Collection {
new := *collection
new.CollectionLoadInfo = proto.Clone(collection.CollectionLoadInfo).(*querypb.CollectionLoadInfo)
return &new
return &Collection{
CollectionLoadInfo: proto.Clone(collection.CollectionLoadInfo).(*querypb.CollectionLoadInfo),
LoadPercentage: collection.LoadPercentage,
CreatedAt: collection.CreatedAt,
UpdatedAt: collection.UpdatedAt,
refreshNotifier: collection.refreshNotifier,
}
}
type Partition struct {

View File

@ -119,6 +119,11 @@ func (ob *TargetObserver) schedule(ctx context.Context) {
}
req.Notifier <- err
// Manually trigger the observer,
// to avoid waiting for a long time (10s)
ob.clean()
ob.tryUpdateTarget()
}
}
}

View File

@ -20,7 +20,6 @@ import (
"context"
"fmt"
"sync"
"time"
"github.com/cockroachdb/errors"
"github.com/samber/lo"
@ -88,8 +87,10 @@ func (s *Server) ShowCollections(ctx context.Context, req *querypb.ShowCollectio
for _, collectionID := range collections {
log := log.With(zap.Int64("collectionID", collectionID))
collInfo := s.meta.CollectionManager.GetCollection(collectionID)
if collInfo == nil {
collection := s.meta.CollectionManager.GetCollection(collectionID)
percentage := s.meta.CollectionManager.CalculateLoadPercentage(collectionID)
refreshProgress := int64(0)
if percentage < 0 {
if isGetAll {
// The collection is released during this,
// ignore it
@ -112,15 +113,19 @@ func (s *Server) ShowCollections(ctx context.Context, req *querypb.ShowCollectio
}, nil
}
percentage := s.meta.CollectionManager.CalculateLoadPercentage(collectionID)
if collInfo.Status == querypb.LoadStatus_Loaded {
if collection.GetStatus() == querypb.LoadStatus_Loaded {
// when collection is loaded, regard collection as readable, set percentage == 100
percentage = 100
}
if collection.IsRefreshed() {
refreshProgress = 100
}
resp.CollectionIDs = append(resp.CollectionIDs, collectionID)
resp.InMemoryPercentages = append(resp.InMemoryPercentages, int64(percentage))
resp.QueryServiceAvailable = append(resp.QueryServiceAvailable, s.checkAnyReplicaAvailable(collectionID))
resp.RefreshProgress = append(resp.RefreshProgress, refreshProgress)
}
return resp, nil
@ -143,6 +148,7 @@ func (s *Server) ShowPartitions(ctx context.Context, req *querypb.ShowPartitions
partitions := req.GetPartitionIDs()
percentages := make([]int64, 0)
refreshProgress := int64(0)
if len(partitions) == 0 {
partitions = lo.Map(s.meta.GetPartitionsByCollection(req.GetCollectionID()), func(partition *meta.Partition, _ int) int64 {
@ -170,10 +176,20 @@ func (s *Server) ShowPartitions(ctx context.Context, req *querypb.ShowPartitions
percentages = append(percentages, int64(percentage))
}
collection := s.meta.GetCollection(req.GetCollectionID())
if collection != nil && collection.IsRefreshed() {
refreshProgress = 100
}
refreshProgresses := make([]int64, len(partitions))
for i := range partitions {
refreshProgresses[i] = refreshProgress
}
return &querypb.ShowPartitionsResponse{
Status: merr.Status(nil),
PartitionIDs: partitions,
InMemoryPercentages: percentages,
RefreshProgress: refreshProgresses,
}, nil
}
@ -200,7 +216,11 @@ func (s *Server) LoadCollection(ctx context.Context, req *querypb.LoadCollection
// If refresh mode is ON.
if req.GetRefresh() {
return s.refreshCollection(ctx, req.GetCollectionID())
err := s.refreshCollection(req.GetCollectionID())
if err != nil {
log.Warn("failed to refresh collection", zap.Error(err))
}
return merr.Status(err), nil
}
if err := s.checkResourceGroup(req.GetCollectionID(), req.GetResourceGroups()); err != nil {
@ -295,8 +315,11 @@ func (s *Server) LoadPartitions(ctx context.Context, req *querypb.LoadPartitions
// If refresh mode is ON.
if req.GetRefresh() {
return s.refreshPartitions(ctx, req.GetCollectionID(), req.GetPartitionIDs())
err := s.refreshCollection(req.GetCollectionID())
if err != nil {
log.Warn("failed to refresh partitions", zap.Error(err))
}
return merr.Status(err), nil
}
if err := s.checkResourceGroup(req.GetCollectionID(), req.GetResourceGroups()); err != nil {
@ -530,108 +553,81 @@ func (s *Server) SyncNewCreatedPartition(ctx context.Context, req *querypb.SyncN
// tries to load them up. It returns when all segments of the given collection are loaded, or when error happens.
// Note that a collection's loading progress always stays at 100% after a successful load and will not get updated
// during refreshCollection.
func (s *Server) refreshCollection(ctx context.Context, collID int64) (*commonpb.Status, error) {
ctx, cancel := context.WithTimeout(ctx, Params.QueryCoordCfg.LoadTimeoutSeconds.GetAsDuration(time.Second))
defer cancel()
log := log.Ctx(ctx).With(
zap.Int64("collectionID", collID),
)
if err := merr.CheckHealthy(s.State()); err != nil {
msg := "failed to refresh collection"
log.Warn(msg, zap.Error(err))
metrics.QueryCoordReleaseCount.WithLabelValues(metrics.FailLabel).Inc()
return merr.Status(err), nil
func (s *Server) refreshCollection(collectionID int64) error {
collection := s.meta.CollectionManager.GetCollection(collectionID)
if collection == nil {
return merr.WrapErrCollectionNotLoaded(collectionID)
}
// Check that collection is fully loaded.
if s.meta.CollectionManager.CalculateLoadPercentage(collID) != 100 {
errMsg := "a collection must be fully loaded before refreshing"
log.Warn(errMsg)
return &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: "a collection must be fully loaded before refreshing",
}, nil
if collection.GetStatus() != querypb.LoadStatus_Loaded {
return merr.WrapErrCollectionNotLoaded(collectionID, "collection not fully loaded")
}
// Pull the latest target.
readyCh, err := s.targetObserver.UpdateNextTarget(collID)
readyCh, err := s.targetObserver.UpdateNextTarget(collectionID)
if err != nil {
log.Warn("failed to update next target", zap.Error(err))
return &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: err.Error(),
}, nil
return err
}
select {
case <-ctx.Done():
log.Warn("refresh collection failed as context canceled")
return &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: "context canceled",
}, nil
case <-readyCh:
log.Info("refresh collection succeeded")
return &commonpb.Status{
ErrorCode: commonpb.ErrorCode_Success,
}, nil
}
collection.SetRefreshNotifier(readyCh)
return nil
}
// This is totally same to refreshCollection, remove it for now
// refreshPartitions must be called after loading a collection. It looks for new segments that are not loaded yet and
// tries to load them up. It returns when all segments of the given collection are loaded, or when error happens.
// Note that a collection's loading progress always stays at 100% after a successful load and will not get updated
// during refreshPartitions.
func (s *Server) refreshPartitions(ctx context.Context, collID int64, partIDs []int64) (*commonpb.Status, error) {
ctx, cancel := context.WithTimeout(ctx, Params.QueryCoordCfg.LoadTimeoutSeconds.GetAsDuration(time.Second))
defer cancel()
// func (s *Server) refreshPartitions(ctx context.Context, collID int64, partIDs []int64) (*commonpb.Status, error) {
// ctx, cancel := context.WithTimeout(ctx, Params.QueryCoordCfg.LoadTimeoutSeconds.GetAsDuration(time.Second))
// defer cancel()
log := log.Ctx(ctx).With(
zap.Int64("collectionID", collID),
zap.Int64s("partitionIDs", partIDs),
)
if err := merr.CheckHealthy(s.State()); err != nil {
msg := "failed to refresh partitions"
log.Warn(msg, zap.Error(err))
metrics.QueryCoordReleaseCount.WithLabelValues(metrics.FailLabel).Inc()
return merr.Status(err), nil
}
// log := log.Ctx(ctx).With(
// zap.Int64("collectionID", collID),
// zap.Int64s("partitionIDs", partIDs),
// )
// if s.status.Load() != commonpb.StateCode_Healthy {
// msg := "failed to refresh partitions"
// log.Warn(msg, zap.Error(ErrNotHealthy))
// metrics.QueryCoordReleaseCount.WithLabelValues(metrics.FailLabel).Inc()
// return utils.WrapStatus(commonpb.ErrorCode_UnexpectedError, msg, ErrNotHealthy), nil
// }
// Check that all partitions are fully loaded.
if s.meta.CollectionManager.CalculateLoadPercentage(collID) != 100 {
errMsg := "partitions must be fully loaded before refreshing"
log.Warn(errMsg)
return &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: errMsg,
}, nil
}
// // Check that all partitions are fully loaded.
// if s.meta.CollectionManager.GetCurrentLoadPercentage(collID) != 100 {
// errMsg := "partitions must be fully loaded before refreshing"
// log.Warn(errMsg)
// return &commonpb.Status{
// ErrorCode: commonpb.ErrorCode_UnexpectedError,
// Reason: errMsg,
// }, nil
// }
// Pull the latest target.
readyCh, err := s.targetObserver.UpdateNextTarget(collID)
if err != nil {
log.Warn("failed to update next target", zap.Error(err))
return &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: err.Error(),
}, nil
}
// // Pull the latest target.
// readyCh, err := s.targetObserver.UpdateNextTarget(collID)
// if err != nil {
// log.Warn("failed to update next target", zap.Error(err))
// return &commonpb.Status{
// ErrorCode: commonpb.ErrorCode_UnexpectedError,
// Reason: err.Error(),
// }, nil
// }
select {
case <-ctx.Done():
log.Warn("refresh partitions failed as context canceled")
return &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: "context canceled",
}, nil
case <-readyCh:
log.Info("refresh partitions succeeded")
return &commonpb.Status{
ErrorCode: commonpb.ErrorCode_Success,
}, nil
}
}
// select {
// case <-ctx.Done():
// log.Warn("refresh partitions failed as context canceled")
// return &commonpb.Status{
// ErrorCode: commonpb.ErrorCode_UnexpectedError,
// Reason: "context canceled",
// }, nil
// case <-readyCh:
// log.Info("refresh partitions succeeded")
// return &commonpb.Status{
// ErrorCode: commonpb.ErrorCode_Success,
// }, nil
// }
// }
func (s *Server) isStoppingNode(nodeID int64) error {
isStopping, err := s.nodeMgr.IsStoppingNode(nodeID)

View File

@ -48,6 +48,7 @@ import (
"github.com/milvus-io/milvus/pkg/util/etcd"
"github.com/milvus-io/milvus/pkg/util/merr"
"github.com/milvus-io/milvus/pkg/util/metricsinfo"
"github.com/milvus-io/milvus/pkg/util/paramtable"
"github.com/milvus-io/milvus/pkg/util/typeutil"
)
@ -85,7 +86,7 @@ type ServiceSuite struct {
}
func (suite *ServiceSuite) SetupSuite() {
Params.Init()
paramtable.Init()
suite.collections = []int64{1000, 1001}
suite.partitions = map[int64][]int64{
@ -949,146 +950,56 @@ func (suite *ServiceSuite) TestReleasePartition() {
}
func (suite *ServiceSuite) TestRefreshCollection() {
ctx, cancel := context.WithTimeout(context.Background(), 5000*time.Millisecond)
defer cancel()
server := suite.server
suite.server.collectionObserver.Start(context.Background())
server.collectionObserver.Start(context.Background())
// Test refresh all collections.
for _, collection := range suite.collections {
resp, err := server.refreshCollection(ctx, collection)
suite.NoError(err)
err := server.refreshCollection(collection)
// Collection not loaded error.
suite.Equal(commonpb.ErrorCode_UnexpectedError, resp.ErrorCode)
suite.ErrorIs(err, merr.ErrCollectionNotLoaded)
}
// Test load all collections
for _, collection := range suite.collections {
suite.expectGetRecoverInfo(collection)
req := &querypb.LoadCollectionRequest{
CollectionID: collection,
}
resp, err := server.LoadCollection(ctx, req)
suite.NoError(err)
suite.Equal(commonpb.ErrorCode_Success, resp.ErrorCode)
suite.assertLoaded(collection)
// Load and explicitly mark load percentage to 100%.
collObj := utils.CreateTestCollection(collection, 1)
collObj.LoadPercentage = 40
err = suite.server.meta.CollectionManager.PutCollectionWithoutSave(collObj)
suite.NoError(err)
}
suite.loadAll()
// Test refresh all collections again when collections are loaded. This time should fail with collection not 100% loaded.
for _, collection := range suite.collections {
resp, err := server.refreshCollection(ctx, collection)
suite.NoError(err)
// Context canceled error.
suite.Equal(commonpb.ErrorCode_UnexpectedError, resp.ErrorCode)
suite.updateCollectionStatus(collection, querypb.LoadStatus_Loading)
err := server.refreshCollection(collection)
suite.ErrorIs(err, merr.ErrCollectionNotLoaded)
}
// Test load all collections
for _, collection := range suite.collections {
// Test refresh all collections
for _, id := range suite.collections {
// Load and explicitly mark load percentage to 100%.
collObj := utils.CreateTestCollection(collection, 1)
collObj.LoadPercentage = 100
err := suite.server.meta.CollectionManager.PutCollectionWithoutSave(collObj)
suite.updateChannelDist(id)
suite.updateSegmentDist(id, suite.nodes[0])
suite.updateCollectionStatus(id, querypb.LoadStatus_Loaded)
err := server.refreshCollection(id)
suite.NoError(err)
}
// Test refresh all collections again when collections are loaded. This time should fail with context canceled.
for _, collection := range suite.collections {
resp, err := server.refreshCollection(ctx, collection)
readyCh, err := server.targetObserver.UpdateNextTarget(id)
suite.NoError(err)
// Context canceled error.
suite.Equal(commonpb.ErrorCode_UnexpectedError, resp.ErrorCode)
<-readyCh
// Now the refresh must be done
collection := server.meta.CollectionManager.GetCollection(id)
suite.True(collection.IsRefreshed())
}
// Test when server is not healthy
server.UpdateStateCode(commonpb.StateCode_Initializing)
resp, err := server.refreshCollection(ctx, suite.collections[0])
suite.NoError(err)
suite.Equal(resp.GetCode(), merr.Code(merr.ErrServiceNotReady))
}
func (suite *ServiceSuite) TestRefreshPartitions() {
ctx, cancel := context.WithTimeout(context.Background(), 5000*time.Millisecond)
defer cancel()
server := suite.server
suite.server.collectionObserver.Start(context.Background())
// Test refresh all partitions.
for _, collection := range suite.collections {
resp, err := server.refreshPartitions(ctx, collection, suite.partitions[collection])
// Test refresh not ready
for _, id := range suite.collections {
suite.updateChannelDistWithoutSegment(id)
err := server.refreshCollection(id)
suite.NoError(err)
// partition not loaded error.
suite.Equal(commonpb.ErrorCode_UnexpectedError, resp.ErrorCode)
// Now the refresh must be not done
collection := server.meta.CollectionManager.GetCollection(id)
suite.False(collection.IsRefreshed())
}
// Test load all partitions
for _, collection := range suite.collections {
suite.expectGetRecoverInfo(collection)
req := &querypb.LoadPartitionsRequest{
CollectionID: collection,
PartitionIDs: suite.partitions[collection],
}
resp, err := server.LoadPartitions(ctx, req)
suite.NoError(err)
suite.Equal(commonpb.ErrorCode_Success, resp.ErrorCode)
suite.assertLoaded(collection)
collObj := utils.CreateTestCollection(collection, 1)
suite.NoError(suite.server.meta.CollectionManager.PutCollection(collObj))
// Load and explicitly mark load percentage to 100%.
for _, partition := range suite.partitions[collection] {
partObj := utils.CreateTestPartition(collection, partition)
partObj.LoadPercentage = 40
err := suite.server.meta.CollectionManager.PutPartitionWithoutSave(partObj)
suite.NoError(err)
}
}
// Test refresh all collections again. This time should fail with partitions not 100% loaded.
for _, collection := range suite.collections {
resp, err := server.refreshPartitions(ctx, collection, suite.partitions[collection])
suite.NoError(err)
// Context canceled error.
suite.Equal(commonpb.ErrorCode_UnexpectedError, resp.ErrorCode)
}
// Test load all partitions
for _, collection := range suite.collections {
collObj := utils.CreateTestCollection(collection, 1)
suite.NoError(suite.server.meta.CollectionManager.PutCollection(collObj))
// Load and explicitly mark load percentage to 100%.
for _, partition := range suite.partitions[collection] {
partObj := utils.CreateTestPartition(collection, partition)
partObj.LoadPercentage = 100
err := suite.server.meta.CollectionManager.PutPartitionWithoutSave(partObj)
suite.NoError(err)
}
}
// Test refresh all collections again. This time should fail with context canceled.
for _, collection := range suite.collections {
resp, err := server.refreshPartitions(ctx, collection, suite.partitions[collection])
suite.NoError(err)
// Context canceled error.
suite.Equal(commonpb.ErrorCode_UnexpectedError, resp.ErrorCode)
}
// Test when server is not healthy
server.UpdateStateCode(commonpb.StateCode_Initializing)
resp, err := server.refreshPartitions(ctx, suite.collections[0], []int64{})
suite.NoError(err)
suite.Equal(resp.GetCode(), merr.Code(merr.ErrServiceNotReady))
}
func (suite *ServiceSuite) TestGetPartitionStates() {