1
0

vpn.pb.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: vpn.proto
  3. package pb
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import _ "google.golang.org/genproto/googleapis/api/annotations"
  8. import (
  9. context "golang.org/x/net/context"
  10. grpc "google.golang.org/grpc"
  11. )
  12. // Reference imports to suppress errors if they are not otherwise used.
  13. var _ = proto.Marshal
  14. var _ = fmt.Errorf
  15. var _ = math.Inf
  16. type VPNProto int32
  17. const (
  18. VPNProto_NOPREF VPNProto = 0
  19. VPNProto_UDP VPNProto = 1
  20. VPNProto_TCP VPNProto = 2
  21. )
  22. var VPNProto_name = map[int32]string{
  23. 0: "NOPREF",
  24. 1: "UDP",
  25. 2: "TCP",
  26. }
  27. var VPNProto_value = map[string]int32{
  28. "NOPREF": 0,
  29. "UDP": 1,
  30. "TCP": 2,
  31. }
  32. func (x VPNProto) String() string {
  33. return proto.EnumName(VPNProto_name, int32(x))
  34. }
  35. func (VPNProto) EnumDescriptor() ([]byte, []int) { return fileDescriptor1, []int{0} }
  36. type VPNStatusRequest struct {
  37. }
  38. func (m *VPNStatusRequest) Reset() { *m = VPNStatusRequest{} }
  39. func (m *VPNStatusRequest) String() string { return proto.CompactTextString(m) }
  40. func (*VPNStatusRequest) ProtoMessage() {}
  41. func (*VPNStatusRequest) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{0} }
  42. type VPNInitRequest struct {
  43. Hostname string `protobuf:"bytes,1,opt,name=hostname" json:"hostname,omitempty"`
  44. Port string `protobuf:"bytes,2,opt,name=port" json:"port,omitempty"`
  45. ProtoPref VPNProto `protobuf:"varint,3,opt,name=proto_pref,json=protoPref,enum=pb.VPNProto" json:"proto_pref,omitempty"`
  46. IpBlock string `protobuf:"bytes,4,opt,name=ip_block,json=ipBlock" json:"ip_block,omitempty"`
  47. Dns string `protobuf:"bytes,5,opt,name=dns" json:"dns,omitempty"`
  48. }
  49. func (m *VPNInitRequest) Reset() { *m = VPNInitRequest{} }
  50. func (m *VPNInitRequest) String() string { return proto.CompactTextString(m) }
  51. func (*VPNInitRequest) ProtoMessage() {}
  52. func (*VPNInitRequest) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{1} }
  53. func (m *VPNInitRequest) GetHostname() string {
  54. if m != nil {
  55. return m.Hostname
  56. }
  57. return ""
  58. }
  59. func (m *VPNInitRequest) GetPort() string {
  60. if m != nil {
  61. return m.Port
  62. }
  63. return ""
  64. }
  65. func (m *VPNInitRequest) GetProtoPref() VPNProto {
  66. if m != nil {
  67. return m.ProtoPref
  68. }
  69. return VPNProto_NOPREF
  70. }
  71. func (m *VPNInitRequest) GetIpBlock() string {
  72. if m != nil {
  73. return m.IpBlock
  74. }
  75. return ""
  76. }
  77. func (m *VPNInitRequest) GetDns() string {
  78. if m != nil {
  79. return m.Dns
  80. }
  81. return ""
  82. }
  83. type VPNUpdateRequest struct {
  84. IpBlock string `protobuf:"bytes,1,opt,name=ip_block,json=ipBlock" json:"ip_block,omitempty"`
  85. Dns string `protobuf:"bytes,2,opt,name=dns" json:"dns,omitempty"`
  86. }
  87. func (m *VPNUpdateRequest) Reset() { *m = VPNUpdateRequest{} }
  88. func (m *VPNUpdateRequest) String() string { return proto.CompactTextString(m) }
  89. func (*VPNUpdateRequest) ProtoMessage() {}
  90. func (*VPNUpdateRequest) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{2} }
  91. func (m *VPNUpdateRequest) GetIpBlock() string {
  92. if m != nil {
  93. return m.IpBlock
  94. }
  95. return ""
  96. }
  97. func (m *VPNUpdateRequest) GetDns() string {
  98. if m != nil {
  99. return m.Dns
  100. }
  101. return ""
  102. }
  103. type VPNRestartRequest struct {
  104. }
  105. func (m *VPNRestartRequest) Reset() { *m = VPNRestartRequest{} }
  106. func (m *VPNRestartRequest) String() string { return proto.CompactTextString(m) }
  107. func (*VPNRestartRequest) ProtoMessage() {}
  108. func (*VPNRestartRequest) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{3} }
  109. type VPNStatusResponse struct {
  110. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  111. SerialNumber string `protobuf:"bytes,2,opt,name=serial_number,json=serialNumber" json:"serial_number,omitempty"`
  112. Hostname string `protobuf:"bytes,3,opt,name=hostname" json:"hostname,omitempty"`
  113. Port string `protobuf:"bytes,4,opt,name=port" json:"port,omitempty"`
  114. Cert string `protobuf:"bytes,5,opt,name=cert" json:"cert,omitempty"`
  115. CaCert string `protobuf:"bytes,6,opt,name=ca_cert,json=caCert" json:"ca_cert,omitempty"`
  116. Net string `protobuf:"bytes,7,opt,name=net" json:"net,omitempty"`
  117. Mask string `protobuf:"bytes,8,opt,name=mask" json:"mask,omitempty"`
  118. CreatedAt string `protobuf:"bytes,9,opt,name=created_at,json=createdAt" json:"created_at,omitempty"`
  119. Proto string `protobuf:"bytes,10,opt,name=proto" json:"proto,omitempty"`
  120. Dns string `protobuf:"bytes,11,opt,name=dns" json:"dns,omitempty"`
  121. }
  122. func (m *VPNStatusResponse) Reset() { *m = VPNStatusResponse{} }
  123. func (m *VPNStatusResponse) String() string { return proto.CompactTextString(m) }
  124. func (*VPNStatusResponse) ProtoMessage() {}
  125. func (*VPNStatusResponse) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{4} }
  126. func (m *VPNStatusResponse) GetName() string {
  127. if m != nil {
  128. return m.Name
  129. }
  130. return ""
  131. }
  132. func (m *VPNStatusResponse) GetSerialNumber() string {
  133. if m != nil {
  134. return m.SerialNumber
  135. }
  136. return ""
  137. }
  138. func (m *VPNStatusResponse) GetHostname() string {
  139. if m != nil {
  140. return m.Hostname
  141. }
  142. return ""
  143. }
  144. func (m *VPNStatusResponse) GetPort() string {
  145. if m != nil {
  146. return m.Port
  147. }
  148. return ""
  149. }
  150. func (m *VPNStatusResponse) GetCert() string {
  151. if m != nil {
  152. return m.Cert
  153. }
  154. return ""
  155. }
  156. func (m *VPNStatusResponse) GetCaCert() string {
  157. if m != nil {
  158. return m.CaCert
  159. }
  160. return ""
  161. }
  162. func (m *VPNStatusResponse) GetNet() string {
  163. if m != nil {
  164. return m.Net
  165. }
  166. return ""
  167. }
  168. func (m *VPNStatusResponse) GetMask() string {
  169. if m != nil {
  170. return m.Mask
  171. }
  172. return ""
  173. }
  174. func (m *VPNStatusResponse) GetCreatedAt() string {
  175. if m != nil {
  176. return m.CreatedAt
  177. }
  178. return ""
  179. }
  180. func (m *VPNStatusResponse) GetProto() string {
  181. if m != nil {
  182. return m.Proto
  183. }
  184. return ""
  185. }
  186. func (m *VPNStatusResponse) GetDns() string {
  187. if m != nil {
  188. return m.Dns
  189. }
  190. return ""
  191. }
  192. type VPNInitResponse struct {
  193. }
  194. func (m *VPNInitResponse) Reset() { *m = VPNInitResponse{} }
  195. func (m *VPNInitResponse) String() string { return proto.CompactTextString(m) }
  196. func (*VPNInitResponse) ProtoMessage() {}
  197. func (*VPNInitResponse) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{5} }
  198. type VPNUpdateResponse struct {
  199. }
  200. func (m *VPNUpdateResponse) Reset() { *m = VPNUpdateResponse{} }
  201. func (m *VPNUpdateResponse) String() string { return proto.CompactTextString(m) }
  202. func (*VPNUpdateResponse) ProtoMessage() {}
  203. func (*VPNUpdateResponse) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{6} }
  204. type VPNRestartResponse struct {
  205. }
  206. func (m *VPNRestartResponse) Reset() { *m = VPNRestartResponse{} }
  207. func (m *VPNRestartResponse) String() string { return proto.CompactTextString(m) }
  208. func (*VPNRestartResponse) ProtoMessage() {}
  209. func (*VPNRestartResponse) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{7} }
  210. func init() {
  211. proto.RegisterType((*VPNStatusRequest)(nil), "pb.VPNStatusRequest")
  212. proto.RegisterType((*VPNInitRequest)(nil), "pb.VPNInitRequest")
  213. proto.RegisterType((*VPNUpdateRequest)(nil), "pb.VPNUpdateRequest")
  214. proto.RegisterType((*VPNRestartRequest)(nil), "pb.VPNRestartRequest")
  215. proto.RegisterType((*VPNStatusResponse)(nil), "pb.VPNStatusResponse")
  216. proto.RegisterType((*VPNInitResponse)(nil), "pb.VPNInitResponse")
  217. proto.RegisterType((*VPNUpdateResponse)(nil), "pb.VPNUpdateResponse")
  218. proto.RegisterType((*VPNRestartResponse)(nil), "pb.VPNRestartResponse")
  219. proto.RegisterEnum("pb.VPNProto", VPNProto_name, VPNProto_value)
  220. }
  221. // Reference imports to suppress errors if they are not otherwise used.
  222. var _ context.Context
  223. var _ grpc.ClientConn
  224. // This is a compile-time assertion to ensure that this generated file
  225. // is compatible with the grpc package it is being compiled against.
  226. const _ = grpc.SupportPackageIsVersion4
  227. // Client API for VPNService service
  228. type VPNServiceClient interface {
  229. Status(ctx context.Context, in *VPNStatusRequest, opts ...grpc.CallOption) (*VPNStatusResponse, error)
  230. Init(ctx context.Context, in *VPNInitRequest, opts ...grpc.CallOption) (*VPNInitResponse, error)
  231. Update(ctx context.Context, in *VPNUpdateRequest, opts ...grpc.CallOption) (*VPNUpdateResponse, error)
  232. Restart(ctx context.Context, in *VPNRestartRequest, opts ...grpc.CallOption) (*VPNRestartResponse, error)
  233. }
  234. type vPNServiceClient struct {
  235. cc *grpc.ClientConn
  236. }
  237. func NewVPNServiceClient(cc *grpc.ClientConn) VPNServiceClient {
  238. return &vPNServiceClient{cc}
  239. }
  240. func (c *vPNServiceClient) Status(ctx context.Context, in *VPNStatusRequest, opts ...grpc.CallOption) (*VPNStatusResponse, error) {
  241. out := new(VPNStatusResponse)
  242. err := grpc.Invoke(ctx, "/pb.VPNService/Status", in, out, c.cc, opts...)
  243. if err != nil {
  244. return nil, err
  245. }
  246. return out, nil
  247. }
  248. func (c *vPNServiceClient) Init(ctx context.Context, in *VPNInitRequest, opts ...grpc.CallOption) (*VPNInitResponse, error) {
  249. out := new(VPNInitResponse)
  250. err := grpc.Invoke(ctx, "/pb.VPNService/Init", in, out, c.cc, opts...)
  251. if err != nil {
  252. return nil, err
  253. }
  254. return out, nil
  255. }
  256. func (c *vPNServiceClient) Update(ctx context.Context, in *VPNUpdateRequest, opts ...grpc.CallOption) (*VPNUpdateResponse, error) {
  257. out := new(VPNUpdateResponse)
  258. err := grpc.Invoke(ctx, "/pb.VPNService/Update", in, out, c.cc, opts...)
  259. if err != nil {
  260. return nil, err
  261. }
  262. return out, nil
  263. }
  264. func (c *vPNServiceClient) Restart(ctx context.Context, in *VPNRestartRequest, opts ...grpc.CallOption) (*VPNRestartResponse, error) {
  265. out := new(VPNRestartResponse)
  266. err := grpc.Invoke(ctx, "/pb.VPNService/Restart", in, out, c.cc, opts...)
  267. if err != nil {
  268. return nil, err
  269. }
  270. return out, nil
  271. }
  272. // Server API for VPNService service
  273. type VPNServiceServer interface {
  274. Status(context.Context, *VPNStatusRequest) (*VPNStatusResponse, error)
  275. Init(context.Context, *VPNInitRequest) (*VPNInitResponse, error)
  276. Update(context.Context, *VPNUpdateRequest) (*VPNUpdateResponse, error)
  277. Restart(context.Context, *VPNRestartRequest) (*VPNRestartResponse, error)
  278. }
  279. func RegisterVPNServiceServer(s *grpc.Server, srv VPNServiceServer) {
  280. s.RegisterService(&_VPNService_serviceDesc, srv)
  281. }
  282. func _VPNService_Status_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  283. in := new(VPNStatusRequest)
  284. if err := dec(in); err != nil {
  285. return nil, err
  286. }
  287. if interceptor == nil {
  288. return srv.(VPNServiceServer).Status(ctx, in)
  289. }
  290. info := &grpc.UnaryServerInfo{
  291. Server: srv,
  292. FullMethod: "/pb.VPNService/Status",
  293. }
  294. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  295. return srv.(VPNServiceServer).Status(ctx, req.(*VPNStatusRequest))
  296. }
  297. return interceptor(ctx, in, info, handler)
  298. }
  299. func _VPNService_Init_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  300. in := new(VPNInitRequest)
  301. if err := dec(in); err != nil {
  302. return nil, err
  303. }
  304. if interceptor == nil {
  305. return srv.(VPNServiceServer).Init(ctx, in)
  306. }
  307. info := &grpc.UnaryServerInfo{
  308. Server: srv,
  309. FullMethod: "/pb.VPNService/Init",
  310. }
  311. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  312. return srv.(VPNServiceServer).Init(ctx, req.(*VPNInitRequest))
  313. }
  314. return interceptor(ctx, in, info, handler)
  315. }
  316. func _VPNService_Update_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  317. in := new(VPNUpdateRequest)
  318. if err := dec(in); err != nil {
  319. return nil, err
  320. }
  321. if interceptor == nil {
  322. return srv.(VPNServiceServer).Update(ctx, in)
  323. }
  324. info := &grpc.UnaryServerInfo{
  325. Server: srv,
  326. FullMethod: "/pb.VPNService/Update",
  327. }
  328. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  329. return srv.(VPNServiceServer).Update(ctx, req.(*VPNUpdateRequest))
  330. }
  331. return interceptor(ctx, in, info, handler)
  332. }
  333. func _VPNService_Restart_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  334. in := new(VPNRestartRequest)
  335. if err := dec(in); err != nil {
  336. return nil, err
  337. }
  338. if interceptor == nil {
  339. return srv.(VPNServiceServer).Restart(ctx, in)
  340. }
  341. info := &grpc.UnaryServerInfo{
  342. Server: srv,
  343. FullMethod: "/pb.VPNService/Restart",
  344. }
  345. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  346. return srv.(VPNServiceServer).Restart(ctx, req.(*VPNRestartRequest))
  347. }
  348. return interceptor(ctx, in, info, handler)
  349. }
  350. var _VPNService_serviceDesc = grpc.ServiceDesc{
  351. ServiceName: "pb.VPNService",
  352. HandlerType: (*VPNServiceServer)(nil),
  353. Methods: []grpc.MethodDesc{
  354. {
  355. MethodName: "Status",
  356. Handler: _VPNService_Status_Handler,
  357. },
  358. {
  359. MethodName: "Init",
  360. Handler: _VPNService_Init_Handler,
  361. },
  362. {
  363. MethodName: "Update",
  364. Handler: _VPNService_Update_Handler,
  365. },
  366. {
  367. MethodName: "Restart",
  368. Handler: _VPNService_Restart_Handler,
  369. },
  370. },
  371. Streams: []grpc.StreamDesc{},
  372. Metadata: "vpn.proto",
  373. }
  374. func init() { proto.RegisterFile("vpn.proto", fileDescriptor1) }
  375. var fileDescriptor1 = []byte{
  376. // 537 bytes of a gzipped FileDescriptorProto
  377. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0xc1, 0x6e, 0xd3, 0x40,
  378. 0x10, 0x86, 0xb1, 0x93, 0x3a, 0xc9, 0x50, 0x8a, 0x3b, 0x4d, 0xa9, 0x31, 0x54, 0xaa, 0xcc, 0xa5,
  379. 0x2a, 0x52, 0x22, 0xca, 0x8d, 0x0b, 0x82, 0x02, 0x12, 0x12, 0x32, 0x26, 0x34, 0xb9, 0x46, 0x1b,
  380. 0x67, 0x5b, 0xac, 0x26, 0xeb, 0xc5, 0xbb, 0xc9, 0x03, 0xf0, 0x0a, 0x48, 0x1c, 0x78, 0x2d, 0x6e,
  381. 0x9c, 0x79, 0x10, 0xe4, 0xd9, 0x75, 0x6a, 0x47, 0x70, 0x9b, 0xfd, 0x67, 0xe7, 0xd3, 0xcc, 0x3f,
  382. 0x03, 0xbd, 0xb5, 0x14, 0x03, 0x59, 0xe4, 0x3a, 0x47, 0x57, 0xce, 0xc2, 0xc7, 0xd7, 0x79, 0x7e,
  383. 0xbd, 0xe0, 0x43, 0x26, 0xb3, 0x21, 0x13, 0x22, 0xd7, 0x4c, 0x67, 0xb9, 0x50, 0xe6, 0x47, 0x84,
  384. 0xe0, 0x4f, 0x92, 0xf8, 0xb3, 0x66, 0x7a, 0xa5, 0x46, 0xfc, 0xeb, 0x8a, 0x2b, 0x1d, 0xfd, 0x74,
  385. 0x60, 0x6f, 0x92, 0xc4, 0xef, 0x45, 0xa6, 0xad, 0x84, 0x21, 0x74, 0xbf, 0xe4, 0x4a, 0x0b, 0xb6,
  386. 0xe4, 0x81, 0x73, 0xe2, 0x9c, 0xf6, 0x46, 0x9b, 0x37, 0x22, 0xb4, 0x65, 0x5e, 0xe8, 0xc0, 0x25,
  387. 0x9d, 0x62, 0x7c, 0x0a, 0x40, 0xfc, 0xa9, 0x2c, 0xf8, 0x55, 0xd0, 0x3a, 0x71, 0x4e, 0xf7, 0xce,
  388. 0x77, 0x07, 0x72, 0x36, 0x98, 0x24, 0x71, 0x52, 0x26, 0x46, 0x3d, 0xca, 0x27, 0x05, 0xbf, 0xc2,
  389. 0x87, 0xd0, 0xcd, 0xe4, 0x74, 0xb6, 0xc8, 0xd3, 0x9b, 0xa0, 0x4d, 0x90, 0x4e, 0x26, 0x5f, 0x97,
  390. 0x4f, 0xf4, 0xa1, 0x35, 0x17, 0x2a, 0xd8, 0x21, 0xb5, 0x0c, 0xa3, 0x97, 0xd4, 0xf0, 0x58, 0xce,
  391. 0x99, 0xe6, 0x55, 0x77, 0x75, 0x80, 0xf3, 0x4f, 0x80, 0x7b, 0x0b, 0x38, 0x80, 0xfd, 0x49, 0x12,
  392. 0x8f, 0xb8, 0xd2, 0xac, 0xa8, 0xe6, 0x8b, 0x7e, 0xb8, 0xa4, 0x56, 0x3e, 0x28, 0x99, 0x0b, 0x45,
  393. 0x93, 0xd5, 0x26, 0xa6, 0x18, 0x9f, 0xc0, 0x3d, 0xc5, 0x8b, 0x8c, 0x2d, 0xa6, 0x62, 0xb5, 0x9c,
  394. 0xf1, 0xc2, 0xa2, 0x77, 0x8d, 0x18, 0x93, 0xd6, 0xb0, 0xab, 0xf5, 0x1f, 0xbb, 0xda, 0x35, 0xbb,
  395. 0x10, 0xda, 0x29, 0x2f, 0xb4, 0x9d, 0x93, 0x62, 0x3c, 0x82, 0x4e, 0xca, 0xa6, 0x24, 0x7b, 0x24,
  396. 0x7b, 0x29, 0xbb, 0x28, 0x13, 0x3e, 0xb4, 0x04, 0xd7, 0x41, 0xc7, 0x8c, 0x24, 0x38, 0x95, 0x2f,
  397. 0x99, 0xba, 0x09, 0xba, 0xa6, 0xbc, 0x8c, 0xf1, 0x18, 0x20, 0x2d, 0x38, 0xd3, 0x7c, 0x3e, 0x65,
  398. 0x3a, 0xe8, 0x51, 0xa6, 0x67, 0x95, 0x57, 0x1a, 0xfb, 0xb0, 0x43, 0x0b, 0x08, 0x80, 0x32, 0xe6,
  399. 0x51, 0xb9, 0x75, 0xf7, 0xd6, 0xad, 0x7d, 0xb8, 0xbf, 0x39, 0x05, 0xe3, 0x8a, 0x35, 0xb0, 0xda,
  400. 0x80, 0x15, 0xfb, 0x80, 0x75, 0x57, 0x8d, 0x7a, 0x76, 0x0a, 0xdd, 0x6a, 0xe1, 0x08, 0xe0, 0xc5,
  401. 0x1f, 0x93, 0xd1, 0xdb, 0x77, 0xfe, 0x1d, 0xec, 0x40, 0x6b, 0xfc, 0x26, 0xf1, 0x9d, 0x32, 0xb8,
  402. 0xbc, 0x48, 0x7c, 0xf7, 0xfc, 0xb7, 0x0b, 0x50, 0x2e, 0x80, 0x17, 0xeb, 0x2c, 0xe5, 0xf8, 0x09,
  403. 0x3c, 0xb3, 0x0b, 0xec, 0xdb, 0xab, 0x69, 0x9c, 0x68, 0x78, 0xb8, 0xa5, 0xda, 0x2e, 0xc2, 0x6f,
  404. 0xbf, 0xfe, 0x7c, 0x77, 0xfb, 0x88, 0x74, 0xed, 0xeb, 0x67, 0xc3, 0xb5, 0x14, 0x43, 0x65, 0x40,
  405. 0x1f, 0xa0, 0x5d, 0x8e, 0x81, 0x68, 0x4b, 0x6b, 0xe7, 0x1d, 0x1e, 0x34, 0x34, 0x0b, 0x7b, 0x44,
  406. 0xb0, 0xc3, 0xc8, 0xaf, 0xc3, 0x32, 0x91, 0xe9, 0x17, 0xce, 0x19, 0x5e, 0x82, 0x67, 0x1c, 0xd8,
  407. 0x34, 0xd8, 0x38, 0xc9, 0x4d, 0x83, 0x5b, 0x36, 0x1d, 0x13, 0xf3, 0x28, 0x6a, 0x34, 0xb8, 0xa2,
  408. 0x3f, 0x25, 0x75, 0x0c, 0x1d, 0x6b, 0x21, 0x56, 0x80, 0xe6, 0xa1, 0x86, 0x0f, 0xb6, 0xe5, 0xad,
  409. 0x66, 0x0f, 0xea, 0xe0, 0xc2, 0x7c, 0x9a, 0x79, 0xb4, 0xdd, 0xe7, 0x7f, 0x03, 0x00, 0x00, 0xff,
  410. 0xff, 0x04, 0xc8, 0xb8, 0x7c, 0x1a, 0x04, 0x00, 0x00,
  411. }