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.

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