config.pb.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  1. package proxyman
  2. import proto "github.com/golang/protobuf/proto"
  3. import fmt "fmt"
  4. import math "math"
  5. import v2ray_core_common_serial "v2ray.com/core/common/serial"
  6. import v2ray_core_common_net "v2ray.com/core/common/net"
  7. import v2ray_core_common_net2 "v2ray.com/core/common/net"
  8. import v2ray_core_common_net3 "v2ray.com/core/common/net"
  9. import v2ray_core_transport_internet "v2ray.com/core/transport/internet"
  10. // Reference imports to suppress errors if they are not otherwise used.
  11. var _ = proto.Marshal
  12. var _ = fmt.Errorf
  13. var _ = math.Inf
  14. // This is a compile-time assertion to ensure that this generated file
  15. // is compatible with the proto package it is being compiled against.
  16. // A compilation error at this line likely means your copy of the
  17. // proto package needs to be updated.
  18. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  19. type AllocationStrategy_Type int32
  20. const (
  21. // Always allocate all connection handlers.
  22. AllocationStrategy_Always AllocationStrategy_Type = 0
  23. // Randomly allocate specific range of handlers.
  24. AllocationStrategy_Random AllocationStrategy_Type = 1
  25. // External. Not supported yet.
  26. AllocationStrategy_External AllocationStrategy_Type = 2
  27. )
  28. var AllocationStrategy_Type_name = map[int32]string{
  29. 0: "Always",
  30. 1: "Random",
  31. 2: "External",
  32. }
  33. var AllocationStrategy_Type_value = map[string]int32{
  34. "Always": 0,
  35. "Random": 1,
  36. "External": 2,
  37. }
  38. func (x AllocationStrategy_Type) String() string {
  39. return proto.EnumName(AllocationStrategy_Type_name, int32(x))
  40. }
  41. func (AllocationStrategy_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{1, 0} }
  42. type InboundConfig struct {
  43. }
  44. func (m *InboundConfig) Reset() { *m = InboundConfig{} }
  45. func (m *InboundConfig) String() string { return proto.CompactTextString(m) }
  46. func (*InboundConfig) ProtoMessage() {}
  47. func (*InboundConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  48. type AllocationStrategy struct {
  49. Type AllocationStrategy_Type `protobuf:"varint,1,opt,name=type,enum=v2ray.core.app.proxyman.AllocationStrategy_Type" json:"type,omitempty"`
  50. // Number of handlers (ports) running in parallel.
  51. // Default value is 3 if unset.
  52. Concurrency *AllocationStrategy_AllocationStrategyConcurrency `protobuf:"bytes,2,opt,name=concurrency" json:"concurrency,omitempty"`
  53. // Number of minutes before a handler is regenerated.
  54. // Default value is 5 if unset.
  55. Refresh *AllocationStrategy_AllocationStrategyRefresh `protobuf:"bytes,3,opt,name=refresh" json:"refresh,omitempty"`
  56. }
  57. func (m *AllocationStrategy) Reset() { *m = AllocationStrategy{} }
  58. func (m *AllocationStrategy) String() string { return proto.CompactTextString(m) }
  59. func (*AllocationStrategy) ProtoMessage() {}
  60. func (*AllocationStrategy) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  61. func (m *AllocationStrategy) GetType() AllocationStrategy_Type {
  62. if m != nil {
  63. return m.Type
  64. }
  65. return AllocationStrategy_Always
  66. }
  67. func (m *AllocationStrategy) GetConcurrency() *AllocationStrategy_AllocationStrategyConcurrency {
  68. if m != nil {
  69. return m.Concurrency
  70. }
  71. return nil
  72. }
  73. func (m *AllocationStrategy) GetRefresh() *AllocationStrategy_AllocationStrategyRefresh {
  74. if m != nil {
  75. return m.Refresh
  76. }
  77. return nil
  78. }
  79. type AllocationStrategy_AllocationStrategyConcurrency struct {
  80. Value uint32 `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
  81. }
  82. func (m *AllocationStrategy_AllocationStrategyConcurrency) Reset() {
  83. *m = AllocationStrategy_AllocationStrategyConcurrency{}
  84. }
  85. func (m *AllocationStrategy_AllocationStrategyConcurrency) String() string {
  86. return proto.CompactTextString(m)
  87. }
  88. func (*AllocationStrategy_AllocationStrategyConcurrency) ProtoMessage() {}
  89. func (*AllocationStrategy_AllocationStrategyConcurrency) Descriptor() ([]byte, []int) {
  90. return fileDescriptor0, []int{1, 0}
  91. }
  92. func (m *AllocationStrategy_AllocationStrategyConcurrency) GetValue() uint32 {
  93. if m != nil {
  94. return m.Value
  95. }
  96. return 0
  97. }
  98. type AllocationStrategy_AllocationStrategyRefresh struct {
  99. Value uint32 `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
  100. }
  101. func (m *AllocationStrategy_AllocationStrategyRefresh) Reset() {
  102. *m = AllocationStrategy_AllocationStrategyRefresh{}
  103. }
  104. func (m *AllocationStrategy_AllocationStrategyRefresh) String() string {
  105. return proto.CompactTextString(m)
  106. }
  107. func (*AllocationStrategy_AllocationStrategyRefresh) ProtoMessage() {}
  108. func (*AllocationStrategy_AllocationStrategyRefresh) Descriptor() ([]byte, []int) {
  109. return fileDescriptor0, []int{1, 1}
  110. }
  111. func (m *AllocationStrategy_AllocationStrategyRefresh) GetValue() uint32 {
  112. if m != nil {
  113. return m.Value
  114. }
  115. return 0
  116. }
  117. type ReceiverConfig struct {
  118. PortRange *v2ray_core_common_net3.PortRange `protobuf:"bytes,1,opt,name=port_range,json=portRange" json:"port_range,omitempty"`
  119. Listen *v2ray_core_common_net.IPOrDomain `protobuf:"bytes,2,opt,name=listen" json:"listen,omitempty"`
  120. AllocationStrategy *AllocationStrategy `protobuf:"bytes,3,opt,name=allocation_strategy,json=allocationStrategy" json:"allocation_strategy,omitempty"`
  121. StreamSettings *v2ray_core_transport_internet.StreamConfig `protobuf:"bytes,4,opt,name=stream_settings,json=streamSettings" json:"stream_settings,omitempty"`
  122. ReceiveOriginalDestination bool `protobuf:"varint,5,opt,name=receive_original_destination,json=receiveOriginalDestination" json:"receive_original_destination,omitempty"`
  123. AllowPassiveConnection bool `protobuf:"varint,6,opt,name=allow_passive_connection,json=allowPassiveConnection" json:"allow_passive_connection,omitempty"`
  124. }
  125. func (m *ReceiverConfig) Reset() { *m = ReceiverConfig{} }
  126. func (m *ReceiverConfig) String() string { return proto.CompactTextString(m) }
  127. func (*ReceiverConfig) ProtoMessage() {}
  128. func (*ReceiverConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  129. func (m *ReceiverConfig) GetPortRange() *v2ray_core_common_net3.PortRange {
  130. if m != nil {
  131. return m.PortRange
  132. }
  133. return nil
  134. }
  135. func (m *ReceiverConfig) GetListen() *v2ray_core_common_net.IPOrDomain {
  136. if m != nil {
  137. return m.Listen
  138. }
  139. return nil
  140. }
  141. func (m *ReceiverConfig) GetAllocationStrategy() *AllocationStrategy {
  142. if m != nil {
  143. return m.AllocationStrategy
  144. }
  145. return nil
  146. }
  147. func (m *ReceiverConfig) GetStreamSettings() *v2ray_core_transport_internet.StreamConfig {
  148. if m != nil {
  149. return m.StreamSettings
  150. }
  151. return nil
  152. }
  153. func (m *ReceiverConfig) GetReceiveOriginalDestination() bool {
  154. if m != nil {
  155. return m.ReceiveOriginalDestination
  156. }
  157. return false
  158. }
  159. func (m *ReceiverConfig) GetAllowPassiveConnection() bool {
  160. if m != nil {
  161. return m.AllowPassiveConnection
  162. }
  163. return false
  164. }
  165. type InboundHandlerConfig struct {
  166. Tag string `protobuf:"bytes,1,opt,name=tag" json:"tag,omitempty"`
  167. ReceiverSettings *v2ray_core_common_serial.TypedMessage `protobuf:"bytes,2,opt,name=receiver_settings,json=receiverSettings" json:"receiver_settings,omitempty"`
  168. ProxySettings *v2ray_core_common_serial.TypedMessage `protobuf:"bytes,3,opt,name=proxy_settings,json=proxySettings" json:"proxy_settings,omitempty"`
  169. }
  170. func (m *InboundHandlerConfig) Reset() { *m = InboundHandlerConfig{} }
  171. func (m *InboundHandlerConfig) String() string { return proto.CompactTextString(m) }
  172. func (*InboundHandlerConfig) ProtoMessage() {}
  173. func (*InboundHandlerConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  174. func (m *InboundHandlerConfig) GetTag() string {
  175. if m != nil {
  176. return m.Tag
  177. }
  178. return ""
  179. }
  180. func (m *InboundHandlerConfig) GetReceiverSettings() *v2ray_core_common_serial.TypedMessage {
  181. if m != nil {
  182. return m.ReceiverSettings
  183. }
  184. return nil
  185. }
  186. func (m *InboundHandlerConfig) GetProxySettings() *v2ray_core_common_serial.TypedMessage {
  187. if m != nil {
  188. return m.ProxySettings
  189. }
  190. return nil
  191. }
  192. type OutboundConfig struct {
  193. }
  194. func (m *OutboundConfig) Reset() { *m = OutboundConfig{} }
  195. func (m *OutboundConfig) String() string { return proto.CompactTextString(m) }
  196. func (*OutboundConfig) ProtoMessage() {}
  197. func (*OutboundConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  198. type SenderConfig struct {
  199. // Send traffic through the given IP. Only IP is allowed.
  200. Via *v2ray_core_common_net.IPOrDomain `protobuf:"bytes,1,opt,name=via" json:"via,omitempty"`
  201. StreamSettings *v2ray_core_transport_internet.StreamConfig `protobuf:"bytes,2,opt,name=stream_settings,json=streamSettings" json:"stream_settings,omitempty"`
  202. ProxySettings *v2ray_core_transport_internet.ProxyConfig `protobuf:"bytes,3,opt,name=proxy_settings,json=proxySettings" json:"proxy_settings,omitempty"`
  203. }
  204. func (m *SenderConfig) Reset() { *m = SenderConfig{} }
  205. func (m *SenderConfig) String() string { return proto.CompactTextString(m) }
  206. func (*SenderConfig) ProtoMessage() {}
  207. func (*SenderConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  208. func (m *SenderConfig) GetVia() *v2ray_core_common_net.IPOrDomain {
  209. if m != nil {
  210. return m.Via
  211. }
  212. return nil
  213. }
  214. func (m *SenderConfig) GetStreamSettings() *v2ray_core_transport_internet.StreamConfig {
  215. if m != nil {
  216. return m.StreamSettings
  217. }
  218. return nil
  219. }
  220. func (m *SenderConfig) GetProxySettings() *v2ray_core_transport_internet.ProxyConfig {
  221. if m != nil {
  222. return m.ProxySettings
  223. }
  224. return nil
  225. }
  226. type OutboundHandlerConfig struct {
  227. Tag string `protobuf:"bytes,1,opt,name=tag" json:"tag,omitempty"`
  228. SenderSettings *v2ray_core_common_serial.TypedMessage `protobuf:"bytes,2,opt,name=sender_settings,json=senderSettings" json:"sender_settings,omitempty"`
  229. ProxySettings *v2ray_core_common_serial.TypedMessage `protobuf:"bytes,3,opt,name=proxy_settings,json=proxySettings" json:"proxy_settings,omitempty"`
  230. Expire int64 `protobuf:"varint,4,opt,name=expire" json:"expire,omitempty"`
  231. Comment string `protobuf:"bytes,5,opt,name=comment" json:"comment,omitempty"`
  232. }
  233. func (m *OutboundHandlerConfig) Reset() { *m = OutboundHandlerConfig{} }
  234. func (m *OutboundHandlerConfig) String() string { return proto.CompactTextString(m) }
  235. func (*OutboundHandlerConfig) ProtoMessage() {}
  236. func (*OutboundHandlerConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
  237. func (m *OutboundHandlerConfig) GetTag() string {
  238. if m != nil {
  239. return m.Tag
  240. }
  241. return ""
  242. }
  243. func (m *OutboundHandlerConfig) GetSenderSettings() *v2ray_core_common_serial.TypedMessage {
  244. if m != nil {
  245. return m.SenderSettings
  246. }
  247. return nil
  248. }
  249. func (m *OutboundHandlerConfig) GetProxySettings() *v2ray_core_common_serial.TypedMessage {
  250. if m != nil {
  251. return m.ProxySettings
  252. }
  253. return nil
  254. }
  255. func (m *OutboundHandlerConfig) GetExpire() int64 {
  256. if m != nil {
  257. return m.Expire
  258. }
  259. return 0
  260. }
  261. func (m *OutboundHandlerConfig) GetComment() string {
  262. if m != nil {
  263. return m.Comment
  264. }
  265. return ""
  266. }
  267. type MultiplexingConfig struct {
  268. Enabled bool `protobuf:"varint,1,opt,name=enabled" json:"enabled,omitempty"`
  269. }
  270. func (m *MultiplexingConfig) Reset() { *m = MultiplexingConfig{} }
  271. func (m *MultiplexingConfig) String() string { return proto.CompactTextString(m) }
  272. func (*MultiplexingConfig) ProtoMessage() {}
  273. func (*MultiplexingConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
  274. func (m *MultiplexingConfig) GetEnabled() bool {
  275. if m != nil {
  276. return m.Enabled
  277. }
  278. return false
  279. }
  280. type DispatchConfig struct {
  281. MuxSettings *MultiplexingConfig `protobuf:"bytes,1,opt,name=mux_settings,json=muxSettings" json:"mux_settings,omitempty"`
  282. }
  283. func (m *DispatchConfig) Reset() { *m = DispatchConfig{} }
  284. func (m *DispatchConfig) String() string { return proto.CompactTextString(m) }
  285. func (*DispatchConfig) ProtoMessage() {}
  286. func (*DispatchConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
  287. func (m *DispatchConfig) GetMuxSettings() *MultiplexingConfig {
  288. if m != nil {
  289. return m.MuxSettings
  290. }
  291. return nil
  292. }
  293. type SessionFrame struct {
  294. Id uint32 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
  295. Target *v2ray_core_common_net2.Endpoint `protobuf:"bytes,2,opt,name=target" json:"target,omitempty"`
  296. Payload []byte `protobuf:"bytes,3,opt,name=payload,proto3" json:"payload,omitempty"`
  297. }
  298. func (m *SessionFrame) Reset() { *m = SessionFrame{} }
  299. func (m *SessionFrame) String() string { return proto.CompactTextString(m) }
  300. func (*SessionFrame) ProtoMessage() {}
  301. func (*SessionFrame) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
  302. func (m *SessionFrame) GetId() uint32 {
  303. if m != nil {
  304. return m.Id
  305. }
  306. return 0
  307. }
  308. func (m *SessionFrame) GetTarget() *v2ray_core_common_net2.Endpoint {
  309. if m != nil {
  310. return m.Target
  311. }
  312. return nil
  313. }
  314. func (m *SessionFrame) GetPayload() []byte {
  315. if m != nil {
  316. return m.Payload
  317. }
  318. return nil
  319. }
  320. func init() {
  321. proto.RegisterType((*InboundConfig)(nil), "v2ray.core.app.proxyman.InboundConfig")
  322. proto.RegisterType((*AllocationStrategy)(nil), "v2ray.core.app.proxyman.AllocationStrategy")
  323. proto.RegisterType((*AllocationStrategy_AllocationStrategyConcurrency)(nil), "v2ray.core.app.proxyman.AllocationStrategy.AllocationStrategyConcurrency")
  324. proto.RegisterType((*AllocationStrategy_AllocationStrategyRefresh)(nil), "v2ray.core.app.proxyman.AllocationStrategy.AllocationStrategyRefresh")
  325. proto.RegisterType((*ReceiverConfig)(nil), "v2ray.core.app.proxyman.ReceiverConfig")
  326. proto.RegisterType((*InboundHandlerConfig)(nil), "v2ray.core.app.proxyman.InboundHandlerConfig")
  327. proto.RegisterType((*OutboundConfig)(nil), "v2ray.core.app.proxyman.OutboundConfig")
  328. proto.RegisterType((*SenderConfig)(nil), "v2ray.core.app.proxyman.SenderConfig")
  329. proto.RegisterType((*OutboundHandlerConfig)(nil), "v2ray.core.app.proxyman.OutboundHandlerConfig")
  330. proto.RegisterType((*MultiplexingConfig)(nil), "v2ray.core.app.proxyman.MultiplexingConfig")
  331. proto.RegisterType((*DispatchConfig)(nil), "v2ray.core.app.proxyman.DispatchConfig")
  332. proto.RegisterType((*SessionFrame)(nil), "v2ray.core.app.proxyman.SessionFrame")
  333. proto.RegisterEnum("v2ray.core.app.proxyman.AllocationStrategy_Type", AllocationStrategy_Type_name, AllocationStrategy_Type_value)
  334. }
  335. func init() { proto.RegisterFile("v2ray.com/core/app/proxyman/config.proto", fileDescriptor0) }
  336. var fileDescriptor0 = []byte{
  337. // 846 bytes of a gzipped FileDescriptorProto
  338. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x55, 0xdd, 0x6e, 0x23, 0x35,
  339. 0x18, 0x65, 0x92, 0x6e, 0xda, 0x7e, 0x6d, 0xd3, 0x60, 0x96, 0xdd, 0x10, 0x40, 0x94, 0x08, 0x41,
  340. 0xc5, 0xa2, 0xc9, 0x92, 0x15, 0x02, 0xae, 0xa0, 0xa4, 0x45, 0xf4, 0xa2, 0x34, 0x38, 0x2b, 0x2e,
  341. 0x10, 0x52, 0x70, 0x67, 0xbc, 0xb3, 0x16, 0x33, 0xb6, 0xb1, 0x9d, 0x6e, 0xe6, 0x95, 0x78, 0x06,
  342. 0x2e, 0x78, 0x00, 0x1e, 0x85, 0x37, 0xe0, 0x06, 0xf9, 0x67, 0x92, 0xa8, 0xc9, 0x50, 0xca, 0x8a,
  343. 0xbb, 0x71, 0x7c, 0xce, 0xb1, 0xcf, 0x77, 0xbe, 0xcf, 0x81, 0xe3, 0xeb, 0xa1, 0x22, 0x65, 0x9c,
  344. 0x88, 0x62, 0x90, 0x08, 0x45, 0x07, 0x44, 0xca, 0x81, 0x54, 0x62, 0x5e, 0x16, 0x84, 0x0f, 0x12,
  345. 0xc1, 0x9f, 0xb1, 0x2c, 0x96, 0x4a, 0x18, 0x81, 0x1e, 0x56, 0x48, 0x45, 0x63, 0x22, 0x65, 0x5c,
  346. 0xa1, 0x7a, 0x8f, 0x6f, 0x48, 0x24, 0xa2, 0x28, 0x04, 0x1f, 0x68, 0xaa, 0x18, 0xc9, 0x07, 0xa6,
  347. 0x94, 0x34, 0x9d, 0x16, 0x54, 0x6b, 0x92, 0x51, 0x2f, 0xd5, 0xfb, 0x60, 0x33, 0x83, 0x53, 0x33,
  348. 0x20, 0x69, 0xaa, 0xa8, 0xd6, 0x01, 0xf8, 0xa8, 0x1e, 0x98, 0x52, 0x6d, 0x18, 0x27, 0x86, 0x09,
  349. 0x1e, 0xc0, 0xef, 0xd5, 0x83, 0xa5, 0x50, 0x26, 0xa0, 0xe2, 0x1b, 0x28, 0xa3, 0x08, 0xd7, 0x76,
  350. 0x7f, 0xc0, 0xb8, 0xa1, 0xca, 0xa2, 0x57, 0x6d, 0xf7, 0x0f, 0xe1, 0xe0, 0x9c, 0x5f, 0x89, 0x19,
  351. 0x4f, 0x47, 0xee, 0xe7, 0xfe, 0xef, 0x4d, 0x40, 0x27, 0x79, 0x2e, 0x12, 0x77, 0xf6, 0xc4, 0x28,
  352. 0x62, 0x68, 0x56, 0xa2, 0x53, 0xd8, 0xb2, 0x56, 0xbb, 0xd1, 0x51, 0x74, 0xdc, 0x1e, 0x3e, 0x8e,
  353. 0x6b, 0xaa, 0x15, 0xaf, 0x53, 0xe3, 0xa7, 0xa5, 0xa4, 0xd8, 0xb1, 0xd1, 0xcf, 0xb0, 0x97, 0x08,
  354. 0x9e, 0xcc, 0x94, 0xa2, 0x3c, 0x29, 0xbb, 0x8d, 0xa3, 0xe8, 0x78, 0x6f, 0x78, 0x7e, 0x17, 0xb1,
  355. 0xf5, 0x9f, 0x46, 0x4b, 0x41, 0xbc, 0xaa, 0x8e, 0xa6, 0xb0, 0xad, 0xe8, 0x33, 0x45, 0xf5, 0xf3,
  356. 0x6e, 0xd3, 0x1d, 0x74, 0xf6, 0x72, 0x07, 0x61, 0x2f, 0x86, 0x2b, 0xd5, 0xde, 0x27, 0xf0, 0xf6,
  357. 0x3f, 0x5e, 0x07, 0xdd, 0x87, 0x7b, 0xd7, 0x24, 0x9f, 0xf9, 0xaa, 0x1d, 0x60, 0xbf, 0xe8, 0x7d,
  358. 0x0c, 0x6f, 0xd4, 0x8a, 0x6f, 0xa6, 0xf4, 0x3f, 0x82, 0x2d, 0x5b, 0x45, 0x04, 0xd0, 0x3a, 0xc9,
  359. 0x5f, 0x90, 0x52, 0x77, 0x5e, 0xb1, 0xdf, 0x98, 0xf0, 0x54, 0x14, 0x9d, 0x08, 0xed, 0xc3, 0xce,
  360. 0xd9, 0xdc, 0xc6, 0x4b, 0xf2, 0x4e, 0xa3, 0xff, 0x5b, 0x13, 0xda, 0x98, 0x26, 0x94, 0x5d, 0x53,
  361. 0xe5, 0x53, 0x45, 0x5f, 0x00, 0xd8, 0x26, 0x98, 0x2a, 0xc2, 0x33, 0xaf, 0xbd, 0x37, 0x3c, 0x5a,
  362. 0x2d, 0x87, 0xef, 0xa6, 0x98, 0x53, 0x13, 0x8f, 0x85, 0x32, 0xd8, 0xe2, 0xf0, 0xae, 0xac, 0x3e,
  363. 0xd1, 0xe7, 0xd0, 0xca, 0x99, 0x36, 0x94, 0x87, 0xd0, 0xde, 0xad, 0x21, 0x9f, 0x8f, 0x2f, 0xd5,
  364. 0xa9, 0x28, 0x08, 0xe3, 0x38, 0x10, 0xd0, 0x8f, 0xf0, 0x1a, 0x59, 0xf8, 0x9d, 0xea, 0x60, 0x38,
  365. 0x64, 0xf2, 0xe8, 0x0e, 0x99, 0x60, 0x44, 0xd6, 0x1b, 0xf3, 0x29, 0x1c, 0x6a, 0xa3, 0x28, 0x29,
  366. 0xa6, 0x9a, 0x1a, 0xc3, 0x78, 0xa6, 0xbb, 0x5b, 0xeb, 0xca, 0x8b, 0x31, 0x88, 0xab, 0x31, 0x88,
  367. 0x27, 0x8e, 0xe5, 0xeb, 0x83, 0xdb, 0x5e, 0x63, 0x12, 0x24, 0xd0, 0x97, 0xf0, 0x96, 0xf2, 0x15,
  368. 0x9c, 0x0a, 0xc5, 0x32, 0xc6, 0x49, 0x3e, 0x5d, 0x19, 0xc9, 0xee, 0xbd, 0xa3, 0xe8, 0x78, 0x07,
  369. 0xf7, 0x02, 0xe6, 0x32, 0x40, 0x4e, 0x97, 0x08, 0xf4, 0x19, 0x74, 0xed, 0x6d, 0x5f, 0x4c, 0x25,
  370. 0xd1, 0xda, 0xea, 0x24, 0x82, 0x73, 0x9a, 0x38, 0x76, 0xcb, 0xb1, 0x1f, 0xb8, 0xfd, 0xb1, 0xdf,
  371. 0x1e, 0x2d, 0x76, 0xfb, 0x7f, 0x44, 0x70, 0x3f, 0xcc, 0xe4, 0x37, 0x84, 0xa7, 0xf9, 0x22, 0xc4,
  372. 0x0e, 0x34, 0x0d, 0xc9, 0x5c, 0x7a, 0xbb, 0xd8, 0x7e, 0xa2, 0x09, 0xbc, 0x1a, 0xae, 0xa0, 0x96,
  373. 0xf6, 0x7d, 0x40, 0xef, 0x6f, 0x08, 0xc8, 0xbf, 0x59, 0x6e, 0x20, 0xd3, 0x0b, 0xff, 0x64, 0xe1,
  374. 0x4e, 0x25, 0xb0, 0xf0, 0x7e, 0x01, 0x6d, 0x17, 0xc2, 0x52, 0xb1, 0x79, 0x27, 0xc5, 0x03, 0xc7,
  375. 0xae, 0xe4, 0xfa, 0x1d, 0x68, 0x5f, 0xce, 0xcc, 0xea, 0x13, 0xf3, 0x67, 0x04, 0xfb, 0x13, 0xca,
  376. 0xd3, 0x85, 0xb1, 0x27, 0xd0, 0xbc, 0x66, 0x24, 0xb4, 0xe5, 0xbf, 0xe8, 0x2c, 0x8b, 0xde, 0x14,
  377. 0x7c, 0xe3, 0xe5, 0x83, 0xff, 0xae, 0xc6, 0xfc, 0x87, 0xb7, 0x88, 0x8e, 0x2d, 0x29, 0x68, 0xde,
  378. 0x28, 0xc0, 0x5f, 0x11, 0xbc, 0x5e, 0x55, 0xe0, 0xb6, 0x40, 0x2f, 0xe1, 0x50, 0xbb, 0xca, 0xfc,
  379. 0xd7, 0x38, 0xdb, 0x9e, 0xfe, 0x3f, 0x85, 0x89, 0x1e, 0x40, 0x8b, 0xce, 0x25, 0x53, 0xd4, 0x0d,
  380. 0x59, 0x13, 0x87, 0x15, 0xea, 0xc2, 0xb6, 0x15, 0xa1, 0xdc, 0xb8, 0xd1, 0xd8, 0xc5, 0xd5, 0xb2,
  381. 0x1f, 0x03, 0xba, 0x98, 0xe5, 0x86, 0xc9, 0x9c, 0xce, 0x19, 0xcf, 0x82, 0xf3, 0x2e, 0x6c, 0x53,
  382. 0x4e, 0xae, 0x72, 0x9a, 0x3a, 0xf7, 0x3b, 0xb8, 0x5a, 0xf6, 0x7f, 0x82, 0xf6, 0x29, 0xd3, 0x92,
  383. 0x98, 0xe4, 0x79, 0xc0, 0x7e, 0x0b, 0xfb, 0xc5, 0x6c, 0xbe, 0x34, 0x10, 0xdd, 0xf2, 0x70, 0xac,
  384. 0x1f, 0x87, 0xf7, 0x8a, 0xd9, 0x7c, 0x91, 0xc7, 0x2f, 0xb6, 0xfb, 0xb4, 0x66, 0x82, 0x7f, 0xad,
  385. 0x48, 0x41, 0x51, 0x1b, 0x1a, 0x2c, 0x0d, 0xef, 0x6d, 0x83, 0xa5, 0xe8, 0x53, 0x68, 0x19, 0xa2,
  386. 0x32, 0x6a, 0x42, 0xe9, 0xdf, 0xa9, 0x69, 0xc8, 0x33, 0x9e, 0x4a, 0xc1, 0xb8, 0xc1, 0x01, 0x6e,
  387. 0x4d, 0x49, 0x52, 0xe6, 0x82, 0xa4, 0xae, 0xc8, 0xfb, 0xb8, 0x5a, 0x7e, 0x35, 0x82, 0x37, 0x13,
  388. 0x51, 0xd4, 0xdd, 0x78, 0x1c, 0xfd, 0xb0, 0x53, 0x7d, 0xff, 0xda, 0x78, 0xf8, 0xfd, 0x10, 0x93,
  389. 0x32, 0x1e, 0x59, 0xd4, 0x89, 0x94, 0xbe, 0xb3, 0x0a, 0xc2, 0xaf, 0x5a, 0xee, 0x1f, 0xfb, 0xc9,
  390. 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xa8, 0xcf, 0x2c, 0xca, 0xd4, 0x08, 0x00, 0x00,
  391. }