mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
1037 lines
35 KiB
Go
1037 lines
35 KiB
Go
// Code generated by protoc-gen-go.
|
|
// source: master.proto
|
|
// DO NOT EDIT!
|
|
|
|
/*
|
|
Package master_pb is a generated protocol buffer package.
|
|
|
|
It is generated from these files:
|
|
master.proto
|
|
|
|
It has these top-level messages:
|
|
Heartbeat
|
|
HeartbeatResponse
|
|
VolumeInformationMessage
|
|
Empty
|
|
SuperBlockExtra
|
|
ClientListenRequest
|
|
VolumeLocation
|
|
LookupVolumeRequest
|
|
LookupVolumeResponse
|
|
Location
|
|
AssignRequest
|
|
AssignResponse
|
|
StatisticsRequest
|
|
StatisticsResponse
|
|
*/
|
|
package master_pb
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
import fmt "fmt"
|
|
import math "math"
|
|
|
|
import (
|
|
context "golang.org/x/net/context"
|
|
grpc "google.golang.org/grpc"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
type Heartbeat struct {
|
|
Ip string `protobuf:"bytes,1,opt,name=ip" json:"ip,omitempty"`
|
|
Port uint32 `protobuf:"varint,2,opt,name=port" json:"port,omitempty"`
|
|
PublicUrl string `protobuf:"bytes,3,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
|
|
MaxVolumeCount uint32 `protobuf:"varint,4,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
|
|
MaxFileKey uint64 `protobuf:"varint,5,opt,name=max_file_key,json=maxFileKey" json:"max_file_key,omitempty"`
|
|
DataCenter string `protobuf:"bytes,6,opt,name=data_center,json=dataCenter" json:"data_center,omitempty"`
|
|
Rack string `protobuf:"bytes,7,opt,name=rack" json:"rack,omitempty"`
|
|
AdminPort uint32 `protobuf:"varint,8,opt,name=admin_port,json=adminPort" json:"admin_port,omitempty"`
|
|
Volumes []*VolumeInformationMessage `protobuf:"bytes,9,rep,name=volumes" json:"volumes,omitempty"`
|
|
// delta volume ids
|
|
NewVids []uint32 `protobuf:"varint,10,rep,packed,name=new_vids,json=newVids" json:"new_vids,omitempty"`
|
|
DeletedVids []uint32 `protobuf:"varint,11,rep,packed,name=deleted_vids,json=deletedVids" json:"deleted_vids,omitempty"`
|
|
}
|
|
|
|
func (m *Heartbeat) Reset() { *m = Heartbeat{} }
|
|
func (m *Heartbeat) String() string { return proto.CompactTextString(m) }
|
|
func (*Heartbeat) ProtoMessage() {}
|
|
func (*Heartbeat) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
func (m *Heartbeat) GetIp() string {
|
|
if m != nil {
|
|
return m.Ip
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Heartbeat) GetPort() uint32 {
|
|
if m != nil {
|
|
return m.Port
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Heartbeat) GetPublicUrl() string {
|
|
if m != nil {
|
|
return m.PublicUrl
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Heartbeat) GetMaxVolumeCount() uint32 {
|
|
if m != nil {
|
|
return m.MaxVolumeCount
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Heartbeat) GetMaxFileKey() uint64 {
|
|
if m != nil {
|
|
return m.MaxFileKey
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Heartbeat) GetDataCenter() string {
|
|
if m != nil {
|
|
return m.DataCenter
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Heartbeat) GetRack() string {
|
|
if m != nil {
|
|
return m.Rack
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Heartbeat) GetAdminPort() uint32 {
|
|
if m != nil {
|
|
return m.AdminPort
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Heartbeat) GetVolumes() []*VolumeInformationMessage {
|
|
if m != nil {
|
|
return m.Volumes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Heartbeat) GetNewVids() []uint32 {
|
|
if m != nil {
|
|
return m.NewVids
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Heartbeat) GetDeletedVids() []uint32 {
|
|
if m != nil {
|
|
return m.DeletedVids
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type HeartbeatResponse struct {
|
|
VolumeSizeLimit uint64 `protobuf:"varint,1,opt,name=volumeSizeLimit" json:"volumeSizeLimit,omitempty"`
|
|
SecretKey string `protobuf:"bytes,2,opt,name=secretKey" json:"secretKey,omitempty"`
|
|
Leader string `protobuf:"bytes,3,opt,name=leader" json:"leader,omitempty"`
|
|
}
|
|
|
|
func (m *HeartbeatResponse) Reset() { *m = HeartbeatResponse{} }
|
|
func (m *HeartbeatResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*HeartbeatResponse) ProtoMessage() {}
|
|
func (*HeartbeatResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
|
|
func (m *HeartbeatResponse) GetVolumeSizeLimit() uint64 {
|
|
if m != nil {
|
|
return m.VolumeSizeLimit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *HeartbeatResponse) GetSecretKey() string {
|
|
if m != nil {
|
|
return m.SecretKey
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *HeartbeatResponse) GetLeader() string {
|
|
if m != nil {
|
|
return m.Leader
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type VolumeInformationMessage struct {
|
|
Id uint32 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
|
|
Size uint64 `protobuf:"varint,2,opt,name=size" json:"size,omitempty"`
|
|
Collection string `protobuf:"bytes,3,opt,name=collection" json:"collection,omitempty"`
|
|
FileCount uint64 `protobuf:"varint,4,opt,name=file_count,json=fileCount" json:"file_count,omitempty"`
|
|
DeleteCount uint64 `protobuf:"varint,5,opt,name=delete_count,json=deleteCount" json:"delete_count,omitempty"`
|
|
DeletedByteCount uint64 `protobuf:"varint,6,opt,name=deleted_byte_count,json=deletedByteCount" json:"deleted_byte_count,omitempty"`
|
|
ReadOnly bool `protobuf:"varint,7,opt,name=read_only,json=readOnly" json:"read_only,omitempty"`
|
|
ReplicaPlacement uint32 `protobuf:"varint,8,opt,name=replica_placement,json=replicaPlacement" json:"replica_placement,omitempty"`
|
|
Version uint32 `protobuf:"varint,9,opt,name=version" json:"version,omitempty"`
|
|
Ttl uint32 `protobuf:"varint,10,opt,name=ttl" json:"ttl,omitempty"`
|
|
}
|
|
|
|
func (m *VolumeInformationMessage) Reset() { *m = VolumeInformationMessage{} }
|
|
func (m *VolumeInformationMessage) String() string { return proto.CompactTextString(m) }
|
|
func (*VolumeInformationMessage) ProtoMessage() {}
|
|
func (*VolumeInformationMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
|
|
|
func (m *VolumeInformationMessage) GetId() uint32 {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *VolumeInformationMessage) GetSize() uint64 {
|
|
if m != nil {
|
|
return m.Size
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *VolumeInformationMessage) GetCollection() string {
|
|
if m != nil {
|
|
return m.Collection
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *VolumeInformationMessage) GetFileCount() uint64 {
|
|
if m != nil {
|
|
return m.FileCount
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *VolumeInformationMessage) GetDeleteCount() uint64 {
|
|
if m != nil {
|
|
return m.DeleteCount
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *VolumeInformationMessage) GetDeletedByteCount() uint64 {
|
|
if m != nil {
|
|
return m.DeletedByteCount
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *VolumeInformationMessage) GetReadOnly() bool {
|
|
if m != nil {
|
|
return m.ReadOnly
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *VolumeInformationMessage) GetReplicaPlacement() uint32 {
|
|
if m != nil {
|
|
return m.ReplicaPlacement
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *VolumeInformationMessage) GetVersion() uint32 {
|
|
if m != nil {
|
|
return m.Version
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *VolumeInformationMessage) GetTtl() uint32 {
|
|
if m != nil {
|
|
return m.Ttl
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type Empty struct {
|
|
}
|
|
|
|
func (m *Empty) Reset() { *m = Empty{} }
|
|
func (m *Empty) String() string { return proto.CompactTextString(m) }
|
|
func (*Empty) ProtoMessage() {}
|
|
func (*Empty) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
|
|
|
type SuperBlockExtra struct {
|
|
ErasureCoding *SuperBlockExtra_ErasureCoding `protobuf:"bytes,1,opt,name=erasure_coding,json=erasureCoding" json:"erasure_coding,omitempty"`
|
|
}
|
|
|
|
func (m *SuperBlockExtra) Reset() { *m = SuperBlockExtra{} }
|
|
func (m *SuperBlockExtra) String() string { return proto.CompactTextString(m) }
|
|
func (*SuperBlockExtra) ProtoMessage() {}
|
|
func (*SuperBlockExtra) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
|
|
|
|
func (m *SuperBlockExtra) GetErasureCoding() *SuperBlockExtra_ErasureCoding {
|
|
if m != nil {
|
|
return m.ErasureCoding
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SuperBlockExtra_ErasureCoding struct {
|
|
Data uint32 `protobuf:"varint,1,opt,name=data" json:"data,omitempty"`
|
|
Parity uint32 `protobuf:"varint,2,opt,name=parity" json:"parity,omitempty"`
|
|
VolumeIds []uint32 `protobuf:"varint,3,rep,packed,name=volume_ids,json=volumeIds" json:"volume_ids,omitempty"`
|
|
}
|
|
|
|
func (m *SuperBlockExtra_ErasureCoding) Reset() { *m = SuperBlockExtra_ErasureCoding{} }
|
|
func (m *SuperBlockExtra_ErasureCoding) String() string { return proto.CompactTextString(m) }
|
|
func (*SuperBlockExtra_ErasureCoding) ProtoMessage() {}
|
|
func (*SuperBlockExtra_ErasureCoding) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor0, []int{4, 0}
|
|
}
|
|
|
|
func (m *SuperBlockExtra_ErasureCoding) GetData() uint32 {
|
|
if m != nil {
|
|
return m.Data
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SuperBlockExtra_ErasureCoding) GetParity() uint32 {
|
|
if m != nil {
|
|
return m.Parity
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SuperBlockExtra_ErasureCoding) GetVolumeIds() []uint32 {
|
|
if m != nil {
|
|
return m.VolumeIds
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ClientListenRequest struct {
|
|
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
|
}
|
|
|
|
func (m *ClientListenRequest) Reset() { *m = ClientListenRequest{} }
|
|
func (m *ClientListenRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ClientListenRequest) ProtoMessage() {}
|
|
func (*ClientListenRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
|
|
|
|
func (m *ClientListenRequest) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type VolumeLocation struct {
|
|
Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
|
|
PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
|
|
NewVids []uint32 `protobuf:"varint,3,rep,packed,name=new_vids,json=newVids" json:"new_vids,omitempty"`
|
|
DeletedVids []uint32 `protobuf:"varint,4,rep,packed,name=deleted_vids,json=deletedVids" json:"deleted_vids,omitempty"`
|
|
}
|
|
|
|
func (m *VolumeLocation) Reset() { *m = VolumeLocation{} }
|
|
func (m *VolumeLocation) String() string { return proto.CompactTextString(m) }
|
|
func (*VolumeLocation) ProtoMessage() {}
|
|
func (*VolumeLocation) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
|
|
|
|
func (m *VolumeLocation) GetUrl() string {
|
|
if m != nil {
|
|
return m.Url
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *VolumeLocation) GetPublicUrl() string {
|
|
if m != nil {
|
|
return m.PublicUrl
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *VolumeLocation) GetNewVids() []uint32 {
|
|
if m != nil {
|
|
return m.NewVids
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *VolumeLocation) GetDeletedVids() []uint32 {
|
|
if m != nil {
|
|
return m.DeletedVids
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type LookupVolumeRequest struct {
|
|
VolumeIds []string `protobuf:"bytes,1,rep,name=volume_ids,json=volumeIds" json:"volume_ids,omitempty"`
|
|
Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
|
|
}
|
|
|
|
func (m *LookupVolumeRequest) Reset() { *m = LookupVolumeRequest{} }
|
|
func (m *LookupVolumeRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*LookupVolumeRequest) ProtoMessage() {}
|
|
func (*LookupVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
|
|
|
|
func (m *LookupVolumeRequest) GetVolumeIds() []string {
|
|
if m != nil {
|
|
return m.VolumeIds
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *LookupVolumeRequest) GetCollection() string {
|
|
if m != nil {
|
|
return m.Collection
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type LookupVolumeResponse struct {
|
|
VolumeIdLocations []*LookupVolumeResponse_VolumeIdLocation `protobuf:"bytes,1,rep,name=volume_id_locations,json=volumeIdLocations" json:"volume_id_locations,omitempty"`
|
|
}
|
|
|
|
func (m *LookupVolumeResponse) Reset() { *m = LookupVolumeResponse{} }
|
|
func (m *LookupVolumeResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*LookupVolumeResponse) ProtoMessage() {}
|
|
func (*LookupVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
|
|
|
|
func (m *LookupVolumeResponse) GetVolumeIdLocations() []*LookupVolumeResponse_VolumeIdLocation {
|
|
if m != nil {
|
|
return m.VolumeIdLocations
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type LookupVolumeResponse_VolumeIdLocation struct {
|
|
VolumeId string `protobuf:"bytes,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
|
|
Locations []*Location `protobuf:"bytes,2,rep,name=locations" json:"locations,omitempty"`
|
|
Error string `protobuf:"bytes,3,opt,name=error" json:"error,omitempty"`
|
|
}
|
|
|
|
func (m *LookupVolumeResponse_VolumeIdLocation) Reset() { *m = LookupVolumeResponse_VolumeIdLocation{} }
|
|
func (m *LookupVolumeResponse_VolumeIdLocation) String() string { return proto.CompactTextString(m) }
|
|
func (*LookupVolumeResponse_VolumeIdLocation) ProtoMessage() {}
|
|
func (*LookupVolumeResponse_VolumeIdLocation) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor0, []int{8, 0}
|
|
}
|
|
|
|
func (m *LookupVolumeResponse_VolumeIdLocation) GetVolumeId() string {
|
|
if m != nil {
|
|
return m.VolumeId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *LookupVolumeResponse_VolumeIdLocation) GetLocations() []*Location {
|
|
if m != nil {
|
|
return m.Locations
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *LookupVolumeResponse_VolumeIdLocation) GetError() string {
|
|
if m != nil {
|
|
return m.Error
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Location struct {
|
|
Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
|
|
PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
|
|
}
|
|
|
|
func (m *Location) Reset() { *m = Location{} }
|
|
func (m *Location) String() string { return proto.CompactTextString(m) }
|
|
func (*Location) ProtoMessage() {}
|
|
func (*Location) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
|
|
|
|
func (m *Location) GetUrl() string {
|
|
if m != nil {
|
|
return m.Url
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Location) GetPublicUrl() string {
|
|
if m != nil {
|
|
return m.PublicUrl
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type AssignRequest struct {
|
|
Count uint64 `protobuf:"varint,1,opt,name=count" json:"count,omitempty"`
|
|
Replication string `protobuf:"bytes,2,opt,name=replication" json:"replication,omitempty"`
|
|
Collection string `protobuf:"bytes,3,opt,name=collection" json:"collection,omitempty"`
|
|
Ttl string `protobuf:"bytes,4,opt,name=ttl" json:"ttl,omitempty"`
|
|
DataCenter string `protobuf:"bytes,5,opt,name=data_center,json=dataCenter" json:"data_center,omitempty"`
|
|
Rack string `protobuf:"bytes,6,opt,name=rack" json:"rack,omitempty"`
|
|
DataNode string `protobuf:"bytes,7,opt,name=data_node,json=dataNode" json:"data_node,omitempty"`
|
|
}
|
|
|
|
func (m *AssignRequest) Reset() { *m = AssignRequest{} }
|
|
func (m *AssignRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*AssignRequest) ProtoMessage() {}
|
|
func (*AssignRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
|
|
|
|
func (m *AssignRequest) GetCount() uint64 {
|
|
if m != nil {
|
|
return m.Count
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *AssignRequest) GetReplication() string {
|
|
if m != nil {
|
|
return m.Replication
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AssignRequest) GetCollection() string {
|
|
if m != nil {
|
|
return m.Collection
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AssignRequest) GetTtl() string {
|
|
if m != nil {
|
|
return m.Ttl
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AssignRequest) GetDataCenter() string {
|
|
if m != nil {
|
|
return m.DataCenter
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AssignRequest) GetRack() string {
|
|
if m != nil {
|
|
return m.Rack
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AssignRequest) GetDataNode() string {
|
|
if m != nil {
|
|
return m.DataNode
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type AssignResponse struct {
|
|
Fid string `protobuf:"bytes,1,opt,name=fid" json:"fid,omitempty"`
|
|
Url string `protobuf:"bytes,2,opt,name=url" json:"url,omitempty"`
|
|
PublicUrl string `protobuf:"bytes,3,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
|
|
Count uint64 `protobuf:"varint,4,opt,name=count" json:"count,omitempty"`
|
|
Error string `protobuf:"bytes,5,opt,name=error" json:"error,omitempty"`
|
|
}
|
|
|
|
func (m *AssignResponse) Reset() { *m = AssignResponse{} }
|
|
func (m *AssignResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*AssignResponse) ProtoMessage() {}
|
|
func (*AssignResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
|
|
|
|
func (m *AssignResponse) GetFid() string {
|
|
if m != nil {
|
|
return m.Fid
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AssignResponse) GetUrl() string {
|
|
if m != nil {
|
|
return m.Url
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AssignResponse) GetPublicUrl() string {
|
|
if m != nil {
|
|
return m.PublicUrl
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AssignResponse) GetCount() uint64 {
|
|
if m != nil {
|
|
return m.Count
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *AssignResponse) GetError() string {
|
|
if m != nil {
|
|
return m.Error
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type StatisticsRequest struct {
|
|
Replication string `protobuf:"bytes,1,opt,name=replication" json:"replication,omitempty"`
|
|
Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
|
|
Ttl string `protobuf:"bytes,3,opt,name=ttl" json:"ttl,omitempty"`
|
|
}
|
|
|
|
func (m *StatisticsRequest) Reset() { *m = StatisticsRequest{} }
|
|
func (m *StatisticsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*StatisticsRequest) ProtoMessage() {}
|
|
func (*StatisticsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
|
|
|
|
func (m *StatisticsRequest) GetReplication() string {
|
|
if m != nil {
|
|
return m.Replication
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *StatisticsRequest) GetCollection() string {
|
|
if m != nil {
|
|
return m.Collection
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *StatisticsRequest) GetTtl() string {
|
|
if m != nil {
|
|
return m.Ttl
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type StatisticsResponse struct {
|
|
Replication string `protobuf:"bytes,1,opt,name=replication" json:"replication,omitempty"`
|
|
Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
|
|
Ttl string `protobuf:"bytes,3,opt,name=ttl" json:"ttl,omitempty"`
|
|
TotalSize uint64 `protobuf:"varint,4,opt,name=total_size,json=totalSize" json:"total_size,omitempty"`
|
|
UsedSize uint64 `protobuf:"varint,5,opt,name=used_size,json=usedSize" json:"used_size,omitempty"`
|
|
FileCount uint64 `protobuf:"varint,6,opt,name=file_count,json=fileCount" json:"file_count,omitempty"`
|
|
}
|
|
|
|
func (m *StatisticsResponse) Reset() { *m = StatisticsResponse{} }
|
|
func (m *StatisticsResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*StatisticsResponse) ProtoMessage() {}
|
|
func (*StatisticsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
|
|
|
|
func (m *StatisticsResponse) GetReplication() string {
|
|
if m != nil {
|
|
return m.Replication
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *StatisticsResponse) GetCollection() string {
|
|
if m != nil {
|
|
return m.Collection
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *StatisticsResponse) GetTtl() string {
|
|
if m != nil {
|
|
return m.Ttl
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *StatisticsResponse) GetTotalSize() uint64 {
|
|
if m != nil {
|
|
return m.TotalSize
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *StatisticsResponse) GetUsedSize() uint64 {
|
|
if m != nil {
|
|
return m.UsedSize
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *StatisticsResponse) GetFileCount() uint64 {
|
|
if m != nil {
|
|
return m.FileCount
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*Heartbeat)(nil), "master_pb.Heartbeat")
|
|
proto.RegisterType((*HeartbeatResponse)(nil), "master_pb.HeartbeatResponse")
|
|
proto.RegisterType((*VolumeInformationMessage)(nil), "master_pb.VolumeInformationMessage")
|
|
proto.RegisterType((*Empty)(nil), "master_pb.Empty")
|
|
proto.RegisterType((*SuperBlockExtra)(nil), "master_pb.SuperBlockExtra")
|
|
proto.RegisterType((*SuperBlockExtra_ErasureCoding)(nil), "master_pb.SuperBlockExtra.ErasureCoding")
|
|
proto.RegisterType((*ClientListenRequest)(nil), "master_pb.ClientListenRequest")
|
|
proto.RegisterType((*VolumeLocation)(nil), "master_pb.VolumeLocation")
|
|
proto.RegisterType((*LookupVolumeRequest)(nil), "master_pb.LookupVolumeRequest")
|
|
proto.RegisterType((*LookupVolumeResponse)(nil), "master_pb.LookupVolumeResponse")
|
|
proto.RegisterType((*LookupVolumeResponse_VolumeIdLocation)(nil), "master_pb.LookupVolumeResponse.VolumeIdLocation")
|
|
proto.RegisterType((*Location)(nil), "master_pb.Location")
|
|
proto.RegisterType((*AssignRequest)(nil), "master_pb.AssignRequest")
|
|
proto.RegisterType((*AssignResponse)(nil), "master_pb.AssignResponse")
|
|
proto.RegisterType((*StatisticsRequest)(nil), "master_pb.StatisticsRequest")
|
|
proto.RegisterType((*StatisticsResponse)(nil), "master_pb.StatisticsResponse")
|
|
}
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ context.Context
|
|
var _ grpc.ClientConn
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
const _ = grpc.SupportPackageIsVersion4
|
|
|
|
// Client API for Seaweed service
|
|
|
|
type SeaweedClient interface {
|
|
SendHeartbeat(ctx context.Context, opts ...grpc.CallOption) (Seaweed_SendHeartbeatClient, error)
|
|
KeepConnected(ctx context.Context, opts ...grpc.CallOption) (Seaweed_KeepConnectedClient, error)
|
|
LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error)
|
|
Assign(ctx context.Context, in *AssignRequest, opts ...grpc.CallOption) (*AssignResponse, error)
|
|
Statistics(ctx context.Context, in *StatisticsRequest, opts ...grpc.CallOption) (*StatisticsResponse, error)
|
|
}
|
|
|
|
type seaweedClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewSeaweedClient(cc *grpc.ClientConn) SeaweedClient {
|
|
return &seaweedClient{cc}
|
|
}
|
|
|
|
func (c *seaweedClient) SendHeartbeat(ctx context.Context, opts ...grpc.CallOption) (Seaweed_SendHeartbeatClient, error) {
|
|
stream, err := grpc.NewClientStream(ctx, &_Seaweed_serviceDesc.Streams[0], c.cc, "/master_pb.Seaweed/SendHeartbeat", opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
x := &seaweedSendHeartbeatClient{stream}
|
|
return x, nil
|
|
}
|
|
|
|
type Seaweed_SendHeartbeatClient interface {
|
|
Send(*Heartbeat) error
|
|
Recv() (*HeartbeatResponse, error)
|
|
grpc.ClientStream
|
|
}
|
|
|
|
type seaweedSendHeartbeatClient struct {
|
|
grpc.ClientStream
|
|
}
|
|
|
|
func (x *seaweedSendHeartbeatClient) Send(m *Heartbeat) error {
|
|
return x.ClientStream.SendMsg(m)
|
|
}
|
|
|
|
func (x *seaweedSendHeartbeatClient) Recv() (*HeartbeatResponse, error) {
|
|
m := new(HeartbeatResponse)
|
|
if err := x.ClientStream.RecvMsg(m); err != nil {
|
|
return nil, err
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
func (c *seaweedClient) KeepConnected(ctx context.Context, opts ...grpc.CallOption) (Seaweed_KeepConnectedClient, error) {
|
|
stream, err := grpc.NewClientStream(ctx, &_Seaweed_serviceDesc.Streams[1], c.cc, "/master_pb.Seaweed/KeepConnected", opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
x := &seaweedKeepConnectedClient{stream}
|
|
return x, nil
|
|
}
|
|
|
|
type Seaweed_KeepConnectedClient interface {
|
|
Send(*ClientListenRequest) error
|
|
Recv() (*VolumeLocation, error)
|
|
grpc.ClientStream
|
|
}
|
|
|
|
type seaweedKeepConnectedClient struct {
|
|
grpc.ClientStream
|
|
}
|
|
|
|
func (x *seaweedKeepConnectedClient) Send(m *ClientListenRequest) error {
|
|
return x.ClientStream.SendMsg(m)
|
|
}
|
|
|
|
func (x *seaweedKeepConnectedClient) Recv() (*VolumeLocation, error) {
|
|
m := new(VolumeLocation)
|
|
if err := x.ClientStream.RecvMsg(m); err != nil {
|
|
return nil, err
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
func (c *seaweedClient) LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error) {
|
|
out := new(LookupVolumeResponse)
|
|
err := grpc.Invoke(ctx, "/master_pb.Seaweed/LookupVolume", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *seaweedClient) Assign(ctx context.Context, in *AssignRequest, opts ...grpc.CallOption) (*AssignResponse, error) {
|
|
out := new(AssignResponse)
|
|
err := grpc.Invoke(ctx, "/master_pb.Seaweed/Assign", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *seaweedClient) Statistics(ctx context.Context, in *StatisticsRequest, opts ...grpc.CallOption) (*StatisticsResponse, error) {
|
|
out := new(StatisticsResponse)
|
|
err := grpc.Invoke(ctx, "/master_pb.Seaweed/Statistics", in, out, c.cc, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// Server API for Seaweed service
|
|
|
|
type SeaweedServer interface {
|
|
SendHeartbeat(Seaweed_SendHeartbeatServer) error
|
|
KeepConnected(Seaweed_KeepConnectedServer) error
|
|
LookupVolume(context.Context, *LookupVolumeRequest) (*LookupVolumeResponse, error)
|
|
Assign(context.Context, *AssignRequest) (*AssignResponse, error)
|
|
Statistics(context.Context, *StatisticsRequest) (*StatisticsResponse, error)
|
|
}
|
|
|
|
func RegisterSeaweedServer(s *grpc.Server, srv SeaweedServer) {
|
|
s.RegisterService(&_Seaweed_serviceDesc, srv)
|
|
}
|
|
|
|
func _Seaweed_SendHeartbeat_Handler(srv interface{}, stream grpc.ServerStream) error {
|
|
return srv.(SeaweedServer).SendHeartbeat(&seaweedSendHeartbeatServer{stream})
|
|
}
|
|
|
|
type Seaweed_SendHeartbeatServer interface {
|
|
Send(*HeartbeatResponse) error
|
|
Recv() (*Heartbeat, error)
|
|
grpc.ServerStream
|
|
}
|
|
|
|
type seaweedSendHeartbeatServer struct {
|
|
grpc.ServerStream
|
|
}
|
|
|
|
func (x *seaweedSendHeartbeatServer) Send(m *HeartbeatResponse) error {
|
|
return x.ServerStream.SendMsg(m)
|
|
}
|
|
|
|
func (x *seaweedSendHeartbeatServer) Recv() (*Heartbeat, error) {
|
|
m := new(Heartbeat)
|
|
if err := x.ServerStream.RecvMsg(m); err != nil {
|
|
return nil, err
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
func _Seaweed_KeepConnected_Handler(srv interface{}, stream grpc.ServerStream) error {
|
|
return srv.(SeaweedServer).KeepConnected(&seaweedKeepConnectedServer{stream})
|
|
}
|
|
|
|
type Seaweed_KeepConnectedServer interface {
|
|
Send(*VolumeLocation) error
|
|
Recv() (*ClientListenRequest, error)
|
|
grpc.ServerStream
|
|
}
|
|
|
|
type seaweedKeepConnectedServer struct {
|
|
grpc.ServerStream
|
|
}
|
|
|
|
func (x *seaweedKeepConnectedServer) Send(m *VolumeLocation) error {
|
|
return x.ServerStream.SendMsg(m)
|
|
}
|
|
|
|
func (x *seaweedKeepConnectedServer) Recv() (*ClientListenRequest, error) {
|
|
m := new(ClientListenRequest)
|
|
if err := x.ServerStream.RecvMsg(m); err != nil {
|
|
return nil, err
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
func _Seaweed_LookupVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(LookupVolumeRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(SeaweedServer).LookupVolume(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/master_pb.Seaweed/LookupVolume",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(SeaweedServer).LookupVolume(ctx, req.(*LookupVolumeRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Seaweed_Assign_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(AssignRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(SeaweedServer).Assign(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/master_pb.Seaweed/Assign",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(SeaweedServer).Assign(ctx, req.(*AssignRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Seaweed_Statistics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(StatisticsRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(SeaweedServer).Statistics(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/master_pb.Seaweed/Statistics",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(SeaweedServer).Statistics(ctx, req.(*StatisticsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
var _Seaweed_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "master_pb.Seaweed",
|
|
HandlerType: (*SeaweedServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "LookupVolume",
|
|
Handler: _Seaweed_LookupVolume_Handler,
|
|
},
|
|
{
|
|
MethodName: "Assign",
|
|
Handler: _Seaweed_Assign_Handler,
|
|
},
|
|
{
|
|
MethodName: "Statistics",
|
|
Handler: _Seaweed_Statistics_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{
|
|
{
|
|
StreamName: "SendHeartbeat",
|
|
Handler: _Seaweed_SendHeartbeat_Handler,
|
|
ServerStreams: true,
|
|
ClientStreams: true,
|
|
},
|
|
{
|
|
StreamName: "KeepConnected",
|
|
Handler: _Seaweed_KeepConnected_Handler,
|
|
ServerStreams: true,
|
|
ClientStreams: true,
|
|
},
|
|
},
|
|
Metadata: "master.proto",
|
|
}
|
|
|
|
func init() { proto.RegisterFile("master.proto", fileDescriptor0) }
|
|
|
|
var fileDescriptor0 = []byte{
|
|
// 1055 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x56, 0x4b, 0x6f, 0xe4, 0x44,
|
|
0x10, 0x5e, 0x7b, 0x9e, 0xae, 0xd9, 0xc9, 0x4e, 0x3a, 0x11, 0xf2, 0xce, 0xbe, 0x06, 0x73, 0x19,
|
|
0x04, 0x8a, 0x96, 0x70, 0x44, 0x08, 0xb1, 0xd1, 0x22, 0xa2, 0x04, 0x36, 0x38, 0xb0, 0x07, 0x2e,
|
|
0xa6, 0x63, 0x57, 0xa2, 0x56, 0xfc, 0xa2, 0xbb, 0x27, 0x99, 0xd9, 0x0b, 0x47, 0xfe, 0x15, 0x17,
|
|
0xb8, 0xf1, 0x53, 0xb8, 0xf1, 0x0b, 0x50, 0x3f, 0xec, 0xf1, 0x38, 0x09, 0x91, 0x90, 0xb8, 0xb5,
|
|
0xbf, 0xae, 0xee, 0xaa, 0xfe, 0xbe, 0x7a, 0x18, 0x1e, 0x66, 0x54, 0x48, 0xe4, 0x7b, 0x25, 0x2f,
|
|
0x64, 0x41, 0x3c, 0xf3, 0x15, 0x95, 0x67, 0xc1, 0x5f, 0x2e, 0x78, 0x5f, 0x23, 0xe5, 0xf2, 0x0c,
|
|
0xa9, 0x24, 0x5b, 0xe0, 0xb2, 0xd2, 0x77, 0x66, 0xce, 0xdc, 0x0b, 0x5d, 0x56, 0x12, 0x02, 0xdd,
|
|
0xb2, 0xe0, 0xd2, 0x77, 0x67, 0xce, 0x7c, 0x1c, 0xea, 0x35, 0x79, 0x06, 0x50, 0x2e, 0xce, 0x52,
|
|
0x16, 0x47, 0x0b, 0x9e, 0xfa, 0x1d, 0x6d, 0xeb, 0x19, 0xe4, 0x07, 0x9e, 0x92, 0x39, 0x4c, 0x32,
|
|
0xba, 0x8c, 0xae, 0x8a, 0x74, 0x91, 0x61, 0x14, 0x17, 0x8b, 0x5c, 0xfa, 0x5d, 0x7d, 0x7c, 0x2b,
|
|
0xa3, 0xcb, 0xb7, 0x1a, 0x3e, 0x50, 0x28, 0x99, 0xa9, 0xa8, 0x96, 0xd1, 0x39, 0x4b, 0x31, 0xba,
|
|
0xc4, 0x95, 0xdf, 0x9b, 0x39, 0xf3, 0x6e, 0x08, 0x19, 0x5d, 0x7e, 0xc5, 0x52, 0x3c, 0xc2, 0x15,
|
|
0x79, 0x01, 0xa3, 0x84, 0x4a, 0x1a, 0xc5, 0x98, 0x4b, 0xe4, 0x7e, 0x5f, 0xfb, 0x02, 0x05, 0x1d,
|
|
0x68, 0x44, 0xc5, 0xc7, 0x69, 0x7c, 0xe9, 0x0f, 0xf4, 0x8e, 0x5e, 0xab, 0xf8, 0x68, 0x92, 0xb1,
|
|
0x3c, 0xd2, 0x91, 0x0f, 0xb5, 0x6b, 0x4f, 0x23, 0x27, 0x2a, 0xfc, 0xcf, 0x61, 0x60, 0x62, 0x13,
|
|
0xbe, 0x37, 0xeb, 0xcc, 0x47, 0xfb, 0x1f, 0xec, 0xd5, 0x6c, 0xec, 0x99, 0xf0, 0x0e, 0xf3, 0xf3,
|
|
0x82, 0x67, 0x54, 0xb2, 0x22, 0xff, 0x06, 0x85, 0xa0, 0x17, 0x18, 0x56, 0x67, 0xc8, 0x63, 0x18,
|
|
0xe6, 0x78, 0x1d, 0x5d, 0xb1, 0x44, 0xf8, 0x30, 0xeb, 0xcc, 0xc7, 0xe1, 0x20, 0xc7, 0xeb, 0xb7,
|
|
0x2c, 0x11, 0xe4, 0x7d, 0x78, 0x98, 0x60, 0x8a, 0x12, 0x13, 0xb3, 0x3d, 0xd2, 0xdb, 0x23, 0x8b,
|
|
0x29, 0x93, 0x40, 0xc0, 0x76, 0x4d, 0x76, 0x88, 0xa2, 0x2c, 0x72, 0x81, 0x64, 0x0e, 0x8f, 0xcc,
|
|
0xed, 0xa7, 0xec, 0x1d, 0x1e, 0xb3, 0x8c, 0x49, 0xad, 0x40, 0x37, 0x6c, 0xc3, 0xe4, 0x29, 0x78,
|
|
0x02, 0x63, 0x8e, 0xf2, 0x08, 0x57, 0x5a, 0x13, 0x2f, 0x5c, 0x03, 0xe4, 0x3d, 0xe8, 0xa7, 0x48,
|
|
0x13, 0xe4, 0x56, 0x14, 0xfb, 0x15, 0xfc, 0xe1, 0x82, 0x7f, 0xd7, 0xc3, 0xb4, 0xe2, 0x89, 0xf6,
|
|
0x37, 0x0e, 0x5d, 0x96, 0x28, 0x46, 0x05, 0x7b, 0x87, 0xfa, 0xf6, 0x6e, 0xa8, 0xd7, 0xe4, 0x39,
|
|
0x40, 0x5c, 0xa4, 0x29, 0xc6, 0xea, 0xa0, 0xbd, 0xbc, 0x81, 0x28, 0xc6, 0xb5, 0x88, 0x6b, 0xb1,
|
|
0xbb, 0xa1, 0xa7, 0x10, 0xa3, 0x73, 0xcd, 0x8b, 0x35, 0x30, 0x3a, 0x5b, 0x5e, 0x8c, 0xc9, 0xc7,
|
|
0x40, 0x2a, 0xea, 0xce, 0x56, 0xb5, 0x61, 0x5f, 0x1b, 0x4e, 0xec, 0xce, 0xab, 0x55, 0x65, 0xfd,
|
|
0x04, 0x3c, 0x8e, 0x34, 0x89, 0x8a, 0x3c, 0x5d, 0x69, 0xe9, 0x87, 0xe1, 0x50, 0x01, 0x6f, 0xf2,
|
|
0x74, 0x45, 0x3e, 0x82, 0x6d, 0x8e, 0x65, 0xca, 0x62, 0x1a, 0x95, 0x29, 0x8d, 0x31, 0xc3, 0xbc,
|
|
0xca, 0x82, 0x89, 0xdd, 0x38, 0xa9, 0x70, 0xe2, 0xc3, 0xe0, 0x0a, 0xb9, 0x50, 0xcf, 0xf2, 0xb4,
|
|
0x49, 0xf5, 0x49, 0x26, 0xd0, 0x91, 0x32, 0xf5, 0x41, 0xa3, 0x6a, 0x19, 0x0c, 0xa0, 0xf7, 0x3a,
|
|
0x2b, 0xe5, 0x2a, 0xf8, 0xcd, 0x81, 0x47, 0xa7, 0x8b, 0x12, 0xf9, 0xab, 0xb4, 0x88, 0x2f, 0x5f,
|
|
0x2f, 0x25, 0xa7, 0xe4, 0x0d, 0x6c, 0x21, 0xa7, 0x62, 0xc1, 0x55, 0xec, 0x09, 0xcb, 0x2f, 0x34,
|
|
0xa5, 0xa3, 0xfd, 0x79, 0x23, 0xb9, 0x5a, 0x67, 0xf6, 0x5e, 0x9b, 0x03, 0x07, 0xda, 0x3e, 0x1c,
|
|
0x63, 0xf3, 0x73, 0xfa, 0x23, 0x8c, 0x37, 0xf6, 0x95, 0x30, 0x2a, 0xf1, 0xad, 0x54, 0x7a, 0xad,
|
|
0x14, 0x2f, 0x29, 0x67, 0x72, 0x65, 0x0b, 0xd4, 0x7e, 0x29, 0x41, 0x6c, 0xfd, 0xa9, 0x3c, 0xec,
|
|
0xe8, 0x3c, 0xf4, 0x0c, 0x72, 0x98, 0x88, 0xe0, 0x43, 0xd8, 0x39, 0x48, 0x19, 0xe6, 0xf2, 0x98,
|
|
0x09, 0x89, 0x79, 0x88, 0x3f, 0x2f, 0x50, 0x48, 0xe5, 0x21, 0xa7, 0x19, 0xda, 0xf2, 0xd7, 0xeb,
|
|
0xe0, 0x17, 0xd8, 0x32, 0xa9, 0x73, 0x5c, 0xc4, 0x3a, 0x6f, 0x14, 0x31, 0xaa, 0xee, 0x8d, 0x91,
|
|
0x5a, 0xb6, 0x1a, 0x82, 0xdb, 0x6e, 0x08, 0xcd, 0x8a, 0xe9, 0xfc, 0x7b, 0xc5, 0x74, 0x6f, 0x56,
|
|
0xcc, 0xf7, 0xb0, 0x73, 0x5c, 0x14, 0x97, 0x8b, 0xd2, 0x84, 0x51, 0xc5, 0xba, 0xf9, 0x42, 0x67,
|
|
0xd6, 0x51, 0x3e, 0xeb, 0x17, 0xb6, 0x32, 0xd6, 0x6d, 0x67, 0x6c, 0xf0, 0xb7, 0x03, 0xbb, 0x9b,
|
|
0xd7, 0xda, 0x5a, 0xfc, 0x09, 0x76, 0xea, 0x7b, 0xa3, 0xd4, 0xbe, 0xd9, 0x38, 0x18, 0xed, 0xbf,
|
|
0x6c, 0x88, 0x79, 0xdb, 0xe9, 0xaa, 0x7d, 0x24, 0x15, 0x59, 0xe1, 0xf6, 0x55, 0x0b, 0x11, 0xd3,
|
|
0x25, 0x4c, 0xda, 0x66, 0x2a, 0xa1, 0x6b, 0xaf, 0x96, 0xd9, 0x61, 0x75, 0x92, 0x7c, 0x02, 0xde,
|
|
0x3a, 0x10, 0x57, 0x07, 0xb2, 0xb3, 0x11, 0x88, 0xf5, 0xb5, 0xb6, 0x22, 0xbb, 0xd0, 0x43, 0xce,
|
|
0x8b, 0xaa, 0x11, 0x98, 0x8f, 0xe0, 0x33, 0x18, 0xfe, 0x67, 0x15, 0x83, 0x3f, 0x1d, 0x18, 0x7f,
|
|
0x29, 0x04, 0xbb, 0xa8, 0xd3, 0x65, 0x17, 0x7a, 0xa6, 0x4c, 0x4d, 0xb3, 0x32, 0x1f, 0x64, 0x06,
|
|
0x23, 0x5b, 0x65, 0x0d, 0xea, 0x9b, 0xd0, 0xbd, 0xdd, 0xc4, 0x56, 0x5e, 0xd7, 0x84, 0x26, 0x65,
|
|
0xda, 0x1e, 0x03, 0xbd, 0x3b, 0xc7, 0x40, 0xbf, 0x31, 0x06, 0x9e, 0x80, 0xa7, 0x0f, 0xe5, 0x45,
|
|
0x82, 0x76, 0x3e, 0x0c, 0x15, 0xf0, 0x6d, 0x91, 0xe8, 0xb4, 0xae, 0x1e, 0x63, 0x85, 0x9f, 0x40,
|
|
0xe7, 0xbc, 0x26, 0x5f, 0x2d, 0x2b, 0x8a, 0xdc, 0xbb, 0x28, 0xba, 0x31, 0xf9, 0x6a, 0x42, 0xba,
|
|
0x4d, 0x42, 0x6a, 0x2d, 0x7a, 0x4d, 0x2d, 0x2e, 0x60, 0xfb, 0x54, 0x52, 0xc9, 0x84, 0x64, 0xb1,
|
|
0xa8, 0x18, 0x6d, 0x71, 0xe7, 0xdc, 0xc7, 0x9d, 0x7b, 0x17, 0x77, 0x9d, 0x9a, 0xbb, 0xe0, 0x77,
|
|
0x07, 0x48, 0xd3, 0x93, 0x7d, 0xee, 0xff, 0xe0, 0x4a, 0xd1, 0x23, 0x0b, 0x49, 0xd3, 0x48, 0x0f,
|
|
0x10, 0x3b, 0x06, 0x34, 0xa2, 0x26, 0x98, 0x12, 0x64, 0x21, 0x30, 0x31, 0xbb, 0x66, 0x06, 0x0c,
|
|
0x15, 0xa0, 0x37, 0x37, 0x47, 0x48, 0xbf, 0x35, 0x42, 0xf6, 0x7f, 0xed, 0xc0, 0xe0, 0x14, 0xe9,
|
|
0x35, 0x62, 0x42, 0x0e, 0x61, 0x7c, 0x8a, 0x79, 0xb2, 0xfe, 0x69, 0xd9, 0x6d, 0x54, 0x43, 0x8d,
|
|
0x4e, 0x9f, 0xde, 0x86, 0x56, 0xef, 0x0f, 0x1e, 0xcc, 0x9d, 0x97, 0x0e, 0x39, 0x81, 0xf1, 0x11,
|
|
0x62, 0x79, 0x50, 0xe4, 0x39, 0xc6, 0x12, 0x13, 0xf2, 0xbc, 0x71, 0xe8, 0x96, 0x16, 0x39, 0x7d,
|
|
0x7c, 0xe3, 0x5f, 0xa1, 0xaa, 0x28, 0x7b, 0xe3, 0x77, 0xf0, 0xb0, 0xd9, 0x19, 0x36, 0x2e, 0xbc,
|
|
0xa5, 0x8f, 0x4d, 0x5f, 0xdc, 0xd3, 0x52, 0x82, 0x07, 0xe4, 0x0b, 0xe8, 0x9b, 0x5c, 0x25, 0x7e,
|
|
0xc3, 0x78, 0xa3, 0x16, 0x37, 0xe2, 0xda, 0x4c, 0xec, 0xe0, 0x01, 0x39, 0x02, 0x58, 0x67, 0x00,
|
|
0x69, 0xf2, 0x72, 0x23, 0x05, 0xa7, 0xcf, 0xee, 0xd8, 0xad, 0x2e, 0x3b, 0xeb, 0xeb, 0x3f, 0xc8,
|
|
0x4f, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0xc7, 0x9f, 0x0a, 0x25, 0x51, 0x0a, 0x00, 0x00,
|
|
}
|