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.

992 lines
36 KiB

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