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.
 
 
 

589 lines
24 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/logging/v2/log_entry.proto
  3. package logging // import "google.golang.org/genproto/googleapis/logging/v2"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import any "github.com/golang/protobuf/ptypes/any"
  8. import _struct "github.com/golang/protobuf/ptypes/struct"
  9. import timestamp "github.com/golang/protobuf/ptypes/timestamp"
  10. import _ "google.golang.org/genproto/googleapis/api/annotations"
  11. import monitoredres "google.golang.org/genproto/googleapis/api/monitoredres"
  12. import _type "google.golang.org/genproto/googleapis/logging/type"
  13. // Reference imports to suppress errors if they are not otherwise used.
  14. var _ = proto.Marshal
  15. var _ = fmt.Errorf
  16. var _ = math.Inf
  17. // This is a compile-time assertion to ensure that this generated file
  18. // is compatible with the proto package it is being compiled against.
  19. // A compilation error at this line likely means your copy of the
  20. // proto package needs to be updated.
  21. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  22. // An individual entry in a log.
  23. type LogEntry struct {
  24. // Required. The resource name of the log to which this log entry belongs:
  25. //
  26. // "projects/[PROJECT_ID]/logs/[LOG_ID]"
  27. // "organizations/[ORGANIZATION_ID]/logs/[LOG_ID]"
  28. // "billingAccounts/[BILLING_ACCOUNT_ID]/logs/[LOG_ID]"
  29. // "folders/[FOLDER_ID]/logs/[LOG_ID]"
  30. //
  31. // A project number may optionally be used in place of PROJECT_ID. The
  32. // project number is translated to its corresponding PROJECT_ID internally
  33. // and the `log_name` field will contain PROJECT_ID in queries and exports.
  34. //
  35. // `[LOG_ID]` must be URL-encoded within `log_name`. Example:
  36. // `"organizations/1234567890/logs/cloudresourcemanager.googleapis.com%2Factivity"`.
  37. // `[LOG_ID]` must be less than 512 characters long and can only include the
  38. // following characters: upper and lower case alphanumeric characters,
  39. // forward-slash, underscore, hyphen, and period.
  40. //
  41. // For backward compatibility, if `log_name` begins with a forward-slash, such
  42. // as `/projects/...`, then the log entry is ingested as usual but the
  43. // forward-slash is removed. Listing the log entry will not show the leading
  44. // slash and filtering for a log name with a leading slash will never return
  45. // any results.
  46. LogName string `protobuf:"bytes,12,opt,name=log_name,json=logName,proto3" json:"log_name,omitempty"`
  47. // Required. The primary monitored resource associated with this log entry.
  48. // Example: a log entry that reports a database error would be
  49. // associated with the monitored resource designating the particular
  50. // database that reported the error.
  51. Resource *monitoredres.MonitoredResource `protobuf:"bytes,8,opt,name=resource,proto3" json:"resource,omitempty"`
  52. // Optional. The log entry payload, which can be one of multiple types.
  53. //
  54. // Types that are valid to be assigned to Payload:
  55. // *LogEntry_ProtoPayload
  56. // *LogEntry_TextPayload
  57. // *LogEntry_JsonPayload
  58. Payload isLogEntry_Payload `protobuf_oneof:"payload"`
  59. // Optional. The time the event described by the log entry occurred.
  60. // This time is used to compute the log entry's age and to enforce
  61. // the logs retention period. If this field is omitted in a new log
  62. // entry, then Logging assigns it the current time.
  63. // Timestamps have nanosecond accuracy, but trailing zeros in the fractional
  64. // seconds might be omitted when the timestamp is displayed.
  65. //
  66. // Incoming log entries should have timestamps that are no more than
  67. // the [logs retention period](/logging/quotas) in the past,
  68. // and no more than 24 hours in the future. Log entries outside those time
  69. // boundaries will not be available when calling `entries.list`, but
  70. // those log entries can still be exported with
  71. // [LogSinks](/logging/docs/api/tasks/exporting-logs).
  72. Timestamp *timestamp.Timestamp `protobuf:"bytes,9,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
  73. // Output only. The time the log entry was received by Logging.
  74. ReceiveTimestamp *timestamp.Timestamp `protobuf:"bytes,24,opt,name=receive_timestamp,json=receiveTimestamp,proto3" json:"receive_timestamp,omitempty"`
  75. // Optional. The severity of the log entry. The default value is
  76. // `LogSeverity.DEFAULT`.
  77. Severity _type.LogSeverity `protobuf:"varint,10,opt,name=severity,proto3,enum=google.logging.type.LogSeverity" json:"severity,omitempty"`
  78. // Optional. A unique identifier for the log entry. If you provide a value,
  79. // then Logging considers other log entries in the same project,
  80. // with the same `timestamp`, and with the same `insert_id` to be duplicates
  81. // which can be removed. If omitted in new log entries, then
  82. // Logging assigns its own unique identifier. The `insert_id` is also used
  83. // to order log entries that have the same `timestamp` value.
  84. InsertId string `protobuf:"bytes,4,opt,name=insert_id,json=insertId,proto3" json:"insert_id,omitempty"`
  85. // Optional. Information about the HTTP request associated with this
  86. // log entry, if applicable.
  87. HttpRequest *_type.HttpRequest `protobuf:"bytes,7,opt,name=http_request,json=httpRequest,proto3" json:"http_request,omitempty"`
  88. // Optional. A set of user-defined (key, value) data that provides additional
  89. // information about the log entry.
  90. Labels map[string]string `protobuf:"bytes,11,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  91. // Output only. Additional metadata about the monitored resource.
  92. // Only `k8s_container`, `k8s_pod`, and `k8s_node` MonitoredResources have
  93. // this field populated.
  94. Metadata *monitoredres.MonitoredResourceMetadata `protobuf:"bytes,25,opt,name=metadata,proto3" json:"metadata,omitempty"`
  95. // Optional. Information about an operation associated with the log entry, if
  96. // applicable.
  97. Operation *LogEntryOperation `protobuf:"bytes,15,opt,name=operation,proto3" json:"operation,omitempty"`
  98. // Optional. Resource name of the trace associated with the log entry, if any.
  99. // If it contains a relative resource name, the name is assumed to be relative
  100. // to `//tracing.googleapis.com`. Example:
  101. // `projects/my-projectid/traces/06796866738c859f2f19b7cfb3214824`
  102. Trace string `protobuf:"bytes,22,opt,name=trace,proto3" json:"trace,omitempty"`
  103. // Optional. The span ID within the trace associated with the log entry.
  104. // For Trace spans, this is the same format that the Trace
  105. // API v2 uses: a 16-character hexadecimal encoding of an 8-byte array, such
  106. // as <code>"000000000000004a"</code>.
  107. SpanId string `protobuf:"bytes,27,opt,name=span_id,json=spanId,proto3" json:"span_id,omitempty"`
  108. // Optional. The sampling decision of the trace associated with the log entry.
  109. // True means that the trace resource name in the `trace` field was sampled
  110. // for storage in a trace backend. False means that the trace was not sampled
  111. // for storage when this log entry was written, or the sampling decision was
  112. // unknown at the time. A non-sampled `trace` value is still useful as a
  113. // request correlation identifier. The default is False.
  114. TraceSampled bool `protobuf:"varint,30,opt,name=trace_sampled,json=traceSampled,proto3" json:"trace_sampled,omitempty"`
  115. // Optional. Source code location information associated with the log entry,
  116. // if any.
  117. SourceLocation *LogEntrySourceLocation `protobuf:"bytes,23,opt,name=source_location,json=sourceLocation,proto3" json:"source_location,omitempty"`
  118. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  119. XXX_unrecognized []byte `json:"-"`
  120. XXX_sizecache int32 `json:"-"`
  121. }
  122. func (m *LogEntry) Reset() { *m = LogEntry{} }
  123. func (m *LogEntry) String() string { return proto.CompactTextString(m) }
  124. func (*LogEntry) ProtoMessage() {}
  125. func (*LogEntry) Descriptor() ([]byte, []int) {
  126. return fileDescriptor_log_entry_b0004bedc6419a9f, []int{0}
  127. }
  128. func (m *LogEntry) XXX_Unmarshal(b []byte) error {
  129. return xxx_messageInfo_LogEntry.Unmarshal(m, b)
  130. }
  131. func (m *LogEntry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  132. return xxx_messageInfo_LogEntry.Marshal(b, m, deterministic)
  133. }
  134. func (dst *LogEntry) XXX_Merge(src proto.Message) {
  135. xxx_messageInfo_LogEntry.Merge(dst, src)
  136. }
  137. func (m *LogEntry) XXX_Size() int {
  138. return xxx_messageInfo_LogEntry.Size(m)
  139. }
  140. func (m *LogEntry) XXX_DiscardUnknown() {
  141. xxx_messageInfo_LogEntry.DiscardUnknown(m)
  142. }
  143. var xxx_messageInfo_LogEntry proto.InternalMessageInfo
  144. func (m *LogEntry) GetLogName() string {
  145. if m != nil {
  146. return m.LogName
  147. }
  148. return ""
  149. }
  150. func (m *LogEntry) GetResource() *monitoredres.MonitoredResource {
  151. if m != nil {
  152. return m.Resource
  153. }
  154. return nil
  155. }
  156. type isLogEntry_Payload interface {
  157. isLogEntry_Payload()
  158. }
  159. type LogEntry_ProtoPayload struct {
  160. ProtoPayload *any.Any `protobuf:"bytes,2,opt,name=proto_payload,json=protoPayload,proto3,oneof"`
  161. }
  162. type LogEntry_TextPayload struct {
  163. TextPayload string `protobuf:"bytes,3,opt,name=text_payload,json=textPayload,proto3,oneof"`
  164. }
  165. type LogEntry_JsonPayload struct {
  166. JsonPayload *_struct.Struct `protobuf:"bytes,6,opt,name=json_payload,json=jsonPayload,proto3,oneof"`
  167. }
  168. func (*LogEntry_ProtoPayload) isLogEntry_Payload() {}
  169. func (*LogEntry_TextPayload) isLogEntry_Payload() {}
  170. func (*LogEntry_JsonPayload) isLogEntry_Payload() {}
  171. func (m *LogEntry) GetPayload() isLogEntry_Payload {
  172. if m != nil {
  173. return m.Payload
  174. }
  175. return nil
  176. }
  177. func (m *LogEntry) GetProtoPayload() *any.Any {
  178. if x, ok := m.GetPayload().(*LogEntry_ProtoPayload); ok {
  179. return x.ProtoPayload
  180. }
  181. return nil
  182. }
  183. func (m *LogEntry) GetTextPayload() string {
  184. if x, ok := m.GetPayload().(*LogEntry_TextPayload); ok {
  185. return x.TextPayload
  186. }
  187. return ""
  188. }
  189. func (m *LogEntry) GetJsonPayload() *_struct.Struct {
  190. if x, ok := m.GetPayload().(*LogEntry_JsonPayload); ok {
  191. return x.JsonPayload
  192. }
  193. return nil
  194. }
  195. func (m *LogEntry) GetTimestamp() *timestamp.Timestamp {
  196. if m != nil {
  197. return m.Timestamp
  198. }
  199. return nil
  200. }
  201. func (m *LogEntry) GetReceiveTimestamp() *timestamp.Timestamp {
  202. if m != nil {
  203. return m.ReceiveTimestamp
  204. }
  205. return nil
  206. }
  207. func (m *LogEntry) GetSeverity() _type.LogSeverity {
  208. if m != nil {
  209. return m.Severity
  210. }
  211. return _type.LogSeverity_DEFAULT
  212. }
  213. func (m *LogEntry) GetInsertId() string {
  214. if m != nil {
  215. return m.InsertId
  216. }
  217. return ""
  218. }
  219. func (m *LogEntry) GetHttpRequest() *_type.HttpRequest {
  220. if m != nil {
  221. return m.HttpRequest
  222. }
  223. return nil
  224. }
  225. func (m *LogEntry) GetLabels() map[string]string {
  226. if m != nil {
  227. return m.Labels
  228. }
  229. return nil
  230. }
  231. func (m *LogEntry) GetMetadata() *monitoredres.MonitoredResourceMetadata {
  232. if m != nil {
  233. return m.Metadata
  234. }
  235. return nil
  236. }
  237. func (m *LogEntry) GetOperation() *LogEntryOperation {
  238. if m != nil {
  239. return m.Operation
  240. }
  241. return nil
  242. }
  243. func (m *LogEntry) GetTrace() string {
  244. if m != nil {
  245. return m.Trace
  246. }
  247. return ""
  248. }
  249. func (m *LogEntry) GetSpanId() string {
  250. if m != nil {
  251. return m.SpanId
  252. }
  253. return ""
  254. }
  255. func (m *LogEntry) GetTraceSampled() bool {
  256. if m != nil {
  257. return m.TraceSampled
  258. }
  259. return false
  260. }
  261. func (m *LogEntry) GetSourceLocation() *LogEntrySourceLocation {
  262. if m != nil {
  263. return m.SourceLocation
  264. }
  265. return nil
  266. }
  267. // XXX_OneofFuncs is for the internal use of the proto package.
  268. func (*LogEntry) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) {
  269. return _LogEntry_OneofMarshaler, _LogEntry_OneofUnmarshaler, _LogEntry_OneofSizer, []interface{}{
  270. (*LogEntry_ProtoPayload)(nil),
  271. (*LogEntry_TextPayload)(nil),
  272. (*LogEntry_JsonPayload)(nil),
  273. }
  274. }
  275. func _LogEntry_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
  276. m := msg.(*LogEntry)
  277. // payload
  278. switch x := m.Payload.(type) {
  279. case *LogEntry_ProtoPayload:
  280. b.EncodeVarint(2<<3 | proto.WireBytes)
  281. if err := b.EncodeMessage(x.ProtoPayload); err != nil {
  282. return err
  283. }
  284. case *LogEntry_TextPayload:
  285. b.EncodeVarint(3<<3 | proto.WireBytes)
  286. b.EncodeStringBytes(x.TextPayload)
  287. case *LogEntry_JsonPayload:
  288. b.EncodeVarint(6<<3 | proto.WireBytes)
  289. if err := b.EncodeMessage(x.JsonPayload); err != nil {
  290. return err
  291. }
  292. case nil:
  293. default:
  294. return fmt.Errorf("LogEntry.Payload has unexpected type %T", x)
  295. }
  296. return nil
  297. }
  298. func _LogEntry_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
  299. m := msg.(*LogEntry)
  300. switch tag {
  301. case 2: // payload.proto_payload
  302. if wire != proto.WireBytes {
  303. return true, proto.ErrInternalBadWireType
  304. }
  305. msg := new(any.Any)
  306. err := b.DecodeMessage(msg)
  307. m.Payload = &LogEntry_ProtoPayload{msg}
  308. return true, err
  309. case 3: // payload.text_payload
  310. if wire != proto.WireBytes {
  311. return true, proto.ErrInternalBadWireType
  312. }
  313. x, err := b.DecodeStringBytes()
  314. m.Payload = &LogEntry_TextPayload{x}
  315. return true, err
  316. case 6: // payload.json_payload
  317. if wire != proto.WireBytes {
  318. return true, proto.ErrInternalBadWireType
  319. }
  320. msg := new(_struct.Struct)
  321. err := b.DecodeMessage(msg)
  322. m.Payload = &LogEntry_JsonPayload{msg}
  323. return true, err
  324. default:
  325. return false, nil
  326. }
  327. }
  328. func _LogEntry_OneofSizer(msg proto.Message) (n int) {
  329. m := msg.(*LogEntry)
  330. // payload
  331. switch x := m.Payload.(type) {
  332. case *LogEntry_ProtoPayload:
  333. s := proto.Size(x.ProtoPayload)
  334. n += 1 // tag and wire
  335. n += proto.SizeVarint(uint64(s))
  336. n += s
  337. case *LogEntry_TextPayload:
  338. n += 1 // tag and wire
  339. n += proto.SizeVarint(uint64(len(x.TextPayload)))
  340. n += len(x.TextPayload)
  341. case *LogEntry_JsonPayload:
  342. s := proto.Size(x.JsonPayload)
  343. n += 1 // tag and wire
  344. n += proto.SizeVarint(uint64(s))
  345. n += s
  346. case nil:
  347. default:
  348. panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
  349. }
  350. return n
  351. }
  352. // Additional information about a potentially long-running operation with which
  353. // a log entry is associated.
  354. type LogEntryOperation struct {
  355. // Optional. An arbitrary operation identifier. Log entries with the
  356. // same identifier are assumed to be part of the same operation.
  357. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
  358. // Optional. An arbitrary producer identifier. The combination of
  359. // `id` and `producer` must be globally unique. Examples for `producer`:
  360. // `"MyDivision.MyBigCompany.com"`, `"github.com/MyProject/MyApplication"`.
  361. Producer string `protobuf:"bytes,2,opt,name=producer,proto3" json:"producer,omitempty"`
  362. // Optional. Set this to True if this is the first log entry in the operation.
  363. First bool `protobuf:"varint,3,opt,name=first,proto3" json:"first,omitempty"`
  364. // Optional. Set this to True if this is the last log entry in the operation.
  365. Last bool `protobuf:"varint,4,opt,name=last,proto3" json:"last,omitempty"`
  366. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  367. XXX_unrecognized []byte `json:"-"`
  368. XXX_sizecache int32 `json:"-"`
  369. }
  370. func (m *LogEntryOperation) Reset() { *m = LogEntryOperation{} }
  371. func (m *LogEntryOperation) String() string { return proto.CompactTextString(m) }
  372. func (*LogEntryOperation) ProtoMessage() {}
  373. func (*LogEntryOperation) Descriptor() ([]byte, []int) {
  374. return fileDescriptor_log_entry_b0004bedc6419a9f, []int{1}
  375. }
  376. func (m *LogEntryOperation) XXX_Unmarshal(b []byte) error {
  377. return xxx_messageInfo_LogEntryOperation.Unmarshal(m, b)
  378. }
  379. func (m *LogEntryOperation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  380. return xxx_messageInfo_LogEntryOperation.Marshal(b, m, deterministic)
  381. }
  382. func (dst *LogEntryOperation) XXX_Merge(src proto.Message) {
  383. xxx_messageInfo_LogEntryOperation.Merge(dst, src)
  384. }
  385. func (m *LogEntryOperation) XXX_Size() int {
  386. return xxx_messageInfo_LogEntryOperation.Size(m)
  387. }
  388. func (m *LogEntryOperation) XXX_DiscardUnknown() {
  389. xxx_messageInfo_LogEntryOperation.DiscardUnknown(m)
  390. }
  391. var xxx_messageInfo_LogEntryOperation proto.InternalMessageInfo
  392. func (m *LogEntryOperation) GetId() string {
  393. if m != nil {
  394. return m.Id
  395. }
  396. return ""
  397. }
  398. func (m *LogEntryOperation) GetProducer() string {
  399. if m != nil {
  400. return m.Producer
  401. }
  402. return ""
  403. }
  404. func (m *LogEntryOperation) GetFirst() bool {
  405. if m != nil {
  406. return m.First
  407. }
  408. return false
  409. }
  410. func (m *LogEntryOperation) GetLast() bool {
  411. if m != nil {
  412. return m.Last
  413. }
  414. return false
  415. }
  416. // Additional information about the source code location that produced the log
  417. // entry.
  418. type LogEntrySourceLocation struct {
  419. // Optional. Source file name. Depending on the runtime environment, this
  420. // might be a simple name or a fully-qualified name.
  421. File string `protobuf:"bytes,1,opt,name=file,proto3" json:"file,omitempty"`
  422. // Optional. Line within the source file. 1-based; 0 indicates no line number
  423. // available.
  424. Line int64 `protobuf:"varint,2,opt,name=line,proto3" json:"line,omitempty"`
  425. // Optional. Human-readable name of the function or method being invoked, with
  426. // optional context such as the class or package name. This information may be
  427. // used in contexts such as the logs viewer, where a file and line number are
  428. // less meaningful. The format can vary by language. For example:
  429. // `qual.if.ied.Class.method` (Java), `dir/package.func` (Go), `function`
  430. // (Python).
  431. Function string `protobuf:"bytes,3,opt,name=function,proto3" json:"function,omitempty"`
  432. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  433. XXX_unrecognized []byte `json:"-"`
  434. XXX_sizecache int32 `json:"-"`
  435. }
  436. func (m *LogEntrySourceLocation) Reset() { *m = LogEntrySourceLocation{} }
  437. func (m *LogEntrySourceLocation) String() string { return proto.CompactTextString(m) }
  438. func (*LogEntrySourceLocation) ProtoMessage() {}
  439. func (*LogEntrySourceLocation) Descriptor() ([]byte, []int) {
  440. return fileDescriptor_log_entry_b0004bedc6419a9f, []int{2}
  441. }
  442. func (m *LogEntrySourceLocation) XXX_Unmarshal(b []byte) error {
  443. return xxx_messageInfo_LogEntrySourceLocation.Unmarshal(m, b)
  444. }
  445. func (m *LogEntrySourceLocation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  446. return xxx_messageInfo_LogEntrySourceLocation.Marshal(b, m, deterministic)
  447. }
  448. func (dst *LogEntrySourceLocation) XXX_Merge(src proto.Message) {
  449. xxx_messageInfo_LogEntrySourceLocation.Merge(dst, src)
  450. }
  451. func (m *LogEntrySourceLocation) XXX_Size() int {
  452. return xxx_messageInfo_LogEntrySourceLocation.Size(m)
  453. }
  454. func (m *LogEntrySourceLocation) XXX_DiscardUnknown() {
  455. xxx_messageInfo_LogEntrySourceLocation.DiscardUnknown(m)
  456. }
  457. var xxx_messageInfo_LogEntrySourceLocation proto.InternalMessageInfo
  458. func (m *LogEntrySourceLocation) GetFile() string {
  459. if m != nil {
  460. return m.File
  461. }
  462. return ""
  463. }
  464. func (m *LogEntrySourceLocation) GetLine() int64 {
  465. if m != nil {
  466. return m.Line
  467. }
  468. return 0
  469. }
  470. func (m *LogEntrySourceLocation) GetFunction() string {
  471. if m != nil {
  472. return m.Function
  473. }
  474. return ""
  475. }
  476. func init() {
  477. proto.RegisterType((*LogEntry)(nil), "google.logging.v2.LogEntry")
  478. proto.RegisterMapType((map[string]string)(nil), "google.logging.v2.LogEntry.LabelsEntry")
  479. proto.RegisterType((*LogEntryOperation)(nil), "google.logging.v2.LogEntryOperation")
  480. proto.RegisterType((*LogEntrySourceLocation)(nil), "google.logging.v2.LogEntrySourceLocation")
  481. }
  482. func init() {
  483. proto.RegisterFile("google/logging/v2/log_entry.proto", fileDescriptor_log_entry_b0004bedc6419a9f)
  484. }
  485. var fileDescriptor_log_entry_b0004bedc6419a9f = []byte{
  486. // 772 bytes of a gzipped FileDescriptorProto
  487. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x55, 0xdd, 0x8e, 0xdb, 0x44,
  488. 0x14, 0xae, 0x93, 0xb2, 0x71, 0x26, 0xd9, 0x6d, 0x77, 0x54, 0x1a, 0x6f, 0x5a, 0x20, 0x6c, 0xf9,
  489. 0x09, 0x37, 0x8e, 0x14, 0x6e, 0xb6, 0xb4, 0x12, 0x6a, 0x2a, 0xd4, 0xad, 0x94, 0x42, 0x35, 0x41,
  490. 0xbd, 0x40, 0x91, 0xac, 0x59, 0x7b, 0xe2, 0x0e, 0xd8, 0x33, 0x66, 0x3c, 0x8e, 0xc8, 0xa3, 0xf0,
  491. 0x0a, 0x3c, 0x0a, 0x6f, 0xc0, 0x9b, 0x70, 0x89, 0xe6, 0xcc, 0xd8, 0x09, 0xc9, 0x2a, 0xbd, 0x3b,
  492. 0x3f, 0xdf, 0x77, 0xce, 0xe7, 0x33, 0xe7, 0x24, 0xe8, 0xf3, 0x54, 0xca, 0x34, 0x63, 0x93, 0x4c,
  493. 0xa6, 0x29, 0x17, 0xe9, 0x64, 0x3d, 0x35, 0x66, 0xc4, 0x84, 0x56, 0x9b, 0xb0, 0x50, 0x52, 0x4b,
  494. 0x7c, 0x6e, 0x21, 0xa1, 0x83, 0x84, 0xeb, 0xe9, 0xf0, 0xb1, 0x63, 0xd1, 0x82, 0x4f, 0xa8, 0x10,
  495. 0x52, 0x53, 0xcd, 0xa5, 0x28, 0x2d, 0x61, 0xf8, 0x64, 0x27, 0x9b, 0x4b, 0xc1, 0xb5, 0x54, 0x2c,
  496. 0x89, 0x14, 0x2b, 0x65, 0xa5, 0x62, 0xe6, 0x40, 0x5f, 0xed, 0x35, 0xd6, 0x9b, 0x82, 0x4d, 0xde,
  497. 0x6b, 0x5d, 0x44, 0x8a, 0xfd, 0x5e, 0xb1, 0x52, 0x1f, 0xc3, 0x19, 0x89, 0x25, 0x5b, 0x33, 0xc5,
  498. 0xb5, 0x53, 0x39, 0xbc, 0x70, 0x38, 0xf0, 0x6e, 0xaa, 0xd5, 0x84, 0x8a, 0x3a, 0xf5, 0x78, 0x3f,
  499. 0x55, 0x6a, 0x55, 0xc5, 0x75, 0x83, 0xcf, 0xf6, 0xb3, 0x9a, 0xe7, 0xac, 0xd4, 0x34, 0x2f, 0x2c,
  500. 0xe0, 0xf2, 0x9f, 0x0e, 0xf2, 0xe7, 0x32, 0xfd, 0xc1, 0x8c, 0x04, 0x5f, 0x20, 0xdf, 0x34, 0x17,
  501. 0x34, 0x67, 0x41, 0x7f, 0xe4, 0x8d, 0xbb, 0xa4, 0x93, 0xc9, 0xf4, 0x47, 0x9a, 0x33, 0xfc, 0x14,
  502. 0xf9, 0xf5, 0x37, 0x06, 0xfe, 0xc8, 0x1b, 0xf7, 0xa6, 0x9f, 0x84, 0x6e, 0x74, 0xb4, 0xe0, 0xe1,
  503. 0x9b, 0x7a, 0x12, 0xc4, 0x81, 0x48, 0x03, 0xc7, 0xcf, 0xd0, 0x29, 0xf4, 0x8a, 0x0a, 0xba, 0xc9,
  504. 0x24, 0x4d, 0x82, 0x16, 0xf0, 0x1f, 0xd4, 0xfc, 0x5a, 0x5b, 0xf8, 0x42, 0x6c, 0xae, 0xef, 0x90,
  505. 0x3e, 0xf8, 0x6f, 0x2d, 0x16, 0x3f, 0x41, 0x7d, 0xcd, 0xfe, 0xd0, 0x0d, 0xb7, 0x6d, 0x64, 0x5d,
  506. 0xdf, 0x21, 0x3d, 0x13, 0xad, 0x41, 0xcf, 0x51, 0xff, 0xd7, 0x52, 0x8a, 0x06, 0x74, 0x02, 0x0d,
  507. 0x06, 0x07, 0x0d, 0x16, 0x30, 0x1a, 0xc3, 0x36, 0xf0, 0x9a, 0x7d, 0x85, 0xba, 0xcd, 0x54, 0x82,
  508. 0x2e, 0x50, 0x87, 0x07, 0xd4, 0x9f, 0x6b, 0x04, 0xd9, 0x82, 0xf1, 0x2b, 0x74, 0xae, 0x58, 0xcc,
  509. 0xf8, 0x9a, 0x45, 0xdb, 0x0a, 0xc1, 0x07, 0x2b, 0xdc, 0x77, 0xa4, 0x26, 0x82, 0x9f, 0x23, 0xbf,
  510. 0x7e, 0xf1, 0x00, 0x8d, 0xbc, 0xf1, 0xd9, 0x74, 0x14, 0xee, 0x2d, 0xa6, 0x59, 0x8d, 0x70, 0x2e,
  511. 0xd3, 0x85, 0xc3, 0x91, 0x86, 0x81, 0x1f, 0xa1, 0x2e, 0x17, 0x25, 0x53, 0x3a, 0xe2, 0x49, 0x70,
  512. 0x17, 0xde, 0xcd, 0xb7, 0x81, 0xd7, 0x09, 0x7e, 0x89, 0xfa, 0xbb, 0x8b, 0x17, 0x74, 0x40, 0xde,
  513. 0xed, 0xe5, 0xaf, 0xb5, 0x2e, 0x88, 0xc5, 0x91, 0xde, 0xfb, 0xad, 0x83, 0xbf, 0x47, 0x27, 0x19,
  514. 0xbd, 0x61, 0x59, 0x19, 0xf4, 0x46, 0xed, 0x71, 0x6f, 0xfa, 0x75, 0x78, 0x70, 0x36, 0x61, 0xbd,
  515. 0x45, 0xe1, 0x1c, 0x90, 0x60, 0x13, 0x47, 0xc3, 0x2f, 0x90, 0x9f, 0x33, 0x4d, 0x13, 0xaa, 0x69,
  516. 0x70, 0x01, 0x0a, 0xbe, 0x3c, 0xba, 0x3e, 0x6f, 0x1c, 0x98, 0x34, 0x34, 0x3c, 0x43, 0x5d, 0x59,
  517. 0x30, 0x05, 0xc7, 0x18, 0xdc, 0x83, 0x1a, 0x5f, 0x1c, 0x91, 0xf1, 0x53, 0x8d, 0x25, 0x5b, 0x1a,
  518. 0x7e, 0x80, 0x3e, 0xd2, 0x8a, 0xc6, 0x2c, 0x78, 0x08, 0x53, 0xb2, 0x0e, 0x1e, 0xa0, 0x4e, 0x59,
  519. 0x50, 0x61, 0xa6, 0xf7, 0x08, 0xe2, 0x27, 0xc6, 0x7d, 0x6d, 0x96, 0xef, 0x14, 0x10, 0x51, 0x49,
  520. 0xf3, 0x22, 0x63, 0x49, 0xf0, 0xe9, 0xc8, 0x1b, 0xfb, 0xa4, 0x0f, 0xc1, 0x85, 0x8d, 0x61, 0x82,
  521. 0xee, 0x59, 0xcd, 0x51, 0x26, 0x63, 0xab, 0x6e, 0x00, 0xea, 0xbe, 0x39, 0xa2, 0x6e, 0x01, 0x8c,
  522. 0xb9, 0x23, 0x90, 0xb3, 0xf2, 0x7f, 0xfe, 0xf0, 0x29, 0xea, 0xed, 0x4c, 0x11, 0xdf, 0x47, 0xed,
  523. 0xdf, 0xd8, 0x26, 0xf0, 0x40, 0x9c, 0x31, 0xcd, 0x87, 0xac, 0x69, 0x56, 0x31, 0xb8, 0xa5, 0x2e,
  524. 0xb1, 0xce, 0x77, 0xad, 0x2b, 0x6f, 0xd6, 0x45, 0x1d, 0x77, 0x06, 0x97, 0x1c, 0x9d, 0x1f, 0x4c,
  525. 0x03, 0x9f, 0xa1, 0x16, 0x4f, 0x5c, 0xa9, 0x16, 0x4f, 0xf0, 0x10, 0xf9, 0x85, 0x92, 0x49, 0x15,
  526. 0x33, 0xe5, 0x8a, 0x35, 0xbe, 0xe9, 0xb2, 0xe2, 0xaa, 0xd4, 0x70, 0x75, 0x3e, 0xb1, 0x0e, 0xc6,
  527. 0xe8, 0x6e, 0x46, 0x4b, 0x0d, 0x9b, 0xe6, 0x13, 0xb0, 0x2f, 0x97, 0xe8, 0xe1, 0xed, 0x9f, 0x66,
  528. 0xd0, 0x2b, 0x9e, 0x31, 0xd7, 0x11, 0x6c, 0xa8, 0xc0, 0x85, 0x15, 0xdf, 0x26, 0x60, 0x1b, 0x1d,
  529. 0xab, 0x4a, 0xc4, 0x30, 0xbf, 0xb6, 0xd5, 0x51, 0xfb, 0xb3, 0x3f, 0x3d, 0xf4, 0x71, 0x2c, 0xf3,
  530. 0xc3, 0x79, 0xce, 0x4e, 0xeb, 0xae, 0x6f, 0xe1, 0x47, 0xc3, 0xfb, 0xe5, 0xca, 0x61, 0x52, 0x99,
  531. 0x51, 0x91, 0x86, 0x52, 0xa5, 0x93, 0x94, 0x09, 0x38, 0xc2, 0x89, 0x4d, 0xd1, 0x82, 0x97, 0x3b,
  532. 0xff, 0x08, 0xcf, 0x9c, 0xf9, 0xaf, 0xe7, 0xfd, 0xd5, 0x1a, 0xbc, 0xb2, 0xec, 0x97, 0x99, 0xac,
  533. 0x12, 0xf3, 0x58, 0xd0, 0xe7, 0xdd, 0xf4, 0xef, 0x3a, 0xb3, 0x84, 0xcc, 0xd2, 0x65, 0x96, 0xef,
  534. 0xa6, 0x37, 0x27, 0x50, 0xfb, 0xdb, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x7a, 0x7b, 0xdc, 0xd5,
  535. 0x6c, 0x06, 0x00, 0x00,
  536. }