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.

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