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.

603 lines
20 KiB

  1. // Code generated by protoc-gen-go.
  2. // source: seaweed.proto
  3. // DO NOT EDIT!
  4. /*
  5. Package master_pb is a generated protocol buffer package.
  6. It is generated from these files:
  7. seaweed.proto
  8. It has these top-level messages:
  9. Heartbeat
  10. HeartbeatResponse
  11. VolumeInformationMessage
  12. Empty
  13. SuperBlockExtra
  14. ClientListenRequest
  15. VolumeLocation
  16. */
  17. package master_pb
  18. import proto "github.com/golang/protobuf/proto"
  19. import fmt "fmt"
  20. import math "math"
  21. import (
  22. context "golang.org/x/net/context"
  23. grpc "google.golang.org/grpc"
  24. )
  25. // Reference imports to suppress errors if they are not otherwise used.
  26. var _ = proto.Marshal
  27. var _ = fmt.Errorf
  28. var _ = math.Inf
  29. // This is a compile-time assertion to ensure that this generated file
  30. // is compatible with the proto package it is being compiled against.
  31. // A compilation error at this line likely means your copy of the
  32. // proto package needs to be updated.
  33. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  34. type Heartbeat struct {
  35. Ip string `protobuf:"bytes,1,opt,name=ip" json:"ip,omitempty"`
  36. Port uint32 `protobuf:"varint,2,opt,name=port" json:"port,omitempty"`
  37. PublicUrl string `protobuf:"bytes,3,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  38. MaxVolumeCount uint32 `protobuf:"varint,4,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
  39. MaxFileKey uint64 `protobuf:"varint,5,opt,name=max_file_key,json=maxFileKey" json:"max_file_key,omitempty"`
  40. DataCenter string `protobuf:"bytes,6,opt,name=data_center,json=dataCenter" json:"data_center,omitempty"`
  41. Rack string `protobuf:"bytes,7,opt,name=rack" json:"rack,omitempty"`
  42. AdminPort uint32 `protobuf:"varint,8,opt,name=admin_port,json=adminPort" json:"admin_port,omitempty"`
  43. Volumes []*VolumeInformationMessage `protobuf:"bytes,9,rep,name=volumes" json:"volumes,omitempty"`
  44. // delta volume ids
  45. NewVids []uint32 `protobuf:"varint,10,rep,packed,name=new_vids,json=newVids" json:"new_vids,omitempty"`
  46. DeletedVids []uint32 `protobuf:"varint,11,rep,packed,name=deleted_vids,json=deletedVids" json:"deleted_vids,omitempty"`
  47. }
  48. func (m *Heartbeat) Reset() { *m = Heartbeat{} }
  49. func (m *Heartbeat) String() string { return proto.CompactTextString(m) }
  50. func (*Heartbeat) ProtoMessage() {}
  51. func (*Heartbeat) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  52. func (m *Heartbeat) GetIp() string {
  53. if m != nil {
  54. return m.Ip
  55. }
  56. return ""
  57. }
  58. func (m *Heartbeat) GetPort() uint32 {
  59. if m != nil {
  60. return m.Port
  61. }
  62. return 0
  63. }
  64. func (m *Heartbeat) GetPublicUrl() string {
  65. if m != nil {
  66. return m.PublicUrl
  67. }
  68. return ""
  69. }
  70. func (m *Heartbeat) GetMaxVolumeCount() uint32 {
  71. if m != nil {
  72. return m.MaxVolumeCount
  73. }
  74. return 0
  75. }
  76. func (m *Heartbeat) GetMaxFileKey() uint64 {
  77. if m != nil {
  78. return m.MaxFileKey
  79. }
  80. return 0
  81. }
  82. func (m *Heartbeat) GetDataCenter() string {
  83. if m != nil {
  84. return m.DataCenter
  85. }
  86. return ""
  87. }
  88. func (m *Heartbeat) GetRack() string {
  89. if m != nil {
  90. return m.Rack
  91. }
  92. return ""
  93. }
  94. func (m *Heartbeat) GetAdminPort() uint32 {
  95. if m != nil {
  96. return m.AdminPort
  97. }
  98. return 0
  99. }
  100. func (m *Heartbeat) GetVolumes() []*VolumeInformationMessage {
  101. if m != nil {
  102. return m.Volumes
  103. }
  104. return nil
  105. }
  106. func (m *Heartbeat) GetNewVids() []uint32 {
  107. if m != nil {
  108. return m.NewVids
  109. }
  110. return nil
  111. }
  112. func (m *Heartbeat) GetDeletedVids() []uint32 {
  113. if m != nil {
  114. return m.DeletedVids
  115. }
  116. return nil
  117. }
  118. type HeartbeatResponse struct {
  119. VolumeSizeLimit uint64 `protobuf:"varint,1,opt,name=volumeSizeLimit" json:"volumeSizeLimit,omitempty"`
  120. SecretKey string `protobuf:"bytes,2,opt,name=secretKey" json:"secretKey,omitempty"`
  121. Leader string `protobuf:"bytes,3,opt,name=leader" json:"leader,omitempty"`
  122. }
  123. func (m *HeartbeatResponse) Reset() { *m = HeartbeatResponse{} }
  124. func (m *HeartbeatResponse) String() string { return proto.CompactTextString(m) }
  125. func (*HeartbeatResponse) ProtoMessage() {}
  126. func (*HeartbeatResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  127. func (m *HeartbeatResponse) GetVolumeSizeLimit() uint64 {
  128. if m != nil {
  129. return m.VolumeSizeLimit
  130. }
  131. return 0
  132. }
  133. func (m *HeartbeatResponse) GetSecretKey() string {
  134. if m != nil {
  135. return m.SecretKey
  136. }
  137. return ""
  138. }
  139. func (m *HeartbeatResponse) GetLeader() string {
  140. if m != nil {
  141. return m.Leader
  142. }
  143. return ""
  144. }
  145. type VolumeInformationMessage struct {
  146. Id uint32 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
  147. Size uint64 `protobuf:"varint,2,opt,name=size" json:"size,omitempty"`
  148. Collection string `protobuf:"bytes,3,opt,name=collection" json:"collection,omitempty"`
  149. FileCount uint64 `protobuf:"varint,4,opt,name=file_count,json=fileCount" json:"file_count,omitempty"`
  150. DeleteCount uint64 `protobuf:"varint,5,opt,name=delete_count,json=deleteCount" json:"delete_count,omitempty"`
  151. DeletedByteCount uint64 `protobuf:"varint,6,opt,name=deleted_byte_count,json=deletedByteCount" json:"deleted_byte_count,omitempty"`
  152. ReadOnly bool `protobuf:"varint,7,opt,name=read_only,json=readOnly" json:"read_only,omitempty"`
  153. ReplicaPlacement uint32 `protobuf:"varint,8,opt,name=replica_placement,json=replicaPlacement" json:"replica_placement,omitempty"`
  154. Version uint32 `protobuf:"varint,9,opt,name=version" json:"version,omitempty"`
  155. Ttl uint32 `protobuf:"varint,10,opt,name=ttl" json:"ttl,omitempty"`
  156. }
  157. func (m *VolumeInformationMessage) Reset() { *m = VolumeInformationMessage{} }
  158. func (m *VolumeInformationMessage) String() string { return proto.CompactTextString(m) }
  159. func (*VolumeInformationMessage) ProtoMessage() {}
  160. func (*VolumeInformationMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  161. func (m *VolumeInformationMessage) GetId() uint32 {
  162. if m != nil {
  163. return m.Id
  164. }
  165. return 0
  166. }
  167. func (m *VolumeInformationMessage) GetSize() uint64 {
  168. if m != nil {
  169. return m.Size
  170. }
  171. return 0
  172. }
  173. func (m *VolumeInformationMessage) GetCollection() string {
  174. if m != nil {
  175. return m.Collection
  176. }
  177. return ""
  178. }
  179. func (m *VolumeInformationMessage) GetFileCount() uint64 {
  180. if m != nil {
  181. return m.FileCount
  182. }
  183. return 0
  184. }
  185. func (m *VolumeInformationMessage) GetDeleteCount() uint64 {
  186. if m != nil {
  187. return m.DeleteCount
  188. }
  189. return 0
  190. }
  191. func (m *VolumeInformationMessage) GetDeletedByteCount() uint64 {
  192. if m != nil {
  193. return m.DeletedByteCount
  194. }
  195. return 0
  196. }
  197. func (m *VolumeInformationMessage) GetReadOnly() bool {
  198. if m != nil {
  199. return m.ReadOnly
  200. }
  201. return false
  202. }
  203. func (m *VolumeInformationMessage) GetReplicaPlacement() uint32 {
  204. if m != nil {
  205. return m.ReplicaPlacement
  206. }
  207. return 0
  208. }
  209. func (m *VolumeInformationMessage) GetVersion() uint32 {
  210. if m != nil {
  211. return m.Version
  212. }
  213. return 0
  214. }
  215. func (m *VolumeInformationMessage) GetTtl() uint32 {
  216. if m != nil {
  217. return m.Ttl
  218. }
  219. return 0
  220. }
  221. type Empty struct {
  222. }
  223. func (m *Empty) Reset() { *m = Empty{} }
  224. func (m *Empty) String() string { return proto.CompactTextString(m) }
  225. func (*Empty) ProtoMessage() {}
  226. func (*Empty) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  227. type SuperBlockExtra struct {
  228. ErasureCoding *SuperBlockExtra_ErasureCoding `protobuf:"bytes,1,opt,name=erasure_coding,json=erasureCoding" json:"erasure_coding,omitempty"`
  229. }
  230. func (m *SuperBlockExtra) Reset() { *m = SuperBlockExtra{} }
  231. func (m *SuperBlockExtra) String() string { return proto.CompactTextString(m) }
  232. func (*SuperBlockExtra) ProtoMessage() {}
  233. func (*SuperBlockExtra) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  234. func (m *SuperBlockExtra) GetErasureCoding() *SuperBlockExtra_ErasureCoding {
  235. if m != nil {
  236. return m.ErasureCoding
  237. }
  238. return nil
  239. }
  240. type SuperBlockExtra_ErasureCoding struct {
  241. Data uint32 `protobuf:"varint,1,opt,name=data" json:"data,omitempty"`
  242. Parity uint32 `protobuf:"varint,2,opt,name=parity" json:"parity,omitempty"`
  243. VolumeIds []uint32 `protobuf:"varint,3,rep,packed,name=volume_ids,json=volumeIds" json:"volume_ids,omitempty"`
  244. }
  245. func (m *SuperBlockExtra_ErasureCoding) Reset() { *m = SuperBlockExtra_ErasureCoding{} }
  246. func (m *SuperBlockExtra_ErasureCoding) String() string { return proto.CompactTextString(m) }
  247. func (*SuperBlockExtra_ErasureCoding) ProtoMessage() {}
  248. func (*SuperBlockExtra_ErasureCoding) Descriptor() ([]byte, []int) {
  249. return fileDescriptor0, []int{4, 0}
  250. }
  251. func (m *SuperBlockExtra_ErasureCoding) GetData() uint32 {
  252. if m != nil {
  253. return m.Data
  254. }
  255. return 0
  256. }
  257. func (m *SuperBlockExtra_ErasureCoding) GetParity() uint32 {
  258. if m != nil {
  259. return m.Parity
  260. }
  261. return 0
  262. }
  263. func (m *SuperBlockExtra_ErasureCoding) GetVolumeIds() []uint32 {
  264. if m != nil {
  265. return m.VolumeIds
  266. }
  267. return nil
  268. }
  269. type ClientListenRequest struct {
  270. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  271. }
  272. func (m *ClientListenRequest) Reset() { *m = ClientListenRequest{} }
  273. func (m *ClientListenRequest) String() string { return proto.CompactTextString(m) }
  274. func (*ClientListenRequest) ProtoMessage() {}
  275. func (*ClientListenRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  276. func (m *ClientListenRequest) GetName() string {
  277. if m != nil {
  278. return m.Name
  279. }
  280. return ""
  281. }
  282. type VolumeLocation struct {
  283. Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
  284. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  285. NewVids []uint32 `protobuf:"varint,3,rep,packed,name=new_vids,json=newVids" json:"new_vids,omitempty"`
  286. DeletedVids []uint32 `protobuf:"varint,4,rep,packed,name=deleted_vids,json=deletedVids" json:"deleted_vids,omitempty"`
  287. }
  288. func (m *VolumeLocation) Reset() { *m = VolumeLocation{} }
  289. func (m *VolumeLocation) String() string { return proto.CompactTextString(m) }
  290. func (*VolumeLocation) ProtoMessage() {}
  291. func (*VolumeLocation) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
  292. func (m *VolumeLocation) GetUrl() string {
  293. if m != nil {
  294. return m.Url
  295. }
  296. return ""
  297. }
  298. func (m *VolumeLocation) GetPublicUrl() string {
  299. if m != nil {
  300. return m.PublicUrl
  301. }
  302. return ""
  303. }
  304. func (m *VolumeLocation) GetNewVids() []uint32 {
  305. if m != nil {
  306. return m.NewVids
  307. }
  308. return nil
  309. }
  310. func (m *VolumeLocation) GetDeletedVids() []uint32 {
  311. if m != nil {
  312. return m.DeletedVids
  313. }
  314. return nil
  315. }
  316. func init() {
  317. proto.RegisterType((*Heartbeat)(nil), "master_pb.Heartbeat")
  318. proto.RegisterType((*HeartbeatResponse)(nil), "master_pb.HeartbeatResponse")
  319. proto.RegisterType((*VolumeInformationMessage)(nil), "master_pb.VolumeInformationMessage")
  320. proto.RegisterType((*Empty)(nil), "master_pb.Empty")
  321. proto.RegisterType((*SuperBlockExtra)(nil), "master_pb.SuperBlockExtra")
  322. proto.RegisterType((*SuperBlockExtra_ErasureCoding)(nil), "master_pb.SuperBlockExtra.ErasureCoding")
  323. proto.RegisterType((*ClientListenRequest)(nil), "master_pb.ClientListenRequest")
  324. proto.RegisterType((*VolumeLocation)(nil), "master_pb.VolumeLocation")
  325. }
  326. // Reference imports to suppress errors if they are not otherwise used.
  327. var _ context.Context
  328. var _ grpc.ClientConn
  329. // This is a compile-time assertion to ensure that this generated file
  330. // is compatible with the grpc package it is being compiled against.
  331. const _ = grpc.SupportPackageIsVersion4
  332. // Client API for Seaweed service
  333. type SeaweedClient interface {
  334. SendHeartbeat(ctx context.Context, opts ...grpc.CallOption) (Seaweed_SendHeartbeatClient, error)
  335. KeepConnected(ctx context.Context, opts ...grpc.CallOption) (Seaweed_KeepConnectedClient, error)
  336. }
  337. type seaweedClient struct {
  338. cc *grpc.ClientConn
  339. }
  340. func NewSeaweedClient(cc *grpc.ClientConn) SeaweedClient {
  341. return &seaweedClient{cc}
  342. }
  343. func (c *seaweedClient) SendHeartbeat(ctx context.Context, opts ...grpc.CallOption) (Seaweed_SendHeartbeatClient, error) {
  344. stream, err := grpc.NewClientStream(ctx, &_Seaweed_serviceDesc.Streams[0], c.cc, "/master_pb.Seaweed/SendHeartbeat", opts...)
  345. if err != nil {
  346. return nil, err
  347. }
  348. x := &seaweedSendHeartbeatClient{stream}
  349. return x, nil
  350. }
  351. type Seaweed_SendHeartbeatClient interface {
  352. Send(*Heartbeat) error
  353. Recv() (*HeartbeatResponse, error)
  354. grpc.ClientStream
  355. }
  356. type seaweedSendHeartbeatClient struct {
  357. grpc.ClientStream
  358. }
  359. func (x *seaweedSendHeartbeatClient) Send(m *Heartbeat) error {
  360. return x.ClientStream.SendMsg(m)
  361. }
  362. func (x *seaweedSendHeartbeatClient) Recv() (*HeartbeatResponse, error) {
  363. m := new(HeartbeatResponse)
  364. if err := x.ClientStream.RecvMsg(m); err != nil {
  365. return nil, err
  366. }
  367. return m, nil
  368. }
  369. func (c *seaweedClient) KeepConnected(ctx context.Context, opts ...grpc.CallOption) (Seaweed_KeepConnectedClient, error) {
  370. stream, err := grpc.NewClientStream(ctx, &_Seaweed_serviceDesc.Streams[1], c.cc, "/master_pb.Seaweed/KeepConnected", opts...)
  371. if err != nil {
  372. return nil, err
  373. }
  374. x := &seaweedKeepConnectedClient{stream}
  375. return x, nil
  376. }
  377. type Seaweed_KeepConnectedClient interface {
  378. Send(*ClientListenRequest) error
  379. Recv() (*VolumeLocation, error)
  380. grpc.ClientStream
  381. }
  382. type seaweedKeepConnectedClient struct {
  383. grpc.ClientStream
  384. }
  385. func (x *seaweedKeepConnectedClient) Send(m *ClientListenRequest) error {
  386. return x.ClientStream.SendMsg(m)
  387. }
  388. func (x *seaweedKeepConnectedClient) Recv() (*VolumeLocation, error) {
  389. m := new(VolumeLocation)
  390. if err := x.ClientStream.RecvMsg(m); err != nil {
  391. return nil, err
  392. }
  393. return m, nil
  394. }
  395. // Server API for Seaweed service
  396. type SeaweedServer interface {
  397. SendHeartbeat(Seaweed_SendHeartbeatServer) error
  398. KeepConnected(Seaweed_KeepConnectedServer) error
  399. }
  400. func RegisterSeaweedServer(s *grpc.Server, srv SeaweedServer) {
  401. s.RegisterService(&_Seaweed_serviceDesc, srv)
  402. }
  403. func _Seaweed_SendHeartbeat_Handler(srv interface{}, stream grpc.ServerStream) error {
  404. return srv.(SeaweedServer).SendHeartbeat(&seaweedSendHeartbeatServer{stream})
  405. }
  406. type Seaweed_SendHeartbeatServer interface {
  407. Send(*HeartbeatResponse) error
  408. Recv() (*Heartbeat, error)
  409. grpc.ServerStream
  410. }
  411. type seaweedSendHeartbeatServer struct {
  412. grpc.ServerStream
  413. }
  414. func (x *seaweedSendHeartbeatServer) Send(m *HeartbeatResponse) error {
  415. return x.ServerStream.SendMsg(m)
  416. }
  417. func (x *seaweedSendHeartbeatServer) Recv() (*Heartbeat, error) {
  418. m := new(Heartbeat)
  419. if err := x.ServerStream.RecvMsg(m); err != nil {
  420. return nil, err
  421. }
  422. return m, nil
  423. }
  424. func _Seaweed_KeepConnected_Handler(srv interface{}, stream grpc.ServerStream) error {
  425. return srv.(SeaweedServer).KeepConnected(&seaweedKeepConnectedServer{stream})
  426. }
  427. type Seaweed_KeepConnectedServer interface {
  428. Send(*VolumeLocation) error
  429. Recv() (*ClientListenRequest, error)
  430. grpc.ServerStream
  431. }
  432. type seaweedKeepConnectedServer struct {
  433. grpc.ServerStream
  434. }
  435. func (x *seaweedKeepConnectedServer) Send(m *VolumeLocation) error {
  436. return x.ServerStream.SendMsg(m)
  437. }
  438. func (x *seaweedKeepConnectedServer) Recv() (*ClientListenRequest, error) {
  439. m := new(ClientListenRequest)
  440. if err := x.ServerStream.RecvMsg(m); err != nil {
  441. return nil, err
  442. }
  443. return m, nil
  444. }
  445. var _Seaweed_serviceDesc = grpc.ServiceDesc{
  446. ServiceName: "master_pb.Seaweed",
  447. HandlerType: (*SeaweedServer)(nil),
  448. Methods: []grpc.MethodDesc{},
  449. Streams: []grpc.StreamDesc{
  450. {
  451. StreamName: "SendHeartbeat",
  452. Handler: _Seaweed_SendHeartbeat_Handler,
  453. ServerStreams: true,
  454. ClientStreams: true,
  455. },
  456. {
  457. StreamName: "KeepConnected",
  458. Handler: _Seaweed_KeepConnected_Handler,
  459. ServerStreams: true,
  460. ClientStreams: true,
  461. },
  462. },
  463. Metadata: "seaweed.proto",
  464. }
  465. func init() { proto.RegisterFile("seaweed.proto", fileDescriptor0) }
  466. var fileDescriptor0 = []byte{
  467. // 726 bytes of a gzipped FileDescriptorProto
  468. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x7c, 0x54, 0xc1, 0x6e, 0xdb, 0x38,
  469. 0x10, 0x5d, 0xd9, 0x8e, 0x6d, 0x8d, 0x23, 0xc7, 0xe1, 0x2e, 0x16, 0x4a, 0x36, 0x9b, 0xf5, 0x6a,
  470. 0x2f, 0x5a, 0xec, 0xc2, 0x28, 0xd2, 0x73, 0x2f, 0x31, 0x52, 0x34, 0x48, 0x8a, 0x04, 0x32, 0x9a,
  471. 0x43, 0x2f, 0x02, 0x2d, 0x4d, 0x02, 0x22, 0x14, 0xa5, 0x92, 0x74, 0x62, 0xe5, 0xd2, 0xbf, 0xe9,
  472. 0x67, 0xf4, 0xd4, 0xbf, 0xe9, 0x4f, 0x14, 0xa4, 0x24, 0xc7, 0x75, 0xd2, 0xde, 0x86, 0x6f, 0x66,
  473. 0xc8, 0xe1, 0x7b, 0x33, 0x03, 0x9e, 0x42, 0x7a, 0x8f, 0x98, 0x4e, 0x0a, 0x99, 0xeb, 0x9c, 0xb8,
  474. 0x19, 0x55, 0x1a, 0x65, 0x5c, 0xcc, 0x83, 0xaf, 0x2d, 0x70, 0xdf, 0x20, 0x95, 0x7a, 0x8e, 0x54,
  475. 0x93, 0x21, 0xb4, 0x58, 0xe1, 0x3b, 0x63, 0x27, 0x74, 0xa3, 0x16, 0x2b, 0x08, 0x81, 0x4e, 0x91,
  476. 0x4b, 0xed, 0xb7, 0xc6, 0x4e, 0xe8, 0x45, 0xd6, 0x26, 0x7f, 0x02, 0x14, 0x8b, 0x39, 0x67, 0x49,
  477. 0xbc, 0x90, 0xdc, 0x6f, 0xdb, 0x58, 0xb7, 0x42, 0xde, 0x49, 0x4e, 0x42, 0x18, 0x65, 0x74, 0x19,
  478. 0xdf, 0xe5, 0x7c, 0x91, 0x61, 0x9c, 0xe4, 0x0b, 0xa1, 0xfd, 0x8e, 0x4d, 0x1f, 0x66, 0x74, 0x79,
  479. 0x65, 0xe1, 0xa9, 0x41, 0xc9, 0x18, 0xb6, 0x4d, 0xe4, 0x35, 0xe3, 0x18, 0xdf, 0x62, 0xe9, 0x6f,
  480. 0x8d, 0x9d, 0xb0, 0x13, 0x41, 0x46, 0x97, 0xaf, 0x19, 0xc7, 0x33, 0x2c, 0xc9, 0x5f, 0x30, 0x48,
  481. 0xa9, 0xa6, 0x71, 0x82, 0x42, 0xa3, 0xf4, 0xbb, 0xf6, 0x2d, 0x30, 0xd0, 0xd4, 0x22, 0xa6, 0x3e,
  482. 0x49, 0x93, 0x5b, 0xbf, 0x67, 0x3d, 0xd6, 0x36, 0xf5, 0xd1, 0x34, 0x63, 0x22, 0xb6, 0x95, 0xf7,
  483. 0xed, 0xd3, 0xae, 0x45, 0x2e, 0x4d, 0xf9, 0xaf, 0xa0, 0x57, 0xd5, 0xa6, 0x7c, 0x77, 0xdc, 0x0e,
  484. 0x07, 0x47, 0xff, 0x4c, 0x56, 0x6c, 0x4c, 0xaa, 0xf2, 0x4e, 0xc5, 0x75, 0x2e, 0x33, 0xaa, 0x59,
  485. 0x2e, 0xde, 0xa2, 0x52, 0xf4, 0x06, 0xa3, 0x26, 0x87, 0xec, 0x41, 0x5f, 0xe0, 0x7d, 0x7c, 0xc7,
  486. 0x52, 0xe5, 0xc3, 0xb8, 0x1d, 0x7a, 0x51, 0x4f, 0xe0, 0xfd, 0x15, 0x4b, 0x15, 0xf9, 0x1b, 0xb6,
  487. 0x53, 0xe4, 0xa8, 0x31, 0xad, 0xdc, 0x03, 0xeb, 0x1e, 0xd4, 0x98, 0x09, 0x09, 0x14, 0xec, 0xae,
  488. 0xc8, 0x8e, 0x50, 0x15, 0xb9, 0x50, 0x48, 0x42, 0xd8, 0xa9, 0x6e, 0x9f, 0xb1, 0x07, 0x3c, 0x67,
  489. 0x19, 0xd3, 0x56, 0x81, 0x4e, 0xb4, 0x09, 0x93, 0x03, 0x70, 0x15, 0x26, 0x12, 0xf5, 0x19, 0x96,
  490. 0x56, 0x13, 0x37, 0x7a, 0x04, 0xc8, 0xef, 0xd0, 0xe5, 0x48, 0x53, 0x94, 0xb5, 0x28, 0xf5, 0x29,
  491. 0xf8, 0xd2, 0x02, 0xff, 0x47, 0x1f, 0xb3, 0x8a, 0xa7, 0xf6, 0x3d, 0x2f, 0x6a, 0xb1, 0xd4, 0x30,
  492. 0xaa, 0xd8, 0x03, 0xda, 0xdb, 0x3b, 0x91, 0xb5, 0xc9, 0x21, 0x40, 0x92, 0x73, 0x8e, 0x89, 0x49,
  493. 0xac, 0x2f, 0x5f, 0x43, 0x0c, 0xe3, 0x56, 0xc4, 0x47, 0xb1, 0x3b, 0x91, 0x6b, 0x90, 0x4a, 0xe7,
  494. 0x15, 0x2f, 0x75, 0x40, 0xa5, 0x73, 0xcd, 0x4b, 0x15, 0xf2, 0x3f, 0x90, 0x86, 0xba, 0x79, 0xb9,
  495. 0x0a, 0xec, 0xda, 0xc0, 0x51, 0xed, 0x39, 0x2e, 0x9b, 0xe8, 0x3f, 0xc0, 0x95, 0x48, 0xd3, 0x38,
  496. 0x17, 0xbc, 0xb4, 0xd2, 0xf7, 0xa3, 0xbe, 0x01, 0x2e, 0x04, 0x2f, 0xc9, 0x7f, 0xb0, 0x2b, 0xb1,
  497. 0xe0, 0x2c, 0xa1, 0x71, 0xc1, 0x69, 0x82, 0x19, 0x8a, 0xa6, 0x0b, 0x46, 0xb5, 0xe3, 0xb2, 0xc1,
  498. 0x89, 0x0f, 0xbd, 0x3b, 0x94, 0xca, 0x7c, 0xcb, 0xb5, 0x21, 0xcd, 0x91, 0x8c, 0xa0, 0xad, 0x35,
  499. 0xf7, 0xc1, 0xa2, 0xc6, 0x0c, 0x7a, 0xb0, 0x75, 0x92, 0x15, 0xba, 0x0c, 0x3e, 0x3b, 0xb0, 0x33,
  500. 0x5b, 0x14, 0x28, 0x8f, 0x79, 0x9e, 0xdc, 0x9e, 0x2c, 0xb5, 0xa4, 0xe4, 0x02, 0x86, 0x28, 0xa9,
  501. 0x5a, 0x48, 0x53, 0x7b, 0xca, 0xc4, 0x8d, 0xa5, 0x74, 0x70, 0x14, 0xae, 0x35, 0xd7, 0x46, 0xce,
  502. 0xe4, 0xa4, 0x4a, 0x98, 0xda, 0xf8, 0xc8, 0xc3, 0xf5, 0xe3, 0xfe, 0x7b, 0xf0, 0xbe, 0xf3, 0x1b,
  503. 0x61, 0x4c, 0xe3, 0xd7, 0x52, 0x59, 0xdb, 0x28, 0x5e, 0x50, 0xc9, 0x74, 0x59, 0x0f, 0x68, 0x7d,
  504. 0x32, 0x82, 0xd4, 0xf3, 0x67, 0xfa, 0xb0, 0x6d, 0xfb, 0xd0, 0xad, 0x90, 0xd3, 0x54, 0x05, 0xff,
  505. 0xc2, 0xaf, 0x53, 0xce, 0x50, 0xe8, 0x73, 0xa6, 0x34, 0x8a, 0x08, 0x3f, 0x2c, 0x50, 0x69, 0xf3,
  506. 0x82, 0xa0, 0x19, 0xd6, 0xe3, 0x6f, 0xed, 0xe0, 0x23, 0x0c, 0xab, 0xd6, 0x39, 0xcf, 0x13, 0xdb,
  507. 0x37, 0x86, 0x18, 0x33, 0xf7, 0x55, 0x90, 0x31, 0x37, 0x16, 0x42, 0x6b, 0x73, 0x21, 0xac, 0x4f,
  508. 0x4c, 0xfb, 0xe7, 0x13, 0xd3, 0x79, 0x32, 0x31, 0x47, 0x9f, 0x1c, 0xe8, 0xcd, 0xaa, 0xe5, 0x45,
  509. 0x4e, 0xc1, 0x9b, 0xa1, 0x48, 0x1f, 0xd7, 0xd5, 0x6f, 0x6b, 0xec, 0xae, 0xd0, 0xfd, 0x83, 0xe7,
  510. 0xd0, 0x66, 0xda, 0x82, 0x5f, 0x42, 0xe7, 0x85, 0x43, 0x2e, 0xc1, 0x3b, 0x43, 0x2c, 0xa6, 0xb9,
  511. 0x10, 0x98, 0x68, 0x4c, 0xc9, 0xe1, 0x5a, 0xd2, 0x33, 0xe4, 0xec, 0xef, 0x3d, 0xd9, 0x12, 0x0d,
  512. 0x23, 0xd5, 0x8d, 0xf3, 0xae, 0x5d, 0xad, 0x2f, 0xbf, 0x05, 0x00, 0x00, 0xff, 0xff, 0x97, 0xbc,
  513. 0x58, 0x26, 0x6b, 0x05, 0x00, 0x00,
  514. }