You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1036 lines
35 KiB

6 years ago
6 years ago
6 years ago
6 years ago
  1. // Code generated by protoc-gen-go.
  2. // source: master.proto
  3. // DO NOT EDIT!
  4. /*
  5. Package master_pb is a generated protocol buffer package.
  6. It is generated from these files:
  7. master.proto
  8. It has these top-level messages:
  9. Heartbeat
  10. HeartbeatResponse
  11. VolumeInformationMessage
  12. Empty
  13. SuperBlockExtra
  14. ClientListenRequest
  15. VolumeLocation
  16. LookupVolumeRequest
  17. LookupVolumeResponse
  18. Location
  19. AssignRequest
  20. AssignResponse
  21. StatisticsRequest
  22. StatisticsResponse
  23. */
  24. package master_pb
  25. import proto "github.com/golang/protobuf/proto"
  26. import fmt "fmt"
  27. import math "math"
  28. import (
  29. context "golang.org/x/net/context"
  30. grpc "google.golang.org/grpc"
  31. )
  32. // Reference imports to suppress errors if they are not otherwise used.
  33. var _ = proto.Marshal
  34. var _ = fmt.Errorf
  35. var _ = math.Inf
  36. // This is a compile-time assertion to ensure that this generated file
  37. // is compatible with the proto package it is being compiled against.
  38. // A compilation error at this line likely means your copy of the
  39. // proto package needs to be updated.
  40. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  41. type Heartbeat struct {
  42. Ip string `protobuf:"bytes,1,opt,name=ip" json:"ip,omitempty"`
  43. Port uint32 `protobuf:"varint,2,opt,name=port" json:"port,omitempty"`
  44. PublicUrl string `protobuf:"bytes,3,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  45. MaxVolumeCount uint32 `protobuf:"varint,4,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
  46. MaxFileKey uint64 `protobuf:"varint,5,opt,name=max_file_key,json=maxFileKey" json:"max_file_key,omitempty"`
  47. DataCenter string `protobuf:"bytes,6,opt,name=data_center,json=dataCenter" json:"data_center,omitempty"`
  48. Rack string `protobuf:"bytes,7,opt,name=rack" json:"rack,omitempty"`
  49. AdminPort uint32 `protobuf:"varint,8,opt,name=admin_port,json=adminPort" json:"admin_port,omitempty"`
  50. Volumes []*VolumeInformationMessage `protobuf:"bytes,9,rep,name=volumes" json:"volumes,omitempty"`
  51. // delta volume ids
  52. NewVids []uint32 `protobuf:"varint,10,rep,packed,name=new_vids,json=newVids" json:"new_vids,omitempty"`
  53. DeletedVids []uint32 `protobuf:"varint,11,rep,packed,name=deleted_vids,json=deletedVids" json:"deleted_vids,omitempty"`
  54. }
  55. func (m *Heartbeat) Reset() { *m = Heartbeat{} }
  56. func (m *Heartbeat) String() string { return proto.CompactTextString(m) }
  57. func (*Heartbeat) ProtoMessage() {}
  58. func (*Heartbeat) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  59. func (m *Heartbeat) GetIp() string {
  60. if m != nil {
  61. return m.Ip
  62. }
  63. return ""
  64. }
  65. func (m *Heartbeat) GetPort() uint32 {
  66. if m != nil {
  67. return m.Port
  68. }
  69. return 0
  70. }
  71. func (m *Heartbeat) GetPublicUrl() string {
  72. if m != nil {
  73. return m.PublicUrl
  74. }
  75. return ""
  76. }
  77. func (m *Heartbeat) GetMaxVolumeCount() uint32 {
  78. if m != nil {
  79. return m.MaxVolumeCount
  80. }
  81. return 0
  82. }
  83. func (m *Heartbeat) GetMaxFileKey() uint64 {
  84. if m != nil {
  85. return m.MaxFileKey
  86. }
  87. return 0
  88. }
  89. func (m *Heartbeat) GetDataCenter() string {
  90. if m != nil {
  91. return m.DataCenter
  92. }
  93. return ""
  94. }
  95. func (m *Heartbeat) GetRack() string {
  96. if m != nil {
  97. return m.Rack
  98. }
  99. return ""
  100. }
  101. func (m *Heartbeat) GetAdminPort() uint32 {
  102. if m != nil {
  103. return m.AdminPort
  104. }
  105. return 0
  106. }
  107. func (m *Heartbeat) GetVolumes() []*VolumeInformationMessage {
  108. if m != nil {
  109. return m.Volumes
  110. }
  111. return nil
  112. }
  113. func (m *Heartbeat) GetNewVids() []uint32 {
  114. if m != nil {
  115. return m.NewVids
  116. }
  117. return nil
  118. }
  119. func (m *Heartbeat) GetDeletedVids() []uint32 {
  120. if m != nil {
  121. return m.DeletedVids
  122. }
  123. return nil
  124. }
  125. type HeartbeatResponse struct {
  126. VolumeSizeLimit uint64 `protobuf:"varint,1,opt,name=volumeSizeLimit" json:"volumeSizeLimit,omitempty"`
  127. SecretKey string `protobuf:"bytes,2,opt,name=secretKey" json:"secretKey,omitempty"`
  128. Leader string `protobuf:"bytes,3,opt,name=leader" json:"leader,omitempty"`
  129. }
  130. func (m *HeartbeatResponse) Reset() { *m = HeartbeatResponse{} }
  131. func (m *HeartbeatResponse) String() string { return proto.CompactTextString(m) }
  132. func (*HeartbeatResponse) ProtoMessage() {}
  133. func (*HeartbeatResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  134. func (m *HeartbeatResponse) GetVolumeSizeLimit() uint64 {
  135. if m != nil {
  136. return m.VolumeSizeLimit
  137. }
  138. return 0
  139. }
  140. func (m *HeartbeatResponse) GetSecretKey() string {
  141. if m != nil {
  142. return m.SecretKey
  143. }
  144. return ""
  145. }
  146. func (m *HeartbeatResponse) GetLeader() string {
  147. if m != nil {
  148. return m.Leader
  149. }
  150. return ""
  151. }
  152. type VolumeInformationMessage struct {
  153. Id uint32 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
  154. Size uint64 `protobuf:"varint,2,opt,name=size" json:"size,omitempty"`
  155. Collection string `protobuf:"bytes,3,opt,name=collection" json:"collection,omitempty"`
  156. FileCount uint64 `protobuf:"varint,4,opt,name=file_count,json=fileCount" json:"file_count,omitempty"`
  157. DeleteCount uint64 `protobuf:"varint,5,opt,name=delete_count,json=deleteCount" json:"delete_count,omitempty"`
  158. DeletedByteCount uint64 `protobuf:"varint,6,opt,name=deleted_byte_count,json=deletedByteCount" json:"deleted_byte_count,omitempty"`
  159. ReadOnly bool `protobuf:"varint,7,opt,name=read_only,json=readOnly" json:"read_only,omitempty"`
  160. ReplicaPlacement uint32 `protobuf:"varint,8,opt,name=replica_placement,json=replicaPlacement" json:"replica_placement,omitempty"`
  161. Version uint32 `protobuf:"varint,9,opt,name=version" json:"version,omitempty"`
  162. Ttl uint32 `protobuf:"varint,10,opt,name=ttl" json:"ttl,omitempty"`
  163. }
  164. func (m *VolumeInformationMessage) Reset() { *m = VolumeInformationMessage{} }
  165. func (m *VolumeInformationMessage) String() string { return proto.CompactTextString(m) }
  166. func (*VolumeInformationMessage) ProtoMessage() {}
  167. func (*VolumeInformationMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  168. func (m *VolumeInformationMessage) GetId() uint32 {
  169. if m != nil {
  170. return m.Id
  171. }
  172. return 0
  173. }
  174. func (m *VolumeInformationMessage) GetSize() uint64 {
  175. if m != nil {
  176. return m.Size
  177. }
  178. return 0
  179. }
  180. func (m *VolumeInformationMessage) GetCollection() string {
  181. if m != nil {
  182. return m.Collection
  183. }
  184. return ""
  185. }
  186. func (m *VolumeInformationMessage) GetFileCount() uint64 {
  187. if m != nil {
  188. return m.FileCount
  189. }
  190. return 0
  191. }
  192. func (m *VolumeInformationMessage) GetDeleteCount() uint64 {
  193. if m != nil {
  194. return m.DeleteCount
  195. }
  196. return 0
  197. }
  198. func (m *VolumeInformationMessage) GetDeletedByteCount() uint64 {
  199. if m != nil {
  200. return m.DeletedByteCount
  201. }
  202. return 0
  203. }
  204. func (m *VolumeInformationMessage) GetReadOnly() bool {
  205. if m != nil {
  206. return m.ReadOnly
  207. }
  208. return false
  209. }
  210. func (m *VolumeInformationMessage) GetReplicaPlacement() uint32 {
  211. if m != nil {
  212. return m.ReplicaPlacement
  213. }
  214. return 0
  215. }
  216. func (m *VolumeInformationMessage) GetVersion() uint32 {
  217. if m != nil {
  218. return m.Version
  219. }
  220. return 0
  221. }
  222. func (m *VolumeInformationMessage) GetTtl() uint32 {
  223. if m != nil {
  224. return m.Ttl
  225. }
  226. return 0
  227. }
  228. type Empty struct {
  229. }
  230. func (m *Empty) Reset() { *m = Empty{} }
  231. func (m *Empty) String() string { return proto.CompactTextString(m) }
  232. func (*Empty) ProtoMessage() {}
  233. func (*Empty) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  234. type SuperBlockExtra struct {
  235. ErasureCoding *SuperBlockExtra_ErasureCoding `protobuf:"bytes,1,opt,name=erasure_coding,json=erasureCoding" json:"erasure_coding,omitempty"`
  236. }
  237. func (m *SuperBlockExtra) Reset() { *m = SuperBlockExtra{} }
  238. func (m *SuperBlockExtra) String() string { return proto.CompactTextString(m) }
  239. func (*SuperBlockExtra) ProtoMessage() {}
  240. func (*SuperBlockExtra) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  241. func (m *SuperBlockExtra) GetErasureCoding() *SuperBlockExtra_ErasureCoding {
  242. if m != nil {
  243. return m.ErasureCoding
  244. }
  245. return nil
  246. }
  247. type SuperBlockExtra_ErasureCoding struct {
  248. Data uint32 `protobuf:"varint,1,opt,name=data" json:"data,omitempty"`
  249. Parity uint32 `protobuf:"varint,2,opt,name=parity" json:"parity,omitempty"`
  250. VolumeIds []uint32 `protobuf:"varint,3,rep,packed,name=volume_ids,json=volumeIds" json:"volume_ids,omitempty"`
  251. }
  252. func (m *SuperBlockExtra_ErasureCoding) Reset() { *m = SuperBlockExtra_ErasureCoding{} }
  253. func (m *SuperBlockExtra_ErasureCoding) String() string { return proto.CompactTextString(m) }
  254. func (*SuperBlockExtra_ErasureCoding) ProtoMessage() {}
  255. func (*SuperBlockExtra_ErasureCoding) Descriptor() ([]byte, []int) {
  256. return fileDescriptor0, []int{4, 0}
  257. }
  258. func (m *SuperBlockExtra_ErasureCoding) GetData() uint32 {
  259. if m != nil {
  260. return m.Data
  261. }
  262. return 0
  263. }
  264. func (m *SuperBlockExtra_ErasureCoding) GetParity() uint32 {
  265. if m != nil {
  266. return m.Parity
  267. }
  268. return 0
  269. }
  270. func (m *SuperBlockExtra_ErasureCoding) GetVolumeIds() []uint32 {
  271. if m != nil {
  272. return m.VolumeIds
  273. }
  274. return nil
  275. }
  276. type ClientListenRequest struct {
  277. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  278. }
  279. func (m *ClientListenRequest) Reset() { *m = ClientListenRequest{} }
  280. func (m *ClientListenRequest) String() string { return proto.CompactTextString(m) }
  281. func (*ClientListenRequest) ProtoMessage() {}
  282. func (*ClientListenRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  283. func (m *ClientListenRequest) GetName() string {
  284. if m != nil {
  285. return m.Name
  286. }
  287. return ""
  288. }
  289. type VolumeLocation struct {
  290. Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
  291. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  292. NewVids []uint32 `protobuf:"varint,3,rep,packed,name=new_vids,json=newVids" json:"new_vids,omitempty"`
  293. DeletedVids []uint32 `protobuf:"varint,4,rep,packed,name=deleted_vids,json=deletedVids" json:"deleted_vids,omitempty"`
  294. }
  295. func (m *VolumeLocation) Reset() { *m = VolumeLocation{} }
  296. func (m *VolumeLocation) String() string { return proto.CompactTextString(m) }
  297. func (*VolumeLocation) ProtoMessage() {}
  298. func (*VolumeLocation) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
  299. func (m *VolumeLocation) GetUrl() string {
  300. if m != nil {
  301. return m.Url
  302. }
  303. return ""
  304. }
  305. func (m *VolumeLocation) GetPublicUrl() string {
  306. if m != nil {
  307. return m.PublicUrl
  308. }
  309. return ""
  310. }
  311. func (m *VolumeLocation) GetNewVids() []uint32 {
  312. if m != nil {
  313. return m.NewVids
  314. }
  315. return nil
  316. }
  317. func (m *VolumeLocation) GetDeletedVids() []uint32 {
  318. if m != nil {
  319. return m.DeletedVids
  320. }
  321. return nil
  322. }
  323. type LookupVolumeRequest struct {
  324. VolumeIds []string `protobuf:"bytes,1,rep,name=volume_ids,json=volumeIds" json:"volume_ids,omitempty"`
  325. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  326. }
  327. func (m *LookupVolumeRequest) Reset() { *m = LookupVolumeRequest{} }
  328. func (m *LookupVolumeRequest) String() string { return proto.CompactTextString(m) }
  329. func (*LookupVolumeRequest) ProtoMessage() {}
  330. func (*LookupVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
  331. func (m *LookupVolumeRequest) GetVolumeIds() []string {
  332. if m != nil {
  333. return m.VolumeIds
  334. }
  335. return nil
  336. }
  337. func (m *LookupVolumeRequest) GetCollection() string {
  338. if m != nil {
  339. return m.Collection
  340. }
  341. return ""
  342. }
  343. type LookupVolumeResponse struct {
  344. VolumeIdLocations []*LookupVolumeResponse_VolumeIdLocation `protobuf:"bytes,1,rep,name=volume_id_locations,json=volumeIdLocations" json:"volume_id_locations,omitempty"`
  345. }
  346. func (m *LookupVolumeResponse) Reset() { *m = LookupVolumeResponse{} }
  347. func (m *LookupVolumeResponse) String() string { return proto.CompactTextString(m) }
  348. func (*LookupVolumeResponse) ProtoMessage() {}
  349. func (*LookupVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
  350. func (m *LookupVolumeResponse) GetVolumeIdLocations() []*LookupVolumeResponse_VolumeIdLocation {
  351. if m != nil {
  352. return m.VolumeIdLocations
  353. }
  354. return nil
  355. }
  356. type LookupVolumeResponse_VolumeIdLocation struct {
  357. VolumeId string `protobuf:"bytes,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  358. Locations []*Location `protobuf:"bytes,2,rep,name=locations" json:"locations,omitempty"`
  359. Error string `protobuf:"bytes,3,opt,name=error" json:"error,omitempty"`
  360. }
  361. func (m *LookupVolumeResponse_VolumeIdLocation) Reset() { *m = LookupVolumeResponse_VolumeIdLocation{} }
  362. func (m *LookupVolumeResponse_VolumeIdLocation) String() string { return proto.CompactTextString(m) }
  363. func (*LookupVolumeResponse_VolumeIdLocation) ProtoMessage() {}
  364. func (*LookupVolumeResponse_VolumeIdLocation) Descriptor() ([]byte, []int) {
  365. return fileDescriptor0, []int{8, 0}
  366. }
  367. func (m *LookupVolumeResponse_VolumeIdLocation) GetVolumeId() string {
  368. if m != nil {
  369. return m.VolumeId
  370. }
  371. return ""
  372. }
  373. func (m *LookupVolumeResponse_VolumeIdLocation) GetLocations() []*Location {
  374. if m != nil {
  375. return m.Locations
  376. }
  377. return nil
  378. }
  379. func (m *LookupVolumeResponse_VolumeIdLocation) GetError() string {
  380. if m != nil {
  381. return m.Error
  382. }
  383. return ""
  384. }
  385. type Location struct {
  386. Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
  387. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  388. }
  389. func (m *Location) Reset() { *m = Location{} }
  390. func (m *Location) String() string { return proto.CompactTextString(m) }
  391. func (*Location) ProtoMessage() {}
  392. func (*Location) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
  393. func (m *Location) GetUrl() string {
  394. if m != nil {
  395. return m.Url
  396. }
  397. return ""
  398. }
  399. func (m *Location) GetPublicUrl() string {
  400. if m != nil {
  401. return m.PublicUrl
  402. }
  403. return ""
  404. }
  405. type AssignRequest struct {
  406. Count uint64 `protobuf:"varint,1,opt,name=count" json:"count,omitempty"`
  407. Replication string `protobuf:"bytes,2,opt,name=replication" json:"replication,omitempty"`
  408. Collection string `protobuf:"bytes,3,opt,name=collection" json:"collection,omitempty"`
  409. Ttl string `protobuf:"bytes,4,opt,name=ttl" json:"ttl,omitempty"`
  410. DataCenter string `protobuf:"bytes,5,opt,name=data_center,json=dataCenter" json:"data_center,omitempty"`
  411. Rack string `protobuf:"bytes,6,opt,name=rack" json:"rack,omitempty"`
  412. DataNode string `protobuf:"bytes,7,opt,name=data_node,json=dataNode" json:"data_node,omitempty"`
  413. }
  414. func (m *AssignRequest) Reset() { *m = AssignRequest{} }
  415. func (m *AssignRequest) String() string { return proto.CompactTextString(m) }
  416. func (*AssignRequest) ProtoMessage() {}
  417. func (*AssignRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
  418. func (m *AssignRequest) GetCount() uint64 {
  419. if m != nil {
  420. return m.Count
  421. }
  422. return 0
  423. }
  424. func (m *AssignRequest) GetReplication() string {
  425. if m != nil {
  426. return m.Replication
  427. }
  428. return ""
  429. }
  430. func (m *AssignRequest) GetCollection() string {
  431. if m != nil {
  432. return m.Collection
  433. }
  434. return ""
  435. }
  436. func (m *AssignRequest) GetTtl() string {
  437. if m != nil {
  438. return m.Ttl
  439. }
  440. return ""
  441. }
  442. func (m *AssignRequest) GetDataCenter() string {
  443. if m != nil {
  444. return m.DataCenter
  445. }
  446. return ""
  447. }
  448. func (m *AssignRequest) GetRack() string {
  449. if m != nil {
  450. return m.Rack
  451. }
  452. return ""
  453. }
  454. func (m *AssignRequest) GetDataNode() string {
  455. if m != nil {
  456. return m.DataNode
  457. }
  458. return ""
  459. }
  460. type AssignResponse struct {
  461. Fid string `protobuf:"bytes,1,opt,name=fid" json:"fid,omitempty"`
  462. Url string `protobuf:"bytes,2,opt,name=url" json:"url,omitempty"`
  463. PublicUrl string `protobuf:"bytes,3,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  464. Count uint64 `protobuf:"varint,4,opt,name=count" json:"count,omitempty"`
  465. Error string `protobuf:"bytes,5,opt,name=error" json:"error,omitempty"`
  466. }
  467. func (m *AssignResponse) Reset() { *m = AssignResponse{} }
  468. func (m *AssignResponse) String() string { return proto.CompactTextString(m) }
  469. func (*AssignResponse) ProtoMessage() {}
  470. func (*AssignResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
  471. func (m *AssignResponse) GetFid() string {
  472. if m != nil {
  473. return m.Fid
  474. }
  475. return ""
  476. }
  477. func (m *AssignResponse) GetUrl() string {
  478. if m != nil {
  479. return m.Url
  480. }
  481. return ""
  482. }
  483. func (m *AssignResponse) GetPublicUrl() string {
  484. if m != nil {
  485. return m.PublicUrl
  486. }
  487. return ""
  488. }
  489. func (m *AssignResponse) GetCount() uint64 {
  490. if m != nil {
  491. return m.Count
  492. }
  493. return 0
  494. }
  495. func (m *AssignResponse) GetError() string {
  496. if m != nil {
  497. return m.Error
  498. }
  499. return ""
  500. }
  501. type StatisticsRequest struct {
  502. Replication string `protobuf:"bytes,1,opt,name=replication" json:"replication,omitempty"`
  503. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  504. Ttl string `protobuf:"bytes,3,opt,name=ttl" json:"ttl,omitempty"`
  505. }
  506. func (m *StatisticsRequest) Reset() { *m = StatisticsRequest{} }
  507. func (m *StatisticsRequest) String() string { return proto.CompactTextString(m) }
  508. func (*StatisticsRequest) ProtoMessage() {}
  509. func (*StatisticsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
  510. func (m *StatisticsRequest) GetReplication() string {
  511. if m != nil {
  512. return m.Replication
  513. }
  514. return ""
  515. }
  516. func (m *StatisticsRequest) GetCollection() string {
  517. if m != nil {
  518. return m.Collection
  519. }
  520. return ""
  521. }
  522. func (m *StatisticsRequest) GetTtl() string {
  523. if m != nil {
  524. return m.Ttl
  525. }
  526. return ""
  527. }
  528. type StatisticsResponse struct {
  529. Replication string `protobuf:"bytes,1,opt,name=replication" json:"replication,omitempty"`
  530. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  531. Ttl string `protobuf:"bytes,3,opt,name=ttl" json:"ttl,omitempty"`
  532. TotalSize uint64 `protobuf:"varint,4,opt,name=total_size,json=totalSize" json:"total_size,omitempty"`
  533. UsedSize uint64 `protobuf:"varint,5,opt,name=used_size,json=usedSize" json:"used_size,omitempty"`
  534. FileCount uint64 `protobuf:"varint,6,opt,name=file_count,json=fileCount" json:"file_count,omitempty"`
  535. }
  536. func (m *StatisticsResponse) Reset() { *m = StatisticsResponse{} }
  537. func (m *StatisticsResponse) String() string { return proto.CompactTextString(m) }
  538. func (*StatisticsResponse) ProtoMessage() {}
  539. func (*StatisticsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
  540. func (m *StatisticsResponse) GetReplication() string {
  541. if m != nil {
  542. return m.Replication
  543. }
  544. return ""
  545. }
  546. func (m *StatisticsResponse) GetCollection() string {
  547. if m != nil {
  548. return m.Collection
  549. }
  550. return ""
  551. }
  552. func (m *StatisticsResponse) GetTtl() string {
  553. if m != nil {
  554. return m.Ttl
  555. }
  556. return ""
  557. }
  558. func (m *StatisticsResponse) GetTotalSize() uint64 {
  559. if m != nil {
  560. return m.TotalSize
  561. }
  562. return 0
  563. }
  564. func (m *StatisticsResponse) GetUsedSize() uint64 {
  565. if m != nil {
  566. return m.UsedSize
  567. }
  568. return 0
  569. }
  570. func (m *StatisticsResponse) GetFileCount() uint64 {
  571. if m != nil {
  572. return m.FileCount
  573. }
  574. return 0
  575. }
  576. func init() {
  577. proto.RegisterType((*Heartbeat)(nil), "master_pb.Heartbeat")
  578. proto.RegisterType((*HeartbeatResponse)(nil), "master_pb.HeartbeatResponse")
  579. proto.RegisterType((*VolumeInformationMessage)(nil), "master_pb.VolumeInformationMessage")
  580. proto.RegisterType((*Empty)(nil), "master_pb.Empty")
  581. proto.RegisterType((*SuperBlockExtra)(nil), "master_pb.SuperBlockExtra")
  582. proto.RegisterType((*SuperBlockExtra_ErasureCoding)(nil), "master_pb.SuperBlockExtra.ErasureCoding")
  583. proto.RegisterType((*ClientListenRequest)(nil), "master_pb.ClientListenRequest")
  584. proto.RegisterType((*VolumeLocation)(nil), "master_pb.VolumeLocation")
  585. proto.RegisterType((*LookupVolumeRequest)(nil), "master_pb.LookupVolumeRequest")
  586. proto.RegisterType((*LookupVolumeResponse)(nil), "master_pb.LookupVolumeResponse")
  587. proto.RegisterType((*LookupVolumeResponse_VolumeIdLocation)(nil), "master_pb.LookupVolumeResponse.VolumeIdLocation")
  588. proto.RegisterType((*Location)(nil), "master_pb.Location")
  589. proto.RegisterType((*AssignRequest)(nil), "master_pb.AssignRequest")
  590. proto.RegisterType((*AssignResponse)(nil), "master_pb.AssignResponse")
  591. proto.RegisterType((*StatisticsRequest)(nil), "master_pb.StatisticsRequest")
  592. proto.RegisterType((*StatisticsResponse)(nil), "master_pb.StatisticsResponse")
  593. }
  594. // Reference imports to suppress errors if they are not otherwise used.
  595. var _ context.Context
  596. var _ grpc.ClientConn
  597. // This is a compile-time assertion to ensure that this generated file
  598. // is compatible with the grpc package it is being compiled against.
  599. const _ = grpc.SupportPackageIsVersion4
  600. // Client API for Seaweed service
  601. type SeaweedClient interface {
  602. SendHeartbeat(ctx context.Context, opts ...grpc.CallOption) (Seaweed_SendHeartbeatClient, error)
  603. KeepConnected(ctx context.Context, opts ...grpc.CallOption) (Seaweed_KeepConnectedClient, error)
  604. LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error)
  605. Assign(ctx context.Context, in *AssignRequest, opts ...grpc.CallOption) (*AssignResponse, error)
  606. Statistics(ctx context.Context, in *StatisticsRequest, opts ...grpc.CallOption) (*StatisticsResponse, error)
  607. }
  608. type seaweedClient struct {
  609. cc *grpc.ClientConn
  610. }
  611. func NewSeaweedClient(cc *grpc.ClientConn) SeaweedClient {
  612. return &seaweedClient{cc}
  613. }
  614. func (c *seaweedClient) SendHeartbeat(ctx context.Context, opts ...grpc.CallOption) (Seaweed_SendHeartbeatClient, error) {
  615. stream, err := grpc.NewClientStream(ctx, &_Seaweed_serviceDesc.Streams[0], c.cc, "/master_pb.Seaweed/SendHeartbeat", opts...)
  616. if err != nil {
  617. return nil, err
  618. }
  619. x := &seaweedSendHeartbeatClient{stream}
  620. return x, nil
  621. }
  622. type Seaweed_SendHeartbeatClient interface {
  623. Send(*Heartbeat) error
  624. Recv() (*HeartbeatResponse, error)
  625. grpc.ClientStream
  626. }
  627. type seaweedSendHeartbeatClient struct {
  628. grpc.ClientStream
  629. }
  630. func (x *seaweedSendHeartbeatClient) Send(m *Heartbeat) error {
  631. return x.ClientStream.SendMsg(m)
  632. }
  633. func (x *seaweedSendHeartbeatClient) Recv() (*HeartbeatResponse, error) {
  634. m := new(HeartbeatResponse)
  635. if err := x.ClientStream.RecvMsg(m); err != nil {
  636. return nil, err
  637. }
  638. return m, nil
  639. }
  640. func (c *seaweedClient) KeepConnected(ctx context.Context, opts ...grpc.CallOption) (Seaweed_KeepConnectedClient, error) {
  641. stream, err := grpc.NewClientStream(ctx, &_Seaweed_serviceDesc.Streams[1], c.cc, "/master_pb.Seaweed/KeepConnected", opts...)
  642. if err != nil {
  643. return nil, err
  644. }
  645. x := &seaweedKeepConnectedClient{stream}
  646. return x, nil
  647. }
  648. type Seaweed_KeepConnectedClient interface {
  649. Send(*ClientListenRequest) error
  650. Recv() (*VolumeLocation, error)
  651. grpc.ClientStream
  652. }
  653. type seaweedKeepConnectedClient struct {
  654. grpc.ClientStream
  655. }
  656. func (x *seaweedKeepConnectedClient) Send(m *ClientListenRequest) error {
  657. return x.ClientStream.SendMsg(m)
  658. }
  659. func (x *seaweedKeepConnectedClient) Recv() (*VolumeLocation, error) {
  660. m := new(VolumeLocation)
  661. if err := x.ClientStream.RecvMsg(m); err != nil {
  662. return nil, err
  663. }
  664. return m, nil
  665. }
  666. func (c *seaweedClient) LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error) {
  667. out := new(LookupVolumeResponse)
  668. err := grpc.Invoke(ctx, "/master_pb.Seaweed/LookupVolume", in, out, c.cc, opts...)
  669. if err != nil {
  670. return nil, err
  671. }
  672. return out, nil
  673. }
  674. func (c *seaweedClient) Assign(ctx context.Context, in *AssignRequest, opts ...grpc.CallOption) (*AssignResponse, error) {
  675. out := new(AssignResponse)
  676. err := grpc.Invoke(ctx, "/master_pb.Seaweed/Assign", in, out, c.cc, opts...)
  677. if err != nil {
  678. return nil, err
  679. }
  680. return out, nil
  681. }
  682. func (c *seaweedClient) Statistics(ctx context.Context, in *StatisticsRequest, opts ...grpc.CallOption) (*StatisticsResponse, error) {
  683. out := new(StatisticsResponse)
  684. err := grpc.Invoke(ctx, "/master_pb.Seaweed/Statistics", in, out, c.cc, opts...)
  685. if err != nil {
  686. return nil, err
  687. }
  688. return out, nil
  689. }
  690. // Server API for Seaweed service
  691. type SeaweedServer interface {
  692. SendHeartbeat(Seaweed_SendHeartbeatServer) error
  693. KeepConnected(Seaweed_KeepConnectedServer) error
  694. LookupVolume(context.Context, *LookupVolumeRequest) (*LookupVolumeResponse, error)
  695. Assign(context.Context, *AssignRequest) (*AssignResponse, error)
  696. Statistics(context.Context, *StatisticsRequest) (*StatisticsResponse, error)
  697. }
  698. func RegisterSeaweedServer(s *grpc.Server, srv SeaweedServer) {
  699. s.RegisterService(&_Seaweed_serviceDesc, srv)
  700. }
  701. func _Seaweed_SendHeartbeat_Handler(srv interface{}, stream grpc.ServerStream) error {
  702. return srv.(SeaweedServer).SendHeartbeat(&seaweedSendHeartbeatServer{stream})
  703. }
  704. type Seaweed_SendHeartbeatServer interface {
  705. Send(*HeartbeatResponse) error
  706. Recv() (*Heartbeat, error)
  707. grpc.ServerStream
  708. }
  709. type seaweedSendHeartbeatServer struct {
  710. grpc.ServerStream
  711. }
  712. func (x *seaweedSendHeartbeatServer) Send(m *HeartbeatResponse) error {
  713. return x.ServerStream.SendMsg(m)
  714. }
  715. func (x *seaweedSendHeartbeatServer) Recv() (*Heartbeat, error) {
  716. m := new(Heartbeat)
  717. if err := x.ServerStream.RecvMsg(m); err != nil {
  718. return nil, err
  719. }
  720. return m, nil
  721. }
  722. func _Seaweed_KeepConnected_Handler(srv interface{}, stream grpc.ServerStream) error {
  723. return srv.(SeaweedServer).KeepConnected(&seaweedKeepConnectedServer{stream})
  724. }
  725. type Seaweed_KeepConnectedServer interface {
  726. Send(*VolumeLocation) error
  727. Recv() (*ClientListenRequest, error)
  728. grpc.ServerStream
  729. }
  730. type seaweedKeepConnectedServer struct {
  731. grpc.ServerStream
  732. }
  733. func (x *seaweedKeepConnectedServer) Send(m *VolumeLocation) error {
  734. return x.ServerStream.SendMsg(m)
  735. }
  736. func (x *seaweedKeepConnectedServer) Recv() (*ClientListenRequest, error) {
  737. m := new(ClientListenRequest)
  738. if err := x.ServerStream.RecvMsg(m); err != nil {
  739. return nil, err
  740. }
  741. return m, nil
  742. }
  743. func _Seaweed_LookupVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  744. in := new(LookupVolumeRequest)
  745. if err := dec(in); err != nil {
  746. return nil, err
  747. }
  748. if interceptor == nil {
  749. return srv.(SeaweedServer).LookupVolume(ctx, in)
  750. }
  751. info := &grpc.UnaryServerInfo{
  752. Server: srv,
  753. FullMethod: "/master_pb.Seaweed/LookupVolume",
  754. }
  755. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  756. return srv.(SeaweedServer).LookupVolume(ctx, req.(*LookupVolumeRequest))
  757. }
  758. return interceptor(ctx, in, info, handler)
  759. }
  760. func _Seaweed_Assign_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  761. in := new(AssignRequest)
  762. if err := dec(in); err != nil {
  763. return nil, err
  764. }
  765. if interceptor == nil {
  766. return srv.(SeaweedServer).Assign(ctx, in)
  767. }
  768. info := &grpc.UnaryServerInfo{
  769. Server: srv,
  770. FullMethod: "/master_pb.Seaweed/Assign",
  771. }
  772. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  773. return srv.(SeaweedServer).Assign(ctx, req.(*AssignRequest))
  774. }
  775. return interceptor(ctx, in, info, handler)
  776. }
  777. func _Seaweed_Statistics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  778. in := new(StatisticsRequest)
  779. if err := dec(in); err != nil {
  780. return nil, err
  781. }
  782. if interceptor == nil {
  783. return srv.(SeaweedServer).Statistics(ctx, in)
  784. }
  785. info := &grpc.UnaryServerInfo{
  786. Server: srv,
  787. FullMethod: "/master_pb.Seaweed/Statistics",
  788. }
  789. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  790. return srv.(SeaweedServer).Statistics(ctx, req.(*StatisticsRequest))
  791. }
  792. return interceptor(ctx, in, info, handler)
  793. }
  794. var _Seaweed_serviceDesc = grpc.ServiceDesc{
  795. ServiceName: "master_pb.Seaweed",
  796. HandlerType: (*SeaweedServer)(nil),
  797. Methods: []grpc.MethodDesc{
  798. {
  799. MethodName: "LookupVolume",
  800. Handler: _Seaweed_LookupVolume_Handler,
  801. },
  802. {
  803. MethodName: "Assign",
  804. Handler: _Seaweed_Assign_Handler,
  805. },
  806. {
  807. MethodName: "Statistics",
  808. Handler: _Seaweed_Statistics_Handler,
  809. },
  810. },
  811. Streams: []grpc.StreamDesc{
  812. {
  813. StreamName: "SendHeartbeat",
  814. Handler: _Seaweed_SendHeartbeat_Handler,
  815. ServerStreams: true,
  816. ClientStreams: true,
  817. },
  818. {
  819. StreamName: "KeepConnected",
  820. Handler: _Seaweed_KeepConnected_Handler,
  821. ServerStreams: true,
  822. ClientStreams: true,
  823. },
  824. },
  825. Metadata: "master.proto",
  826. }
  827. func init() { proto.RegisterFile("master.proto", fileDescriptor0) }
  828. var fileDescriptor0 = []byte{
  829. // 1055 bytes of a gzipped FileDescriptorProto
  830. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x56, 0x4b, 0x6f, 0xe4, 0x44,
  831. 0x10, 0x5e, 0x7b, 0x9e, 0xae, 0xd9, 0xc9, 0x4e, 0x3a, 0x11, 0xf2, 0xce, 0xbe, 0x06, 0x73, 0x19,
  832. 0x04, 0x8a, 0x96, 0x70, 0x44, 0x08, 0xb1, 0xd1, 0x22, 0xa2, 0x04, 0x36, 0x38, 0xb0, 0x07, 0x2e,
  833. 0xa6, 0x63, 0x57, 0xa2, 0x56, 0xfc, 0xa2, 0xbb, 0x27, 0x99, 0xd9, 0x0b, 0x47, 0xfe, 0x15, 0x17,
  834. 0xb8, 0xf1, 0x53, 0xb8, 0xf1, 0x0b, 0x50, 0x3f, 0xec, 0xf1, 0x38, 0x09, 0x91, 0x90, 0xb8, 0xb5,
  835. 0xbf, 0xae, 0xee, 0xaa, 0xfe, 0xbe, 0x7a, 0x18, 0x1e, 0x66, 0x54, 0x48, 0xe4, 0x7b, 0x25, 0x2f,
  836. 0x64, 0x41, 0x3c, 0xf3, 0x15, 0x95, 0x67, 0xc1, 0x5f, 0x2e, 0x78, 0x5f, 0x23, 0xe5, 0xf2, 0x0c,
  837. 0xa9, 0x24, 0x5b, 0xe0, 0xb2, 0xd2, 0x77, 0x66, 0xce, 0xdc, 0x0b, 0x5d, 0x56, 0x12, 0x02, 0xdd,
  838. 0xb2, 0xe0, 0xd2, 0x77, 0x67, 0xce, 0x7c, 0x1c, 0xea, 0x35, 0x79, 0x06, 0x50, 0x2e, 0xce, 0x52,
  839. 0x16, 0x47, 0x0b, 0x9e, 0xfa, 0x1d, 0x6d, 0xeb, 0x19, 0xe4, 0x07, 0x9e, 0x92, 0x39, 0x4c, 0x32,
  840. 0xba, 0x8c, 0xae, 0x8a, 0x74, 0x91, 0x61, 0x14, 0x17, 0x8b, 0x5c, 0xfa, 0x5d, 0x7d, 0x7c, 0x2b,
  841. 0xa3, 0xcb, 0xb7, 0x1a, 0x3e, 0x50, 0x28, 0x99, 0xa9, 0xa8, 0x96, 0xd1, 0x39, 0x4b, 0x31, 0xba,
  842. 0xc4, 0x95, 0xdf, 0x9b, 0x39, 0xf3, 0x6e, 0x08, 0x19, 0x5d, 0x7e, 0xc5, 0x52, 0x3c, 0xc2, 0x15,
  843. 0x79, 0x01, 0xa3, 0x84, 0x4a, 0x1a, 0xc5, 0x98, 0x4b, 0xe4, 0x7e, 0x5f, 0xfb, 0x02, 0x05, 0x1d,
  844. 0x68, 0x44, 0xc5, 0xc7, 0x69, 0x7c, 0xe9, 0x0f, 0xf4, 0x8e, 0x5e, 0xab, 0xf8, 0x68, 0x92, 0xb1,
  845. 0x3c, 0xd2, 0x91, 0x0f, 0xb5, 0x6b, 0x4f, 0x23, 0x27, 0x2a, 0xfc, 0xcf, 0x61, 0x60, 0x62, 0x13,
  846. 0xbe, 0x37, 0xeb, 0xcc, 0x47, 0xfb, 0x1f, 0xec, 0xd5, 0x6c, 0xec, 0x99, 0xf0, 0x0e, 0xf3, 0xf3,
  847. 0x82, 0x67, 0x54, 0xb2, 0x22, 0xff, 0x06, 0x85, 0xa0, 0x17, 0x18, 0x56, 0x67, 0xc8, 0x63, 0x18,
  848. 0xe6, 0x78, 0x1d, 0x5d, 0xb1, 0x44, 0xf8, 0x30, 0xeb, 0xcc, 0xc7, 0xe1, 0x20, 0xc7, 0xeb, 0xb7,
  849. 0x2c, 0x11, 0xe4, 0x7d, 0x78, 0x98, 0x60, 0x8a, 0x12, 0x13, 0xb3, 0x3d, 0xd2, 0xdb, 0x23, 0x8b,
  850. 0x29, 0x93, 0x40, 0xc0, 0x76, 0x4d, 0x76, 0x88, 0xa2, 0x2c, 0x72, 0x81, 0x64, 0x0e, 0x8f, 0xcc,
  851. 0xed, 0xa7, 0xec, 0x1d, 0x1e, 0xb3, 0x8c, 0x49, 0xad, 0x40, 0x37, 0x6c, 0xc3, 0xe4, 0x29, 0x78,
  852. 0x02, 0x63, 0x8e, 0xf2, 0x08, 0x57, 0x5a, 0x13, 0x2f, 0x5c, 0x03, 0xe4, 0x3d, 0xe8, 0xa7, 0x48,
  853. 0x13, 0xe4, 0x56, 0x14, 0xfb, 0x15, 0xfc, 0xe1, 0x82, 0x7f, 0xd7, 0xc3, 0xb4, 0xe2, 0x89, 0xf6,
  854. 0x37, 0x0e, 0x5d, 0x96, 0x28, 0x46, 0x05, 0x7b, 0x87, 0xfa, 0xf6, 0x6e, 0xa8, 0xd7, 0xe4, 0x39,
  855. 0x40, 0x5c, 0xa4, 0x29, 0xc6, 0xea, 0xa0, 0xbd, 0xbc, 0x81, 0x28, 0xc6, 0xb5, 0x88, 0x6b, 0xb1,
  856. 0xbb, 0xa1, 0xa7, 0x10, 0xa3, 0x73, 0xcd, 0x8b, 0x35, 0x30, 0x3a, 0x5b, 0x5e, 0x8c, 0xc9, 0xc7,
  857. 0x40, 0x2a, 0xea, 0xce, 0x56, 0xb5, 0x61, 0x5f, 0x1b, 0x4e, 0xec, 0xce, 0xab, 0x55, 0x65, 0xfd,
  858. 0x04, 0x3c, 0x8e, 0x34, 0x89, 0x8a, 0x3c, 0x5d, 0x69, 0xe9, 0x87, 0xe1, 0x50, 0x01, 0x6f, 0xf2,
  859. 0x74, 0x45, 0x3e, 0x82, 0x6d, 0x8e, 0x65, 0xca, 0x62, 0x1a, 0x95, 0x29, 0x8d, 0x31, 0xc3, 0xbc,
  860. 0xca, 0x82, 0x89, 0xdd, 0x38, 0xa9, 0x70, 0xe2, 0xc3, 0xe0, 0x0a, 0xb9, 0x50, 0xcf, 0xf2, 0xb4,
  861. 0x49, 0xf5, 0x49, 0x26, 0xd0, 0x91, 0x32, 0xf5, 0x41, 0xa3, 0x6a, 0x19, 0x0c, 0xa0, 0xf7, 0x3a,
  862. 0x2b, 0xe5, 0x2a, 0xf8, 0xcd, 0x81, 0x47, 0xa7, 0x8b, 0x12, 0xf9, 0xab, 0xb4, 0x88, 0x2f, 0x5f,
  863. 0x2f, 0x25, 0xa7, 0xe4, 0x0d, 0x6c, 0x21, 0xa7, 0x62, 0xc1, 0x55, 0xec, 0x09, 0xcb, 0x2f, 0x34,
  864. 0xa5, 0xa3, 0xfd, 0x79, 0x23, 0xb9, 0x5a, 0x67, 0xf6, 0x5e, 0x9b, 0x03, 0x07, 0xda, 0x3e, 0x1c,
  865. 0x63, 0xf3, 0x73, 0xfa, 0x23, 0x8c, 0x37, 0xf6, 0x95, 0x30, 0x2a, 0xf1, 0xad, 0x54, 0x7a, 0xad,
  866. 0x14, 0x2f, 0x29, 0x67, 0x72, 0x65, 0x0b, 0xd4, 0x7e, 0x29, 0x41, 0x6c, 0xfd, 0xa9, 0x3c, 0xec,
  867. 0xe8, 0x3c, 0xf4, 0x0c, 0x72, 0x98, 0x88, 0xe0, 0x43, 0xd8, 0x39, 0x48, 0x19, 0xe6, 0xf2, 0x98,
  868. 0x09, 0x89, 0x79, 0x88, 0x3f, 0x2f, 0x50, 0x48, 0xe5, 0x21, 0xa7, 0x19, 0xda, 0xf2, 0xd7, 0xeb,
  869. 0xe0, 0x17, 0xd8, 0x32, 0xa9, 0x73, 0x5c, 0xc4, 0x3a, 0x6f, 0x14, 0x31, 0xaa, 0xee, 0x8d, 0x91,
  870. 0x5a, 0xb6, 0x1a, 0x82, 0xdb, 0x6e, 0x08, 0xcd, 0x8a, 0xe9, 0xfc, 0x7b, 0xc5, 0x74, 0x6f, 0x56,
  871. 0xcc, 0xf7, 0xb0, 0x73, 0x5c, 0x14, 0x97, 0x8b, 0xd2, 0x84, 0x51, 0xc5, 0xba, 0xf9, 0x42, 0x67,
  872. 0xd6, 0x51, 0x3e, 0xeb, 0x17, 0xb6, 0x32, 0xd6, 0x6d, 0x67, 0x6c, 0xf0, 0xb7, 0x03, 0xbb, 0x9b,
  873. 0xd7, 0xda, 0x5a, 0xfc, 0x09, 0x76, 0xea, 0x7b, 0xa3, 0xd4, 0xbe, 0xd9, 0x38, 0x18, 0xed, 0xbf,
  874. 0x6c, 0x88, 0x79, 0xdb, 0xe9, 0xaa, 0x7d, 0x24, 0x15, 0x59, 0xe1, 0xf6, 0x55, 0x0b, 0x11, 0xd3,
  875. 0x25, 0x4c, 0xda, 0x66, 0x2a, 0xa1, 0x6b, 0xaf, 0x96, 0xd9, 0x61, 0x75, 0x92, 0x7c, 0x02, 0xde,
  876. 0x3a, 0x10, 0x57, 0x07, 0xb2, 0xb3, 0x11, 0x88, 0xf5, 0xb5, 0xb6, 0x22, 0xbb, 0xd0, 0x43, 0xce,
  877. 0x8b, 0xaa, 0x11, 0x98, 0x8f, 0xe0, 0x33, 0x18, 0xfe, 0x67, 0x15, 0x83, 0x3f, 0x1d, 0x18, 0x7f,
  878. 0x29, 0x04, 0xbb, 0xa8, 0xd3, 0x65, 0x17, 0x7a, 0xa6, 0x4c, 0x4d, 0xb3, 0x32, 0x1f, 0x64, 0x06,
  879. 0x23, 0x5b, 0x65, 0x0d, 0xea, 0x9b, 0xd0, 0xbd, 0xdd, 0xc4, 0x56, 0x5e, 0xd7, 0x84, 0x26, 0x65,
  880. 0xda, 0x1e, 0x03, 0xbd, 0x3b, 0xc7, 0x40, 0xbf, 0x31, 0x06, 0x9e, 0x80, 0xa7, 0x0f, 0xe5, 0x45,
  881. 0x82, 0x76, 0x3e, 0x0c, 0x15, 0xf0, 0x6d, 0x91, 0xe8, 0xb4, 0xae, 0x1e, 0x63, 0x85, 0x9f, 0x40,
  882. 0xe7, 0xbc, 0x26, 0x5f, 0x2d, 0x2b, 0x8a, 0xdc, 0xbb, 0x28, 0xba, 0x31, 0xf9, 0x6a, 0x42, 0xba,
  883. 0x4d, 0x42, 0x6a, 0x2d, 0x7a, 0x4d, 0x2d, 0x2e, 0x60, 0xfb, 0x54, 0x52, 0xc9, 0x84, 0x64, 0xb1,
  884. 0xa8, 0x18, 0x6d, 0x71, 0xe7, 0xdc, 0xc7, 0x9d, 0x7b, 0x17, 0x77, 0x9d, 0x9a, 0xbb, 0xe0, 0x77,
  885. 0x07, 0x48, 0xd3, 0x93, 0x7d, 0xee, 0xff, 0xe0, 0x4a, 0xd1, 0x23, 0x0b, 0x49, 0xd3, 0x48, 0x0f,
  886. 0x10, 0x3b, 0x06, 0x34, 0xa2, 0x26, 0x98, 0x12, 0x64, 0x21, 0x30, 0x31, 0xbb, 0x66, 0x06, 0x0c,
  887. 0x15, 0xa0, 0x37, 0x37, 0x47, 0x48, 0xbf, 0x35, 0x42, 0xf6, 0x7f, 0xed, 0xc0, 0xe0, 0x14, 0xe9,
  888. 0x35, 0x62, 0x42, 0x0e, 0x61, 0x7c, 0x8a, 0x79, 0xb2, 0xfe, 0x69, 0xd9, 0x6d, 0x54, 0x43, 0x8d,
  889. 0x4e, 0x9f, 0xde, 0x86, 0x56, 0xef, 0x0f, 0x1e, 0xcc, 0x9d, 0x97, 0x0e, 0x39, 0x81, 0xf1, 0x11,
  890. 0x62, 0x79, 0x50, 0xe4, 0x39, 0xc6, 0x12, 0x13, 0xf2, 0xbc, 0x71, 0xe8, 0x96, 0x16, 0x39, 0x7d,
  891. 0x7c, 0xe3, 0x5f, 0xa1, 0xaa, 0x28, 0x7b, 0xe3, 0x77, 0xf0, 0xb0, 0xd9, 0x19, 0x36, 0x2e, 0xbc,
  892. 0xa5, 0x8f, 0x4d, 0x5f, 0xdc, 0xd3, 0x52, 0x82, 0x07, 0xe4, 0x0b, 0xe8, 0x9b, 0x5c, 0x25, 0x7e,
  893. 0xc3, 0x78, 0xa3, 0x16, 0x37, 0xe2, 0xda, 0x4c, 0xec, 0xe0, 0x01, 0x39, 0x02, 0x58, 0x67, 0x00,
  894. 0x69, 0xf2, 0x72, 0x23, 0x05, 0xa7, 0xcf, 0xee, 0xd8, 0xad, 0x2e, 0x3b, 0xeb, 0xeb, 0x3f, 0xc8,
  895. 0x4f, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0xc7, 0x9f, 0x0a, 0x25, 0x51, 0x0a, 0x00, 0x00,
  896. }