Add FlushAll (#23088)

Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
pull/23101/head v2.2.5
yihao.dai 2023-03-29 13:50:02 +08:00 committed by GitHub
parent 3e95df74f5
commit 47e28fbe08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
18 changed files with 828 additions and 292 deletions

2
go.mod
View File

@ -29,7 +29,7 @@ require (
github.com/klauspost/compress v1.14.2
github.com/lingdor/stackerror v0.0.0-20191119040541-976d8885ed76
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
github.com/milvus-io/milvus-proto/go-api v0.0.0-20230301092744-7efc6eec15fd
github.com/milvus-io/milvus-proto/go-api v0.0.0-20230324025554-5bbe6698c2b0
github.com/minio/minio-go/v7 v7.0.17
github.com/opentracing/opentracing-go v1.2.0
github.com/panjf2000/ants/v2 v2.4.8

6
go.sum
View File

@ -493,8 +493,14 @@ 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-20230301092744-7efc6eec15fd h1:9ilgTEqZSdEPbJKSrRGB1TIHTaF7DqVDIwn8/azcaBk=
github.com/milvus-io/milvus-proto/go-api v0.0.0-20230301092744-7efc6eec15fd/go.mod h1:148qnlmZ0Fdm1Fq+Mj/OW2uDoEP25g3mjh0vMGtkgmk=
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-20230324025554-5bbe6698c2b0 h1:k1VzMLw+FO6G4JUDIliN0+8UBnOGwSeiJUlO6/iJrXg=
github.com/milvus-io/milvus-proto/go-api v0.0.0-20230324025554-5bbe6698c2b0/go.mod h1:148qnlmZ0Fdm1Fq+Mj/OW2uDoEP25g3mjh0vMGtkgmk=
github.com/milvus-io/pulsar-client-go v0.6.8 h1:fZdZH73aPRszu2fazyeeahQEz34tyn1Pt9EkqJmV100=
github.com/milvus-io/pulsar-client-go v0.6.8/go.mod h1:oFIlYIk23tamkSLttw849qphmMIpHY8ztEBWDWJW+sc=
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=
github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8/go.mod h1:mC1jAcsrzbxHt8iiaC+zU4b1ylILSosueou12R++wfY=
github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 h1:+n/aFZefKZp7spd8DFdX7uMikMLXX4oubIzJF4kv/wI=

View File

@ -3507,6 +3507,87 @@ func TestGetFlushState(t *testing.T) {
})
}
func TestGetFlushAllState(t *testing.T) {
tests := []struct {
testName string
ChannelCPs []Timestamp
FlushAllTs Timestamp
ServerIsHealthy bool
ShowCollectionFailed bool
DescribeCollectionFailed bool
ExpectedSuccess bool
ExpectedFlushed bool
}{
{"test FlushAll flushed", []Timestamp{100, 200}, 99,
true, false, false, true, true},
{"test FlushAll not flushed", []Timestamp{100, 200}, 150,
true, false, false, true, false},
{"test Sever is not healthy", nil, 0,
false, false, false, false, false},
{"test ShowCollections failed", nil, 0,
true, true, false, false, false},
{"test DescribeCollection failed", nil, 0,
true, false, true, false, false},
}
for _, test := range tests {
t.Run(test.testName, func(t *testing.T) {
collection := UniqueID(0)
vchannels := []string{"mock-vchannel-0", "mock-vchannel-1"}
svr := &Server{}
if test.ServerIsHealthy {
svr.stateCode.Store(commonpb.StateCode_Healthy)
}
var err error
svr.meta = &meta{}
svr.rootCoordClient = mocks.NewRootCoord(t)
if test.ShowCollectionFailed {
svr.rootCoordClient.(*mocks.RootCoord).EXPECT().ShowCollections(mock.Anything, mock.Anything).
Return(&milvuspb.ShowCollectionsResponse{
Status: &commonpb.Status{ErrorCode: commonpb.ErrorCode_UnexpectedError},
}, nil).Maybe()
} else {
svr.rootCoordClient.(*mocks.RootCoord).EXPECT().ShowCollections(mock.Anything, mock.Anything).
Return(&milvuspb.ShowCollectionsResponse{
Status: &commonpb.Status{ErrorCode: commonpb.ErrorCode_Success},
CollectionIds: []int64{collection},
}, nil).Maybe()
}
if test.DescribeCollectionFailed {
svr.rootCoordClient.(*mocks.RootCoord).EXPECT().DescribeCollectionInternal(mock.Anything, mock.Anything).
Return(&milvuspb.DescribeCollectionResponse{
Status: &commonpb.Status{ErrorCode: commonpb.ErrorCode_UnexpectedError},
}, nil).Maybe()
} else {
svr.rootCoordClient.(*mocks.RootCoord).EXPECT().DescribeCollectionInternal(mock.Anything, mock.Anything).
Return(&milvuspb.DescribeCollectionResponse{
Status: &commonpb.Status{ErrorCode: commonpb.ErrorCode_Success},
VirtualChannelNames: vchannels,
}, nil).Maybe()
}
svr.meta.channelCPs = make(map[string]*internalpb.MsgPosition)
for i, ts := range test.ChannelCPs {
channel := vchannels[i]
svr.meta.channelCPs[channel] = &internalpb.MsgPosition{
ChannelName: channel,
Timestamp: ts,
}
}
resp, err := svr.GetFlushAllState(context.TODO(), &milvuspb.GetFlushAllStateRequest{FlushAllTs: test.FlushAllTs})
assert.Nil(t, err)
if test.ExpectedSuccess {
assert.Equal(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
} else {
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
}
assert.Equal(t, test.ExpectedFlushed, resp.GetFlushed())
})
}
}
func TestDataCoordServer_SetSegmentState(t *testing.T) {
t.Run("normal case", func(t *testing.T) {
svr := newTestServer(t, nil)

View File

@ -1180,6 +1180,51 @@ func (s *Server) GetFlushState(ctx context.Context, req *milvuspb.GetFlushStateR
return resp, nil
}
// GetFlushAllState checks if all DML messages before `FlushAllTs` have been flushed.
func (s *Server) GetFlushAllState(ctx context.Context, req *milvuspb.GetFlushAllStateRequest) (*milvuspb.GetFlushAllStateResponse, error) {
resp := &milvuspb.GetFlushAllStateResponse{Status: &commonpb.Status{ErrorCode: commonpb.ErrorCode_UnexpectedError}}
if s.isClosed() {
log.Warn("DataCoord receive GetFlushAllState request, server closed")
setNotServingStatus(resp.Status, s.GetStateCode())
return resp, nil
}
showColRsp, err := s.rootCoordClient.ShowCollections(ctx, &milvuspb.ShowCollectionsRequest{
Base: commonpbutil.NewMsgBase(
commonpbutil.WithMsgType(commonpb.MsgType_ShowCollections),
)})
if err = VerifyResponse(showColRsp, err); err != nil {
log.Warn("failed to ShowCollections", zap.Error(err))
resp.Status.Reason = err.Error()
return resp, nil
}
for _, collection := range showColRsp.GetCollectionIds() {
describeColRsp, err := s.rootCoordClient.DescribeCollectionInternal(ctx, &milvuspb.DescribeCollectionRequest{
Base: commonpbutil.NewMsgBase(
commonpbutil.WithMsgType(commonpb.MsgType_DescribeCollection),
),
CollectionID: collection,
})
if err = VerifyResponse(describeColRsp, err); err != nil {
log.Warn("failed to DescribeCollectionInternal", zap.Error(err))
resp.Status.Reason = err.Error()
return resp, nil
}
for _, channel := range describeColRsp.GetVirtualChannelNames() {
channelCP := s.meta.GetChannelCheckpoint(channel)
if channelCP == nil || channelCP.GetTimestamp() < req.GetFlushAllTs() {
resp.Flushed = false
resp.Status.ErrorCode = commonpb.ErrorCode_Success
return resp, nil
}
}
}
resp.Flushed = true
resp.Status.ErrorCode = commonpb.ErrorCode_Success
return resp, nil
}
// Import distributes the import tasks to dataNodes.
// It returns a failed status if no dataNode is available or if any error occurs.
func (s *Server) Import(ctx context.Context, itr *datapb.ImportTaskRequest) (*datapb.ImportTaskResponse, error) {

View File

@ -581,6 +581,20 @@ func (c *Client) GetFlushState(ctx context.Context, req *milvuspb.GetFlushStateR
return ret.(*milvuspb.GetFlushStateResponse), err
}
// GetFlushAllState checks if all DML messages before `FlushAllTs` have been flushed.
func (c *Client) GetFlushAllState(ctx context.Context, req *milvuspb.GetFlushAllStateRequest) (*milvuspb.GetFlushAllStateResponse, error) {
ret, err := c.grpcClient.ReCall(ctx, func(client datapb.DataCoordClient) (any, error) {
if !funcutil.CheckCtxValid(ctx) {
return nil, ctx.Err()
}
return client.GetFlushAllState(ctx, req)
})
if err != nil || ret == nil {
return nil, err
}
return ret.(*milvuspb.GetFlushAllStateResponse), err
}
// DropVirtualChannel drops virtual channel in datacoord.
func (c *Client) DropVirtualChannel(ctx context.Context, req *datapb.DropVirtualChannelRequest) (*datapb.DropVirtualChannelResponse, error) {
req = typeutil.Clone(req)

View File

@ -156,6 +156,9 @@ func Test_NewClient(t *testing.T) {
r32, err := client.ListSegmentsInfo(ctx, nil)
retCheck(retNotNil, r32, err)
r, err := client.GetFlushAllState(ctx, nil)
retCheck(retNotNil, r, err)
{
ret, err := client.BroadcastAlteredCollection(ctx, nil)
retCheck(retNotNil, ret, err)

View File

@ -360,6 +360,11 @@ func (s *Server) GetFlushState(ctx context.Context, req *milvuspb.GetFlushStateR
return s.dataCoord.GetFlushState(ctx, req)
}
// GetFlushAllState checks if all DML messages before `FlushAllTs` have been flushed.
func (s *Server) GetFlushAllState(ctx context.Context, req *milvuspb.GetFlushAllStateRequest) (*milvuspb.GetFlushAllStateResponse, error) {
return s.dataCoord.GetFlushAllState(ctx, req)
}
// DropVirtualChannel drop virtual channel in datacoord
func (s *Server) DropVirtualChannel(ctx context.Context, req *datapb.DropVirtualChannelRequest) (*datapb.DropVirtualChannelResponse, error) {
return s.dataCoord.DropVirtualChannel(ctx, req)

View File

@ -60,6 +60,7 @@ type MockDataCoord struct {
compactionPlansResp *milvuspb.GetCompactionPlansResponse
watchChannelsResp *datapb.WatchChannelsResponse
getFlushStateResp *milvuspb.GetFlushStateResponse
getFlushAllStateResp *milvuspb.GetFlushAllStateResponse
dropVChanResp *datapb.DropVirtualChannelResponse
setSegmentStateResp *datapb.SetSegmentStateResponse
importResp *datapb.ImportTaskResponse
@ -188,6 +189,10 @@ func (m *MockDataCoord) GetFlushState(ctx context.Context, req *milvuspb.GetFlus
return m.getFlushStateResp, m.err
}
func (m *MockDataCoord) GetFlushAllState(ctx context.Context, req *milvuspb.GetFlushAllStateRequest) (*milvuspb.GetFlushAllStateResponse, error) {
return m.getFlushAllStateResp, m.err
}
func (m *MockDataCoord) DropVirtualChannel(ctx context.Context, req *datapb.DropVirtualChannelRequest) (*datapb.DropVirtualChannelResponse, error) {
return m.dropVChanResp, m.err
}
@ -420,6 +425,15 @@ func Test_NewServer(t *testing.T) {
assert.NotNil(t, resp)
})
t.Run("GetFlushAllState", func(t *testing.T) {
server.dataCoord = &MockDataCoord{
getFlushAllStateResp: &milvuspb.GetFlushAllStateResponse{},
}
resp, err := server.GetFlushAllState(ctx, nil)
assert.Nil(t, err)
assert.NotNil(t, resp)
})
t.Run("DropVirtualChannel", func(t *testing.T) {
server.dataCoord = &MockDataCoord{
dropVChanResp: &datapb.DropVirtualChannelResponse{},

View File

@ -692,6 +692,10 @@ func (s *Server) CalcDistance(ctx context.Context, request *milvuspb.CalcDistanc
return s.proxy.CalcDistance(ctx, request)
}
func (s *Server) FlushAll(ctx context.Context, request *milvuspb.FlushAllRequest) (*milvuspb.FlushAllResponse, error) {
return s.proxy.FlushAll(ctx, request)
}
func (s *Server) GetDdChannel(ctx context.Context, request *internalpb.GetDdChannelRequest) (*milvuspb.StringResponse, error) {
return s.proxy.GetDdChannel(ctx, request)
}
@ -758,6 +762,11 @@ func (s *Server) GetFlushState(ctx context.Context, req *milvuspb.GetFlushStateR
return s.proxy.GetFlushState(ctx, req)
}
// GetFlushAllState checks if all DML messages before `FlushAllTs` have been flushed.
func (s *Server) GetFlushAllState(ctx context.Context, req *milvuspb.GetFlushAllStateRequest) (*milvuspb.GetFlushAllStateResponse, error) {
return s.proxy.GetFlushAllState(ctx, req)
}
func (s *Server) Import(ctx context.Context, req *milvuspb.ImportRequest) (*milvuspb.ImportResponse, error) {
return s.proxy.Import(ctx, req)
}

View File

@ -612,6 +612,10 @@ func (m *MockDataCoord) GetFlushState(ctx context.Context, req *milvuspb.GetFlus
return nil, nil
}
func (m *MockDataCoord) GetFlushAllState(ctx context.Context, req *milvuspb.GetFlushAllStateRequest) (*milvuspb.GetFlushAllStateResponse, error) {
return nil, nil
}
func (m *MockDataCoord) DropVirtualChannel(ctx context.Context, req *datapb.DropVirtualChannelRequest) (*datapb.DropVirtualChannelResponse, error) {
return &datapb.DropVirtualChannelResponse{}, nil
}
@ -803,6 +807,10 @@ func (m *MockProxy) CalcDistance(ctx context.Context, request *milvuspb.CalcDist
return nil, nil
}
func (m *MockProxy) FlushAll(ctx context.Context, request *milvuspb.FlushAllRequest) (*milvuspb.FlushAllResponse, error) {
return nil, nil
}
func (m *MockProxy) GetDdChannel(ctx context.Context, request *internalpb.GetDdChannelRequest) (*milvuspb.StringResponse, error) {
return nil, nil
}
@ -894,6 +902,10 @@ func (m *MockProxy) GetFlushState(ctx context.Context, req *milvuspb.GetFlushSta
return nil, nil
}
func (m *MockProxy) GetFlushAllState(ctx context.Context, req *milvuspb.GetFlushAllStateRequest) (*milvuspb.GetFlushAllStateResponse, error) {
return nil, nil
}
func (m *MockProxy) Import(ctx context.Context, req *milvuspb.ImportRequest) (*milvuspb.ImportResponse, error) {
return nil, nil
}
@ -1458,6 +1470,16 @@ func Test_NewServer(t *testing.T) {
assert.Nil(t, err)
})
t.Run("FlushAll", func(t *testing.T) {
_, err := server.FlushAll(ctx, nil)
assert.Nil(t, err)
})
t.Run("GetFlushAllState", func(t *testing.T) {
_, err := server.GetFlushAllState(ctx, nil)
assert.Nil(t, err)
})
err = server.Stop()
assert.Nil(t, err)

View File

@ -1,4 +1,4 @@
// Code generated by mockery v2.16.0. DO NOT EDIT.
// Code generated by mockery v2.14.0. DO NOT EDIT.
package mocks
@ -545,6 +545,53 @@ func (_c *DataCoord_GetComponentStates_Call) Return(_a0 *milvuspb.ComponentState
return _c
}
// GetFlushAllState provides a mock function with given fields: ctx, req
func (_m *DataCoord) GetFlushAllState(ctx context.Context, req *milvuspb.GetFlushAllStateRequest) (*milvuspb.GetFlushAllStateResponse, error) {
ret := _m.Called(ctx, req)
var r0 *milvuspb.GetFlushAllStateResponse
if rf, ok := ret.Get(0).(func(context.Context, *milvuspb.GetFlushAllStateRequest) *milvuspb.GetFlushAllStateResponse); ok {
r0 = rf(ctx, req)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*milvuspb.GetFlushAllStateResponse)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(context.Context, *milvuspb.GetFlushAllStateRequest) error); ok {
r1 = rf(ctx, req)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// DataCoord_GetFlushAllState_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'GetFlushAllState'
type DataCoord_GetFlushAllState_Call struct {
*mock.Call
}
// GetFlushAllState is a helper method to define mock.On call
// - ctx context.Context
// - req *milvuspb.GetFlushAllStateRequest
func (_e *DataCoord_Expecter) GetFlushAllState(ctx interface{}, req interface{}) *DataCoord_GetFlushAllState_Call {
return &DataCoord_GetFlushAllState_Call{Call: _e.mock.On("GetFlushAllState", ctx, req)}
}
func (_c *DataCoord_GetFlushAllState_Call) Run(run func(ctx context.Context, req *milvuspb.GetFlushAllStateRequest)) *DataCoord_GetFlushAllState_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(*milvuspb.GetFlushAllStateRequest))
})
return _c
}
func (_c *DataCoord_GetFlushAllState_Call) Return(_a0 *milvuspb.GetFlushAllStateResponse, _a1 error) *DataCoord_GetFlushAllState_Call {
_c.Call.Return(_a0, _a1)
return _c
}
// GetFlushState provides a mock function with given fields: ctx, req
func (_m *DataCoord) GetFlushState(ctx context.Context, req *milvuspb.GetFlushStateRequest) (*milvuspb.GetFlushStateResponse, error) {
ret := _m.Called(ctx, req)

View File

@ -42,6 +42,7 @@ service DataCoord {
rpc GetRecoveryInfo(GetRecoveryInfoRequest) returns (GetRecoveryInfoResponse){}
rpc GetFlushedSegments(GetFlushedSegmentsRequest) returns(GetFlushedSegmentsResponse){}
rpc GetSegmentsByStates(GetSegmentsByStatesRequest) returns(GetSegmentsByStatesResponse){}
rpc GetFlushAllState(milvus.GetFlushAllStateRequest) returns(milvus.GetFlushAllStateResponse) {}
rpc ShowConfigurations(internal.ShowConfigurationsRequest) returns (internal.ShowConfigurationsResponse){}
// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy

View File

@ -5193,296 +5193,297 @@ func init() {
func init() { proto.RegisterFile("data_coord.proto", fileDescriptor_82cd95f524594f49) }
var fileDescriptor_82cd95f524594f49 = []byte{
// 4617 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7c, 0xcd, 0x6f, 0x1b, 0x49,
0x76, 0xb8, 0x9b, 0x5f, 0x22, 0x1f, 0x29, 0x8a, 0x2a, 0x7b, 0x24, 0x9a, 0xfe, 0x9c, 0xb6, 0x3d,
0xe3, 0xf1, 0x78, 0xec, 0x19, 0xcf, 0x6f, 0xb0, 0xfe, 0xad, 0x77, 0x66, 0x63, 0x49, 0x96, 0x87,
0x89, 0xa4, 0xd5, 0xb6, 0xe4, 0x71, 0x30, 0x1b, 0x80, 0x68, 0xb3, 0x8b, 0x54, 0xaf, 0xc8, 0x6e,
0xba, 0xbb, 0x29, 0x59, 0x9b, 0xc3, 0x0e, 0x12, 0x24, 0xc0, 0x06, 0x41, 0x36, 0x08, 0x10, 0x6c,
0x72, 0x08, 0x10, 0xe4, 0xb4, 0xd9, 0x60, 0x83, 0x00, 0x9b, 0x5c, 0x72, 0xc9, 0x75, 0x90, 0x1c,
0x36, 0x41, 0x80, 0x1c, 0x13, 0x20, 0x87, 0x24, 0xf7, 0xfc, 0x03, 0x41, 0x7d, 0x74, 0xf5, 0x57,
0x35, 0xd9, 0x22, 0xed, 0xf1, 0x22, 0xb9, 0xb1, 0x5e, 0xbf, 0x7a, 0xf5, 0xaa, 0xea, 0x7d, 0x57,
0x15, 0xa1, 0x61, 0xe8, 0x9e, 0xde, 0xe9, 0xda, 0xb6, 0x63, 0xdc, 0x19, 0x39, 0xb6, 0x67, 0xa3,
0xe5, 0xa1, 0x39, 0x38, 0x1a, 0xbb, 0xac, 0x75, 0x87, 0x7c, 0x6e, 0xd5, 0xba, 0xf6, 0x70, 0x68,
0x5b, 0x0c, 0xd4, 0xaa, 0x9b, 0x96, 0x87, 0x1d, 0x4b, 0x1f, 0xf0, 0x76, 0x2d, 0xdc, 0xa1, 0x55,
0x73, 0xbb, 0x07, 0x78, 0xa8, 0xb3, 0x96, 0xba, 0x00, 0xc5, 0x47, 0xc3, 0x91, 0x77, 0xa2, 0xfe,
0xb5, 0x02, 0xb5, 0xcd, 0xc1, 0xd8, 0x3d, 0xd0, 0xf0, 0xf3, 0x31, 0x76, 0x3d, 0xf4, 0x3e, 0x14,
0x9e, 0xe9, 0x2e, 0x6e, 0x2a, 0x57, 0x95, 0x9b, 0xd5, 0x7b, 0x17, 0xef, 0x44, 0x46, 0xe5, 0xe3,
0x6d, 0xbb, 0xfd, 0x35, 0xdd, 0xc5, 0x1a, 0xc5, 0x44, 0x08, 0x0a, 0xc6, 0xb3, 0xf6, 0x46, 0x33,
0x77, 0x55, 0xb9, 0x99, 0xd7, 0xe8, 0x6f, 0x74, 0x19, 0xc0, 0xc5, 0xfd, 0x21, 0xb6, 0xbc, 0xf6,
0x86, 0xdb, 0xcc, 0x5f, 0xcd, 0xdf, 0xcc, 0x6b, 0x21, 0x08, 0x52, 0xa1, 0xd6, 0xb5, 0x07, 0x03,
0xdc, 0xf5, 0x4c, 0xdb, 0x6a, 0x6f, 0x34, 0x0b, 0xb4, 0x6f, 0x04, 0x86, 0x5a, 0x50, 0x36, 0xdd,
0xf6, 0x70, 0x64, 0x3b, 0x5e, 0xb3, 0x78, 0x55, 0xb9, 0x59, 0xd6, 0x44, 0x5b, 0xfd, 0x0f, 0x05,
0x16, 0x39, 0xdb, 0xee, 0xc8, 0xb6, 0x5c, 0x8c, 0x3e, 0x84, 0x92, 0xeb, 0xe9, 0xde, 0xd8, 0xe5,
0x9c, 0x5f, 0x90, 0x72, 0xbe, 0x47, 0x51, 0x34, 0x8e, 0x2a, 0x65, 0x3d, 0xce, 0x5a, 0x5e, 0xc2,
0x5a, 0x74, 0x7a, 0x85, 0xc4, 0xf4, 0x6e, 0xc2, 0x52, 0x8f, 0x70, 0xb7, 0x17, 0x20, 0x15, 0x29,
0x52, 0x1c, 0x4c, 0x28, 0x79, 0xe6, 0x10, 0x7f, 0xab, 0xb7, 0x87, 0xf5, 0x41, 0xb3, 0x44, 0xc7,
0x0a, 0x41, 0xd4, 0x7f, 0x52, 0xa0, 0x21, 0xd0, 0xfd, 0x3d, 0x3a, 0x07, 0xc5, 0xae, 0x3d, 0xb6,
0x3c, 0x3a, 0xd5, 0x45, 0x8d, 0x35, 0xd0, 0x9b, 0x50, 0xeb, 0x1e, 0xe8, 0x96, 0x85, 0x07, 0x1d,
0x4b, 0x1f, 0x62, 0x3a, 0xa9, 0x8a, 0x56, 0xe5, 0xb0, 0x1d, 0x7d, 0x88, 0x33, 0xcd, 0xed, 0x2a,
0x54, 0x47, 0xba, 0xe3, 0x99, 0x91, 0x9d, 0x09, 0x83, 0x26, 0x6d, 0x0c, 0x19, 0xc1, 0xa4, 0xbf,
0xf6, 0x75, 0xf7, 0xb0, 0xbd, 0xc1, 0x67, 0x14, 0x81, 0xa9, 0x7f, 0xaa, 0xc0, 0xca, 0x43, 0xd7,
0x35, 0xfb, 0x56, 0x62, 0x66, 0x2b, 0x50, 0xb2, 0x6c, 0x03, 0xb7, 0x37, 0xe8, 0xd4, 0xf2, 0x1a,
0x6f, 0xa1, 0x0b, 0x50, 0x19, 0x61, 0xec, 0x74, 0x1c, 0x7b, 0xe0, 0x4f, 0xac, 0x4c, 0x00, 0x9a,
0x3d, 0xc0, 0xe8, 0xdb, 0xb0, 0xec, 0xc6, 0x08, 0x31, 0x99, 0xab, 0xde, 0xbb, 0x76, 0x27, 0xa1,
0x35, 0x77, 0xe2, 0x83, 0x6a, 0xc9, 0xde, 0xea, 0x17, 0x39, 0x38, 0x2b, 0xf0, 0x18, 0xaf, 0xe4,
0x37, 0x59, 0x79, 0x17, 0xf7, 0x05, 0x7b, 0xac, 0x91, 0x65, 0xe5, 0xc5, 0x96, 0xe5, 0xc3, 0x5b,
0x96, 0x45, 0x0d, 0x62, 0xfb, 0x51, 0x4c, 0xee, 0xc7, 0x15, 0xa8, 0xe2, 0x17, 0x23, 0xd3, 0xc1,
0x1d, 0x22, 0x38, 0x74, 0xc9, 0x0b, 0x1a, 0x30, 0xd0, 0xbe, 0x39, 0x0c, 0xeb, 0xc6, 0x42, 0x66,
0xdd, 0x50, 0xff, 0x4c, 0x81, 0xd5, 0xc4, 0x2e, 0x71, 0x65, 0xd3, 0xa0, 0x41, 0x67, 0x1e, 0xac,
0x0c, 0x51, 0x3b, 0xb2, 0xe0, 0x6f, 0x4d, 0x5a, 0xf0, 0x00, 0x5d, 0x4b, 0xf4, 0x0f, 0x31, 0x99,
0xcb, 0xce, 0xe4, 0x21, 0xac, 0x3e, 0xc6, 0x1e, 0x1f, 0x80, 0x7c, 0xc3, 0xee, 0xec, 0x86, 0x2c,
0xaa, 0xd5, 0xb9, 0xb8, 0x56, 0xab, 0x7f, 0x95, 0x13, 0xba, 0x48, 0x87, 0x6a, 0x5b, 0x3d, 0x1b,
0x5d, 0x84, 0x8a, 0x40, 0xe1, 0x52, 0x11, 0x00, 0xd0, 0xd7, 0xa0, 0x48, 0x38, 0x65, 0x22, 0x51,
0xbf, 0xf7, 0xa6, 0x7c, 0x4e, 0x21, 0x9a, 0x1a, 0xc3, 0x47, 0x6d, 0xa8, 0xbb, 0x9e, 0xee, 0x78,
0x9d, 0x91, 0xed, 0xd2, 0x7d, 0xa6, 0x82, 0x53, 0xbd, 0xa7, 0x46, 0x29, 0x08, 0x93, 0xbf, 0xed,
0xf6, 0x77, 0x39, 0xa6, 0xb6, 0x48, 0x7b, 0xfa, 0x4d, 0xf4, 0x08, 0x6a, 0xd8, 0x32, 0x02, 0x42,
0x85, 0xcc, 0x84, 0xaa, 0xd8, 0x32, 0x04, 0x99, 0x60, 0x7f, 0x8a, 0xd9, 0xf7, 0xe7, 0x77, 0x15,
0x68, 0x26, 0x37, 0x68, 0x1e, 0x93, 0xfd, 0x80, 0x75, 0xc2, 0x6c, 0x83, 0x26, 0x6a, 0xb8, 0xd8,
0x24, 0x8d, 0x77, 0x51, 0xff, 0x50, 0x81, 0x37, 0x02, 0x76, 0xe8, 0xa7, 0x57, 0x25, 0x2d, 0xe8,
0x16, 0x34, 0x4c, 0xab, 0x3b, 0x18, 0x1b, 0xf8, 0x89, 0xf5, 0x29, 0xd6, 0x07, 0xde, 0xc1, 0x09,
0xdd, 0xc3, 0xb2, 0x96, 0x80, 0xab, 0xff, 0x9a, 0x83, 0x95, 0x38, 0x5f, 0xf3, 0x2c, 0xd2, 0xff,
0x83, 0xa2, 0x69, 0xf5, 0x6c, 0x7f, 0x8d, 0x2e, 0x4f, 0x50, 0x4a, 0x32, 0x16, 0x43, 0x46, 0x36,
0x20, 0xdf, 0x8c, 0x75, 0x0f, 0x70, 0xf7, 0x70, 0x64, 0x9b, 0xd4, 0x60, 0x11, 0x12, 0xbf, 0x24,
0x21, 0x21, 0xe7, 0xf8, 0xce, 0x3a, 0xa3, 0xb1, 0x2e, 0x48, 0x3c, 0xb2, 0x3c, 0xe7, 0x44, 0x5b,
0xee, 0xc6, 0xe1, 0xad, 0x03, 0x58, 0x91, 0x23, 0xa3, 0x06, 0xe4, 0x0f, 0xf1, 0x09, 0x9d, 0x72,
0x45, 0x23, 0x3f, 0xd1, 0x7d, 0x28, 0x1e, 0xe9, 0x83, 0x31, 0xe6, 0xd6, 0x21, 0x8b, 0xf8, 0xb2,
0x0e, 0x5f, 0xcf, 0xdd, 0x57, 0xd4, 0x1f, 0x29, 0xb0, 0xba, 0x65, 0xba, 0x3e, 0xbf, 0xee, 0x2f,
0xce, 0xd6, 0xff, 0x96, 0x02, 0xcd, 0x24, 0x67, 0x5f, 0xf9, 0xe6, 0xab, 0x43, 0xb8, 0xf0, 0x18,
0x7b, 0x6d, 0xcb, 0xc5, 0x8e, 0xb7, 0x66, 0x5a, 0x03, 0xbb, 0xbf, 0xab, 0x7b, 0x07, 0x73, 0x58,
0xd3, 0x88, 0x61, 0xcc, 0xc5, 0x0c, 0xa3, 0xfa, 0x63, 0x05, 0x2e, 0xca, 0xc7, 0xe3, 0x53, 0x6f,
0x41, 0xb9, 0x67, 0xe2, 0x81, 0x41, 0x56, 0x58, 0xa1, 0x2b, 0x2c, 0xda, 0xc4, 0xaa, 0x8e, 0x08,
0x32, 0x9f, 0xe1, 0x9b, 0x29, 0xb2, 0xb0, 0xe7, 0x39, 0xa6, 0xd5, 0x27, 0x8b, 0xab, 0x31, 0xfc,
0xd0, 0x7a, 0xe6, 0xb3, 0xdb, 0xb0, 0xdf, 0x51, 0xe0, 0xf2, 0x63, 0xec, 0xad, 0x0b, 0xa7, 0x4c,
0xbe, 0x9b, 0xae, 0x67, 0x76, 0xdd, 0x97, 0x1b, 0x34, 0x67, 0x88, 0xce, 0xd4, 0x1f, 0x2a, 0x70,
0x25, 0x95, 0x19, 0xbe, 0x74, 0xdc, 0xe9, 0xf8, 0x2e, 0x59, 0xee, 0x74, 0x7e, 0x05, 0x9f, 0x7c,
0x46, 0xd4, 0x63, 0x57, 0x37, 0x1d, 0xe6, 0x74, 0x66, 0x74, 0xc1, 0x3f, 0x55, 0xe0, 0xd2, 0x63,
0xec, 0xed, 0xfa, 0x01, 0xc9, 0x6b, 0x5c, 0x1d, 0x82, 0x13, 0x0a, 0x8c, 0xfc, 0xc8, 0x3c, 0x02,
0x53, 0x7f, 0x8f, 0x6d, 0xa7, 0x94, 0xdf, 0xd7, 0xb2, 0x80, 0x97, 0xa9, 0x26, 0x84, 0x54, 0x92,
0xdb, 0x44, 0xbe, 0x7c, 0xea, 0x9f, 0x28, 0x70, 0xfe, 0x61, 0xf7, 0xf9, 0xd8, 0x74, 0x30, 0x47,
0xda, 0xb2, 0xbb, 0x87, 0xb3, 0x2f, 0x6e, 0x10, 0x63, 0xe7, 0x22, 0x31, 0xf6, 0xb4, 0x9c, 0x6d,
0x05, 0x4a, 0x1e, 0x0b, 0xea, 0x59, 0x98, 0xca, 0x5b, 0x94, 0x3f, 0x0d, 0x0f, 0xb0, 0xee, 0xfe,
0x62, 0xf2, 0xf7, 0xc3, 0x02, 0xd4, 0x3e, 0xe3, 0xce, 0x87, 0x86, 0x6c, 0x71, 0x49, 0x52, 0xe4,
0x51, 0x77, 0x28, 0x7c, 0x97, 0x45, 0xf4, 0x8f, 0x61, 0xd1, 0xc5, 0xf8, 0x70, 0x96, 0x00, 0xad,
0x46, 0x3a, 0x8a, 0xc0, 0x6a, 0x0b, 0x96, 0xc7, 0x16, 0xcd, 0x0b, 0xb1, 0xe1, 0x7b, 0x01, 0x2a,
0xb9, 0xd3, 0x6d, 0x77, 0xb2, 0x23, 0xfa, 0x94, 0xa7, 0x9e, 0x21, 0x5a, 0xc5, 0x4c, 0xb4, 0xe2,
0xdd, 0x50, 0x1b, 0x1a, 0x86, 0x63, 0x8f, 0x46, 0xd8, 0xe8, 0xb8, 0x3e, 0xa9, 0x52, 0x36, 0x52,
0xbc, 0x9f, 0x20, 0xf5, 0x3e, 0x9c, 0x8d, 0x73, 0xda, 0x36, 0x48, 0x36, 0x42, 0xf6, 0x50, 0xf6,
0x09, 0xdd, 0x86, 0xe5, 0x24, 0x7e, 0x99, 0xe2, 0x27, 0x3f, 0xa0, 0xf7, 0x00, 0xc5, 0x58, 0x25,
0xe8, 0x15, 0x86, 0x1e, 0x65, 0xa6, 0x6d, 0xb8, 0xea, 0x0f, 0x14, 0x58, 0x79, 0xaa, 0x7b, 0xdd,
0x83, 0x8d, 0x21, 0xd7, 0xb5, 0x39, 0x6c, 0xd5, 0xc7, 0x50, 0x39, 0xe2, 0x72, 0xe1, 0x3b, 0xa4,
0x2b, 0x92, 0xf5, 0x09, 0x4b, 0xa0, 0x16, 0xf4, 0x20, 0xc9, 0xf0, 0xb9, 0xcd, 0x50, 0x51, 0xe0,
0x35, 0x58, 0xcd, 0x29, 0xd5, 0x0c, 0xf5, 0x05, 0x00, 0x67, 0x6e, 0xdb, 0xed, 0xcf, 0xc0, 0xd7,
0x7d, 0x58, 0xe0, 0xd4, 0xb8, 0x59, 0x9c, 0x26, 0x3f, 0x3e, 0xba, 0xfa, 0x93, 0x12, 0x54, 0x43,
0x1f, 0x50, 0x1d, 0x72, 0x42, 0x5f, 0x73, 0x92, 0xd9, 0xe5, 0xa6, 0xe7, 0xcf, 0xf9, 0x64, 0xfe,
0x7c, 0x03, 0xea, 0x26, 0x8d, 0x43, 0x3a, 0x7c, 0x57, 0xa8, 0x01, 0xa9, 0x68, 0x8b, 0x0c, 0xca,
0x45, 0x04, 0x5d, 0x86, 0xaa, 0x35, 0x1e, 0x76, 0xec, 0x5e, 0xc7, 0xb1, 0x8f, 0x5d, 0x9e, 0x88,
0x57, 0xac, 0xf1, 0xf0, 0x5b, 0x3d, 0xcd, 0x3e, 0x76, 0x83, 0x5c, 0xaf, 0x74, 0xca, 0x5c, 0xef,
0x32, 0x54, 0x87, 0xfa, 0x0b, 0x42, 0xb5, 0x63, 0x8d, 0x87, 0x34, 0x47, 0xcf, 0x6b, 0x95, 0xa1,
0xfe, 0x42, 0xb3, 0x8f, 0x77, 0xc6, 0x43, 0x74, 0x13, 0x1a, 0x03, 0xdd, 0xf5, 0x3a, 0xe1, 0x24,
0xbf, 0x4c, 0x93, 0xfc, 0x3a, 0x81, 0x3f, 0x0a, 0x12, 0xfd, 0x64, 0xd6, 0x58, 0x99, 0x23, 0x6b,
0x34, 0x86, 0x83, 0x80, 0x10, 0x64, 0xcf, 0x1a, 0x8d, 0xe1, 0x40, 0x90, 0xb9, 0x0f, 0x0b, 0xcf,
0x68, 0x74, 0xe7, 0x36, 0xab, 0xa9, 0xb6, 0x63, 0x93, 0x04, 0x76, 0x2c, 0x08, 0xd4, 0x7c, 0x74,
0xf4, 0x0d, 0xa8, 0x50, 0xa7, 0x4a, 0xfb, 0xd6, 0x32, 0xf5, 0x0d, 0x3a, 0x90, 0xde, 0x06, 0x1e,
0x78, 0x3a, 0xed, 0xbd, 0x98, 0xad, 0xb7, 0xe8, 0x40, 0xec, 0x55, 0xd7, 0xc1, 0xba, 0x87, 0x8d,
0xb5, 0x93, 0x75, 0x7b, 0x38, 0xd2, 0xa9, 0x30, 0x35, 0xeb, 0x34, 0x86, 0x97, 0x7d, 0x42, 0x6f,
0x41, 0xbd, 0x2b, 0x5a, 0x9b, 0x8e, 0x3d, 0x6c, 0x2e, 0x51, 0x3d, 0x8a, 0x41, 0xd1, 0x25, 0x00,
0xdf, 0x52, 0xe9, 0x5e, 0xb3, 0x41, 0x77, 0xb1, 0xc2, 0x21, 0x0f, 0x69, 0x0d, 0xcf, 0x74, 0x3b,
0xac, 0x5a, 0x66, 0x5a, 0xfd, 0xe6, 0x32, 0x1d, 0xb1, 0xea, 0x97, 0xd7, 0x4c, 0xab, 0x8f, 0x56,
0x61, 0xc1, 0x74, 0x3b, 0x3d, 0xfd, 0x10, 0x37, 0x11, 0xfd, 0x5a, 0x32, 0xdd, 0x4d, 0xfd, 0x10,
0xab, 0xdf, 0x87, 0x73, 0x81, 0x74, 0x85, 0x76, 0x32, 0x29, 0x14, 0xca, 0xac, 0x42, 0x31, 0x39,
0xa6, 0xff, 0x79, 0x01, 0x56, 0xf6, 0xf4, 0x23, 0xfc, 0xea, 0xd3, 0x87, 0x4c, 0x66, 0x6d, 0x0b,
0x96, 0x69, 0xc6, 0x70, 0x2f, 0xc4, 0xcf, 0x04, 0xbf, 0x1a, 0x16, 0x85, 0x64, 0x47, 0xf4, 0x4d,
0x12, 0x10, 0xe0, 0xee, 0xe1, 0x2e, 0x49, 0x52, 0x7d, 0x9f, 0x7a, 0x49, 0x42, 0x67, 0x5d, 0x60,
0x69, 0xe1, 0x1e, 0x68, 0x17, 0x96, 0xa2, 0xdb, 0xe0, 0x7b, 0xd3, 0xb7, 0x27, 0x56, 0x30, 0x82,
0xd5, 0xd7, 0xea, 0x91, 0xcd, 0x70, 0x51, 0x13, 0x16, 0xb8, 0x2b, 0xa4, 0x36, 0xa3, 0xac, 0xf9,
0x4d, 0xb4, 0x0b, 0x67, 0xd9, 0x0c, 0xf6, 0xb8, 0x42, 0xb0, 0xc9, 0x97, 0x33, 0x4d, 0x5e, 0xd6,
0x35, 0xaa, 0x4f, 0x95, 0xd3, 0xea, 0x53, 0x13, 0x16, 0xb8, 0x8c, 0x53, 0x3b, 0x52, 0xd6, 0xfc,
0x26, 0xd9, 0xe6, 0x40, 0xda, 0xab, 0xf4, 0x5b, 0x00, 0x20, 0xa9, 0x17, 0x04, 0xeb, 0x39, 0xa5,
0xd6, 0xf6, 0x09, 0x94, 0x85, 0x84, 0x67, 0x2f, 0x12, 0x88, 0x3e, 0x71, 0xfb, 0x9e, 0x8f, 0xd9,
0x77, 0xf5, 0x1f, 0x14, 0xa8, 0x6d, 0x90, 0x29, 0x6d, 0xd9, 0x7d, 0xea, 0x8d, 0x6e, 0x40, 0xdd,
0xc1, 0x5d, 0xdb, 0x31, 0x3a, 0xd8, 0xf2, 0x1c, 0x13, 0xb3, 0x2c, 0xbd, 0xa0, 0x2d, 0x32, 0xe8,
0x23, 0x06, 0x24, 0x68, 0xc4, 0x64, 0xbb, 0x9e, 0x3e, 0x1c, 0x75, 0x7a, 0xc4, 0x34, 0xe4, 0x18,
0x9a, 0x80, 0x52, 0xcb, 0xf0, 0x26, 0xd4, 0x02, 0x34, 0xcf, 0xa6, 0xe3, 0x17, 0xb4, 0xaa, 0x80,
0xed, 0xdb, 0xe8, 0x3a, 0xd4, 0xe9, 0x9a, 0x76, 0x06, 0x76, 0xbf, 0x43, 0x32, 0x5a, 0xee, 0xa8,
0x6a, 0x06, 0x67, 0x8b, 0xec, 0x55, 0x14, 0xcb, 0x35, 0xbf, 0x87, 0xb9, 0xab, 0x12, 0x58, 0x7b,
0xe6, 0xf7, 0xb0, 0xfa, 0xf7, 0x0a, 0x2c, 0x6e, 0xe8, 0x9e, 0xbe, 0x63, 0x1b, 0x78, 0x7f, 0x46,
0xc7, 0x9e, 0xa1, 0xee, 0x7d, 0x11, 0x2a, 0x62, 0x06, 0x7c, 0x4a, 0x01, 0x00, 0x6d, 0x42, 0xdd,
0x0f, 0x2d, 0x3b, 0x2c, 0xe3, 0x2a, 0xa4, 0x06, 0x50, 0x21, 0xcf, 0xe9, 0x6a, 0x8b, 0x7e, 0x37,
0xda, 0x54, 0x37, 0xa1, 0x16, 0xfe, 0x4c, 0x46, 0xdd, 0x8b, 0x0b, 0x8a, 0x00, 0x10, 0x69, 0xdc,
0x19, 0x0f, 0xc9, 0x9e, 0x72, 0xc3, 0xe2, 0x37, 0xd5, 0xdf, 0x54, 0x60, 0x91, 0xbb, 0xfb, 0x3d,
0x71, 0x42, 0x44, 0xa7, 0xc6, 0x2a, 0x51, 0xf4, 0x37, 0xfa, 0x7a, 0xb4, 0xa8, 0x7b, 0x5d, 0x6a,
0x04, 0x28, 0x11, 0x1a, 0x64, 0x46, 0x7c, 0x7d, 0x96, 0x1c, 0xff, 0x0b, 0x22, 0x68, 0x7c, 0x6b,
0xa8, 0xa0, 0x35, 0x61, 0x41, 0x37, 0x0c, 0x07, 0xbb, 0x2e, 0xe7, 0xc3, 0x6f, 0x92, 0x2f, 0x47,
0xd8, 0x71, 0x7d, 0x91, 0xcf, 0x6b, 0x7e, 0x13, 0x7d, 0x03, 0xca, 0x22, 0x2a, 0x65, 0x25, 0xbc,
0xab, 0xe9, 0x7c, 0xf2, 0x8c, 0x54, 0xf4, 0x50, 0xff, 0x26, 0x07, 0x75, 0xbe, 0x60, 0x6b, 0xdc,
0x1f, 0x4f, 0x56, 0xbe, 0x35, 0xa8, 0xf5, 0x02, 0xdd, 0x9f, 0x54, 0x7b, 0x0a, 0x9b, 0x88, 0x48,
0x9f, 0x69, 0x0a, 0x18, 0x8d, 0x08, 0x0a, 0x73, 0x45, 0x04, 0xc5, 0xd3, 0x5a, 0xb0, 0x64, 0x8c,
0x58, 0x92, 0xc4, 0x88, 0xea, 0xaf, 0x41, 0x35, 0x44, 0x80, 0x5a, 0x68, 0x56, 0xb4, 0xe2, 0x2b,
0xe6, 0x37, 0xd1, 0x87, 0x41, 0x5c, 0xc4, 0x96, 0xea, 0xbc, 0x84, 0x97, 0x58, 0x48, 0xa4, 0xfe,
0x9d, 0x02, 0x25, 0x4e, 0xf9, 0x0a, 0x54, 0xb9, 0xd1, 0xa1, 0x31, 0x23, 0xa3, 0x0e, 0x1c, 0x44,
0x82, 0xc6, 0x97, 0x67, 0x75, 0xce, 0x43, 0x39, 0x66, 0x6f, 0x16, 0xb8, 0x5b, 0xf0, 0x3f, 0x85,
0x8c, 0x0c, 0xf9, 0x44, 0xec, 0x0b, 0x3a, 0x07, 0xc5, 0x81, 0xdd, 0x17, 0x27, 0x80, 0xac, 0xa1,
0x7e, 0xa9, 0xd0, 0x03, 0x1b, 0x0d, 0x77, 0xed, 0x23, 0xec, 0x9c, 0xcc, 0x5f, 0xec, 0x7c, 0x10,
0x12, 0xf3, 0x8c, 0xc9, 0x97, 0xe8, 0x80, 0x1e, 0x04, 0x9b, 0x90, 0x97, 0x55, 0x7a, 0xc2, 0x76,
0x87, 0x0b, 0x69, 0xb0, 0x19, 0xbf, 0xaf, 0xd0, 0x9a, 0x7d, 0x74, 0x2a, 0xb3, 0x46, 0x3b, 0x2f,
0x25, 0x91, 0x51, 0x7f, 0xae, 0x40, 0x2b, 0x28, 0x25, 0xb9, 0x6b, 0x27, 0xf3, 0x9e, 0x88, 0xbd,
0x9c, 0xfc, 0xea, 0xff, 0x8b, 0x23, 0x1b, 0xa2, 0xb4, 0x99, 0x32, 0x23, 0xff, 0xc0, 0xc6, 0xa2,
0x55, 0xe9, 0xe4, 0x84, 0xe6, 0x11, 0x99, 0x16, 0x94, 0x45, 0x3d, 0x83, 0xd5, 0xee, 0x45, 0x5b,
0xfd, 0x37, 0x05, 0xce, 0x3f, 0xc6, 0xde, 0x66, 0xb4, 0x14, 0xf2, 0xba, 0x17, 0x30, 0x7c, 0x9e,
0x70, 0xc0, 0xcf, 0x13, 0x0a, 0xb1, 0xf3, 0x04, 0x0e, 0xf7, 0x2f, 0x14, 0xac, 0xe1, 0x9e, 0xed,
0x30, 0xa5, 0x2c, 0x68, 0x21, 0x88, 0x3a, 0xa4, 0x22, 0x92, 0x98, 0xe0, 0xab, 0x5a, 0xd0, 0xdf,
0x56, 0xa0, 0xc9, 0x47, 0xa1, 0x63, 0x92, 0x94, 0x69, 0x80, 0x3d, 0x6c, 0x7c, 0xd5, 0xa5, 0x84,
0x3f, 0xca, 0x41, 0x23, 0xec, 0x95, 0xa9, 0x63, 0xfd, 0x08, 0x8a, 0xb4, 0x12, 0xc3, 0x39, 0x98,
0x6a, 0x3a, 0x18, 0x36, 0x31, 0xeb, 0x34, 0x14, 0xdf, 0x17, 0x01, 0x04, 0x6f, 0x06, 0xa1, 0x41,
0xfe, 0xf4, 0xa1, 0x01, 0x0f, 0x95, 0xec, 0x31, 0xa1, 0xcb, 0x4a, 0x98, 0x01, 0x00, 0x7d, 0x0c,
0x25, 0x76, 0x83, 0x87, 0x1f, 0xbf, 0xde, 0x88, 0x92, 0xe6, 0xb7, 0x7b, 0x42, 0xe7, 0x02, 0x14,
0xa0, 0xf1, 0x4e, 0x64, 0x8f, 0x46, 0x8e, 0xdd, 0xa7, 0x31, 0x04, 0xb1, 0xc8, 0x45, 0x4d, 0xb4,
0xd5, 0x5f, 0x86, 0x95, 0x20, 0x93, 0x65, 0x2c, 0xcd, 0x2a, 0xf0, 0xea, 0xbf, 0x28, 0x70, 0x76,
0xef, 0xc4, 0xea, 0xc6, 0x55, 0x67, 0x05, 0x4a, 0xa3, 0x81, 0x1e, 0x54, 0x5b, 0x79, 0x8b, 0x86,
0x90, 0x6c, 0x6c, 0x6c, 0x10, 0xff, 0xc3, 0xd6, 0xb3, 0x2a, 0x60, 0xfb, 0xf6, 0xd4, 0xb0, 0xe0,
0x86, 0x48, 0xbd, 0xb1, 0xc1, 0x3c, 0x1d, 0x2b, 0x61, 0x2d, 0x0a, 0x28, 0xf5, 0x74, 0x1f, 0x03,
0xd0, 0x60, 0xa0, 0x73, 0x9a, 0x00, 0x80, 0xf6, 0xd8, 0x22, 0xe6, 0xfe, 0x67, 0x39, 0x68, 0x86,
0x56, 0xe9, 0xab, 0x8e, 0x8d, 0x52, 0x32, 0xba, 0xfc, 0x4b, 0xca, 0xe8, 0x0a, 0xf3, 0xc7, 0x43,
0x45, 0x59, 0x3c, 0xf4, 0xef, 0x39, 0xa8, 0x07, 0xab, 0xb6, 0x3b, 0xd0, 0xad, 0x54, 0x49, 0xd8,
0x13, 0xb9, 0x40, 0x74, 0x9d, 0xde, 0x95, 0xe9, 0x50, 0xca, 0x46, 0x68, 0x31, 0x12, 0xe8, 0x12,
0xdd, 0x74, 0xc7, 0x63, 0x45, 0x33, 0x9e, 0x7f, 0x30, 0x65, 0x35, 0x87, 0x18, 0xdd, 0x06, 0xc4,
0x35, 0xac, 0x63, 0x5a, 0x1d, 0x17, 0x77, 0x6d, 0xcb, 0x60, 0xba, 0x57, 0xd4, 0x1a, 0xfc, 0x4b,
0xdb, 0xda, 0x63, 0x70, 0xf4, 0x11, 0x14, 0xbc, 0x93, 0x11, 0x33, 0xaa, 0x75, 0x69, 0xac, 0x10,
0xf0, 0xb5, 0x7f, 0x32, 0xc2, 0x1a, 0x45, 0xf7, 0x2d, 0xb2, 0xe7, 0xe8, 0x47, 0x3c, 0x6c, 0xe4,
0x16, 0x99, 0x41, 0x88, 0x35, 0xf1, 0xd7, 0x70, 0x81, 0x85, 0x57, 0xbc, 0xc9, 0x24, 0xdb, 0x57,
0xe8, 0x8e, 0xe7, 0x0d, 0x68, 0xd9, 0x8f, 0x4a, 0xb6, 0x0f, 0xdd, 0xf7, 0x06, 0xea, 0x3f, 0x13,
0xd3, 0x26, 0x46, 0xd6, 0xb0, 0x3b, 0x1e, 0xa4, 0x2b, 0xdc, 0xe4, 0xba, 0xca, 0x34, 0x5d, 0xfb,
0x26, 0x54, 0xf9, 0xb6, 0x9f, 0x42, 0x6c, 0x80, 0x75, 0xd9, 0x9a, 0x20, 0xc7, 0xc5, 0x97, 0x24,
0xc7, 0xa5, 0x19, 0x2a, 0x13, 0xf2, 0xc5, 0x57, 0x7f, 0xac, 0xc0, 0x1b, 0x09, 0xb3, 0x38, 0x71,
0x69, 0x27, 0xe7, 0x85, 0xdc, 0x5c, 0xc6, 0x49, 0x72, 0xe3, 0xff, 0x00, 0x4a, 0x0e, 0xa5, 0xce,
0x8f, 0x91, 0xae, 0x4d, 0x94, 0x2e, 0xc6, 0x88, 0xc6, 0xbb, 0xa8, 0x7f, 0xa0, 0xc0, 0x6a, 0x92,
0xd5, 0x39, 0x3c, 0xfa, 0x1a, 0x2c, 0x30, 0xd2, 0xbe, 0x12, 0xde, 0x9c, 0xac, 0x84, 0xc1, 0xe2,
0x68, 0x7e, 0x47, 0x75, 0x0f, 0x56, 0x7c, 0xc7, 0x1f, 0x2c, 0xfd, 0x36, 0xf6, 0xf4, 0x09, 0x59,
0xd1, 0x15, 0xa8, 0xb2, 0xf0, 0x9a, 0x65, 0x1b, 0xac, 0x9e, 0x00, 0xcf, 0x44, 0x19, 0x4e, 0xfd,
0x2f, 0x05, 0xce, 0x51, 0xcf, 0x19, 0x3f, 0xb7, 0xc9, 0x72, 0xa6, 0xa7, 0x8a, 0x72, 0xc5, 0x8e,
0x3e, 0xe4, 0x17, 0x88, 0x2a, 0x5a, 0x04, 0x86, 0xda, 0xc9, 0x2a, 0x9d, 0x34, 0x7b, 0x0e, 0x0e,
0x81, 0x49, 0xa6, 0x4e, 0xcf, 0x80, 0xe3, 0xe5, 0xb9, 0xc0, 0x63, 0x17, 0x66, 0xf0, 0xd8, 0xea,
0x16, 0xbc, 0x11, 0x9b, 0xe9, 0x1c, 0x3b, 0xaa, 0xfe, 0xb9, 0x42, 0xb6, 0x23, 0x72, 0x11, 0x6b,
0xf6, 0xa8, 0xf6, 0x92, 0x38, 0x30, 0xea, 0x98, 0x46, 0xdc, 0x88, 0x18, 0xe8, 0x13, 0xa8, 0x58,
0xf8, 0xb8, 0x13, 0x0e, 0x84, 0x32, 0x84, 0xfc, 0x65, 0x0b, 0x1f, 0xd3, 0x5f, 0xea, 0x0e, 0xac,
0x26, 0x58, 0x9d, 0x67, 0xee, 0x7f, 0xab, 0xc0, 0xf9, 0x0d, 0xc7, 0x1e, 0x7d, 0x66, 0x3a, 0xde,
0x58, 0x1f, 0x44, 0x8f, 0xd7, 0x5f, 0x4d, 0xd9, 0xeb, 0xd3, 0x50, 0x48, 0xcc, 0xe4, 0xe7, 0xb6,
0x44, 0x83, 0x92, 0x4c, 0xf1, 0x49, 0x87, 0x02, 0xe8, 0xff, 0xcc, 0xcb, 0x98, 0xe7, 0x78, 0x53,
0x02, 0x8f, 0x2c, 0xd9, 0x87, 0xb4, 0x4a, 0x9e, 0x9f, 0xb5, 0x4a, 0x9e, 0x62, 0xde, 0x0b, 0x2f,
0xc9, 0xbc, 0x9f, 0xba, 0x6c, 0xf3, 0x29, 0x44, 0x4f, 0x30, 0xa8, 0xfb, 0x9d, 0xe9, 0xe8, 0x63,
0x0d, 0x20, 0xa8, 0xe6, 0xf3, 0x7b, 0xb4, 0x59, 0xc8, 0x84, 0x7a, 0x91, 0xdd, 0x12, 0xae, 0x94,
0xbb, 0xf2, 0x50, 0x7d, 0xf9, 0xdb, 0xd0, 0x92, 0x49, 0xe9, 0x3c, 0x92, 0xff, 0xb3, 0x1c, 0x40,
0x5b, 0x5c, 0xbd, 0x9e, 0xcd, 0x17, 0x5c, 0x83, 0x50, 0xb8, 0x11, 0xe8, 0x7b, 0x58, 0x8a, 0x0c,
0xa2, 0x12, 0x22, 0x61, 0x25, 0x38, 0x89, 0x24, 0xd6, 0xa0, 0x74, 0x42, 0x5a, 0xc3, 0x84, 0x22,
0x6e, 0x7e, 0x2f, 0x40, 0xc5, 0xb1, 0x8f, 0x3b, 0x44, 0xcd, 0x0c, 0xff, 0x6e, 0xb9, 0x63, 0x1f,
0x13, 0xe5, 0x33, 0xd0, 0x2a, 0x2c, 0x78, 0xba, 0x7b, 0x48, 0xe8, 0x97, 0x42, 0x37, 0x3c, 0x0c,
0x74, 0x0e, 0x8a, 0x3d, 0x73, 0x80, 0xd9, 0x85, 0x82, 0x8a, 0xc6, 0x1a, 0xe8, 0x6b, 0xfe, 0x3d,
0xb8, 0x72, 0xe6, 0x5b, 0x3c, 0xec, 0x2a, 0xdc, 0x97, 0x0a, 0x2c, 0x05, 0xab, 0x46, 0x0d, 0x10,
0xb1, 0x69, 0xd4, 0x9e, 0xad, 0xdb, 0x06, 0x33, 0x15, 0xf5, 0x14, 0x8f, 0xc0, 0x3a, 0x32, 0xab,
0x15, 0x74, 0x99, 0x94, 0x23, 0x93, 0x79, 0x91, 0x49, 0x9b, 0x86, 0x7f, 0xab, 0xa5, 0xe4, 0xd8,
0xc7, 0x6d, 0x43, 0xac, 0x06, 0xbb, 0x38, 0xce, 0x32, 0x42, 0xb2, 0x1a, 0xeb, 0xf4, 0xee, 0xf8,
0x35, 0x58, 0xc4, 0x8e, 0x63, 0x3b, 0x9d, 0x21, 0x76, 0x5d, 0xbd, 0x8f, 0x79, 0x00, 0x5e, 0xa3,
0xc0, 0x6d, 0x06, 0x53, 0x7f, 0x54, 0x80, 0x7a, 0x30, 0x15, 0xff, 0x0c, 0xdd, 0x34, 0xfc, 0x33,
0x74, 0x93, 0x6c, 0x1d, 0x38, 0xcc, 0x14, 0x8a, 0xcd, 0x5d, 0xcb, 0x35, 0x15, 0xad, 0xc2, 0xa1,
0x6d, 0x83, 0xb8, 0x65, 0xa2, 0x64, 0x96, 0x6d, 0xe0, 0x60, 0x73, 0xc1, 0x07, 0xf1, 0xbd, 0x8d,
0xc8, 0x48, 0x21, 0x83, 0x8c, 0x14, 0x33, 0xc8, 0x48, 0x49, 0x22, 0x23, 0x2b, 0x50, 0x7a, 0x36,
0xee, 0x1e, 0x62, 0x8f, 0x47, 0x6c, 0xbc, 0x15, 0x95, 0x9d, 0x72, 0x4c, 0x76, 0x84, 0x88, 0x54,
0xc2, 0x22, 0x72, 0x01, 0x2a, 0xec, 0x30, 0xb7, 0xe3, 0xb9, 0xf4, 0x64, 0x2a, 0xaf, 0x95, 0x19,
0x60, 0xdf, 0x45, 0xf7, 0xfd, 0x70, 0xae, 0x2a, 0x53, 0x76, 0x6a, 0x75, 0x62, 0x52, 0xe2, 0x07,
0x73, 0x6f, 0xc3, 0x52, 0x68, 0x39, 0xa8, 0x8f, 0xa8, 0x51, 0x56, 0x43, 0xe1, 0x3c, 0x75, 0x13,
0x37, 0xa0, 0x1e, 0x2c, 0x09, 0xc5, 0x5b, 0x64, 0x59, 0x94, 0x80, 0x52, 0x34, 0x21, 0xc9, 0xf5,
0xd3, 0x49, 0x32, 0x3a, 0x0f, 0x65, 0x9e, 0xfe, 0xb8, 0xcd, 0xa5, 0x48, 0xa5, 0x42, 0xfd, 0x2e,
0xa0, 0x80, 0xfb, 0xf9, 0xa2, 0xc5, 0x98, 0x78, 0xe4, 0xe2, 0xe2, 0xa1, 0xfe, 0x44, 0x81, 0xe5,
0xf0, 0x60, 0xb3, 0x3a, 0xde, 0x4f, 0xa0, 0xca, 0xce, 0x06, 0x3b, 0x44, 0xf1, 0x79, 0x05, 0xe8,
0xd2, 0xc4, 0x7d, 0xd1, 0x20, 0x78, 0x7a, 0x42, 0xc4, 0xeb, 0xd8, 0x76, 0x0e, 0x4d, 0xab, 0xdf,
0x21, 0x9c, 0xf9, 0xea, 0x56, 0xe3, 0xc0, 0x1d, 0x02, 0x53, 0x7f, 0xa0, 0xc0, 0xe5, 0x27, 0x23,
0x43, 0xf7, 0x70, 0x28, 0x02, 0x99, 0xf7, 0x42, 0xe3, 0x47, 0xfe, 0x8d, 0xc2, 0x5c, 0xb6, 0xf3,
0x2d, 0x86, 0xad, 0xfe, 0xa5, 0xe0, 0x25, 0x71, 0x4f, 0x7a, 0x76, 0x5e, 0x5a, 0x50, 0x3e, 0xe2,
0xe4, 0xfc, 0xa7, 0x34, 0x7e, 0x3b, 0x72, 0x86, 0x9a, 0x3f, 0xfd, 0x19, 0xaa, 0xba, 0x0d, 0xe7,
0x35, 0xec, 0x62, 0xcb, 0x88, 0xcc, 0x66, 0xe6, 0x6a, 0xd2, 0x08, 0x5a, 0x32, 0x72, 0xf3, 0x08,
0x2b, 0x8b, 0x5d, 0x3b, 0x0e, 0x21, 0xeb, 0x71, 0x53, 0x4c, 0x42, 0x26, 0x3a, 0x8e, 0xa7, 0xfe,
0x45, 0x0e, 0x56, 0x1f, 0x1a, 0x06, 0xb7, 0xe2, 0x3c, 0x1a, 0x7b, 0x55, 0x81, 0x72, 0x3c, 0x90,
0xcc, 0x27, 0x03, 0xc9, 0x97, 0x65, 0x59, 0xb9, 0x8f, 0xb1, 0xc6, 0x43, 0xdf, 0x77, 0x3a, 0xec,
0x72, 0xd1, 0x03, 0x7e, 0xa8, 0x46, 0x12, 0x7a, 0xea, 0x3f, 0xa7, 0xc7, 0x57, 0x65, 0xbf, 0x2a,
0xa6, 0x8e, 0xa0, 0x99, 0x5c, 0xac, 0x39, 0x4d, 0x89, 0xbf, 0x22, 0x23, 0x9b, 0x55, 0x57, 0x6b,
0x24, 0x84, 0xa2, 0xa0, 0x5d, 0xdb, 0x55, 0xff, 0x3b, 0x07, 0xcd, 0x3d, 0xfd, 0x08, 0xff, 0xdf,
0xd9, 0xa0, 0xcf, 0xe1, 0x9c, 0xab, 0x1f, 0xe1, 0x4e, 0x28, 0x31, 0xee, 0x38, 0xf8, 0x39, 0x0f,
0x41, 0xdf, 0x91, 0x59, 0x12, 0xe9, 0x1d, 0x1c, 0x6d, 0xd9, 0x8d, 0xc0, 0x35, 0xfc, 0x1c, 0xbd,
0x05, 0x4b, 0xe1, 0x4b, 0x5e, 0x84, 0xb5, 0x32, 0x5d, 0xf2, 0xc5, 0xd0, 0x1d, 0xae, 0xb6, 0xa1,
0x3e, 0x87, 0x8b, 0x4f, 0x2c, 0x17, 0x7b, 0xed, 0xe0, 0x1e, 0xd2, 0x9c, 0x29, 0xe4, 0x15, 0xa8,
0x06, 0x0b, 0x9f, 0x78, 0x43, 0x61, 0xb8, 0xaa, 0x0d, 0xad, 0x6d, 0xdd, 0x39, 0xf4, 0xeb, 0xc8,
0x1b, 0xec, 0xbe, 0xc8, 0x2b, 0x1c, 0xb0, 0x27, 0xae, 0x4f, 0x69, 0xb8, 0x87, 0x1d, 0x6c, 0x75,
0xf1, 0x96, 0xdd, 0x3d, 0x0c, 0x5d, 0x2b, 0x56, 0xc2, 0xd7, 0x8a, 0x67, 0xbd, 0xa6, 0xac, 0xfe,
0x34, 0x07, 0x2b, 0x0f, 0x07, 0x1e, 0x76, 0x82, 0xcc, 0xff, 0x34, 0x45, 0x8c, 0xa0, 0xaa, 0x90,
0x9b, 0xe5, 0x1c, 0x20, 0x7e, 0x43, 0x3e, 0x9f, 0xbc, 0x21, 0x2f, 0xab, 0x81, 0x14, 0x66, 0xac,
0x81, 0x3c, 0x04, 0x18, 0x39, 0xf6, 0x08, 0x3b, 0x9e, 0x89, 0xfd, 0xf4, 0x2d, 0x43, 0xf8, 0x12,
0xea, 0xa4, 0x7e, 0x0e, 0x8d, 0xc7, 0xdd, 0x75, 0xdb, 0xea, 0x99, 0xce, 0xd0, 0x5f, 0xa8, 0x84,
0xd2, 0x29, 0x19, 0x94, 0x2e, 0x97, 0x50, 0x3a, 0xd5, 0x84, 0xe5, 0x10, 0xed, 0x39, 0x0d, 0x57,
0xbf, 0xdb, 0xe9, 0x99, 0x96, 0x49, 0xef, 0x63, 0xe5, 0x68, 0xf8, 0x09, 0xfd, 0xee, 0x26, 0x87,
0xdc, 0xfa, 0x44, 0xdc, 0x64, 0xdd, 0x3f, 0x19, 0x61, 0xb4, 0x00, 0xf9, 0x1d, 0x7c, 0xdc, 0x38,
0x83, 0x00, 0x4a, 0x3b, 0xb6, 0x33, 0xd4, 0x07, 0x0d, 0x05, 0x55, 0x61, 0x81, 0x1f, 0xcc, 0x35,
0x72, 0x68, 0x11, 0x2a, 0xeb, 0xfe, 0x01, 0x46, 0x23, 0x7f, 0xeb, 0x8f, 0x15, 0x58, 0x4e, 0x1c,
0x1d, 0xa1, 0x3a, 0xc0, 0x13, 0xab, 0xcb, 0xcf, 0xd4, 0x1a, 0x67, 0x50, 0x0d, 0xca, 0xfe, 0x09,
0x1b, 0xa3, 0xb7, 0x6f, 0x53, 0xec, 0x46, 0x0e, 0x35, 0xa0, 0xc6, 0x3a, 0x8e, 0xbb, 0x5d, 0xec,
0xba, 0x8d, 0xbc, 0x80, 0x6c, 0xea, 0xe6, 0x60, 0xec, 0xe0, 0x46, 0x81, 0x8c, 0xb9, 0x6f, 0xf3,
0xbb, 0xfc, 0x8d, 0x22, 0x42, 0x50, 0xf7, 0x2f, 0xf6, 0xf3, 0x4e, 0xa5, 0x10, 0xcc, 0xef, 0xb6,
0x70, 0xeb, 0x69, 0xb8, 0xc8, 0x4f, 0xa7, 0xb7, 0x0a, 0x67, 0x9f, 0x58, 0x06, 0xee, 0x99, 0x16,
0x36, 0x82, 0x4f, 0x8d, 0x33, 0xe8, 0x2c, 0x2c, 0x6d, 0x63, 0xa7, 0x8f, 0x43, 0xc0, 0x1c, 0x5a,
0x86, 0xc5, 0x6d, 0xf3, 0x45, 0x08, 0x94, 0x57, 0x0b, 0x65, 0xa5, 0xa1, 0xdc, 0xfb, 0xc7, 0xcb,
0x50, 0x21, 0xb2, 0xb5, 0x6e, 0xdb, 0x8e, 0x81, 0x06, 0x80, 0xe8, 0xd3, 0x97, 0xe1, 0xc8, 0xb6,
0xc4, 0x6b, 0x42, 0x74, 0x27, 0xba, 0x3d, 0xbc, 0x91, 0x44, 0xe4, 0xb2, 0xd3, 0xba, 0x2e, 0xc5,
0x8f, 0x21, 0xab, 0x67, 0xd0, 0x90, 0x8e, 0xb6, 0x6f, 0x0e, 0xf1, 0xbe, 0xd9, 0x3d, 0xf4, 0x03,
0xa4, 0xf7, 0x53, 0xc2, 0xa1, 0x24, 0xaa, 0x3f, 0xde, 0x35, 0xe9, 0x78, 0xec, 0x6d, 0x92, 0x2f,
0x73, 0xea, 0x19, 0xf4, 0x1c, 0xce, 0x3d, 0xc6, 0xa1, 0x58, 0xd3, 0x1f, 0xf0, 0x5e, 0xfa, 0x80,
0x09, 0xe4, 0x53, 0x0e, 0xb9, 0x05, 0x45, 0x2a, 0x6e, 0x48, 0x16, 0x8e, 0x86, 0xff, 0x14, 0xa0,
0x75, 0x35, 0x1d, 0x41, 0x50, 0xfb, 0x2e, 0x2c, 0xc5, 0x9e, 0x0b, 0x23, 0x99, 0x73, 0x92, 0x3f,
0xfc, 0x6e, 0xdd, 0xca, 0x82, 0x2a, 0xc6, 0xea, 0x43, 0x3d, 0xfa, 0x64, 0x06, 0xdd, 0xcc, 0xf0,
0x3e, 0x91, 0x8d, 0xf4, 0x4e, 0xe6, 0x97, 0x8c, 0x54, 0x08, 0x1a, 0xf1, 0xe7, 0xab, 0xe8, 0xd6,
0x44, 0x02, 0x51, 0x61, 0x7b, 0x37, 0x13, 0xae, 0x18, 0xee, 0x84, 0x0a, 0x41, 0xe2, 0x51, 0x5c,
0x5c, 0xc6, 0x7d, 0x32, 0x69, 0xaf, 0xf5, 0x5a, 0x77, 0x33, 0xe3, 0x87, 0x67, 0x1a, 0x7f, 0x86,
0x28, 0x9d, 0x69, 0xca, 0x2b, 0x4a, 0xe9, 0x4c, 0xd3, 0xde, 0x35, 0xaa, 0x67, 0xd0, 0x6f, 0xb0,
0x8b, 0x40, 0xb2, 0x77, 0x6c, 0xe8, 0x03, 0x39, 0xf7, 0x13, 0x1e, 0xe0, 0xb5, 0xee, 0x9d, 0xa6,
0x8b, 0x60, 0xe2, 0xfb, 0xf4, 0x06, 0x8f, 0xe4, 0x25, 0x58, 0x5c, 0xcd, 0x7d, 0x7a, 0xe9, 0x8f,
0xdc, 0x5a, 0x1f, 0x9c, 0xa2, 0x87, 0x60, 0xc0, 0x8e, 0x3f, 0x47, 0xf6, 0xb5, 0xfe, 0xee, 0x54,
0x21, 0x9d, 0x4d, 0xe5, 0xbf, 0x03, 0x4b, 0xb1, 0xe8, 0x10, 0x65, 0x8f, 0x20, 0x5b, 0x93, 0x3c,
0x21, 0xb3, 0x00, 0xb1, 0x0b, 0x51, 0x28, 0x45, 0xd9, 0x24, 0x97, 0xa6, 0x5a, 0xb7, 0xb2, 0xa0,
0x8a, 0x89, 0xb8, 0xd4, 0x3a, 0xc7, 0xae, 0xb1, 0xa0, 0xdb, 0x72, 0x1a, 0xf2, 0xeb, 0x3c, 0xad,
0xf7, 0x32, 0x62, 0x8b, 0x41, 0x8f, 0xe0, 0xac, 0xe4, 0x36, 0x12, 0x7a, 0x6f, 0xe2, 0x66, 0xc5,
0xaf, 0x61, 0xb5, 0xee, 0x64, 0x45, 0x17, 0xe3, 0xfe, 0x3a, 0xa0, 0xbd, 0x03, 0xfb, 0x98, 0x06,
0x2a, 0xfd, 0xb1, 0xa3, 0xb3, 0xd8, 0x2a, 0xcd, 0x15, 0x25, 0x51, 0x53, 0x64, 0x74, 0x62, 0x0f,
0x31, 0x78, 0x07, 0xe0, 0x31, 0xf6, 0xb6, 0xb1, 0xe7, 0x10, 0xc5, 0x78, 0x2b, 0xcd, 0xdb, 0x72,
0x04, 0x7f, 0xa8, 0xb7, 0xa7, 0xe2, 0x85, 0x3c, 0x5f, 0x63, 0x5b, 0xb7, 0xc6, 0xfa, 0x20, 0xf4,
0x9c, 0xe2, 0xb6, 0xb4, 0x7b, 0x1c, 0x2d, 0x65, 0x23, 0x53, 0xb1, 0xc5, 0x90, 0xc7, 0x22, 0x92,
0x08, 0x1d, 0x60, 0x4e, 0x8e, 0x24, 0x92, 0xb7, 0x63, 0xe2, 0x56, 0x76, 0x02, 0xbe, 0x18, 0xf8,
0x0b, 0x85, 0x5e, 0x68, 0x8b, 0x21, 0x3c, 0x35, 0xbd, 0x83, 0xdd, 0x81, 0x6e, 0xb9, 0x59, 0x58,
0xa0, 0x88, 0xa7, 0x60, 0x81, 0xe3, 0x0b, 0x16, 0x0c, 0x58, 0x8c, 0x9c, 0x2b, 0x22, 0xd9, 0xfb,
0x03, 0xd9, 0x19, 0x6b, 0xeb, 0xe6, 0x74, 0x44, 0x31, 0xca, 0x01, 0x2c, 0xfa, 0xaa, 0xc4, 0x16,
0xf7, 0x9d, 0x34, 0x4e, 0x03, 0x9c, 0x14, 0x4b, 0x20, 0x47, 0x0d, 0x5b, 0x82, 0xe4, 0xb1, 0x09,
0xca, 0x76, 0xdc, 0x36, 0xc9, 0x12, 0xa4, 0x9f, 0xc5, 0x30, 0x53, 0x17, 0x3b, 0xa2, 0x94, 0xdb,
0x51, 0xe9, 0x89, 0xab, 0xd4, 0xd4, 0xa5, 0x9c, 0x78, 0xaa, 0x67, 0xd0, 0x53, 0x28, 0xf1, 0x3f,
0xd7, 0xb9, 0x3e, 0xb9, 0xd4, 0xc9, 0xa9, 0xdf, 0x98, 0x82, 0x25, 0x08, 0x1f, 0xc2, 0x6a, 0x4a,
0xa1, 0x53, 0xea, 0x82, 0x27, 0x17, 0x45, 0xa7, 0x39, 0x07, 0x31, 0x58, 0xa2, 0x92, 0x39, 0x61,
0xb0, 0xb4, 0xaa, 0xe7, 0xb4, 0xc1, 0x74, 0x40, 0xc9, 0x17, 0xd3, 0x52, 0x99, 0x48, 0x7d, 0x58,
0x9d, 0x61, 0x88, 0xe4, 0xa3, 0x67, 0xe9, 0x10, 0xa9, 0x6f, 0xa3, 0xa7, 0x0d, 0xd1, 0x81, 0xe5,
0x44, 0xa9, 0x0b, 0xbd, 0x9b, 0xe2, 0xae, 0x65, 0x05, 0xb1, 0x69, 0x03, 0xf4, 0xe1, 0x0d, 0x69,
0x59, 0x47, 0x1a, 0x7e, 0x4c, 0x2a, 0x00, 0x4d, 0x1b, 0xa8, 0x0b, 0x67, 0x25, 0xc5, 0x1c, 0xa9,
0xe3, 0x4c, 0x2f, 0xfa, 0x4c, 0x1b, 0xa4, 0x07, 0xad, 0x35, 0xc7, 0xd6, 0x8d, 0xae, 0xee, 0x7a,
0xb4, 0xc0, 0x42, 0x52, 0x4f, 0x3f, 0xfe, 0x93, 0xe7, 0x22, 0xd2, 0x32, 0xcc, 0xb4, 0x71, 0x9e,
0x41, 0x95, 0x0a, 0x24, 0xfb, 0x07, 0x0f, 0x24, 0xf7, 0x74, 0x21, 0x8c, 0x14, 0xf3, 0x29, 0x43,
0x14, 0xaa, 0xf9, 0xab, 0x50, 0x11, 0x85, 0x09, 0x24, 0xbb, 0x0b, 0x14, 0x2f, 0x89, 0xb4, 0xae,
0x4f, 0x46, 0xf2, 0x29, 0xdf, 0xfb, 0xb2, 0x02, 0x65, 0xff, 0x71, 0xc9, 0x57, 0x9c, 0x51, 0xbf,
0x86, 0x14, 0xf7, 0x3b, 0xb0, 0x14, 0x7b, 0xe8, 0x2d, 0x15, 0x04, 0xf9, 0x63, 0xf0, 0x69, 0x82,
0xf0, 0x94, 0xff, 0x07, 0x9d, 0x08, 0x3f, 0xdf, 0x4e, 0x4b, 0x93, 0xe3, 0x91, 0xe7, 0x14, 0xc2,
0xff, 0xbb, 0xe3, 0xbd, 0x1d, 0x80, 0x50, 0xa4, 0x37, 0xf9, 0x1a, 0x25, 0x09, 0x5e, 0xa6, 0xad,
0xd6, 0x50, 0x1a, 0xcc, 0xbd, 0x93, 0xe5, 0xc6, 0x5a, 0xba, 0x3b, 0x4e, 0x0f, 0xe1, 0x9e, 0x40,
0x2d, 0x7c, 0xc1, 0x19, 0x49, 0xff, 0xf1, 0x2c, 0x79, 0x03, 0x7a, 0xda, 0x2c, 0xb6, 0x4f, 0xe9,
0xe5, 0xa7, 0x90, 0x73, 0x89, 0x7b, 0x8a, 0x9f, 0x9c, 0xa5, 0xb8, 0xa7, 0x94, 0xf3, 0x3a, 0x69,
0x54, 0x94, 0x7e, 0x1c, 0xc7, 0x6a, 0x08, 0xf1, 0xe3, 0x20, 0x69, 0x0d, 0x21, 0xe5, 0x80, 0x4d,
0x5a, 0x43, 0x48, 0x3b, 0x5f, 0x52, 0xcf, 0xac, 0x7d, 0xf8, 0xf9, 0x07, 0x7d, 0xd3, 0x3b, 0x18,
0x3f, 0x23, 0xb3, 0xbf, 0xcb, 0xba, 0xbe, 0x67, 0xda, 0xfc, 0xd7, 0x5d, 0x5f, 0xdc, 0xef, 0x52,
0x6a, 0x77, 0x09, 0xb5, 0xd1, 0xb3, 0x67, 0x25, 0xda, 0xfa, 0xf0, 0x7f, 0x02, 0x00, 0x00, 0xff,
0xff, 0x66, 0xa5, 0x64, 0x4d, 0x61, 0x53, 0x00, 0x00,
// 4637 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7c, 0xcd, 0x8f, 0x1c, 0x49,
0x56, 0xb8, 0xb3, 0xbe, 0xba, 0xea, 0x55, 0x75, 0x75, 0x75, 0xd8, 0xd3, 0x5d, 0x2e, 0x7f, 0x4e,
0xda, 0x9e, 0xf1, 0x78, 0x3c, 0xf6, 0x8c, 0xe7, 0x37, 0x5a, 0xff, 0xd6, 0x3b, 0xb3, 0xb8, 0xbb,
0xdd, 0x9e, 0x86, 0xee, 0xde, 0xde, 0xec, 0xf6, 0x18, 0xcd, 0x22, 0x95, 0xd2, 0x95, 0xd1, 0xd5,
0xb9, 0x9d, 0x95, 0x59, 0xce, 0xcc, 0xea, 0x76, 0x2f, 0x87, 0x1d, 0x81, 0x40, 0x5a, 0x84, 0x58,
0x84, 0x84, 0x16, 0x0e, 0x48, 0x88, 0xd3, 0xb2, 0x68, 0x11, 0xd2, 0xc2, 0x85, 0x0b, 0x07, 0x2e,
0x23, 0x38, 0xac, 0x10, 0x12, 0x47, 0x90, 0x38, 0x00, 0x77, 0xfe, 0x01, 0x14, 0x1f, 0x19, 0xf9,
0x15, 0x59, 0x95, 0x5d, 0x65, 0x8f, 0x57, 0x70, 0xab, 0x88, 0x7c, 0xf1, 0xe2, 0xc5, 0x8b, 0xf7,
0x1d, 0x11, 0x05, 0x2d, 0x43, 0xf7, 0xf5, 0x6e, 0xcf, 0x71, 0x5c, 0xe3, 0xce, 0xd0, 0x75, 0x7c,
0x07, 0x2d, 0x0e, 0x4c, 0xeb, 0x68, 0xe4, 0xb1, 0xd6, 0x1d, 0xf2, 0xb9, 0xd3, 0xe8, 0x39, 0x83,
0x81, 0x63, 0xb3, 0xae, 0x4e, 0xd3, 0xb4, 0x7d, 0xec, 0xda, 0xba, 0xc5, 0xdb, 0x8d, 0xe8, 0x80,
0x4e, 0xc3, 0xeb, 0x1d, 0xe0, 0x81, 0xce, 0x5a, 0xea, 0x1c, 0x94, 0x1f, 0x0d, 0x86, 0xfe, 0x89,
0xfa, 0xd7, 0x0a, 0x34, 0xd6, 0xad, 0x91, 0x77, 0xa0, 0xe1, 0xe7, 0x23, 0xec, 0xf9, 0xe8, 0x7d,
0x28, 0x3d, 0xd3, 0x3d, 0xdc, 0x56, 0xae, 0x2a, 0x37, 0xeb, 0xf7, 0x2e, 0xde, 0x89, 0xcd, 0xca,
0xe7, 0xdb, 0xf2, 0xfa, 0x2b, 0xba, 0x87, 0x35, 0x0a, 0x89, 0x10, 0x94, 0x8c, 0x67, 0x1b, 0x6b,
0xed, 0xc2, 0x55, 0xe5, 0x66, 0x51, 0xa3, 0xbf, 0xd1, 0x65, 0x00, 0x0f, 0xf7, 0x07, 0xd8, 0xf6,
0x37, 0xd6, 0xbc, 0x76, 0xf1, 0x6a, 0xf1, 0x66, 0x51, 0x8b, 0xf4, 0x20, 0x15, 0x1a, 0x3d, 0xc7,
0xb2, 0x70, 0xcf, 0x37, 0x1d, 0x7b, 0x63, 0xad, 0x5d, 0xa2, 0x63, 0x63, 0x7d, 0xa8, 0x03, 0x55,
0xd3, 0xdb, 0x18, 0x0c, 0x1d, 0xd7, 0x6f, 0x97, 0xaf, 0x2a, 0x37, 0xab, 0x9a, 0x68, 0xab, 0xff,
0xa1, 0xc0, 0x3c, 0x27, 0xdb, 0x1b, 0x3a, 0xb6, 0x87, 0xd1, 0x87, 0x50, 0xf1, 0x7c, 0xdd, 0x1f,
0x79, 0x9c, 0xf2, 0x0b, 0x52, 0xca, 0x77, 0x29, 0x88, 0xc6, 0x41, 0xa5, 0xa4, 0x27, 0x49, 0x2b,
0x4a, 0x48, 0x8b, 0x2f, 0xaf, 0x94, 0x5a, 0xde, 0x4d, 0x58, 0xd8, 0x27, 0xd4, 0xed, 0x86, 0x40,
0x65, 0x0a, 0x94, 0xec, 0x26, 0x98, 0x7c, 0x73, 0x80, 0xbf, 0xb5, 0xbf, 0x8b, 0x75, 0xab, 0x5d,
0xa1, 0x73, 0x45, 0x7a, 0xd4, 0x7f, 0x52, 0xa0, 0x25, 0xc0, 0x83, 0x3d, 0x3a, 0x07, 0xe5, 0x9e,
0x33, 0xb2, 0x7d, 0xba, 0xd4, 0x79, 0x8d, 0x35, 0xd0, 0x9b, 0xd0, 0xe8, 0x1d, 0xe8, 0xb6, 0x8d,
0xad, 0xae, 0xad, 0x0f, 0x30, 0x5d, 0x54, 0x4d, 0xab, 0xf3, 0xbe, 0x6d, 0x7d, 0x80, 0x73, 0xad,
0xed, 0x2a, 0xd4, 0x87, 0xba, 0xeb, 0x9b, 0xb1, 0x9d, 0x89, 0x76, 0x8d, 0xdb, 0x18, 0x32, 0x83,
0x49, 0x7f, 0xed, 0xe9, 0xde, 0xe1, 0xc6, 0x1a, 0x5f, 0x51, 0xac, 0x4f, 0xfd, 0x53, 0x05, 0x96,
0x1e, 0x7a, 0x9e, 0xd9, 0xb7, 0x53, 0x2b, 0x5b, 0x82, 0x8a, 0xed, 0x18, 0x78, 0x63, 0x8d, 0x2e,
0xad, 0xa8, 0xf1, 0x16, 0xba, 0x00, 0xb5, 0x21, 0xc6, 0x6e, 0xd7, 0x75, 0xac, 0x60, 0x61, 0x55,
0xd2, 0xa1, 0x39, 0x16, 0x46, 0xdf, 0x86, 0x45, 0x2f, 0x81, 0x88, 0xc9, 0x5c, 0xfd, 0xde, 0xb5,
0x3b, 0x29, 0xad, 0xb9, 0x93, 0x9c, 0x54, 0x4b, 0x8f, 0x56, 0xbf, 0x28, 0xc0, 0x59, 0x01, 0xc7,
0x68, 0x25, 0xbf, 0x09, 0xe7, 0x3d, 0xdc, 0x17, 0xe4, 0xb1, 0x46, 0x1e, 0xce, 0x8b, 0x2d, 0x2b,
0x46, 0xb7, 0x2c, 0x8f, 0x1a, 0x24, 0xf6, 0xa3, 0x9c, 0xde, 0x8f, 0x2b, 0x50, 0xc7, 0x2f, 0x86,
0xa6, 0x8b, 0xbb, 0x44, 0x70, 0x28, 0xcb, 0x4b, 0x1a, 0xb0, 0xae, 0x3d, 0x73, 0x10, 0xd5, 0x8d,
0xb9, 0xdc, 0xba, 0xa1, 0xfe, 0x99, 0x02, 0xcb, 0xa9, 0x5d, 0xe2, 0xca, 0xa6, 0x41, 0x8b, 0xae,
0x3c, 0xe4, 0x0c, 0x51, 0x3b, 0xc2, 0xf0, 0xb7, 0xc6, 0x31, 0x3c, 0x04, 0xd7, 0x52, 0xe3, 0x23,
0x44, 0x16, 0xf2, 0x13, 0x79, 0x08, 0xcb, 0x8f, 0xb1, 0xcf, 0x27, 0x20, 0xdf, 0xb0, 0x37, 0xbd,
0x21, 0x8b, 0x6b, 0x75, 0x21, 0xa9, 0xd5, 0xea, 0x5f, 0x15, 0x84, 0x2e, 0xd2, 0xa9, 0x36, 0xec,
0x7d, 0x07, 0x5d, 0x84, 0x9a, 0x00, 0xe1, 0x52, 0x11, 0x76, 0xa0, 0xaf, 0x41, 0x99, 0x50, 0xca,
0x44, 0xa2, 0x79, 0xef, 0x4d, 0xf9, 0x9a, 0x22, 0x38, 0x35, 0x06, 0x8f, 0x36, 0xa0, 0xe9, 0xf9,
0xba, 0xeb, 0x77, 0x87, 0x8e, 0x47, 0xf7, 0x99, 0x0a, 0x4e, 0xfd, 0x9e, 0x1a, 0xc7, 0x20, 0x4c,
0xfe, 0x96, 0xd7, 0xdf, 0xe1, 0x90, 0xda, 0x3c, 0x1d, 0x19, 0x34, 0xd1, 0x23, 0x68, 0x60, 0xdb,
0x08, 0x11, 0x95, 0x72, 0x23, 0xaa, 0x63, 0xdb, 0x10, 0x68, 0xc2, 0xfd, 0x29, 0xe7, 0xdf, 0x9f,
0xdf, 0x55, 0xa0, 0x9d, 0xde, 0xa0, 0x59, 0x4c, 0xf6, 0x03, 0x36, 0x08, 0xb3, 0x0d, 0x1a, 0xab,
0xe1, 0x62, 0x93, 0x34, 0x3e, 0x44, 0xfd, 0x43, 0x05, 0xde, 0x08, 0xc9, 0xa1, 0x9f, 0x5e, 0x95,
0xb4, 0xa0, 0x5b, 0xd0, 0x32, 0xed, 0x9e, 0x35, 0x32, 0xf0, 0x13, 0xfb, 0x53, 0xac, 0x5b, 0xfe,
0xc1, 0x09, 0xdd, 0xc3, 0xaa, 0x96, 0xea, 0x57, 0xff, 0xb5, 0x00, 0x4b, 0x49, 0xba, 0x66, 0x61,
0xd2, 0xff, 0x83, 0xb2, 0x69, 0xef, 0x3b, 0x01, 0x8f, 0x2e, 0x8f, 0x51, 0x4a, 0x32, 0x17, 0x03,
0x46, 0x0e, 0xa0, 0xc0, 0x8c, 0xf5, 0x0e, 0x70, 0xef, 0x70, 0xe8, 0x98, 0xd4, 0x60, 0x11, 0x14,
0xbf, 0x24, 0x41, 0x21, 0xa7, 0xf8, 0xce, 0x2a, 0xc3, 0xb1, 0x2a, 0x50, 0x3c, 0xb2, 0x7d, 0xf7,
0x44, 0x5b, 0xec, 0x25, 0xfb, 0x3b, 0x07, 0xb0, 0x24, 0x07, 0x46, 0x2d, 0x28, 0x1e, 0xe2, 0x13,
0xba, 0xe4, 0x9a, 0x46, 0x7e, 0xa2, 0xfb, 0x50, 0x3e, 0xd2, 0xad, 0x11, 0xe6, 0xd6, 0x21, 0x8f,
0xf8, 0xb2, 0x01, 0x5f, 0x2f, 0xdc, 0x57, 0xd4, 0x1f, 0x29, 0xb0, 0xbc, 0x69, 0x7a, 0x01, 0xbd,
0xde, 0x2f, 0xce, 0xd6, 0xff, 0x96, 0x02, 0xed, 0x34, 0x65, 0x5f, 0xf9, 0xe6, 0xab, 0x03, 0xb8,
0xf0, 0x18, 0xfb, 0x1b, 0xb6, 0x87, 0x5d, 0x7f, 0xc5, 0xb4, 0x2d, 0xa7, 0xbf, 0xa3, 0xfb, 0x07,
0x33, 0x58, 0xd3, 0x98, 0x61, 0x2c, 0x24, 0x0c, 0xa3, 0xfa, 0x63, 0x05, 0x2e, 0xca, 0xe7, 0xe3,
0x4b, 0xef, 0x40, 0x75, 0xdf, 0xc4, 0x96, 0x41, 0x38, 0xac, 0x50, 0x0e, 0x8b, 0x36, 0xb1, 0xaa,
0x43, 0x02, 0xcc, 0x57, 0xf8, 0x66, 0x86, 0x2c, 0xec, 0xfa, 0xae, 0x69, 0xf7, 0x09, 0x73, 0x35,
0x06, 0x1f, 0xe1, 0x67, 0x31, 0xbf, 0x0d, 0xfb, 0x1d, 0x05, 0x2e, 0x3f, 0xc6, 0xfe, 0xaa, 0x70,
0xca, 0xe4, 0xbb, 0xe9, 0xf9, 0x66, 0xcf, 0x7b, 0xb9, 0x41, 0x73, 0x8e, 0xe8, 0x4c, 0xfd, 0xa1,
0x02, 0x57, 0x32, 0x89, 0xe1, 0xac, 0xe3, 0x4e, 0x27, 0x70, 0xc9, 0x72, 0xa7, 0xf3, 0x2b, 0xf8,
0xe4, 0x33, 0xa2, 0x1e, 0x3b, 0xba, 0xe9, 0x32, 0xa7, 0x33, 0xa5, 0x0b, 0xfe, 0xa9, 0x02, 0x97,
0x1e, 0x63, 0x7f, 0x27, 0x08, 0x48, 0x5e, 0x23, 0x77, 0x08, 0x4c, 0x24, 0x30, 0x0a, 0x22, 0xf3,
0x58, 0x9f, 0xfa, 0x7b, 0x6c, 0x3b, 0xa5, 0xf4, 0xbe, 0x16, 0x06, 0x5e, 0xa6, 0x9a, 0x10, 0x51,
0x49, 0x6e, 0x13, 0x39, 0xfb, 0xd4, 0x3f, 0x51, 0xe0, 0xfc, 0xc3, 0xde, 0xf3, 0x91, 0xe9, 0x62,
0x0e, 0xb4, 0xe9, 0xf4, 0x0e, 0xa7, 0x67, 0x6e, 0x18, 0x63, 0x17, 0x62, 0x31, 0xf6, 0xa4, 0x9c,
0x6d, 0x09, 0x2a, 0x3e, 0x0b, 0xea, 0x59, 0x98, 0xca, 0x5b, 0x94, 0x3e, 0x0d, 0x5b, 0x58, 0xf7,
0x7e, 0x31, 0xe9, 0xfb, 0x61, 0x09, 0x1a, 0x9f, 0x71, 0xe7, 0x43, 0x43, 0xb6, 0xa4, 0x24, 0x29,
0xf2, 0xa8, 0x3b, 0x12, 0xbe, 0xcb, 0x22, 0xfa, 0xc7, 0x30, 0xef, 0x61, 0x7c, 0x38, 0x4d, 0x80,
0xd6, 0x20, 0x03, 0x45, 0x60, 0xb5, 0x09, 0x8b, 0x23, 0x9b, 0xe6, 0x85, 0xd8, 0x08, 0xbc, 0x00,
0x95, 0xdc, 0xc9, 0xb6, 0x3b, 0x3d, 0x10, 0x7d, 0xca, 0x53, 0xcf, 0x08, 0xae, 0x72, 0x2e, 0x5c,
0xc9, 0x61, 0x68, 0x03, 0x5a, 0x86, 0xeb, 0x0c, 0x87, 0xd8, 0xe8, 0x7a, 0x01, 0xaa, 0x4a, 0x3e,
0x54, 0x7c, 0x9c, 0x40, 0xf5, 0x3e, 0x9c, 0x4d, 0x52, 0xba, 0x61, 0x90, 0x6c, 0x84, 0xec, 0xa1,
0xec, 0x13, 0xba, 0x0d, 0x8b, 0x69, 0xf8, 0x2a, 0x85, 0x4f, 0x7f, 0x40, 0xef, 0x01, 0x4a, 0x90,
0x4a, 0xc0, 0x6b, 0x0c, 0x3c, 0x4e, 0xcc, 0x86, 0xe1, 0xa9, 0x3f, 0x50, 0x60, 0xe9, 0xa9, 0xee,
0xf7, 0x0e, 0xd6, 0x06, 0x5c, 0xd7, 0x66, 0xb0, 0x55, 0x1f, 0x43, 0xed, 0x88, 0xcb, 0x45, 0xe0,
0x90, 0xae, 0x48, 0xf8, 0x13, 0x95, 0x40, 0x2d, 0x1c, 0x41, 0x92, 0xe1, 0x73, 0xeb, 0x91, 0xa2,
0xc0, 0x6b, 0xb0, 0x9a, 0x13, 0xaa, 0x19, 0xea, 0x0b, 0x00, 0x4e, 0xdc, 0x96, 0xd7, 0x9f, 0x82,
0xae, 0xfb, 0x30, 0xc7, 0xb1, 0x71, 0xb3, 0x38, 0x49, 0x7e, 0x02, 0x70, 0xf5, 0x27, 0x15, 0xa8,
0x47, 0x3e, 0xa0, 0x26, 0x14, 0x84, 0xbe, 0x16, 0x24, 0xab, 0x2b, 0x4c, 0xce, 0x9f, 0x8b, 0xe9,
0xfc, 0xf9, 0x06, 0x34, 0x4d, 0x1a, 0x87, 0x74, 0xf9, 0xae, 0x50, 0x03, 0x52, 0xd3, 0xe6, 0x59,
0x2f, 0x17, 0x11, 0x74, 0x19, 0xea, 0xf6, 0x68, 0xd0, 0x75, 0xf6, 0xbb, 0xae, 0x73, 0xec, 0xf1,
0x44, 0xbc, 0x66, 0x8f, 0x06, 0xdf, 0xda, 0xd7, 0x9c, 0x63, 0x2f, 0xcc, 0xf5, 0x2a, 0xa7, 0xcc,
0xf5, 0x2e, 0x43, 0x7d, 0xa0, 0xbf, 0x20, 0x58, 0xbb, 0xf6, 0x68, 0x40, 0x73, 0xf4, 0xa2, 0x56,
0x1b, 0xe8, 0x2f, 0x34, 0xe7, 0x78, 0x7b, 0x34, 0x40, 0x37, 0xa1, 0x65, 0xe9, 0x9e, 0xdf, 0x8d,
0x26, 0xf9, 0x55, 0x9a, 0xe4, 0x37, 0x49, 0xff, 0xa3, 0x30, 0xd1, 0x4f, 0x67, 0x8d, 0xb5, 0x19,
0xb2, 0x46, 0x63, 0x60, 0x85, 0x88, 0x20, 0x7f, 0xd6, 0x68, 0x0c, 0x2c, 0x81, 0xe6, 0x3e, 0xcc,
0x3d, 0xa3, 0xd1, 0x9d, 0xd7, 0xae, 0x67, 0xda, 0x8e, 0x75, 0x12, 0xd8, 0xb1, 0x20, 0x50, 0x0b,
0xc0, 0xd1, 0x37, 0xa0, 0x46, 0x9d, 0x2a, 0x1d, 0xdb, 0xc8, 0x35, 0x36, 0x1c, 0x40, 0x46, 0x1b,
0xd8, 0xf2, 0x75, 0x3a, 0x7a, 0x3e, 0xdf, 0x68, 0x31, 0x80, 0xd8, 0xab, 0x9e, 0x8b, 0x75, 0x1f,
0x1b, 0x2b, 0x27, 0xab, 0xce, 0x60, 0xa8, 0x53, 0x61, 0x6a, 0x37, 0x69, 0x0c, 0x2f, 0xfb, 0x84,
0xde, 0x82, 0x66, 0x4f, 0xb4, 0xd6, 0x5d, 0x67, 0xd0, 0x5e, 0xa0, 0x7a, 0x94, 0xe8, 0x45, 0x97,
0x00, 0x02, 0x4b, 0xa5, 0xfb, 0xed, 0x16, 0xdd, 0xc5, 0x1a, 0xef, 0x79, 0x48, 0x6b, 0x78, 0xa6,
0xd7, 0x65, 0xd5, 0x32, 0xd3, 0xee, 0xb7, 0x17, 0xe9, 0x8c, 0xf5, 0xa0, 0xbc, 0x66, 0xda, 0x7d,
0xb4, 0x0c, 0x73, 0xa6, 0xd7, 0xdd, 0xd7, 0x0f, 0x71, 0x1b, 0xd1, 0xaf, 0x15, 0xd3, 0x5b, 0xd7,
0x0f, 0xb1, 0xfa, 0x7d, 0x38, 0x17, 0x4a, 0x57, 0x64, 0x27, 0xd3, 0x42, 0xa1, 0x4c, 0x2b, 0x14,
0xe3, 0x63, 0xfa, 0x9f, 0x97, 0x60, 0x69, 0x57, 0x3f, 0xc2, 0xaf, 0x3e, 0x7d, 0xc8, 0x65, 0xd6,
0x36, 0x61, 0x91, 0x66, 0x0c, 0xf7, 0x22, 0xf4, 0x8c, 0xf1, 0xab, 0x51, 0x51, 0x48, 0x0f, 0x44,
0xdf, 0x24, 0x01, 0x01, 0xee, 0x1d, 0xee, 0x90, 0x24, 0x35, 0xf0, 0xa9, 0x97, 0x24, 0x78, 0x56,
0x05, 0x94, 0x16, 0x1d, 0x81, 0x76, 0x60, 0x21, 0xbe, 0x0d, 0x81, 0x37, 0x7d, 0x7b, 0x6c, 0x05,
0x23, 0xe4, 0xbe, 0xd6, 0x8c, 0x6d, 0x86, 0x87, 0xda, 0x30, 0xc7, 0x5d, 0x21, 0xb5, 0x19, 0x55,
0x2d, 0x68, 0xa2, 0x1d, 0x38, 0xcb, 0x56, 0xb0, 0xcb, 0x15, 0x82, 0x2d, 0xbe, 0x9a, 0x6b, 0xf1,
0xb2, 0xa1, 0x71, 0x7d, 0xaa, 0x9d, 0x56, 0x9f, 0xda, 0x30, 0xc7, 0x65, 0x9c, 0xda, 0x91, 0xaa,
0x16, 0x34, 0xc9, 0x36, 0x87, 0xd2, 0x5e, 0xa7, 0xdf, 0xc2, 0x0e, 0x92, 0x7a, 0x41, 0xc8, 0xcf,
0x09, 0xb5, 0xb6, 0x4f, 0xa0, 0x2a, 0x24, 0x3c, 0x7f, 0x91, 0x40, 0x8c, 0x49, 0xda, 0xf7, 0x62,
0xc2, 0xbe, 0xab, 0xff, 0xa8, 0x40, 0x63, 0x8d, 0x2c, 0x69, 0xd3, 0xe9, 0x53, 0x6f, 0x74, 0x03,
0x9a, 0x2e, 0xee, 0x39, 0xae, 0xd1, 0xc5, 0xb6, 0xef, 0x9a, 0x98, 0x65, 0xe9, 0x25, 0x6d, 0x9e,
0xf5, 0x3e, 0x62, 0x9d, 0x04, 0x8c, 0x98, 0x6c, 0xcf, 0xd7, 0x07, 0xc3, 0xee, 0x3e, 0x31, 0x0d,
0x05, 0x06, 0x26, 0x7a, 0xa9, 0x65, 0x78, 0x13, 0x1a, 0x21, 0x98, 0xef, 0xd0, 0xf9, 0x4b, 0x5a,
0x5d, 0xf4, 0xed, 0x39, 0xe8, 0x3a, 0x34, 0x29, 0x4f, 0xbb, 0x96, 0xd3, 0xef, 0x92, 0x8c, 0x96,
0x3b, 0xaa, 0x86, 0xc1, 0xc9, 0x22, 0x7b, 0x15, 0x87, 0xf2, 0xcc, 0xef, 0x61, 0xee, 0xaa, 0x04,
0xd4, 0xae, 0xf9, 0x3d, 0xac, 0xfe, 0x83, 0x02, 0xf3, 0x6b, 0xba, 0xaf, 0x6f, 0x3b, 0x06, 0xde,
0x9b, 0xd2, 0xb1, 0xe7, 0xa8, 0x7b, 0x5f, 0x84, 0x9a, 0x58, 0x01, 0x5f, 0x52, 0xd8, 0x81, 0xd6,
0xa1, 0x19, 0x84, 0x96, 0x5d, 0x96, 0x71, 0x95, 0x32, 0x03, 0xa8, 0x88, 0xe7, 0xf4, 0xb4, 0xf9,
0x60, 0x18, 0x6d, 0xaa, 0xeb, 0xd0, 0x88, 0x7e, 0x26, 0xb3, 0xee, 0x26, 0x05, 0x45, 0x74, 0x10,
0x69, 0xdc, 0x1e, 0x0d, 0xc8, 0x9e, 0x72, 0xc3, 0x12, 0x34, 0xd5, 0xdf, 0x54, 0x60, 0x9e, 0xbb,
0xfb, 0x5d, 0x71, 0x42, 0x44, 0x97, 0xc6, 0x2a, 0x51, 0xf4, 0x37, 0xfa, 0x7a, 0xbc, 0xa8, 0x7b,
0x5d, 0x6a, 0x04, 0x28, 0x12, 0x1a, 0x64, 0xc6, 0x7c, 0x7d, 0x9e, 0x1c, 0xff, 0x0b, 0x22, 0x68,
0x7c, 0x6b, 0xa8, 0xa0, 0xb5, 0x61, 0x4e, 0x37, 0x0c, 0x17, 0x7b, 0x1e, 0xa7, 0x23, 0x68, 0x92,
0x2f, 0x47, 0xd8, 0xf5, 0x02, 0x91, 0x2f, 0x6a, 0x41, 0x13, 0x7d, 0x03, 0xaa, 0x22, 0x2a, 0x65,
0x25, 0xbc, 0xab, 0xd9, 0x74, 0xf2, 0x8c, 0x54, 0x8c, 0x50, 0xff, 0xa6, 0x00, 0x4d, 0xce, 0xb0,
0x15, 0xee, 0x8f, 0xc7, 0x2b, 0xdf, 0x0a, 0x34, 0xf6, 0x43, 0xdd, 0x1f, 0x57, 0x7b, 0x8a, 0x9a,
0x88, 0xd8, 0x98, 0x49, 0x0a, 0x18, 0x8f, 0x08, 0x4a, 0x33, 0x45, 0x04, 0xe5, 0xd3, 0x5a, 0xb0,
0x74, 0x8c, 0x58, 0x91, 0xc4, 0x88, 0xea, 0xaf, 0x41, 0x3d, 0x82, 0x80, 0x5a, 0x68, 0x56, 0xb4,
0xe2, 0x1c, 0x0b, 0x9a, 0xe8, 0xc3, 0x30, 0x2e, 0x62, 0xac, 0x3a, 0x2f, 0xa1, 0x25, 0x11, 0x12,
0xa9, 0x7f, 0xa7, 0x40, 0x85, 0x63, 0xbe, 0x02, 0x75, 0x6e, 0x74, 0x68, 0xcc, 0xc8, 0xb0, 0x03,
0xef, 0x22, 0x41, 0xe3, 0xcb, 0xb3, 0x3a, 0xe7, 0xa1, 0x9a, 0xb0, 0x37, 0x73, 0xdc, 0x2d, 0x04,
0x9f, 0x22, 0x46, 0x86, 0x7c, 0x22, 0xf6, 0x05, 0x9d, 0x83, 0xb2, 0xe5, 0xf4, 0xc5, 0x09, 0x20,
0x6b, 0xa8, 0x5f, 0x2a, 0xf4, 0xc0, 0x46, 0xc3, 0x3d, 0xe7, 0x08, 0xbb, 0x27, 0xb3, 0x17, 0x3b,
0x1f, 0x44, 0xc4, 0x3c, 0x67, 0xf2, 0x25, 0x06, 0xa0, 0x07, 0xe1, 0x26, 0x14, 0x65, 0x95, 0x9e,
0xa8, 0xdd, 0xe1, 0x42, 0x1a, 0x6e, 0xc6, 0xef, 0x2b, 0xb4, 0x66, 0x1f, 0x5f, 0xca, 0xb4, 0xd1,
0xce, 0x4b, 0x49, 0x64, 0xd4, 0x9f, 0x2b, 0xd0, 0x09, 0x4b, 0x49, 0xde, 0xca, 0xc9, 0xac, 0x27,
0x62, 0x2f, 0x27, 0xbf, 0xfa, 0xff, 0xe2, 0xc8, 0x86, 0x28, 0x6d, 0xae, 0xcc, 0x28, 0x38, 0xb0,
0xb1, 0x69, 0x55, 0x3a, 0xbd, 0xa0, 0x59, 0x44, 0xa6, 0x03, 0x55, 0x51, 0xcf, 0x60, 0xb5, 0x7b,
0xd1, 0x56, 0xff, 0x4d, 0x81, 0xf3, 0x8f, 0xb1, 0xbf, 0x1e, 0x2f, 0x85, 0xbc, 0x6e, 0x06, 0x46,
0xcf, 0x13, 0x0e, 0xf8, 0x79, 0x42, 0x29, 0x71, 0x9e, 0xc0, 0xfb, 0x83, 0x0b, 0x05, 0x2b, 0x78,
0xdf, 0x71, 0x99, 0x52, 0x96, 0xb4, 0x48, 0x8f, 0x3a, 0xa0, 0x22, 0x92, 0x5a, 0xe0, 0xab, 0x62,
0xe8, 0x6f, 0x2b, 0xd0, 0xe6, 0xb3, 0xd0, 0x39, 0x49, 0xca, 0x64, 0x61, 0x1f, 0x1b, 0x5f, 0x75,
0x29, 0xe1, 0x8f, 0x0a, 0xd0, 0x8a, 0x7a, 0x65, 0xea, 0x58, 0x3f, 0x82, 0x32, 0xad, 0xc4, 0x70,
0x0a, 0x26, 0x9a, 0x0e, 0x06, 0x4d, 0xcc, 0x3a, 0x0d, 0xc5, 0xf7, 0x44, 0x00, 0xc1, 0x9b, 0x61,
0x68, 0x50, 0x3c, 0x7d, 0x68, 0xc0, 0x43, 0x25, 0x67, 0x44, 0xf0, 0xb2, 0x12, 0x66, 0xd8, 0x81,
0x3e, 0x86, 0x0a, 0xbb, 0xc1, 0xc3, 0x8f, 0x5f, 0x6f, 0xc4, 0x51, 0xf3, 0xdb, 0x3d, 0x91, 0x73,
0x01, 0xda, 0xa1, 0xf1, 0x41, 0x64, 0x8f, 0x86, 0xae, 0xd3, 0xa7, 0x31, 0x04, 0xb1, 0xc8, 0x65,
0x4d, 0xb4, 0xd5, 0x5f, 0x86, 0xa5, 0x30, 0x93, 0x65, 0x24, 0x4d, 0x2b, 0xf0, 0xea, 0xbf, 0x28,
0x70, 0x76, 0xf7, 0xc4, 0xee, 0x25, 0x55, 0x67, 0x09, 0x2a, 0x43, 0x4b, 0x0f, 0xab, 0xad, 0xbc,
0x45, 0x43, 0x48, 0x36, 0x37, 0x36, 0x88, 0xff, 0x61, 0xfc, 0xac, 0x8b, 0xbe, 0x3d, 0x67, 0x62,
0x58, 0x70, 0x43, 0xa4, 0xde, 0xd8, 0x60, 0x9e, 0x8e, 0x95, 0xb0, 0xe6, 0x45, 0x2f, 0xf5, 0x74,
0x1f, 0x03, 0xd0, 0x60, 0xa0, 0x7b, 0x9a, 0x00, 0x80, 0x8e, 0xd8, 0x24, 0xe6, 0xfe, 0x67, 0x05,
0x68, 0x47, 0xb8, 0xf4, 0x55, 0xc7, 0x46, 0x19, 0x19, 0x5d, 0xf1, 0x25, 0x65, 0x74, 0xa5, 0xd9,
0xe3, 0xa1, 0xb2, 0x2c, 0x1e, 0xfa, 0xf7, 0x02, 0x34, 0x43, 0xae, 0xed, 0x58, 0xba, 0x9d, 0x29,
0x09, 0xbb, 0x22, 0x17, 0x88, 0xf3, 0xe9, 0x5d, 0x99, 0x0e, 0x65, 0x6c, 0x84, 0x96, 0x40, 0x81,
0x2e, 0xd1, 0x4d, 0x77, 0x7d, 0x56, 0x34, 0xe3, 0xf9, 0x07, 0x53, 0x56, 0x73, 0x80, 0xd1, 0x6d,
0x40, 0x5c, 0xc3, 0xba, 0xa6, 0xdd, 0xf5, 0x70, 0xcf, 0xb1, 0x0d, 0xa6, 0x7b, 0x65, 0xad, 0xc5,
0xbf, 0x6c, 0xd8, 0xbb, 0xac, 0x1f, 0x7d, 0x04, 0x25, 0xff, 0x64, 0xc8, 0x8c, 0x6a, 0x53, 0x1a,
0x2b, 0x84, 0x74, 0xed, 0x9d, 0x0c, 0xb1, 0x46, 0xc1, 0x03, 0x8b, 0xec, 0xbb, 0xfa, 0x11, 0x0f,
0x1b, 0xb9, 0x45, 0x66, 0x3d, 0xc4, 0x9a, 0x04, 0x3c, 0x9c, 0x63, 0xe1, 0x15, 0x6f, 0x32, 0xc9,
0x0e, 0x14, 0xba, 0xeb, 0xfb, 0x16, 0x2d, 0xfb, 0x51, 0xc9, 0x0e, 0x7a, 0xf7, 0x7c, 0x4b, 0xfd,
0x67, 0x62, 0xda, 0xc4, 0xcc, 0x1a, 0xf6, 0x46, 0x56, 0xb6, 0xc2, 0x8d, 0xaf, 0xab, 0x4c, 0xd2,
0xb5, 0x6f, 0x42, 0x9d, 0x6f, 0xfb, 0x29, 0xc4, 0x06, 0xd8, 0x90, 0xcd, 0x31, 0x72, 0x5c, 0x7e,
0x49, 0x72, 0x5c, 0x99, 0xa2, 0x32, 0x21, 0x67, 0xbe, 0xfa, 0x63, 0x05, 0xde, 0x48, 0x99, 0xc5,
0xb1, 0xac, 0x1d, 0x9f, 0x17, 0x72, 0x73, 0x99, 0x44, 0xc9, 0x8d, 0xff, 0x03, 0xa8, 0xb8, 0x14,
0x3b, 0x3f, 0x46, 0xba, 0x36, 0x56, 0xba, 0x18, 0x21, 0x1a, 0x1f, 0xa2, 0xfe, 0x81, 0x02, 0xcb,
0x69, 0x52, 0x67, 0xf0, 0xe8, 0x2b, 0x30, 0xc7, 0x50, 0x07, 0x4a, 0x78, 0x73, 0xbc, 0x12, 0x86,
0xcc, 0xd1, 0x82, 0x81, 0xea, 0x2e, 0x2c, 0x05, 0x8e, 0x3f, 0x64, 0xfd, 0x16, 0xf6, 0xf5, 0x31,
0x59, 0xd1, 0x15, 0xa8, 0xb3, 0xf0, 0x9a, 0x65, 0x1b, 0xac, 0x9e, 0x00, 0xcf, 0x44, 0x19, 0x4e,
0xfd, 0x2f, 0x05, 0xce, 0x51, 0xcf, 0x99, 0x3c, 0xb7, 0xc9, 0x73, 0xa6, 0xa7, 0x8a, 0x72, 0xc5,
0xb6, 0x3e, 0xe0, 0x17, 0x88, 0x6a, 0x5a, 0xac, 0x0f, 0x6d, 0xa4, 0xab, 0x74, 0xd2, 0xec, 0x39,
0x3c, 0x04, 0x26, 0x99, 0x3a, 0x3d, 0x03, 0x4e, 0x96, 0xe7, 0x42, 0x8f, 0x5d, 0x9a, 0xc2, 0x63,
0xab, 0x9b, 0xf0, 0x46, 0x62, 0xa5, 0x33, 0xec, 0xa8, 0xfa, 0xe7, 0x0a, 0xd9, 0x8e, 0xd8, 0x45,
0xac, 0xe9, 0xa3, 0xda, 0x4b, 0xe2, 0xc0, 0xa8, 0x6b, 0x1a, 0x49, 0x23, 0x62, 0xa0, 0x4f, 0xa0,
0x66, 0xe3, 0xe3, 0x6e, 0x34, 0x10, 0xca, 0x11, 0xf2, 0x57, 0x6d, 0x7c, 0x4c, 0x7f, 0xa9, 0xdb,
0xb0, 0x9c, 0x22, 0x75, 0x96, 0xb5, 0xff, 0xad, 0x02, 0xe7, 0xd7, 0x5c, 0x67, 0xf8, 0x99, 0xe9,
0xfa, 0x23, 0xdd, 0x8a, 0x1f, 0xaf, 0xbf, 0x9a, 0xb2, 0xd7, 0xa7, 0x91, 0x90, 0x98, 0xc9, 0xcf,
0x6d, 0x89, 0x06, 0xa5, 0x89, 0xe2, 0x8b, 0x8e, 0x04, 0xd0, 0xff, 0x59, 0x94, 0x11, 0xcf, 0xe1,
0x26, 0x04, 0x1e, 0x79, 0xb2, 0x0f, 0x69, 0x95, 0xbc, 0x38, 0x6d, 0x95, 0x3c, 0xc3, 0xbc, 0x97,
0x5e, 0x92, 0x79, 0x3f, 0x75, 0xd9, 0xe6, 0x53, 0x88, 0x9f, 0x60, 0x50, 0xf7, 0x3b, 0xd5, 0xd1,
0xc7, 0x0a, 0x40, 0x58, 0xcd, 0xe7, 0xf7, 0x68, 0xf3, 0xa0, 0x89, 0x8c, 0x22, 0xbb, 0x25, 0x5c,
0x29, 0x77, 0xe5, 0x91, 0xfa, 0xf2, 0xb7, 0xa1, 0x23, 0x93, 0xd2, 0x59, 0x24, 0xff, 0x67, 0x05,
0x80, 0x0d, 0x71, 0xf5, 0x7a, 0x3a, 0x5f, 0x70, 0x0d, 0x22, 0xe1, 0x46, 0xa8, 0xef, 0x51, 0x29,
0x32, 0x88, 0x4a, 0x88, 0x84, 0x95, 0xc0, 0xa4, 0x92, 0x58, 0x83, 0xe2, 0x89, 0x68, 0x0d, 0x13,
0x8a, 0xa4, 0xf9, 0xbd, 0x00, 0x35, 0xd7, 0x39, 0xee, 0x12, 0x35, 0x33, 0x82, 0xbb, 0xe5, 0xae,
0x73, 0x4c, 0x94, 0xcf, 0x40, 0xcb, 0x30, 0xe7, 0xeb, 0xde, 0x21, 0xc1, 0x5f, 0x89, 0xdc, 0xf0,
0x30, 0xd0, 0x39, 0x28, 0xef, 0x9b, 0x16, 0x66, 0x17, 0x0a, 0x6a, 0x1a, 0x6b, 0xa0, 0xaf, 0x05,
0xf7, 0xe0, 0xaa, 0xb9, 0x6f, 0xf1, 0xb0, 0xab, 0x70, 0x5f, 0x2a, 0xb0, 0x10, 0x72, 0x8d, 0x1a,
0x20, 0x62, 0xd3, 0xa8, 0x3d, 0x5b, 0x75, 0x0c, 0x66, 0x2a, 0x9a, 0x19, 0x1e, 0x81, 0x0d, 0x64,
0x56, 0x2b, 0x1c, 0x32, 0x2e, 0x47, 0x26, 0xeb, 0x22, 0x8b, 0x36, 0x8d, 0xe0, 0x56, 0x4b, 0xc5,
0x75, 0x8e, 0x37, 0x0c, 0xc1, 0x0d, 0x76, 0x71, 0x9c, 0x65, 0x84, 0x84, 0x1b, 0xab, 0xf4, 0xee,
0xf8, 0x35, 0x98, 0xc7, 0xae, 0xeb, 0xb8, 0xdd, 0x01, 0xf6, 0x3c, 0xbd, 0x8f, 0x79, 0x00, 0xde,
0xa0, 0x9d, 0x5b, 0xac, 0x4f, 0xfd, 0x51, 0x09, 0x9a, 0xe1, 0x52, 0x82, 0x33, 0x74, 0xd3, 0x08,
0xce, 0xd0, 0x4d, 0xb2, 0x75, 0xe0, 0x32, 0x53, 0x28, 0x36, 0x77, 0xa5, 0xd0, 0x56, 0xb4, 0x1a,
0xef, 0xdd, 0x30, 0x88, 0x5b, 0x26, 0x4a, 0x66, 0x3b, 0x06, 0x0e, 0x37, 0x17, 0x82, 0x2e, 0xbe,
0xb7, 0x31, 0x19, 0x29, 0xe5, 0x90, 0x91, 0x72, 0x0e, 0x19, 0xa9, 0x48, 0x64, 0x64, 0x09, 0x2a,
0xcf, 0x46, 0xbd, 0x43, 0xec, 0xf3, 0x88, 0x8d, 0xb7, 0xe2, 0xb2, 0x53, 0x4d, 0xc8, 0x8e, 0x10,
0x91, 0x5a, 0x54, 0x44, 0x2e, 0x40, 0x8d, 0x1d, 0xe6, 0x76, 0x7d, 0x8f, 0x9e, 0x4c, 0x15, 0xb5,
0x2a, 0xeb, 0xd8, 0xf3, 0xd0, 0xfd, 0x20, 0x9c, 0xab, 0xcb, 0x94, 0x9d, 0x5a, 0x9d, 0x84, 0x94,
0x04, 0xc1, 0xdc, 0xdb, 0xb0, 0x10, 0x61, 0x07, 0xf5, 0x11, 0x0d, 0x4a, 0x6a, 0x24, 0x9c, 0xa7,
0x6e, 0xe2, 0x06, 0x34, 0x43, 0x96, 0x50, 0xb8, 0x79, 0x96, 0x45, 0x89, 0x5e, 0x0a, 0x26, 0x24,
0xb9, 0x79, 0x3a, 0x49, 0x46, 0xe7, 0xa1, 0xca, 0xd3, 0x1f, 0xaf, 0xbd, 0x10, 0xab, 0x54, 0xa8,
0xdf, 0x05, 0x14, 0x52, 0x3f, 0x5b, 0xb4, 0x98, 0x10, 0x8f, 0x42, 0x52, 0x3c, 0xd4, 0x9f, 0x28,
0xb0, 0x18, 0x9d, 0x6c, 0x5a, 0xc7, 0xfb, 0x09, 0xd4, 0xd9, 0xd9, 0x60, 0x97, 0x28, 0x3e, 0xaf,
0x00, 0x5d, 0x1a, 0xbb, 0x2f, 0x1a, 0x84, 0x4f, 0x4f, 0x88, 0x78, 0x1d, 0x3b, 0xee, 0xa1, 0x69,
0xf7, 0xbb, 0x84, 0xb2, 0x40, 0xdd, 0x1a, 0xbc, 0x73, 0x9b, 0xf4, 0xa9, 0x3f, 0x50, 0xe0, 0xf2,
0x93, 0xa1, 0xa1, 0xfb, 0x38, 0x12, 0x81, 0xcc, 0x7a, 0xa1, 0xf1, 0xa3, 0xe0, 0x46, 0x61, 0x21,
0xdf, 0xf9, 0x16, 0x83, 0x56, 0xff, 0x52, 0xd0, 0x92, 0xba, 0x27, 0x3d, 0x3d, 0x2d, 0x1d, 0xa8,
0x1e, 0x71, 0x74, 0xc1, 0x53, 0x9a, 0xa0, 0x1d, 0x3b, 0x43, 0x2d, 0x9e, 0xfe, 0x0c, 0x55, 0xdd,
0x82, 0xf3, 0x1a, 0xf6, 0xb0, 0x6d, 0xc4, 0x56, 0x33, 0x75, 0x35, 0x69, 0x08, 0x1d, 0x19, 0xba,
0x59, 0x84, 0x95, 0xc5, 0xae, 0x5d, 0x97, 0xa0, 0xf5, 0xb9, 0x29, 0x26, 0x21, 0x13, 0x9d, 0xc7,
0x57, 0xff, 0xa2, 0x00, 0xcb, 0x0f, 0x0d, 0x83, 0x5b, 0x71, 0x1e, 0x8d, 0xbd, 0xaa, 0x40, 0x39,
0x19, 0x48, 0x16, 0xd3, 0x81, 0xe4, 0xcb, 0xb2, 0xac, 0xdc, 0xc7, 0xd8, 0xa3, 0x41, 0xe0, 0x3b,
0x5d, 0x76, 0xb9, 0xe8, 0x01, 0x3f, 0x54, 0x23, 0x09, 0x3d, 0xf5, 0x9f, 0x93, 0xe3, 0xab, 0x6a,
0x50, 0x15, 0x53, 0x87, 0xd0, 0x4e, 0x33, 0x6b, 0x46, 0x53, 0x12, 0x70, 0x64, 0xe8, 0xb0, 0xea,
0x6a, 0x83, 0x84, 0x50, 0xb4, 0x6b, 0xc7, 0xf1, 0xd4, 0xff, 0x2e, 0x40, 0x7b, 0x57, 0x3f, 0xc2,
0xff, 0x77, 0x36, 0xe8, 0x73, 0x38, 0xe7, 0xe9, 0x47, 0xb8, 0x1b, 0x49, 0x8c, 0xbb, 0x2e, 0x7e,
0xce, 0x43, 0xd0, 0x77, 0x64, 0x96, 0x44, 0x7a, 0x07, 0x47, 0x5b, 0xf4, 0x62, 0xfd, 0x1a, 0x7e,
0x8e, 0xde, 0x82, 0x85, 0xe8, 0x25, 0x2f, 0x42, 0x5a, 0x95, 0xb2, 0x7c, 0x3e, 0x72, 0x87, 0x6b,
0xc3, 0x50, 0x9f, 0xc3, 0xc5, 0x27, 0xb6, 0x87, 0xfd, 0x8d, 0xf0, 0x1e, 0xd2, 0x8c, 0x29, 0xe4,
0x15, 0xa8, 0x87, 0x8c, 0x4f, 0xbd, 0xa1, 0x30, 0x3c, 0xd5, 0x81, 0xce, 0x96, 0xee, 0x1e, 0x06,
0x75, 0xe4, 0x35, 0x76, 0x5f, 0xe4, 0x15, 0x4e, 0xb8, 0x2f, 0xae, 0x4f, 0x69, 0x78, 0x1f, 0xbb,
0xd8, 0xee, 0xe1, 0x4d, 0xa7, 0x77, 0x18, 0xb9, 0x56, 0xac, 0x44, 0xaf, 0x15, 0x4f, 0x7b, 0x4d,
0x59, 0xfd, 0x69, 0x01, 0x96, 0x1e, 0x5a, 0x3e, 0x76, 0xc3, 0xcc, 0xff, 0x34, 0x45, 0x8c, 0xb0,
0xaa, 0x50, 0x98, 0xe6, 0x1c, 0x20, 0x79, 0x43, 0xbe, 0x98, 0xbe, 0x21, 0x2f, 0xab, 0x81, 0x94,
0xa6, 0xac, 0x81, 0x3c, 0x04, 0x18, 0xba, 0xce, 0x10, 0xbb, 0xbe, 0x89, 0x83, 0xf4, 0x2d, 0x47,
0xf8, 0x12, 0x19, 0xa4, 0x7e, 0x0e, 0xad, 0xc7, 0xbd, 0x55, 0xc7, 0xde, 0x37, 0xdd, 0x41, 0xc0,
0xa8, 0x94, 0xd2, 0x29, 0x39, 0x94, 0xae, 0x90, 0x52, 0x3a, 0xd5, 0x84, 0xc5, 0x08, 0xee, 0x19,
0x0d, 0x57, 0xbf, 0xd7, 0xdd, 0x37, 0x6d, 0x93, 0xde, 0xc7, 0x2a, 0xd0, 0xf0, 0x13, 0xfa, 0xbd,
0x75, 0xde, 0x73, 0xeb, 0x13, 0x71, 0x93, 0x75, 0xef, 0x64, 0x88, 0xd1, 0x1c, 0x14, 0xb7, 0xf1,
0x71, 0xeb, 0x0c, 0x02, 0xa8, 0x6c, 0x3b, 0xee, 0x40, 0xb7, 0x5a, 0x0a, 0xaa, 0xc3, 0x1c, 0x3f,
0x98, 0x6b, 0x15, 0xd0, 0x3c, 0xd4, 0x56, 0x83, 0x03, 0x8c, 0x56, 0xf1, 0xd6, 0x1f, 0x2b, 0xb0,
0x98, 0x3a, 0x3a, 0x42, 0x4d, 0x80, 0x27, 0x76, 0x8f, 0x9f, 0xa9, 0xb5, 0xce, 0xa0, 0x06, 0x54,
0x83, 0x13, 0x36, 0x86, 0x6f, 0xcf, 0xa1, 0xd0, 0xad, 0x02, 0x6a, 0x41, 0x83, 0x0d, 0x1c, 0xf5,
0x7a, 0xd8, 0xf3, 0x5a, 0x45, 0xd1, 0xb3, 0xae, 0x9b, 0xd6, 0xc8, 0xc5, 0xad, 0x12, 0x99, 0x73,
0xcf, 0xe1, 0x77, 0xf9, 0x5b, 0x65, 0x84, 0xa0, 0x19, 0x5c, 0xec, 0xe7, 0x83, 0x2a, 0x91, 0xbe,
0x60, 0xd8, 0xdc, 0xad, 0xa7, 0xd1, 0x22, 0x3f, 0x5d, 0xde, 0x32, 0x9c, 0x7d, 0x62, 0x1b, 0x78,
0xdf, 0xb4, 0xb1, 0x11, 0x7e, 0x6a, 0x9d, 0x41, 0x67, 0x61, 0x61, 0x0b, 0xbb, 0x7d, 0x1c, 0xe9,
0x2c, 0xa0, 0x45, 0x98, 0xdf, 0x32, 0x5f, 0x44, 0xba, 0x8a, 0x6a, 0xa9, 0xaa, 0xb4, 0x94, 0x7b,
0x7f, 0x7f, 0x05, 0x6a, 0x44, 0xb6, 0x56, 0x1d, 0xc7, 0x35, 0x90, 0x05, 0x88, 0x3e, 0x7d, 0x19,
0x0c, 0x1d, 0x5b, 0xbc, 0x26, 0x44, 0x77, 0xe2, 0xdb, 0xc3, 0x1b, 0x69, 0x40, 0x2e, 0x3b, 0x9d,
0xeb, 0x52, 0xf8, 0x04, 0xb0, 0x7a, 0x06, 0x0d, 0xe8, 0x6c, 0x7b, 0xe6, 0x00, 0xef, 0x99, 0xbd,
0xc3, 0x20, 0x40, 0x7a, 0x3f, 0x23, 0x1c, 0x4a, 0x83, 0x06, 0xf3, 0x5d, 0x93, 0xce, 0xc7, 0xde,
0x26, 0x05, 0x32, 0xa7, 0x9e, 0x41, 0xcf, 0xe1, 0xdc, 0x63, 0x1c, 0x89, 0x35, 0x83, 0x09, 0xef,
0x65, 0x4f, 0x98, 0x02, 0x3e, 0xe5, 0x94, 0x9b, 0x50, 0xa6, 0xe2, 0x86, 0x64, 0xe1, 0x68, 0xf4,
0x4f, 0x01, 0x3a, 0x57, 0xb3, 0x01, 0x04, 0xb6, 0xef, 0xc2, 0x42, 0xe2, 0xb9, 0x30, 0x92, 0x39,
0x27, 0xf9, 0xc3, 0xef, 0xce, 0xad, 0x3c, 0xa0, 0x62, 0xae, 0x3e, 0x34, 0xe3, 0x4f, 0x66, 0xd0,
0xcd, 0x1c, 0xef, 0x13, 0xd9, 0x4c, 0xef, 0xe4, 0x7e, 0xc9, 0x48, 0x85, 0xa0, 0x95, 0x7c, 0xbe,
0x8a, 0x6e, 0x8d, 0x45, 0x10, 0x17, 0xb6, 0x77, 0x73, 0xc1, 0x8a, 0xe9, 0x4e, 0xa8, 0x10, 0xa4,
0x1e, 0xc5, 0x25, 0x65, 0x3c, 0x40, 0x93, 0xf5, 0x5a, 0xaf, 0x73, 0x37, 0x37, 0x7c, 0x74, 0xa5,
0xc9, 0x67, 0x88, 0xd2, 0x95, 0x66, 0xbc, 0xa2, 0x94, 0xae, 0x34, 0xeb, 0x5d, 0xa3, 0x7a, 0x06,
0xfd, 0x06, 0xbb, 0x08, 0x24, 0x7b, 0xc7, 0x86, 0x3e, 0x90, 0x53, 0x3f, 0xe6, 0x01, 0x5e, 0xe7,
0xde, 0x69, 0x86, 0x08, 0x22, 0xbe, 0x4f, 0x6f, 0xf0, 0x48, 0x5e, 0x82, 0x25, 0xd5, 0x3c, 0xc0,
0x97, 0xfd, 0xc8, 0xad, 0xf3, 0xc1, 0x29, 0x46, 0x08, 0x02, 0x9c, 0xe4, 0x73, 0xe4, 0x40, 0xeb,
0xef, 0x4e, 0x14, 0xd2, 0xe9, 0x54, 0xfe, 0x3b, 0xb0, 0x90, 0x88, 0x0e, 0x51, 0xfe, 0x08, 0xb2,
0x33, 0xce, 0x13, 0x32, 0x0b, 0x90, 0xb8, 0x10, 0x85, 0x32, 0x94, 0x4d, 0x72, 0x69, 0xaa, 0x73,
0x2b, 0x0f, 0xa8, 0x58, 0x88, 0x47, 0xad, 0x73, 0xe2, 0x1a, 0x0b, 0xba, 0x2d, 0xc7, 0x21, 0xbf,
0xce, 0xd3, 0x79, 0x2f, 0x27, 0xb4, 0x98, 0xf4, 0x08, 0xce, 0x4a, 0x6e, 0x23, 0xa1, 0xf7, 0xc6,
0x6e, 0x56, 0xf2, 0x1a, 0x56, 0xe7, 0x4e, 0x5e, 0xf0, 0x88, 0x6f, 0x68, 0x05, 0x74, 0x3d, 0xb4,
0x2c, 0xe6, 0xf9, 0x6f, 0x67, 0xb9, 0xbd, 0x18, 0x58, 0xc6, 0x52, 0x33, 0xa1, 0xc5, 0x94, 0xbf,
0x0e, 0x68, 0xf7, 0xc0, 0x39, 0xa6, 0xb1, 0x51, 0x7f, 0xe4, 0xea, 0x2c, 0x9c, 0xcb, 0xf2, 0x7e,
0x69, 0xd0, 0x0c, 0xb5, 0x18, 0x3b, 0x42, 0x4c, 0xde, 0x05, 0x78, 0x8c, 0xfd, 0x2d, 0xec, 0xbb,
0x44, 0x17, 0xdf, 0xca, 0xa2, 0x9d, 0x03, 0x04, 0x53, 0xbd, 0x3d, 0x11, 0x2e, 0xca, 0xd0, 0x2d,
0xdd, 0x1e, 0xe9, 0x56, 0xe4, 0x05, 0x87, 0x9c, 0xa1, 0x49, 0xb0, 0xf1, 0x0c, 0x4d, 0x43, 0x8b,
0x29, 0x8f, 0x45, 0xf0, 0x12, 0x39, 0x33, 0x1d, 0x1f, 0xbc, 0xa4, 0x2f, 0xe4, 0x24, 0x0d, 0xfb,
0x18, 0x78, 0x31, 0xf1, 0x17, 0x0a, 0xbd, 0x43, 0x97, 0x00, 0x78, 0x6a, 0xfa, 0x07, 0x3b, 0x96,
0x6e, 0x7b, 0x79, 0x48, 0xa0, 0x80, 0xa7, 0x20, 0x81, 0xc3, 0x0b, 0x12, 0x0c, 0x98, 0x8f, 0x1d,
0x65, 0x22, 0xd9, 0x93, 0x07, 0xd9, 0xb1, 0x6e, 0xe7, 0xe6, 0x64, 0x40, 0x31, 0xcb, 0x01, 0xcc,
0x07, 0x02, 0xcd, 0x98, 0xfb, 0xce, 0x58, 0xa1, 0x8f, 0xf1, 0xf5, 0x56, 0x1e, 0xd0, 0xa8, 0xf1,
0x49, 0x9f, 0xd4, 0xa0, 0x7c, 0x27, 0x7c, 0xe3, 0x8c, 0x4f, 0xf6, 0xf1, 0x0f, 0xb3, 0xae, 0x89,
0x53, 0x51, 0xb9, 0xe9, 0x96, 0x1e, 0xf2, 0x4a, 0xad, 0x6b, 0xc6, 0x21, 0xab, 0x7a, 0x06, 0x3d,
0x85, 0x0a, 0xff, 0x3f, 0x9f, 0xeb, 0xe3, 0xab, 0xab, 0x1c, 0xfb, 0x8d, 0x09, 0x50, 0x02, 0xf1,
0x21, 0x2c, 0x67, 0xd4, 0x56, 0xa5, 0x5e, 0x7f, 0x7c, 0x1d, 0x76, 0x92, 0x3f, 0x12, 0x93, 0xa5,
0x8a, 0xa7, 0x63, 0x26, 0xcb, 0x2a, 0xb4, 0x4e, 0x9a, 0x4c, 0x07, 0x94, 0x7e, 0xa4, 0x2d, 0x95,
0x89, 0xcc, 0xb7, 0xdc, 0x39, 0xa6, 0x48, 0xbf, 0xb3, 0x96, 0x4e, 0x91, 0xf9, 0x1c, 0x7b, 0xd2,
0x14, 0x5d, 0x58, 0x4c, 0x55, 0xd7, 0xd0, 0xbb, 0x19, 0x11, 0x82, 0xac, 0x06, 0x37, 0x69, 0x82,
0x3e, 0xbc, 0x21, 0xad, 0x24, 0x49, 0x23, 0x9e, 0x71, 0x35, 0xa7, 0x49, 0x13, 0xf5, 0xe0, 0xac,
0xa4, 0x7e, 0x24, 0xf5, 0xd5, 0xd9, 0x75, 0xa6, 0x49, 0x93, 0xec, 0x43, 0x67, 0xc5, 0x75, 0x74,
0xa3, 0xa7, 0x7b, 0x3e, 0xad, 0xe9, 0x90, 0x6c, 0x37, 0x08, 0x39, 0xe5, 0xe9, 0x8f, 0xb4, 0xf2,
0x33, 0x69, 0x9e, 0x67, 0x50, 0xa7, 0x02, 0xc9, 0xfe, 0x34, 0x04, 0xc9, 0x3d, 0x5d, 0x04, 0x22,
0xc3, 0x7c, 0xca, 0x00, 0x85, 0x6a, 0xfe, 0x2a, 0xd4, 0x44, 0x2d, 0x04, 0xc9, 0xae, 0x1f, 0x25,
0xab, 0x30, 0x9d, 0xeb, 0xe3, 0x81, 0x02, 0xcc, 0xf7, 0xbe, 0xac, 0x41, 0x35, 0x78, 0xcf, 0xf2,
0x15, 0x27, 0xf1, 0xaf, 0x21, 0xab, 0xfe, 0x0e, 0x2c, 0x24, 0xde, 0x96, 0x4b, 0x05, 0x41, 0xfe,
0xfe, 0x7c, 0x92, 0x20, 0x3c, 0xe5, 0x7f, 0x7b, 0x27, 0x22, 0xde, 0xb7, 0xb3, 0x32, 0xf3, 0x64,
0xb0, 0x3b, 0x01, 0xf1, 0xff, 0xee, 0x78, 0x6f, 0x1b, 0x20, 0x12, 0xe9, 0x8d, 0xbf, 0xb9, 0x49,
0x82, 0x97, 0x49, 0xdc, 0x1a, 0x48, 0x83, 0xb9, 0x77, 0xf2, 0x5c, 0x92, 0xcb, 0x76, 0xc7, 0xd9,
0x21, 0xdc, 0x13, 0x68, 0x44, 0xef, 0x54, 0x23, 0xe9, 0x9f, 0xac, 0xa5, 0x2f, 0x5d, 0x4f, 0x5a,
0xc5, 0xd6, 0x29, 0xbd, 0xfc, 0x04, 0x74, 0x1e, 0x71, 0x4f, 0xc9, 0xc3, 0xba, 0x0c, 0xf7, 0x94,
0x71, 0x44, 0x28, 0x8d, 0x8a, 0xb2, 0x4f, 0x00, 0x59, 0xd9, 0x22, 0x79, 0x02, 0x25, 0x2d, 0x5b,
0x64, 0x9c, 0xe9, 0x49, 0xcb, 0x16, 0x59, 0x47, 0x5a, 0xea, 0x99, 0x95, 0x0f, 0x3f, 0xff, 0xa0,
0x6f, 0xfa, 0x07, 0xa3, 0x67, 0x64, 0xf5, 0x77, 0xd9, 0xd0, 0xf7, 0x4c, 0x87, 0xff, 0xba, 0x1b,
0x88, 0xfb, 0x5d, 0x8a, 0xed, 0x2e, 0xc1, 0x36, 0x7c, 0xf6, 0xac, 0x42, 0x5b, 0x1f, 0xfe, 0x4f,
0x00, 0x00, 0x00, 0xff, 0xff, 0x11, 0x26, 0x25, 0xad, 0xd4, 0x53, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@ -5513,6 +5514,7 @@ type DataCoordClient interface {
GetRecoveryInfo(ctx context.Context, in *GetRecoveryInfoRequest, opts ...grpc.CallOption) (*GetRecoveryInfoResponse, error)
GetFlushedSegments(ctx context.Context, in *GetFlushedSegmentsRequest, opts ...grpc.CallOption) (*GetFlushedSegmentsResponse, error)
GetSegmentsByStates(ctx context.Context, in *GetSegmentsByStatesRequest, opts ...grpc.CallOption) (*GetSegmentsByStatesResponse, error)
GetFlushAllState(ctx context.Context, in *milvuspb.GetFlushAllStateRequest, opts ...grpc.CallOption) (*milvuspb.GetFlushAllStateResponse, error)
ShowConfigurations(ctx context.Context, in *internalpb.ShowConfigurationsRequest, opts ...grpc.CallOption) (*internalpb.ShowConfigurationsResponse, error)
// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
GetMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error)
@ -5689,6 +5691,15 @@ func (c *dataCoordClient) GetSegmentsByStates(ctx context.Context, in *GetSegmen
return out, nil
}
func (c *dataCoordClient) GetFlushAllState(ctx context.Context, in *milvuspb.GetFlushAllStateRequest, opts ...grpc.CallOption) (*milvuspb.GetFlushAllStateResponse, error) {
out := new(milvuspb.GetFlushAllStateResponse)
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetFlushAllState", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *dataCoordClient) ShowConfigurations(ctx context.Context, in *internalpb.ShowConfigurationsRequest, opts ...grpc.CallOption) (*internalpb.ShowConfigurationsResponse, error) {
out := new(internalpb.ShowConfigurationsResponse)
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/ShowConfigurations", in, out, opts...)
@ -5887,6 +5898,7 @@ type DataCoordServer interface {
GetRecoveryInfo(context.Context, *GetRecoveryInfoRequest) (*GetRecoveryInfoResponse, error)
GetFlushedSegments(context.Context, *GetFlushedSegmentsRequest) (*GetFlushedSegmentsResponse, error)
GetSegmentsByStates(context.Context, *GetSegmentsByStatesRequest) (*GetSegmentsByStatesResponse, error)
GetFlushAllState(context.Context, *milvuspb.GetFlushAllStateRequest) (*milvuspb.GetFlushAllStateResponse, error)
ShowConfigurations(context.Context, *internalpb.ShowConfigurationsRequest) (*internalpb.ShowConfigurationsResponse, error)
// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
GetMetrics(context.Context, *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error)
@ -5963,6 +5975,9 @@ func (*UnimplementedDataCoordServer) GetFlushedSegments(ctx context.Context, req
func (*UnimplementedDataCoordServer) GetSegmentsByStates(ctx context.Context, req *GetSegmentsByStatesRequest) (*GetSegmentsByStatesResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetSegmentsByStates not implemented")
}
func (*UnimplementedDataCoordServer) GetFlushAllState(ctx context.Context, req *milvuspb.GetFlushAllStateRequest) (*milvuspb.GetFlushAllStateResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetFlushAllState not implemented")
}
func (*UnimplementedDataCoordServer) ShowConfigurations(ctx context.Context, req *internalpb.ShowConfigurationsRequest) (*internalpb.ShowConfigurationsResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ShowConfigurations not implemented")
}
@ -6316,6 +6331,24 @@ func _DataCoord_GetSegmentsByStates_Handler(srv interface{}, ctx context.Context
return interceptor(ctx, in, info, handler)
}
func _DataCoord_GetFlushAllState_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(milvuspb.GetFlushAllStateRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(DataCoordServer).GetFlushAllState(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/milvus.proto.data.DataCoord/GetFlushAllState",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(DataCoordServer).GetFlushAllState(ctx, req.(*milvuspb.GetFlushAllStateRequest))
}
return interceptor(ctx, in, info, handler)
}
func _DataCoord_ShowConfigurations_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(internalpb.ShowConfigurationsRequest)
if err := dec(in); err != nil {
@ -6744,6 +6777,10 @@ var _DataCoord_serviceDesc = grpc.ServiceDesc{
MethodName: "GetSegmentsByStates",
Handler: _DataCoord_GetSegmentsByStates_Handler,
},
{
MethodName: "GetFlushAllState",
Handler: _DataCoord_GetFlushAllState_Handler,
},
{
MethodName: "ShowConfigurations",
Handler: _DataCoord_ShowConfigurations_Handler,

View File

@ -255,6 +255,10 @@ func (coord *DataCoordMock) GetFlushState(ctx context.Context, req *milvuspb.Get
return &milvuspb.GetFlushStateResponse{}, nil
}
func (coord *DataCoordMock) GetFlushAllState(ctx context.Context, req *milvuspb.GetFlushAllStateRequest) (*milvuspb.GetFlushAllStateResponse, error) {
return &milvuspb.GetFlushAllStateResponse{}, nil
}
func (coord *DataCoordMock) DropVirtualChannel(ctx context.Context, req *datapb.DropVirtualChannelRequest) (*datapb.DropVirtualChannelResponse, error) {
return &datapb.DropVirtualChannelResponse{}, nil
}

View File

@ -44,6 +44,7 @@ import (
"github.com/milvus-io/milvus/internal/util/metricsinfo"
"github.com/milvus-io/milvus/internal/util/timerecord"
"github.com/milvus-io/milvus/internal/util/trace"
"github.com/milvus-io/milvus/internal/util/tsoutil"
"github.com/milvus-io/milvus/internal/util/typeutil"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
@ -3484,6 +3485,71 @@ func (node *Proxy) CalcDistance(ctx context.Context, request *milvuspb.CalcDista
return task.Execute(ctx, request)
}
// FlushAll notifies Proxy to flush all collection's DML messages.
func (node *Proxy) FlushAll(ctx context.Context, _ *milvuspb.FlushAllRequest) (*milvuspb.FlushAllResponse, error) {
sp, ctx := trace.StartSpanFromContextWithOperationName(ctx, "Proxy-FlushAll")
defer sp.Finish()
resp := &milvuspb.FlushAllResponse{
Status: &commonpb.Status{ErrorCode: commonpb.ErrorCode_UnexpectedError},
}
if !node.checkHealthy() {
resp.Status.Reason = "proxy is not healthy"
return resp, nil
}
log.Info(rpcReceived("FlushAll"))
// Flush all collections to accelerate the flushAll progress
showColRsp, err := node.ShowCollections(ctx, &milvuspb.ShowCollectionsRequest{
Base: commonpbutil.NewMsgBase(commonpbutil.WithMsgType(commonpb.MsgType_ShowCollections)),
})
if err != nil {
resp.Status = &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: err.Error(),
}
log.Warn("FlushAll failed", zap.String("err", err.Error()))
return resp, nil
}
if showColRsp.GetStatus().GetErrorCode() != commonpb.ErrorCode_Success {
log.Warn("FlushAll failed", zap.String("err", showColRsp.GetStatus().GetReason()))
resp.Status = showColRsp.GetStatus()
return resp, nil
}
flushRsp, err := node.Flush(ctx, &milvuspb.FlushRequest{
Base: commonpbutil.NewMsgBase(commonpbutil.WithMsgType(commonpb.MsgType_Flush)),
CollectionNames: showColRsp.GetCollectionNames(),
})
if err != nil {
resp.Status = &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: err.Error(),
}
log.Warn("FlushAll failed", zap.String("err", err.Error()))
return resp, nil
}
if flushRsp.GetStatus().GetErrorCode() != commonpb.ErrorCode_Success {
log.Warn("FlushAll failed", zap.String("err", flushRsp.GetStatus().GetReason()))
resp.Status = flushRsp.GetStatus()
return resp, nil
}
// allocate current ts as FlushAllTs
ts, err := node.tsoAllocator.AllocOne(ctx)
if err != nil {
log.Warn("FlushAll failed", zap.Error(err))
resp.Status.Reason = err.Error()
return resp, nil
}
resp.FlushAllTs = ts
resp.Status.ErrorCode = commonpb.ErrorCode_Success
log.Info(rpcDone("FlushAll"), zap.Uint64("FlushAllTs", ts),
zap.Time("FlushAllTime", tsoutil.PhysicalTime(ts)))
return resp, nil
}
// GetDdChannel returns the used channel for dd operations.
func (node *Proxy) GetDdChannel(ctx context.Context, request *internalpb.GetDdChannelRequest) (*milvuspb.StringResponse, error) {
panic("implement me")
@ -4010,6 +4076,36 @@ func (node *Proxy) GetFlushState(ctx context.Context, req *milvuspb.GetFlushStat
return resp, err
}
// GetFlushAllState checks if all DML messages before `FlushAllTs` have been flushed.
func (node *Proxy) GetFlushAllState(ctx context.Context, req *milvuspb.GetFlushAllStateRequest) (*milvuspb.GetFlushAllStateResponse, error) {
sp, ctx := trace.StartSpanFromContextWithOperationName(ctx, "Proxy-GetFlushAllState")
defer sp.Finish()
log := log.Ctx(ctx).With(zap.Uint64("FlushAllTs", req.GetFlushAllTs()),
zap.Time("FlushAllTime", tsoutil.PhysicalTime(req.GetFlushAllTs())))
log.Debug("receive GetFlushAllState request")
var err error
resp := &milvuspb.GetFlushAllStateResponse{}
if !node.checkHealthy() {
resp.Status = unhealthyStatus()
log.Warn("GetFlushAllState failed, closed server")
return resp, nil
}
resp, err = node.dataCoord.GetFlushAllState(ctx, req)
if err != nil {
resp.Status = &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: err.Error(),
}
log.Warn("GetFlushAllState failed", zap.String("err", err.Error()))
return resp, nil
}
log.Debug("GetFlushAllState done", zap.Bool("flushed", resp.GetFlushed()))
return resp, err
}
// checkHealthy checks proxy state is Healthy
func (node *Proxy) checkHealthy() bool {
code := node.stateCode.Load().(commonpb.StateCode)

View File

@ -28,9 +28,11 @@ import (
"github.com/milvus-io/milvus-proto/go-api/milvuspb"
"github.com/milvus-io/milvus/internal/log"
"github.com/milvus-io/milvus/internal/mocks"
"github.com/milvus-io/milvus/internal/proto/datapb"
"github.com/milvus-io/milvus/internal/proto/proxypb"
"github.com/milvus-io/milvus/internal/util/dependency"
"github.com/milvus-io/milvus/internal/util/sessionutil"
"github.com/milvus-io/milvus/internal/util/typeutil"
)
func TestProxy_InvalidateCollectionMetaCache_remove_stream(t *testing.T) {
@ -340,3 +342,134 @@ func TestProxyRenameCollection(t *testing.T) {
assert.Equal(t, commonpb.ErrorCode_Success, resp.GetErrorCode())
})
}
func TestProxy_FlushAll(t *testing.T) {
factory := dependency.NewDefaultFactory(true)
ctx := context.Background()
node, err := NewProxy(ctx, factory)
assert.NoError(t, err)
node.stateCode.Store(commonpb.StateCode_Healthy)
node.tsoAllocator = &timestampAllocator{
tso: newMockTimestampAllocatorInterface(),
}
node.sched, err = newTaskScheduler(ctx, node.tsoAllocator, node.factory)
assert.NoError(t, err)
err = node.sched.Start()
assert.NoError(t, err)
defer node.sched.Close()
node.dataCoord = mocks.NewDataCoord(t)
node.rootCoord = mocks.NewRootCoord(t)
// set expectations
cache := newMockCache()
getIDFunc := func(ctx context.Context, collectionName string) (typeutil.UniqueID, error) {
return UniqueID(0), nil
}
cache.getIDFunc = getIDFunc
globalMetaCache = cache
successStatus := &commonpb.Status{ErrorCode: commonpb.ErrorCode_Success}
node.dataCoord.(*mocks.DataCoord).EXPECT().Flush(mock.Anything, mock.Anything).
Return(&datapb.FlushResponse{Status: successStatus}, nil).Maybe()
node.rootCoord.(*mocks.RootCoord).EXPECT().ShowCollections(mock.Anything, mock.Anything).
Return(&milvuspb.ShowCollectionsResponse{Status: successStatus, CollectionNames: []string{"col-0"}}, nil).Maybe()
t.Run("FlushAll", func(t *testing.T) {
resp, err := node.FlushAll(ctx, &milvuspb.FlushAllRequest{})
assert.NoError(t, err)
assert.Equal(t, resp.GetStatus().GetErrorCode(), commonpb.ErrorCode_Success)
})
t.Run("FlushAll failed, server is abnormal", func(t *testing.T) {
node.stateCode.Store(commonpb.StateCode_Abnormal)
resp, err := node.FlushAll(ctx, &milvuspb.FlushAllRequest{})
assert.NoError(t, err)
assert.Equal(t, resp.GetStatus().GetErrorCode(), commonpb.ErrorCode_UnexpectedError)
node.stateCode.Store(commonpb.StateCode_Healthy)
})
t.Run("FlushAll failed, get id failed", func(t *testing.T) {
globalMetaCache.(*mockCache).getIDFunc = func(ctx context.Context, collectionName string) (typeutil.UniqueID, error) {
return 0, errors.New("mock error")
}
resp, err := node.FlushAll(ctx, &milvuspb.FlushAllRequest{})
assert.NoError(t, err)
assert.Equal(t, resp.GetStatus().GetErrorCode(), commonpb.ErrorCode_UnexpectedError)
globalMetaCache.(*mockCache).getIDFunc = getIDFunc
})
t.Run("FlushAll failed, DataCoord flush failed", func(t *testing.T) {
node.dataCoord.(*mocks.DataCoord).ExpectedCalls = nil
node.dataCoord.(*mocks.DataCoord).EXPECT().Flush(mock.Anything, mock.Anything).
Return(&datapb.FlushResponse{
Status: &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: "mock err",
},
}, nil).Maybe()
resp, err := node.FlushAll(ctx, &milvuspb.FlushAllRequest{})
assert.NoError(t, err)
assert.Equal(t, resp.GetStatus().GetErrorCode(), commonpb.ErrorCode_UnexpectedError)
})
t.Run("FlushAll failed, RootCoord showCollections failed", func(t *testing.T) {
node.rootCoord.(*mocks.RootCoord).ExpectedCalls = nil
node.rootCoord.(*mocks.RootCoord).EXPECT().ShowCollections(mock.Anything, mock.Anything).
Return(&milvuspb.ShowCollectionsResponse{
Status: &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: "mock err",
},
}, nil).Maybe()
resp, err := node.FlushAll(ctx, &milvuspb.FlushAllRequest{})
assert.NoError(t, err)
assert.Equal(t, resp.GetStatus().GetErrorCode(), commonpb.ErrorCode_UnexpectedError)
})
}
func TestProxy_GetFlushAllState(t *testing.T) {
factory := dependency.NewDefaultFactory(true)
ctx := context.Background()
node, err := NewProxy(ctx, factory)
assert.NoError(t, err)
node.stateCode.Store(commonpb.StateCode_Healthy)
node.tsoAllocator = &timestampAllocator{
tso: newMockTimestampAllocatorInterface(),
}
node.dataCoord = mocks.NewDataCoord(t)
node.rootCoord = mocks.NewRootCoord(t)
// set expectations
successStatus := &commonpb.Status{ErrorCode: commonpb.ErrorCode_Success}
node.dataCoord.(*mocks.DataCoord).EXPECT().GetFlushAllState(mock.Anything, mock.Anything).
Return(&milvuspb.GetFlushAllStateResponse{Status: successStatus}, nil).Maybe()
t.Run("GetFlushAllState success", func(t *testing.T) {
resp, err := node.GetFlushAllState(ctx, &milvuspb.GetFlushAllStateRequest{})
assert.NoError(t, err)
assert.Equal(t, resp.GetStatus().GetErrorCode(), commonpb.ErrorCode_Success)
})
t.Run("GetFlushAllState failed, server is abnormal", func(t *testing.T) {
node.stateCode.Store(commonpb.StateCode_Abnormal)
resp, err := node.GetFlushAllState(ctx, &milvuspb.GetFlushAllStateRequest{})
assert.NoError(t, err)
assert.Equal(t, resp.GetStatus().GetErrorCode(), commonpb.ErrorCode_UnexpectedError)
node.stateCode.Store(commonpb.StateCode_Healthy)
})
t.Run("DataCoord GetFlushAllState failed", func(t *testing.T) {
node.dataCoord.(*mocks.DataCoord).ExpectedCalls = nil
node.dataCoord.(*mocks.DataCoord).EXPECT().GetFlushAllState(mock.Anything, mock.Anything).
Return(&milvuspb.GetFlushAllStateResponse{
Status: &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: "mock err",
},
}, nil)
resp, err := node.GetFlushAllState(ctx, &milvuspb.GetFlushAllStateRequest{})
assert.NoError(t, err)
assert.Equal(t, resp.GetStatus().GetErrorCode(), commonpb.ErrorCode_UnexpectedError)
})
}

View File

@ -294,6 +294,8 @@ type DataCoord interface {
WatchChannels(ctx context.Context, req *datapb.WatchChannelsRequest) (*datapb.WatchChannelsResponse, error)
// GetFlushState gets the flush state of multiple segments
GetFlushState(ctx context.Context, req *milvuspb.GetFlushStateRequest) (*milvuspb.GetFlushStateResponse, error)
// GetFlushAllState checks if all DML messages before `FlushAllTs` have been flushed.
GetFlushAllState(ctx context.Context, req *milvuspb.GetFlushAllStateRequest) (*milvuspb.GetFlushAllStateResponse, error)
// SetSegmentState updates a segment's state explicitly.
SetSegmentState(ctx context.Context, req *datapb.SetSegmentStateRequest) (*datapb.SetSegmentStateResponse, error)
@ -1187,6 +1189,16 @@ type ProxyComponent interface {
// Return generic error when specified vectors not found or float/binary vectors mismatch, otherwise return nil
CalcDistance(ctx context.Context, request *milvuspb.CalcDistanceRequest) (*milvuspb.CalcDistanceResults, error)
// FlushAll notifies Proxy to flush all collection's DML messages, including those in message stream.
//
// ctx is the context to control request deadline and cancellation
//
// The `Status` in response struct `FlushAllResponse` indicates if this operation is processed successfully or fail cause;
// The `FlushAllTs` field in the `FlushAllResponse` response struct is used to check the flushAll state at the
// `GetFlushAllState` interface. `GetFlushAllState` would check if all DML messages before `FlushAllTs` have been flushed.
// error is always nil
FlushAll(ctx context.Context, request *milvuspb.FlushAllRequest) (*milvuspb.FlushAllResponse, error)
// Not yet implemented
GetDdChannel(ctx context.Context, request *internalpb.GetDdChannelRequest) (*milvuspb.StringResponse, error)
@ -1268,6 +1280,8 @@ type ProxyComponent interface {
GetCompactionStateWithPlans(ctx context.Context, req *milvuspb.GetCompactionPlansRequest) (*milvuspb.GetCompactionPlansResponse, error)
// GetFlushState gets the flush state of multiple segments
GetFlushState(ctx context.Context, req *milvuspb.GetFlushStateRequest) (*milvuspb.GetFlushStateResponse, error)
// GetFlushAllState checks if all DML messages before `FlushAllTs` have been flushed.
GetFlushAllState(ctx context.Context, req *milvuspb.GetFlushAllStateRequest) (*milvuspb.GetFlushAllStateResponse, error)
// Import data files(json, numpy, etc.) on MinIO/S3 storage, read and parse them into sealed segments
//

View File

@ -129,10 +129,15 @@ func (m *GrpcDataCoordClient) GetCompactionStateWithPlans(ctx context.Context, r
func (m *GrpcDataCoordClient) WatchChannels(ctx context.Context, req *datapb.WatchChannelsRequest, opts ...grpc.CallOption) (*datapb.WatchChannelsResponse, error) {
return &datapb.WatchChannelsResponse{}, m.Err
}
func (m *GrpcDataCoordClient) GetFlushState(ctx context.Context, req *milvuspb.GetFlushStateRequest, opts ...grpc.CallOption) (*milvuspb.GetFlushStateResponse, error) {
return &milvuspb.GetFlushStateResponse{}, m.Err
}
func (m *GrpcDataCoordClient) GetFlushAllState(ctx context.Context, req *milvuspb.GetFlushAllStateRequest, opts ...grpc.CallOption) (*milvuspb.GetFlushAllStateResponse, error) {
return &milvuspb.GetFlushAllStateResponse{}, m.Err
}
func (m *GrpcDataCoordClient) DropVirtualChannel(ctx context.Context, req *datapb.DropVirtualChannelRequest, opts ...grpc.CallOption) (*datapb.DropVirtualChannelResponse, error) {
return &datapb.DropVirtualChannelResponse{}, m.Err
}