config.pb.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  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 AllocationStrategy_Type int32
  19. const (
  20. // Always allocate all connection handlers.
  21. AllocationStrategy_Always AllocationStrategy_Type = 0
  22. // Randomly allocate specific range of handlers.
  23. AllocationStrategy_Random AllocationStrategy_Type = 1
  24. // External. Not supported yet.
  25. AllocationStrategy_External AllocationStrategy_Type = 2
  26. )
  27. var AllocationStrategy_Type_name = map[int32]string{
  28. 0: "Always",
  29. 1: "Random",
  30. 2: "External",
  31. }
  32. var AllocationStrategy_Type_value = map[string]int32{
  33. "Always": 0,
  34. "Random": 1,
  35. "External": 2,
  36. }
  37. func (x AllocationStrategy_Type) String() string {
  38. return proto.EnumName(AllocationStrategy_Type_name, int32(x))
  39. }
  40. func (AllocationStrategy_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{1, 0} }
  41. type InboundConfig struct {
  42. }
  43. func (m *InboundConfig) Reset() { *m = InboundConfig{} }
  44. func (m *InboundConfig) String() string { return proto.CompactTextString(m) }
  45. func (*InboundConfig) ProtoMessage() {}
  46. func (*InboundConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  47. type AllocationStrategy struct {
  48. Type AllocationStrategy_Type `protobuf:"varint,1,opt,name=type,enum=v2ray.core.app.proxyman.AllocationStrategy_Type" json:"type,omitempty"`
  49. // Number of handlers (ports) running in parallel.
  50. // Default value is 3 if unset.
  51. Concurrency *AllocationStrategy_AllocationStrategyConcurrency `protobuf:"bytes,2,opt,name=concurrency" json:"concurrency,omitempty"`
  52. // Number of minutes before a handler is regenerated.
  53. // Default value is 5 if unset.
  54. Refresh *AllocationStrategy_AllocationStrategyRefresh `protobuf:"bytes,3,opt,name=refresh" json:"refresh,omitempty"`
  55. }
  56. func (m *AllocationStrategy) Reset() { *m = AllocationStrategy{} }
  57. func (m *AllocationStrategy) String() string { return proto.CompactTextString(m) }
  58. func (*AllocationStrategy) ProtoMessage() {}
  59. func (*AllocationStrategy) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  60. func (m *AllocationStrategy) GetType() AllocationStrategy_Type {
  61. if m != nil {
  62. return m.Type
  63. }
  64. return AllocationStrategy_Always
  65. }
  66. func (m *AllocationStrategy) GetConcurrency() *AllocationStrategy_AllocationStrategyConcurrency {
  67. if m != nil {
  68. return m.Concurrency
  69. }
  70. return nil
  71. }
  72. func (m *AllocationStrategy) GetRefresh() *AllocationStrategy_AllocationStrategyRefresh {
  73. if m != nil {
  74. return m.Refresh
  75. }
  76. return nil
  77. }
  78. type AllocationStrategy_AllocationStrategyConcurrency struct {
  79. Value uint32 `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
  80. }
  81. func (m *AllocationStrategy_AllocationStrategyConcurrency) Reset() {
  82. *m = AllocationStrategy_AllocationStrategyConcurrency{}
  83. }
  84. func (m *AllocationStrategy_AllocationStrategyConcurrency) String() string {
  85. return proto.CompactTextString(m)
  86. }
  87. func (*AllocationStrategy_AllocationStrategyConcurrency) ProtoMessage() {}
  88. func (*AllocationStrategy_AllocationStrategyConcurrency) Descriptor() ([]byte, []int) {
  89. return fileDescriptor0, []int{1, 0}
  90. }
  91. func (m *AllocationStrategy_AllocationStrategyConcurrency) GetValue() uint32 {
  92. if m != nil {
  93. return m.Value
  94. }
  95. return 0
  96. }
  97. type AllocationStrategy_AllocationStrategyRefresh struct {
  98. Value uint32 `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
  99. }
  100. func (m *AllocationStrategy_AllocationStrategyRefresh) Reset() {
  101. *m = AllocationStrategy_AllocationStrategyRefresh{}
  102. }
  103. func (m *AllocationStrategy_AllocationStrategyRefresh) String() string {
  104. return proto.CompactTextString(m)
  105. }
  106. func (*AllocationStrategy_AllocationStrategyRefresh) ProtoMessage() {}
  107. func (*AllocationStrategy_AllocationStrategyRefresh) Descriptor() ([]byte, []int) {
  108. return fileDescriptor0, []int{1, 1}
  109. }
  110. func (m *AllocationStrategy_AllocationStrategyRefresh) GetValue() uint32 {
  111. if m != nil {
  112. return m.Value
  113. }
  114. return 0
  115. }
  116. type ReceiverConfig struct {
  117. PortRange *v2ray_core_common_net1.PortRange `protobuf:"bytes,1,opt,name=port_range,json=portRange" json:"port_range,omitempty"`
  118. Listen *v2ray_core_common_net.IPOrDomain `protobuf:"bytes,2,opt,name=listen" json:"listen,omitempty"`
  119. AllocationStrategy *AllocationStrategy `protobuf:"bytes,3,opt,name=allocation_strategy,json=allocationStrategy" json:"allocation_strategy,omitempty"`
  120. StreamSettings *v2ray_core_transport_internet.StreamConfig `protobuf:"bytes,4,opt,name=stream_settings,json=streamSettings" json:"stream_settings,omitempty"`
  121. ReceiveOriginalDestination bool `protobuf:"varint,5,opt,name=receive_original_destination,json=receiveOriginalDestination" json:"receive_original_destination,omitempty"`
  122. AllowPassiveConnection bool `protobuf:"varint,6,opt,name=allow_passive_connection,json=allowPassiveConnection" json:"allow_passive_connection,omitempty"`
  123. }
  124. func (m *ReceiverConfig) Reset() { *m = ReceiverConfig{} }
  125. func (m *ReceiverConfig) String() string { return proto.CompactTextString(m) }
  126. func (*ReceiverConfig) ProtoMessage() {}
  127. func (*ReceiverConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  128. func (m *ReceiverConfig) GetPortRange() *v2ray_core_common_net1.PortRange {
  129. if m != nil {
  130. return m.PortRange
  131. }
  132. return nil
  133. }
  134. func (m *ReceiverConfig) GetListen() *v2ray_core_common_net.IPOrDomain {
  135. if m != nil {
  136. return m.Listen
  137. }
  138. return nil
  139. }
  140. func (m *ReceiverConfig) GetAllocationStrategy() *AllocationStrategy {
  141. if m != nil {
  142. return m.AllocationStrategy
  143. }
  144. return nil
  145. }
  146. func (m *ReceiverConfig) GetStreamSettings() *v2ray_core_transport_internet.StreamConfig {
  147. if m != nil {
  148. return m.StreamSettings
  149. }
  150. return nil
  151. }
  152. func (m *ReceiverConfig) GetReceiveOriginalDestination() bool {
  153. if m != nil {
  154. return m.ReceiveOriginalDestination
  155. }
  156. return false
  157. }
  158. func (m *ReceiverConfig) GetAllowPassiveConnection() bool {
  159. if m != nil {
  160. return m.AllowPassiveConnection
  161. }
  162. return false
  163. }
  164. type InboundHandlerConfig struct {
  165. Tag string `protobuf:"bytes,1,opt,name=tag" json:"tag,omitempty"`
  166. ReceiverSettings *v2ray_core_common_serial.TypedMessage `protobuf:"bytes,2,opt,name=receiver_settings,json=receiverSettings" json:"receiver_settings,omitempty"`
  167. ProxySettings *v2ray_core_common_serial.TypedMessage `protobuf:"bytes,3,opt,name=proxy_settings,json=proxySettings" json:"proxy_settings,omitempty"`
  168. }
  169. func (m *InboundHandlerConfig) Reset() { *m = InboundHandlerConfig{} }
  170. func (m *InboundHandlerConfig) String() string { return proto.CompactTextString(m) }
  171. func (*InboundHandlerConfig) ProtoMessage() {}
  172. func (*InboundHandlerConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  173. func (m *InboundHandlerConfig) GetTag() string {
  174. if m != nil {
  175. return m.Tag
  176. }
  177. return ""
  178. }
  179. func (m *InboundHandlerConfig) GetReceiverSettings() *v2ray_core_common_serial.TypedMessage {
  180. if m != nil {
  181. return m.ReceiverSettings
  182. }
  183. return nil
  184. }
  185. func (m *InboundHandlerConfig) GetProxySettings() *v2ray_core_common_serial.TypedMessage {
  186. if m != nil {
  187. return m.ProxySettings
  188. }
  189. return nil
  190. }
  191. type OutboundConfig struct {
  192. }
  193. func (m *OutboundConfig) Reset() { *m = OutboundConfig{} }
  194. func (m *OutboundConfig) String() string { return proto.CompactTextString(m) }
  195. func (*OutboundConfig) ProtoMessage() {}
  196. func (*OutboundConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  197. type SenderConfig struct {
  198. // Send traffic through the given IP. Only IP is allowed.
  199. Via *v2ray_core_common_net.IPOrDomain `protobuf:"bytes,1,opt,name=via" json:"via,omitempty"`
  200. StreamSettings *v2ray_core_transport_internet.StreamConfig `protobuf:"bytes,2,opt,name=stream_settings,json=streamSettings" json:"stream_settings,omitempty"`
  201. ProxySettings *v2ray_core_transport_internet.ProxyConfig `protobuf:"bytes,3,opt,name=proxy_settings,json=proxySettings" json:"proxy_settings,omitempty"`
  202. }
  203. func (m *SenderConfig) Reset() { *m = SenderConfig{} }
  204. func (m *SenderConfig) String() string { return proto.CompactTextString(m) }
  205. func (*SenderConfig) ProtoMessage() {}
  206. func (*SenderConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  207. func (m *SenderConfig) GetVia() *v2ray_core_common_net.IPOrDomain {
  208. if m != nil {
  209. return m.Via
  210. }
  211. return nil
  212. }
  213. func (m *SenderConfig) GetStreamSettings() *v2ray_core_transport_internet.StreamConfig {
  214. if m != nil {
  215. return m.StreamSettings
  216. }
  217. return nil
  218. }
  219. func (m *SenderConfig) GetProxySettings() *v2ray_core_transport_internet.ProxyConfig {
  220. if m != nil {
  221. return m.ProxySettings
  222. }
  223. return nil
  224. }
  225. type OutboundHandlerConfig struct {
  226. Tag string `protobuf:"bytes,1,opt,name=tag" json:"tag,omitempty"`
  227. SenderSettings *v2ray_core_common_serial.TypedMessage `protobuf:"bytes,2,opt,name=sender_settings,json=senderSettings" json:"sender_settings,omitempty"`
  228. ProxySettings *v2ray_core_common_serial.TypedMessage `protobuf:"bytes,3,opt,name=proxy_settings,json=proxySettings" json:"proxy_settings,omitempty"`
  229. Expire int64 `protobuf:"varint,4,opt,name=expire" json:"expire,omitempty"`
  230. Comment string `protobuf:"bytes,5,opt,name=comment" json:"comment,omitempty"`
  231. }
  232. func (m *OutboundHandlerConfig) Reset() { *m = OutboundHandlerConfig{} }
  233. func (m *OutboundHandlerConfig) String() string { return proto.CompactTextString(m) }
  234. func (*OutboundHandlerConfig) ProtoMessage() {}
  235. func (*OutboundHandlerConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
  236. func (m *OutboundHandlerConfig) GetTag() string {
  237. if m != nil {
  238. return m.Tag
  239. }
  240. return ""
  241. }
  242. func (m *OutboundHandlerConfig) GetSenderSettings() *v2ray_core_common_serial.TypedMessage {
  243. if m != nil {
  244. return m.SenderSettings
  245. }
  246. return nil
  247. }
  248. func (m *OutboundHandlerConfig) GetProxySettings() *v2ray_core_common_serial.TypedMessage {
  249. if m != nil {
  250. return m.ProxySettings
  251. }
  252. return nil
  253. }
  254. func (m *OutboundHandlerConfig) GetExpire() int64 {
  255. if m != nil {
  256. return m.Expire
  257. }
  258. return 0
  259. }
  260. func (m *OutboundHandlerConfig) GetComment() string {
  261. if m != nil {
  262. return m.Comment
  263. }
  264. return ""
  265. }
  266. func init() {
  267. proto.RegisterType((*InboundConfig)(nil), "v2ray.core.app.proxyman.InboundConfig")
  268. proto.RegisterType((*AllocationStrategy)(nil), "v2ray.core.app.proxyman.AllocationStrategy")
  269. proto.RegisterType((*AllocationStrategy_AllocationStrategyConcurrency)(nil), "v2ray.core.app.proxyman.AllocationStrategy.AllocationStrategyConcurrency")
  270. proto.RegisterType((*AllocationStrategy_AllocationStrategyRefresh)(nil), "v2ray.core.app.proxyman.AllocationStrategy.AllocationStrategyRefresh")
  271. proto.RegisterType((*ReceiverConfig)(nil), "v2ray.core.app.proxyman.ReceiverConfig")
  272. proto.RegisterType((*InboundHandlerConfig)(nil), "v2ray.core.app.proxyman.InboundHandlerConfig")
  273. proto.RegisterType((*OutboundConfig)(nil), "v2ray.core.app.proxyman.OutboundConfig")
  274. proto.RegisterType((*SenderConfig)(nil), "v2ray.core.app.proxyman.SenderConfig")
  275. proto.RegisterType((*OutboundHandlerConfig)(nil), "v2ray.core.app.proxyman.OutboundHandlerConfig")
  276. proto.RegisterEnum("v2ray.core.app.proxyman.AllocationStrategy_Type", AllocationStrategy_Type_name, AllocationStrategy_Type_value)
  277. }
  278. func init() { proto.RegisterFile("v2ray.com/core/app/proxyman/config.proto", fileDescriptor0) }
  279. var fileDescriptor0 = []byte{
  280. // 737 bytes of a gzipped FileDescriptorProto
  281. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x55, 0xd1, 0x6e, 0xdb, 0x36,
  282. 0x14, 0x9d, 0xec, 0xc4, 0x49, 0xae, 0x13, 0xc7, 0xe3, 0xb2, 0xc4, 0xf3, 0x36, 0xc0, 0x33, 0x86,
  283. 0xcd, 0xd8, 0x06, 0x29, 0x73, 0x30, 0x60, 0x7b, 0xda, 0x12, 0x27, 0xc0, 0xf2, 0x90, 0xd9, 0xa3,
  284. 0x83, 0x3e, 0x14, 0x05, 0x04, 0x46, 0x62, 0x5c, 0xa1, 0x12, 0x29, 0x90, 0xb4, 0x13, 0xfd, 0x52,
  285. 0xbf, 0xa1, 0x0f, 0xfd, 0x80, 0x7e, 0x4a, 0xff, 0xa0, 0x2f, 0x05, 0x49, 0xc9, 0x36, 0x62, 0xbb,
  286. 0x69, 0x1a, 0xf4, 0x4d, 0x24, 0xcf, 0x39, 0xe4, 0x3d, 0x87, 0x97, 0x82, 0xce, 0xa4, 0x2b, 0x48,
  287. 0xe6, 0x06, 0x3c, 0xf1, 0x02, 0x2e, 0xa8, 0x47, 0xd2, 0xd4, 0x4b, 0x05, 0xbf, 0xcd, 0x12, 0xc2,
  288. 0xbc, 0x80, 0xb3, 0xeb, 0x68, 0xe4, 0xa6, 0x82, 0x2b, 0x8e, 0x0e, 0x0a, 0xa4, 0xa0, 0x2e, 0x49,
  289. 0x53, 0xb7, 0x40, 0x35, 0x0f, 0xef, 0x48, 0x04, 0x3c, 0x49, 0x38, 0xf3, 0x24, 0x15, 0x11, 0x89,
  290. 0x3d, 0x95, 0xa5, 0x34, 0xf4, 0x13, 0x2a, 0x25, 0x19, 0x51, 0x2b, 0xd5, 0xfc, 0x79, 0x39, 0x83,
  291. 0x51, 0xe5, 0x91, 0x30, 0x14, 0x54, 0xca, 0x1c, 0xf8, 0xe3, 0x6a, 0x60, 0xca, 0x85, 0xca, 0x51,
  292. 0xee, 0x1d, 0x94, 0x12, 0x84, 0x49, 0xbd, 0xee, 0x45, 0x4c, 0x51, 0xa1, 0xd1, 0xf3, 0x95, 0xb4,
  293. 0x77, 0x61, 0xe7, 0x9c, 0x5d, 0xf1, 0x31, 0x0b, 0x7b, 0x66, 0xba, 0xfd, 0xba, 0x0c, 0xe8, 0x38,
  294. 0x8e, 0x79, 0x40, 0x54, 0xc4, 0xd9, 0x50, 0x09, 0xa2, 0xe8, 0x28, 0x43, 0xa7, 0xb0, 0xa6, 0x4f,
  295. 0xdf, 0x70, 0x5a, 0x4e, 0xa7, 0xd6, 0x3d, 0x74, 0x57, 0x18, 0xe0, 0x2e, 0x52, 0xdd, 0xcb, 0x2c,
  296. 0xa5, 0xd8, 0xb0, 0xd1, 0x0b, 0xa8, 0x06, 0x9c, 0x05, 0x63, 0x21, 0x28, 0x0b, 0xb2, 0x46, 0xa9,
  297. 0xe5, 0x74, 0xaa, 0xdd, 0xf3, 0x87, 0x88, 0x2d, 0x4e, 0xf5, 0x66, 0x82, 0x78, 0x5e, 0x1d, 0xf9,
  298. 0xb0, 0x21, 0xe8, 0xb5, 0xa0, 0xf2, 0x79, 0xa3, 0x6c, 0x36, 0x3a, 0x7b, 0xdc, 0x46, 0xd8, 0x8a,
  299. 0xe1, 0x42, 0xb5, 0xf9, 0x07, 0x7c, 0xff, 0xc1, 0xe3, 0xa0, 0x3d, 0x58, 0x9f, 0x90, 0x78, 0x6c,
  300. 0x5d, 0xdb, 0xc1, 0x76, 0xd0, 0xfc, 0x1d, 0xbe, 0x59, 0x29, 0xbe, 0x9c, 0xd2, 0xfe, 0x0d, 0xd6,
  301. 0xb4, 0x8b, 0x08, 0xa0, 0x72, 0x1c, 0xdf, 0x90, 0x4c, 0xd6, 0xbf, 0xd0, 0xdf, 0x98, 0xb0, 0x90,
  302. 0x27, 0x75, 0x07, 0x6d, 0xc3, 0xe6, 0xd9, 0xad, 0x8e, 0x97, 0xc4, 0xf5, 0x52, 0xfb, 0x55, 0x19,
  303. 0x6a, 0x98, 0x06, 0x34, 0x9a, 0x50, 0x61, 0x53, 0x45, 0x7f, 0x03, 0xe8, 0x4b, 0xe0, 0x0b, 0xc2,
  304. 0x46, 0x56, 0xbb, 0xda, 0x6d, 0xcd, 0xdb, 0x61, 0x6f, 0x93, 0xcb, 0xa8, 0x72, 0x07, 0x5c, 0x28,
  305. 0xac, 0x71, 0x78, 0x2b, 0x2d, 0x3e, 0xd1, 0x5f, 0x50, 0x89, 0x23, 0xa9, 0x28, 0xcb, 0x43, 0xfb,
  306. 0x61, 0x05, 0xf9, 0x7c, 0xd0, 0x17, 0xa7, 0x3c, 0x21, 0x11, 0xc3, 0x39, 0x01, 0x3d, 0x83, 0xaf,
  307. 0xc8, 0xb4, 0x5e, 0x5f, 0xe6, 0x05, 0xe7, 0x99, 0xfc, 0xfa, 0x80, 0x4c, 0x30, 0x22, 0x8b, 0x17,
  308. 0xf3, 0x12, 0x76, 0xa5, 0x12, 0x94, 0x24, 0xbe, 0xa4, 0x4a, 0x45, 0x6c, 0x24, 0x1b, 0x6b, 0x8b,
  309. 0xca, 0xd3, 0x36, 0x70, 0x8b, 0x36, 0x70, 0x87, 0x86, 0x65, 0xfd, 0xc1, 0x35, 0xab, 0x31, 0xcc,
  310. 0x25, 0xd0, 0x3f, 0xf0, 0x9d, 0xb0, 0x0e, 0xfa, 0x5c, 0x44, 0xa3, 0x88, 0x91, 0xd8, 0x0f, 0xa9,
  311. 0x54, 0x11, 0x33, 0xbb, 0x37, 0xd6, 0x5b, 0x4e, 0x67, 0x13, 0x37, 0x73, 0x4c, 0x3f, 0x87, 0x9c,
  312. 0xce, 0x10, 0xe8, 0x4f, 0x68, 0xe8, 0xd3, 0xde, 0xf8, 0x29, 0x91, 0x52, 0xeb, 0x04, 0x9c, 0x31,
  313. 0x1a, 0x18, 0x76, 0xc5, 0xb0, 0xf7, 0xcd, 0xfa, 0xc0, 0x2e, 0xf7, 0xa6, 0xab, 0xed, 0x37, 0x0e,
  314. 0xec, 0xe5, 0x3d, 0xf9, 0x2f, 0x61, 0x61, 0x3c, 0x0d, 0xb1, 0x0e, 0x65, 0x45, 0x46, 0x26, 0xbd,
  315. 0x2d, 0xac, 0x3f, 0xd1, 0x10, 0xbe, 0xcc, 0x8f, 0x20, 0x66, 0xe5, 0xdb, 0x80, 0x7e, 0x5a, 0x12,
  316. 0x90, 0x7d, 0x86, 0x4c, 0x43, 0x86, 0x17, 0xf6, 0x15, 0xc2, 0xf5, 0x42, 0x60, 0x5a, 0xfb, 0x05,
  317. 0xd4, 0x4c, 0x08, 0x33, 0xc5, 0xf2, 0x83, 0x14, 0x77, 0x0c, 0xbb, 0x90, 0x6b, 0xd7, 0xa1, 0xd6,
  318. 0x1f, 0xab, 0xf9, 0x27, 0xe6, 0xad, 0x03, 0xdb, 0x43, 0xca, 0xc2, 0x69, 0x61, 0x47, 0x50, 0x9e,
  319. 0x44, 0x24, 0xbf, 0x96, 0x1f, 0x71, 0xb3, 0x34, 0x7a, 0x59, 0xf0, 0xa5, 0xc7, 0x07, 0xff, 0xff,
  320. 0x8a, 0xe2, 0x7f, 0xb9, 0x47, 0x74, 0xa0, 0x49, 0xb9, 0xe6, 0x1d, 0x03, 0xde, 0x39, 0xf0, 0x75,
  321. 0xe1, 0xc0, 0x7d, 0x81, 0xf6, 0x61, 0x57, 0x1a, 0x67, 0x3e, 0x35, 0xce, 0x9a, 0xa5, 0x7f, 0xa6,
  322. 0x30, 0xd1, 0x3e, 0x54, 0xe8, 0x6d, 0x1a, 0x09, 0x6a, 0x9a, 0xac, 0x8c, 0xf3, 0x11, 0x6a, 0xc0,
  323. 0x86, 0x16, 0xa1, 0x4c, 0x99, 0xd6, 0xd8, 0xc2, 0xc5, 0xf0, 0xe4, 0x3f, 0xf8, 0x36, 0xe0, 0xc9,
  324. 0xaa, 0x2e, 0x3f, 0xa9, 0x5a, 0x2b, 0x06, 0xfa, 0x67, 0xf4, 0x74, 0xb3, 0x98, 0x7e, 0x59, 0x3a,
  325. 0x78, 0xd2, 0xc5, 0x24, 0x73, 0x7b, 0x9a, 0x70, 0x9c, 0xa6, 0xd6, 0xdf, 0x84, 0xb0, 0xab, 0x8a,
  326. 0xf9, 0x6f, 0x1d, 0xbd, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x26, 0xa3, 0xe8, 0x2c, 0xad, 0x07, 0x00,
  327. 0x00,
  328. }