您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

1074 行
42 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/devtools/clouddebugger/v2/data.proto
  3. package clouddebugger // import "google.golang.org/genproto/googleapis/devtools/clouddebugger/v2"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import _ "github.com/golang/protobuf/ptypes/duration"
  8. import timestamp "github.com/golang/protobuf/ptypes/timestamp"
  9. import wrappers "github.com/golang/protobuf/ptypes/wrappers"
  10. import _ "google.golang.org/genproto/googleapis/api/annotations"
  11. import v1 "google.golang.org/genproto/googleapis/devtools/source/v1"
  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. // This is a compile-time assertion to ensure that this generated file
  17. // is compatible with the proto package it is being compiled against.
  18. // A compilation error at this line likely means your copy of the
  19. // proto package needs to be updated.
  20. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  21. // Enumerates references to which the message applies.
  22. type StatusMessage_Reference int32
  23. const (
  24. // Status doesn't refer to any particular input.
  25. StatusMessage_UNSPECIFIED StatusMessage_Reference = 0
  26. // Status applies to the breakpoint and is related to its location.
  27. StatusMessage_BREAKPOINT_SOURCE_LOCATION StatusMessage_Reference = 3
  28. // Status applies to the breakpoint and is related to its condition.
  29. StatusMessage_BREAKPOINT_CONDITION StatusMessage_Reference = 4
  30. // Status applies to the breakpoint and is related to its expressions.
  31. StatusMessage_BREAKPOINT_EXPRESSION StatusMessage_Reference = 7
  32. // Status applies to the breakpoint and is related to its age.
  33. StatusMessage_BREAKPOINT_AGE StatusMessage_Reference = 8
  34. // Status applies to the entire variable.
  35. StatusMessage_VARIABLE_NAME StatusMessage_Reference = 5
  36. // Status applies to variable value (variable name is valid).
  37. StatusMessage_VARIABLE_VALUE StatusMessage_Reference = 6
  38. )
  39. var StatusMessage_Reference_name = map[int32]string{
  40. 0: "UNSPECIFIED",
  41. 3: "BREAKPOINT_SOURCE_LOCATION",
  42. 4: "BREAKPOINT_CONDITION",
  43. 7: "BREAKPOINT_EXPRESSION",
  44. 8: "BREAKPOINT_AGE",
  45. 5: "VARIABLE_NAME",
  46. 6: "VARIABLE_VALUE",
  47. }
  48. var StatusMessage_Reference_value = map[string]int32{
  49. "UNSPECIFIED": 0,
  50. "BREAKPOINT_SOURCE_LOCATION": 3,
  51. "BREAKPOINT_CONDITION": 4,
  52. "BREAKPOINT_EXPRESSION": 7,
  53. "BREAKPOINT_AGE": 8,
  54. "VARIABLE_NAME": 5,
  55. "VARIABLE_VALUE": 6,
  56. }
  57. func (x StatusMessage_Reference) String() string {
  58. return proto.EnumName(StatusMessage_Reference_name, int32(x))
  59. }
  60. func (StatusMessage_Reference) EnumDescriptor() ([]byte, []int) {
  61. return fileDescriptor_data_821f79f55e9f1289, []int{1, 0}
  62. }
  63. // Actions that can be taken when a breakpoint hits.
  64. // Agents should reject breakpoints with unsupported or unknown action values.
  65. type Breakpoint_Action int32
  66. const (
  67. // Capture stack frame and variables and update the breakpoint.
  68. // The data is only captured once. After that the breakpoint is set
  69. // in a final state.
  70. Breakpoint_CAPTURE Breakpoint_Action = 0
  71. // Log each breakpoint hit. The breakpoint remains active until
  72. // deleted or expired.
  73. Breakpoint_LOG Breakpoint_Action = 1
  74. )
  75. var Breakpoint_Action_name = map[int32]string{
  76. 0: "CAPTURE",
  77. 1: "LOG",
  78. }
  79. var Breakpoint_Action_value = map[string]int32{
  80. "CAPTURE": 0,
  81. "LOG": 1,
  82. }
  83. func (x Breakpoint_Action) String() string {
  84. return proto.EnumName(Breakpoint_Action_name, int32(x))
  85. }
  86. func (Breakpoint_Action) EnumDescriptor() ([]byte, []int) {
  87. return fileDescriptor_data_821f79f55e9f1289, []int{5, 0}
  88. }
  89. // Log severity levels.
  90. type Breakpoint_LogLevel int32
  91. const (
  92. // Information log message.
  93. Breakpoint_INFO Breakpoint_LogLevel = 0
  94. // Warning log message.
  95. Breakpoint_WARNING Breakpoint_LogLevel = 1
  96. // Error log message.
  97. Breakpoint_ERROR Breakpoint_LogLevel = 2
  98. )
  99. var Breakpoint_LogLevel_name = map[int32]string{
  100. 0: "INFO",
  101. 1: "WARNING",
  102. 2: "ERROR",
  103. }
  104. var Breakpoint_LogLevel_value = map[string]int32{
  105. "INFO": 0,
  106. "WARNING": 1,
  107. "ERROR": 2,
  108. }
  109. func (x Breakpoint_LogLevel) String() string {
  110. return proto.EnumName(Breakpoint_LogLevel_name, int32(x))
  111. }
  112. func (Breakpoint_LogLevel) EnumDescriptor() ([]byte, []int) {
  113. return fileDescriptor_data_821f79f55e9f1289, []int{5, 1}
  114. }
  115. // Represents a message with parameters.
  116. type FormatMessage struct {
  117. // Format template for the message. The `format` uses placeholders `$0`,
  118. // `$1`, etc. to reference parameters. `$$` can be used to denote the `$`
  119. // character.
  120. //
  121. // Examples:
  122. //
  123. // * `Failed to load '$0' which helps debug $1 the first time it
  124. // is loaded. Again, $0 is very important.`
  125. // * `Please pay $$10 to use $0 instead of $1.`
  126. Format string `protobuf:"bytes,1,opt,name=format,proto3" json:"format,omitempty"`
  127. // Optional parameters to be embedded into the message.
  128. Parameters []string `protobuf:"bytes,2,rep,name=parameters,proto3" json:"parameters,omitempty"`
  129. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  130. XXX_unrecognized []byte `json:"-"`
  131. XXX_sizecache int32 `json:"-"`
  132. }
  133. func (m *FormatMessage) Reset() { *m = FormatMessage{} }
  134. func (m *FormatMessage) String() string { return proto.CompactTextString(m) }
  135. func (*FormatMessage) ProtoMessage() {}
  136. func (*FormatMessage) Descriptor() ([]byte, []int) {
  137. return fileDescriptor_data_821f79f55e9f1289, []int{0}
  138. }
  139. func (m *FormatMessage) XXX_Unmarshal(b []byte) error {
  140. return xxx_messageInfo_FormatMessage.Unmarshal(m, b)
  141. }
  142. func (m *FormatMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  143. return xxx_messageInfo_FormatMessage.Marshal(b, m, deterministic)
  144. }
  145. func (dst *FormatMessage) XXX_Merge(src proto.Message) {
  146. xxx_messageInfo_FormatMessage.Merge(dst, src)
  147. }
  148. func (m *FormatMessage) XXX_Size() int {
  149. return xxx_messageInfo_FormatMessage.Size(m)
  150. }
  151. func (m *FormatMessage) XXX_DiscardUnknown() {
  152. xxx_messageInfo_FormatMessage.DiscardUnknown(m)
  153. }
  154. var xxx_messageInfo_FormatMessage proto.InternalMessageInfo
  155. func (m *FormatMessage) GetFormat() string {
  156. if m != nil {
  157. return m.Format
  158. }
  159. return ""
  160. }
  161. func (m *FormatMessage) GetParameters() []string {
  162. if m != nil {
  163. return m.Parameters
  164. }
  165. return nil
  166. }
  167. // Represents a contextual status message.
  168. // The message can indicate an error or informational status, and refer to
  169. // specific parts of the containing object.
  170. // For example, the `Breakpoint.status` field can indicate an error referring
  171. // to the `BREAKPOINT_SOURCE_LOCATION` with the message `Location not found`.
  172. type StatusMessage struct {
  173. // Distinguishes errors from informational messages.
  174. IsError bool `protobuf:"varint,1,opt,name=is_error,json=isError,proto3" json:"is_error,omitempty"`
  175. // Reference to which the message applies.
  176. RefersTo StatusMessage_Reference `protobuf:"varint,2,opt,name=refers_to,json=refersTo,proto3,enum=google.devtools.clouddebugger.v2.StatusMessage_Reference" json:"refers_to,omitempty"`
  177. // Status message text.
  178. Description *FormatMessage `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
  179. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  180. XXX_unrecognized []byte `json:"-"`
  181. XXX_sizecache int32 `json:"-"`
  182. }
  183. func (m *StatusMessage) Reset() { *m = StatusMessage{} }
  184. func (m *StatusMessage) String() string { return proto.CompactTextString(m) }
  185. func (*StatusMessage) ProtoMessage() {}
  186. func (*StatusMessage) Descriptor() ([]byte, []int) {
  187. return fileDescriptor_data_821f79f55e9f1289, []int{1}
  188. }
  189. func (m *StatusMessage) XXX_Unmarshal(b []byte) error {
  190. return xxx_messageInfo_StatusMessage.Unmarshal(m, b)
  191. }
  192. func (m *StatusMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  193. return xxx_messageInfo_StatusMessage.Marshal(b, m, deterministic)
  194. }
  195. func (dst *StatusMessage) XXX_Merge(src proto.Message) {
  196. xxx_messageInfo_StatusMessage.Merge(dst, src)
  197. }
  198. func (m *StatusMessage) XXX_Size() int {
  199. return xxx_messageInfo_StatusMessage.Size(m)
  200. }
  201. func (m *StatusMessage) XXX_DiscardUnknown() {
  202. xxx_messageInfo_StatusMessage.DiscardUnknown(m)
  203. }
  204. var xxx_messageInfo_StatusMessage proto.InternalMessageInfo
  205. func (m *StatusMessage) GetIsError() bool {
  206. if m != nil {
  207. return m.IsError
  208. }
  209. return false
  210. }
  211. func (m *StatusMessage) GetRefersTo() StatusMessage_Reference {
  212. if m != nil {
  213. return m.RefersTo
  214. }
  215. return StatusMessage_UNSPECIFIED
  216. }
  217. func (m *StatusMessage) GetDescription() *FormatMessage {
  218. if m != nil {
  219. return m.Description
  220. }
  221. return nil
  222. }
  223. // Represents a location in the source code.
  224. type SourceLocation struct {
  225. // Path to the source file within the source context of the target binary.
  226. Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
  227. // Line inside the file. The first line in the file has the value `1`.
  228. Line int32 `protobuf:"varint,2,opt,name=line,proto3" json:"line,omitempty"`
  229. // Column within a line. The first column in a line as the value `1`.
  230. // Agents that do not support setting breakpoints on specific columns ignore
  231. // this field.
  232. Column int32 `protobuf:"varint,3,opt,name=column,proto3" json:"column,omitempty"`
  233. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  234. XXX_unrecognized []byte `json:"-"`
  235. XXX_sizecache int32 `json:"-"`
  236. }
  237. func (m *SourceLocation) Reset() { *m = SourceLocation{} }
  238. func (m *SourceLocation) String() string { return proto.CompactTextString(m) }
  239. func (*SourceLocation) ProtoMessage() {}
  240. func (*SourceLocation) Descriptor() ([]byte, []int) {
  241. return fileDescriptor_data_821f79f55e9f1289, []int{2}
  242. }
  243. func (m *SourceLocation) XXX_Unmarshal(b []byte) error {
  244. return xxx_messageInfo_SourceLocation.Unmarshal(m, b)
  245. }
  246. func (m *SourceLocation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  247. return xxx_messageInfo_SourceLocation.Marshal(b, m, deterministic)
  248. }
  249. func (dst *SourceLocation) XXX_Merge(src proto.Message) {
  250. xxx_messageInfo_SourceLocation.Merge(dst, src)
  251. }
  252. func (m *SourceLocation) XXX_Size() int {
  253. return xxx_messageInfo_SourceLocation.Size(m)
  254. }
  255. func (m *SourceLocation) XXX_DiscardUnknown() {
  256. xxx_messageInfo_SourceLocation.DiscardUnknown(m)
  257. }
  258. var xxx_messageInfo_SourceLocation proto.InternalMessageInfo
  259. func (m *SourceLocation) GetPath() string {
  260. if m != nil {
  261. return m.Path
  262. }
  263. return ""
  264. }
  265. func (m *SourceLocation) GetLine() int32 {
  266. if m != nil {
  267. return m.Line
  268. }
  269. return 0
  270. }
  271. func (m *SourceLocation) GetColumn() int32 {
  272. if m != nil {
  273. return m.Column
  274. }
  275. return 0
  276. }
  277. // Represents a variable or an argument possibly of a compound object type.
  278. // Note how the following variables are represented:
  279. //
  280. // 1) A simple variable:
  281. //
  282. // int x = 5
  283. //
  284. // { name: "x", value: "5", type: "int" } // Captured variable
  285. //
  286. // 2) A compound object:
  287. //
  288. // struct T {
  289. // int m1;
  290. // int m2;
  291. // };
  292. // T x = { 3, 7 };
  293. //
  294. // { // Captured variable
  295. // name: "x",
  296. // type: "T",
  297. // members { name: "m1", value: "3", type: "int" },
  298. // members { name: "m2", value: "7", type: "int" }
  299. // }
  300. //
  301. // 3) A pointer where the pointee was captured:
  302. //
  303. // T x = { 3, 7 };
  304. // T* p = &x;
  305. //
  306. // { // Captured variable
  307. // name: "p",
  308. // type: "T*",
  309. // value: "0x00500500",
  310. // members { name: "m1", value: "3", type: "int" },
  311. // members { name: "m2", value: "7", type: "int" }
  312. // }
  313. //
  314. // 4) A pointer where the pointee was not captured:
  315. //
  316. // T* p = new T;
  317. //
  318. // { // Captured variable
  319. // name: "p",
  320. // type: "T*",
  321. // value: "0x00400400"
  322. // status { is_error: true, description { format: "unavailable" } }
  323. // }
  324. //
  325. // The status should describe the reason for the missing value,
  326. // such as `<optimized out>`, `<inaccessible>`, `<pointers limit reached>`.
  327. //
  328. // Note that a null pointer should not have members.
  329. //
  330. // 5) An unnamed value:
  331. //
  332. // int* p = new int(7);
  333. //
  334. // { // Captured variable
  335. // name: "p",
  336. // value: "0x00500500",
  337. // type: "int*",
  338. // members { value: "7", type: "int" } }
  339. //
  340. // 6) An unnamed pointer where the pointee was not captured:
  341. //
  342. // int* p = new int(7);
  343. // int** pp = &p;
  344. //
  345. // { // Captured variable
  346. // name: "pp",
  347. // value: "0x00500500",
  348. // type: "int**",
  349. // members {
  350. // value: "0x00400400",
  351. // type: "int*"
  352. // status {
  353. // is_error: true,
  354. // description: { format: "unavailable" } }
  355. // }
  356. // }
  357. // }
  358. //
  359. // To optimize computation, memory and network traffic, variables that
  360. // repeat in the output multiple times can be stored once in a shared
  361. // variable table and be referenced using the `var_table_index` field. The
  362. // variables stored in the shared table are nameless and are essentially
  363. // a partition of the complete variable. To reconstruct the complete
  364. // variable, merge the referencing variable with the referenced variable.
  365. //
  366. // When using the shared variable table, the following variables:
  367. //
  368. // T x = { 3, 7 };
  369. // T* p = &x;
  370. // T& r = x;
  371. //
  372. // { name: "x", var_table_index: 3, type: "T" } // Captured variables
  373. // { name: "p", value "0x00500500", type="T*", var_table_index: 3 }
  374. // { name: "r", type="T&", var_table_index: 3 }
  375. //
  376. // { // Shared variable table entry #3:
  377. // members { name: "m1", value: "3", type: "int" },
  378. // members { name: "m2", value: "7", type: "int" }
  379. // }
  380. //
  381. // Note that the pointer address is stored with the referencing variable
  382. // and not with the referenced variable. This allows the referenced variable
  383. // to be shared between pointers and references.
  384. //
  385. // The type field is optional. The debugger agent may or may not support it.
  386. type Variable struct {
  387. // Name of the variable, if any.
  388. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  389. // Simple value of the variable.
  390. Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  391. // Variable type (e.g. `MyClass`). If the variable is split with
  392. // `var_table_index`, `type` goes next to `value`. The interpretation of
  393. // a type is agent specific. It is recommended to include the dynamic type
  394. // rather than a static type of an object.
  395. Type string `protobuf:"bytes,6,opt,name=type,proto3" json:"type,omitempty"`
  396. // Members contained or pointed to by the variable.
  397. Members []*Variable `protobuf:"bytes,3,rep,name=members,proto3" json:"members,omitempty"`
  398. // Reference to a variable in the shared variable table. More than
  399. // one variable can reference the same variable in the table. The
  400. // `var_table_index` field is an index into `variable_table` in Breakpoint.
  401. VarTableIndex *wrappers.Int32Value `protobuf:"bytes,4,opt,name=var_table_index,json=varTableIndex,proto3" json:"var_table_index,omitempty"`
  402. // Status associated with the variable. This field will usually stay
  403. // unset. A status of a single variable only applies to that variable or
  404. // expression. The rest of breakpoint data still remains valid. Variables
  405. // might be reported in error state even when breakpoint is not in final
  406. // state.
  407. //
  408. // The message may refer to variable name with `refers_to` set to
  409. // `VARIABLE_NAME`. Alternatively `refers_to` will be set to `VARIABLE_VALUE`.
  410. // In either case variable value and members will be unset.
  411. //
  412. // Example of error message applied to name: `Invalid expression syntax`.
  413. //
  414. // Example of information message applied to value: `Not captured`.
  415. //
  416. // Examples of error message applied to value:
  417. //
  418. // * `Malformed string`,
  419. // * `Field f not found in class C`
  420. // * `Null pointer dereference`
  421. Status *StatusMessage `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
  422. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  423. XXX_unrecognized []byte `json:"-"`
  424. XXX_sizecache int32 `json:"-"`
  425. }
  426. func (m *Variable) Reset() { *m = Variable{} }
  427. func (m *Variable) String() string { return proto.CompactTextString(m) }
  428. func (*Variable) ProtoMessage() {}
  429. func (*Variable) Descriptor() ([]byte, []int) {
  430. return fileDescriptor_data_821f79f55e9f1289, []int{3}
  431. }
  432. func (m *Variable) XXX_Unmarshal(b []byte) error {
  433. return xxx_messageInfo_Variable.Unmarshal(m, b)
  434. }
  435. func (m *Variable) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  436. return xxx_messageInfo_Variable.Marshal(b, m, deterministic)
  437. }
  438. func (dst *Variable) XXX_Merge(src proto.Message) {
  439. xxx_messageInfo_Variable.Merge(dst, src)
  440. }
  441. func (m *Variable) XXX_Size() int {
  442. return xxx_messageInfo_Variable.Size(m)
  443. }
  444. func (m *Variable) XXX_DiscardUnknown() {
  445. xxx_messageInfo_Variable.DiscardUnknown(m)
  446. }
  447. var xxx_messageInfo_Variable proto.InternalMessageInfo
  448. func (m *Variable) GetName() string {
  449. if m != nil {
  450. return m.Name
  451. }
  452. return ""
  453. }
  454. func (m *Variable) GetValue() string {
  455. if m != nil {
  456. return m.Value
  457. }
  458. return ""
  459. }
  460. func (m *Variable) GetType() string {
  461. if m != nil {
  462. return m.Type
  463. }
  464. return ""
  465. }
  466. func (m *Variable) GetMembers() []*Variable {
  467. if m != nil {
  468. return m.Members
  469. }
  470. return nil
  471. }
  472. func (m *Variable) GetVarTableIndex() *wrappers.Int32Value {
  473. if m != nil {
  474. return m.VarTableIndex
  475. }
  476. return nil
  477. }
  478. func (m *Variable) GetStatus() *StatusMessage {
  479. if m != nil {
  480. return m.Status
  481. }
  482. return nil
  483. }
  484. // Represents a stack frame context.
  485. type StackFrame struct {
  486. // Demangled function name at the call site.
  487. Function string `protobuf:"bytes,1,opt,name=function,proto3" json:"function,omitempty"`
  488. // Source location of the call site.
  489. Location *SourceLocation `protobuf:"bytes,2,opt,name=location,proto3" json:"location,omitempty"`
  490. // Set of arguments passed to this function.
  491. // Note that this might not be populated for all stack frames.
  492. Arguments []*Variable `protobuf:"bytes,3,rep,name=arguments,proto3" json:"arguments,omitempty"`
  493. // Set of local variables at the stack frame location.
  494. // Note that this might not be populated for all stack frames.
  495. Locals []*Variable `protobuf:"bytes,4,rep,name=locals,proto3" json:"locals,omitempty"`
  496. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  497. XXX_unrecognized []byte `json:"-"`
  498. XXX_sizecache int32 `json:"-"`
  499. }
  500. func (m *StackFrame) Reset() { *m = StackFrame{} }
  501. func (m *StackFrame) String() string { return proto.CompactTextString(m) }
  502. func (*StackFrame) ProtoMessage() {}
  503. func (*StackFrame) Descriptor() ([]byte, []int) {
  504. return fileDescriptor_data_821f79f55e9f1289, []int{4}
  505. }
  506. func (m *StackFrame) XXX_Unmarshal(b []byte) error {
  507. return xxx_messageInfo_StackFrame.Unmarshal(m, b)
  508. }
  509. func (m *StackFrame) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  510. return xxx_messageInfo_StackFrame.Marshal(b, m, deterministic)
  511. }
  512. func (dst *StackFrame) XXX_Merge(src proto.Message) {
  513. xxx_messageInfo_StackFrame.Merge(dst, src)
  514. }
  515. func (m *StackFrame) XXX_Size() int {
  516. return xxx_messageInfo_StackFrame.Size(m)
  517. }
  518. func (m *StackFrame) XXX_DiscardUnknown() {
  519. xxx_messageInfo_StackFrame.DiscardUnknown(m)
  520. }
  521. var xxx_messageInfo_StackFrame proto.InternalMessageInfo
  522. func (m *StackFrame) GetFunction() string {
  523. if m != nil {
  524. return m.Function
  525. }
  526. return ""
  527. }
  528. func (m *StackFrame) GetLocation() *SourceLocation {
  529. if m != nil {
  530. return m.Location
  531. }
  532. return nil
  533. }
  534. func (m *StackFrame) GetArguments() []*Variable {
  535. if m != nil {
  536. return m.Arguments
  537. }
  538. return nil
  539. }
  540. func (m *StackFrame) GetLocals() []*Variable {
  541. if m != nil {
  542. return m.Locals
  543. }
  544. return nil
  545. }
  546. // Represents the breakpoint specification, status and results.
  547. type Breakpoint struct {
  548. // Breakpoint identifier, unique in the scope of the debuggee.
  549. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
  550. // Action that the agent should perform when the code at the
  551. // breakpoint location is hit.
  552. Action Breakpoint_Action `protobuf:"varint,13,opt,name=action,proto3,enum=google.devtools.clouddebugger.v2.Breakpoint_Action" json:"action,omitempty"`
  553. // Breakpoint source location.
  554. Location *SourceLocation `protobuf:"bytes,2,opt,name=location,proto3" json:"location,omitempty"`
  555. // Condition that triggers the breakpoint.
  556. // The condition is a compound boolean expression composed using expressions
  557. // in a programming language at the source location.
  558. Condition string `protobuf:"bytes,3,opt,name=condition,proto3" json:"condition,omitempty"`
  559. // List of read-only expressions to evaluate at the breakpoint location.
  560. // The expressions are composed using expressions in the programming language
  561. // at the source location. If the breakpoint action is `LOG`, the evaluated
  562. // expressions are included in log statements.
  563. Expressions []string `protobuf:"bytes,4,rep,name=expressions,proto3" json:"expressions,omitempty"`
  564. // Only relevant when action is `LOG`. Defines the message to log when
  565. // the breakpoint hits. The message may include parameter placeholders `$0`,
  566. // `$1`, etc. These placeholders are replaced with the evaluated value
  567. // of the appropriate expression. Expressions not referenced in
  568. // `log_message_format` are not logged.
  569. //
  570. // Example: `Message received, id = $0, count = $1` with
  571. // `expressions` = `[ message.id, message.count ]`.
  572. LogMessageFormat string `protobuf:"bytes,14,opt,name=log_message_format,json=logMessageFormat,proto3" json:"log_message_format,omitempty"`
  573. // Indicates the severity of the log. Only relevant when action is `LOG`.
  574. LogLevel Breakpoint_LogLevel `protobuf:"varint,15,opt,name=log_level,json=logLevel,proto3,enum=google.devtools.clouddebugger.v2.Breakpoint_LogLevel" json:"log_level,omitempty"`
  575. // When true, indicates that this is a final result and the
  576. // breakpoint state will not change from here on.
  577. IsFinalState bool `protobuf:"varint,5,opt,name=is_final_state,json=isFinalState,proto3" json:"is_final_state,omitempty"`
  578. // Time this breakpoint was created by the server in seconds resolution.
  579. CreateTime *timestamp.Timestamp `protobuf:"bytes,11,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
  580. // Time this breakpoint was finalized as seen by the server in seconds
  581. // resolution.
  582. FinalTime *timestamp.Timestamp `protobuf:"bytes,12,opt,name=final_time,json=finalTime,proto3" json:"final_time,omitempty"`
  583. // E-mail address of the user that created this breakpoint
  584. UserEmail string `protobuf:"bytes,16,opt,name=user_email,json=userEmail,proto3" json:"user_email,omitempty"`
  585. // Breakpoint status.
  586. //
  587. // The status includes an error flag and a human readable message.
  588. // This field is usually unset. The message can be either
  589. // informational or an error message. Regardless, clients should always
  590. // display the text message back to the user.
  591. //
  592. // Error status indicates complete failure of the breakpoint.
  593. //
  594. // Example (non-final state): `Still loading symbols...`
  595. //
  596. // Examples (final state):
  597. //
  598. // * `Invalid line number` referring to location
  599. // * `Field f not found in class C` referring to condition
  600. Status *StatusMessage `protobuf:"bytes,10,opt,name=status,proto3" json:"status,omitempty"`
  601. // The stack at breakpoint time, where stack_frames[0] represents the most
  602. // recently entered function.
  603. StackFrames []*StackFrame `protobuf:"bytes,7,rep,name=stack_frames,json=stackFrames,proto3" json:"stack_frames,omitempty"`
  604. // Values of evaluated expressions at breakpoint time.
  605. // The evaluated expressions appear in exactly the same order they
  606. // are listed in the `expressions` field.
  607. // The `name` field holds the original expression text, the `value` or
  608. // `members` field holds the result of the evaluated expression.
  609. // If the expression cannot be evaluated, the `status` inside the `Variable`
  610. // will indicate an error and contain the error text.
  611. EvaluatedExpressions []*Variable `protobuf:"bytes,8,rep,name=evaluated_expressions,json=evaluatedExpressions,proto3" json:"evaluated_expressions,omitempty"`
  612. // The `variable_table` exists to aid with computation, memory and network
  613. // traffic optimization. It enables storing a variable once and reference
  614. // it from multiple variables, including variables stored in the
  615. // `variable_table` itself.
  616. // For example, the same `this` object, which may appear at many levels of
  617. // the stack, can have all of its data stored once in this table. The
  618. // stack frame variables then would hold only a reference to it.
  619. //
  620. // The variable `var_table_index` field is an index into this repeated field.
  621. // The stored objects are nameless and get their name from the referencing
  622. // variable. The effective variable is a merge of the referencing variable
  623. // and the referenced variable.
  624. VariableTable []*Variable `protobuf:"bytes,9,rep,name=variable_table,json=variableTable,proto3" json:"variable_table,omitempty"`
  625. // A set of custom breakpoint properties, populated by the agent, to be
  626. // displayed to the user.
  627. Labels map[string]string `protobuf:"bytes,17,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  628. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  629. XXX_unrecognized []byte `json:"-"`
  630. XXX_sizecache int32 `json:"-"`
  631. }
  632. func (m *Breakpoint) Reset() { *m = Breakpoint{} }
  633. func (m *Breakpoint) String() string { return proto.CompactTextString(m) }
  634. func (*Breakpoint) ProtoMessage() {}
  635. func (*Breakpoint) Descriptor() ([]byte, []int) {
  636. return fileDescriptor_data_821f79f55e9f1289, []int{5}
  637. }
  638. func (m *Breakpoint) XXX_Unmarshal(b []byte) error {
  639. return xxx_messageInfo_Breakpoint.Unmarshal(m, b)
  640. }
  641. func (m *Breakpoint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  642. return xxx_messageInfo_Breakpoint.Marshal(b, m, deterministic)
  643. }
  644. func (dst *Breakpoint) XXX_Merge(src proto.Message) {
  645. xxx_messageInfo_Breakpoint.Merge(dst, src)
  646. }
  647. func (m *Breakpoint) XXX_Size() int {
  648. return xxx_messageInfo_Breakpoint.Size(m)
  649. }
  650. func (m *Breakpoint) XXX_DiscardUnknown() {
  651. xxx_messageInfo_Breakpoint.DiscardUnknown(m)
  652. }
  653. var xxx_messageInfo_Breakpoint proto.InternalMessageInfo
  654. func (m *Breakpoint) GetId() string {
  655. if m != nil {
  656. return m.Id
  657. }
  658. return ""
  659. }
  660. func (m *Breakpoint) GetAction() Breakpoint_Action {
  661. if m != nil {
  662. return m.Action
  663. }
  664. return Breakpoint_CAPTURE
  665. }
  666. func (m *Breakpoint) GetLocation() *SourceLocation {
  667. if m != nil {
  668. return m.Location
  669. }
  670. return nil
  671. }
  672. func (m *Breakpoint) GetCondition() string {
  673. if m != nil {
  674. return m.Condition
  675. }
  676. return ""
  677. }
  678. func (m *Breakpoint) GetExpressions() []string {
  679. if m != nil {
  680. return m.Expressions
  681. }
  682. return nil
  683. }
  684. func (m *Breakpoint) GetLogMessageFormat() string {
  685. if m != nil {
  686. return m.LogMessageFormat
  687. }
  688. return ""
  689. }
  690. func (m *Breakpoint) GetLogLevel() Breakpoint_LogLevel {
  691. if m != nil {
  692. return m.LogLevel
  693. }
  694. return Breakpoint_INFO
  695. }
  696. func (m *Breakpoint) GetIsFinalState() bool {
  697. if m != nil {
  698. return m.IsFinalState
  699. }
  700. return false
  701. }
  702. func (m *Breakpoint) GetCreateTime() *timestamp.Timestamp {
  703. if m != nil {
  704. return m.CreateTime
  705. }
  706. return nil
  707. }
  708. func (m *Breakpoint) GetFinalTime() *timestamp.Timestamp {
  709. if m != nil {
  710. return m.FinalTime
  711. }
  712. return nil
  713. }
  714. func (m *Breakpoint) GetUserEmail() string {
  715. if m != nil {
  716. return m.UserEmail
  717. }
  718. return ""
  719. }
  720. func (m *Breakpoint) GetStatus() *StatusMessage {
  721. if m != nil {
  722. return m.Status
  723. }
  724. return nil
  725. }
  726. func (m *Breakpoint) GetStackFrames() []*StackFrame {
  727. if m != nil {
  728. return m.StackFrames
  729. }
  730. return nil
  731. }
  732. func (m *Breakpoint) GetEvaluatedExpressions() []*Variable {
  733. if m != nil {
  734. return m.EvaluatedExpressions
  735. }
  736. return nil
  737. }
  738. func (m *Breakpoint) GetVariableTable() []*Variable {
  739. if m != nil {
  740. return m.VariableTable
  741. }
  742. return nil
  743. }
  744. func (m *Breakpoint) GetLabels() map[string]string {
  745. if m != nil {
  746. return m.Labels
  747. }
  748. return nil
  749. }
  750. // Represents the debugged application. The application may include one or more
  751. // replicated processes executing the same code. Each of these processes is
  752. // attached with a debugger agent, carrying out the debugging commands.
  753. // Agents attached to the same debuggee identify themselves as such by using
  754. // exactly the same Debuggee message value when registering.
  755. type Debuggee struct {
  756. // Unique identifier for the debuggee generated by the controller service.
  757. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
  758. // Project the debuggee is associated with.
  759. // Use project number or id when registering a Google Cloud Platform project.
  760. Project string `protobuf:"bytes,2,opt,name=project,proto3" json:"project,omitempty"`
  761. // Uniquifier to further distinguish the application.
  762. // It is possible that different applications might have identical values in
  763. // the debuggee message, thus, incorrectly identified as a single application
  764. // by the Controller service. This field adds salt to further distinguish the
  765. // application. Agents should consider seeding this field with value that
  766. // identifies the code, binary, configuration and environment.
  767. Uniquifier string `protobuf:"bytes,3,opt,name=uniquifier,proto3" json:"uniquifier,omitempty"`
  768. // Human readable description of the debuggee.
  769. // Including a human-readable project name, environment name and version
  770. // information is recommended.
  771. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
  772. // If set to `true`, indicates that Controller service does not detect any
  773. // activity from the debuggee agents and the application is possibly stopped.
  774. IsInactive bool `protobuf:"varint,5,opt,name=is_inactive,json=isInactive,proto3" json:"is_inactive,omitempty"`
  775. // Version ID of the agent.
  776. // Schema: `domain/language-platform/vmajor.minor` (for example
  777. // `google.com/java-gcp/v1.1`).
  778. AgentVersion string `protobuf:"bytes,6,opt,name=agent_version,json=agentVersion,proto3" json:"agent_version,omitempty"`
  779. // If set to `true`, indicates that the agent should disable itself and
  780. // detach from the debuggee.
  781. IsDisabled bool `protobuf:"varint,7,opt,name=is_disabled,json=isDisabled,proto3" json:"is_disabled,omitempty"`
  782. // Human readable message to be displayed to the user about this debuggee.
  783. // Absence of this field indicates no status. The message can be either
  784. // informational or an error status.
  785. Status *StatusMessage `protobuf:"bytes,8,opt,name=status,proto3" json:"status,omitempty"`
  786. // References to the locations and revisions of the source code used in the
  787. // deployed application.
  788. SourceContexts []*v1.SourceContext `protobuf:"bytes,9,rep,name=source_contexts,json=sourceContexts,proto3" json:"source_contexts,omitempty"`
  789. // References to the locations and revisions of the source code used in the
  790. // deployed application.
  791. ExtSourceContexts []*v1.ExtendedSourceContext `protobuf:"bytes,13,rep,name=ext_source_contexts,json=extSourceContexts,proto3" json:"ext_source_contexts,omitempty"` // Deprecated: Do not use.
  792. // A set of custom debuggee properties, populated by the agent, to be
  793. // displayed to the user.
  794. 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"`
  795. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  796. XXX_unrecognized []byte `json:"-"`
  797. XXX_sizecache int32 `json:"-"`
  798. }
  799. func (m *Debuggee) Reset() { *m = Debuggee{} }
  800. func (m *Debuggee) String() string { return proto.CompactTextString(m) }
  801. func (*Debuggee) ProtoMessage() {}
  802. func (*Debuggee) Descriptor() ([]byte, []int) {
  803. return fileDescriptor_data_821f79f55e9f1289, []int{6}
  804. }
  805. func (m *Debuggee) XXX_Unmarshal(b []byte) error {
  806. return xxx_messageInfo_Debuggee.Unmarshal(m, b)
  807. }
  808. func (m *Debuggee) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  809. return xxx_messageInfo_Debuggee.Marshal(b, m, deterministic)
  810. }
  811. func (dst *Debuggee) XXX_Merge(src proto.Message) {
  812. xxx_messageInfo_Debuggee.Merge(dst, src)
  813. }
  814. func (m *Debuggee) XXX_Size() int {
  815. return xxx_messageInfo_Debuggee.Size(m)
  816. }
  817. func (m *Debuggee) XXX_DiscardUnknown() {
  818. xxx_messageInfo_Debuggee.DiscardUnknown(m)
  819. }
  820. var xxx_messageInfo_Debuggee proto.InternalMessageInfo
  821. func (m *Debuggee) GetId() string {
  822. if m != nil {
  823. return m.Id
  824. }
  825. return ""
  826. }
  827. func (m *Debuggee) GetProject() string {
  828. if m != nil {
  829. return m.Project
  830. }
  831. return ""
  832. }
  833. func (m *Debuggee) GetUniquifier() string {
  834. if m != nil {
  835. return m.Uniquifier
  836. }
  837. return ""
  838. }
  839. func (m *Debuggee) GetDescription() string {
  840. if m != nil {
  841. return m.Description
  842. }
  843. return ""
  844. }
  845. func (m *Debuggee) GetIsInactive() bool {
  846. if m != nil {
  847. return m.IsInactive
  848. }
  849. return false
  850. }
  851. func (m *Debuggee) GetAgentVersion() string {
  852. if m != nil {
  853. return m.AgentVersion
  854. }
  855. return ""
  856. }
  857. func (m *Debuggee) GetIsDisabled() bool {
  858. if m != nil {
  859. return m.IsDisabled
  860. }
  861. return false
  862. }
  863. func (m *Debuggee) GetStatus() *StatusMessage {
  864. if m != nil {
  865. return m.Status
  866. }
  867. return nil
  868. }
  869. func (m *Debuggee) GetSourceContexts() []*v1.SourceContext {
  870. if m != nil {
  871. return m.SourceContexts
  872. }
  873. return nil
  874. }
  875. // Deprecated: Do not use.
  876. func (m *Debuggee) GetExtSourceContexts() []*v1.ExtendedSourceContext {
  877. if m != nil {
  878. return m.ExtSourceContexts
  879. }
  880. return nil
  881. }
  882. func (m *Debuggee) GetLabels() map[string]string {
  883. if m != nil {
  884. return m.Labels
  885. }
  886. return nil
  887. }
  888. func init() {
  889. proto.RegisterType((*FormatMessage)(nil), "google.devtools.clouddebugger.v2.FormatMessage")
  890. proto.RegisterType((*StatusMessage)(nil), "google.devtools.clouddebugger.v2.StatusMessage")
  891. proto.RegisterType((*SourceLocation)(nil), "google.devtools.clouddebugger.v2.SourceLocation")
  892. proto.RegisterType((*Variable)(nil), "google.devtools.clouddebugger.v2.Variable")
  893. proto.RegisterType((*StackFrame)(nil), "google.devtools.clouddebugger.v2.StackFrame")
  894. proto.RegisterType((*Breakpoint)(nil), "google.devtools.clouddebugger.v2.Breakpoint")
  895. proto.RegisterMapType((map[string]string)(nil), "google.devtools.clouddebugger.v2.Breakpoint.LabelsEntry")
  896. proto.RegisterType((*Debuggee)(nil), "google.devtools.clouddebugger.v2.Debuggee")
  897. proto.RegisterMapType((map[string]string)(nil), "google.devtools.clouddebugger.v2.Debuggee.LabelsEntry")
  898. proto.RegisterEnum("google.devtools.clouddebugger.v2.StatusMessage_Reference", StatusMessage_Reference_name, StatusMessage_Reference_value)
  899. proto.RegisterEnum("google.devtools.clouddebugger.v2.Breakpoint_Action", Breakpoint_Action_name, Breakpoint_Action_value)
  900. proto.RegisterEnum("google.devtools.clouddebugger.v2.Breakpoint_LogLevel", Breakpoint_LogLevel_name, Breakpoint_LogLevel_value)
  901. }
  902. func init() {
  903. proto.RegisterFile("google/devtools/clouddebugger/v2/data.proto", fileDescriptor_data_821f79f55e9f1289)
  904. }
  905. var fileDescriptor_data_821f79f55e9f1289 = []byte{
  906. // 1293 bytes of a gzipped FileDescriptorProto
  907. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xdd, 0x72, 0xda, 0x46,
  908. 0x14, 0x0e, 0x3f, 0x06, 0xe9, 0x60, 0x30, 0xd9, 0x26, 0x1d, 0xc5, 0x4d, 0x1d, 0x86, 0xe6, 0xc2,
  909. 0xd3, 0x66, 0x20, 0x21, 0xd3, 0x4e, 0xd2, 0x5c, 0x01, 0x96, 0x5d, 0x26, 0x04, 0xc8, 0x62, 0xd3,
  910. 0x4e, 0x27, 0x33, 0x9a, 0x35, 0x5a, 0x54, 0x35, 0x42, 0xa2, 0xbb, 0x0b, 0x75, 0xee, 0xf3, 0x18,
  911. 0x7d, 0x82, 0x4e, 0xdf, 0xa0, 0x6f, 0xd0, 0x97, 0xe8, 0x7d, 0x9f, 0xa0, 0x97, 0x9d, 0x5d, 0xad,
  912. 0x88, 0x48, 0x9a, 0x12, 0x37, 0xb9, 0xdb, 0xfd, 0xce, 0x39, 0xdf, 0x8a, 0x6f, 0xbf, 0x73, 0x24,
  913. 0xe0, 0x0b, 0x2f, 0x8a, 0xbc, 0x80, 0x36, 0x5d, 0xba, 0x12, 0x51, 0x14, 0xf0, 0xe6, 0x34, 0x88,
  914. 0x96, 0xae, 0x4b, 0xcf, 0x97, 0x9e, 0x47, 0x59, 0x73, 0xd5, 0x6a, 0xba, 0x44, 0x90, 0xc6, 0x82,
  915. 0x45, 0x22, 0x42, 0xb5, 0x38, 0xb9, 0x91, 0x24, 0x37, 0x36, 0x92, 0x1b, 0xab, 0xd6, 0xfe, 0x4d,
  916. 0x4d, 0x47, 0x16, 0x7e, 0x93, 0x84, 0x61, 0x24, 0x88, 0xf0, 0xa3, 0x90, 0xc7, 0xf5, 0xfb, 0x8d,
  917. 0xd7, 0x0f, 0xe3, 0xd1, 0x92, 0x4d, 0x69, 0x73, 0x75, 0x4f, 0xaf, 0x9c, 0x69, 0x14, 0x0a, 0x7a,
  918. 0x21, 0x74, 0xfe, 0x81, 0xce, 0x57, 0xbb, 0xf3, 0xe5, 0xac, 0xe9, 0x2e, 0x99, 0x22, 0xd4, 0xf1,
  919. 0x5b, 0xaf, 0xc7, 0x85, 0x3f, 0xa7, 0x5c, 0x90, 0xf9, 0xe2, 0x6d, 0x04, 0x3f, 0x33, 0xb2, 0x58,
  920. 0x50, 0xa6, 0x1f, 0xa8, 0x7e, 0x02, 0xe5, 0xe3, 0x88, 0xcd, 0x89, 0x78, 0x42, 0x39, 0x27, 0x1e,
  921. 0x45, 0x1f, 0x43, 0x61, 0xa6, 0x00, 0x2b, 0x53, 0xcb, 0x1c, 0x9a, 0x58, 0xef, 0xd0, 0x01, 0xc0,
  922. 0x82, 0x30, 0x32, 0xa7, 0x82, 0x32, 0x6e, 0x65, 0x6b, 0xb9, 0x43, 0x13, 0xa7, 0x90, 0xfa, 0xcb,
  923. 0x1c, 0x94, 0xc7, 0x82, 0x88, 0x25, 0x4f, 0x98, 0x6e, 0x80, 0xe1, 0x73, 0x87, 0x32, 0x16, 0x31,
  924. 0xc5, 0x65, 0xe0, 0xa2, 0xcf, 0x6d, 0xb9, 0x45, 0x13, 0x30, 0x19, 0x9d, 0x51, 0xc6, 0x1d, 0x11,
  925. 0x59, 0xd9, 0x5a, 0xe6, 0xb0, 0xd2, 0x7a, 0xd8, 0xd8, 0x26, 0x6d, 0x63, 0x83, 0xbe, 0x81, 0x25,
  926. 0x01, 0x0d, 0xa7, 0x14, 0x1b, 0x31, 0xd7, 0x69, 0x84, 0x9e, 0x42, 0xc9, 0xa5, 0x7c, 0xca, 0xfc,
  927. 0x85, 0xd4, 0xc8, 0xca, 0xd5, 0x32, 0x87, 0xa5, 0x56, 0x73, 0x3b, 0xf3, 0x86, 0x04, 0x38, 0xcd,
  928. 0x51, 0xff, 0x2d, 0x03, 0xe6, 0xfa, 0x28, 0xb4, 0x07, 0xa5, 0xb3, 0xc1, 0x78, 0x64, 0x77, 0x7b,
  929. 0xc7, 0x3d, 0xfb, 0xa8, 0x7a, 0x05, 0x1d, 0xc0, 0x7e, 0x07, 0xdb, 0xed, 0xc7, 0xa3, 0x61, 0x6f,
  930. 0x70, 0xea, 0x8c, 0x87, 0x67, 0xb8, 0x6b, 0x3b, 0xfd, 0x61, 0xb7, 0x7d, 0xda, 0x1b, 0x0e, 0xaa,
  931. 0x39, 0x64, 0xc1, 0xb5, 0x54, 0xbc, 0x3b, 0x1c, 0x1c, 0xf5, 0x54, 0x24, 0x8f, 0x6e, 0xc0, 0xf5,
  932. 0x54, 0xc4, 0xfe, 0x6e, 0x84, 0xed, 0xf1, 0x58, 0x86, 0x8a, 0x08, 0x41, 0x25, 0x15, 0x6a, 0x9f,
  933. 0xd8, 0x55, 0x03, 0x5d, 0x85, 0xf2, 0xa4, 0x8d, 0x7b, 0xed, 0x4e, 0xdf, 0x76, 0x06, 0xed, 0x27,
  934. 0x76, 0x75, 0x47, 0xa6, 0xad, 0xa1, 0x49, 0xbb, 0x7f, 0x66, 0x57, 0x0b, 0xf5, 0x11, 0x54, 0xc6,
  935. 0xca, 0x48, 0xfd, 0x68, 0xaa, 0x8c, 0x82, 0x10, 0xe4, 0x17, 0x44, 0xfc, 0xa0, 0xaf, 0x53, 0xad,
  936. 0x25, 0x16, 0xf8, 0x21, 0x55, 0xd2, 0xef, 0x60, 0xb5, 0x96, 0x17, 0x3f, 0x8d, 0x82, 0xe5, 0x3c,
  937. 0x96, 0x6d, 0x07, 0xeb, 0x5d, 0xfd, 0x97, 0x2c, 0x18, 0x13, 0xc2, 0x7c, 0x72, 0x1e, 0x50, 0x59,
  938. 0x18, 0x92, 0x39, 0x4d, 0xc8, 0xe4, 0x1a, 0x5d, 0x83, 0x9d, 0x15, 0x09, 0x96, 0x31, 0x9b, 0x89,
  939. 0xe3, 0x8d, 0xcc, 0x14, 0x2f, 0x16, 0xd4, 0x2a, 0xc4, 0x99, 0x72, 0x8d, 0x8e, 0xa0, 0x38, 0xa7,
  940. 0xf3, 0x73, 0x69, 0xa0, 0x5c, 0x2d, 0x77, 0x58, 0x6a, 0x7d, 0xbe, 0xfd, 0x6a, 0x92, 0xa3, 0x71,
  941. 0x52, 0x8a, 0xba, 0xb0, 0xb7, 0x22, 0xcc, 0x11, 0x12, 0x75, 0xfc, 0xd0, 0xa5, 0x17, 0x56, 0x5e,
  942. 0x5d, 0xf4, 0x27, 0x09, 0x5b, 0x62, 0xf6, 0x46, 0x2f, 0x14, 0xf7, 0x5b, 0x13, 0xf9, 0x3c, 0xb8,
  943. 0xbc, 0x22, 0xec, 0x54, 0x96, 0xf4, 0x64, 0x05, 0x3a, 0x81, 0x02, 0x57, 0x76, 0xb2, 0x76, 0xde,
  944. 0xd5, 0x24, 0x1b, 0xf6, 0xc3, 0xba, 0xbc, 0xfe, 0x32, 0x0b, 0x30, 0x16, 0x64, 0xfa, 0xfc, 0x58,
  945. 0xb6, 0x02, 0xda, 0x07, 0x63, 0xb6, 0x0c, 0xa7, 0xca, 0x7e, 0xb1, 0x48, 0xeb, 0x3d, 0xea, 0x83,
  946. 0x11, 0xe8, 0x5b, 0x51, 0x5a, 0x95, 0x5a, 0x77, 0xdf, 0xe1, 0xd4, 0x8d, 0xdb, 0xc4, 0x6b, 0x06,
  947. 0xf4, 0x0d, 0x98, 0x84, 0x79, 0xcb, 0x39, 0x0d, 0xc5, 0xff, 0x91, 0xf3, 0x55, 0x31, 0xea, 0x40,
  948. 0x41, 0xb2, 0x06, 0xdc, 0xca, 0x5f, 0x9a, 0x46, 0x57, 0xd6, 0xff, 0x34, 0x00, 0x3a, 0x8c, 0x92,
  949. 0xe7, 0x8b, 0xc8, 0x0f, 0x05, 0xaa, 0x40, 0xd6, 0x77, 0xb5, 0x00, 0x59, 0xdf, 0x45, 0x8f, 0xa1,
  950. 0x40, 0x62, 0x51, 0xca, 0xaa, 0xdb, 0xef, 0x6f, 0x3f, 0xe2, 0x15, 0x5b, 0xa3, 0xad, 0x4a, 0xb1,
  951. 0xa6, 0xf8, 0xc0, 0x3a, 0xde, 0x04, 0x73, 0x1a, 0x85, 0xae, 0xbf, 0x9e, 0x18, 0x26, 0x7e, 0x05,
  952. 0xa0, 0x1a, 0x94, 0xe8, 0xc5, 0x82, 0x51, 0xce, 0xe5, 0x14, 0x57, 0x02, 0x99, 0x38, 0x0d, 0xa1,
  953. 0x3b, 0x80, 0x82, 0xc8, 0x73, 0xe6, 0xb1, 0x2f, 0x1c, 0x3d, 0x3c, 0x2b, 0x8a, 0xa8, 0x1a, 0x44,
  954. 0x9e, 0x36, 0x4c, 0x3c, 0x62, 0x10, 0x06, 0x53, 0x66, 0x07, 0x74, 0x45, 0x03, 0x6b, 0x4f, 0x69,
  955. 0xf1, 0xe5, 0xa5, 0xb4, 0xe8, 0x47, 0x5e, 0x5f, 0x16, 0xcb, 0x5f, 0x10, 0xaf, 0xd0, 0x6d, 0xa8,
  956. 0xf8, 0xdc, 0x99, 0xf9, 0x21, 0x09, 0x1c, 0xe9, 0x4a, 0xaa, 0x3c, 0x6d, 0xe0, 0x5d, 0x9f, 0x1f,
  957. 0x4b, 0x50, 0x1a, 0x97, 0xa2, 0x47, 0x50, 0x9a, 0x32, 0x4a, 0x04, 0x75, 0xe4, 0x3b, 0xc2, 0x2a,
  958. 0x29, 0xe1, 0xf6, 0xdf, 0x68, 0x99, 0xd3, 0xe4, 0x05, 0x82, 0x21, 0x4e, 0x97, 0x00, 0x7a, 0x08,
  959. 0x10, 0xf3, 0xab, 0xda, 0xdd, 0xad, 0xb5, 0xa6, 0xca, 0x56, 0xa5, 0x9f, 0x02, 0x2c, 0x39, 0x65,
  960. 0x0e, 0x9d, 0x13, 0x3f, 0xb0, 0xaa, 0xb1, 0xc0, 0x12, 0xb1, 0x25, 0x90, 0x6a, 0x44, 0x78, 0xaf,
  961. 0x46, 0x44, 0x43, 0xd8, 0xe5, 0xb2, 0x0f, 0x9d, 0x99, 0x6c, 0x44, 0x6e, 0x15, 0x95, 0x97, 0xef,
  962. 0xbc, 0x13, 0x9d, 0xee, 0x5e, 0x5c, 0xe2, 0xeb, 0x35, 0x47, 0x0e, 0x5c, 0xa7, 0x72, 0x96, 0x11,
  963. 0x41, 0x5d, 0x27, 0x6d, 0x02, 0xe3, 0xd2, 0x5d, 0x72, 0x6d, 0x4d, 0x64, 0xa7, 0x9c, 0xf3, 0x14,
  964. 0x2a, 0x2b, 0x9d, 0x11, 0x4f, 0x33, 0xcb, 0xbc, 0x34, 0x73, 0x39, 0x61, 0x50, 0xb3, 0x0d, 0x8d,
  965. 0xa0, 0x10, 0x90, 0x73, 0x1a, 0x70, 0xeb, 0xaa, 0xa2, 0x7a, 0x70, 0x39, 0x6f, 0xa9, 0x52, 0x3b,
  966. 0x14, 0xec, 0x05, 0xd6, 0x3c, 0xfb, 0x0f, 0xa1, 0x94, 0x82, 0x51, 0x15, 0x72, 0xcf, 0xe9, 0x0b,
  967. 0xdd, 0xd9, 0x72, 0xf9, 0xef, 0xe3, 0xff, 0xeb, 0xec, 0x83, 0x4c, 0xfd, 0x00, 0x0a, 0x71, 0xe7,
  968. 0xa2, 0x12, 0x14, 0xbb, 0xed, 0xd1, 0xe9, 0x19, 0xb6, 0xab, 0x57, 0x50, 0x11, 0x72, 0xfd, 0xe1,
  969. 0x49, 0x35, 0x53, 0xbf, 0x03, 0x46, 0xe2, 0x66, 0x64, 0x40, 0xbe, 0x37, 0x38, 0x1e, 0x56, 0xaf,
  970. 0xc8, 0xdc, 0x6f, 0xdb, 0x78, 0xd0, 0x1b, 0x9c, 0x54, 0x33, 0xc8, 0x84, 0x1d, 0x1b, 0xe3, 0x21,
  971. 0xae, 0x66, 0xeb, 0x7f, 0xe5, 0xc1, 0x38, 0x8a, 0x9f, 0x9b, 0xbe, 0x31, 0x5f, 0x2c, 0x28, 0x2e,
  972. 0x58, 0xf4, 0x23, 0x9d, 0x0a, 0xfd, 0x18, 0xc9, 0x56, 0x7e, 0xb7, 0x2c, 0x43, 0xff, 0xa7, 0xa5,
  973. 0x3f, 0xf3, 0x29, 0xd3, 0xfd, 0x9d, 0x42, 0x64, 0x83, 0xa7, 0x3f, 0x19, 0xf2, 0x2a, 0x21, 0x0d,
  974. 0xa1, 0x5b, 0x50, 0xf2, 0xb9, 0xe3, 0x87, 0x72, 0xfa, 0xac, 0x92, 0xde, 0x02, 0x9f, 0xf7, 0x34,
  975. 0x82, 0x3e, 0x83, 0x32, 0xf1, 0x68, 0x28, 0x9c, 0x15, 0x65, 0xf2, 0x66, 0xf5, 0x3b, 0x6f, 0x57,
  976. 0x81, 0x93, 0x18, 0xd3, 0x2c, 0xae, 0xcf, 0xe5, 0x3d, 0xb9, 0x56, 0x31, 0x61, 0x39, 0xd2, 0x48,
  977. 0xaa, 0x11, 0x8c, 0xf7, 0x6b, 0x84, 0xa7, 0xb0, 0xb7, 0xf9, 0x2d, 0xc9, 0xb5, 0xaf, 0x0e, 0xdf,
  978. 0x60, 0x8c, 0xf3, 0x1a, 0xab, 0x7b, 0x7a, 0x3c, 0x76, 0xe3, 0x02, 0x5c, 0xe1, 0xe9, 0x2d, 0x47,
  979. 0x2e, 0x7c, 0x44, 0x2f, 0x84, 0xf3, 0x3a, 0x6d, 0x59, 0xd1, 0xde, 0xfd, 0x0f, 0x5a, 0xfb, 0x42,
  980. 0xd0, 0xd0, 0xa5, 0xee, 0x06, 0x7d, 0x27, 0x6b, 0x65, 0xf0, 0x55, 0x7a, 0x21, 0xc6, 0x9b, 0xa7,
  981. 0x0c, 0xd6, 0xe6, 0x2d, 0x29, 0xe2, 0xaf, 0xb6, 0x2b, 0x90, 0x18, 0xe2, 0x03, 0x5b, 0xb7, 0xf3,
  982. 0x7b, 0x06, 0x6e, 0x4f, 0xa3, 0xf9, 0xd6, 0x07, 0xe8, 0x98, 0x47, 0x44, 0x90, 0x91, 0x1c, 0x80,
  983. 0xa3, 0xcc, 0xf7, 0x4f, 0x74, 0xba, 0x17, 0x05, 0x24, 0xf4, 0x1a, 0x11, 0xf3, 0x9a, 0x1e, 0x0d,
  984. 0xd5, 0x78, 0x6c, 0xc6, 0x21, 0xb2, 0xf0, 0xf9, 0xdb, 0xff, 0x69, 0x3c, 0xda, 0x00, 0xfe, 0xce,
  985. 0x64, 0x7e, 0xcd, 0x5a, 0x27, 0x31, 0x65, 0x57, 0x46, 0x92, 0x9f, 0xcb, 0x1a, 0x93, 0xd6, 0x1f,
  986. 0x49, 0xe8, 0x99, 0x0a, 0x3d, 0x4b, 0x42, 0xcf, 0x26, 0xad, 0xf3, 0x82, 0x3a, 0xf2, 0xfe, 0x3f,
  987. 0x01, 0x00, 0x00, 0xff, 0xff, 0x0a, 0xe0, 0xe9, 0x2c, 0xdb, 0x0c, 0x00, 0x00,
  988. }