config.pb.go 19 KB

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