diff --git a/internal/datacoord/server_test.go b/internal/datacoord/server_test.go index 32b4db452e..a6576094c8 100644 --- a/internal/datacoord/server_test.go +++ b/internal/datacoord/server_test.go @@ -596,6 +596,57 @@ func TestGetSegmentInfo(t *testing.T) { assert.Nil(t, err) assert.Equal(t, 1, len(resp2.Infos)) }) + + t.Run("with channel checkpoint", func(t *testing.T) { + mockVChannel := "fake-by-dev-rootcoord-dml-1-testgetsegmentinfo-v0" + mockPChannel := "fake-by-dev-rootcoord-dml-1" + + pos := &internalpb.MsgPosition{ + ChannelName: mockPChannel, + MsgID: []byte{}, + Timestamp: 1000, + } + + svr := newTestServer(t, nil) + defer closeTestServer(t, svr) + + segInfo := &datapb.SegmentInfo{ + ID: 0, + State: commonpb.SegmentState_Flushed, + } + err := svr.meta.AddSegment(NewSegmentInfo(segInfo)) + assert.NoError(t, err) + + req := &datapb.GetSegmentInfoRequest{ + SegmentIDs: []int64{0}, + } + // no channel checkpoint + resp, err := svr.GetSegmentInfo(svr.ctx, req) + assert.NoError(t, err) + assert.EqualValues(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode) + assert.Equal(t, 0, len(resp.GetChannelCheckpoint())) + + // with nil insert channel of segment + err = svr.meta.UpdateChannelCheckpoint(mockVChannel, pos) + assert.NoError(t, err) + resp, err = svr.GetSegmentInfo(svr.ctx, req) + assert.NoError(t, err) + assert.EqualValues(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode) + assert.Equal(t, 0, len(resp.GetChannelCheckpoint())) + + // normal test + segInfo.InsertChannel = mockVChannel + segInfo.ID = 2 + req.SegmentIDs = []int64{2} + err = svr.meta.AddSegment(NewSegmentInfo(segInfo)) + assert.NoError(t, err) + resp, err = svr.GetSegmentInfo(svr.ctx, req) + assert.NoError(t, err) + assert.EqualValues(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode) + assert.Equal(t, 1, len(resp.GetChannelCheckpoint())) + assert.Equal(t, mockPChannel, resp.ChannelCheckpoint[mockVChannel].ChannelName) + assert.Equal(t, Timestamp(1000), resp.ChannelCheckpoint[mockVChannel].Timestamp) + }) } func TestGetComponentStates(t *testing.T) { diff --git a/internal/datacoord/services.go b/internal/datacoord/services.go index d0e95bb3e1..2578118cd7 100644 --- a/internal/datacoord/services.go +++ b/internal/datacoord/services.go @@ -347,6 +347,7 @@ func (s *Server) GetSegmentInfo(ctx context.Context, req *datapb.GetSegmentInfoR return resp, nil } infos := make([]*datapb.SegmentInfo, 0, len(req.GetSegmentIDs())) + channelCPs := make(map[string]*internalpb.MsgPosition) for _, id := range req.SegmentIDs { var info *SegmentInfo if req.IncludeUnHealthy { @@ -376,9 +377,14 @@ func (s *Server) GetSegmentInfo(ctx context.Context, req *datapb.GetSegmentInfoR segmentutil.ReCalcRowCount(info.SegmentInfo, clonedInfo.SegmentInfo) infos = append(infos, clonedInfo.SegmentInfo) } + vchannel := info.InsertChannel + if _, ok := channelCPs[vchannel]; vchannel != "" && !ok { + channelCPs[vchannel] = s.meta.GetChannelCheckpoint(vchannel) + } } resp.Status.ErrorCode = commonpb.ErrorCode_Success resp.Infos = infos + resp.ChannelCheckpoint = channelCPs return resp, nil } diff --git a/internal/proto/data_coord.proto b/internal/proto/data_coord.proto index cde40354fe..2356fb4c2e 100644 --- a/internal/proto/data_coord.proto +++ b/internal/proto/data_coord.proto @@ -167,6 +167,7 @@ message GetSegmentInfoRequest { message GetSegmentInfoResponse { common.Status status = 1; repeated SegmentInfo infos = 2; + map channel_checkpoint = 3; } message GetInsertBinlogPathsRequest { diff --git a/internal/proto/datapb/data_coord.pb.go b/internal/proto/datapb/data_coord.pb.go index 6609cab9ca..6c597100ae 100644 --- a/internal/proto/datapb/data_coord.pb.go +++ b/internal/proto/datapb/data_coord.pb.go @@ -793,11 +793,12 @@ func (m *GetSegmentInfoRequest) GetIncludeUnHealthy() bool { } type GetSegmentInfoResponse struct { - Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` - Infos []*SegmentInfo `protobuf:"bytes,2,rep,name=infos,proto3" json:"infos,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` + Infos []*SegmentInfo `protobuf:"bytes,2,rep,name=infos,proto3" json:"infos,omitempty"` + ChannelCheckpoint map[string]*internalpb.MsgPosition `protobuf:"bytes,3,rep,name=channel_checkpoint,json=channelCheckpoint,proto3" json:"channel_checkpoint,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *GetSegmentInfoResponse) Reset() { *m = GetSegmentInfoResponse{} } @@ -839,6 +840,13 @@ func (m *GetSegmentInfoResponse) GetInfos() []*SegmentInfo { return nil } +func (m *GetSegmentInfoResponse) GetChannelCheckpoint() map[string]*internalpb.MsgPosition { + if m != nil { + return m.ChannelCheckpoint + } + return nil +} + type GetInsertBinlogPathsRequest struct { Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` SegmentID int64 `protobuf:"varint,2,opt,name=segmentID,proto3" json:"segmentID,omitempty"` @@ -4898,6 +4906,7 @@ func init() { proto.RegisterType((*GetSegmentStatesResponse)(nil), "milvus.proto.data.GetSegmentStatesResponse") proto.RegisterType((*GetSegmentInfoRequest)(nil), "milvus.proto.data.GetSegmentInfoRequest") proto.RegisterType((*GetSegmentInfoResponse)(nil), "milvus.proto.data.GetSegmentInfoResponse") + proto.RegisterMapType((map[string]*internalpb.MsgPosition)(nil), "milvus.proto.data.GetSegmentInfoResponse.ChannelCheckpointEntry") proto.RegisterType((*GetInsertBinlogPathsRequest)(nil), "milvus.proto.data.GetInsertBinlogPathsRequest") proto.RegisterType((*GetInsertBinlogPathsResponse)(nil), "milvus.proto.data.GetInsertBinlogPathsResponse") proto.RegisterType((*GetCollectionStatisticsRequest)(nil), "milvus.proto.data.GetCollectionStatisticsRequest") @@ -4967,284 +4976,288 @@ func init() { func init() { proto.RegisterFile("data_coord.proto", fileDescriptor_82cd95f524594f49) } var fileDescriptor_82cd95f524594f49 = []byte{ - // 4427 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3c, 0x5b, 0x8f, 0x1c, 0x57, - 0x5a, 0xae, 0xbe, 0x4d, 0xf7, 0xd7, 0x3d, 0x3d, 0x3d, 0xc7, 0xce, 0xb8, 0xdd, 0xf1, 0x2d, 0xe5, - 0x38, 0x71, 0x1c, 0xc7, 0x4e, 0x1c, 0xa2, 0x0d, 0x78, 0x93, 0x95, 0xc7, 0x13, 0x3b, 0x0d, 0x33, - 0xb3, 0xb3, 0x35, 0xe3, 0x58, 0xda, 0x45, 0x6a, 0x95, 0xbb, 0xce, 0xf4, 0xd4, 0x4e, 0x5d, 0xda, - 0x55, 0xd5, 0x33, 0x9e, 0xe5, 0x61, 0x03, 0x2b, 0x81, 0x16, 0x21, 0x16, 0x21, 0x21, 0xe0, 0x01, - 0x09, 0xf1, 0xb4, 0x2c, 0x5a, 0x84, 0xb4, 0xe2, 0x85, 0x17, 0x5e, 0x23, 0x78, 0x58, 0x21, 0x24, - 0x7e, 0x02, 0xf0, 0xce, 0x2b, 0x0f, 0xe8, 0x5c, 0xea, 0xd4, 0xed, 0x54, 0x77, 0x4d, 0xb7, 0x1d, - 0x23, 0x78, 0xeb, 0xf3, 0xd5, 0x77, 0xce, 0x77, 0x2e, 0xdf, 0xfd, 0x7c, 0xa7, 0xa1, 0x63, 0xe8, - 0x81, 0x3e, 0x18, 0xba, 0xae, 0x67, 0xdc, 0x1e, 0x7b, 0x6e, 0xe0, 0xa2, 0x55, 0xdb, 0xb4, 0x8e, - 0x26, 0x3e, 0x6b, 0xdd, 0x26, 0x9f, 0x7b, 0xad, 0xa1, 0x6b, 0xdb, 0xae, 0xc3, 0x40, 0xbd, 0xb6, - 0xe9, 0x04, 0xd8, 0x73, 0x74, 0x8b, 0xb7, 0x5b, 0xf1, 0x0e, 0xbd, 0x96, 0x3f, 0x3c, 0xc0, 0xb6, - 0xce, 0x5a, 0xea, 0x12, 0x54, 0x3f, 0xb3, 0xc7, 0xc1, 0x89, 0xfa, 0x67, 0x0a, 0xb4, 0x1e, 0x5a, - 0x13, 0xff, 0x40, 0xc3, 0xcf, 0x26, 0xd8, 0x0f, 0xd0, 0xfb, 0x50, 0x79, 0xaa, 0xfb, 0xb8, 0xab, - 0x5c, 0x55, 0x6e, 0x34, 0xef, 0x5e, 0xbc, 0x9d, 0xa0, 0xca, 0xe9, 0x6d, 0xf9, 0xa3, 0x75, 0xdd, - 0xc7, 0x1a, 0xc5, 0x44, 0x08, 0x2a, 0xc6, 0xd3, 0xfe, 0x46, 0xb7, 0x74, 0x55, 0xb9, 0x51, 0xd6, - 0xe8, 0x6f, 0x74, 0x19, 0xc0, 0xc7, 0x23, 0x1b, 0x3b, 0x41, 0x7f, 0xc3, 0xef, 0x96, 0xaf, 0x96, - 0x6f, 0x94, 0xb5, 0x18, 0x04, 0xa9, 0xd0, 0x1a, 0xba, 0x96, 0x85, 0x87, 0x81, 0xe9, 0x3a, 0xfd, - 0x8d, 0x6e, 0x85, 0xf6, 0x4d, 0xc0, 0xd4, 0x7f, 0x57, 0x60, 0x99, 0x4f, 0xcd, 0x1f, 0xbb, 0x8e, - 0x8f, 0xd1, 0x87, 0x50, 0xf3, 0x03, 0x3d, 0x98, 0xf8, 0x7c, 0x76, 0xaf, 0x4b, 0x67, 0xb7, 0x4b, - 0x51, 0x34, 0x8e, 0x2a, 0x9d, 0x5e, 0x9a, 0x7c, 0x39, 0x4b, 0x3e, 0xb5, 0x84, 0x4a, 0x66, 0x09, - 0x37, 0x60, 0x65, 0x9f, 0xcc, 0x6e, 0x37, 0x42, 0xaa, 0x52, 0xa4, 0x34, 0x98, 0x8c, 0x14, 0x98, - 0x36, 0xfe, 0xf6, 0xfe, 0x2e, 0xd6, 0xad, 0x6e, 0x8d, 0xd2, 0x8a, 0x41, 0xd4, 0x7f, 0x51, 0xa0, - 0x23, 0xd0, 0xc3, 0x73, 0x38, 0x07, 0xd5, 0xa1, 0x3b, 0x71, 0x02, 0xba, 0xd4, 0x65, 0x8d, 0x35, - 0xd0, 0x1b, 0xd0, 0x1a, 0x1e, 0xe8, 0x8e, 0x83, 0xad, 0x81, 0xa3, 0xdb, 0x98, 0x2e, 0xaa, 0xa1, - 0x35, 0x39, 0x6c, 0x5b, 0xb7, 0x71, 0xa1, 0xb5, 0x5d, 0x85, 0xe6, 0x58, 0xf7, 0x02, 0x33, 0xb1, - 0xfb, 0x71, 0x10, 0xea, 0x41, 0xdd, 0xf4, 0xfb, 0xf6, 0xd8, 0xf5, 0x82, 0x6e, 0xf5, 0xaa, 0x72, - 0xa3, 0xae, 0x89, 0x36, 0xa1, 0x60, 0xd2, 0x5f, 0x7b, 0xba, 0x7f, 0xd8, 0xdf, 0xe0, 0x2b, 0x4a, - 0xc0, 0xd4, 0xbf, 0x54, 0x60, 0xed, 0xbe, 0xef, 0x9b, 0x23, 0x27, 0xb3, 0xb2, 0x35, 0xa8, 0x39, - 0xae, 0x81, 0xfb, 0x1b, 0x74, 0x69, 0x65, 0x8d, 0xb7, 0xd0, 0xeb, 0xd0, 0x18, 0x63, 0xec, 0x0d, - 0x3c, 0xd7, 0x0a, 0x17, 0x56, 0x27, 0x00, 0xcd, 0xb5, 0x30, 0xfa, 0x0e, 0xac, 0xfa, 0xa9, 0x81, - 0x18, 0x5f, 0x35, 0xef, 0x5e, 0xbb, 0x9d, 0x91, 0x8c, 0xdb, 0x69, 0xa2, 0x5a, 0xb6, 0xb7, 0xfa, - 0x65, 0x09, 0xce, 0x0a, 0x3c, 0x36, 0x57, 0xf2, 0x9b, 0xec, 0xbc, 0x8f, 0x47, 0x62, 0x7a, 0xac, - 0x51, 0x64, 0xe7, 0xc5, 0x91, 0x95, 0xe3, 0x47, 0x56, 0x80, 0xd5, 0xd3, 0xe7, 0x51, 0xcd, 0x9e, - 0xc7, 0x15, 0x68, 0xe2, 0xe7, 0x63, 0xd3, 0xc3, 0x03, 0xc2, 0x38, 0x74, 0xcb, 0x2b, 0x1a, 0x30, - 0xd0, 0x9e, 0x69, 0xc7, 0x65, 0x63, 0xa9, 0xb0, 0x6c, 0xa8, 0x7f, 0xa5, 0xc0, 0xf9, 0xcc, 0x29, - 0x71, 0x61, 0xd3, 0xa0, 0x43, 0x57, 0x1e, 0xed, 0x0c, 0x11, 0x3b, 0xb2, 0xe1, 0x6f, 0x4d, 0xdb, - 0xf0, 0x08, 0x5d, 0xcb, 0xf4, 0x8f, 0x4d, 0xb2, 0x54, 0x7c, 0x92, 0x87, 0x70, 0xfe, 0x11, 0x0e, - 0x38, 0x01, 0xf2, 0x0d, 0xfb, 0xf3, 0x2b, 0xab, 0xa4, 0x54, 0x97, 0xd2, 0x52, 0xad, 0xfe, 0x5d, - 0x49, 0xc8, 0x22, 0x25, 0xd5, 0x77, 0xf6, 0x5d, 0x74, 0x11, 0x1a, 0x02, 0x85, 0x73, 0x45, 0x04, - 0x40, 0xdf, 0x80, 0x2a, 0x99, 0x29, 0x63, 0x89, 0xf6, 0xdd, 0x37, 0xe4, 0x6b, 0x8a, 0x8d, 0xa9, - 0x31, 0x7c, 0xd4, 0x87, 0xb6, 0x1f, 0xe8, 0x5e, 0x30, 0x18, 0xbb, 0x3e, 0x3d, 0x67, 0xca, 0x38, - 0xcd, 0xbb, 0x6a, 0x72, 0x04, 0xa1, 0xd6, 0xb7, 0xfc, 0xd1, 0x0e, 0xc7, 0xd4, 0x96, 0x69, 0xcf, - 0xb0, 0x89, 0x3e, 0x83, 0x16, 0x76, 0x8c, 0x68, 0xa0, 0x4a, 0xe1, 0x81, 0x9a, 0xd8, 0x31, 0xc4, - 0x30, 0xd1, 0xf9, 0x54, 0x8b, 0x9f, 0xcf, 0x1f, 0x28, 0xd0, 0xcd, 0x1e, 0xd0, 0x22, 0x2a, 0xfb, - 0x1e, 0xeb, 0x84, 0xd9, 0x01, 0x4d, 0x95, 0x70, 0x71, 0x48, 0x1a, 0xef, 0xa2, 0xfe, 0x89, 0x02, - 0xaf, 0x45, 0xd3, 0xa1, 0x9f, 0x5e, 0x16, 0xb7, 0xa0, 0x9b, 0xd0, 0x31, 0x9d, 0xa1, 0x35, 0x31, - 0xf0, 0x63, 0xe7, 0x73, 0xac, 0x5b, 0xc1, 0xc1, 0x09, 0x3d, 0xc3, 0xba, 0x96, 0x81, 0xab, 0x3f, - 0x52, 0x60, 0x2d, 0x3d, 0xaf, 0x45, 0x36, 0xe9, 0x57, 0xa0, 0x6a, 0x3a, 0xfb, 0x6e, 0xb8, 0x47, - 0x97, 0xa7, 0x08, 0x25, 0xa1, 0xc5, 0x90, 0x55, 0x1b, 0x5e, 0x7f, 0x84, 0x83, 0xbe, 0xe3, 0x63, - 0x2f, 0x58, 0x37, 0x1d, 0xcb, 0x1d, 0xed, 0xe8, 0xc1, 0xc1, 0x02, 0x02, 0x95, 0x90, 0x8d, 0x52, - 0x4a, 0x36, 0xd4, 0x9f, 0x2a, 0x70, 0x51, 0x4e, 0x8f, 0x2f, 0xbd, 0x07, 0xf5, 0x7d, 0x13, 0x5b, - 0x06, 0xd9, 0x5f, 0x85, 0xee, 0xaf, 0x68, 0x13, 0xc1, 0x1a, 0x13, 0x64, 0xbe, 0xc2, 0x37, 0x72, - 0xb8, 0x79, 0x37, 0xf0, 0x4c, 0x67, 0xb4, 0x69, 0xfa, 0x81, 0xc6, 0xf0, 0x63, 0xfb, 0x59, 0x2e, - 0xce, 0xc6, 0xbf, 0xaf, 0xc0, 0xe5, 0x47, 0x38, 0x78, 0x20, 0xf4, 0x32, 0xf9, 0x6e, 0xfa, 0x81, - 0x39, 0xf4, 0x5f, 0xac, 0x6f, 0x54, 0xc0, 0x40, 0xab, 0x3f, 0x51, 0xe0, 0x4a, 0xee, 0x64, 0xf8, - 0xd6, 0x71, 0xbd, 0x13, 0x6a, 0x65, 0xb9, 0xde, 0xf9, 0x0d, 0x7c, 0xf2, 0x85, 0x6e, 0x4d, 0xf0, - 0x8e, 0x6e, 0x7a, 0x4c, 0xef, 0xcc, 0xa9, 0x85, 0x7f, 0xae, 0xc0, 0xa5, 0x47, 0x38, 0xd8, 0x09, - 0x6d, 0xd2, 0x2b, 0xdc, 0x1d, 0x82, 0x13, 0xb3, 0x8d, 0xa1, 0x73, 0x96, 0x80, 0xa9, 0x7f, 0xc8, - 0x8e, 0x53, 0x3a, 0xdf, 0x57, 0xb2, 0x81, 0x97, 0xa9, 0x24, 0xc4, 0x44, 0xf2, 0x01, 0x73, 0x1d, - 0xf8, 0xf6, 0xa9, 0x7f, 0xa1, 0xc0, 0x85, 0xfb, 0xc3, 0x67, 0x13, 0xd3, 0xc3, 0x1c, 0x69, 0xd3, - 0x1d, 0x1e, 0xce, 0xbf, 0xb9, 0x91, 0x9b, 0x55, 0x4a, 0xb8, 0x59, 0xb3, 0x5c, 0xf3, 0x35, 0xa8, - 0x05, 0xcc, 0xaf, 0x63, 0x9e, 0x0a, 0x6f, 0xd1, 0xf9, 0x69, 0xd8, 0xc2, 0xba, 0xff, 0xbf, 0x73, - 0x7e, 0x3f, 0xa9, 0x40, 0xeb, 0x0b, 0xee, 0x8e, 0x51, 0xab, 0x9d, 0xe6, 0x24, 0x45, 0xee, 0x78, - 0xc5, 0x3c, 0x38, 0x99, 0x53, 0xf7, 0x08, 0x96, 0x7d, 0x8c, 0x0f, 0xe7, 0xb1, 0xd1, 0x2d, 0xd2, - 0x51, 0xd8, 0xd6, 0x4d, 0x58, 0x9d, 0x38, 0x34, 0x34, 0xc0, 0x06, 0xdf, 0x40, 0xc6, 0xb9, 0xb3, - 0x75, 0x77, 0xb6, 0x23, 0xfa, 0x9c, 0x47, 0x1f, 0xb1, 0xb1, 0xaa, 0x85, 0xc6, 0x4a, 0x77, 0x43, - 0x7d, 0xe8, 0x18, 0x9e, 0x3b, 0x1e, 0x63, 0x63, 0xe0, 0x87, 0x43, 0xd5, 0x8a, 0x0d, 0xc5, 0xfb, - 0x89, 0xa1, 0xde, 0x87, 0xb3, 0xe9, 0x99, 0xf6, 0x0d, 0xe2, 0x90, 0x92, 0x33, 0x94, 0x7d, 0x42, - 0xb7, 0x60, 0x35, 0x8b, 0x5f, 0xa7, 0xf8, 0xd9, 0x0f, 0xe8, 0x3d, 0x40, 0xa9, 0xa9, 0x12, 0xf4, - 0x06, 0x43, 0x4f, 0x4e, 0xa6, 0x6f, 0xf8, 0xea, 0x8f, 0x15, 0x58, 0x7b, 0xa2, 0x07, 0xc3, 0x83, - 0x0d, 0x9b, 0xcb, 0xda, 0x02, 0xba, 0xea, 0x13, 0x68, 0x1c, 0x71, 0xbe, 0x08, 0x0d, 0xd2, 0x15, - 0xc9, 0xfe, 0xc4, 0x39, 0x50, 0x8b, 0x7a, 0x90, 0x78, 0xe8, 0xdc, 0xc3, 0x58, 0x5c, 0xf8, 0x0a, - 0xb4, 0xe6, 0x8c, 0x80, 0x56, 0x7d, 0x0e, 0xc0, 0x27, 0xb7, 0xe5, 0x8f, 0xe6, 0x98, 0xd7, 0xc7, - 0xb0, 0xc4, 0x47, 0xe3, 0x6a, 0x71, 0x16, 0xff, 0x84, 0xe8, 0xea, 0xcf, 0x6a, 0xd0, 0x8c, 0x7d, - 0x40, 0x6d, 0x28, 0x09, 0x79, 0x2d, 0x49, 0x56, 0x57, 0x9a, 0x1d, 0x42, 0x95, 0xb3, 0x21, 0xd4, - 0x75, 0x68, 0x9b, 0xd4, 0x0f, 0x19, 0xf0, 0x53, 0xa1, 0x0a, 0xa4, 0xa1, 0x2d, 0x33, 0x28, 0x67, - 0x11, 0x74, 0x19, 0x9a, 0xce, 0xc4, 0x1e, 0xb8, 0xfb, 0x03, 0xcf, 0x3d, 0xf6, 0x79, 0x2c, 0xd6, - 0x70, 0x26, 0xf6, 0xb7, 0xf7, 0x35, 0xf7, 0xd8, 0x8f, 0xdc, 0xfd, 0xda, 0x29, 0xdd, 0xfd, 0xcb, - 0xd0, 0xb4, 0xf5, 0xe7, 0x64, 0xd4, 0x81, 0x33, 0xb1, 0x69, 0x98, 0x56, 0xd6, 0x1a, 0xb6, 0xfe, - 0x5c, 0x73, 0x8f, 0xb7, 0x27, 0x36, 0xba, 0x01, 0x1d, 0x4b, 0xf7, 0x83, 0x41, 0x3c, 0xce, 0xab, - 0xd3, 0x38, 0xaf, 0x4d, 0xe0, 0x9f, 0x45, 0xb1, 0x5e, 0x36, 0x70, 0x68, 0x2c, 0x10, 0x38, 0x18, - 0xb6, 0x15, 0x0d, 0x04, 0xc5, 0x03, 0x07, 0xc3, 0xb6, 0xc4, 0x30, 0x1f, 0xc3, 0xd2, 0x53, 0xea, - 0xdd, 0xf9, 0xdd, 0x66, 0xae, 0xee, 0x78, 0x48, 0x1c, 0x3b, 0xe6, 0x04, 0x6a, 0x21, 0x3a, 0xfa, - 0x26, 0x34, 0xa8, 0x51, 0xa5, 0x7d, 0x5b, 0x85, 0xfa, 0x46, 0x1d, 0x48, 0x6f, 0x03, 0x5b, 0x81, - 0x4e, 0x7b, 0x2f, 0x17, 0xeb, 0x2d, 0x3a, 0x10, 0x7d, 0x35, 0xf4, 0xb0, 0x1e, 0x60, 0x63, 0xfd, - 0xe4, 0x81, 0x6b, 0x8f, 0x75, 0xca, 0x4c, 0xdd, 0x36, 0xf5, 0xe0, 0x65, 0x9f, 0xd0, 0x5b, 0xd0, - 0x1e, 0x8a, 0xd6, 0x43, 0xcf, 0xb5, 0xbb, 0x2b, 0x54, 0x8e, 0x52, 0x50, 0x74, 0x09, 0x20, 0xd4, - 0x54, 0x7a, 0xd0, 0xed, 0xd0, 0x53, 0x6c, 0x70, 0xc8, 0x7d, 0x9a, 0xc6, 0x31, 0xfd, 0x01, 0x4b, - 0x98, 0x98, 0xce, 0xa8, 0xbb, 0x4a, 0x29, 0x36, 0xc3, 0x0c, 0x8b, 0xe9, 0x8c, 0xd0, 0x79, 0x58, - 0x32, 0xfd, 0xc1, 0xbe, 0x7e, 0x88, 0xbb, 0x88, 0x7e, 0xad, 0x99, 0xfe, 0x43, 0xfd, 0x10, 0xab, - 0x3f, 0x84, 0x73, 0x11, 0x77, 0xc5, 0x4e, 0x32, 0xcb, 0x14, 0xca, 0xbc, 0x4c, 0x31, 0xdd, 0xa7, - 0xff, 0x65, 0x05, 0xd6, 0x76, 0xf5, 0x23, 0xfc, 0xf2, 0xc3, 0x87, 0x42, 0x6a, 0x6d, 0x13, 0x56, - 0x69, 0xc4, 0x70, 0x37, 0x36, 0x9f, 0x29, 0x76, 0x35, 0xce, 0x0a, 0xd9, 0x8e, 0xe8, 0x5b, 0xc4, - 0x21, 0xc0, 0xc3, 0xc3, 0x1d, 0xd7, 0x8c, 0x6c, 0xea, 0x25, 0xc9, 0x38, 0x0f, 0x04, 0x96, 0x16, - 0xef, 0x81, 0x76, 0x60, 0x25, 0x79, 0x0c, 0xa1, 0x35, 0x7d, 0x7b, 0x6a, 0x10, 0x1b, 0xed, 0xbe, - 0xd6, 0x4e, 0x1c, 0x86, 0x8f, 0xba, 0xb0, 0xc4, 0x4d, 0x21, 0xd5, 0x19, 0x75, 0x2d, 0x6c, 0xa2, - 0x1d, 0x38, 0xcb, 0x56, 0xb0, 0xcb, 0x05, 0x82, 0x2d, 0xbe, 0x5e, 0x68, 0xf1, 0xb2, 0xae, 0x49, - 0x79, 0x6a, 0x9c, 0x56, 0x9e, 0xba, 0xb0, 0xc4, 0x79, 0x9c, 0xea, 0x91, 0xba, 0x16, 0x36, 0xc9, - 0x31, 0x47, 0xdc, 0xde, 0xa4, 0xdf, 0x22, 0x00, 0x09, 0xbd, 0x20, 0xda, 0xcf, 0x19, 0xe9, 0x96, - 0x4f, 0xa1, 0x2e, 0x38, 0xbc, 0x54, 0x98, 0xc3, 0x45, 0x9f, 0xb4, 0x7e, 0x2f, 0xa7, 0xf4, 0xbb, - 0xfa, 0xcf, 0x0a, 0xb4, 0x36, 0xc8, 0x92, 0x36, 0xdd, 0x11, 0xb5, 0x46, 0xd7, 0xa1, 0xed, 0xe1, - 0xa1, 0xeb, 0x19, 0x03, 0xec, 0x04, 0x9e, 0x89, 0x59, 0x94, 0x5e, 0xd1, 0x96, 0x19, 0xf4, 0x33, - 0x06, 0x24, 0x68, 0x44, 0x65, 0xfb, 0x81, 0x6e, 0x8f, 0x07, 0xfb, 0x44, 0x35, 0x94, 0x18, 0x9a, - 0x80, 0x52, 0xcd, 0xf0, 0x06, 0xb4, 0x22, 0xb4, 0xc0, 0xa5, 0xf4, 0x2b, 0x5a, 0x53, 0xc0, 0xf6, - 0x5c, 0xf4, 0x26, 0xb4, 0xe9, 0x9e, 0x0e, 0x2c, 0x77, 0x34, 0x20, 0x11, 0x2d, 0x37, 0x54, 0x2d, - 0x83, 0x4f, 0x8b, 0x9c, 0x55, 0x12, 0xcb, 0x37, 0x7f, 0x80, 0xb9, 0xa9, 0x12, 0x58, 0xbb, 0xe6, - 0x0f, 0xb0, 0xfa, 0x4f, 0x0a, 0x2c, 0x6f, 0xe8, 0x81, 0xbe, 0xed, 0x1a, 0x78, 0x6f, 0x4e, 0xc3, - 0x5e, 0x20, 0xf5, 0x79, 0x11, 0x1a, 0x62, 0x05, 0x7c, 0x49, 0x11, 0x00, 0x3d, 0x84, 0x76, 0xe8, - 0x5a, 0x0e, 0x58, 0xc4, 0x55, 0xc9, 0x75, 0xa0, 0x62, 0x96, 0xd3, 0xd7, 0x96, 0xc3, 0x6e, 0xb4, - 0xa9, 0x3e, 0x84, 0x56, 0xfc, 0x33, 0xa1, 0xba, 0x9b, 0x66, 0x14, 0x01, 0x20, 0xdc, 0xb8, 0x3d, - 0xb1, 0xc9, 0x99, 0x72, 0xc5, 0x12, 0x36, 0xd5, 0x1f, 0x29, 0xb0, 0xcc, 0xcd, 0xfd, 0xae, 0xb8, - 0x24, 0xa0, 0x4b, 0x53, 0xe8, 0xd2, 0xe8, 0x6f, 0xf4, 0x6b, 0xc9, 0xbc, 0xde, 0x9b, 0x52, 0x25, - 0x40, 0x07, 0xa1, 0x4e, 0x66, 0xc2, 0xd6, 0x17, 0x89, 0xf1, 0xbf, 0x24, 0x8c, 0xc6, 0x8f, 0x86, - 0x32, 0x5a, 0x17, 0x96, 0x74, 0xc3, 0xf0, 0xb0, 0xef, 0xf3, 0x79, 0x84, 0x4d, 0xf2, 0xe5, 0x08, - 0x7b, 0x7e, 0xc8, 0xf2, 0x65, 0x2d, 0x6c, 0xa2, 0x6f, 0x42, 0x5d, 0x78, 0xa5, 0x2c, 0x1d, 0x7e, - 0x35, 0x7f, 0x9e, 0x3c, 0x22, 0x15, 0x3d, 0xd4, 0xbf, 0x2f, 0x41, 0x9b, 0x6f, 0xd8, 0x3a, 0xb7, - 0xc7, 0xd3, 0x85, 0x6f, 0x1d, 0x5a, 0xfb, 0x91, 0xec, 0x4f, 0xcb, 0x3d, 0xc5, 0x55, 0x44, 0xa2, - 0xcf, 0x2c, 0x01, 0x4c, 0x7a, 0x04, 0x95, 0x85, 0x3c, 0x82, 0xea, 0x69, 0x35, 0x58, 0xd6, 0x47, - 0xac, 0x49, 0x7c, 0x44, 0xf5, 0x37, 0xa1, 0x19, 0x1b, 0x80, 0x6a, 0x68, 0x96, 0xb4, 0xe2, 0x3b, - 0x16, 0x36, 0xd1, 0x87, 0x91, 0x5f, 0xc4, 0xb6, 0xea, 0x82, 0x64, 0x2e, 0x29, 0x97, 0x48, 0xfd, - 0x47, 0x05, 0x6a, 0x7c, 0xe4, 0x2b, 0xd0, 0xe4, 0x4a, 0x87, 0xfa, 0x8c, 0x6c, 0x74, 0xe0, 0x20, - 0xe2, 0x34, 0xbe, 0x38, 0xad, 0x73, 0x01, 0xea, 0x29, 0x7d, 0xb3, 0xc4, 0xcd, 0x42, 0xf8, 0x29, - 0xa6, 0x64, 0xc8, 0x27, 0xa2, 0x5f, 0xd0, 0x39, 0xa8, 0x5a, 0xee, 0x48, 0x5c, 0x02, 0xb1, 0x86, - 0xfa, 0x95, 0x42, 0x73, 0xf6, 0x1a, 0x1e, 0xba, 0x47, 0xd8, 0x3b, 0x59, 0x3c, 0xd9, 0x79, 0x2f, - 0xc6, 0xe6, 0x05, 0x83, 0x2f, 0xd1, 0x01, 0xdd, 0x8b, 0x0e, 0xa1, 0x2c, 0xcb, 0xf4, 0xc4, 0xf5, - 0x0e, 0x67, 0xd2, 0xe8, 0x30, 0xfe, 0x88, 0xa5, 0x6d, 0x93, 0x4b, 0x99, 0xd7, 0xdb, 0x79, 0x21, - 0x81, 0x8c, 0xfa, 0x4b, 0x05, 0x7a, 0x51, 0x2a, 0xc9, 0x5f, 0x3f, 0x59, 0xf4, 0x52, 0xe4, 0xc5, - 0xc4, 0x57, 0xbf, 0x2a, 0xb2, 0xf6, 0x44, 0x68, 0x0b, 0x45, 0x46, 0x61, 0xce, 0xde, 0xa1, 0x59, - 0xe9, 0xec, 0x82, 0x16, 0x61, 0x99, 0x1e, 0xd4, 0x45, 0x3e, 0x83, 0x65, 0xee, 0x45, 0x9b, 0x48, - 0xd8, 0x85, 0x47, 0x38, 0x78, 0x98, 0x4c, 0x85, 0xbc, 0xea, 0x0d, 0x8c, 0xdf, 0x26, 0x1c, 0xf0, - 0xdb, 0x84, 0x4a, 0xea, 0x36, 0x81, 0xc3, 0x55, 0x9b, 0xb2, 0x40, 0x66, 0x01, 0x2f, 0x6b, 0xc3, - 0x7e, 0x57, 0x81, 0x2e, 0xa7, 0x42, 0x69, 0x92, 0x90, 0xc8, 0xc2, 0x01, 0x36, 0xbe, 0xee, 0x54, - 0xc1, 0x7f, 0x2b, 0xd0, 0x89, 0x5b, 0x5d, 0x6a, 0x38, 0x3f, 0x82, 0x2a, 0xcd, 0xb4, 0xf0, 0x19, - 0xcc, 0x54, 0x0d, 0x0c, 0x9b, 0xa8, 0x6d, 0xea, 0x6a, 0xef, 0x09, 0x07, 0x81, 0x37, 0x23, 0xd3, - 0x5f, 0x3e, 0xbd, 0xe9, 0xe7, 0xae, 0x90, 0x3b, 0x21, 0xe3, 0xb2, 0x14, 0x65, 0x04, 0x40, 0x9f, - 0x40, 0x8d, 0x15, 0x62, 0xf0, 0x1b, 0xb6, 0xeb, 0xc9, 0xa1, 0x79, 0x91, 0x46, 0x2c, 0xef, 0x4f, - 0x01, 0x1a, 0xef, 0xa4, 0xfe, 0x3a, 0xac, 0x45, 0xd1, 0x28, 0x23, 0x3b, 0x2f, 0xd3, 0xaa, 0xff, - 0xa6, 0xc0, 0xd9, 0xdd, 0x13, 0x67, 0x98, 0x66, 0xff, 0x35, 0xa8, 0x8d, 0x2d, 0x3d, 0xca, 0x98, - 0xf2, 0x16, 0x75, 0x03, 0x19, 0x6d, 0x6c, 0x10, 0x1b, 0xc2, 0xf6, 0xac, 0x29, 0x60, 0x7b, 0xee, - 0x4c, 0xd3, 0x7e, 0x5d, 0x84, 0xcf, 0xd8, 0x60, 0xd6, 0x8a, 0xa5, 0xa1, 0x96, 0x05, 0x94, 0x5a, - 0xab, 0x4f, 0x00, 0xa8, 0x41, 0x1f, 0x9c, 0xc6, 0x88, 0xd3, 0x1e, 0x9b, 0x44, 0x65, 0xff, 0xa2, - 0x04, 0xdd, 0xd8, 0x2e, 0x7d, 0xdd, 0xfe, 0x4d, 0x4e, 0x54, 0x56, 0x7e, 0x41, 0x51, 0x59, 0x65, - 0x71, 0x9f, 0xa6, 0x2a, 0xf3, 0x69, 0x7e, 0xbb, 0x0c, 0xed, 0x68, 0xd7, 0x76, 0x2c, 0xdd, 0xc9, - 0xe5, 0x84, 0x5d, 0xe1, 0xcf, 0x27, 0xf7, 0xe9, 0x5d, 0x99, 0x9c, 0xe4, 0x1c, 0x84, 0x96, 0x1a, - 0x02, 0x5d, 0xa2, 0x87, 0xee, 0x05, 0x2c, 0xf1, 0xc5, 0x63, 0x08, 0x26, 0x90, 0xa6, 0x8d, 0xd1, - 0x2d, 0x40, 0x5c, 0x8a, 0x06, 0xa6, 0x33, 0xf0, 0xf1, 0xd0, 0x75, 0x0c, 0x26, 0x5f, 0x55, 0xad, - 0xc3, 0xbf, 0xf4, 0x9d, 0x5d, 0x06, 0x47, 0x1f, 0x41, 0x25, 0x38, 0x19, 0x33, 0x6f, 0xa5, 0x2d, - 0xb5, 0xf7, 0xd1, 0xbc, 0xf6, 0x4e, 0xc6, 0x58, 0xa3, 0xe8, 0x61, 0xa5, 0x4e, 0xe0, 0xe9, 0x47, - 0xdc, 0xf5, 0xab, 0x68, 0x31, 0x08, 0xd1, 0x18, 0xe1, 0x1e, 0x2e, 0x31, 0x17, 0x89, 0x37, 0x19, - 0x67, 0x87, 0x42, 0x3b, 0x08, 0x02, 0x8b, 0xa6, 0xee, 0x28, 0x67, 0x87, 0xd0, 0xbd, 0xc0, 0x22, - 0x8b, 0x0c, 0xdc, 0x40, 0xb7, 0x98, 0x7c, 0x34, 0xb8, 0x76, 0x20, 0x10, 0x1a, 0x98, 0xfc, 0x6b, - 0x09, 0x3a, 0xd1, 0xc4, 0x34, 0xec, 0x4f, 0xac, 0x7c, 0x79, 0x9c, 0x9e, 0x3a, 0x99, 0x25, 0x8a, - 0xdf, 0x82, 0x26, 0xe7, 0x8a, 0x53, 0x70, 0x15, 0xb0, 0x2e, 0x9b, 0x53, 0xd8, 0xbc, 0xfa, 0x82, - 0xd8, 0xbc, 0x36, 0x47, 0xf2, 0x41, 0x7e, 0x36, 0xea, 0x4f, 0x15, 0x78, 0x2d, 0xa3, 0x35, 0xa7, - 0x6e, 0xed, 0xf4, 0xd0, 0x8f, 0x6b, 0xd3, 0xf4, 0x90, 0x5c, 0xff, 0xdf, 0x83, 0x9a, 0x47, 0x47, - 0xe7, 0x37, 0x45, 0xd7, 0xa6, 0x32, 0x1f, 0x9b, 0x88, 0xc6, 0xbb, 0xa8, 0x7f, 0xac, 0xc0, 0xf9, - 0xec, 0x54, 0x17, 0x30, 0xea, 0xeb, 0xb0, 0xc4, 0x86, 0x0e, 0x65, 0xf4, 0xc6, 0x74, 0x19, 0x8d, - 0x36, 0x47, 0x0b, 0x3b, 0xaa, 0xbb, 0xb0, 0x16, 0xda, 0xfe, 0x68, 0xeb, 0xb7, 0x70, 0xa0, 0x4f, - 0x09, 0x7c, 0xae, 0x40, 0x93, 0x79, 0xd0, 0x2c, 0xa0, 0x60, 0x29, 0x03, 0x78, 0x2a, 0x32, 0x6d, - 0xea, 0x7f, 0x2a, 0x70, 0x8e, 0x1a, 0xcf, 0xf4, 0xd5, 0x4c, 0x91, 0x6b, 0x3b, 0x55, 0x64, 0x24, - 0xb6, 0x75, 0x9b, 0x97, 0x89, 0x34, 0xb4, 0x04, 0x0c, 0xf5, 0xb3, 0x89, 0x38, 0x69, 0x80, 0x1c, - 0xdd, 0xf3, 0x92, 0x60, 0x9c, 0x5e, 0xf3, 0xa6, 0x33, 0x70, 0x91, 0xd1, 0xae, 0xcc, 0x63, 0xb4, - 0x37, 0xe1, 0xb5, 0xd4, 0x4a, 0x17, 0x38, 0x51, 0xf5, 0xaf, 0x15, 0x72, 0x1c, 0x89, 0x72, 0x9b, - 0xf9, 0x1d, 0xd7, 0x4b, 0xe2, 0x4e, 0x68, 0x60, 0x1a, 0x69, 0x25, 0x62, 0xa0, 0x4f, 0xa1, 0xe1, - 0xe0, 0xe3, 0x41, 0xdc, 0x17, 0x2a, 0xe0, 0xd5, 0xd7, 0x1d, 0x7c, 0x4c, 0x7f, 0xa9, 0xdb, 0x70, - 0x3e, 0x33, 0xd5, 0x45, 0xd6, 0xfe, 0x0f, 0x0a, 0x5c, 0xd8, 0xf0, 0xdc, 0xf1, 0x17, 0xa6, 0x17, - 0x4c, 0x74, 0x2b, 0x79, 0x83, 0xfe, 0x72, 0x32, 0x5b, 0x9f, 0xc7, 0xbc, 0x62, 0xc6, 0x3f, 0xb7, - 0x24, 0x12, 0x94, 0x9d, 0x14, 0x5f, 0x74, 0xcc, 0x87, 0xfe, 0x8f, 0xb2, 0x6c, 0xf2, 0x1c, 0x6f, - 0x86, 0x5f, 0x52, 0x24, 0xc0, 0x90, 0x26, 0xc2, 0xcb, 0xf3, 0x26, 0xc2, 0x73, 0xd4, 0x7b, 0xe5, - 0x05, 0xa9, 0xf7, 0x53, 0x67, 0x66, 0x3e, 0x87, 0xe4, 0x25, 0x05, 0xb5, 0xce, 0x73, 0xdd, 0x6e, - 0xac, 0x03, 0x44, 0x09, 0x7b, 0x5e, 0x2d, 0x59, 0x64, 0x98, 0x58, 0x2f, 0x72, 0x5a, 0xc2, 0x94, - 0x72, 0x4b, 0x1f, 0x4b, 0x21, 0x7f, 0x07, 0x7a, 0x32, 0x2e, 0x5d, 0x84, 0xf3, 0x7f, 0x51, 0x02, - 0xe8, 0x8b, 0x02, 0xdb, 0xf9, 0x6c, 0xc1, 0x35, 0x88, 0x79, 0x23, 0x91, 0xbc, 0xc7, 0xb9, 0xc8, - 0x20, 0x22, 0x21, 0x62, 0x52, 0x82, 0x93, 0x89, 0x53, 0x0d, 0x3a, 0x4e, 0x4c, 0x6a, 0x18, 0x53, - 0xa4, 0xd5, 0xef, 0xeb, 0xd0, 0xf0, 0xdc, 0xe3, 0x01, 0x11, 0x33, 0x23, 0xac, 0x20, 0xf6, 0xdc, - 0x63, 0x22, 0x7c, 0x06, 0x3a, 0x0f, 0x4b, 0x81, 0xee, 0x1f, 0x92, 0xf1, 0x6b, 0xb1, 0x22, 0x0e, - 0x03, 0x9d, 0x83, 0xea, 0xbe, 0x69, 0x61, 0x56, 0x33, 0xd0, 0xd0, 0x58, 0x03, 0x7d, 0x23, 0x2c, - 0x75, 0xab, 0x17, 0x2e, 0xd4, 0x61, 0xd5, 0x6e, 0x5f, 0x29, 0xb0, 0x12, 0xed, 0x1a, 0x55, 0x40, - 0x44, 0xa7, 0x51, 0x7d, 0xf6, 0xc0, 0x35, 0x98, 0xaa, 0x68, 0xe7, 0x58, 0x04, 0xd6, 0x91, 0x69, - 0xad, 0xa8, 0xcb, 0xb4, 0x30, 0x99, 0xac, 0x8b, 0x2c, 0xda, 0x34, 0xc2, 0xc2, 0x95, 0x9a, 0xe7, - 0x1e, 0xf7, 0x0d, 0xb1, 0x1b, 0xac, 0x3c, 0x98, 0x05, 0x85, 0x64, 0x37, 0x1e, 0xd0, 0x0a, 0xe1, - 0x6b, 0xb0, 0x8c, 0x3d, 0xcf, 0xf5, 0x06, 0x36, 0xf6, 0x7d, 0x7d, 0x84, 0xb9, 0x7f, 0xde, 0xa2, - 0xc0, 0x2d, 0x06, 0x53, 0xff, 0xb4, 0x02, 0xed, 0x68, 0x29, 0xe1, 0x35, 0xb9, 0x69, 0x84, 0xd7, - 0xe4, 0x26, 0x39, 0x3a, 0xf0, 0x98, 0x2a, 0x14, 0x87, 0xbb, 0x5e, 0xea, 0x2a, 0x5a, 0x83, 0x43, - 0xfb, 0x06, 0x31, 0xcb, 0x44, 0xc8, 0x1c, 0xd7, 0xc0, 0xd1, 0xe1, 0x42, 0x08, 0xe2, 0x67, 0x9b, - 0xe0, 0x91, 0x4a, 0x01, 0x1e, 0xa9, 0x16, 0xe0, 0x91, 0x9a, 0x84, 0x47, 0xd6, 0xa0, 0xf6, 0x74, - 0x32, 0x3c, 0xc4, 0x01, 0xf7, 0xd8, 0x78, 0x2b, 0xc9, 0x3b, 0xf5, 0x14, 0xef, 0x08, 0x16, 0x69, - 0xc4, 0x59, 0xe4, 0x75, 0x68, 0xb0, 0xfb, 0xda, 0x41, 0xe0, 0xd3, 0xcb, 0xa7, 0xb2, 0x56, 0x67, - 0x80, 0x3d, 0x1f, 0x7d, 0x1c, 0xba, 0x73, 0x4d, 0x99, 0xb0, 0x53, 0xad, 0x93, 0xe2, 0x92, 0xd0, - 0x99, 0x7b, 0x1b, 0x56, 0x62, 0xdb, 0x41, 0x6d, 0x44, 0x8b, 0x4e, 0x35, 0xe6, 0xed, 0x53, 0x33, - 0x71, 0x1d, 0xda, 0xd1, 0x96, 0x50, 0xbc, 0x65, 0x16, 0x64, 0x09, 0x28, 0x45, 0x13, 0x9c, 0xdc, - 0x3e, 0x1d, 0x27, 0xa3, 0x0b, 0x50, 0xe7, 0xd1, 0x91, 0xdf, 0x5d, 0x49, 0x24, 0x2b, 0xd4, 0xef, - 0x03, 0x8a, 0x66, 0xbf, 0x98, 0xb7, 0x98, 0x62, 0x8f, 0x52, 0x9a, 0x3d, 0xd4, 0x9f, 0x29, 0xb0, - 0x1a, 0x27, 0x36, 0xaf, 0xe1, 0xfd, 0x14, 0x9a, 0xec, 0xfa, 0x6f, 0x40, 0x04, 0x9f, 0x27, 0x81, - 0x2e, 0x4d, 0x3d, 0x17, 0x0d, 0xa2, 0x07, 0x06, 0x84, 0xbd, 0x8e, 0x5d, 0xef, 0xd0, 0x74, 0x46, - 0x03, 0x32, 0xb3, 0x50, 0xdc, 0x5a, 0x1c, 0xb8, 0x4d, 0x60, 0xea, 0x8f, 0x15, 0xb8, 0xfc, 0x78, - 0x6c, 0xe8, 0x01, 0x8e, 0x79, 0x20, 0x8b, 0xd6, 0x2c, 0x7e, 0x14, 0x16, 0x0d, 0x96, 0x8a, 0x5d, - 0x61, 0x31, 0x6c, 0xf5, 0x6f, 0xc5, 0x5c, 0xb8, 0x39, 0xa0, 0xf7, 0x9d, 0x63, 0x7a, 0x7f, 0x3c, - 0xf7, 0x5c, 0x7a, 0x50, 0x3f, 0xe2, 0xc3, 0x85, 0x0f, 0x26, 0xc2, 0x76, 0xe2, 0x9a, 0xb4, 0x7c, - 0xfa, 0x6b, 0x52, 0x75, 0x0b, 0x2e, 0x68, 0xd8, 0xc7, 0x8e, 0x91, 0x58, 0xcd, 0xdc, 0xc9, 0xa6, - 0x31, 0xf4, 0x64, 0xc3, 0x2d, 0xc2, 0xac, 0xcc, 0x77, 0x1d, 0x78, 0x64, 0xd8, 0x80, 0xab, 0x62, - 0xe2, 0x32, 0x51, 0x3a, 0x81, 0xfa, 0x37, 0x25, 0x38, 0x7f, 0xdf, 0x30, 0xb8, 0x16, 0xe7, 0xde, - 0xd8, 0xcb, 0x72, 0x94, 0xd3, 0x8e, 0x64, 0x39, 0xeb, 0x48, 0xbe, 0x28, 0xcd, 0xca, 0x6d, 0x8c, - 0x33, 0xb1, 0x43, 0xdb, 0xe9, 0xb1, 0xfa, 0xa1, 0x7b, 0xfc, 0xde, 0x8c, 0x04, 0xf4, 0xd4, 0x7e, - 0xce, 0xf6, 0xaf, 0xea, 0x61, 0xd2, 0x4c, 0x1d, 0x43, 0x37, 0xbb, 0x59, 0x0b, 0xaa, 0x92, 0x70, - 0x47, 0xc6, 0x2e, 0x4b, 0xb0, 0xb6, 0x88, 0x0b, 0x45, 0x41, 0x3b, 0xae, 0xaf, 0xfe, 0x57, 0x09, - 0xba, 0xbb, 0xfa, 0x11, 0xfe, 0xff, 0x73, 0x40, 0xdf, 0x85, 0x73, 0xbe, 0x7e, 0x84, 0x07, 0xb1, - 0xc0, 0x78, 0xe0, 0xe1, 0x67, 0xdc, 0x05, 0x7d, 0x47, 0xa6, 0x49, 0xa4, 0x65, 0x36, 0xda, 0xaa, - 0x9f, 0x80, 0x6b, 0xf8, 0x19, 0x7a, 0x0b, 0x56, 0xe2, 0x75, 0x5c, 0x64, 0x6a, 0x75, 0xba, 0xe5, - 0xcb, 0xb1, 0x32, 0xad, 0xbe, 0xa1, 0x3e, 0x83, 0x8b, 0x8f, 0x1d, 0x1f, 0x07, 0xfd, 0xa8, 0xd4, - 0x68, 0xc1, 0x10, 0xf2, 0x0a, 0x34, 0xa3, 0x8d, 0xcf, 0x3c, 0x92, 0x30, 0x7c, 0xd5, 0x85, 0xde, - 0x96, 0xee, 0x1d, 0x86, 0x69, 0xe6, 0x0d, 0x56, 0x12, 0xf2, 0x12, 0x09, 0xee, 0x8b, 0x0a, 0x29, - 0x0d, 0xef, 0x63, 0x0f, 0x3b, 0x43, 0xbc, 0xe9, 0x0e, 0x0f, 0x63, 0x95, 0xc3, 0x4a, 0xbc, 0x72, - 0x78, 0xde, 0x4a, 0x64, 0xf5, 0xe7, 0x25, 0x58, 0xbb, 0x6f, 0x05, 0xd8, 0x8b, 0x22, 0xff, 0xd3, - 0x24, 0x31, 0xa2, 0xac, 0x42, 0x69, 0x8e, 0xac, 0x42, 0xa6, 0x08, 0xbe, 0x9c, 0x2d, 0x82, 0x97, - 0xe5, 0x40, 0x2a, 0x73, 0xe6, 0x40, 0xee, 0x03, 0x8c, 0x3d, 0x77, 0x8c, 0xbd, 0xc0, 0xc4, 0x61, - 0xf8, 0x56, 0xc0, 0x7d, 0x89, 0x75, 0xba, 0xf9, 0xa9, 0xa8, 0xf2, 0xdc, 0x3b, 0x19, 0x63, 0xb4, - 0x04, 0xe5, 0x6d, 0x7c, 0xdc, 0x39, 0x83, 0x00, 0x6a, 0xdb, 0xae, 0x67, 0xeb, 0x56, 0x47, 0x41, - 0x4d, 0x58, 0xe2, 0x97, 0x5a, 0x9d, 0x12, 0x5a, 0x86, 0xc6, 0x83, 0xf0, 0x62, 0xa0, 0x53, 0xbe, - 0xf9, 0xe7, 0x0a, 0xac, 0x66, 0xae, 0x5d, 0x50, 0x1b, 0xe0, 0xb1, 0x33, 0xe4, 0xf7, 0x51, 0x9d, - 0x33, 0xa8, 0x05, 0xf5, 0xf0, 0x76, 0x8a, 0x8d, 0xb7, 0xe7, 0x52, 0xec, 0x4e, 0x09, 0x75, 0xa0, - 0xc5, 0x3a, 0x4e, 0x86, 0x43, 0xec, 0xfb, 0x9d, 0xb2, 0x80, 0x3c, 0xd4, 0x4d, 0x6b, 0xe2, 0xe1, - 0x4e, 0x85, 0xd0, 0xdc, 0x73, 0x79, 0x9d, 0x7b, 0xa7, 0x8a, 0x10, 0xb4, 0xc3, 0xa2, 0x77, 0xde, - 0xa9, 0x16, 0x83, 0x85, 0xdd, 0x96, 0x6e, 0x3e, 0x89, 0x27, 0xcf, 0xe9, 0xf2, 0xce, 0xc3, 0xd9, - 0xc7, 0x8e, 0x81, 0xf7, 0x4d, 0x07, 0x1b, 0xd1, 0xa7, 0xce, 0x19, 0x74, 0x16, 0x56, 0xb6, 0xb0, - 0x37, 0xc2, 0x31, 0x60, 0x09, 0xad, 0xc2, 0xf2, 0x96, 0xf9, 0x3c, 0x06, 0x2a, 0xab, 0x95, 0xba, - 0xd2, 0x51, 0xee, 0xfe, 0xde, 0x25, 0x68, 0x90, 0x43, 0x79, 0xe0, 0xba, 0x9e, 0x81, 0x2c, 0x40, - 0xf4, 0x59, 0x88, 0x3d, 0x76, 0x1d, 0xf1, 0xd8, 0x0a, 0xdd, 0x4e, 0x9e, 0x03, 0x6f, 0x64, 0x11, - 0x39, 0x77, 0xf6, 0xde, 0x94, 0xe2, 0xa7, 0x90, 0xd5, 0x33, 0xc8, 0xa6, 0xd4, 0xf6, 0x4c, 0x1b, - 0xef, 0x99, 0xc3, 0xc3, 0xd0, 0xb3, 0x78, 0x3f, 0xc7, 0x8f, 0xc8, 0xa2, 0x86, 0xf4, 0xae, 0x49, - 0xe9, 0xb1, 0x77, 0x3b, 0xa1, 0x95, 0x51, 0xcf, 0xa0, 0x67, 0x70, 0xee, 0x11, 0x8e, 0x39, 0x69, - 0x21, 0xc1, 0xbb, 0xf9, 0x04, 0x33, 0xc8, 0xa7, 0x24, 0xb9, 0x09, 0x55, 0xca, 0x6e, 0x48, 0xe6, - 0xc7, 0xc5, 0xdf, 0x45, 0xf7, 0xae, 0xe6, 0x23, 0x88, 0xd1, 0xbe, 0x0f, 0x2b, 0xa9, 0xd7, 0x94, - 0x48, 0xa6, 0xd5, 0xe5, 0xef, 0x62, 0x7b, 0x37, 0x8b, 0xa0, 0x0a, 0x5a, 0x23, 0x68, 0x27, 0x9f, - 0x93, 0x20, 0x59, 0x66, 0x57, 0xfa, 0x10, 0xae, 0xf7, 0x4e, 0x01, 0x4c, 0x41, 0xc8, 0x86, 0x4e, - 0xfa, 0x75, 0x1f, 0xba, 0x39, 0x75, 0x80, 0x24, 0xb3, 0xbd, 0x5b, 0x08, 0x57, 0x90, 0x3b, 0xa1, - 0x4c, 0x90, 0x79, 0x30, 0x96, 0xe6, 0xf1, 0x70, 0x98, 0xbc, 0x97, 0x6c, 0xbd, 0x3b, 0x85, 0xf1, - 0x05, 0xe9, 0xdf, 0x61, 0x55, 0x2b, 0xb2, 0x47, 0x57, 0xe8, 0x03, 0xf9, 0x70, 0x53, 0x5e, 0x8b, - 0xf5, 0xee, 0x9e, 0xa6, 0x8b, 0x98, 0xc4, 0x0f, 0x69, 0xb9, 0x89, 0xe4, 0xd9, 0x52, 0x5a, 0xee, - 0xc2, 0xf1, 0xf2, 0x5f, 0x64, 0xf5, 0x3e, 0x38, 0x45, 0x0f, 0x31, 0x01, 0x37, 0xfd, 0x7c, 0x32, - 0x14, 0xc3, 0x3b, 0x33, 0xb9, 0x66, 0x3e, 0x19, 0xfc, 0x1e, 0xac, 0xa4, 0xfc, 0x1c, 0x54, 0xdc, - 0x17, 0xea, 0x4d, 0x73, 0x46, 0x99, 0x48, 0xa6, 0xaa, 0x77, 0x50, 0x0e, 0xf7, 0x4b, 0x2a, 0x7c, - 0x7a, 0x37, 0x8b, 0xa0, 0x8a, 0x85, 0xf8, 0x54, 0x5d, 0xa6, 0x6a, 0x32, 0xd0, 0x2d, 0xf9, 0x18, - 0xf2, 0xda, 0x93, 0xde, 0x7b, 0x05, 0xb1, 0x05, 0xd1, 0x23, 0x38, 0x2b, 0x29, 0x9d, 0x41, 0xef, - 0x4d, 0x3d, 0xac, 0x74, 0xcd, 0x50, 0xef, 0x76, 0x51, 0x74, 0x41, 0xf7, 0xb7, 0x00, 0xed, 0x1e, - 0xb8, 0xc7, 0x0f, 0x5c, 0x67, 0xdf, 0x1c, 0x4d, 0x3c, 0x9d, 0x79, 0x09, 0x79, 0xb6, 0x21, 0x8b, - 0x9a, 0xc3, 0xa3, 0x53, 0x7b, 0x08, 0xe2, 0x03, 0x80, 0x47, 0x38, 0xd8, 0xc2, 0x81, 0x47, 0x04, - 0xe3, 0xad, 0x3c, 0xf3, 0xc7, 0x11, 0x42, 0x52, 0x6f, 0xcf, 0xc4, 0x8b, 0x99, 0xa2, 0xce, 0x96, - 0xee, 0x4c, 0x74, 0x2b, 0x56, 0xfb, 0x7f, 0x4b, 0xda, 0x3d, 0x8d, 0x96, 0x73, 0x90, 0xb9, 0xd8, - 0x82, 0xe4, 0xb1, 0x30, 0xed, 0xb1, 0xab, 0xb8, 0xe9, 0xa6, 0x3d, 0x5b, 0x06, 0x92, 0x56, 0x7b, - 0x53, 0xf0, 0x05, 0xe1, 0x2f, 0x15, 0x5a, 0x7d, 0x95, 0x42, 0x78, 0x62, 0x06, 0x07, 0x3b, 0x96, - 0xee, 0xf8, 0x45, 0xa6, 0x40, 0x11, 0x4f, 0x31, 0x05, 0x8e, 0x2f, 0xa6, 0x60, 0xc0, 0x72, 0xe2, - 0x86, 0x0c, 0xc9, 0x8a, 0xe5, 0x65, 0xb7, 0x85, 0xbd, 0x1b, 0xb3, 0x11, 0x05, 0x95, 0x03, 0x58, - 0x0e, 0x45, 0x89, 0x6d, 0xee, 0x3b, 0x79, 0x33, 0x8d, 0x70, 0x72, 0x34, 0x81, 0x1c, 0x35, 0xae, - 0x09, 0xb2, 0x17, 0x00, 0xa8, 0xd8, 0xc5, 0xd1, 0x34, 0x4d, 0x90, 0x7f, 0xab, 0xc0, 0x54, 0x5d, - 0xea, 0xb2, 0x4d, 0xae, 0x47, 0xa5, 0x77, 0x87, 0x52, 0x55, 0x97, 0x73, 0x77, 0xa7, 0x9e, 0x41, - 0x4f, 0xa0, 0xc6, 0xff, 0x0c, 0xe4, 0xcd, 0xe9, 0x49, 0x3b, 0x3e, 0xfa, 0xf5, 0x19, 0x58, 0x62, - 0xe0, 0x43, 0x38, 0x9f, 0x93, 0xb2, 0x93, 0x9a, 0xe0, 0xe9, 0xe9, 0xbd, 0x59, 0xc6, 0x41, 0x10, - 0xcb, 0xe4, 0xe4, 0xa6, 0x10, 0xcb, 0xcb, 0xdf, 0xcd, 0x22, 0xa6, 0x03, 0xca, 0x3e, 0xef, 0x95, - 0xf2, 0x44, 0xee, 0x2b, 0xe0, 0x02, 0x24, 0xb2, 0x2f, 0x74, 0xa5, 0x24, 0x72, 0x1f, 0xf2, 0xce, - 0x22, 0x31, 0x80, 0xd5, 0x4c, 0xd2, 0x06, 0xbd, 0x9b, 0x63, 0xae, 0x65, 0xa9, 0x9d, 0x59, 0x04, - 0x46, 0xf0, 0x9a, 0x34, 0x41, 0x21, 0x75, 0x3f, 0xa6, 0xa5, 0x32, 0x66, 0x11, 0x1a, 0xc2, 0x59, - 0x49, 0x5a, 0x42, 0x6a, 0x38, 0xf3, 0xd3, 0x17, 0xb3, 0x88, 0xec, 0x43, 0x6f, 0xdd, 0x73, 0x75, - 0x63, 0xa8, 0xfb, 0x01, 0x4d, 0x15, 0x90, 0x58, 0x30, 0xf4, 0xff, 0xe4, 0xc1, 0x81, 0x34, 0xa1, - 0x30, 0x8b, 0xce, 0x53, 0x68, 0x52, 0x86, 0x64, 0x7f, 0x36, 0x81, 0xe4, 0x96, 0x2e, 0x86, 0x91, - 0xa3, 0x3e, 0x65, 0x88, 0xa1, 0x68, 0xde, 0xfd, 0xaa, 0x01, 0xf5, 0xf0, 0xbd, 0xc2, 0xd7, 0x1c, - 0x88, 0xbe, 0x82, 0xc8, 0xf0, 0x7b, 0xb0, 0x92, 0x7a, 0x3b, 0x2c, 0x3d, 0x2e, 0xf9, 0xfb, 0xe2, - 0x59, 0xc7, 0xf5, 0x84, 0xff, 0xb3, 0x95, 0x70, 0x12, 0xdf, 0xce, 0x8b, 0x2e, 0xd3, 0xfe, 0xe1, - 0x8c, 0x81, 0xff, 0x6f, 0x7b, 0x65, 0xdb, 0x00, 0x31, 0x7f, 0x6c, 0x7a, 0x55, 0x1f, 0x71, 0x31, - 0x66, 0xed, 0x96, 0x2d, 0x75, 0xb9, 0xde, 0x29, 0x52, 0x21, 0x95, 0x6f, 0x34, 0xf3, 0x1d, 0xad, - 0xc7, 0xd0, 0x8a, 0xd7, 0xdb, 0x22, 0xe9, 0xff, 0x28, 0x65, 0x0b, 0x72, 0x67, 0xad, 0x62, 0xeb, - 0x94, 0xb6, 0x78, 0xc6, 0x70, 0x3e, 0x31, 0x22, 0xe9, 0x9b, 0x9a, 0x1c, 0x23, 0x92, 0x73, 0x3f, - 0x24, 0xf5, 0x5d, 0xf2, 0xaf, 0x7f, 0x58, 0x92, 0x21, 0x7d, 0xfd, 0x20, 0x4d, 0x32, 0xe4, 0x5c, - 0xe8, 0x48, 0x93, 0x0c, 0x79, 0xf7, 0x19, 0xea, 0x99, 0xf5, 0x0f, 0xbf, 0xfb, 0xc1, 0xc8, 0x0c, - 0x0e, 0x26, 0x4f, 0xc9, 0xea, 0xef, 0xb0, 0xae, 0xef, 0x99, 0x2e, 0xff, 0x75, 0x27, 0x64, 0xf7, - 0x3b, 0x74, 0xb4, 0x3b, 0x64, 0xb4, 0xf1, 0xd3, 0xa7, 0x35, 0xda, 0xfa, 0xf0, 0x7f, 0x02, 0x00, - 0x00, 0xff, 0xff, 0xa1, 0x91, 0x6d, 0xaf, 0x9b, 0x4f, 0x00, 0x00, + // 4492 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3c, 0x4d, 0x6c, 0x1c, 0x59, + 0x5a, 0xa9, 0xfe, 0x73, 0xf7, 0xd7, 0xed, 0x76, 0xfb, 0x25, 0xe3, 0x74, 0x3a, 0xbf, 0x53, 0x99, + 0xcc, 0x64, 0x32, 0x99, 0x64, 0x26, 0xc3, 0x68, 0xc3, 0x66, 0x67, 0x96, 0xd8, 0x4e, 0x32, 0x0d, + 0xb6, 0xd7, 0x5b, 0x76, 0x26, 0xd2, 0x2e, 0x52, 0xab, 0xdc, 0xf5, 0xdc, 0xae, 0x75, 0x75, 0x55, + 0xa7, 0xaa, 0xda, 0x8e, 0x97, 0xc3, 0x0e, 0x20, 0x81, 0x16, 0x21, 0x16, 0x21, 0x21, 0xe0, 0x80, + 0x84, 0x38, 0x2d, 0x8b, 0x16, 0x21, 0xad, 0xb8, 0x70, 0xe1, 0x3a, 0x82, 0xc3, 0x08, 0x21, 0x71, + 0xe4, 0x08, 0xdc, 0xb9, 0x72, 0x40, 0xef, 0xa7, 0x5e, 0xfd, 0xbd, 0xea, 0x2e, 0x77, 0x27, 0x13, + 0x04, 0xb7, 0x7e, 0x5f, 0x7d, 0xef, 0x7b, 0x7f, 0xdf, 0xff, 0xfb, 0x5e, 0x43, 0xcb, 0xd0, 0x7d, + 0xbd, 0xd7, 0x77, 0x1c, 0xd7, 0xb8, 0x33, 0x72, 0x1d, 0xdf, 0x41, 0xcb, 0x43, 0xd3, 0x3a, 0x1a, + 0x7b, 0xac, 0x75, 0x87, 0x7c, 0xee, 0x34, 0xfa, 0xce, 0x70, 0xe8, 0xd8, 0x0c, 0xd4, 0x69, 0x9a, + 0xb6, 0x8f, 0x5d, 0x5b, 0xb7, 0x78, 0xbb, 0x11, 0xed, 0xd0, 0x69, 0x78, 0xfd, 0x03, 0x3c, 0xd4, + 0x59, 0x4b, 0x5d, 0x80, 0xf2, 0xa3, 0xe1, 0xc8, 0x3f, 0x51, 0xff, 0x54, 0x81, 0xc6, 0x63, 0x6b, + 0xec, 0x1d, 0x68, 0xf8, 0xf9, 0x18, 0x7b, 0x3e, 0xfa, 0x00, 0x4a, 0x7b, 0xba, 0x87, 0xdb, 0xca, + 0x35, 0xe5, 0x66, 0xfd, 0xde, 0xa5, 0x3b, 0xb1, 0x51, 0xf9, 0x78, 0x9b, 0xde, 0x60, 0x55, 0xf7, + 0xb0, 0x46, 0x31, 0x11, 0x82, 0x92, 0xb1, 0xd7, 0x5d, 0x6f, 0x17, 0xae, 0x29, 0x37, 0x8b, 0x1a, + 0xfd, 0x8d, 0xae, 0x00, 0x78, 0x78, 0x30, 0xc4, 0xb6, 0xdf, 0x5d, 0xf7, 0xda, 0xc5, 0x6b, 0xc5, + 0x9b, 0x45, 0x2d, 0x02, 0x41, 0x2a, 0x34, 0xfa, 0x8e, 0x65, 0xe1, 0xbe, 0x6f, 0x3a, 0x76, 0x77, + 0xbd, 0x5d, 0xa2, 0x7d, 0x63, 0x30, 0xf5, 0xdf, 0x15, 0x58, 0xe4, 0x53, 0xf3, 0x46, 0x8e, 0xed, + 0x61, 0xf4, 0x11, 0x54, 0x3c, 0x5f, 0xf7, 0xc7, 0x1e, 0x9f, 0xdd, 0x45, 0xe9, 0xec, 0x76, 0x28, + 0x8a, 0xc6, 0x51, 0xa5, 0xd3, 0x4b, 0x0e, 0x5f, 0x4c, 0x0f, 0x9f, 0x58, 0x42, 0x29, 0xb5, 0x84, + 0x9b, 0xb0, 0xb4, 0x4f, 0x66, 0xb7, 0x13, 0x22, 0x95, 0x29, 0x52, 0x12, 0x4c, 0x28, 0xf9, 0xe6, + 0x10, 0x7f, 0x67, 0x7f, 0x07, 0xeb, 0x56, 0xbb, 0x42, 0xc7, 0x8a, 0x40, 0xd4, 0x7f, 0x56, 0xa0, + 0x25, 0xd0, 0x83, 0x73, 0x38, 0x07, 0xe5, 0xbe, 0x33, 0xb6, 0x7d, 0xba, 0xd4, 0x45, 0x8d, 0x35, + 0xd0, 0x9b, 0xd0, 0xe8, 0x1f, 0xe8, 0xb6, 0x8d, 0xad, 0x9e, 0xad, 0x0f, 0x31, 0x5d, 0x54, 0x4d, + 0xab, 0x73, 0xd8, 0x96, 0x3e, 0xc4, 0xb9, 0xd6, 0x76, 0x0d, 0xea, 0x23, 0xdd, 0xf5, 0xcd, 0xd8, + 0xee, 0x47, 0x41, 0xa8, 0x03, 0x55, 0xd3, 0xeb, 0x0e, 0x47, 0x8e, 0xeb, 0xb7, 0xcb, 0xd7, 0x94, + 0x9b, 0x55, 0x4d, 0xb4, 0xc9, 0x08, 0x26, 0xfd, 0xb5, 0xab, 0x7b, 0x87, 0xdd, 0x75, 0xbe, 0xa2, + 0x18, 0x4c, 0xfd, 0x0b, 0x05, 0x56, 0x1e, 0x7a, 0x9e, 0x39, 0xb0, 0x53, 0x2b, 0x5b, 0x81, 0x8a, + 0xed, 0x18, 0xb8, 0xbb, 0x4e, 0x97, 0x56, 0xd4, 0x78, 0x0b, 0x5d, 0x84, 0xda, 0x08, 0x63, 0xb7, + 0xe7, 0x3a, 0x56, 0xb0, 0xb0, 0x2a, 0x01, 0x68, 0x8e, 0x85, 0xd1, 0x77, 0x61, 0xd9, 0x4b, 0x10, + 0x62, 0x7c, 0x55, 0xbf, 0x77, 0xfd, 0x4e, 0x4a, 0x32, 0xee, 0x24, 0x07, 0xd5, 0xd2, 0xbd, 0xd5, + 0x2f, 0x0a, 0x70, 0x56, 0xe0, 0xb1, 0xb9, 0x92, 0xdf, 0x64, 0xe7, 0x3d, 0x3c, 0x10, 0xd3, 0x63, + 0x8d, 0x3c, 0x3b, 0x2f, 0x8e, 0xac, 0x18, 0x3d, 0xb2, 0x1c, 0xac, 0x9e, 0x3c, 0x8f, 0x72, 0xfa, + 0x3c, 0xae, 0x42, 0x1d, 0xbf, 0x18, 0x99, 0x2e, 0xee, 0x11, 0xc6, 0xa1, 0x5b, 0x5e, 0xd2, 0x80, + 0x81, 0x76, 0xcd, 0x61, 0x54, 0x36, 0x16, 0x72, 0xcb, 0x86, 0xfa, 0x97, 0x0a, 0x9c, 0x4f, 0x9d, + 0x12, 0x17, 0x36, 0x0d, 0x5a, 0x74, 0xe5, 0xe1, 0xce, 0x10, 0xb1, 0x23, 0x1b, 0xfe, 0xf6, 0xa4, + 0x0d, 0x0f, 0xd1, 0xb5, 0x54, 0xff, 0xc8, 0x24, 0x0b, 0xf9, 0x27, 0x79, 0x08, 0xe7, 0x9f, 0x60, + 0x9f, 0x0f, 0x40, 0xbe, 0x61, 0x6f, 0x76, 0x65, 0x15, 0x97, 0xea, 0x42, 0x52, 0xaa, 0xd5, 0xbf, + 0x2d, 0x08, 0x59, 0xa4, 0x43, 0x75, 0xed, 0x7d, 0x07, 0x5d, 0x82, 0x9a, 0x40, 0xe1, 0x5c, 0x11, + 0x02, 0xd0, 0x37, 0xa0, 0x4c, 0x66, 0xca, 0x58, 0xa2, 0x79, 0xef, 0x4d, 0xf9, 0x9a, 0x22, 0x34, + 0x35, 0x86, 0x8f, 0xba, 0xd0, 0xf4, 0x7c, 0xdd, 0xf5, 0x7b, 0x23, 0xc7, 0xa3, 0xe7, 0x4c, 0x19, + 0xa7, 0x7e, 0x4f, 0x8d, 0x53, 0x10, 0x6a, 0x7d, 0xd3, 0x1b, 0x6c, 0x73, 0x4c, 0x6d, 0x91, 0xf6, + 0x0c, 0x9a, 0xe8, 0x11, 0x34, 0xb0, 0x6d, 0x84, 0x84, 0x4a, 0xb9, 0x09, 0xd5, 0xb1, 0x6d, 0x08, + 0x32, 0xe1, 0xf9, 0x94, 0xf3, 0x9f, 0xcf, 0xef, 0x2b, 0xd0, 0x4e, 0x1f, 0xd0, 0x3c, 0x2a, 0xfb, + 0x01, 0xeb, 0x84, 0xd9, 0x01, 0x4d, 0x94, 0x70, 0x71, 0x48, 0x1a, 0xef, 0xa2, 0xfe, 0xb1, 0x02, + 0x6f, 0x84, 0xd3, 0xa1, 0x9f, 0x5e, 0x15, 0xb7, 0xa0, 0x5b, 0xd0, 0x32, 0xed, 0xbe, 0x35, 0x36, + 0xf0, 0x53, 0xfb, 0x33, 0xac, 0x5b, 0xfe, 0xc1, 0x09, 0x3d, 0xc3, 0xaa, 0x96, 0x82, 0xab, 0xff, + 0x56, 0x80, 0x95, 0xe4, 0xbc, 0xe6, 0xd9, 0xa4, 0x5f, 0x82, 0xb2, 0x69, 0xef, 0x3b, 0xc1, 0x1e, + 0x5d, 0x99, 0x20, 0x94, 0x64, 0x2c, 0x86, 0x8c, 0x1c, 0x40, 0x81, 0x1a, 0xeb, 0x1f, 0xe0, 0xfe, + 0xe1, 0xc8, 0x31, 0xa9, 0xc2, 0x22, 0x24, 0x7e, 0x45, 0x42, 0x42, 0x3e, 0xe3, 0x3b, 0x6b, 0x8c, + 0xc6, 0x9a, 0x20, 0xf1, 0xc8, 0xf6, 0xdd, 0x13, 0x6d, 0xb9, 0x9f, 0x84, 0x77, 0x0e, 0x60, 0x45, + 0x8e, 0x8c, 0x5a, 0x50, 0x3c, 0xc4, 0x27, 0x74, 0xc9, 0x35, 0x8d, 0xfc, 0x44, 0xf7, 0xa1, 0x7c, + 0xa4, 0x5b, 0x63, 0xcc, 0xb5, 0x43, 0x1e, 0xf6, 0x65, 0x1d, 0xbe, 0x59, 0xb8, 0xaf, 0xa8, 0x43, + 0xb8, 0xf8, 0x04, 0xfb, 0x5d, 0xdb, 0xc3, 0xae, 0xbf, 0x6a, 0xda, 0x96, 0x33, 0xd8, 0xd6, 0xfd, + 0x83, 0x39, 0x74, 0x45, 0x4c, 0xec, 0x0b, 0x09, 0xb1, 0x57, 0x7f, 0xaa, 0xc0, 0x25, 0xf9, 0x78, + 0xfc, 0x54, 0x3b, 0x50, 0xdd, 0x37, 0xb1, 0x65, 0x10, 0xd6, 0x51, 0x28, 0xeb, 0x88, 0x36, 0xd1, + 0x19, 0x23, 0x82, 0xcc, 0x0f, 0xef, 0xcd, 0x8c, 0x95, 0xee, 0xf8, 0xae, 0x69, 0x0f, 0x36, 0x4c, + 0xcf, 0xd7, 0x18, 0x7e, 0x84, 0x55, 0x8a, 0xf9, 0x25, 0xf4, 0xf7, 0x14, 0xb8, 0xf2, 0x04, 0xfb, + 0x6b, 0xc2, 0xe4, 0x90, 0xef, 0xa6, 0xe7, 0x9b, 0x7d, 0xef, 0xe5, 0xba, 0x7d, 0x39, 0x7c, 0x0f, + 0xf5, 0x27, 0x0a, 0x5c, 0xcd, 0x9c, 0x0c, 0xdf, 0x3a, 0xae, 0x52, 0x03, 0x83, 0x23, 0x57, 0xa9, + 0xbf, 0x86, 0x4f, 0x3e, 0x27, 0x87, 0xbf, 0xad, 0x9b, 0x2e, 0x53, 0xa9, 0x33, 0x1a, 0x98, 0x9f, + 0x2b, 0x70, 0xf9, 0x09, 0xf6, 0xb7, 0x03, 0x73, 0xfb, 0x1a, 0x77, 0x87, 0xe0, 0x44, 0xcc, 0x7e, + 0xe0, 0x77, 0xc6, 0x60, 0xea, 0x1f, 0xb0, 0xe3, 0x94, 0xce, 0xf7, 0xb5, 0x6c, 0xe0, 0x15, 0x2a, + 0x09, 0x11, 0x3d, 0xc1, 0x25, 0x9e, 0x6f, 0x9f, 0xfa, 0xe7, 0x0a, 0x5c, 0x78, 0xd8, 0x7f, 0x3e, + 0x36, 0x5d, 0xcc, 0x91, 0x36, 0x9c, 0xfe, 0xe1, 0xec, 0x9b, 0x1b, 0x7a, 0x90, 0x85, 0x98, 0x07, + 0x39, 0x2d, 0xea, 0x58, 0x81, 0x8a, 0xcf, 0x5c, 0x56, 0xe6, 0x84, 0xf1, 0x16, 0x9d, 0x9f, 0x86, + 0x2d, 0xac, 0x7b, 0xff, 0x3b, 0xe7, 0xf7, 0x93, 0x12, 0x34, 0x3e, 0xe7, 0xaa, 0x95, 0x3a, 0x24, + 0x49, 0x4e, 0x52, 0xe4, 0x3e, 0x65, 0xc4, 0x39, 0x95, 0xf9, 0xab, 0x4f, 0x60, 0xd1, 0xc3, 0xf8, + 0x70, 0x16, 0xf7, 0xa3, 0x41, 0x3a, 0x0a, 0xb7, 0x61, 0x03, 0x96, 0xc7, 0x36, 0x8d, 0x7a, 0xb0, + 0xc1, 0x37, 0x90, 0x71, 0xee, 0x74, 0xb3, 0x94, 0xee, 0x88, 0x3e, 0xe3, 0x81, 0x55, 0x84, 0x56, + 0x39, 0x17, 0xad, 0x64, 0x37, 0xd4, 0x85, 0x96, 0xe1, 0x3a, 0xa3, 0x11, 0x36, 0x7a, 0x5e, 0x40, + 0xaa, 0x92, 0x8f, 0x14, 0xef, 0x27, 0x48, 0x7d, 0x00, 0x67, 0x93, 0x33, 0xed, 0x1a, 0xc4, 0xd7, + 0x26, 0x67, 0x28, 0xfb, 0x84, 0x6e, 0xc3, 0x72, 0x1a, 0xbf, 0x4a, 0xf1, 0xd3, 0x1f, 0xd0, 0xfb, + 0x80, 0x12, 0x53, 0x25, 0xe8, 0x35, 0x86, 0x1e, 0x9f, 0x4c, 0xd7, 0xf0, 0xd4, 0x1f, 0x2b, 0xb0, + 0xf2, 0x4c, 0xf7, 0xfb, 0x07, 0xeb, 0x43, 0x2e, 0x6b, 0x73, 0xe8, 0xaa, 0x4f, 0xa0, 0x76, 0xc4, + 0xf9, 0x22, 0x30, 0x48, 0x57, 0x25, 0xfb, 0x13, 0xe5, 0x40, 0x2d, 0xec, 0x41, 0x42, 0xbd, 0x73, + 0x8f, 0x23, 0x21, 0xef, 0x6b, 0xd0, 0x9a, 0x53, 0x62, 0x75, 0xf5, 0x05, 0x00, 0x9f, 0xdc, 0xa6, + 0x37, 0x98, 0x61, 0x5e, 0xf7, 0x61, 0x81, 0x53, 0xe3, 0x6a, 0x71, 0x1a, 0xff, 0x04, 0xe8, 0xea, + 0xcf, 0x2a, 0x50, 0x8f, 0x7c, 0x40, 0x4d, 0x28, 0x08, 0x79, 0x2d, 0x48, 0x56, 0x57, 0x98, 0x1e, + 0x1d, 0x16, 0xd3, 0xd1, 0xe1, 0x0d, 0x68, 0x9a, 0xd4, 0x0f, 0xe9, 0xf1, 0x53, 0xa1, 0x0a, 0xa4, + 0xa6, 0x2d, 0x32, 0x28, 0x67, 0x11, 0x74, 0x05, 0xea, 0xf6, 0x78, 0xd8, 0x73, 0xf6, 0x7b, 0xae, + 0x73, 0xec, 0xf1, 0x30, 0xb3, 0x66, 0x8f, 0x87, 0xdf, 0xd9, 0xd7, 0x9c, 0x63, 0x2f, 0x8c, 0x64, + 0x2a, 0xa7, 0x8c, 0x64, 0xae, 0x40, 0x7d, 0xa8, 0xbf, 0x20, 0x54, 0x7b, 0xf6, 0x78, 0x48, 0x23, + 0xd0, 0xa2, 0x56, 0x1b, 0xea, 0x2f, 0x34, 0xe7, 0x78, 0x6b, 0x3c, 0x44, 0x37, 0xa1, 0x65, 0xe9, + 0x9e, 0xdf, 0x8b, 0x86, 0xb0, 0x55, 0x1a, 0xc2, 0x36, 0x09, 0xfc, 0x51, 0x18, 0xc6, 0xa6, 0x63, + 0xa2, 0xda, 0x1c, 0x31, 0x91, 0x31, 0xb4, 0x42, 0x42, 0x90, 0x3f, 0x26, 0x32, 0x86, 0x96, 0x20, + 0x73, 0x1f, 0x16, 0xf6, 0xa8, 0x77, 0xe7, 0xb5, 0xeb, 0x99, 0xba, 0xe3, 0x31, 0x71, 0xec, 0x98, + 0x13, 0xa8, 0x05, 0xe8, 0xe8, 0x5b, 0x50, 0xa3, 0x46, 0x95, 0xf6, 0x6d, 0xe4, 0xea, 0x1b, 0x76, + 0x20, 0xbd, 0x0d, 0x6c, 0xf9, 0x3a, 0xed, 0xbd, 0x98, 0xaf, 0xb7, 0xe8, 0x40, 0xf4, 0x55, 0xdf, + 0xc5, 0xba, 0x8f, 0x8d, 0xd5, 0x93, 0x35, 0x67, 0x38, 0xd2, 0x29, 0x33, 0xb5, 0x9b, 0x34, 0x38, + 0x91, 0x7d, 0x42, 0x6f, 0x43, 0xb3, 0x2f, 0x5a, 0x8f, 0x5d, 0x67, 0xd8, 0x5e, 0xa2, 0x72, 0x94, + 0x80, 0xa2, 0xcb, 0x00, 0x81, 0xa6, 0xd2, 0xfd, 0x76, 0x8b, 0x9e, 0x62, 0x8d, 0x43, 0x1e, 0xd2, + 0x0c, 0x95, 0xe9, 0xf5, 0x58, 0x2e, 0xc8, 0xb4, 0x07, 0xed, 0x65, 0x3a, 0x62, 0x3d, 0x48, 0x1e, + 0x99, 0xf6, 0x00, 0x9d, 0x87, 0x05, 0xd3, 0xeb, 0xed, 0xeb, 0x87, 0xb8, 0x8d, 0xe8, 0xd7, 0x8a, + 0xe9, 0x3d, 0xd6, 0x0f, 0xb1, 0xfa, 0x23, 0x38, 0x17, 0x72, 0x57, 0xe4, 0x24, 0xd3, 0x4c, 0xa1, + 0xcc, 0xca, 0x14, 0x93, 0x7d, 0xfa, 0xaf, 0x4a, 0xb0, 0xb2, 0xa3, 0x1f, 0xe1, 0x57, 0x1f, 0x3e, + 0xe4, 0x52, 0x6b, 0x1b, 0xb0, 0x4c, 0x23, 0x86, 0x7b, 0x91, 0xf9, 0x4c, 0xb0, 0xab, 0x51, 0x56, + 0x48, 0x77, 0x44, 0xdf, 0x26, 0x0e, 0x01, 0xee, 0x1f, 0x6e, 0x93, 0x10, 0x2c, 0xb0, 0xa9, 0x97, + 0x25, 0x74, 0xd6, 0x04, 0x96, 0x16, 0xed, 0x81, 0xb6, 0x61, 0x29, 0x7e, 0x0c, 0x81, 0x35, 0x7d, + 0x67, 0x62, 0x7c, 0x1e, 0xee, 0xbe, 0xd6, 0x8c, 0x1d, 0x86, 0x87, 0xda, 0xb0, 0xc0, 0x4d, 0x21, + 0xd5, 0x19, 0x55, 0x2d, 0x68, 0xa2, 0x6d, 0x38, 0xcb, 0x56, 0xb0, 0xc3, 0x05, 0x82, 0x2d, 0xbe, + 0x9a, 0x6b, 0xf1, 0xb2, 0xae, 0x71, 0x79, 0xaa, 0x9d, 0x56, 0x9e, 0xda, 0xb0, 0xc0, 0x79, 0x9c, + 0xea, 0x91, 0xaa, 0x16, 0x34, 0xc9, 0x31, 0x87, 0xdc, 0x5e, 0xa7, 0xdf, 0x42, 0x00, 0x09, 0xbd, + 0x20, 0xdc, 0xcf, 0x29, 0x99, 0xa4, 0x4f, 0xa1, 0x2a, 0x38, 0x3c, 0x7f, 0x08, 0x2c, 0xfa, 0x24, + 0xf5, 0x7b, 0x31, 0xa1, 0xdf, 0xd5, 0x7f, 0x52, 0xa0, 0xb1, 0x4e, 0x96, 0xb4, 0xe1, 0x0c, 0xa8, + 0x35, 0xba, 0x01, 0x4d, 0x17, 0xf7, 0x1d, 0xd7, 0xe8, 0x61, 0xdb, 0x77, 0x4d, 0xcc, 0x12, 0x10, + 0x25, 0x6d, 0x91, 0x41, 0x1f, 0x31, 0x20, 0x41, 0x23, 0x2a, 0xdb, 0xf3, 0xf5, 0xe1, 0xa8, 0xb7, + 0x4f, 0x54, 0x43, 0x81, 0xa1, 0x09, 0x28, 0xd5, 0x0c, 0x6f, 0x42, 0x23, 0x44, 0xf3, 0x1d, 0x3a, + 0x7e, 0x49, 0xab, 0x0b, 0xd8, 0xae, 0x83, 0xde, 0x82, 0x26, 0xdd, 0xd3, 0x9e, 0xe5, 0x0c, 0x7a, + 0x24, 0xa2, 0xe5, 0x86, 0xaa, 0x61, 0xf0, 0x69, 0x91, 0xb3, 0x8a, 0x63, 0x79, 0xe6, 0x0f, 0x31, + 0x37, 0x55, 0x02, 0x6b, 0xc7, 0xfc, 0x21, 0x56, 0xff, 0x51, 0x81, 0xc5, 0x75, 0xdd, 0xd7, 0xb7, + 0x1c, 0x03, 0xef, 0xce, 0x68, 0xd8, 0x73, 0x64, 0x75, 0x2f, 0x41, 0x4d, 0xac, 0x80, 0x2f, 0x29, + 0x04, 0xa0, 0xc7, 0xd0, 0x0c, 0x5c, 0xcb, 0x1e, 0x8b, 0xb8, 0x4a, 0x99, 0x0e, 0x54, 0xc4, 0x72, + 0x7a, 0xda, 0x62, 0xd0, 0x8d, 0x36, 0xd5, 0xc7, 0xd0, 0x88, 0x7e, 0x26, 0xa3, 0xee, 0x24, 0x19, + 0x45, 0x00, 0x08, 0x37, 0x6e, 0x8d, 0x87, 0xe4, 0x4c, 0xb9, 0x62, 0x09, 0x9a, 0xea, 0x6f, 0x2b, + 0xb0, 0xc8, 0xcd, 0xfd, 0x8e, 0xb8, 0xff, 0xa0, 0x4b, 0x63, 0x79, 0x16, 0xfa, 0x1b, 0x7d, 0x33, + 0x9e, 0xb2, 0x7c, 0x4b, 0xaa, 0x04, 0x28, 0x11, 0xea, 0x64, 0xc6, 0x6c, 0x7d, 0x9e, 0x18, 0xff, + 0x0b, 0xc2, 0x68, 0xfc, 0x68, 0x28, 0xa3, 0xb5, 0x61, 0x41, 0x37, 0x0c, 0x17, 0x7b, 0x1e, 0x9f, + 0x47, 0xd0, 0x24, 0x5f, 0x8e, 0xb0, 0xeb, 0x05, 0x2c, 0x5f, 0xd4, 0x82, 0x26, 0xfa, 0x16, 0x54, + 0x85, 0x57, 0xca, 0x12, 0x54, 0xd7, 0xb2, 0xe7, 0xc9, 0x23, 0x52, 0xd1, 0x43, 0xfd, 0xbb, 0x02, + 0x34, 0xf9, 0x86, 0xad, 0x72, 0x7b, 0x3c, 0x59, 0xf8, 0x56, 0xa1, 0xb1, 0x1f, 0xca, 0xfe, 0xa4, + 0xb4, 0x5a, 0x54, 0x45, 0xc4, 0xfa, 0x4c, 0x13, 0xc0, 0xb8, 0x47, 0x50, 0x9a, 0xcb, 0x23, 0x28, + 0x9f, 0x56, 0x83, 0xa5, 0x7d, 0xc4, 0x8a, 0xc4, 0x47, 0x54, 0x7f, 0x1d, 0xea, 0x11, 0x02, 0x54, + 0x43, 0xb3, 0xa4, 0x15, 0xdf, 0xb1, 0xa0, 0x89, 0x3e, 0x0a, 0xfd, 0x22, 0xb6, 0x55, 0x17, 0x24, + 0x73, 0x49, 0xb8, 0x44, 0xea, 0x3f, 0x28, 0x50, 0xe1, 0x94, 0xaf, 0x42, 0x9d, 0x2b, 0x1d, 0xea, + 0x33, 0x32, 0xea, 0xc0, 0x41, 0xc4, 0x69, 0x7c, 0x79, 0x5a, 0xe7, 0x02, 0x54, 0x13, 0xfa, 0x66, + 0x81, 0x9b, 0x85, 0xe0, 0x53, 0x44, 0xc9, 0x90, 0x4f, 0x44, 0xbf, 0xa0, 0x73, 0x50, 0xb6, 0x9c, + 0x81, 0xb8, 0xdf, 0x62, 0x0d, 0xf5, 0x4b, 0x85, 0x5e, 0x47, 0x68, 0xb8, 0xef, 0x1c, 0x61, 0xf7, + 0x64, 0xfe, 0x3c, 0xee, 0x83, 0x08, 0x9b, 0xe7, 0x0c, 0xbe, 0x44, 0x07, 0xf4, 0x20, 0x3c, 0x84, + 0xa2, 0x2c, 0xd3, 0x13, 0xd5, 0x3b, 0x9c, 0x49, 0xc3, 0xc3, 0xf8, 0x43, 0x85, 0x66, 0xa4, 0xe3, + 0x4b, 0x99, 0xd5, 0xdb, 0x79, 0x29, 0x81, 0x8c, 0xfa, 0x95, 0x02, 0x9d, 0x30, 0x95, 0xe4, 0xad, + 0x9e, 0xcc, 0x7b, 0xdf, 0xf3, 0x72, 0xe2, 0xab, 0x5f, 0x16, 0x17, 0x12, 0x44, 0x68, 0x73, 0x45, + 0x46, 0xc1, 0x75, 0x84, 0x4d, 0xb3, 0xd2, 0xe9, 0x05, 0xcd, 0xc3, 0x32, 0x1d, 0xa8, 0x8a, 0x7c, + 0x06, 0xbb, 0x94, 0x10, 0x6d, 0x22, 0x61, 0x17, 0x9e, 0x60, 0xff, 0x71, 0x3c, 0x15, 0xf2, 0xba, + 0x37, 0x30, 0x7a, 0x51, 0x72, 0xc0, 0x2f, 0x4a, 0x4a, 0x89, 0x8b, 0x12, 0x0e, 0x57, 0x87, 0x94, + 0x05, 0x52, 0x0b, 0x78, 0x55, 0x1b, 0xf6, 0x3b, 0x0a, 0xb4, 0xf9, 0x28, 0x74, 0x4c, 0x12, 0x12, + 0x59, 0xd8, 0xc7, 0xc6, 0xd7, 0x9d, 0x2a, 0xf8, 0x6f, 0x05, 0x5a, 0x51, 0xab, 0x4b, 0x0d, 0xe7, + 0xc7, 0x50, 0xa6, 0x99, 0x16, 0x3e, 0x83, 0xa9, 0xaa, 0x81, 0x61, 0x13, 0xb5, 0x4d, 0x5d, 0xed, + 0x5d, 0xe1, 0x20, 0xf0, 0x66, 0x68, 0xfa, 0x8b, 0xa7, 0x37, 0xfd, 0xdc, 0x15, 0x72, 0xc6, 0x84, + 0x2e, 0x4b, 0x51, 0x86, 0x00, 0xf4, 0x09, 0x54, 0x58, 0x8d, 0x09, 0xbf, 0x3c, 0xbc, 0x11, 0x27, + 0xcd, 0xeb, 0x4f, 0x22, 0x79, 0x7f, 0x0a, 0xd0, 0x78, 0x27, 0xf5, 0x57, 0x61, 0x25, 0x8c, 0x46, + 0xd9, 0xb0, 0xb3, 0x32, 0xad, 0xfa, 0xaf, 0x0a, 0x9c, 0xdd, 0x39, 0xb1, 0xfb, 0x49, 0xf6, 0x5f, + 0x81, 0xca, 0xc8, 0xd2, 0xc3, 0x8c, 0x29, 0x6f, 0x51, 0x37, 0x90, 0x8d, 0x8d, 0x0d, 0x62, 0x43, + 0xd8, 0x9e, 0xd5, 0x05, 0x6c, 0xd7, 0x99, 0x6a, 0xda, 0x6f, 0x88, 0xf0, 0x19, 0x1b, 0xcc, 0x5a, + 0xb1, 0x34, 0xd4, 0xa2, 0x80, 0x52, 0x6b, 0xf5, 0x09, 0x00, 0x35, 0xe8, 0xbd, 0xd3, 0x18, 0x71, + 0xda, 0x63, 0x83, 0xa8, 0xec, 0x5f, 0x14, 0xa0, 0x1d, 0xd9, 0xa5, 0xaf, 0xdb, 0xbf, 0xc9, 0x88, + 0xca, 0x8a, 0x2f, 0x29, 0x2a, 0x2b, 0xcd, 0xef, 0xd3, 0x94, 0x65, 0x3e, 0xcd, 0x6f, 0x16, 0xa1, + 0x19, 0xee, 0xda, 0xb6, 0xa5, 0xdb, 0x99, 0x9c, 0xb0, 0x23, 0xfc, 0xf9, 0xf8, 0x3e, 0xbd, 0x27, + 0x93, 0x93, 0x8c, 0x83, 0xd0, 0x12, 0x24, 0xd0, 0x65, 0x7a, 0xe8, 0xae, 0xcf, 0x12, 0x5f, 0x3c, + 0x86, 0x60, 0x02, 0x69, 0x0e, 0x31, 0xba, 0x0d, 0x88, 0x4b, 0x51, 0xcf, 0xb4, 0x7b, 0x1e, 0xee, + 0x3b, 0xb6, 0xc1, 0xe4, 0xab, 0xac, 0xb5, 0xf8, 0x97, 0xae, 0xbd, 0xc3, 0xe0, 0xe8, 0x63, 0x28, + 0xf9, 0x27, 0x23, 0xe6, 0xad, 0x34, 0xa5, 0xf6, 0x3e, 0x9c, 0xd7, 0xee, 0xc9, 0x08, 0x6b, 0x14, + 0x3d, 0x28, 0x42, 0xf2, 0x5d, 0xfd, 0x88, 0xbb, 0x7e, 0x25, 0x2d, 0x02, 0x21, 0x1a, 0x23, 0xd8, + 0xc3, 0x05, 0xe6, 0x22, 0xf1, 0x26, 0xe3, 0xec, 0x40, 0x68, 0x7b, 0xbe, 0x6f, 0xd1, 0xd4, 0x1d, + 0xe5, 0xec, 0x00, 0xba, 0xeb, 0x5b, 0x64, 0x91, 0xbe, 0xe3, 0xeb, 0x16, 0x93, 0x8f, 0x1a, 0xd7, + 0x0e, 0x04, 0x42, 0x03, 0x93, 0x7f, 0x29, 0x40, 0x2b, 0x9c, 0x98, 0x86, 0xbd, 0xb1, 0x95, 0x2d, + 0x8f, 0x93, 0x53, 0x27, 0xd3, 0x44, 0xf1, 0xdb, 0x50, 0xe7, 0x5c, 0x71, 0x0a, 0xae, 0x02, 0xd6, + 0x65, 0x63, 0x02, 0x9b, 0x97, 0x5f, 0x12, 0x9b, 0x57, 0x66, 0x48, 0x3e, 0xc8, 0xcf, 0x46, 0xfd, + 0xa9, 0x02, 0x6f, 0xa4, 0xb4, 0xe6, 0xc4, 0xad, 0x9d, 0x1c, 0xfa, 0x71, 0x6d, 0x9a, 0x24, 0xc9, + 0xf5, 0xff, 0x03, 0xa8, 0xb8, 0x94, 0x3a, 0xbf, 0x29, 0xba, 0x3e, 0x91, 0xf9, 0xd8, 0x44, 0x34, + 0xde, 0x45, 0xfd, 0x23, 0x05, 0xce, 0xa7, 0xa7, 0x3a, 0x87, 0x51, 0x5f, 0x85, 0x05, 0x46, 0x3a, + 0x90, 0xd1, 0x9b, 0x93, 0x65, 0x34, 0xdc, 0x1c, 0x2d, 0xe8, 0xa8, 0xee, 0xc0, 0x4a, 0x60, 0xfb, + 0xc3, 0xad, 0xdf, 0xc4, 0xbe, 0x3e, 0x21, 0xf0, 0xb9, 0x0a, 0x75, 0xe6, 0x41, 0xb3, 0x80, 0x82, + 0xa5, 0x0c, 0x60, 0x4f, 0x64, 0xda, 0xd4, 0xff, 0x54, 0xe0, 0x1c, 0x35, 0x9e, 0xc9, 0xab, 0x99, + 0x3c, 0xd7, 0x76, 0xaa, 0xc8, 0x48, 0x6c, 0xe9, 0x43, 0x5e, 0x01, 0x53, 0xd3, 0x62, 0x30, 0xd4, + 0x4d, 0x27, 0xe2, 0xa4, 0x01, 0x72, 0x78, 0xcf, 0x4b, 0x82, 0x71, 0x7a, 0xcd, 0x9b, 0xcc, 0xc0, + 0x85, 0x46, 0xbb, 0x34, 0x8b, 0xd1, 0xde, 0x80, 0x37, 0x12, 0x2b, 0x9d, 0xe3, 0x44, 0xd5, 0xbf, + 0x52, 0xc8, 0x71, 0xc4, 0x2a, 0x89, 0x66, 0x77, 0x5c, 0x2f, 0x8b, 0x3b, 0xa1, 0x9e, 0x69, 0x24, + 0x95, 0x88, 0x81, 0x3e, 0x85, 0x9a, 0x8d, 0x8f, 0x7b, 0x51, 0x5f, 0x28, 0x87, 0x57, 0x5f, 0xb5, + 0xf1, 0x31, 0xfd, 0xa5, 0x6e, 0xc1, 0xf9, 0xd4, 0x54, 0xe7, 0x59, 0xfb, 0xdf, 0x2b, 0x70, 0x61, + 0xdd, 0x75, 0x46, 0x9f, 0x9b, 0xae, 0x3f, 0xd6, 0xad, 0xf8, 0x0d, 0xfa, 0xab, 0xc9, 0x6c, 0x7d, + 0x16, 0xf1, 0x8a, 0x19, 0xff, 0xdc, 0x96, 0x48, 0x50, 0x7a, 0x52, 0x7c, 0xd1, 0x11, 0x1f, 0xfa, + 0x3f, 0x8a, 0xb2, 0xc9, 0x73, 0xbc, 0x29, 0x7e, 0x49, 0x9e, 0x00, 0x43, 0x9a, 0x08, 0x2f, 0xce, + 0x9a, 0x08, 0xcf, 0x50, 0xef, 0xa5, 0x97, 0xa4, 0xde, 0x4f, 0x9d, 0x99, 0xf9, 0x0c, 0xe2, 0x97, + 0x14, 0xd4, 0x3a, 0xcf, 0x74, 0xbb, 0xb1, 0x0a, 0x10, 0x26, 0xec, 0x79, 0x21, 0x68, 0x1e, 0x32, + 0x91, 0x5e, 0xe4, 0xb4, 0x84, 0x29, 0xe5, 0x96, 0x3e, 0x92, 0x42, 0xfe, 0x2e, 0x74, 0x64, 0x5c, + 0x3a, 0x0f, 0xe7, 0xff, 0xa2, 0x00, 0xd0, 0x15, 0xb5, 0xc3, 0xb3, 0xd9, 0x82, 0xeb, 0x10, 0xf1, + 0x46, 0x42, 0x79, 0x8f, 0x72, 0x91, 0x41, 0x44, 0x42, 0xc4, 0xa4, 0x04, 0x27, 0x15, 0xa7, 0x1a, + 0x94, 0x4e, 0x44, 0x6a, 0x18, 0x53, 0x24, 0xd5, 0xef, 0x45, 0xa8, 0xb9, 0xce, 0x71, 0x8f, 0x88, + 0x99, 0x11, 0x14, 0x47, 0xbb, 0xce, 0x31, 0x11, 0x3e, 0x03, 0x9d, 0x87, 0x05, 0x5f, 0xf7, 0x0e, + 0x09, 0xfd, 0x4a, 0xa4, 0x88, 0xc3, 0x40, 0xe7, 0xa0, 0xbc, 0x6f, 0x5a, 0x98, 0xd5, 0x0c, 0xd4, + 0x34, 0xd6, 0x40, 0xdf, 0x08, 0xaa, 0xf8, 0xaa, 0xb9, 0x0b, 0x75, 0x28, 0xbe, 0xfa, 0xa5, 0x02, + 0x4b, 0xe1, 0xae, 0x51, 0x05, 0x44, 0x74, 0x1a, 0xd5, 0x67, 0x6b, 0x8e, 0xc1, 0x54, 0x45, 0x33, + 0xc3, 0x22, 0xb0, 0x8e, 0x4c, 0x6b, 0x85, 0x5d, 0x26, 0x85, 0xc9, 0x64, 0x5d, 0x64, 0xd1, 0xa6, + 0x11, 0x14, 0xae, 0x54, 0x5c, 0xe7, 0xb8, 0x6b, 0x88, 0xdd, 0x60, 0x95, 0xcf, 0x2c, 0x28, 0x24, + 0xbb, 0xb1, 0x46, 0x8b, 0x9f, 0xaf, 0xc3, 0x22, 0x76, 0x5d, 0xc7, 0xed, 0x0d, 0xb1, 0xe7, 0xe9, + 0x03, 0xcc, 0xfd, 0xf3, 0x06, 0x05, 0x6e, 0x32, 0x98, 0xfa, 0x27, 0x25, 0x68, 0x86, 0x4b, 0x09, + 0xae, 0xc9, 0x4d, 0x23, 0xb8, 0x26, 0x37, 0xc9, 0xd1, 0x81, 0xcb, 0x54, 0xa1, 0x38, 0xdc, 0xd5, + 0x42, 0x5b, 0xd1, 0x6a, 0x1c, 0xda, 0x35, 0x88, 0x59, 0x26, 0x42, 0x66, 0x3b, 0x06, 0x0e, 0x0f, + 0x17, 0x02, 0x10, 0x3f, 0xdb, 0x18, 0x8f, 0x94, 0x72, 0xf0, 0x48, 0x39, 0x07, 0x8f, 0x54, 0x24, + 0x3c, 0xb2, 0x02, 0x95, 0xbd, 0x71, 0xff, 0x10, 0xfb, 0xdc, 0x63, 0xe3, 0xad, 0x38, 0xef, 0x54, + 0x13, 0xbc, 0x23, 0x58, 0xa4, 0x16, 0x65, 0x91, 0x8b, 0x50, 0x63, 0xf7, 0xb5, 0x3d, 0xdf, 0xa3, + 0x97, 0x4f, 0x45, 0xad, 0xca, 0x00, 0xbb, 0x1e, 0xba, 0x1f, 0xb8, 0x73, 0x75, 0x99, 0xb0, 0x53, + 0xad, 0x93, 0xe0, 0x92, 0xc0, 0x99, 0x7b, 0x07, 0x96, 0x22, 0xdb, 0x41, 0x6d, 0x44, 0x83, 0x4e, + 0x35, 0xe2, 0xed, 0x53, 0x33, 0x71, 0x03, 0x9a, 0xe1, 0x96, 0x50, 0xbc, 0x45, 0x16, 0x64, 0x09, + 0x28, 0x45, 0x13, 0x9c, 0xdc, 0x3c, 0x1d, 0x27, 0xa3, 0x0b, 0x50, 0xe5, 0xd1, 0x91, 0xd7, 0x5e, + 0x8a, 0x25, 0x2b, 0xd4, 0x1f, 0x00, 0x0a, 0x67, 0x3f, 0x9f, 0xb7, 0x98, 0x60, 0x8f, 0x42, 0x92, + 0x3d, 0xd4, 0x9f, 0x29, 0xb0, 0x1c, 0x1d, 0x6c, 0x56, 0xc3, 0xfb, 0x29, 0xd4, 0xd9, 0xf5, 0x5f, + 0x8f, 0x08, 0x3e, 0x4f, 0x02, 0x5d, 0x9e, 0x78, 0x2e, 0x1a, 0x84, 0x6f, 0x27, 0x08, 0x7b, 0x1d, + 0x3b, 0xee, 0xa1, 0x69, 0x0f, 0x7a, 0x64, 0x66, 0x81, 0xb8, 0x35, 0x38, 0x70, 0x8b, 0xc0, 0xd4, + 0x1f, 0x2b, 0x70, 0xe5, 0xe9, 0xc8, 0xd0, 0x7d, 0x1c, 0xf1, 0x40, 0xe6, 0xad, 0x59, 0xfc, 0x38, + 0x28, 0x1a, 0x2c, 0xe4, 0xbb, 0xc2, 0x62, 0xd8, 0xea, 0xdf, 0x88, 0xb9, 0xa4, 0x0a, 0x7d, 0x67, + 0x9f, 0x4b, 0x07, 0xaa, 0x47, 0x9c, 0x5c, 0xf0, 0x16, 0x24, 0x68, 0xc7, 0xae, 0x49, 0x8b, 0xa7, + 0xbf, 0x26, 0x55, 0x37, 0xe1, 0x82, 0x86, 0x3d, 0x6c, 0x1b, 0xb1, 0xd5, 0xcc, 0x9c, 0x6c, 0x1a, + 0x41, 0x47, 0x46, 0x6e, 0x1e, 0x66, 0x65, 0xbe, 0x6b, 0xcf, 0x25, 0x64, 0x7d, 0xae, 0x8a, 0x89, + 0xcb, 0x44, 0xc7, 0xf1, 0xd5, 0xbf, 0x2e, 0xc0, 0xf9, 0x87, 0x86, 0xc1, 0xb5, 0x38, 0xf7, 0xc6, + 0x5e, 0x95, 0xa3, 0x9c, 0x74, 0x24, 0x8b, 0x69, 0x47, 0xf2, 0x65, 0x69, 0x56, 0x6e, 0x63, 0xec, + 0xf1, 0x30, 0xb0, 0x9d, 0x2e, 0xab, 0x1f, 0x7a, 0xc0, 0xef, 0xcd, 0x48, 0x40, 0x4f, 0xed, 0xe7, + 0x74, 0xff, 0xaa, 0x1a, 0x24, 0xcd, 0xd4, 0x11, 0xb4, 0xd3, 0x9b, 0x35, 0xa7, 0x2a, 0x09, 0x76, + 0x64, 0xe4, 0xb0, 0x04, 0x6b, 0x83, 0xb8, 0x50, 0x14, 0xb4, 0xed, 0x78, 0xea, 0x7f, 0x15, 0xa0, + 0xbd, 0xa3, 0x1f, 0xe1, 0xff, 0x3f, 0x07, 0xf4, 0x3d, 0x38, 0xe7, 0xe9, 0x47, 0xb8, 0x17, 0x09, + 0x8c, 0x7b, 0x2e, 0x7e, 0xce, 0x5d, 0xd0, 0x77, 0x65, 0x9a, 0x44, 0x5a, 0x66, 0xa3, 0x2d, 0x7b, + 0x31, 0xb8, 0x86, 0x9f, 0xa3, 0xb7, 0x61, 0x29, 0x5a, 0xc7, 0x45, 0xa6, 0x56, 0xa5, 0x5b, 0xbe, + 0x18, 0x29, 0xd3, 0xea, 0x1a, 0xea, 0x73, 0xb8, 0xf4, 0xd4, 0xf6, 0xb0, 0xdf, 0x0d, 0x4b, 0x8d, + 0xe6, 0x0c, 0x21, 0xaf, 0x42, 0x3d, 0xdc, 0xf8, 0xd4, 0xfb, 0x0f, 0xc3, 0x53, 0x1d, 0xe8, 0x6c, + 0xea, 0xee, 0x61, 0x90, 0x66, 0x5e, 0x67, 0x25, 0x21, 0xaf, 0x70, 0xc0, 0x7d, 0x51, 0x21, 0xa5, + 0xe1, 0x7d, 0xec, 0x62, 0xbb, 0x8f, 0x37, 0x9c, 0xfe, 0x61, 0xa4, 0x72, 0x58, 0x89, 0x56, 0x0e, + 0xcf, 0x5a, 0x89, 0xac, 0xfe, 0xbc, 0x00, 0x2b, 0x0f, 0x2d, 0x1f, 0xbb, 0x61, 0xe4, 0x7f, 0x9a, + 0x24, 0x46, 0x98, 0x55, 0x28, 0xcc, 0x90, 0x55, 0x48, 0x15, 0xc1, 0x17, 0xd3, 0x45, 0xf0, 0xb2, + 0x1c, 0x48, 0x69, 0xc6, 0x1c, 0xc8, 0x43, 0x80, 0x91, 0xeb, 0x8c, 0xb0, 0xeb, 0x9b, 0x38, 0x08, + 0xdf, 0x72, 0xb8, 0x2f, 0x91, 0x4e, 0xb7, 0x3e, 0x15, 0x55, 0x9e, 0xbb, 0x27, 0x23, 0x8c, 0x16, + 0xa0, 0xb8, 0x85, 0x8f, 0x5b, 0x67, 0x10, 0x40, 0x65, 0xcb, 0x71, 0x87, 0xba, 0xd5, 0x52, 0x50, + 0x1d, 0x16, 0xf8, 0xa5, 0x56, 0xab, 0x80, 0x16, 0xa1, 0xb6, 0x16, 0x5c, 0x0c, 0xb4, 0x8a, 0xb7, + 0xfe, 0x4c, 0x81, 0xe5, 0xd4, 0xb5, 0x0b, 0x6a, 0x02, 0x3c, 0xb5, 0xfb, 0xfc, 0x3e, 0xaa, 0x75, + 0x06, 0x35, 0xa0, 0x1a, 0xdc, 0x4e, 0x31, 0x7a, 0xbb, 0x0e, 0xc5, 0x6e, 0x15, 0x50, 0x0b, 0x1a, + 0xac, 0xe3, 0xb8, 0xdf, 0xc7, 0x9e, 0xd7, 0x2a, 0x0a, 0xc8, 0x63, 0xdd, 0xb4, 0xc6, 0x2e, 0x6e, + 0x95, 0xc8, 0x98, 0xbb, 0x0e, 0xaf, 0x73, 0x6f, 0x95, 0x11, 0x82, 0x66, 0x50, 0xf4, 0xce, 0x3b, + 0x55, 0x22, 0xb0, 0xa0, 0xdb, 0xc2, 0xad, 0x67, 0xd1, 0xe4, 0x39, 0x5d, 0xde, 0x79, 0x38, 0xfb, + 0xd4, 0x36, 0xf0, 0xbe, 0x69, 0x63, 0x23, 0xfc, 0xd4, 0x3a, 0x83, 0xce, 0xc2, 0xd2, 0x26, 0x76, + 0x07, 0x38, 0x02, 0x2c, 0xa0, 0x65, 0x58, 0xdc, 0x34, 0x5f, 0x44, 0x40, 0x45, 0xb5, 0x54, 0x55, + 0x5a, 0xca, 0xbd, 0xdf, 0xbd, 0x0c, 0x35, 0x72, 0x28, 0x6b, 0x8e, 0xe3, 0x1a, 0xc8, 0x02, 0x44, + 0x9f, 0x85, 0x0c, 0x47, 0x8e, 0x2d, 0xde, 0x91, 0xa1, 0x3b, 0xf1, 0x73, 0xe0, 0x8d, 0x34, 0x22, + 0xe7, 0xce, 0xce, 0x5b, 0x52, 0xfc, 0x04, 0xb2, 0x7a, 0x06, 0x0d, 0xe9, 0x68, 0xbb, 0xe6, 0x10, + 0xef, 0x9a, 0xfd, 0xc3, 0xc0, 0xb3, 0xf8, 0x20, 0xc3, 0x8f, 0x48, 0xa3, 0x06, 0xe3, 0x5d, 0x97, + 0x8e, 0xc7, 0xde, 0xed, 0x04, 0x56, 0x46, 0x3d, 0x83, 0x9e, 0xc3, 0xb9, 0x27, 0x38, 0xe2, 0xa4, + 0x05, 0x03, 0xde, 0xcb, 0x1e, 0x30, 0x85, 0x7c, 0xca, 0x21, 0x37, 0xa0, 0x4c, 0xd9, 0x0d, 0xc9, + 0xfc, 0xb8, 0xe8, 0x93, 0xef, 0xce, 0xb5, 0x6c, 0x04, 0x41, 0xed, 0x07, 0xb0, 0x94, 0x78, 0x28, + 0x8a, 0x64, 0x5a, 0x5d, 0xfe, 0xe4, 0xb7, 0x73, 0x2b, 0x0f, 0xaa, 0x18, 0x6b, 0x00, 0xcd, 0xf8, + 0x73, 0x12, 0x74, 0x33, 0xc7, 0xcb, 0x34, 0x36, 0xd2, 0xbb, 0xb9, 0xdf, 0xb0, 0x51, 0x26, 0x68, + 0x25, 0x1f, 0x2e, 0xa2, 0x5b, 0x13, 0x09, 0xc4, 0x99, 0xed, 0xbd, 0x5c, 0xb8, 0x62, 0xb8, 0x13, + 0xca, 0x04, 0xa9, 0x07, 0x63, 0x49, 0x1e, 0x0f, 0xc8, 0x64, 0xbd, 0x64, 0xeb, 0xdc, 0xcd, 0x8d, + 0x2f, 0x86, 0xfe, 0x2d, 0x56, 0xb5, 0x22, 0x7b, 0x74, 0x85, 0x3e, 0x94, 0x93, 0x9b, 0xf0, 0x5a, + 0xac, 0x73, 0xef, 0x34, 0x5d, 0xc4, 0x24, 0x7e, 0x44, 0xcb, 0x4d, 0x24, 0xcf, 0x96, 0x92, 0x72, + 0x17, 0xd0, 0xcb, 0x7e, 0x91, 0xd5, 0xf9, 0xf0, 0x14, 0x3d, 0xc4, 0x04, 0x9c, 0xe4, 0xcb, 0xd0, + 0x40, 0x0c, 0xef, 0x4e, 0xe5, 0x9a, 0xd9, 0x64, 0xf0, 0xfb, 0xb0, 0x94, 0xf0, 0x73, 0x50, 0x7e, + 0x5f, 0xa8, 0x33, 0xc9, 0x19, 0x65, 0x22, 0x99, 0xa8, 0xde, 0x41, 0x19, 0xdc, 0x2f, 0xa9, 0xf0, + 0xe9, 0xdc, 0xca, 0x83, 0x2a, 0x16, 0xe2, 0x51, 0x75, 0x99, 0xa8, 0xc9, 0x40, 0xb7, 0xe5, 0x34, + 0xe4, 0xb5, 0x27, 0x9d, 0xf7, 0x73, 0x62, 0x8b, 0x41, 0x8f, 0xe0, 0xac, 0xa4, 0x74, 0x06, 0xbd, + 0x3f, 0xf1, 0xb0, 0x92, 0x35, 0x43, 0x9d, 0x3b, 0x79, 0xd1, 0xc5, 0xb8, 0xbf, 0x01, 0x68, 0xe7, + 0xc0, 0x39, 0x5e, 0x73, 0xec, 0x7d, 0x73, 0x30, 0x76, 0x75, 0xe6, 0x25, 0x64, 0xd9, 0x86, 0x34, + 0x6a, 0x06, 0x8f, 0x4e, 0xec, 0x21, 0x06, 0xef, 0x01, 0x3c, 0xc1, 0xfe, 0x26, 0xf6, 0x5d, 0x22, + 0x18, 0x6f, 0x67, 0x99, 0x3f, 0x8e, 0x10, 0x0c, 0xf5, 0xce, 0x54, 0xbc, 0x88, 0x29, 0x6a, 0x6d, + 0xea, 0xf6, 0x58, 0xb7, 0x22, 0xb5, 0xff, 0xb7, 0xa5, 0xdd, 0x93, 0x68, 0x19, 0x07, 0x99, 0x89, + 0x2d, 0x86, 0x3c, 0x16, 0xa6, 0x3d, 0x72, 0x15, 0x37, 0xd9, 0xb4, 0xa7, 0xcb, 0x40, 0x92, 0x6a, + 0x6f, 0x02, 0xbe, 0x18, 0xf8, 0x0b, 0x85, 0x56, 0x5f, 0x25, 0x10, 0x9e, 0x99, 0xfe, 0xc1, 0xb6, + 0xa5, 0xdb, 0x5e, 0x9e, 0x29, 0x50, 0xc4, 0x53, 0x4c, 0x81, 0xe3, 0x8b, 0x29, 0x18, 0xb0, 0x18, + 0xbb, 0x21, 0x43, 0xb2, 0x62, 0x79, 0xd9, 0x6d, 0x61, 0xe7, 0xe6, 0x74, 0x44, 0x31, 0xca, 0x01, + 0x2c, 0x06, 0xa2, 0xc4, 0x36, 0xf7, 0xdd, 0xac, 0x99, 0x86, 0x38, 0x19, 0x9a, 0x40, 0x8e, 0x1a, + 0xd5, 0x04, 0xe9, 0x0b, 0x00, 0x94, 0xef, 0xe2, 0x68, 0x92, 0x26, 0xc8, 0xbe, 0x55, 0x60, 0xaa, + 0x2e, 0x71, 0xd9, 0x26, 0xd7, 0xa3, 0xd2, 0xbb, 0x43, 0xa9, 0xaa, 0xcb, 0xb8, 0xbb, 0x53, 0xcf, + 0xa0, 0x67, 0x50, 0xe1, 0xff, 0x73, 0xf2, 0xd6, 0xe4, 0xa4, 0x1d, 0xa7, 0x7e, 0x63, 0x0a, 0x96, + 0x20, 0x7c, 0x08, 0xe7, 0x33, 0x52, 0x76, 0x52, 0x13, 0x3c, 0x39, 0xbd, 0x37, 0xcd, 0x38, 0x88, + 0xc1, 0x52, 0x39, 0xb9, 0x09, 0x83, 0x65, 0xe5, 0xef, 0xa6, 0x0d, 0xa6, 0x03, 0x4a, 0x3f, 0xef, + 0x95, 0xf2, 0x44, 0xe6, 0x2b, 0xe0, 0x1c, 0x43, 0xa4, 0x5f, 0xe8, 0x4a, 0x87, 0xc8, 0x7c, 0xc8, + 0x3b, 0x6d, 0x88, 0x1e, 0x2c, 0xa7, 0x92, 0x36, 0xe8, 0xbd, 0x0c, 0x73, 0x2d, 0x4b, 0xed, 0x4c, + 0x1b, 0x60, 0x00, 0x6f, 0x48, 0x13, 0x14, 0x52, 0xf7, 0x63, 0x52, 0x2a, 0x63, 0xda, 0x40, 0x7d, + 0x38, 0x2b, 0x49, 0x4b, 0x48, 0x0d, 0x67, 0x76, 0xfa, 0x62, 0xda, 0x20, 0xfb, 0xd0, 0x59, 0x75, + 0x1d, 0xdd, 0xe8, 0xeb, 0x9e, 0x4f, 0x53, 0x05, 0x24, 0x16, 0x0c, 0xfc, 0x3f, 0x79, 0x70, 0x20, + 0x4d, 0x28, 0x4c, 0x1b, 0x67, 0x0f, 0xea, 0x94, 0x21, 0xd9, 0xff, 0x68, 0x20, 0xb9, 0xa5, 0x8b, + 0x60, 0x64, 0xa8, 0x4f, 0x19, 0x62, 0x20, 0x9a, 0xf7, 0xbe, 0xac, 0x41, 0x35, 0x78, 0xaf, 0xf0, + 0x35, 0x07, 0xa2, 0xaf, 0x21, 0x32, 0xfc, 0x3e, 0x2c, 0x25, 0xde, 0x0e, 0x4b, 0x8f, 0x4b, 0xfe, + 0xbe, 0x78, 0xda, 0x71, 0x3d, 0xe3, 0x7f, 0xda, 0x25, 0x9c, 0xc4, 0x77, 0xb2, 0xa2, 0xcb, 0xa4, + 0x7f, 0x38, 0x85, 0xf0, 0xff, 0x6d, 0xaf, 0x6c, 0x0b, 0x20, 0xe2, 0x8f, 0x4d, 0xae, 0xea, 0x23, + 0x2e, 0xc6, 0xb4, 0xdd, 0x1a, 0x4a, 0x5d, 0xae, 0x77, 0xf3, 0x54, 0x48, 0x65, 0x1b, 0xcd, 0x6c, + 0x47, 0xeb, 0x29, 0x34, 0xa2, 0xf5, 0xb6, 0x48, 0xfa, 0x17, 0x51, 0xe9, 0x82, 0xdc, 0x69, 0xab, + 0xd8, 0x3c, 0xa5, 0x2d, 0x9e, 0x42, 0xce, 0x23, 0x46, 0x24, 0x79, 0x53, 0x93, 0x61, 0x44, 0x32, + 0xee, 0x87, 0xa4, 0xbe, 0x4b, 0xf6, 0xf5, 0x0f, 0x4b, 0x32, 0x24, 0xaf, 0x1f, 0xa4, 0x49, 0x86, + 0x8c, 0x0b, 0x1d, 0x69, 0x92, 0x21, 0xeb, 0x3e, 0x43, 0x3d, 0xb3, 0xfa, 0xd1, 0xf7, 0x3e, 0x1c, + 0x98, 0xfe, 0xc1, 0x78, 0x8f, 0xac, 0xfe, 0x2e, 0xeb, 0xfa, 0xbe, 0xe9, 0xf0, 0x5f, 0x77, 0x03, + 0x76, 0xbf, 0x4b, 0xa9, 0xdd, 0x25, 0xd4, 0x46, 0x7b, 0x7b, 0x15, 0xda, 0xfa, 0xe8, 0x7f, 0x02, + 0x00, 0x00, 0xff, 0xff, 0x50, 0x04, 0x47, 0xc9, 0x76, 0x50, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/internal/querycoordv2/meta/coordinator_broker.go b/internal/querycoordv2/meta/coordinator_broker.go index fcc58e2e7d..aa797a5b7e 100644 --- a/internal/querycoordv2/meta/coordinator_broker.go +++ b/internal/querycoordv2/meta/coordinator_broker.go @@ -45,7 +45,7 @@ type Broker interface { GetCollectionSchema(ctx context.Context, collectionID UniqueID) (*schemapb.CollectionSchema, error) GetPartitions(ctx context.Context, collectionID UniqueID) ([]UniqueID, error) GetRecoveryInfo(ctx context.Context, collectionID UniqueID, partitionID UniqueID) ([]*datapb.VchannelInfo, []*datapb.SegmentBinlogs, error) - GetSegmentInfo(ctx context.Context, segmentID ...UniqueID) ([]*datapb.SegmentInfo, error) + GetSegmentInfo(ctx context.Context, segmentID ...UniqueID) (*datapb.GetSegmentInfoResponse, error) GetIndexInfo(ctx context.Context, collectionID UniqueID, segmentID UniqueID) ([]*querypb.FieldIndexInfo, error) } @@ -138,7 +138,7 @@ func (broker *CoordinatorBroker) GetRecoveryInfo(ctx context.Context, collection return recoveryInfo.Channels, recoveryInfo.Binlogs, nil } -func (broker *CoordinatorBroker) GetSegmentInfo(ctx context.Context, ids ...UniqueID) ([]*datapb.SegmentInfo, error) { +func (broker *CoordinatorBroker) GetSegmentInfo(ctx context.Context, ids ...UniqueID) (*datapb.GetSegmentInfoResponse, error) { ctx, cancel := context.WithTimeout(ctx, brokerRPCTimeout) defer cancel() @@ -160,7 +160,7 @@ func (broker *CoordinatorBroker) GetSegmentInfo(ctx context.Context, ids ...Uniq return nil, fmt.Errorf("no such segment in DataCoord") } - return resp.GetInfos(), nil + return resp, nil } func (broker *CoordinatorBroker) GetIndexInfo(ctx context.Context, collectionID UniqueID, segmentID UniqueID) ([]*querypb.FieldIndexInfo, error) { diff --git a/internal/querycoordv2/meta/mock_broker.go b/internal/querycoordv2/meta/mock_broker.go index 0a40602647..534d1623b9 100644 --- a/internal/querycoordv2/meta/mock_broker.go +++ b/internal/querycoordv2/meta/mock_broker.go @@ -226,7 +226,7 @@ func (_c *MockBroker_GetRecoveryInfo_Call) Return(_a0 []*datapb.VchannelInfo, _a } // GetSegmentInfo provides a mock function with given fields: ctx, segmentID -func (_m *MockBroker) GetSegmentInfo(ctx context.Context, segmentID ...int64) ([]*datapb.SegmentInfo, error) { +func (_m *MockBroker) GetSegmentInfo(ctx context.Context, segmentID ...int64) (*datapb.GetSegmentInfoResponse, error) { _va := make([]interface{}, len(segmentID)) for _i := range segmentID { _va[_i] = segmentID[_i] @@ -236,12 +236,12 @@ func (_m *MockBroker) GetSegmentInfo(ctx context.Context, segmentID ...int64) ([ _ca = append(_ca, _va...) ret := _m.Called(_ca...) - var r0 []*datapb.SegmentInfo - if rf, ok := ret.Get(0).(func(context.Context, ...int64) []*datapb.SegmentInfo); ok { + var r0 *datapb.GetSegmentInfoResponse + if rf, ok := ret.Get(0).(func(context.Context, ...int64) *datapb.GetSegmentInfoResponse); ok { r0 = rf(ctx, segmentID...) } else { if ret.Get(0) != nil { - r0 = ret.Get(0).([]*datapb.SegmentInfo) + r0 = ret.Get(0).(*datapb.GetSegmentInfoResponse) } } @@ -281,7 +281,7 @@ func (_c *MockBroker_GetSegmentInfo_Call) Run(run func(ctx context.Context, segm return _c } -func (_c *MockBroker_GetSegmentInfo_Call) Return(_a0 []*datapb.SegmentInfo, _a1 error) *MockBroker_GetSegmentInfo_Call { +func (_c *MockBroker_GetSegmentInfo_Call) Return(_a0 *datapb.GetSegmentInfoResponse, _a1 error) *MockBroker_GetSegmentInfo_Call { _c.Call.Return(_a0, _a1) return _c } diff --git a/internal/querycoordv2/task/executor.go b/internal/querycoordv2/task/executor.go index 03a279f891..40c47323ac 100644 --- a/internal/querycoordv2/task/executor.go +++ b/internal/querycoordv2/task/executor.go @@ -247,12 +247,12 @@ func (ex *Executor) loadSegment(task *SegmentTask, step int) error { task.CollectionID(), partitions..., ) - segments, err := ex.broker.GetSegmentInfo(ctx, task.SegmentID()) - if err != nil || len(segments) == 0 { + resp, err := ex.broker.GetSegmentInfo(ctx, task.SegmentID()) + if err != nil || len(resp.GetInfos()) == 0 { log.Warn("failed to get segment info from DataCoord", zap.Error(err)) return err } - segment := segments[0] + segment := resp.GetInfos()[0] indexes, err := ex.broker.GetIndexInfo(ctx, task.CollectionID(), segment.GetID()) if err != nil { log.Warn("failed to get index of segment", zap.Error(err)) @@ -270,7 +270,7 @@ func (ex *Executor) loadSegment(task *SegmentTask, step int) error { } log = log.With(zap.Int64("shardLeader", leader)) - req := packLoadSegmentRequest(task, action, schema, loadMeta, loadInfo, segment) + req := packLoadSegmentRequest(task, action, schema, loadMeta, loadInfo, resp) loadTask := NewLoadSegmentsTask(task, step, req) ex.merger.Add(loadTask) log.Info("load segment task committed") diff --git a/internal/querycoordv2/task/task_test.go b/internal/querycoordv2/task/task_test.go index 016687066c..17c24dc150 100644 --- a/internal/querycoordv2/task/task_test.go +++ b/internal/querycoordv2/task/task_test.go @@ -236,13 +236,13 @@ func (suite *TaskSuite) TestSubscribeChannelTask() { } for channel, segment := range suite.growingSegments { suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment). - Return([]*datapb.SegmentInfo{ + Return(&datapb.GetSegmentInfoResponse{Infos: []*datapb.SegmentInfo{ { ID: segment, CollectionID: suite.collection, PartitionID: partitions[0], InsertChannel: channel, - }, + }}, }, nil) } // for _, partition := range partitions { @@ -382,13 +382,13 @@ func (suite *TaskSuite) TestLoadSegmentTask() { }, nil) suite.broker.EXPECT().GetPartitions(mock.Anything, suite.collection).Return([]int64{100, 101}, nil) for _, segment := range suite.loadSegments { - suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return([]*datapb.SegmentInfo{ + suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return(&datapb.GetSegmentInfoResponse{Infos: []*datapb.SegmentInfo{ { ID: segment, CollectionID: suite.collection, PartitionID: partition, InsertChannel: channel.ChannelName, - }, + }}, }, nil) suite.broker.EXPECT().GetIndexInfo(mock.Anything, suite.collection, segment).Return(nil, nil) } @@ -511,13 +511,13 @@ func (suite *TaskSuite) TestLoadSegmentTaskFailed() { }, nil) suite.broker.EXPECT().GetPartitions(mock.Anything, suite.collection).Return([]int64{100, 101}, nil) for _, segment := range suite.loadSegments { - suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return([]*datapb.SegmentInfo{ + suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return(&datapb.GetSegmentInfoResponse{Infos: []*datapb.SegmentInfo{ { ID: segment, CollectionID: suite.collection, PartitionID: partition, InsertChannel: channel.ChannelName, - }, + }}, }, nil) suite.broker.EXPECT().GetIndexInfo(mock.Anything, suite.collection, segment).Return(nil, errors.New("index not ready")) } @@ -716,13 +716,13 @@ func (suite *TaskSuite) TestMoveSegmentTask() { }, nil) suite.broker.EXPECT().GetPartitions(mock.Anything, suite.collection).Return([]int64{100, 101}, nil) for _, segment := range suite.moveSegments { - suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return([]*datapb.SegmentInfo{ + suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return(&datapb.GetSegmentInfoResponse{Infos: []*datapb.SegmentInfo{ { ID: segment, CollectionID: suite.collection, PartitionID: partition, InsertChannel: channel.ChannelName, - }, + }}, }, nil) suite.broker.EXPECT().GetIndexInfo(mock.Anything, suite.collection, segment).Return(nil, nil) } @@ -819,13 +819,13 @@ func (suite *TaskSuite) TestTaskCanceled() { }, nil) suite.broker.EXPECT().GetPartitions(mock.Anything, suite.collection).Return([]int64{100, 101}, nil) for _, segment := range suite.loadSegments { - suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return([]*datapb.SegmentInfo{ + suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return(&datapb.GetSegmentInfoResponse{Infos: []*datapb.SegmentInfo{ { ID: segment, CollectionID: suite.collection, PartitionID: partition, InsertChannel: channel.ChannelName, - }, + }}, }, nil) suite.broker.EXPECT().GetIndexInfo(mock.Anything, suite.collection, segment).Return(nil, nil) } @@ -901,13 +901,13 @@ func (suite *TaskSuite) TestSegmentTaskStale() { }, nil) suite.broker.EXPECT().GetPartitions(mock.Anything, suite.collection).Return([]int64{100, 101}, nil) for _, segment := range suite.loadSegments { - suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return([]*datapb.SegmentInfo{ + suite.broker.EXPECT().GetSegmentInfo(mock.Anything, segment).Return(&datapb.GetSegmentInfoResponse{Infos: []*datapb.SegmentInfo{ { ID: segment, CollectionID: suite.collection, PartitionID: partition, InsertChannel: channel.ChannelName, - }, + }}, }, nil) suite.broker.EXPECT().GetIndexInfo(mock.Anything, suite.collection, segment).Return(nil, nil) } diff --git a/internal/querycoordv2/task/utils.go b/internal/querycoordv2/task/utils.go index 4986c4529e..f58251dae3 100644 --- a/internal/querycoordv2/task/utils.go +++ b/internal/querycoordv2/task/utils.go @@ -20,13 +20,17 @@ import ( "context" "time" + "go.uber.org/zap" + "github.com/milvus-io/milvus-proto/go-api/commonpb" "github.com/milvus-io/milvus-proto/go-api/schemapb" + "github.com/milvus-io/milvus/internal/log" "github.com/milvus-io/milvus/internal/proto/datapb" "github.com/milvus-io/milvus/internal/proto/internalpb" "github.com/milvus-io/milvus/internal/proto/querypb" "github.com/milvus-io/milvus/internal/querycoordv2/meta" "github.com/milvus-io/milvus/internal/util/commonpbutil" + "github.com/milvus-io/milvus/internal/util/tsoutil" "github.com/milvus-io/milvus/internal/util/typeutil" ) @@ -83,11 +87,37 @@ func packLoadSegmentRequest( schema *schemapb.CollectionSchema, loadMeta *querypb.LoadMetaInfo, loadInfo *querypb.SegmentLoadInfo, - segment *datapb.SegmentInfo, + resp *datapb.GetSegmentInfoResponse, ) *querypb.LoadSegmentsRequest { - deltaPosition := segment.GetDmlPosition() - if deltaPosition == nil { + var deltaPosition *internalpb.MsgPosition + segment := resp.GetInfos()[0] + + var posSrcStr string + if resp.GetChannelCheckpoint() != nil && resp.ChannelCheckpoint[segment.InsertChannel] != nil { + deltaPosition = resp.ChannelCheckpoint[segment.InsertChannel] + posSrcStr = "channelCheckpoint" + } else if segment.GetDmlPosition() != nil { + deltaPosition = segment.GetDmlPosition() + posSrcStr = "segmentDMLPos" + } else { deltaPosition = segment.GetStartPosition() + posSrcStr = "segmentStartPos" + } + + posTime := tsoutil.PhysicalTime(deltaPosition.GetTimestamp()) + tsLag := time.Since(posTime) + if tsLag >= 10*time.Minute { + log.Warn("deltaPosition is quite stale when packLoadSegmentRequest", + zap.Int64("taskID", task.ID()), + zap.Int64("collectionID", task.CollectionID()), + zap.Int64("segmentID", task.SegmentID()), + zap.Int64("node", action.Node()), + zap.Int64("source", task.SourceID()), + zap.String("channel", segment.InsertChannel), + zap.String("posSource", posSrcStr), + zap.Uint64("posTs", deltaPosition.GetTimestamp()), + zap.Time("posTime", posTime), + zap.Duration("tsLag", tsLag)) } return &querypb.LoadSegmentsRequest{ @@ -173,7 +203,7 @@ func fillSubDmChannelRequest( return err } segmentInfos := make(map[int64]*datapb.SegmentInfo) - for _, info := range resp { + for _, info := range resp.GetInfos() { segmentInfos[info.GetID()] = info } req.SegmentInfos = segmentInfos diff --git a/internal/querycoordv2/task/utils_test.go b/internal/querycoordv2/task/utils_test.go new file mode 100644 index 0000000000..fa1c8d98fb --- /dev/null +++ b/internal/querycoordv2/task/utils_test.go @@ -0,0 +1,123 @@ +// Licensed to the LF AI & Data foundation under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package task + +import ( + "context" + "testing" + "time" + + "github.com/golang/protobuf/proto" + "github.com/stretchr/testify/assert" + + "github.com/milvus-io/milvus/internal/proto/datapb" + "github.com/milvus-io/milvus/internal/proto/internalpb" + "github.com/milvus-io/milvus/internal/util/tsoutil" +) + +func Test_packLoadSegmentRequest(t *testing.T) { + mockVChannel := "fake-by-dev-rootcoord-dml-1-test-packLoadSegmentRequest-v0" + mockPChannel := "fake-by-dev-rootcoord-dml-1" + + t0 := tsoutil.ComposeTSByTime(time.Now().Add(-20*time.Minute), 0) + t1 := tsoutil.ComposeTSByTime(time.Now().Add(-8*time.Minute), 0) + t2 := tsoutil.ComposeTSByTime(time.Now().Add(-5*time.Minute), 0) + t3 := tsoutil.ComposeTSByTime(time.Now().Add(-1*time.Minute), 0) + + segmentInfo := &datapb.SegmentInfo{ + ID: 0, + InsertChannel: mockVChannel, + StartPosition: &internalpb.MsgPosition{ + ChannelName: mockPChannel, + Timestamp: t1, + }, + DmlPosition: &internalpb.MsgPosition{ + ChannelName: mockPChannel, + Timestamp: t2, + }, + } + + t.Run("test set deltaPosition from channel checkpoint", func(t *testing.T) { + segmentAction := NewSegmentAction(0, 0, "", 0) + segmentTask, err := NewSegmentTask(context.TODO(), 5*time.Second, 0, 0, 0, segmentAction) + assert.NoError(t, err) + + resp := &datapb.GetSegmentInfoResponse{ + Infos: []*datapb.SegmentInfo{ + proto.Clone(segmentInfo).(*datapb.SegmentInfo), + }, + ChannelCheckpoint: map[string]*internalpb.MsgPosition{ + mockVChannel: { + ChannelName: mockPChannel, + Timestamp: t3, + }, + }, + } + req := packLoadSegmentRequest(segmentTask, segmentAction, nil, nil, nil, resp) + assert.Equal(t, 1, len(req.GetDeltaPositions())) + assert.Equal(t, mockPChannel, req.DeltaPositions[0].ChannelName) + assert.Equal(t, t3, req.DeltaPositions[0].Timestamp) + }) + + t.Run("test set deltaPosition from segment dmlPosition", func(t *testing.T) { + segmentAction := NewSegmentAction(0, 0, "", 0) + segmentTask, err := NewSegmentTask(context.TODO(), 5*time.Second, 0, 0, 0, segmentAction) + assert.NoError(t, err) + + resp := &datapb.GetSegmentInfoResponse{ + Infos: []*datapb.SegmentInfo{ + proto.Clone(segmentInfo).(*datapb.SegmentInfo), + }, + } + req := packLoadSegmentRequest(segmentTask, segmentAction, nil, nil, nil, resp) + assert.Equal(t, 1, len(req.GetDeltaPositions())) + assert.Equal(t, mockPChannel, req.DeltaPositions[0].ChannelName) + assert.Equal(t, t2, req.DeltaPositions[0].Timestamp) + }) + + t.Run("test set deltaPosition from segment startPosition", func(t *testing.T) { + segmentAction := NewSegmentAction(0, 0, "", 0) + segmentTask, err := NewSegmentTask(context.TODO(), 5*time.Second, 0, 0, 0, segmentAction) + assert.NoError(t, err) + + segInfo := proto.Clone(segmentInfo).(*datapb.SegmentInfo) + segInfo.DmlPosition = nil + resp := &datapb.GetSegmentInfoResponse{ + Infos: []*datapb.SegmentInfo{segInfo}, + } + req := packLoadSegmentRequest(segmentTask, segmentAction, nil, nil, nil, resp) + assert.Equal(t, 1, len(req.GetDeltaPositions())) + assert.Equal(t, mockPChannel, req.DeltaPositions[0].ChannelName) + assert.Equal(t, t1, req.DeltaPositions[0].Timestamp) + }) + + t.Run("test tsLag > 10minutes", func(t *testing.T) { + segmentAction := NewSegmentAction(0, 0, "", 0) + segmentTask, err := NewSegmentTask(context.TODO(), 5*time.Second, 0, 0, 0, segmentAction) + assert.NoError(t, err) + + segInfo := proto.Clone(segmentInfo).(*datapb.SegmentInfo) + segInfo.DmlPosition.Timestamp = t0 + resp := &datapb.GetSegmentInfoResponse{ + Infos: []*datapb.SegmentInfo{segInfo}, + } + req := packLoadSegmentRequest(segmentTask, segmentAction, nil, nil, nil, resp) + assert.Equal(t, 1, len(req.GetDeltaPositions())) + assert.Equal(t, mockPChannel, req.DeltaPositions[0].ChannelName) + assert.Equal(t, t0, req.DeltaPositions[0].Timestamp) + }) +}