mirror of https://github.com/milvus-io/milvus.git
Add field position to watchDmChannelRequest’s porto
Signed-off-by: xige-16 <xi.ge@zilliz.com>pull/4973/head^2
parent
bde4926e5b
commit
b2b39f5720
|
@ -262,9 +262,17 @@ type RemoveQueryChannelRequest struct {
|
|||
* *WatchDmChannels*
|
||||
|
||||
```go
|
||||
type WatchDmChannelRequest struct {
|
||||
Base *commonpb.MsgBase
|
||||
ChannelIDs []string
|
||||
type WatchDmChannelInfo struct {
|
||||
ChannelID string
|
||||
Pos *internalpb2.MsgPosition
|
||||
ExcludedSegments []int64
|
||||
}
|
||||
|
||||
type WatchDmChannelsRequest struct {
|
||||
Base *commonpb.MsgBase
|
||||
CollectionID int64
|
||||
ChannelIDs []string
|
||||
Infos []*WatchDmChannelsInfo
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
@ -115,9 +115,17 @@ message RemoveQueryChannelsRequest {
|
|||
string result_channelID = 4;
|
||||
}
|
||||
|
||||
message WatchDmChannelInfo {
|
||||
string channelID = 1;
|
||||
internal.MsgPosition pos = 2;
|
||||
repeated int64 excluded_segments = 3;
|
||||
}
|
||||
|
||||
message WatchDmChannelsRequest {
|
||||
common.MsgBase base = 1;
|
||||
repeated string channelIDs = 2;
|
||||
int64 collectionID = 2;
|
||||
repeated string channelIDs = 3;
|
||||
repeated WatchDmChannelInfo infos = 4;
|
||||
}
|
||||
|
||||
message LoadSegmentRequest {
|
||||
|
|
|
@ -941,19 +941,76 @@ func (m *RemoveQueryChannelsRequest) GetResultChannelID() string {
|
|||
return ""
|
||||
}
|
||||
|
||||
type WatchDmChannelInfo struct {
|
||||
ChannelID string `protobuf:"bytes,1,opt,name=channelID,proto3" json:"channelID,omitempty"`
|
||||
Pos *internalpb2.MsgPosition `protobuf:"bytes,2,opt,name=pos,proto3" json:"pos,omitempty"`
|
||||
ExcludedSegments []int64 `protobuf:"varint,3,rep,packed,name=excluded_segments,json=excludedSegments,proto3" json:"excluded_segments,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *WatchDmChannelInfo) Reset() { *m = WatchDmChannelInfo{} }
|
||||
func (m *WatchDmChannelInfo) String() string { return proto.CompactTextString(m) }
|
||||
func (*WatchDmChannelInfo) ProtoMessage() {}
|
||||
func (*WatchDmChannelInfo) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_5fcb6756dc1afb8d, []int{16}
|
||||
}
|
||||
|
||||
func (m *WatchDmChannelInfo) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_WatchDmChannelInfo.Unmarshal(m, b)
|
||||
}
|
||||
func (m *WatchDmChannelInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_WatchDmChannelInfo.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *WatchDmChannelInfo) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_WatchDmChannelInfo.Merge(m, src)
|
||||
}
|
||||
func (m *WatchDmChannelInfo) XXX_Size() int {
|
||||
return xxx_messageInfo_WatchDmChannelInfo.Size(m)
|
||||
}
|
||||
func (m *WatchDmChannelInfo) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_WatchDmChannelInfo.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_WatchDmChannelInfo proto.InternalMessageInfo
|
||||
|
||||
func (m *WatchDmChannelInfo) GetChannelID() string {
|
||||
if m != nil {
|
||||
return m.ChannelID
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *WatchDmChannelInfo) GetPos() *internalpb2.MsgPosition {
|
||||
if m != nil {
|
||||
return m.Pos
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *WatchDmChannelInfo) GetExcludedSegments() []int64 {
|
||||
if m != nil {
|
||||
return m.ExcludedSegments
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type WatchDmChannelsRequest struct {
|
||||
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
||||
ChannelIDs []string `protobuf:"bytes,2,rep,name=channelIDs,proto3" json:"channelIDs,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
||||
CollectionID int64 `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
||||
ChannelIDs []string `protobuf:"bytes,3,rep,name=channelIDs,proto3" json:"channelIDs,omitempty"`
|
||||
Infos []*WatchDmChannelInfo `protobuf:"bytes,4,rep,name=infos,proto3" json:"infos,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *WatchDmChannelsRequest) Reset() { *m = WatchDmChannelsRequest{} }
|
||||
func (m *WatchDmChannelsRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*WatchDmChannelsRequest) ProtoMessage() {}
|
||||
func (*WatchDmChannelsRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_5fcb6756dc1afb8d, []int{16}
|
||||
return fileDescriptor_5fcb6756dc1afb8d, []int{17}
|
||||
}
|
||||
|
||||
func (m *WatchDmChannelsRequest) XXX_Unmarshal(b []byte) error {
|
||||
|
@ -981,6 +1038,13 @@ func (m *WatchDmChannelsRequest) GetBase() *commonpb.MsgBase {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (m *WatchDmChannelsRequest) GetCollectionID() int64 {
|
||||
if m != nil {
|
||||
return m.CollectionID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *WatchDmChannelsRequest) GetChannelIDs() []string {
|
||||
if m != nil {
|
||||
return m.ChannelIDs
|
||||
|
@ -988,6 +1052,13 @@ func (m *WatchDmChannelsRequest) GetChannelIDs() []string {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (m *WatchDmChannelsRequest) GetInfos() []*WatchDmChannelInfo {
|
||||
if m != nil {
|
||||
return m.Infos
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type LoadSegmentRequest struct {
|
||||
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
||||
DbID int64 `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
||||
|
@ -1006,7 +1077,7 @@ func (m *LoadSegmentRequest) Reset() { *m = LoadSegmentRequest{} }
|
|||
func (m *LoadSegmentRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*LoadSegmentRequest) ProtoMessage() {}
|
||||
func (*LoadSegmentRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_5fcb6756dc1afb8d, []int{17}
|
||||
return fileDescriptor_5fcb6756dc1afb8d, []int{18}
|
||||
}
|
||||
|
||||
func (m *LoadSegmentRequest) XXX_Unmarshal(b []byte) error {
|
||||
|
@ -1098,7 +1169,7 @@ func (m *ReleaseSegmentRequest) Reset() { *m = ReleaseSegmentRequest{} }
|
|||
func (m *ReleaseSegmentRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ReleaseSegmentRequest) ProtoMessage() {}
|
||||
func (*ReleaseSegmentRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_5fcb6756dc1afb8d, []int{18}
|
||||
return fileDescriptor_5fcb6756dc1afb8d, []int{19}
|
||||
}
|
||||
|
||||
func (m *ReleaseSegmentRequest) XXX_Unmarshal(b []byte) error {
|
||||
|
@ -1171,7 +1242,7 @@ func (m *SegmentInfo) Reset() { *m = SegmentInfo{} }
|
|||
func (m *SegmentInfo) String() string { return proto.CompactTextString(m) }
|
||||
func (*SegmentInfo) ProtoMessage() {}
|
||||
func (*SegmentInfo) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_5fcb6756dc1afb8d, []int{19}
|
||||
return fileDescriptor_5fcb6756dc1afb8d, []int{20}
|
||||
}
|
||||
|
||||
func (m *SegmentInfo) XXX_Unmarshal(b []byte) error {
|
||||
|
@ -1253,7 +1324,7 @@ func (m *SegmentInfoRequest) Reset() { *m = SegmentInfoRequest{} }
|
|||
func (m *SegmentInfoRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*SegmentInfoRequest) ProtoMessage() {}
|
||||
func (*SegmentInfoRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_5fcb6756dc1afb8d, []int{20}
|
||||
return fileDescriptor_5fcb6756dc1afb8d, []int{21}
|
||||
}
|
||||
|
||||
func (m *SegmentInfoRequest) XXX_Unmarshal(b []byte) error {
|
||||
|
@ -1300,7 +1371,7 @@ func (m *SegmentInfoResponse) Reset() { *m = SegmentInfoResponse{} }
|
|||
func (m *SegmentInfoResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*SegmentInfoResponse) ProtoMessage() {}
|
||||
func (*SegmentInfoResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_5fcb6756dc1afb8d, []int{21}
|
||||
return fileDescriptor_5fcb6756dc1afb8d, []int{22}
|
||||
}
|
||||
|
||||
func (m *SegmentInfoResponse) XXX_Unmarshal(b []byte) error {
|
||||
|
@ -1353,6 +1424,7 @@ func init() {
|
|||
proto.RegisterType((*CreateQueryChannelResponse)(nil), "milvus.proto.query.CreateQueryChannelResponse")
|
||||
proto.RegisterType((*AddQueryChannelsRequest)(nil), "milvus.proto.query.AddQueryChannelsRequest")
|
||||
proto.RegisterType((*RemoveQueryChannelsRequest)(nil), "milvus.proto.query.RemoveQueryChannelsRequest")
|
||||
proto.RegisterType((*WatchDmChannelInfo)(nil), "milvus.proto.query.WatchDmChannelInfo")
|
||||
proto.RegisterType((*WatchDmChannelsRequest)(nil), "milvus.proto.query.WatchDmChannelsRequest")
|
||||
proto.RegisterType((*LoadSegmentRequest)(nil), "milvus.proto.query.LoadSegmentRequest")
|
||||
proto.RegisterType((*ReleaseSegmentRequest)(nil), "milvus.proto.query.ReleaseSegmentRequest")
|
||||
|
@ -1364,92 +1436,97 @@ func init() {
|
|||
func init() { proto.RegisterFile("query_service.proto", fileDescriptor_5fcb6756dc1afb8d) }
|
||||
|
||||
var fileDescriptor_5fcb6756dc1afb8d = []byte{
|
||||
// 1354 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xdf, 0x6f, 0x1b, 0xc5,
|
||||
0x13, 0xcf, 0xf9, 0x67, 0x3c, 0x71, 0x6d, 0x77, 0xf3, 0xa3, 0xfe, 0xde, 0xb7, 0x94, 0x72, 0xd0,
|
||||
0x36, 0x6d, 0xc1, 0x41, 0xa9, 0x40, 0xbc, 0x20, 0x94, 0xc4, 0x55, 0x64, 0x44, 0x43, 0x38, 0xa7,
|
||||
0xaa, 0x08, 0x54, 0xe6, 0x7c, 0xb7, 0xb1, 0xb7, 0xf5, 0xdd, 0xb9, 0xb7, 0xeb, 0xa4, 0xc9, 0x0b,
|
||||
0x20, 0xf1, 0x88, 0xc4, 0x0b, 0xff, 0x00, 0x42, 0x02, 0x89, 0xbf, 0x82, 0x17, 0xfe, 0x0a, 0x5e,
|
||||
0x90, 0x78, 0xe0, 0xdf, 0x40, 0xb7, 0xb7, 0x3e, 0xdf, 0x9d, 0xcf, 0x39, 0x37, 0x6e, 0x1a, 0xde,
|
||||
0xbc, 0x73, 0xb3, 0xf3, 0xf9, 0xcc, 0xec, 0xec, 0xec, 0x8c, 0x61, 0xf1, 0xd9, 0x00, 0x3b, 0xc7,
|
||||
0x2d, 0x8a, 0x9d, 0x43, 0xa2, 0xe3, 0x5a, 0xdf, 0xb1, 0x99, 0x8d, 0x90, 0x49, 0x7a, 0x87, 0x03,
|
||||
0xea, 0xad, 0x6a, 0x5c, 0x43, 0x2e, 0xea, 0xb6, 0x69, 0xda, 0x96, 0x27, 0x93, 0x8b, 0x41, 0x0d,
|
||||
0xb9, 0x44, 0x2c, 0x86, 0x1d, 0x4b, 0xeb, 0x89, 0x35, 0x32, 0x34, 0xa6, 0x85, 0x6d, 0xca, 0x45,
|
||||
0xaa, 0x77, 0xb1, 0xa9, 0x79, 0x2b, 0xe5, 0x6b, 0x58, 0x54, 0x71, 0x87, 0x50, 0x86, 0x9d, 0x1d,
|
||||
0xdb, 0xc0, 0x2a, 0x7e, 0x36, 0xc0, 0x94, 0xa1, 0x77, 0x21, 0xd3, 0xd6, 0x28, 0xae, 0x4a, 0xd7,
|
||||
0xa5, 0xd5, 0x85, 0xf5, 0xab, 0xb5, 0x10, 0x0f, 0x41, 0xe0, 0x01, 0xed, 0x6c, 0x6a, 0x14, 0xab,
|
||||
0x5c, 0x13, 0xbd, 0x0f, 0x79, 0xcd, 0x30, 0x1c, 0x4c, 0x69, 0x35, 0x75, 0xca, 0xa6, 0x0d, 0x4f,
|
||||
0x47, 0x1d, 0x2a, 0x2b, 0x3f, 0x48, 0xb0, 0x14, 0x66, 0x40, 0xfb, 0xb6, 0x45, 0x31, 0xba, 0x07,
|
||||
0x39, 0xca, 0x34, 0x36, 0xa0, 0x82, 0xc4, 0xff, 0x63, 0xed, 0x35, 0xb9, 0x8a, 0x2a, 0x54, 0xd1,
|
||||
0x26, 0x2c, 0x10, 0x8b, 0xb0, 0x56, 0x5f, 0x73, 0x34, 0x73, 0xc8, 0xe4, 0x8d, 0xf0, 0x4e, 0x3f,
|
||||
0x46, 0x0d, 0x8b, 0xb0, 0x5d, 0xae, 0xa8, 0x02, 0xf1, 0x7f, 0x2b, 0x8f, 0x61, 0xb9, 0xd9, 0xb5,
|
||||
0x8f, 0xb6, 0xec, 0x5e, 0x0f, 0xeb, 0x8c, 0xd8, 0xd6, 0xd9, 0x83, 0x82, 0x20, 0x63, 0xb4, 0x1b,
|
||||
0x75, 0xce, 0x23, 0xad, 0xf2, 0xdf, 0x0a, 0x85, 0x95, 0xa8, 0xf9, 0x59, 0x3c, 0x7e, 0x0b, 0x2e,
|
||||
0xe9, 0xbe, 0xa9, 0x46, 0xdd, 0xf5, 0x39, 0xbd, 0x9a, 0x56, 0xc3, 0x42, 0xe5, 0x77, 0x09, 0x96,
|
||||
0x3f, 0xb1, 0x35, 0xe3, 0x9c, 0x9c, 0x42, 0x0a, 0x14, 0x83, 0x80, 0xd5, 0x34, 0xff, 0x16, 0x92,
|
||||
0xa1, 0x0f, 0x21, 0xe7, 0xa5, 0x5e, 0x35, 0xc3, 0xb1, 0x6e, 0x84, 0xb1, 0x44, 0x5a, 0x8e, 0x18,
|
||||
0x36, 0xb9, 0x40, 0x15, 0x9b, 0x94, 0xef, 0x24, 0xa8, 0xaa, 0xb8, 0x87, 0x35, 0x8a, 0x2f, 0xd0,
|
||||
0x0b, 0xe5, 0x1b, 0x09, 0x96, 0xdc, 0xf3, 0xdb, 0xd5, 0x1c, 0x46, 0x2e, 0x86, 0x42, 0xdf, 0x4b,
|
||||
0xd0, 0x00, 0x83, 0x59, 0x12, 0x48, 0x81, 0x62, 0x7f, 0x68, 0x69, 0x94, 0x3f, 0x21, 0x99, 0x62,
|
||||
0x42, 0xd9, 0x47, 0x73, 0xb7, 0x63, 0x8a, 0xae, 0xc3, 0x42, 0x40, 0x85, 0x03, 0xa6, 0xd5, 0xa0,
|
||||
0x08, 0x7d, 0x00, 0x59, 0x17, 0x02, 0x73, 0xff, 0x4a, 0xeb, 0x4a, 0x6d, 0xbc, 0x98, 0xd5, 0xc2,
|
||||
0x56, 0x55, 0x6f, 0x83, 0xf2, 0x8b, 0x04, 0x2b, 0x11, 0xbc, 0x57, 0x9f, 0xae, 0xd1, 0xb8, 0x64,
|
||||
0x62, 0xe2, 0xf2, 0x9b, 0x04, 0x57, 0xc6, 0x88, 0xce, 0x72, 0x18, 0xfb, 0xb0, 0xe2, 0x03, 0xb4,
|
||||
0x0c, 0x4c, 0x75, 0x87, 0xf4, 0xdd, 0xdf, 0xde, 0xb1, 0x2c, 0xac, 0xbf, 0x99, 0x1c, 0x44, 0xaa,
|
||||
0x2e, 0xfb, 0x26, 0xea, 0x01, 0x0b, 0xca, 0xdf, 0x12, 0x2c, 0xb9, 0x35, 0xe0, 0xe2, 0x32, 0x77,
|
||||
0x9a, 0x98, 0x06, 0xca, 0x44, 0xf6, 0x2c, 0x65, 0xe2, 0x57, 0x09, 0xae, 0x88, 0x32, 0xf1, 0xdf,
|
||||
0x76, 0x54, 0xf9, 0x49, 0x02, 0x79, 0xcb, 0xc1, 0x1a, 0xc3, 0x9f, 0xb9, 0xc7, 0xb8, 0xd5, 0xd5,
|
||||
0x2c, 0x0b, 0xf7, 0x66, 0xcb, 0x9f, 0x5b, 0x50, 0x76, 0x3c, 0x67, 0x5b, 0xba, 0x67, 0x8f, 0x53,
|
||||
0x2f, 0xa8, 0x25, 0x21, 0x16, 0x28, 0xe8, 0x06, 0x94, 0x1c, 0x4c, 0x07, 0xbd, 0x91, 0x5e, 0x9a,
|
||||
0xeb, 0x5d, 0xf2, 0xa4, 0x42, 0x4d, 0xf9, 0x59, 0x82, 0x2b, 0x1b, 0x86, 0x11, 0x24, 0x38, 0xc3,
|
||||
0x55, 0xbc, 0x0b, 0x97, 0x23, 0xec, 0x44, 0x68, 0x0b, 0x6a, 0x25, 0xcc, 0xaf, 0x51, 0x47, 0xb7,
|
||||
0xa1, 0x12, 0x66, 0x28, 0x42, 0x5d, 0x50, 0xcb, 0x21, 0x8e, 0x8d, 0xba, 0xf2, 0xa7, 0x04, 0xb2,
|
||||
0x8a, 0x4d, 0xfb, 0x10, 0xc7, 0x12, 0x3d, 0x53, 0x24, 0x87, 0xde, 0xa5, 0x66, 0xf3, 0x2e, 0xfd,
|
||||
0x02, 0xde, 0x65, 0xe2, 0xbd, 0x7b, 0x02, 0x2b, 0x8f, 0x34, 0xa6, 0x77, 0xeb, 0xe6, 0xec, 0x27,
|
||||
0x70, 0x0d, 0xc0, 0xc7, 0xf3, 0x6a, 0x4a, 0x41, 0x0d, 0x48, 0x94, 0x7f, 0x52, 0x80, 0xdc, 0x1a,
|
||||
0xd1, 0xc4, 0x1d, 0x13, 0x5b, 0xec, 0xd5, 0x5f, 0x9c, 0xc8, 0xb3, 0x92, 0x19, 0x7f, 0x56, 0xae,
|
||||
0x01, 0x50, 0x8f, 0x9d, 0xeb, 0x42, 0x96, 0x5f, 0xac, 0x80, 0x04, 0xc9, 0x30, 0x7f, 0x40, 0x70,
|
||||
0xcf, 0x70, 0xbf, 0xe6, 0xf8, 0x57, 0x7f, 0x8d, 0x3e, 0x86, 0x92, 0xd0, 0x6c, 0xf1, 0x97, 0x86,
|
||||
0x56, 0xf3, 0x71, 0x65, 0xd5, 0xed, 0x9a, 0x6b, 0x22, 0x04, 0xbc, 0xa6, 0x36, 0xac, 0x03, 0x5b,
|
||||
0xbd, 0x44, 0x03, 0x92, 0x60, 0x9d, 0x9a, 0x3f, 0x4b, 0x9d, 0xfa, 0x43, 0x82, 0x65, 0x51, 0xa7,
|
||||
0x2e, 0x2c, 0xd8, 0xd3, 0x94, 0xe3, 0x84, 0x70, 0x2b, 0x7f, 0x49, 0xb0, 0x20, 0x1c, 0x70, 0xa3,
|
||||
0x84, 0xae, 0x42, 0xc1, 0xff, 0x2a, 0xba, 0x82, 0x91, 0x60, 0x8c, 0x55, 0x2a, 0x39, 0x05, 0xd2,
|
||||
0xe3, 0x29, 0xf0, 0x3f, 0x98, 0x37, 0xb1, 0xd9, 0xa2, 0xe4, 0x04, 0x8b, 0x0c, 0xc9, 0x9b, 0xd8,
|
||||
0x6c, 0x92, 0x13, 0xec, 0x7e, 0xb2, 0x06, 0x66, 0xcb, 0xb1, 0x8f, 0x28, 0x7f, 0x3f, 0xd2, 0x6a,
|
||||
0xde, 0x1a, 0x98, 0xaa, 0x7d, 0x44, 0xd1, 0x6b, 0x00, 0xc4, 0x32, 0xf0, 0xf3, 0x96, 0xa5, 0x99,
|
||||
0xb8, 0x9a, 0xe3, 0x97, 0xad, 0xc0, 0x25, 0x3b, 0x9a, 0x89, 0x51, 0x15, 0xf2, 0x7c, 0xd1, 0xa8,
|
||||
0x57, 0xf3, 0xde, 0x46, 0xb1, 0x54, 0x0e, 0x00, 0x05, 0x3c, 0x9c, 0xe9, 0xf2, 0x05, 0x42, 0x99,
|
||||
0x1a, 0x0b, 0xe5, 0xb7, 0x12, 0x2c, 0x86, 0x80, 0x66, 0x79, 0x09, 0xde, 0x83, 0x2c, 0xb1, 0x0e,
|
||||
0xec, 0x61, 0xe3, 0xf0, 0x7a, 0x5c, 0xe3, 0x10, 0x04, 0xf3, 0xb4, 0xef, 0x9c, 0x40, 0x29, 0xdc,
|
||||
0x4e, 0xa0, 0x22, 0xcc, 0xef, 0xd8, 0xec, 0xfe, 0x73, 0x42, 0x59, 0x65, 0x0e, 0x95, 0x00, 0x76,
|
||||
0x6c, 0xb6, 0xeb, 0x60, 0x8a, 0x2d, 0x56, 0x91, 0x10, 0x40, 0xee, 0x53, 0xab, 0x4e, 0xe8, 0xd3,
|
||||
0x4a, 0x0a, 0x2d, 0x8a, 0x2e, 0x51, 0xeb, 0x35, 0xac, 0x07, 0xd8, 0xb4, 0x9d, 0xe3, 0x4a, 0xda,
|
||||
0xdd, 0xee, 0xaf, 0x32, 0xa8, 0x02, 0x45, 0x5f, 0x65, 0x7b, 0xf7, 0x61, 0x25, 0x8b, 0x0a, 0x90,
|
||||
0xf5, 0x7e, 0xe6, 0xd6, 0xbf, 0x07, 0x28, 0xf2, 0x02, 0xde, 0xf4, 0x06, 0x56, 0xa4, 0x43, 0x31,
|
||||
0x38, 0x1a, 0xa2, 0x5b, 0x71, 0x4e, 0xc4, 0x8c, 0xaf, 0xf2, 0x6a, 0xb2, 0xa2, 0x17, 0x5b, 0x65,
|
||||
0x0e, 0x3d, 0x81, 0x72, 0x78, 0x1e, 0xa3, 0xe8, 0x76, 0x6c, 0xb0, 0xe2, 0x66, 0x42, 0xf9, 0xce,
|
||||
0x34, 0xaa, 0x3e, 0x56, 0x07, 0x4a, 0xa1, 0xce, 0x9d, 0xa2, 0xd5, 0x49, 0xfb, 0xa3, 0xcd, 0x8b,
|
||||
0x7c, 0x7b, 0x0a, 0x4d, 0x1f, 0xe8, 0x73, 0x28, 0x85, 0x5a, 0xbd, 0x09, 0x40, 0x71, 0xed, 0xa0,
|
||||
0x7c, 0x5a, 0x7a, 0x29, 0x73, 0xa8, 0x05, 0x97, 0xa3, 0xfd, 0x15, 0x45, 0x77, 0xe3, 0x03, 0x1e,
|
||||
0xdb, 0x86, 0x25, 0x01, 0xec, 0x7b, 0xdc, 0x47, 0x01, 0x8c, 0x3f, 0x8f, 0xd8, 0x71, 0x36, 0xc9,
|
||||
0xf6, 0x57, 0x3e, 0xf9, 0x80, 0xf9, 0xb7, 0x4f, 0x21, 0xff, 0xc2, 0x08, 0x6d, 0x40, 0xe3, 0x4d,
|
||||
0x1d, 0x92, 0x63, 0x37, 0xdd, 0x37, 0xfb, 0xec, 0x58, 0xae, 0xc5, 0xc1, 0x4f, 0x6e, 0x0c, 0x95,
|
||||
0x39, 0xf4, 0x08, 0xd0, 0x36, 0x66, 0x7b, 0xc4, 0xc4, 0x7b, 0x44, 0x7f, 0x3a, 0x0d, 0x46, 0xe4,
|
||||
0x81, 0x13, 0x8b, 0x26, 0x73, 0x88, 0xd5, 0x09, 0xa5, 0xcd, 0xd2, 0x36, 0xe6, 0x0f, 0x1c, 0xa1,
|
||||
0x8c, 0xe8, 0xf4, 0x25, 0x9a, 0xb6, 0x39, 0xe7, 0xe8, 0x14, 0x79, 0x67, 0x9a, 0x79, 0x46, 0x04,
|
||||
0xfe, 0xee, 0x54, 0xba, 0x3e, 0xe0, 0x3e, 0x07, 0xdc, 0xb2, 0xcd, 0xbe, 0x6d, 0x8d, 0x5e, 0xed,
|
||||
0xd3, 0x3c, 0xb9, 0x39, 0xe1, 0x7f, 0xa2, 0x88, 0x0d, 0x65, 0x0e, 0xe9, 0x50, 0x72, 0xe3, 0x14,
|
||||
0x78, 0xf6, 0x6e, 0x26, 0xd5, 0x57, 0xe1, 0xc4, 0xad, 0x44, 0xbd, 0xa1, 0x03, 0xeb, 0x3f, 0xce,
|
||||
0x43, 0x81, 0x27, 0x00, 0xaf, 0x7d, 0xe7, 0x76, 0xe6, 0x7b, 0x50, 0x16, 0x67, 0xfe, 0x32, 0x8f,
|
||||
0xfb, 0x3c, 0xa3, 0xff, 0x18, 0xca, 0x91, 0x99, 0x24, 0xbe, 0xfe, 0x4c, 0x18, 0x5c, 0x92, 0x6e,
|
||||
0xb0, 0x0e, 0x68, 0x7c, 0x98, 0x40, 0xb5, 0xf8, 0x22, 0x31, 0x69, 0xe8, 0x48, 0x02, 0xf9, 0x12,
|
||||
0xca, 0x91, 0xa6, 0x3e, 0xfe, 0x2e, 0xc4, 0x77, 0xfe, 0x49, 0xd6, 0x1f, 0x42, 0x31, 0xd0, 0xc5,
|
||||
0xd3, 0xf8, 0xec, 0x1c, 0xef, 0xf3, 0x2f, 0xbe, 0x7a, 0x9e, 0xfb, 0xe3, 0xf2, 0x05, 0x94, 0xc3,
|
||||
0x5d, 0xf7, 0x84, 0xd7, 0x3e, 0xb6, 0x35, 0x4f, 0xce, 0x9c, 0xf3, 0x2f, 0x0b, 0x9b, 0x1b, 0xfb,
|
||||
0x1f, 0x75, 0x08, 0xeb, 0x0e, 0xda, 0x2e, 0xfc, 0xda, 0x09, 0xe9, 0xf5, 0xc8, 0x09, 0xc3, 0x7a,
|
||||
0x77, 0xcd, 0xb3, 0xf0, 0x8e, 0x41, 0x28, 0x73, 0x48, 0x7b, 0xc0, 0xb0, 0xb1, 0x36, 0xbc, 0x44,
|
||||
0x6b, 0xdc, 0xec, 0x1a, 0x37, 0xdb, 0x6f, 0xb7, 0x73, 0x7c, 0x79, 0xef, 0xdf, 0x00, 0x00, 0x00,
|
||||
0xff, 0xff, 0x3a, 0x02, 0xac, 0xa7, 0x74, 0x18, 0x00, 0x00,
|
||||
// 1428 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0x4f, 0x6f, 0x1b, 0x45,
|
||||
0x14, 0xcf, 0xc6, 0x8e, 0x13, 0xbf, 0xb8, 0xb6, 0x3b, 0xf9, 0x53, 0xb3, 0x94, 0x52, 0x06, 0xda,
|
||||
0xa6, 0x2d, 0x38, 0x28, 0x05, 0xc4, 0x01, 0x84, 0xda, 0xb8, 0xaa, 0x8c, 0x68, 0x08, 0xeb, 0x56,
|
||||
0x15, 0x81, 0xca, 0xac, 0x77, 0x27, 0xce, 0x50, 0xef, 0xae, 0xbb, 0x33, 0x6e, 0x9b, 0x5c, 0x00,
|
||||
0x89, 0x23, 0x12, 0x17, 0xf8, 0x00, 0x08, 0x09, 0x24, 0x3e, 0x05, 0x17, 0x6e, 0x7c, 0x03, 0x2e,
|
||||
0x48, 0x1c, 0xf8, 0x1a, 0x68, 0x67, 0xc7, 0xeb, 0xdd, 0xf5, 0x38, 0x76, 0xe3, 0xa6, 0xe1, 0xb6,
|
||||
0xf3, 0xf6, 0xfd, 0xfd, 0xcd, 0x9b, 0xf7, 0x07, 0x96, 0x1e, 0xf6, 0x88, 0xbf, 0xdf, 0x64, 0xc4,
|
||||
0x7f, 0x44, 0x2d, 0x52, 0xed, 0xfa, 0x1e, 0xf7, 0x10, 0x72, 0x68, 0xe7, 0x51, 0x8f, 0x85, 0xa7,
|
||||
0xaa, 0xe0, 0xd0, 0x0b, 0x96, 0xe7, 0x38, 0x9e, 0x1b, 0xd2, 0xf4, 0x42, 0x9c, 0x43, 0x2f, 0x52,
|
||||
0x97, 0x13, 0xdf, 0x35, 0x3b, 0xf2, 0x8c, 0x6c, 0x93, 0x9b, 0x49, 0x9d, 0x7a, 0x81, 0x59, 0x7b,
|
||||
0xc4, 0x31, 0xc3, 0x13, 0xfe, 0x0a, 0x96, 0x0c, 0xd2, 0xa6, 0x8c, 0x13, 0x7f, 0xcb, 0xb3, 0x89,
|
||||
0x41, 0x1e, 0xf6, 0x08, 0xe3, 0xe8, 0x4d, 0xc8, 0xb6, 0x4c, 0x46, 0x2a, 0xda, 0x79, 0x6d, 0x6d,
|
||||
0x71, 0xe3, 0x6c, 0x35, 0xe1, 0x87, 0x74, 0xe0, 0x36, 0x6b, 0xdf, 0x30, 0x19, 0x31, 0x04, 0x27,
|
||||
0x7a, 0x07, 0xe6, 0x4d, 0xdb, 0xf6, 0x09, 0x63, 0x95, 0xd9, 0x43, 0x84, 0xae, 0x87, 0x3c, 0x46,
|
||||
0x9f, 0x19, 0x7f, 0xaf, 0xc1, 0x72, 0xd2, 0x03, 0xd6, 0xf5, 0x5c, 0x46, 0xd0, 0x35, 0xc8, 0x31,
|
||||
0x6e, 0xf2, 0x1e, 0x93, 0x4e, 0xbc, 0xa8, 0xd4, 0xd7, 0x10, 0x2c, 0x86, 0x64, 0x45, 0x37, 0x60,
|
||||
0x91, 0xba, 0x94, 0x37, 0xbb, 0xa6, 0x6f, 0x3a, 0x7d, 0x4f, 0x5e, 0x49, 0x4a, 0x46, 0x18, 0xd5,
|
||||
0x5d, 0xca, 0xb7, 0x05, 0xa3, 0x01, 0x34, 0xfa, 0xc6, 0xf7, 0x61, 0xa5, 0xb1, 0xe7, 0x3d, 0xde,
|
||||
0xf4, 0x3a, 0x1d, 0x62, 0x71, 0xea, 0xb9, 0x47, 0x07, 0x05, 0x41, 0xd6, 0x6e, 0xd5, 0x6b, 0xc2,
|
||||
0x8f, 0x8c, 0x21, 0xbe, 0x31, 0x83, 0xd5, 0xb4, 0xfa, 0x69, 0x22, 0x7e, 0x0d, 0x4e, 0x59, 0x91,
|
||||
0xaa, 0x7a, 0x2d, 0x88, 0x39, 0xb3, 0x96, 0x31, 0x92, 0x44, 0xfc, 0xbb, 0x06, 0x2b, 0x1f, 0x79,
|
||||
0xa6, 0x7d, 0x4c, 0x41, 0x21, 0x0c, 0x85, 0xb8, 0xc1, 0x4a, 0x46, 0xfc, 0x4b, 0xd0, 0xd0, 0xfb,
|
||||
0x90, 0x0b, 0x53, 0xaf, 0x92, 0x15, 0xb6, 0x2e, 0x24, 0x6d, 0xc9, 0xb4, 0x1c, 0x78, 0xd8, 0x10,
|
||||
0x04, 0x43, 0x0a, 0xe1, 0x6f, 0x35, 0xa8, 0x18, 0xa4, 0x43, 0x4c, 0x46, 0x4e, 0x30, 0x0a, 0xfc,
|
||||
0xb5, 0x06, 0xcb, 0xc1, 0xfd, 0x6d, 0x9b, 0x3e, 0xa7, 0x27, 0xe3, 0x42, 0x37, 0x4c, 0xd0, 0x98,
|
||||
0x07, 0xd3, 0x24, 0x10, 0x86, 0x42, 0xb7, 0xaf, 0x69, 0x90, 0x3f, 0x09, 0x1a, 0x76, 0xa0, 0x14,
|
||||
0x59, 0x0b, 0xc4, 0x09, 0x43, 0xe7, 0x61, 0x31, 0xc6, 0x22, 0x0c, 0x66, 0x8c, 0x38, 0x09, 0xbd,
|
||||
0x0b, 0x73, 0x81, 0x09, 0x22, 0xe2, 0x2b, 0x6e, 0xe0, 0xea, 0x70, 0x31, 0xab, 0x26, 0xb5, 0x1a,
|
||||
0xa1, 0x00, 0xfe, 0x45, 0x83, 0xd5, 0x94, 0xbd, 0xe7, 0x9f, 0xae, 0x69, 0x5c, 0xb2, 0x0a, 0x5c,
|
||||
0x7e, 0xd3, 0xe0, 0xcc, 0x90, 0xa3, 0xd3, 0x5c, 0xc6, 0x0e, 0xac, 0x46, 0x06, 0x9a, 0x36, 0x61,
|
||||
0x96, 0x4f, 0xbb, 0xc1, 0x77, 0x78, 0x2d, 0x8b, 0x1b, 0xaf, 0x8e, 0x07, 0x91, 0x19, 0x2b, 0x91,
|
||||
0x8a, 0x5a, 0x4c, 0x03, 0xfe, 0x47, 0x83, 0xe5, 0xa0, 0x06, 0x9c, 0x5c, 0xe6, 0x4e, 0x82, 0x69,
|
||||
0xac, 0x4c, 0xcc, 0x1d, 0xa5, 0x4c, 0xfc, 0xaa, 0xc1, 0x19, 0x59, 0x26, 0xfe, 0xdf, 0x81, 0xe2,
|
||||
0x9f, 0x34, 0xd0, 0x37, 0x7d, 0x62, 0x72, 0xf2, 0x49, 0x70, 0x8d, 0x9b, 0x7b, 0xa6, 0xeb, 0x92,
|
||||
0xce, 0x74, 0xf9, 0x73, 0x09, 0x4a, 0x7e, 0x18, 0x6c, 0xd3, 0x0a, 0xf5, 0x09, 0xd7, 0xf3, 0x46,
|
||||
0x51, 0x92, 0xa5, 0x15, 0x74, 0x01, 0x8a, 0x3e, 0x61, 0xbd, 0xce, 0x80, 0x2f, 0x23, 0xf8, 0x4e,
|
||||
0x85, 0x54, 0xc9, 0x86, 0x7f, 0xd6, 0xe0, 0xcc, 0x75, 0xdb, 0x8e, 0x3b, 0x38, 0xc5, 0x53, 0xbc,
|
||||
0x0a, 0xa7, 0x53, 0xde, 0x49, 0x68, 0xf3, 0x46, 0x39, 0xe9, 0x5f, 0xbd, 0x86, 0x2e, 0x43, 0x39,
|
||||
0xe9, 0xa1, 0x84, 0x3a, 0x6f, 0x94, 0x12, 0x3e, 0xd6, 0x6b, 0xf8, 0x2f, 0x0d, 0x74, 0x83, 0x38,
|
||||
0xde, 0x23, 0xa2, 0x74, 0xf4, 0x48, 0x48, 0xf6, 0xa3, 0x9b, 0x9d, 0x2e, 0xba, 0xcc, 0x53, 0x44,
|
||||
0x97, 0x55, 0x47, 0xf7, 0xa3, 0x06, 0xe8, 0x9e, 0xc9, 0xad, 0xbd, 0x9a, 0xd3, 0x27, 0xba, 0xbb,
|
||||
0x1e, 0x3a, 0x0b, 0xf9, 0x81, 0xa8, 0x26, 0x44, 0x07, 0x04, 0xf4, 0x16, 0x64, 0xba, 0x5e, 0x7f,
|
||||
0x00, 0xc2, 0x23, 0x06, 0xa0, 0xdb, 0xac, 0xbd, 0xed, 0xb1, 0xf0, 0x89, 0x04, 0xec, 0x41, 0x08,
|
||||
0xe4, 0x89, 0xd5, 0xe9, 0xd9, 0xc4, 0x6e, 0x32, 0xd2, 0x76, 0x88, 0xcb, 0x59, 0x25, 0x23, 0x72,
|
||||
0xb7, 0xdc, 0xff, 0xd1, 0x90, 0x74, 0xfc, 0xa7, 0x06, 0xab, 0x49, 0xbf, 0xa6, 0x48, 0x8d, 0xf4,
|
||||
0xa3, 0x9a, 0x55, 0x3c, 0xaa, 0x73, 0x00, 0x51, 0x80, 0xa1, 0x5b, 0x79, 0x23, 0x46, 0x41, 0xef,
|
||||
0xc1, 0x1c, 0x75, 0x77, 0xbd, 0xf0, 0xb5, 0x2d, 0x6e, 0x5c, 0x54, 0xd5, 0xca, 0x61, 0x20, 0x8d,
|
||||
0x50, 0x08, 0xff, 0x3b, 0x0b, 0x28, 0x28, 0x8f, 0x32, 0xbe, 0xe7, 0x5f, 0x33, 0x52, 0x1d, 0x35,
|
||||
0x3b, 0xdc, 0x51, 0xcf, 0x01, 0xc8, 0x5b, 0x09, 0x00, 0x98, 0x13, 0xf7, 0x12, 0xa3, 0x20, 0x1d,
|
||||
0x16, 0x76, 0x29, 0xe9, 0xd8, 0xc1, 0xdf, 0x9c, 0xf8, 0x1b, 0x9d, 0xd1, 0x87, 0x50, 0x94, 0x9c,
|
||||
0x4d, 0xd1, 0x64, 0x59, 0x65, 0x5e, 0xd5, 0x51, 0x82, 0x85, 0xa1, 0x2a, 0x21, 0x10, 0xed, 0x44,
|
||||
0x40, 0x74, 0x8a, 0xc5, 0x28, 0xf1, 0x12, 0xbd, 0x70, 0x94, 0x12, 0xfd, 0x87, 0x06, 0x2b, 0xb2,
|
||||
0x44, 0x9f, 0x18, 0xd8, 0x93, 0x74, 0xa2, 0x31, 0x70, 0xe3, 0xbf, 0x35, 0x58, 0x94, 0x01, 0xf4,
|
||||
0x5f, 0x64, 0xf4, 0x57, 0x0e, 0x44, 0x03, 0xc2, 0x44, 0x19, 0x9e, 0x4a, 0x81, 0xcc, 0x70, 0x0a,
|
||||
0xbc, 0x00, 0x0b, 0x0e, 0x71, 0x9a, 0x8c, 0x1e, 0x10, 0x99, 0x21, 0xf3, 0x0e, 0x71, 0x1a, 0xf4,
|
||||
0x80, 0x04, 0xbf, 0xdc, 0x9e, 0xd3, 0xf4, 0xbd, 0xc7, 0x4c, 0xb4, 0xce, 0x8c, 0x31, 0xef, 0xf6,
|
||||
0x1c, 0xc3, 0x7b, 0xcc, 0xd0, 0x4b, 0x00, 0xd4, 0xb5, 0xc9, 0x93, 0xa6, 0x6b, 0x3a, 0xa4, 0x92,
|
||||
0x0b, 0x8b, 0x85, 0xa0, 0x6c, 0x99, 0x0e, 0x41, 0x15, 0x98, 0x17, 0x87, 0x7a, 0xad, 0x32, 0x1f,
|
||||
0x0a, 0xca, 0x23, 0xde, 0x05, 0x14, 0x8b, 0xf0, 0xe8, 0xd7, 0x94, 0x84, 0x72, 0x76, 0x08, 0xca,
|
||||
0x6f, 0x34, 0x58, 0x4a, 0x18, 0x9a, 0xa6, 0x09, 0xbe, 0xdd, 0xaf, 0x03, 0xe1, 0xcc, 0xf4, 0xb2,
|
||||
0xaa, 0x0e, 0xc4, 0x8d, 0x85, 0xdc, 0x57, 0x0e, 0xa0, 0x98, 0x9c, 0xa4, 0x50, 0x01, 0x16, 0xb6,
|
||||
0x3c, 0x7e, 0xf3, 0x09, 0x65, 0xbc, 0x3c, 0x83, 0x8a, 0x00, 0x5b, 0x1e, 0xdf, 0xf6, 0x09, 0x23,
|
||||
0x2e, 0x2f, 0x6b, 0x08, 0x20, 0xf7, 0xb1, 0x5b, 0xa3, 0xec, 0x41, 0x79, 0x16, 0x2d, 0xc9, 0x01,
|
||||
0xd9, 0xec, 0xd4, 0xdd, 0xdb, 0xc4, 0xf1, 0xfc, 0xfd, 0x72, 0x26, 0x10, 0x8f, 0x4e, 0x59, 0x54,
|
||||
0x86, 0x42, 0xc4, 0x72, 0x6b, 0xfb, 0x6e, 0x79, 0x0e, 0xe5, 0x61, 0x2e, 0xfc, 0xcc, 0x6d, 0x7c,
|
||||
0x07, 0x50, 0x10, 0xbd, 0xab, 0x11, 0xee, 0xea, 0xc8, 0x82, 0x42, 0x7c, 0x2b, 0x46, 0x97, 0x54,
|
||||
0x41, 0x28, 0x36, 0x77, 0x7d, 0x6d, 0x3c, 0x63, 0x88, 0x2d, 0x9e, 0x41, 0x5f, 0x42, 0x29, 0xb9,
|
||||
0x8a, 0x32, 0x74, 0x59, 0x09, 0x96, 0x6a, 0x1d, 0xd6, 0xaf, 0x4c, 0xc2, 0x1a, 0xd9, 0x6a, 0x43,
|
||||
0x31, 0xb1, 0xb4, 0x30, 0xb4, 0x36, 0x4a, 0x3e, 0x3d, 0xb7, 0xe9, 0x97, 0x27, 0xe0, 0x8c, 0x0c,
|
||||
0x7d, 0x0a, 0xc5, 0xc4, 0x94, 0x3b, 0xc2, 0x90, 0x6a, 0x12, 0xd6, 0x0f, 0x4b, 0x2f, 0x3c, 0x83,
|
||||
0x9a, 0x70, 0x3a, 0x3d, 0x5a, 0x32, 0x74, 0x55, 0x0d, 0xb8, 0x72, 0x02, 0x1d, 0x67, 0x60, 0x27,
|
||||
0xf4, 0x7d, 0x00, 0xa0, 0xfa, 0x3e, 0x94, 0x9b, 0xfc, 0x38, 0xdd, 0x5f, 0x44, 0xce, 0xc7, 0xd4,
|
||||
0xbf, 0x7e, 0x88, 0xf3, 0x4f, 0x6d, 0xa1, 0x05, 0x68, 0x78, 0x9e, 0x45, 0xba, 0x52, 0xe8, 0xa6,
|
||||
0xd3, 0xe5, 0xfb, 0x7a, 0x55, 0x65, 0x7e, 0xf4, 0x4c, 0x8c, 0x67, 0xd0, 0x3d, 0x40, 0xb7, 0x08,
|
||||
0xbf, 0x43, 0x1d, 0x72, 0x87, 0x5a, 0x0f, 0x26, 0xb1, 0x91, 0x6a, 0x70, 0xf2, 0xd0, 0xe0, 0x3e,
|
||||
0x75, 0xdb, 0x89, 0xb4, 0x59, 0xbe, 0x45, 0x44, 0x83, 0xa3, 0x8c, 0x53, 0x8b, 0x3d, 0x43, 0xd5,
|
||||
0x9e, 0xf0, 0x39, 0xbd, 0x40, 0x5f, 0x99, 0x64, 0x95, 0x93, 0xc0, 0x5f, 0x9d, 0x88, 0x37, 0x32,
|
||||
0xb8, 0x23, 0x0c, 0x6e, 0x7a, 0x4e, 0xd7, 0x73, 0x07, 0x5d, 0xfb, 0xb0, 0x48, 0x2e, 0x8e, 0x98,
|
||||
0x10, 0x53, 0x3a, 0xf0, 0x0c, 0xb2, 0xa0, 0x18, 0xe0, 0x14, 0x6b, 0x7b, 0x17, 0xc7, 0xd5, 0x57,
|
||||
0x19, 0xc4, 0xa5, 0xb1, 0x7c, 0xfd, 0x00, 0x36, 0x7e, 0x58, 0x80, 0xbc, 0x48, 0x00, 0x51, 0xfb,
|
||||
0x8e, 0xed, 0xce, 0xef, 0x40, 0x49, 0xde, 0xf9, 0xb3, 0xbc, 0xee, 0xe3, 0x44, 0xff, 0x3e, 0x94,
|
||||
0x52, 0xeb, 0x98, 0xba, 0xfe, 0x8c, 0xd8, 0xd9, 0xc6, 0xbd, 0x60, 0x0b, 0xd0, 0xf0, 0x1e, 0x85,
|
||||
0xaa, 0xea, 0x22, 0x31, 0x6a, 0xdf, 0x1a, 0x67, 0xe4, 0x73, 0x28, 0xa5, 0xd6, 0x06, 0xf5, 0x5b,
|
||||
0x50, 0xef, 0x16, 0xe3, 0xb4, 0xdf, 0x85, 0x42, 0x6c, 0x8a, 0x67, 0xea, 0xec, 0x1c, 0x9e, 0xf3,
|
||||
0x4f, 0xbe, 0x7a, 0x1e, 0x7b, 0x73, 0xf9, 0x0c, 0x4a, 0xc9, 0xa9, 0x7b, 0x44, 0xb7, 0x57, 0x8e,
|
||||
0xe6, 0xe3, 0x33, 0xe7, 0xf8, 0xcb, 0xc2, 0x8d, 0xeb, 0x3b, 0x1f, 0xb4, 0x29, 0xdf, 0xeb, 0xb5,
|
||||
0x02, 0xf3, 0xeb, 0x07, 0xb4, 0xd3, 0xa1, 0x07, 0x9c, 0x58, 0x7b, 0xeb, 0xa1, 0x86, 0x37, 0x6c,
|
||||
0xca, 0xb8, 0x4f, 0x5b, 0x3d, 0x4e, 0xec, 0xf5, 0xfe, 0x23, 0x5a, 0x17, 0x6a, 0xd7, 0x85, 0xda,
|
||||
0x6e, 0xab, 0x95, 0x13, 0xc7, 0x6b, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x59, 0x56, 0xad, 0x0f,
|
||||
0x6f, 0x19, 0x00, 0x00,
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
|
|
Loading…
Reference in New Issue