test_objects.pb.go 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: test_objects.proto
  3. package jsonpb
  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 duration "github.com/golang/protobuf/ptypes/duration"
  9. import _struct "github.com/golang/protobuf/ptypes/struct"
  10. import timestamp "github.com/golang/protobuf/ptypes/timestamp"
  11. import wrappers "github.com/golang/protobuf/ptypes/wrappers"
  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. type Widget_Color int32
  22. const (
  23. Widget_RED Widget_Color = 0
  24. Widget_GREEN Widget_Color = 1
  25. Widget_BLUE Widget_Color = 2
  26. )
  27. var Widget_Color_name = map[int32]string{
  28. 0: "RED",
  29. 1: "GREEN",
  30. 2: "BLUE",
  31. }
  32. var Widget_Color_value = map[string]int32{
  33. "RED": 0,
  34. "GREEN": 1,
  35. "BLUE": 2,
  36. }
  37. func (x Widget_Color) Enum() *Widget_Color {
  38. p := new(Widget_Color)
  39. *p = x
  40. return p
  41. }
  42. func (x Widget_Color) String() string {
  43. return proto.EnumName(Widget_Color_name, int32(x))
  44. }
  45. func (x *Widget_Color) UnmarshalJSON(data []byte) error {
  46. value, err := proto.UnmarshalJSONEnum(Widget_Color_value, data, "Widget_Color")
  47. if err != nil {
  48. return err
  49. }
  50. *x = Widget_Color(value)
  51. return nil
  52. }
  53. func (Widget_Color) EnumDescriptor() ([]byte, []int) {
  54. return fileDescriptor_test_objects_c6f6c615ab823e65, []int{3, 0}
  55. }
  56. // Test message for holding primitive types.
  57. type Simple struct {
  58. OBool *bool `protobuf:"varint,1,opt,name=o_bool,json=oBool" json:"o_bool,omitempty"`
  59. OInt32 *int32 `protobuf:"varint,2,opt,name=o_int32,json=oInt32" json:"o_int32,omitempty"`
  60. OInt64 *int64 `protobuf:"varint,3,opt,name=o_int64,json=oInt64" json:"o_int64,omitempty"`
  61. OUint32 *uint32 `protobuf:"varint,4,opt,name=o_uint32,json=oUint32" json:"o_uint32,omitempty"`
  62. OUint64 *uint64 `protobuf:"varint,5,opt,name=o_uint64,json=oUint64" json:"o_uint64,omitempty"`
  63. OSint32 *int32 `protobuf:"zigzag32,6,opt,name=o_sint32,json=oSint32" json:"o_sint32,omitempty"`
  64. OSint64 *int64 `protobuf:"zigzag64,7,opt,name=o_sint64,json=oSint64" json:"o_sint64,omitempty"`
  65. OFloat *float32 `protobuf:"fixed32,8,opt,name=o_float,json=oFloat" json:"o_float,omitempty"`
  66. ODouble *float64 `protobuf:"fixed64,9,opt,name=o_double,json=oDouble" json:"o_double,omitempty"`
  67. OString *string `protobuf:"bytes,10,opt,name=o_string,json=oString" json:"o_string,omitempty"`
  68. OBytes []byte `protobuf:"bytes,11,opt,name=o_bytes,json=oBytes" json:"o_bytes,omitempty"`
  69. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  70. XXX_unrecognized []byte `json:"-"`
  71. XXX_sizecache int32 `json:"-"`
  72. }
  73. func (m *Simple) Reset() { *m = Simple{} }
  74. func (m *Simple) String() string { return proto.CompactTextString(m) }
  75. func (*Simple) ProtoMessage() {}
  76. func (*Simple) Descriptor() ([]byte, []int) {
  77. return fileDescriptor_test_objects_c6f6c615ab823e65, []int{0}
  78. }
  79. func (m *Simple) XXX_Unmarshal(b []byte) error {
  80. return xxx_messageInfo_Simple.Unmarshal(m, b)
  81. }
  82. func (m *Simple) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  83. return xxx_messageInfo_Simple.Marshal(b, m, deterministic)
  84. }
  85. func (dst *Simple) XXX_Merge(src proto.Message) {
  86. xxx_messageInfo_Simple.Merge(dst, src)
  87. }
  88. func (m *Simple) XXX_Size() int {
  89. return xxx_messageInfo_Simple.Size(m)
  90. }
  91. func (m *Simple) XXX_DiscardUnknown() {
  92. xxx_messageInfo_Simple.DiscardUnknown(m)
  93. }
  94. var xxx_messageInfo_Simple proto.InternalMessageInfo
  95. func (m *Simple) GetOBool() bool {
  96. if m != nil && m.OBool != nil {
  97. return *m.OBool
  98. }
  99. return false
  100. }
  101. func (m *Simple) GetOInt32() int32 {
  102. if m != nil && m.OInt32 != nil {
  103. return *m.OInt32
  104. }
  105. return 0
  106. }
  107. func (m *Simple) GetOInt64() int64 {
  108. if m != nil && m.OInt64 != nil {
  109. return *m.OInt64
  110. }
  111. return 0
  112. }
  113. func (m *Simple) GetOUint32() uint32 {
  114. if m != nil && m.OUint32 != nil {
  115. return *m.OUint32
  116. }
  117. return 0
  118. }
  119. func (m *Simple) GetOUint64() uint64 {
  120. if m != nil && m.OUint64 != nil {
  121. return *m.OUint64
  122. }
  123. return 0
  124. }
  125. func (m *Simple) GetOSint32() int32 {
  126. if m != nil && m.OSint32 != nil {
  127. return *m.OSint32
  128. }
  129. return 0
  130. }
  131. func (m *Simple) GetOSint64() int64 {
  132. if m != nil && m.OSint64 != nil {
  133. return *m.OSint64
  134. }
  135. return 0
  136. }
  137. func (m *Simple) GetOFloat() float32 {
  138. if m != nil && m.OFloat != nil {
  139. return *m.OFloat
  140. }
  141. return 0
  142. }
  143. func (m *Simple) GetODouble() float64 {
  144. if m != nil && m.ODouble != nil {
  145. return *m.ODouble
  146. }
  147. return 0
  148. }
  149. func (m *Simple) GetOString() string {
  150. if m != nil && m.OString != nil {
  151. return *m.OString
  152. }
  153. return ""
  154. }
  155. func (m *Simple) GetOBytes() []byte {
  156. if m != nil {
  157. return m.OBytes
  158. }
  159. return nil
  160. }
  161. // Test message for holding special non-finites primitives.
  162. type NonFinites struct {
  163. FNan *float32 `protobuf:"fixed32,1,opt,name=f_nan,json=fNan" json:"f_nan,omitempty"`
  164. FPinf *float32 `protobuf:"fixed32,2,opt,name=f_pinf,json=fPinf" json:"f_pinf,omitempty"`
  165. FNinf *float32 `protobuf:"fixed32,3,opt,name=f_ninf,json=fNinf" json:"f_ninf,omitempty"`
  166. DNan *float64 `protobuf:"fixed64,4,opt,name=d_nan,json=dNan" json:"d_nan,omitempty"`
  167. DPinf *float64 `protobuf:"fixed64,5,opt,name=d_pinf,json=dPinf" json:"d_pinf,omitempty"`
  168. DNinf *float64 `protobuf:"fixed64,6,opt,name=d_ninf,json=dNinf" json:"d_ninf,omitempty"`
  169. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  170. XXX_unrecognized []byte `json:"-"`
  171. XXX_sizecache int32 `json:"-"`
  172. }
  173. func (m *NonFinites) Reset() { *m = NonFinites{} }
  174. func (m *NonFinites) String() string { return proto.CompactTextString(m) }
  175. func (*NonFinites) ProtoMessage() {}
  176. func (*NonFinites) Descriptor() ([]byte, []int) {
  177. return fileDescriptor_test_objects_c6f6c615ab823e65, []int{1}
  178. }
  179. func (m *NonFinites) XXX_Unmarshal(b []byte) error {
  180. return xxx_messageInfo_NonFinites.Unmarshal(m, b)
  181. }
  182. func (m *NonFinites) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  183. return xxx_messageInfo_NonFinites.Marshal(b, m, deterministic)
  184. }
  185. func (dst *NonFinites) XXX_Merge(src proto.Message) {
  186. xxx_messageInfo_NonFinites.Merge(dst, src)
  187. }
  188. func (m *NonFinites) XXX_Size() int {
  189. return xxx_messageInfo_NonFinites.Size(m)
  190. }
  191. func (m *NonFinites) XXX_DiscardUnknown() {
  192. xxx_messageInfo_NonFinites.DiscardUnknown(m)
  193. }
  194. var xxx_messageInfo_NonFinites proto.InternalMessageInfo
  195. func (m *NonFinites) GetFNan() float32 {
  196. if m != nil && m.FNan != nil {
  197. return *m.FNan
  198. }
  199. return 0
  200. }
  201. func (m *NonFinites) GetFPinf() float32 {
  202. if m != nil && m.FPinf != nil {
  203. return *m.FPinf
  204. }
  205. return 0
  206. }
  207. func (m *NonFinites) GetFNinf() float32 {
  208. if m != nil && m.FNinf != nil {
  209. return *m.FNinf
  210. }
  211. return 0
  212. }
  213. func (m *NonFinites) GetDNan() float64 {
  214. if m != nil && m.DNan != nil {
  215. return *m.DNan
  216. }
  217. return 0
  218. }
  219. func (m *NonFinites) GetDPinf() float64 {
  220. if m != nil && m.DPinf != nil {
  221. return *m.DPinf
  222. }
  223. return 0
  224. }
  225. func (m *NonFinites) GetDNinf() float64 {
  226. if m != nil && m.DNinf != nil {
  227. return *m.DNinf
  228. }
  229. return 0
  230. }
  231. // Test message for holding repeated primitives.
  232. type Repeats struct {
  233. RBool []bool `protobuf:"varint,1,rep,name=r_bool,json=rBool" json:"r_bool,omitempty"`
  234. RInt32 []int32 `protobuf:"varint,2,rep,name=r_int32,json=rInt32" json:"r_int32,omitempty"`
  235. RInt64 []int64 `protobuf:"varint,3,rep,name=r_int64,json=rInt64" json:"r_int64,omitempty"`
  236. RUint32 []uint32 `protobuf:"varint,4,rep,name=r_uint32,json=rUint32" json:"r_uint32,omitempty"`
  237. RUint64 []uint64 `protobuf:"varint,5,rep,name=r_uint64,json=rUint64" json:"r_uint64,omitempty"`
  238. RSint32 []int32 `protobuf:"zigzag32,6,rep,name=r_sint32,json=rSint32" json:"r_sint32,omitempty"`
  239. RSint64 []int64 `protobuf:"zigzag64,7,rep,name=r_sint64,json=rSint64" json:"r_sint64,omitempty"`
  240. RFloat []float32 `protobuf:"fixed32,8,rep,name=r_float,json=rFloat" json:"r_float,omitempty"`
  241. RDouble []float64 `protobuf:"fixed64,9,rep,name=r_double,json=rDouble" json:"r_double,omitempty"`
  242. RString []string `protobuf:"bytes,10,rep,name=r_string,json=rString" json:"r_string,omitempty"`
  243. RBytes [][]byte `protobuf:"bytes,11,rep,name=r_bytes,json=rBytes" json:"r_bytes,omitempty"`
  244. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  245. XXX_unrecognized []byte `json:"-"`
  246. XXX_sizecache int32 `json:"-"`
  247. }
  248. func (m *Repeats) Reset() { *m = Repeats{} }
  249. func (m *Repeats) String() string { return proto.CompactTextString(m) }
  250. func (*Repeats) ProtoMessage() {}
  251. func (*Repeats) Descriptor() ([]byte, []int) {
  252. return fileDescriptor_test_objects_c6f6c615ab823e65, []int{2}
  253. }
  254. func (m *Repeats) XXX_Unmarshal(b []byte) error {
  255. return xxx_messageInfo_Repeats.Unmarshal(m, b)
  256. }
  257. func (m *Repeats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  258. return xxx_messageInfo_Repeats.Marshal(b, m, deterministic)
  259. }
  260. func (dst *Repeats) XXX_Merge(src proto.Message) {
  261. xxx_messageInfo_Repeats.Merge(dst, src)
  262. }
  263. func (m *Repeats) XXX_Size() int {
  264. return xxx_messageInfo_Repeats.Size(m)
  265. }
  266. func (m *Repeats) XXX_DiscardUnknown() {
  267. xxx_messageInfo_Repeats.DiscardUnknown(m)
  268. }
  269. var xxx_messageInfo_Repeats proto.InternalMessageInfo
  270. func (m *Repeats) GetRBool() []bool {
  271. if m != nil {
  272. return m.RBool
  273. }
  274. return nil
  275. }
  276. func (m *Repeats) GetRInt32() []int32 {
  277. if m != nil {
  278. return m.RInt32
  279. }
  280. return nil
  281. }
  282. func (m *Repeats) GetRInt64() []int64 {
  283. if m != nil {
  284. return m.RInt64
  285. }
  286. return nil
  287. }
  288. func (m *Repeats) GetRUint32() []uint32 {
  289. if m != nil {
  290. return m.RUint32
  291. }
  292. return nil
  293. }
  294. func (m *Repeats) GetRUint64() []uint64 {
  295. if m != nil {
  296. return m.RUint64
  297. }
  298. return nil
  299. }
  300. func (m *Repeats) GetRSint32() []int32 {
  301. if m != nil {
  302. return m.RSint32
  303. }
  304. return nil
  305. }
  306. func (m *Repeats) GetRSint64() []int64 {
  307. if m != nil {
  308. return m.RSint64
  309. }
  310. return nil
  311. }
  312. func (m *Repeats) GetRFloat() []float32 {
  313. if m != nil {
  314. return m.RFloat
  315. }
  316. return nil
  317. }
  318. func (m *Repeats) GetRDouble() []float64 {
  319. if m != nil {
  320. return m.RDouble
  321. }
  322. return nil
  323. }
  324. func (m *Repeats) GetRString() []string {
  325. if m != nil {
  326. return m.RString
  327. }
  328. return nil
  329. }
  330. func (m *Repeats) GetRBytes() [][]byte {
  331. if m != nil {
  332. return m.RBytes
  333. }
  334. return nil
  335. }
  336. // Test message for holding enums and nested messages.
  337. type Widget struct {
  338. Color *Widget_Color `protobuf:"varint,1,opt,name=color,enum=jsonpb.Widget_Color" json:"color,omitempty"`
  339. RColor []Widget_Color `protobuf:"varint,2,rep,name=r_color,json=rColor,enum=jsonpb.Widget_Color" json:"r_color,omitempty"`
  340. Simple *Simple `protobuf:"bytes,10,opt,name=simple" json:"simple,omitempty"`
  341. RSimple []*Simple `protobuf:"bytes,11,rep,name=r_simple,json=rSimple" json:"r_simple,omitempty"`
  342. Repeats *Repeats `protobuf:"bytes,20,opt,name=repeats" json:"repeats,omitempty"`
  343. RRepeats []*Repeats `protobuf:"bytes,21,rep,name=r_repeats,json=rRepeats" json:"r_repeats,omitempty"`
  344. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  345. XXX_unrecognized []byte `json:"-"`
  346. XXX_sizecache int32 `json:"-"`
  347. }
  348. func (m *Widget) Reset() { *m = Widget{} }
  349. func (m *Widget) String() string { return proto.CompactTextString(m) }
  350. func (*Widget) ProtoMessage() {}
  351. func (*Widget) Descriptor() ([]byte, []int) {
  352. return fileDescriptor_test_objects_c6f6c615ab823e65, []int{3}
  353. }
  354. func (m *Widget) XXX_Unmarshal(b []byte) error {
  355. return xxx_messageInfo_Widget.Unmarshal(m, b)
  356. }
  357. func (m *Widget) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  358. return xxx_messageInfo_Widget.Marshal(b, m, deterministic)
  359. }
  360. func (dst *Widget) XXX_Merge(src proto.Message) {
  361. xxx_messageInfo_Widget.Merge(dst, src)
  362. }
  363. func (m *Widget) XXX_Size() int {
  364. return xxx_messageInfo_Widget.Size(m)
  365. }
  366. func (m *Widget) XXX_DiscardUnknown() {
  367. xxx_messageInfo_Widget.DiscardUnknown(m)
  368. }
  369. var xxx_messageInfo_Widget proto.InternalMessageInfo
  370. func (m *Widget) GetColor() Widget_Color {
  371. if m != nil && m.Color != nil {
  372. return *m.Color
  373. }
  374. return Widget_RED
  375. }
  376. func (m *Widget) GetRColor() []Widget_Color {
  377. if m != nil {
  378. return m.RColor
  379. }
  380. return nil
  381. }
  382. func (m *Widget) GetSimple() *Simple {
  383. if m != nil {
  384. return m.Simple
  385. }
  386. return nil
  387. }
  388. func (m *Widget) GetRSimple() []*Simple {
  389. if m != nil {
  390. return m.RSimple
  391. }
  392. return nil
  393. }
  394. func (m *Widget) GetRepeats() *Repeats {
  395. if m != nil {
  396. return m.Repeats
  397. }
  398. return nil
  399. }
  400. func (m *Widget) GetRRepeats() []*Repeats {
  401. if m != nil {
  402. return m.RRepeats
  403. }
  404. return nil
  405. }
  406. type Maps struct {
  407. MInt64Str map[int64]string `protobuf:"bytes,1,rep,name=m_int64_str,json=mInt64Str" json:"m_int64_str,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  408. MBoolSimple map[bool]*Simple `protobuf:"bytes,2,rep,name=m_bool_simple,json=mBoolSimple" json:"m_bool_simple,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  409. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  410. XXX_unrecognized []byte `json:"-"`
  411. XXX_sizecache int32 `json:"-"`
  412. }
  413. func (m *Maps) Reset() { *m = Maps{} }
  414. func (m *Maps) String() string { return proto.CompactTextString(m) }
  415. func (*Maps) ProtoMessage() {}
  416. func (*Maps) Descriptor() ([]byte, []int) {
  417. return fileDescriptor_test_objects_c6f6c615ab823e65, []int{4}
  418. }
  419. func (m *Maps) XXX_Unmarshal(b []byte) error {
  420. return xxx_messageInfo_Maps.Unmarshal(m, b)
  421. }
  422. func (m *Maps) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  423. return xxx_messageInfo_Maps.Marshal(b, m, deterministic)
  424. }
  425. func (dst *Maps) XXX_Merge(src proto.Message) {
  426. xxx_messageInfo_Maps.Merge(dst, src)
  427. }
  428. func (m *Maps) XXX_Size() int {
  429. return xxx_messageInfo_Maps.Size(m)
  430. }
  431. func (m *Maps) XXX_DiscardUnknown() {
  432. xxx_messageInfo_Maps.DiscardUnknown(m)
  433. }
  434. var xxx_messageInfo_Maps proto.InternalMessageInfo
  435. func (m *Maps) GetMInt64Str() map[int64]string {
  436. if m != nil {
  437. return m.MInt64Str
  438. }
  439. return nil
  440. }
  441. func (m *Maps) GetMBoolSimple() map[bool]*Simple {
  442. if m != nil {
  443. return m.MBoolSimple
  444. }
  445. return nil
  446. }
  447. type MsgWithOneof struct {
  448. // Types that are valid to be assigned to Union:
  449. // *MsgWithOneof_Title
  450. // *MsgWithOneof_Salary
  451. // *MsgWithOneof_Country
  452. // *MsgWithOneof_HomeAddress
  453. // *MsgWithOneof_MsgWithRequired
  454. Union isMsgWithOneof_Union `protobuf_oneof:"union"`
  455. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  456. XXX_unrecognized []byte `json:"-"`
  457. XXX_sizecache int32 `json:"-"`
  458. }
  459. func (m *MsgWithOneof) Reset() { *m = MsgWithOneof{} }
  460. func (m *MsgWithOneof) String() string { return proto.CompactTextString(m) }
  461. func (*MsgWithOneof) ProtoMessage() {}
  462. func (*MsgWithOneof) Descriptor() ([]byte, []int) {
  463. return fileDescriptor_test_objects_c6f6c615ab823e65, []int{5}
  464. }
  465. func (m *MsgWithOneof) XXX_Unmarshal(b []byte) error {
  466. return xxx_messageInfo_MsgWithOneof.Unmarshal(m, b)
  467. }
  468. func (m *MsgWithOneof) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  469. return xxx_messageInfo_MsgWithOneof.Marshal(b, m, deterministic)
  470. }
  471. func (dst *MsgWithOneof) XXX_Merge(src proto.Message) {
  472. xxx_messageInfo_MsgWithOneof.Merge(dst, src)
  473. }
  474. func (m *MsgWithOneof) XXX_Size() int {
  475. return xxx_messageInfo_MsgWithOneof.Size(m)
  476. }
  477. func (m *MsgWithOneof) XXX_DiscardUnknown() {
  478. xxx_messageInfo_MsgWithOneof.DiscardUnknown(m)
  479. }
  480. var xxx_messageInfo_MsgWithOneof proto.InternalMessageInfo
  481. type isMsgWithOneof_Union interface {
  482. isMsgWithOneof_Union()
  483. }
  484. type MsgWithOneof_Title struct {
  485. Title string `protobuf:"bytes,1,opt,name=title,oneof"`
  486. }
  487. type MsgWithOneof_Salary struct {
  488. Salary int64 `protobuf:"varint,2,opt,name=salary,oneof"`
  489. }
  490. type MsgWithOneof_Country struct {
  491. Country string `protobuf:"bytes,3,opt,name=Country,oneof"`
  492. }
  493. type MsgWithOneof_HomeAddress struct {
  494. HomeAddress string `protobuf:"bytes,4,opt,name=home_address,json=homeAddress,oneof"`
  495. }
  496. type MsgWithOneof_MsgWithRequired struct {
  497. MsgWithRequired *MsgWithRequired `protobuf:"bytes,5,opt,name=msg_with_required,json=msgWithRequired,oneof"`
  498. }
  499. func (*MsgWithOneof_Title) isMsgWithOneof_Union() {}
  500. func (*MsgWithOneof_Salary) isMsgWithOneof_Union() {}
  501. func (*MsgWithOneof_Country) isMsgWithOneof_Union() {}
  502. func (*MsgWithOneof_HomeAddress) isMsgWithOneof_Union() {}
  503. func (*MsgWithOneof_MsgWithRequired) isMsgWithOneof_Union() {}
  504. func (m *MsgWithOneof) GetUnion() isMsgWithOneof_Union {
  505. if m != nil {
  506. return m.Union
  507. }
  508. return nil
  509. }
  510. func (m *MsgWithOneof) GetTitle() string {
  511. if x, ok := m.GetUnion().(*MsgWithOneof_Title); ok {
  512. return x.Title
  513. }
  514. return ""
  515. }
  516. func (m *MsgWithOneof) GetSalary() int64 {
  517. if x, ok := m.GetUnion().(*MsgWithOneof_Salary); ok {
  518. return x.Salary
  519. }
  520. return 0
  521. }
  522. func (m *MsgWithOneof) GetCountry() string {
  523. if x, ok := m.GetUnion().(*MsgWithOneof_Country); ok {
  524. return x.Country
  525. }
  526. return ""
  527. }
  528. func (m *MsgWithOneof) GetHomeAddress() string {
  529. if x, ok := m.GetUnion().(*MsgWithOneof_HomeAddress); ok {
  530. return x.HomeAddress
  531. }
  532. return ""
  533. }
  534. func (m *MsgWithOneof) GetMsgWithRequired() *MsgWithRequired {
  535. if x, ok := m.GetUnion().(*MsgWithOneof_MsgWithRequired); ok {
  536. return x.MsgWithRequired
  537. }
  538. return nil
  539. }
  540. // XXX_OneofFuncs is for the internal use of the proto package.
  541. func (*MsgWithOneof) 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{}) {
  542. return _MsgWithOneof_OneofMarshaler, _MsgWithOneof_OneofUnmarshaler, _MsgWithOneof_OneofSizer, []interface{}{
  543. (*MsgWithOneof_Title)(nil),
  544. (*MsgWithOneof_Salary)(nil),
  545. (*MsgWithOneof_Country)(nil),
  546. (*MsgWithOneof_HomeAddress)(nil),
  547. (*MsgWithOneof_MsgWithRequired)(nil),
  548. }
  549. }
  550. func _MsgWithOneof_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
  551. m := msg.(*MsgWithOneof)
  552. // union
  553. switch x := m.Union.(type) {
  554. case *MsgWithOneof_Title:
  555. b.EncodeVarint(1<<3 | proto.WireBytes)
  556. b.EncodeStringBytes(x.Title)
  557. case *MsgWithOneof_Salary:
  558. b.EncodeVarint(2<<3 | proto.WireVarint)
  559. b.EncodeVarint(uint64(x.Salary))
  560. case *MsgWithOneof_Country:
  561. b.EncodeVarint(3<<3 | proto.WireBytes)
  562. b.EncodeStringBytes(x.Country)
  563. case *MsgWithOneof_HomeAddress:
  564. b.EncodeVarint(4<<3 | proto.WireBytes)
  565. b.EncodeStringBytes(x.HomeAddress)
  566. case *MsgWithOneof_MsgWithRequired:
  567. b.EncodeVarint(5<<3 | proto.WireBytes)
  568. if err := b.EncodeMessage(x.MsgWithRequired); err != nil {
  569. return err
  570. }
  571. case nil:
  572. default:
  573. return fmt.Errorf("MsgWithOneof.Union has unexpected type %T", x)
  574. }
  575. return nil
  576. }
  577. func _MsgWithOneof_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
  578. m := msg.(*MsgWithOneof)
  579. switch tag {
  580. case 1: // union.title
  581. if wire != proto.WireBytes {
  582. return true, proto.ErrInternalBadWireType
  583. }
  584. x, err := b.DecodeStringBytes()
  585. m.Union = &MsgWithOneof_Title{x}
  586. return true, err
  587. case 2: // union.salary
  588. if wire != proto.WireVarint {
  589. return true, proto.ErrInternalBadWireType
  590. }
  591. x, err := b.DecodeVarint()
  592. m.Union = &MsgWithOneof_Salary{int64(x)}
  593. return true, err
  594. case 3: // union.Country
  595. if wire != proto.WireBytes {
  596. return true, proto.ErrInternalBadWireType
  597. }
  598. x, err := b.DecodeStringBytes()
  599. m.Union = &MsgWithOneof_Country{x}
  600. return true, err
  601. case 4: // union.home_address
  602. if wire != proto.WireBytes {
  603. return true, proto.ErrInternalBadWireType
  604. }
  605. x, err := b.DecodeStringBytes()
  606. m.Union = &MsgWithOneof_HomeAddress{x}
  607. return true, err
  608. case 5: // union.msg_with_required
  609. if wire != proto.WireBytes {
  610. return true, proto.ErrInternalBadWireType
  611. }
  612. msg := new(MsgWithRequired)
  613. err := b.DecodeMessage(msg)
  614. m.Union = &MsgWithOneof_MsgWithRequired{msg}
  615. return true, err
  616. default:
  617. return false, nil
  618. }
  619. }
  620. func _MsgWithOneof_OneofSizer(msg proto.Message) (n int) {
  621. m := msg.(*MsgWithOneof)
  622. // union
  623. switch x := m.Union.(type) {
  624. case *MsgWithOneof_Title:
  625. n += 1 // tag and wire
  626. n += proto.SizeVarint(uint64(len(x.Title)))
  627. n += len(x.Title)
  628. case *MsgWithOneof_Salary:
  629. n += 1 // tag and wire
  630. n += proto.SizeVarint(uint64(x.Salary))
  631. case *MsgWithOneof_Country:
  632. n += 1 // tag and wire
  633. n += proto.SizeVarint(uint64(len(x.Country)))
  634. n += len(x.Country)
  635. case *MsgWithOneof_HomeAddress:
  636. n += 1 // tag and wire
  637. n += proto.SizeVarint(uint64(len(x.HomeAddress)))
  638. n += len(x.HomeAddress)
  639. case *MsgWithOneof_MsgWithRequired:
  640. s := proto.Size(x.MsgWithRequired)
  641. n += 1 // tag and wire
  642. n += proto.SizeVarint(uint64(s))
  643. n += s
  644. case nil:
  645. default:
  646. panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
  647. }
  648. return n
  649. }
  650. type Real struct {
  651. Value *float64 `protobuf:"fixed64,1,opt,name=value" json:"value,omitempty"`
  652. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  653. proto.XXX_InternalExtensions `json:"-"`
  654. XXX_unrecognized []byte `json:"-"`
  655. XXX_sizecache int32 `json:"-"`
  656. }
  657. func (m *Real) Reset() { *m = Real{} }
  658. func (m *Real) String() string { return proto.CompactTextString(m) }
  659. func (*Real) ProtoMessage() {}
  660. func (*Real) Descriptor() ([]byte, []int) {
  661. return fileDescriptor_test_objects_c6f6c615ab823e65, []int{6}
  662. }
  663. var extRange_Real = []proto.ExtensionRange{
  664. {Start: 100, End: 536870911},
  665. }
  666. func (*Real) ExtensionRangeArray() []proto.ExtensionRange {
  667. return extRange_Real
  668. }
  669. func (m *Real) XXX_Unmarshal(b []byte) error {
  670. return xxx_messageInfo_Real.Unmarshal(m, b)
  671. }
  672. func (m *Real) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  673. return xxx_messageInfo_Real.Marshal(b, m, deterministic)
  674. }
  675. func (dst *Real) XXX_Merge(src proto.Message) {
  676. xxx_messageInfo_Real.Merge(dst, src)
  677. }
  678. func (m *Real) XXX_Size() int {
  679. return xxx_messageInfo_Real.Size(m)
  680. }
  681. func (m *Real) XXX_DiscardUnknown() {
  682. xxx_messageInfo_Real.DiscardUnknown(m)
  683. }
  684. var xxx_messageInfo_Real proto.InternalMessageInfo
  685. func (m *Real) GetValue() float64 {
  686. if m != nil && m.Value != nil {
  687. return *m.Value
  688. }
  689. return 0
  690. }
  691. type Complex struct {
  692. Imaginary *float64 `protobuf:"fixed64,1,opt,name=imaginary" json:"imaginary,omitempty"`
  693. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  694. proto.XXX_InternalExtensions `json:"-"`
  695. XXX_unrecognized []byte `json:"-"`
  696. XXX_sizecache int32 `json:"-"`
  697. }
  698. func (m *Complex) Reset() { *m = Complex{} }
  699. func (m *Complex) String() string { return proto.CompactTextString(m) }
  700. func (*Complex) ProtoMessage() {}
  701. func (*Complex) Descriptor() ([]byte, []int) {
  702. return fileDescriptor_test_objects_c6f6c615ab823e65, []int{7}
  703. }
  704. var extRange_Complex = []proto.ExtensionRange{
  705. {Start: 100, End: 536870911},
  706. }
  707. func (*Complex) ExtensionRangeArray() []proto.ExtensionRange {
  708. return extRange_Complex
  709. }
  710. func (m *Complex) XXX_Unmarshal(b []byte) error {
  711. return xxx_messageInfo_Complex.Unmarshal(m, b)
  712. }
  713. func (m *Complex) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  714. return xxx_messageInfo_Complex.Marshal(b, m, deterministic)
  715. }
  716. func (dst *Complex) XXX_Merge(src proto.Message) {
  717. xxx_messageInfo_Complex.Merge(dst, src)
  718. }
  719. func (m *Complex) XXX_Size() int {
  720. return xxx_messageInfo_Complex.Size(m)
  721. }
  722. func (m *Complex) XXX_DiscardUnknown() {
  723. xxx_messageInfo_Complex.DiscardUnknown(m)
  724. }
  725. var xxx_messageInfo_Complex proto.InternalMessageInfo
  726. func (m *Complex) GetImaginary() float64 {
  727. if m != nil && m.Imaginary != nil {
  728. return *m.Imaginary
  729. }
  730. return 0
  731. }
  732. var E_Complex_RealExtension = &proto.ExtensionDesc{
  733. ExtendedType: (*Real)(nil),
  734. ExtensionType: (*Complex)(nil),
  735. Field: 123,
  736. Name: "jsonpb.Complex.real_extension",
  737. Tag: "bytes,123,opt,name=real_extension,json=realExtension",
  738. Filename: "test_objects.proto",
  739. }
  740. type KnownTypes struct {
  741. An *any.Any `protobuf:"bytes,14,opt,name=an" json:"an,omitempty"`
  742. Dur *duration.Duration `protobuf:"bytes,1,opt,name=dur" json:"dur,omitempty"`
  743. St *_struct.Struct `protobuf:"bytes,12,opt,name=st" json:"st,omitempty"`
  744. Ts *timestamp.Timestamp `protobuf:"bytes,2,opt,name=ts" json:"ts,omitempty"`
  745. Lv *_struct.ListValue `protobuf:"bytes,15,opt,name=lv" json:"lv,omitempty"`
  746. Val *_struct.Value `protobuf:"bytes,16,opt,name=val" json:"val,omitempty"`
  747. Dbl *wrappers.DoubleValue `protobuf:"bytes,3,opt,name=dbl" json:"dbl,omitempty"`
  748. Flt *wrappers.FloatValue `protobuf:"bytes,4,opt,name=flt" json:"flt,omitempty"`
  749. I64 *wrappers.Int64Value `protobuf:"bytes,5,opt,name=i64" json:"i64,omitempty"`
  750. U64 *wrappers.UInt64Value `protobuf:"bytes,6,opt,name=u64" json:"u64,omitempty"`
  751. I32 *wrappers.Int32Value `protobuf:"bytes,7,opt,name=i32" json:"i32,omitempty"`
  752. U32 *wrappers.UInt32Value `protobuf:"bytes,8,opt,name=u32" json:"u32,omitempty"`
  753. Bool *wrappers.BoolValue `protobuf:"bytes,9,opt,name=bool" json:"bool,omitempty"`
  754. Str *wrappers.StringValue `protobuf:"bytes,10,opt,name=str" json:"str,omitempty"`
  755. Bytes *wrappers.BytesValue `protobuf:"bytes,11,opt,name=bytes" json:"bytes,omitempty"`
  756. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  757. XXX_unrecognized []byte `json:"-"`
  758. XXX_sizecache int32 `json:"-"`
  759. }
  760. func (m *KnownTypes) Reset() { *m = KnownTypes{} }
  761. func (m *KnownTypes) String() string { return proto.CompactTextString(m) }
  762. func (*KnownTypes) ProtoMessage() {}
  763. func (*KnownTypes) Descriptor() ([]byte, []int) {
  764. return fileDescriptor_test_objects_c6f6c615ab823e65, []int{8}
  765. }
  766. func (m *KnownTypes) XXX_Unmarshal(b []byte) error {
  767. return xxx_messageInfo_KnownTypes.Unmarshal(m, b)
  768. }
  769. func (m *KnownTypes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  770. return xxx_messageInfo_KnownTypes.Marshal(b, m, deterministic)
  771. }
  772. func (dst *KnownTypes) XXX_Merge(src proto.Message) {
  773. xxx_messageInfo_KnownTypes.Merge(dst, src)
  774. }
  775. func (m *KnownTypes) XXX_Size() int {
  776. return xxx_messageInfo_KnownTypes.Size(m)
  777. }
  778. func (m *KnownTypes) XXX_DiscardUnknown() {
  779. xxx_messageInfo_KnownTypes.DiscardUnknown(m)
  780. }
  781. var xxx_messageInfo_KnownTypes proto.InternalMessageInfo
  782. func (m *KnownTypes) GetAn() *any.Any {
  783. if m != nil {
  784. return m.An
  785. }
  786. return nil
  787. }
  788. func (m *KnownTypes) GetDur() *duration.Duration {
  789. if m != nil {
  790. return m.Dur
  791. }
  792. return nil
  793. }
  794. func (m *KnownTypes) GetSt() *_struct.Struct {
  795. if m != nil {
  796. return m.St
  797. }
  798. return nil
  799. }
  800. func (m *KnownTypes) GetTs() *timestamp.Timestamp {
  801. if m != nil {
  802. return m.Ts
  803. }
  804. return nil
  805. }
  806. func (m *KnownTypes) GetLv() *_struct.ListValue {
  807. if m != nil {
  808. return m.Lv
  809. }
  810. return nil
  811. }
  812. func (m *KnownTypes) GetVal() *_struct.Value {
  813. if m != nil {
  814. return m.Val
  815. }
  816. return nil
  817. }
  818. func (m *KnownTypes) GetDbl() *wrappers.DoubleValue {
  819. if m != nil {
  820. return m.Dbl
  821. }
  822. return nil
  823. }
  824. func (m *KnownTypes) GetFlt() *wrappers.FloatValue {
  825. if m != nil {
  826. return m.Flt
  827. }
  828. return nil
  829. }
  830. func (m *KnownTypes) GetI64() *wrappers.Int64Value {
  831. if m != nil {
  832. return m.I64
  833. }
  834. return nil
  835. }
  836. func (m *KnownTypes) GetU64() *wrappers.UInt64Value {
  837. if m != nil {
  838. return m.U64
  839. }
  840. return nil
  841. }
  842. func (m *KnownTypes) GetI32() *wrappers.Int32Value {
  843. if m != nil {
  844. return m.I32
  845. }
  846. return nil
  847. }
  848. func (m *KnownTypes) GetU32() *wrappers.UInt32Value {
  849. if m != nil {
  850. return m.U32
  851. }
  852. return nil
  853. }
  854. func (m *KnownTypes) GetBool() *wrappers.BoolValue {
  855. if m != nil {
  856. return m.Bool
  857. }
  858. return nil
  859. }
  860. func (m *KnownTypes) GetStr() *wrappers.StringValue {
  861. if m != nil {
  862. return m.Str
  863. }
  864. return nil
  865. }
  866. func (m *KnownTypes) GetBytes() *wrappers.BytesValue {
  867. if m != nil {
  868. return m.Bytes
  869. }
  870. return nil
  871. }
  872. // Test messages for marshaling/unmarshaling required fields.
  873. type MsgWithRequired struct {
  874. Str *string `protobuf:"bytes,1,req,name=str" json:"str,omitempty"`
  875. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  876. XXX_unrecognized []byte `json:"-"`
  877. XXX_sizecache int32 `json:"-"`
  878. }
  879. func (m *MsgWithRequired) Reset() { *m = MsgWithRequired{} }
  880. func (m *MsgWithRequired) String() string { return proto.CompactTextString(m) }
  881. func (*MsgWithRequired) ProtoMessage() {}
  882. func (*MsgWithRequired) Descriptor() ([]byte, []int) {
  883. return fileDescriptor_test_objects_c6f6c615ab823e65, []int{9}
  884. }
  885. func (m *MsgWithRequired) XXX_Unmarshal(b []byte) error {
  886. return xxx_messageInfo_MsgWithRequired.Unmarshal(m, b)
  887. }
  888. func (m *MsgWithRequired) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  889. return xxx_messageInfo_MsgWithRequired.Marshal(b, m, deterministic)
  890. }
  891. func (dst *MsgWithRequired) XXX_Merge(src proto.Message) {
  892. xxx_messageInfo_MsgWithRequired.Merge(dst, src)
  893. }
  894. func (m *MsgWithRequired) XXX_Size() int {
  895. return xxx_messageInfo_MsgWithRequired.Size(m)
  896. }
  897. func (m *MsgWithRequired) XXX_DiscardUnknown() {
  898. xxx_messageInfo_MsgWithRequired.DiscardUnknown(m)
  899. }
  900. var xxx_messageInfo_MsgWithRequired proto.InternalMessageInfo
  901. func (m *MsgWithRequired) GetStr() string {
  902. if m != nil && m.Str != nil {
  903. return *m.Str
  904. }
  905. return ""
  906. }
  907. type MsgWithIndirectRequired struct {
  908. Subm *MsgWithRequired `protobuf:"bytes,1,opt,name=subm" json:"subm,omitempty"`
  909. MapField map[string]*MsgWithRequired `protobuf:"bytes,2,rep,name=map_field,json=mapField" json:"map_field,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  910. SliceField []*MsgWithRequired `protobuf:"bytes,3,rep,name=slice_field,json=sliceField" json:"slice_field,omitempty"`
  911. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  912. XXX_unrecognized []byte `json:"-"`
  913. XXX_sizecache int32 `json:"-"`
  914. }
  915. func (m *MsgWithIndirectRequired) Reset() { *m = MsgWithIndirectRequired{} }
  916. func (m *MsgWithIndirectRequired) String() string { return proto.CompactTextString(m) }
  917. func (*MsgWithIndirectRequired) ProtoMessage() {}
  918. func (*MsgWithIndirectRequired) Descriptor() ([]byte, []int) {
  919. return fileDescriptor_test_objects_c6f6c615ab823e65, []int{10}
  920. }
  921. func (m *MsgWithIndirectRequired) XXX_Unmarshal(b []byte) error {
  922. return xxx_messageInfo_MsgWithIndirectRequired.Unmarshal(m, b)
  923. }
  924. func (m *MsgWithIndirectRequired) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  925. return xxx_messageInfo_MsgWithIndirectRequired.Marshal(b, m, deterministic)
  926. }
  927. func (dst *MsgWithIndirectRequired) XXX_Merge(src proto.Message) {
  928. xxx_messageInfo_MsgWithIndirectRequired.Merge(dst, src)
  929. }
  930. func (m *MsgWithIndirectRequired) XXX_Size() int {
  931. return xxx_messageInfo_MsgWithIndirectRequired.Size(m)
  932. }
  933. func (m *MsgWithIndirectRequired) XXX_DiscardUnknown() {
  934. xxx_messageInfo_MsgWithIndirectRequired.DiscardUnknown(m)
  935. }
  936. var xxx_messageInfo_MsgWithIndirectRequired proto.InternalMessageInfo
  937. func (m *MsgWithIndirectRequired) GetSubm() *MsgWithRequired {
  938. if m != nil {
  939. return m.Subm
  940. }
  941. return nil
  942. }
  943. func (m *MsgWithIndirectRequired) GetMapField() map[string]*MsgWithRequired {
  944. if m != nil {
  945. return m.MapField
  946. }
  947. return nil
  948. }
  949. func (m *MsgWithIndirectRequired) GetSliceField() []*MsgWithRequired {
  950. if m != nil {
  951. return m.SliceField
  952. }
  953. return nil
  954. }
  955. type MsgWithRequiredBytes struct {
  956. Byts []byte `protobuf:"bytes,1,req,name=byts" json:"byts,omitempty"`
  957. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  958. XXX_unrecognized []byte `json:"-"`
  959. XXX_sizecache int32 `json:"-"`
  960. }
  961. func (m *MsgWithRequiredBytes) Reset() { *m = MsgWithRequiredBytes{} }
  962. func (m *MsgWithRequiredBytes) String() string { return proto.CompactTextString(m) }
  963. func (*MsgWithRequiredBytes) ProtoMessage() {}
  964. func (*MsgWithRequiredBytes) Descriptor() ([]byte, []int) {
  965. return fileDescriptor_test_objects_c6f6c615ab823e65, []int{11}
  966. }
  967. func (m *MsgWithRequiredBytes) XXX_Unmarshal(b []byte) error {
  968. return xxx_messageInfo_MsgWithRequiredBytes.Unmarshal(m, b)
  969. }
  970. func (m *MsgWithRequiredBytes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  971. return xxx_messageInfo_MsgWithRequiredBytes.Marshal(b, m, deterministic)
  972. }
  973. func (dst *MsgWithRequiredBytes) XXX_Merge(src proto.Message) {
  974. xxx_messageInfo_MsgWithRequiredBytes.Merge(dst, src)
  975. }
  976. func (m *MsgWithRequiredBytes) XXX_Size() int {
  977. return xxx_messageInfo_MsgWithRequiredBytes.Size(m)
  978. }
  979. func (m *MsgWithRequiredBytes) XXX_DiscardUnknown() {
  980. xxx_messageInfo_MsgWithRequiredBytes.DiscardUnknown(m)
  981. }
  982. var xxx_messageInfo_MsgWithRequiredBytes proto.InternalMessageInfo
  983. func (m *MsgWithRequiredBytes) GetByts() []byte {
  984. if m != nil {
  985. return m.Byts
  986. }
  987. return nil
  988. }
  989. type MsgWithRequiredWKT struct {
  990. Str *wrappers.StringValue `protobuf:"bytes,1,req,name=str" json:"str,omitempty"`
  991. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  992. XXX_unrecognized []byte `json:"-"`
  993. XXX_sizecache int32 `json:"-"`
  994. }
  995. func (m *MsgWithRequiredWKT) Reset() { *m = MsgWithRequiredWKT{} }
  996. func (m *MsgWithRequiredWKT) String() string { return proto.CompactTextString(m) }
  997. func (*MsgWithRequiredWKT) ProtoMessage() {}
  998. func (*MsgWithRequiredWKT) Descriptor() ([]byte, []int) {
  999. return fileDescriptor_test_objects_c6f6c615ab823e65, []int{12}
  1000. }
  1001. func (m *MsgWithRequiredWKT) XXX_Unmarshal(b []byte) error {
  1002. return xxx_messageInfo_MsgWithRequiredWKT.Unmarshal(m, b)
  1003. }
  1004. func (m *MsgWithRequiredWKT) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1005. return xxx_messageInfo_MsgWithRequiredWKT.Marshal(b, m, deterministic)
  1006. }
  1007. func (dst *MsgWithRequiredWKT) XXX_Merge(src proto.Message) {
  1008. xxx_messageInfo_MsgWithRequiredWKT.Merge(dst, src)
  1009. }
  1010. func (m *MsgWithRequiredWKT) XXX_Size() int {
  1011. return xxx_messageInfo_MsgWithRequiredWKT.Size(m)
  1012. }
  1013. func (m *MsgWithRequiredWKT) XXX_DiscardUnknown() {
  1014. xxx_messageInfo_MsgWithRequiredWKT.DiscardUnknown(m)
  1015. }
  1016. var xxx_messageInfo_MsgWithRequiredWKT proto.InternalMessageInfo
  1017. func (m *MsgWithRequiredWKT) GetStr() *wrappers.StringValue {
  1018. if m != nil {
  1019. return m.Str
  1020. }
  1021. return nil
  1022. }
  1023. var E_Name = &proto.ExtensionDesc{
  1024. ExtendedType: (*Real)(nil),
  1025. ExtensionType: (*string)(nil),
  1026. Field: 124,
  1027. Name: "jsonpb.name",
  1028. Tag: "bytes,124,opt,name=name",
  1029. Filename: "test_objects.proto",
  1030. }
  1031. var E_Extm = &proto.ExtensionDesc{
  1032. ExtendedType: (*Real)(nil),
  1033. ExtensionType: (*MsgWithRequired)(nil),
  1034. Field: 125,
  1035. Name: "jsonpb.extm",
  1036. Tag: "bytes,125,opt,name=extm",
  1037. Filename: "test_objects.proto",
  1038. }
  1039. func init() {
  1040. proto.RegisterType((*Simple)(nil), "jsonpb.Simple")
  1041. proto.RegisterType((*NonFinites)(nil), "jsonpb.NonFinites")
  1042. proto.RegisterType((*Repeats)(nil), "jsonpb.Repeats")
  1043. proto.RegisterType((*Widget)(nil), "jsonpb.Widget")
  1044. proto.RegisterType((*Maps)(nil), "jsonpb.Maps")
  1045. proto.RegisterMapType((map[bool]*Simple)(nil), "jsonpb.Maps.MBoolSimpleEntry")
  1046. proto.RegisterMapType((map[int64]string)(nil), "jsonpb.Maps.MInt64StrEntry")
  1047. proto.RegisterType((*MsgWithOneof)(nil), "jsonpb.MsgWithOneof")
  1048. proto.RegisterType((*Real)(nil), "jsonpb.Real")
  1049. proto.RegisterType((*Complex)(nil), "jsonpb.Complex")
  1050. proto.RegisterType((*KnownTypes)(nil), "jsonpb.KnownTypes")
  1051. proto.RegisterType((*MsgWithRequired)(nil), "jsonpb.MsgWithRequired")
  1052. proto.RegisterType((*MsgWithIndirectRequired)(nil), "jsonpb.MsgWithIndirectRequired")
  1053. proto.RegisterMapType((map[string]*MsgWithRequired)(nil), "jsonpb.MsgWithIndirectRequired.MapFieldEntry")
  1054. proto.RegisterType((*MsgWithRequiredBytes)(nil), "jsonpb.MsgWithRequiredBytes")
  1055. proto.RegisterType((*MsgWithRequiredWKT)(nil), "jsonpb.MsgWithRequiredWKT")
  1056. proto.RegisterEnum("jsonpb.Widget_Color", Widget_Color_name, Widget_Color_value)
  1057. proto.RegisterExtension(E_Complex_RealExtension)
  1058. proto.RegisterExtension(E_Name)
  1059. proto.RegisterExtension(E_Extm)
  1060. }
  1061. func init() { proto.RegisterFile("test_objects.proto", fileDescriptor_test_objects_c6f6c615ab823e65) }
  1062. var fileDescriptor_test_objects_c6f6c615ab823e65 = []byte{
  1063. // 1357 bytes of a gzipped FileDescriptorProto
  1064. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x56, 0xdd, 0x72, 0x13, 0xc7,
  1065. 0x12, 0xf6, 0xee, 0x6a, 0xf5, 0xd3, 0xf2, 0x1f, 0x83, 0x81, 0xc5, 0x87, 0x73, 0x8e, 0x4a, 0x70,
  1066. 0x38, 0x0a, 0xc4, 0xa2, 0x22, 0xbb, 0x5c, 0x84, 0xe4, 0x06, 0x63, 0x13, 0x08, 0xe0, 0xa4, 0xc6,
  1067. 0x26, 0x5c, 0xaa, 0x56, 0xde, 0x91, 0x59, 0xb2, 0xbb, 0xa3, 0xcc, 0xcc, 0xda, 0xa8, 0x92, 0x54,
  1068. 0xf9, 0x19, 0x52, 0x79, 0x82, 0x54, 0x25, 0x8f, 0x90, 0x8b, 0xbc, 0x45, 0xde, 0x28, 0x35, 0x3d,
  1069. 0xb3, 0x5a, 0x59, 0x42, 0x95, 0x5c, 0x79, 0xbb, 0xfb, 0xeb, 0x4f, 0x33, 0xfd, 0xf5, 0x74, 0x1b,
  1070. 0x88, 0x62, 0x52, 0xf5, 0xf9, 0xe0, 0x1d, 0x3b, 0x51, 0xb2, 0x3b, 0x12, 0x5c, 0x71, 0x52, 0x7d,
  1071. 0x27, 0x79, 0x36, 0x1a, 0x6c, 0xde, 0x3c, 0xe5, 0xfc, 0x34, 0x61, 0x0f, 0xd0, 0x3b, 0xc8, 0x87,
  1072. 0x0f, 0xc2, 0x6c, 0x6c, 0x20, 0x9b, 0xff, 0x99, 0x0d, 0x45, 0xb9, 0x08, 0x55, 0xcc, 0x33, 0x1b,
  1073. 0xbf, 0x35, 0x1b, 0x97, 0x4a, 0xe4, 0x27, 0xca, 0x46, 0xff, 0x3b, 0x1b, 0x55, 0x71, 0xca, 0xa4,
  1074. 0x0a, 0xd3, 0xd1, 0x22, 0xfa, 0x73, 0x11, 0x8e, 0x46, 0x4c, 0xd8, 0x13, 0xb6, 0x7f, 0x75, 0xa1,
  1075. 0x7a, 0x14, 0xa7, 0xa3, 0x84, 0x91, 0x6b, 0x50, 0xe5, 0xfd, 0x01, 0xe7, 0x49, 0xe0, 0xb4, 0x9c,
  1076. 0x4e, 0x9d, 0xfa, 0x7c, 0x8f, 0xf3, 0x84, 0xdc, 0x80, 0x1a, 0xef, 0xc7, 0x99, 0xda, 0xee, 0x05,
  1077. 0x6e, 0xcb, 0xe9, 0xf8, 0xb4, 0xca, 0x9f, 0x6b, 0x6b, 0x12, 0xd8, 0xdd, 0x09, 0xbc, 0x96, 0xd3,
  1078. 0xf1, 0x4c, 0x60, 0x77, 0x87, 0xdc, 0x84, 0x3a, 0xef, 0xe7, 0x26, 0xa5, 0xd2, 0x72, 0x3a, 0x2b,
  1079. 0xb4, 0xc6, 0x5f, 0xa3, 0x59, 0x86, 0x76, 0x77, 0x02, 0xbf, 0xe5, 0x74, 0x2a, 0x36, 0x54, 0x64,
  1080. 0x49, 0x93, 0x55, 0x6d, 0x39, 0x9d, 0x2b, 0xb4, 0xc6, 0x8f, 0xa6, 0xb2, 0xa4, 0xc9, 0xaa, 0xb5,
  1081. 0x9c, 0x0e, 0xb1, 0xa1, 0xdd, 0x1d, 0x73, 0x88, 0x61, 0xc2, 0x43, 0x15, 0xd4, 0x5b, 0x4e, 0xc7,
  1082. 0xa5, 0x55, 0xfe, 0x54, 0x5b, 0x26, 0x27, 0xe2, 0xf9, 0x20, 0x61, 0x41, 0xa3, 0xe5, 0x74, 0x1c,
  1083. 0x5a, 0xe3, 0xfb, 0x68, 0x5a, 0x3a, 0x25, 0xe2, 0xec, 0x34, 0x80, 0x96, 0xd3, 0x69, 0x68, 0x3a,
  1084. 0x34, 0x0d, 0xdd, 0x60, 0xac, 0x98, 0x0c, 0x9a, 0x2d, 0xa7, 0xb3, 0x4c, 0xab, 0x7c, 0x4f, 0x5b,
  1085. 0xed, 0x9f, 0x1c, 0x80, 0x43, 0x9e, 0x3d, 0x8d, 0xb3, 0x58, 0x31, 0x49, 0xae, 0x82, 0x3f, 0xec,
  1086. 0x67, 0x61, 0x86, 0xa5, 0x72, 0x69, 0x65, 0x78, 0x18, 0x66, 0xba, 0x80, 0xc3, 0xfe, 0x28, 0xce,
  1087. 0x86, 0x58, 0x28, 0x97, 0xfa, 0xc3, 0xaf, 0xe3, 0x6c, 0x68, 0xdc, 0x99, 0x76, 0x7b, 0xd6, 0x7d,
  1088. 0xa8, 0xdd, 0x57, 0xc1, 0x8f, 0x90, 0xa2, 0x82, 0xa7, 0xab, 0x44, 0x96, 0x22, 0x32, 0x14, 0x3e,
  1089. 0x7a, 0xfd, 0xa8, 0xa0, 0x88, 0x0c, 0x45, 0xd5, 0xba, 0x35, 0x45, 0xfb, 0x37, 0x17, 0x6a, 0x94,
  1090. 0x8d, 0x58, 0xa8, 0xa4, 0x86, 0x88, 0x42, 0x3d, 0x4f, 0xab, 0x27, 0x0a, 0xf5, 0xc4, 0x44, 0x3d,
  1091. 0x4f, 0xab, 0x27, 0x26, 0xea, 0x89, 0x89, 0x7a, 0x9e, 0x56, 0x4f, 0x4c, 0xd4, 0x13, 0xa5, 0x7a,
  1092. 0x9e, 0x56, 0x4f, 0x94, 0xea, 0x89, 0x52, 0x3d, 0x4f, 0xab, 0x27, 0x4a, 0xf5, 0x44, 0xa9, 0x9e,
  1093. 0xa7, 0xd5, 0x13, 0x47, 0x53, 0x59, 0x13, 0xf5, 0x3c, 0xad, 0x9e, 0x28, 0xd5, 0x13, 0x13, 0xf5,
  1094. 0x3c, 0xad, 0x9e, 0x98, 0xa8, 0x27, 0x4a, 0xf5, 0x3c, 0xad, 0x9e, 0x28, 0xd5, 0x13, 0xa5, 0x7a,
  1095. 0x9e, 0x56, 0x4f, 0x94, 0xea, 0x89, 0x89, 0x7a, 0x9e, 0x56, 0x4f, 0x18, 0xf5, 0x7e, 0x77, 0xa1,
  1096. 0xfa, 0x26, 0x8e, 0x4e, 0x99, 0x22, 0xf7, 0xc0, 0x3f, 0xe1, 0x09, 0x17, 0xa8, 0xdc, 0x6a, 0x6f,
  1097. 0xa3, 0x6b, 0x9e, 0x68, 0xd7, 0x84, 0xbb, 0x4f, 0x74, 0x8c, 0x1a, 0x08, 0xd9, 0xd2, 0x7c, 0x06,
  1098. 0xad, 0x8b, 0xb7, 0x08, 0x5d, 0x15, 0xf8, 0x97, 0xdc, 0x85, 0xaa, 0xc4, 0xa7, 0x84, 0x5d, 0xd5,
  1099. 0xec, 0xad, 0x16, 0x68, 0xf3, 0xc0, 0xa8, 0x8d, 0x92, 0x8f, 0x4c, 0x41, 0x10, 0xa9, 0xcf, 0x39,
  1100. 0x8f, 0xd4, 0x05, 0xb2, 0xd0, 0x9a, 0x30, 0x02, 0x07, 0x1b, 0xc8, 0xb9, 0x56, 0x20, 0xad, 0xee,
  1101. 0xb4, 0x88, 0x93, 0x8f, 0xa1, 0x21, 0xfa, 0x05, 0xf8, 0x1a, 0xd2, 0xce, 0x81, 0xeb, 0xc2, 0x7e,
  1102. 0xb5, 0xff, 0x07, 0xbe, 0x39, 0x74, 0x0d, 0x3c, 0x7a, 0xb0, 0xbf, 0xbe, 0x44, 0x1a, 0xe0, 0x7f,
  1103. 0x41, 0x0f, 0x0e, 0x0e, 0xd7, 0x1d, 0x52, 0x87, 0xca, 0xde, 0xcb, 0xd7, 0x07, 0xeb, 0x6e, 0xfb,
  1104. 0x67, 0x17, 0x2a, 0xaf, 0xc2, 0x91, 0x24, 0x9f, 0x41, 0x33, 0x35, 0xed, 0xa2, 0x6b, 0x8f, 0x3d,
  1105. 0xd6, 0xec, 0xfd, 0xab, 0xe0, 0xd7, 0x90, 0xee, 0x2b, 0xec, 0x9f, 0x23, 0x25, 0x0e, 0x32, 0x25,
  1106. 0xc6, 0xb4, 0x91, 0x16, 0x36, 0x79, 0x0c, 0x2b, 0x29, 0xf6, 0x66, 0x71, 0x6b, 0x17, 0xd3, 0xff,
  1107. 0x7d, 0x39, 0x5d, 0xf7, 0xab, 0xb9, 0xb6, 0x21, 0x68, 0xa6, 0xa5, 0x67, 0xf3, 0x73, 0x58, 0xbd,
  1108. 0xcc, 0x4f, 0xd6, 0xc1, 0xfb, 0x96, 0x8d, 0x51, 0x46, 0x8f, 0xea, 0x4f, 0xb2, 0x01, 0xfe, 0x59,
  1109. 0x98, 0xe4, 0x0c, 0x9f, 0x5f, 0x83, 0x1a, 0xe3, 0x91, 0xfb, 0xd0, 0xd9, 0x3c, 0x84, 0xf5, 0x59,
  1110. 0xfa, 0xe9, 0xfc, 0xba, 0xc9, 0xbf, 0x33, 0x9d, 0x3f, 0x2f, 0x4a, 0xc9, 0xd7, 0xfe, 0xd3, 0x81,
  1111. 0xe5, 0x57, 0xf2, 0xf4, 0x4d, 0xac, 0xde, 0x7e, 0x95, 0x31, 0x3e, 0x24, 0xd7, 0xc1, 0x57, 0xb1,
  1112. 0x4a, 0x18, 0xd2, 0x35, 0x9e, 0x2d, 0x51, 0x63, 0x92, 0x00, 0xaa, 0x32, 0x4c, 0x42, 0x31, 0x46,
  1113. 0x4e, 0xef, 0xd9, 0x12, 0xb5, 0x36, 0xd9, 0x84, 0xda, 0x13, 0x9e, 0xeb, 0x93, 0xe0, 0x58, 0xd0,
  1114. 0x39, 0x85, 0x83, 0xdc, 0x86, 0xe5, 0xb7, 0x3c, 0x65, 0xfd, 0x30, 0x8a, 0x04, 0x93, 0x12, 0x27,
  1115. 0x84, 0x06, 0x34, 0xb5, 0xf7, 0xb1, 0x71, 0x92, 0x03, 0xb8, 0x92, 0xca, 0xd3, 0xfe, 0x79, 0xac,
  1116. 0xde, 0xf6, 0x05, 0xfb, 0x2e, 0x8f, 0x05, 0x8b, 0x70, 0x6a, 0x34, 0x7b, 0x37, 0x26, 0x85, 0x35,
  1117. 0x67, 0xa4, 0x36, 0xfc, 0x6c, 0x89, 0xae, 0xa5, 0x97, 0x5d, 0x7b, 0x35, 0xf0, 0xf3, 0x2c, 0xe6,
  1118. 0x59, 0xfb, 0x2e, 0x54, 0x28, 0x0b, 0x93, 0xb2, 0x8a, 0x8e, 0x19, 0x35, 0x68, 0xdc, 0xab, 0xd7,
  1119. 0xa3, 0xf5, 0x8b, 0x8b, 0x8b, 0x0b, 0xb7, 0x7d, 0xae, 0x0f, 0xae, 0x0b, 0xf2, 0x9e, 0xdc, 0x82,
  1120. 0x46, 0x9c, 0x86, 0xa7, 0x71, 0xa6, 0x2f, 0x68, 0xe0, 0xa5, 0xa3, 0x4c, 0xe9, 0xed, 0xc3, 0xaa,
  1121. 0x60, 0x61, 0xd2, 0x67, 0xef, 0x15, 0xcb, 0x64, 0xcc, 0x33, 0xb2, 0x5c, 0x76, 0x66, 0x98, 0x04,
  1122. 0xdf, 0x5f, 0x6e, 0x6d, 0x4b, 0x4f, 0x57, 0x74, 0xd2, 0x41, 0x91, 0xd3, 0xfe, 0xc3, 0x07, 0x78,
  1123. 0x91, 0xf1, 0xf3, 0xec, 0x78, 0x3c, 0x62, 0x92, 0xdc, 0x01, 0x37, 0xcc, 0x82, 0x55, 0x4c, 0xdd,
  1124. 0xe8, 0x9a, 0x35, 0xd7, 0x2d, 0xd6, 0x5c, 0xf7, 0x71, 0x36, 0xa6, 0x6e, 0x98, 0x91, 0xfb, 0xe0,
  1125. 0x45, 0xb9, 0x79, 0xec, 0xcd, 0xde, 0xcd, 0x39, 0xd8, 0xbe, 0x5d, 0xb6, 0x54, 0xa3, 0xc8, 0xff,
  1126. 0xc1, 0x95, 0x2a, 0x58, 0xb6, 0x35, 0x9c, 0xc5, 0x1e, 0xe1, 0xe2, 0xa5, 0xae, 0xd4, 0x43, 0xc4,
  1127. 0x55, 0xd2, 0xb6, 0xc9, 0xe6, 0x1c, 0xf0, 0xb8, 0xd8, 0xc1, 0xd4, 0x55, 0x52, 0x63, 0x93, 0xb3,
  1128. 0x60, 0x6d, 0x01, 0xf6, 0x65, 0x2c, 0xd5, 0x37, 0xba, 0xc2, 0xd4, 0x4d, 0xce, 0x48, 0x07, 0xbc,
  1129. 0xb3, 0x30, 0x09, 0xd6, 0x11, 0x7c, 0x7d, 0x0e, 0x6c, 0x80, 0x1a, 0x42, 0xba, 0xe0, 0x45, 0x83,
  1130. 0x04, 0x5b, 0xa7, 0xd9, 0xbb, 0x35, 0x7f, 0x2f, 0x9c, 0x95, 0x16, 0x1f, 0x0d, 0x12, 0xb2, 0x05,
  1131. 0xde, 0x30, 0x51, 0xd8, 0x49, 0xfa, 0xdd, 0xce, 0xe2, 0x71, 0xea, 0x5a, 0xf8, 0x30, 0x51, 0x1a,
  1132. 0x1e, 0xdb, 0x15, 0xfd, 0x21, 0x38, 0xbe, 0x44, 0x0b, 0x8f, 0x77, 0x77, 0xf4, 0x69, 0xf2, 0xdd,
  1133. 0x1d, 0x5c, 0x4e, 0x1f, 0x3a, 0xcd, 0xeb, 0x69, 0x7c, 0xbe, 0xbb, 0x83, 0xf4, 0xdb, 0x3d, 0xdc,
  1134. 0xe5, 0x0b, 0xe8, 0xb7, 0x7b, 0x05, 0xfd, 0x76, 0x0f, 0xe9, 0xb7, 0x7b, 0xb8, 0xe0, 0x17, 0xd1,
  1135. 0x4f, 0xf0, 0x39, 0xe2, 0x2b, 0xb8, 0x09, 0x1b, 0x0b, 0x8a, 0xae, 0x47, 0x81, 0x81, 0x23, 0x4e,
  1136. 0xf3, 0xeb, 0xa1, 0x06, 0x0b, 0xf8, 0xcd, 0x76, 0xb1, 0xfc, 0x52, 0x09, 0xf2, 0x09, 0xf8, 0xe5,
  1137. 0xff, 0x08, 0x1f, 0xba, 0x00, 0x6e, 0x1d, 0x93, 0x60, 0x90, 0xed, 0xdb, 0xb0, 0x36, 0xf3, 0x18,
  1138. 0xf5, 0x00, 0x32, 0xa3, 0xd4, 0xed, 0x34, 0x90, 0xb7, 0xfd, 0x8b, 0x0b, 0x37, 0x2c, 0xea, 0x79,
  1139. 0x16, 0xc5, 0x82, 0x9d, 0xa8, 0x09, 0xfa, 0x3e, 0x54, 0x64, 0x3e, 0x48, 0x6d, 0x27, 0x2f, 0x7a,
  1140. 0xe1, 0x14, 0x41, 0xe4, 0x4b, 0x68, 0xa4, 0xe1, 0xa8, 0x3f, 0x8c, 0x59, 0x12, 0xd9, 0x61, 0xbb,
  1141. 0x35, 0x93, 0x31, 0xfb, 0x03, 0x7a, 0x08, 0x3f, 0xd5, 0x78, 0x33, 0x7c, 0xeb, 0xa9, 0x35, 0xc9,
  1142. 0x43, 0x68, 0xca, 0x24, 0x3e, 0x61, 0x96, 0xcd, 0x43, 0xb6, 0x85, 0xbf, 0x0f, 0x88, 0xc5, 0xcc,
  1143. 0xcd, 0x63, 0x58, 0xb9, 0x44, 0x3a, 0x3d, 0x72, 0x1b, 0x66, 0xe4, 0x6e, 0x5d, 0x1e, 0xb9, 0x0b,
  1144. 0x69, 0xa7, 0x66, 0xef, 0x3d, 0xd8, 0x98, 0x89, 0x62, 0xb5, 0x09, 0x81, 0xca, 0x60, 0xac, 0x24,
  1145. 0xd6, 0x73, 0x99, 0xe2, 0x77, 0x7b, 0x1f, 0xc8, 0x0c, 0xf6, 0xcd, 0x8b, 0xe3, 0x42, 0x6e, 0x0d,
  1146. 0xfc, 0x27, 0x72, 0x3f, 0x6a, 0x41, 0x25, 0x0b, 0x53, 0x36, 0x33, 0xb4, 0x7e, 0xc0, 0x5b, 0x60,
  1147. 0xe4, 0xd1, 0xa7, 0x50, 0x61, 0xef, 0x55, 0x3a, 0x83, 0xf8, 0xf1, 0x6f, 0xa4, 0xd2, 0x29, 0x7f,
  1148. 0x05, 0x00, 0x00, 0xff, 0xff, 0xea, 0x06, 0x1a, 0xa9, 0x37, 0x0c, 0x00, 0x00,
  1149. }