test.pb.go 52 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183
  1. // Code generated by protoc-gen-go.
  2. // source: proto3.v0.0.0-20160519-a4ab9ec5/test.proto
  3. // DO NOT EDIT!
  4. /*
  5. Package proto3_v0_0_0_20160519_a4ab9ec5 is a generated protocol buffer package.
  6. It is generated from these files:
  7. proto3.v0.0.0-20160519-a4ab9ec5/test.proto
  8. It has these top-level messages:
  9. SiblingMessage
  10. Message
  11. */
  12. package proto3_v0_0_0_20160519_a4ab9ec5
  13. import proto "google.golang.org/protobuf/internal/protolegacy"
  14. import fmt "fmt"
  15. import math "math"
  16. // Reference imports to suppress errors if they are not otherwise used.
  17. var _ = proto.Marshal
  18. var _ = fmt.Errorf
  19. var _ = math.Inf
  20. // This is a compile-time assertion to ensure that this generated file
  21. // is compatible with the proto package it is being compiled against.
  22. const _ = proto.ProtoPackageIsVersion1
  23. type SiblingEnum int32
  24. const (
  25. SiblingEnum_ALPHA SiblingEnum = 0
  26. SiblingEnum_BRAVO SiblingEnum = 10
  27. SiblingEnum_CHARLIE SiblingEnum = 200
  28. )
  29. var SiblingEnum_name = map[int32]string{
  30. 0: "ALPHA",
  31. 10: "BRAVO",
  32. 200: "CHARLIE",
  33. }
  34. var SiblingEnum_value = map[string]int32{
  35. "ALPHA": 0,
  36. "BRAVO": 10,
  37. "CHARLIE": 200,
  38. }
  39. func (x SiblingEnum) String() string {
  40. return proto.EnumName(SiblingEnum_name, int32(x))
  41. }
  42. func (SiblingEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  43. type Message_ChildEnum int32
  44. const (
  45. Message_ALPHA Message_ChildEnum = 0
  46. Message_BRAVO Message_ChildEnum = 1
  47. Message_CHARLIE Message_ChildEnum = 2
  48. )
  49. var Message_ChildEnum_name = map[int32]string{
  50. 0: "ALPHA",
  51. 1: "BRAVO",
  52. 2: "CHARLIE",
  53. }
  54. var Message_ChildEnum_value = map[string]int32{
  55. "ALPHA": 0,
  56. "BRAVO": 1,
  57. "CHARLIE": 2,
  58. }
  59. func (x Message_ChildEnum) String() string {
  60. return proto.EnumName(Message_ChildEnum_name, int32(x))
  61. }
  62. func (Message_ChildEnum) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{1, 0} }
  63. type SiblingMessage struct {
  64. F1 string `protobuf:"bytes,1,opt,name=f1" json:"f1,omitempty"`
  65. F2 []string `protobuf:"bytes,2,rep,name=f2" json:"f2,omitempty"`
  66. F3 *Message `protobuf:"bytes,3,opt,name=f3" json:"f3,omitempty"`
  67. }
  68. func (m *SiblingMessage) Reset() { *m = SiblingMessage{} }
  69. func (m *SiblingMessage) String() string { return proto.CompactTextString(m) }
  70. func (*SiblingMessage) ProtoMessage() {}
  71. func (*SiblingMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  72. func (m *SiblingMessage) GetF3() *Message {
  73. if m != nil {
  74. return m.F3
  75. }
  76. return nil
  77. }
  78. type Message struct {
  79. // Optional fields.
  80. OptionalBool bool `protobuf:"varint,100,opt,name=optional_bool,json=optionalBool" json:"optional_bool,omitempty"`
  81. OptionalInt32 int32 `protobuf:"varint,101,opt,name=optional_int32,json=optionalInt32" json:"optional_int32,omitempty"`
  82. OptionalSint32 int32 `protobuf:"zigzag32,102,opt,name=optional_sint32,json=optionalSint32" json:"optional_sint32,omitempty"`
  83. OptionalUint32 uint32 `protobuf:"varint,103,opt,name=optional_uint32,json=optionalUint32" json:"optional_uint32,omitempty"`
  84. OptionalInt64 int64 `protobuf:"varint,104,opt,name=optional_int64,json=optionalInt64" json:"optional_int64,omitempty"`
  85. OptionalSint64 int64 `protobuf:"zigzag64,105,opt,name=optional_sint64,json=optionalSint64" json:"optional_sint64,omitempty"`
  86. OptionalUint64 uint64 `protobuf:"varint,106,opt,name=optional_uint64,json=optionalUint64" json:"optional_uint64,omitempty"`
  87. OptionalFixed32 uint32 `protobuf:"fixed32,107,opt,name=optional_fixed32,json=optionalFixed32" json:"optional_fixed32,omitempty"`
  88. OptionalSfixed32 int32 `protobuf:"fixed32,108,opt,name=optional_sfixed32,json=optionalSfixed32" json:"optional_sfixed32,omitempty"`
  89. OptionalFloat float32 `protobuf:"fixed32,109,opt,name=optional_float,json=optionalFloat" json:"optional_float,omitempty"`
  90. OptionalFixed64 uint64 `protobuf:"fixed64,110,opt,name=optional_fixed64,json=optionalFixed64" json:"optional_fixed64,omitempty"`
  91. OptionalSfixed64 int64 `protobuf:"fixed64,111,opt,name=optional_sfixed64,json=optionalSfixed64" json:"optional_sfixed64,omitempty"`
  92. OptionalDouble float64 `protobuf:"fixed64,112,opt,name=optional_double,json=optionalDouble" json:"optional_double,omitempty"`
  93. OptionalString string `protobuf:"bytes,113,opt,name=optional_string,json=optionalString" json:"optional_string,omitempty"`
  94. OptionalBytes []byte `protobuf:"bytes,114,opt,name=optional_bytes,json=optionalBytes,proto3" json:"optional_bytes,omitempty"`
  95. OptionalChildEnum Message_ChildEnum `protobuf:"varint,115,opt,name=optional_child_enum,json=optionalChildEnum,enum=google.golang.org.proto3_20160519.Message_ChildEnum" json:"optional_child_enum,omitempty"`
  96. OptionalChildMessage *Message_ChildMessage `protobuf:"bytes,116,opt,name=optional_child_message,json=optionalChildMessage" json:"optional_child_message,omitempty"`
  97. OptionalSiblingEnum SiblingEnum `protobuf:"varint,117,opt,name=optional_sibling_enum,json=optionalSiblingEnum,enum=google.golang.org.proto3_20160519.SiblingEnum" json:"optional_sibling_enum,omitempty"`
  98. OptionalSiblingMessage *SiblingMessage `protobuf:"bytes,118,opt,name=optional_sibling_message,json=optionalSiblingMessage" json:"optional_sibling_message,omitempty"`
  99. // Repeated fields.
  100. RepeatedBool []bool `protobuf:"varint,200,rep,name=repeated_bool,json=repeatedBool" json:"repeated_bool,omitempty"`
  101. RepeatedInt32 []int32 `protobuf:"varint,201,rep,name=repeated_int32,json=repeatedInt32" json:"repeated_int32,omitempty"`
  102. RepeatedSint32 []int32 `protobuf:"zigzag32,202,rep,name=repeated_sint32,json=repeatedSint32" json:"repeated_sint32,omitempty"`
  103. RepeatedUint32 []uint32 `protobuf:"varint,203,rep,name=repeated_uint32,json=repeatedUint32" json:"repeated_uint32,omitempty"`
  104. RepeatedInt64 []int64 `protobuf:"varint,204,rep,name=repeated_int64,json=repeatedInt64" json:"repeated_int64,omitempty"`
  105. RepeatedSint64 []int64 `protobuf:"zigzag64,205,rep,name=repeated_sint64,json=repeatedSint64" json:"repeated_sint64,omitempty"`
  106. RepeatedUint64 []uint64 `protobuf:"varint,206,rep,name=repeated_uint64,json=repeatedUint64" json:"repeated_uint64,omitempty"`
  107. RepeatedFixed32 []uint32 `protobuf:"fixed32,207,rep,name=repeated_fixed32,json=repeatedFixed32" json:"repeated_fixed32,omitempty"`
  108. RepeatedSfixed32 []int32 `protobuf:"fixed32,208,rep,name=repeated_sfixed32,json=repeatedSfixed32" json:"repeated_sfixed32,omitempty"`
  109. RepeatedFloat []float32 `protobuf:"fixed32,209,rep,name=repeated_float,json=repeatedFloat" json:"repeated_float,omitempty"`
  110. RepeatedFixed64 []uint64 `protobuf:"fixed64,210,rep,name=repeated_fixed64,json=repeatedFixed64" json:"repeated_fixed64,omitempty"`
  111. RepeatedSfixed64 []int64 `protobuf:"fixed64,211,rep,name=repeated_sfixed64,json=repeatedSfixed64" json:"repeated_sfixed64,omitempty"`
  112. RepeatedDouble []float64 `protobuf:"fixed64,212,rep,name=repeated_double,json=repeatedDouble" json:"repeated_double,omitempty"`
  113. RepeatedString []string `protobuf:"bytes,213,rep,name=repeated_string,json=repeatedString" json:"repeated_string,omitempty"`
  114. RepeatedBytes [][]byte `protobuf:"bytes,214,rep,name=repeated_bytes,json=repeatedBytes,proto3" json:"repeated_bytes,omitempty"`
  115. RepeatedChildEnum []Message_ChildEnum `protobuf:"varint,215,rep,name=repeated_child_enum,json=repeatedChildEnum,enum=google.golang.org.proto3_20160519.Message_ChildEnum" json:"repeated_child_enum,omitempty"`
  116. RepeatedChildMessage []*Message_ChildMessage `protobuf:"bytes,216,rep,name=repeated_child_message,json=repeatedChildMessage" json:"repeated_child_message,omitempty"`
  117. RepeatedSiblingEnum []SiblingEnum `protobuf:"varint,217,rep,name=repeated_sibling_enum,json=repeatedSiblingEnum,enum=google.golang.org.proto3_20160519.SiblingEnum" json:"repeated_sibling_enum,omitempty"`
  118. RepeatedSiblingMessage []*SiblingMessage `protobuf:"bytes,218,rep,name=repeated_sibling_message,json=repeatedSiblingMessage" json:"repeated_sibling_message,omitempty"`
  119. // Map fields.
  120. MapBoolBool map[bool]bool `protobuf:"bytes,300,rep,name=map_bool_bool,json=mapBoolBool" json:"map_bool_bool,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  121. MapBoolInt32 map[bool]int32 `protobuf:"bytes,301,rep,name=map_bool_int32,json=mapBoolInt32" json:"map_bool_int32,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  122. MapBoolSint32 map[bool]int32 `protobuf:"bytes,302,rep,name=map_bool_sint32,json=mapBoolSint32" json:"map_bool_sint32,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"zigzag32,2,opt,name=value"`
  123. MapBoolUint32 map[bool]uint32 `protobuf:"bytes,303,rep,name=map_bool_uint32,json=mapBoolUint32" json:"map_bool_uint32,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  124. MapBoolInt64 map[bool]int64 `protobuf:"bytes,304,rep,name=map_bool_int64,json=mapBoolInt64" json:"map_bool_int64,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  125. MapBoolSint64 map[bool]int64 `protobuf:"bytes,305,rep,name=map_bool_sint64,json=mapBoolSint64" json:"map_bool_sint64,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"zigzag64,2,opt,name=value"`
  126. MapBoolUint64 map[bool]uint64 `protobuf:"bytes,306,rep,name=map_bool_uint64,json=mapBoolUint64" json:"map_bool_uint64,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  127. MapBoolFixed32 map[bool]uint32 `protobuf:"bytes,307,rep,name=map_bool_fixed32,json=mapBoolFixed32" json:"map_bool_fixed32,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"`
  128. MapBoolSfixed32 map[bool]int32 `protobuf:"bytes,308,rep,name=map_bool_sfixed32,json=mapBoolSfixed32" json:"map_bool_sfixed32,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"`
  129. MapBoolFloat map[bool]float32 `protobuf:"bytes,309,rep,name=map_bool_float,json=mapBoolFloat" json:"map_bool_float,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"`
  130. MapBoolFixed64 map[bool]uint64 `protobuf:"bytes,310,rep,name=map_bool_fixed64,json=mapBoolFixed64" json:"map_bool_fixed64,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"`
  131. MapBoolSfixed64 map[bool]int64 `protobuf:"bytes,311,rep,name=map_bool_sfixed64,json=mapBoolSfixed64" json:"map_bool_sfixed64,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"`
  132. MapBoolDouble map[bool]float64 `protobuf:"bytes,312,rep,name=map_bool_double,json=mapBoolDouble" json:"map_bool_double,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"`
  133. MapBoolString map[bool]string `protobuf:"bytes,313,rep,name=map_bool_string,json=mapBoolString" json:"map_bool_string,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  134. MapBoolBytes map[bool][]byte `protobuf:"bytes,314,rep,name=map_bool_bytes,json=mapBoolBytes" json:"map_bool_bytes,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value,proto3"`
  135. MapBoolChildEnum map[bool]Message_ChildEnum `protobuf:"bytes,315,rep,name=map_bool_child_enum,json=mapBoolChildEnum" json:"map_bool_child_enum,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value,enum=google.golang.org.proto3_20160519.Message_ChildEnum"`
  136. MapBoolChildMessage map[bool]*Message_ChildMessage `protobuf:"bytes,316,rep,name=map_bool_child_message,json=mapBoolChildMessage" json:"map_bool_child_message,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  137. MapBoolSiblingEnum map[bool]SiblingEnum `protobuf:"bytes,317,rep,name=map_bool_sibling_enum,json=mapBoolSiblingEnum" json:"map_bool_sibling_enum,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value,enum=google.golang.org.proto3_20160519.SiblingEnum"`
  138. MapBoolSiblingMessage map[bool]*SiblingMessage `protobuf:"bytes,318,rep,name=map_bool_sibling_message,json=mapBoolSiblingMessage" json:"map_bool_sibling_message,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  139. MapInt32Bool map[int32]bool `protobuf:"bytes,319,rep,name=map_int32_bool,json=mapInt32Bool" json:"map_int32_bool,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  140. MapSint32Bool map[int32]bool `protobuf:"bytes,320,rep,name=map_sint32_bool,json=mapSint32Bool" json:"map_sint32_bool,omitempty" protobuf_key:"zigzag32,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  141. MapUint32Bool map[uint32]bool `protobuf:"bytes,321,rep,name=map_uint32_bool,json=mapUint32Bool" json:"map_uint32_bool,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  142. MapInt64Bool map[int64]bool `protobuf:"bytes,322,rep,name=map_int64_bool,json=mapInt64Bool" json:"map_int64_bool,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  143. MapSint64Bool map[int64]bool `protobuf:"bytes,323,rep,name=map_sint64_bool,json=mapSint64Bool" json:"map_sint64_bool,omitempty" protobuf_key:"zigzag64,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  144. MapUint64Bool map[uint64]bool `protobuf:"bytes,324,rep,name=map_uint64_bool,json=mapUint64Bool" json:"map_uint64_bool,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  145. MapFixed32Bool map[uint32]bool `protobuf:"bytes,325,rep,name=map_fixed32_bool,json=mapFixed32Bool" json:"map_fixed32_bool,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  146. MapStringBool map[string]bool `protobuf:"bytes,326,rep,name=map_string_bool,json=mapStringBool" json:"map_string_bool,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  147. // Oneof fields.
  148. //
  149. // Types that are valid to be assigned to OneofUnion:
  150. // *Message_OneofBool
  151. // *Message_OneofInt32
  152. // *Message_OneofSint32
  153. // *Message_OneofUint32
  154. // *Message_OneofInt64
  155. // *Message_OneofSint64
  156. // *Message_OneofUint64
  157. // *Message_OneofFixed32
  158. // *Message_OneofSfixed32
  159. // *Message_OneofFloat
  160. // *Message_OneofFixed64
  161. // *Message_OneofSfixed64
  162. // *Message_OneofDouble
  163. // *Message_OneofString
  164. // *Message_OneofBytes
  165. // *Message_OneofChildEnum
  166. // *Message_OneofChildMessage
  167. // *Message_OneofSiblingEnum
  168. // *Message_OneofSiblingMessage
  169. // *Message_OneofString1
  170. // *Message_OneofString2
  171. // *Message_OneofString3
  172. OneofUnion isMessage_OneofUnion `protobuf_oneof:"oneof_union"`
  173. }
  174. func (m *Message) Reset() { *m = Message{} }
  175. func (m *Message) String() string { return proto.CompactTextString(m) }
  176. func (*Message) ProtoMessage() {}
  177. func (*Message) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  178. type isMessage_OneofUnion interface{ isMessage_OneofUnion() }
  179. type Message_OneofBool struct {
  180. OneofBool bool `protobuf:"varint,400,opt,name=oneof_bool,json=oneofBool,oneof"`
  181. }
  182. type Message_OneofInt32 struct {
  183. OneofInt32 int32 `protobuf:"varint,401,opt,name=oneof_int32,json=oneofInt32,oneof"`
  184. }
  185. type Message_OneofSint32 struct {
  186. OneofSint32 int32 `protobuf:"zigzag32,402,opt,name=oneof_sint32,json=oneofSint32,oneof"`
  187. }
  188. type Message_OneofUint32 struct {
  189. OneofUint32 uint32 `protobuf:"varint,403,opt,name=oneof_uint32,json=oneofUint32,oneof"`
  190. }
  191. type Message_OneofInt64 struct {
  192. OneofInt64 int64 `protobuf:"varint,404,opt,name=oneof_int64,json=oneofInt64,oneof"`
  193. }
  194. type Message_OneofSint64 struct {
  195. OneofSint64 int64 `protobuf:"zigzag64,405,opt,name=oneof_sint64,json=oneofSint64,oneof"`
  196. }
  197. type Message_OneofUint64 struct {
  198. OneofUint64 uint64 `protobuf:"varint,406,opt,name=oneof_uint64,json=oneofUint64,oneof"`
  199. }
  200. type Message_OneofFixed32 struct {
  201. OneofFixed32 uint32 `protobuf:"fixed32,407,opt,name=oneof_fixed32,json=oneofFixed32,oneof"`
  202. }
  203. type Message_OneofSfixed32 struct {
  204. OneofSfixed32 int32 `protobuf:"fixed32,408,opt,name=oneof_sfixed32,json=oneofSfixed32,oneof"`
  205. }
  206. type Message_OneofFloat struct {
  207. OneofFloat float32 `protobuf:"fixed32,409,opt,name=oneof_float,json=oneofFloat,oneof"`
  208. }
  209. type Message_OneofFixed64 struct {
  210. OneofFixed64 uint64 `protobuf:"fixed64,410,opt,name=oneof_fixed64,json=oneofFixed64,oneof"`
  211. }
  212. type Message_OneofSfixed64 struct {
  213. OneofSfixed64 int64 `protobuf:"fixed64,411,opt,name=oneof_sfixed64,json=oneofSfixed64,oneof"`
  214. }
  215. type Message_OneofDouble struct {
  216. OneofDouble float64 `protobuf:"fixed64,412,opt,name=oneof_double,json=oneofDouble,oneof"`
  217. }
  218. type Message_OneofString struct {
  219. OneofString string `protobuf:"bytes,413,opt,name=oneof_string,json=oneofString,oneof"`
  220. }
  221. type Message_OneofBytes struct {
  222. OneofBytes []byte `protobuf:"bytes,414,opt,name=oneof_bytes,json=oneofBytes,proto3,oneof"`
  223. }
  224. type Message_OneofChildEnum struct {
  225. OneofChildEnum Message_ChildEnum `protobuf:"varint,415,opt,name=oneof_child_enum,json=oneofChildEnum,enum=google.golang.org.proto3_20160519.Message_ChildEnum,oneof"`
  226. }
  227. type Message_OneofChildMessage struct {
  228. OneofChildMessage *Message_ChildMessage `protobuf:"bytes,416,opt,name=oneof_child_message,json=oneofChildMessage,oneof"`
  229. }
  230. type Message_OneofSiblingEnum struct {
  231. OneofSiblingEnum SiblingEnum `protobuf:"varint,417,opt,name=oneof_sibling_enum,json=oneofSiblingEnum,enum=google.golang.org.proto3_20160519.SiblingEnum,oneof"`
  232. }
  233. type Message_OneofSiblingMessage struct {
  234. OneofSiblingMessage *SiblingMessage `protobuf:"bytes,418,opt,name=oneof_sibling_message,json=oneofSiblingMessage,oneof"`
  235. }
  236. type Message_OneofString1 struct {
  237. OneofString1 string `protobuf:"bytes,419,opt,name=oneof_string1,json=oneofString1,oneof"`
  238. }
  239. type Message_OneofString2 struct {
  240. OneofString2 string `protobuf:"bytes,420,opt,name=oneof_string2,json=oneofString2,oneof"`
  241. }
  242. type Message_OneofString3 struct {
  243. OneofString3 string `protobuf:"bytes,421,opt,name=oneof_string3,json=oneofString3,oneof"`
  244. }
  245. func (*Message_OneofBool) isMessage_OneofUnion() {}
  246. func (*Message_OneofInt32) isMessage_OneofUnion() {}
  247. func (*Message_OneofSint32) isMessage_OneofUnion() {}
  248. func (*Message_OneofUint32) isMessage_OneofUnion() {}
  249. func (*Message_OneofInt64) isMessage_OneofUnion() {}
  250. func (*Message_OneofSint64) isMessage_OneofUnion() {}
  251. func (*Message_OneofUint64) isMessage_OneofUnion() {}
  252. func (*Message_OneofFixed32) isMessage_OneofUnion() {}
  253. func (*Message_OneofSfixed32) isMessage_OneofUnion() {}
  254. func (*Message_OneofFloat) isMessage_OneofUnion() {}
  255. func (*Message_OneofFixed64) isMessage_OneofUnion() {}
  256. func (*Message_OneofSfixed64) isMessage_OneofUnion() {}
  257. func (*Message_OneofDouble) isMessage_OneofUnion() {}
  258. func (*Message_OneofString) isMessage_OneofUnion() {}
  259. func (*Message_OneofBytes) isMessage_OneofUnion() {}
  260. func (*Message_OneofChildEnum) isMessage_OneofUnion() {}
  261. func (*Message_OneofChildMessage) isMessage_OneofUnion() {}
  262. func (*Message_OneofSiblingEnum) isMessage_OneofUnion() {}
  263. func (*Message_OneofSiblingMessage) isMessage_OneofUnion() {}
  264. func (*Message_OneofString1) isMessage_OneofUnion() {}
  265. func (*Message_OneofString2) isMessage_OneofUnion() {}
  266. func (*Message_OneofString3) isMessage_OneofUnion() {}
  267. func (m *Message) GetOneofUnion() isMessage_OneofUnion {
  268. if m != nil {
  269. return m.OneofUnion
  270. }
  271. return nil
  272. }
  273. func (m *Message) GetOptionalChildMessage() *Message_ChildMessage {
  274. if m != nil {
  275. return m.OptionalChildMessage
  276. }
  277. return nil
  278. }
  279. func (m *Message) GetOptionalSiblingMessage() *SiblingMessage {
  280. if m != nil {
  281. return m.OptionalSiblingMessage
  282. }
  283. return nil
  284. }
  285. func (m *Message) GetRepeatedChildMessage() []*Message_ChildMessage {
  286. if m != nil {
  287. return m.RepeatedChildMessage
  288. }
  289. return nil
  290. }
  291. func (m *Message) GetRepeatedSiblingMessage() []*SiblingMessage {
  292. if m != nil {
  293. return m.RepeatedSiblingMessage
  294. }
  295. return nil
  296. }
  297. func (m *Message) GetMapBoolBool() map[bool]bool {
  298. if m != nil {
  299. return m.MapBoolBool
  300. }
  301. return nil
  302. }
  303. func (m *Message) GetMapBoolInt32() map[bool]int32 {
  304. if m != nil {
  305. return m.MapBoolInt32
  306. }
  307. return nil
  308. }
  309. func (m *Message) GetMapBoolSint32() map[bool]int32 {
  310. if m != nil {
  311. return m.MapBoolSint32
  312. }
  313. return nil
  314. }
  315. func (m *Message) GetMapBoolUint32() map[bool]uint32 {
  316. if m != nil {
  317. return m.MapBoolUint32
  318. }
  319. return nil
  320. }
  321. func (m *Message) GetMapBoolInt64() map[bool]int64 {
  322. if m != nil {
  323. return m.MapBoolInt64
  324. }
  325. return nil
  326. }
  327. func (m *Message) GetMapBoolSint64() map[bool]int64 {
  328. if m != nil {
  329. return m.MapBoolSint64
  330. }
  331. return nil
  332. }
  333. func (m *Message) GetMapBoolUint64() map[bool]uint64 {
  334. if m != nil {
  335. return m.MapBoolUint64
  336. }
  337. return nil
  338. }
  339. func (m *Message) GetMapBoolFixed32() map[bool]uint32 {
  340. if m != nil {
  341. return m.MapBoolFixed32
  342. }
  343. return nil
  344. }
  345. func (m *Message) GetMapBoolSfixed32() map[bool]int32 {
  346. if m != nil {
  347. return m.MapBoolSfixed32
  348. }
  349. return nil
  350. }
  351. func (m *Message) GetMapBoolFloat() map[bool]float32 {
  352. if m != nil {
  353. return m.MapBoolFloat
  354. }
  355. return nil
  356. }
  357. func (m *Message) GetMapBoolFixed64() map[bool]uint64 {
  358. if m != nil {
  359. return m.MapBoolFixed64
  360. }
  361. return nil
  362. }
  363. func (m *Message) GetMapBoolSfixed64() map[bool]int64 {
  364. if m != nil {
  365. return m.MapBoolSfixed64
  366. }
  367. return nil
  368. }
  369. func (m *Message) GetMapBoolDouble() map[bool]float64 {
  370. if m != nil {
  371. return m.MapBoolDouble
  372. }
  373. return nil
  374. }
  375. func (m *Message) GetMapBoolString() map[bool]string {
  376. if m != nil {
  377. return m.MapBoolString
  378. }
  379. return nil
  380. }
  381. func (m *Message) GetMapBoolBytes() map[bool][]byte {
  382. if m != nil {
  383. return m.MapBoolBytes
  384. }
  385. return nil
  386. }
  387. func (m *Message) GetMapBoolChildEnum() map[bool]Message_ChildEnum {
  388. if m != nil {
  389. return m.MapBoolChildEnum
  390. }
  391. return nil
  392. }
  393. func (m *Message) GetMapBoolChildMessage() map[bool]*Message_ChildMessage {
  394. if m != nil {
  395. return m.MapBoolChildMessage
  396. }
  397. return nil
  398. }
  399. func (m *Message) GetMapBoolSiblingEnum() map[bool]SiblingEnum {
  400. if m != nil {
  401. return m.MapBoolSiblingEnum
  402. }
  403. return nil
  404. }
  405. func (m *Message) GetMapBoolSiblingMessage() map[bool]*SiblingMessage {
  406. if m != nil {
  407. return m.MapBoolSiblingMessage
  408. }
  409. return nil
  410. }
  411. func (m *Message) GetMapInt32Bool() map[int32]bool {
  412. if m != nil {
  413. return m.MapInt32Bool
  414. }
  415. return nil
  416. }
  417. func (m *Message) GetMapSint32Bool() map[int32]bool {
  418. if m != nil {
  419. return m.MapSint32Bool
  420. }
  421. return nil
  422. }
  423. func (m *Message) GetMapUint32Bool() map[uint32]bool {
  424. if m != nil {
  425. return m.MapUint32Bool
  426. }
  427. return nil
  428. }
  429. func (m *Message) GetMapInt64Bool() map[int64]bool {
  430. if m != nil {
  431. return m.MapInt64Bool
  432. }
  433. return nil
  434. }
  435. func (m *Message) GetMapSint64Bool() map[int64]bool {
  436. if m != nil {
  437. return m.MapSint64Bool
  438. }
  439. return nil
  440. }
  441. func (m *Message) GetMapUint64Bool() map[uint64]bool {
  442. if m != nil {
  443. return m.MapUint64Bool
  444. }
  445. return nil
  446. }
  447. func (m *Message) GetMapFixed32Bool() map[uint32]bool {
  448. if m != nil {
  449. return m.MapFixed32Bool
  450. }
  451. return nil
  452. }
  453. func (m *Message) GetMapStringBool() map[string]bool {
  454. if m != nil {
  455. return m.MapStringBool
  456. }
  457. return nil
  458. }
  459. func (m *Message) GetOneofBool() bool {
  460. if x, ok := m.GetOneofUnion().(*Message_OneofBool); ok {
  461. return x.OneofBool
  462. }
  463. return false
  464. }
  465. func (m *Message) GetOneofInt32() int32 {
  466. if x, ok := m.GetOneofUnion().(*Message_OneofInt32); ok {
  467. return x.OneofInt32
  468. }
  469. return 0
  470. }
  471. func (m *Message) GetOneofSint32() int32 {
  472. if x, ok := m.GetOneofUnion().(*Message_OneofSint32); ok {
  473. return x.OneofSint32
  474. }
  475. return 0
  476. }
  477. func (m *Message) GetOneofUint32() uint32 {
  478. if x, ok := m.GetOneofUnion().(*Message_OneofUint32); ok {
  479. return x.OneofUint32
  480. }
  481. return 0
  482. }
  483. func (m *Message) GetOneofInt64() int64 {
  484. if x, ok := m.GetOneofUnion().(*Message_OneofInt64); ok {
  485. return x.OneofInt64
  486. }
  487. return 0
  488. }
  489. func (m *Message) GetOneofSint64() int64 {
  490. if x, ok := m.GetOneofUnion().(*Message_OneofSint64); ok {
  491. return x.OneofSint64
  492. }
  493. return 0
  494. }
  495. func (m *Message) GetOneofUint64() uint64 {
  496. if x, ok := m.GetOneofUnion().(*Message_OneofUint64); ok {
  497. return x.OneofUint64
  498. }
  499. return 0
  500. }
  501. func (m *Message) GetOneofFixed32() uint32 {
  502. if x, ok := m.GetOneofUnion().(*Message_OneofFixed32); ok {
  503. return x.OneofFixed32
  504. }
  505. return 0
  506. }
  507. func (m *Message) GetOneofSfixed32() int32 {
  508. if x, ok := m.GetOneofUnion().(*Message_OneofSfixed32); ok {
  509. return x.OneofSfixed32
  510. }
  511. return 0
  512. }
  513. func (m *Message) GetOneofFloat() float32 {
  514. if x, ok := m.GetOneofUnion().(*Message_OneofFloat); ok {
  515. return x.OneofFloat
  516. }
  517. return 0
  518. }
  519. func (m *Message) GetOneofFixed64() uint64 {
  520. if x, ok := m.GetOneofUnion().(*Message_OneofFixed64); ok {
  521. return x.OneofFixed64
  522. }
  523. return 0
  524. }
  525. func (m *Message) GetOneofSfixed64() int64 {
  526. if x, ok := m.GetOneofUnion().(*Message_OneofSfixed64); ok {
  527. return x.OneofSfixed64
  528. }
  529. return 0
  530. }
  531. func (m *Message) GetOneofDouble() float64 {
  532. if x, ok := m.GetOneofUnion().(*Message_OneofDouble); ok {
  533. return x.OneofDouble
  534. }
  535. return 0
  536. }
  537. func (m *Message) GetOneofString() string {
  538. if x, ok := m.GetOneofUnion().(*Message_OneofString); ok {
  539. return x.OneofString
  540. }
  541. return ""
  542. }
  543. func (m *Message) GetOneofBytes() []byte {
  544. if x, ok := m.GetOneofUnion().(*Message_OneofBytes); ok {
  545. return x.OneofBytes
  546. }
  547. return nil
  548. }
  549. func (m *Message) GetOneofChildEnum() Message_ChildEnum {
  550. if x, ok := m.GetOneofUnion().(*Message_OneofChildEnum); ok {
  551. return x.OneofChildEnum
  552. }
  553. return Message_ALPHA
  554. }
  555. func (m *Message) GetOneofChildMessage() *Message_ChildMessage {
  556. if x, ok := m.GetOneofUnion().(*Message_OneofChildMessage); ok {
  557. return x.OneofChildMessage
  558. }
  559. return nil
  560. }
  561. func (m *Message) GetOneofSiblingEnum() SiblingEnum {
  562. if x, ok := m.GetOneofUnion().(*Message_OneofSiblingEnum); ok {
  563. return x.OneofSiblingEnum
  564. }
  565. return SiblingEnum_ALPHA
  566. }
  567. func (m *Message) GetOneofSiblingMessage() *SiblingMessage {
  568. if x, ok := m.GetOneofUnion().(*Message_OneofSiblingMessage); ok {
  569. return x.OneofSiblingMessage
  570. }
  571. return nil
  572. }
  573. func (m *Message) GetOneofString1() string {
  574. if x, ok := m.GetOneofUnion().(*Message_OneofString1); ok {
  575. return x.OneofString1
  576. }
  577. return ""
  578. }
  579. func (m *Message) GetOneofString2() string {
  580. if x, ok := m.GetOneofUnion().(*Message_OneofString2); ok {
  581. return x.OneofString2
  582. }
  583. return ""
  584. }
  585. func (m *Message) GetOneofString3() string {
  586. if x, ok := m.GetOneofUnion().(*Message_OneofString3); ok {
  587. return x.OneofString3
  588. }
  589. return ""
  590. }
  591. // XXX_OneofFuncs is for the internal use of the proto package.
  592. func (*Message) 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{}) {
  593. return _Message_OneofMarshaler, _Message_OneofUnmarshaler, _Message_OneofSizer, []interface{}{
  594. (*Message_OneofBool)(nil),
  595. (*Message_OneofInt32)(nil),
  596. (*Message_OneofSint32)(nil),
  597. (*Message_OneofUint32)(nil),
  598. (*Message_OneofInt64)(nil),
  599. (*Message_OneofSint64)(nil),
  600. (*Message_OneofUint64)(nil),
  601. (*Message_OneofFixed32)(nil),
  602. (*Message_OneofSfixed32)(nil),
  603. (*Message_OneofFloat)(nil),
  604. (*Message_OneofFixed64)(nil),
  605. (*Message_OneofSfixed64)(nil),
  606. (*Message_OneofDouble)(nil),
  607. (*Message_OneofString)(nil),
  608. (*Message_OneofBytes)(nil),
  609. (*Message_OneofChildEnum)(nil),
  610. (*Message_OneofChildMessage)(nil),
  611. (*Message_OneofSiblingEnum)(nil),
  612. (*Message_OneofSiblingMessage)(nil),
  613. (*Message_OneofString1)(nil),
  614. (*Message_OneofString2)(nil),
  615. (*Message_OneofString3)(nil),
  616. }
  617. }
  618. func _Message_OneofMarshaler(msg proto.Message, b *proto.Buffer) error {
  619. m := msg.(*Message)
  620. // oneof_union
  621. switch x := m.OneofUnion.(type) {
  622. case *Message_OneofBool:
  623. t := uint64(0)
  624. if x.OneofBool {
  625. t = 1
  626. }
  627. b.EncodeVarint(400<<3 | proto.WireVarint)
  628. b.EncodeVarint(t)
  629. case *Message_OneofInt32:
  630. b.EncodeVarint(401<<3 | proto.WireVarint)
  631. b.EncodeVarint(uint64(x.OneofInt32))
  632. case *Message_OneofSint32:
  633. b.EncodeVarint(402<<3 | proto.WireVarint)
  634. b.EncodeZigzag32(uint64(x.OneofSint32))
  635. case *Message_OneofUint32:
  636. b.EncodeVarint(403<<3 | proto.WireVarint)
  637. b.EncodeVarint(uint64(x.OneofUint32))
  638. case *Message_OneofInt64:
  639. b.EncodeVarint(404<<3 | proto.WireVarint)
  640. b.EncodeVarint(uint64(x.OneofInt64))
  641. case *Message_OneofSint64:
  642. b.EncodeVarint(405<<3 | proto.WireVarint)
  643. b.EncodeZigzag64(uint64(x.OneofSint64))
  644. case *Message_OneofUint64:
  645. b.EncodeVarint(406<<3 | proto.WireVarint)
  646. b.EncodeVarint(uint64(x.OneofUint64))
  647. case *Message_OneofFixed32:
  648. b.EncodeVarint(407<<3 | proto.WireFixed32)
  649. b.EncodeFixed32(uint64(x.OneofFixed32))
  650. case *Message_OneofSfixed32:
  651. b.EncodeVarint(408<<3 | proto.WireFixed32)
  652. b.EncodeFixed32(uint64(x.OneofSfixed32))
  653. case *Message_OneofFloat:
  654. b.EncodeVarint(409<<3 | proto.WireFixed32)
  655. b.EncodeFixed32(uint64(math.Float32bits(x.OneofFloat)))
  656. case *Message_OneofFixed64:
  657. b.EncodeVarint(410<<3 | proto.WireFixed64)
  658. b.EncodeFixed64(uint64(x.OneofFixed64))
  659. case *Message_OneofSfixed64:
  660. b.EncodeVarint(411<<3 | proto.WireFixed64)
  661. b.EncodeFixed64(uint64(x.OneofSfixed64))
  662. case *Message_OneofDouble:
  663. b.EncodeVarint(412<<3 | proto.WireFixed64)
  664. b.EncodeFixed64(math.Float64bits(x.OneofDouble))
  665. case *Message_OneofString:
  666. b.EncodeVarint(413<<3 | proto.WireBytes)
  667. b.EncodeStringBytes(x.OneofString)
  668. case *Message_OneofBytes:
  669. b.EncodeVarint(414<<3 | proto.WireBytes)
  670. b.EncodeRawBytes(x.OneofBytes)
  671. case *Message_OneofChildEnum:
  672. b.EncodeVarint(415<<3 | proto.WireVarint)
  673. b.EncodeVarint(uint64(x.OneofChildEnum))
  674. case *Message_OneofChildMessage:
  675. b.EncodeVarint(416<<3 | proto.WireBytes)
  676. if err := b.EncodeMessage(x.OneofChildMessage); err != nil {
  677. return err
  678. }
  679. case *Message_OneofSiblingEnum:
  680. b.EncodeVarint(417<<3 | proto.WireVarint)
  681. b.EncodeVarint(uint64(x.OneofSiblingEnum))
  682. case *Message_OneofSiblingMessage:
  683. b.EncodeVarint(418<<3 | proto.WireBytes)
  684. if err := b.EncodeMessage(x.OneofSiblingMessage); err != nil {
  685. return err
  686. }
  687. case *Message_OneofString1:
  688. b.EncodeVarint(419<<3 | proto.WireBytes)
  689. b.EncodeStringBytes(x.OneofString1)
  690. case *Message_OneofString2:
  691. b.EncodeVarint(420<<3 | proto.WireBytes)
  692. b.EncodeStringBytes(x.OneofString2)
  693. case *Message_OneofString3:
  694. b.EncodeVarint(421<<3 | proto.WireBytes)
  695. b.EncodeStringBytes(x.OneofString3)
  696. case nil:
  697. default:
  698. return fmt.Errorf("Message.OneofUnion has unexpected type %T", x)
  699. }
  700. return nil
  701. }
  702. func _Message_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) {
  703. m := msg.(*Message)
  704. switch tag {
  705. case 400: // oneof_union.oneof_bool
  706. if wire != proto.WireVarint {
  707. return true, proto.ErrInternalBadWireType
  708. }
  709. x, err := b.DecodeVarint()
  710. m.OneofUnion = &Message_OneofBool{x != 0}
  711. return true, err
  712. case 401: // oneof_union.oneof_int32
  713. if wire != proto.WireVarint {
  714. return true, proto.ErrInternalBadWireType
  715. }
  716. x, err := b.DecodeVarint()
  717. m.OneofUnion = &Message_OneofInt32{int32(x)}
  718. return true, err
  719. case 402: // oneof_union.oneof_sint32
  720. if wire != proto.WireVarint {
  721. return true, proto.ErrInternalBadWireType
  722. }
  723. x, err := b.DecodeZigzag32()
  724. m.OneofUnion = &Message_OneofSint32{int32(x)}
  725. return true, err
  726. case 403: // oneof_union.oneof_uint32
  727. if wire != proto.WireVarint {
  728. return true, proto.ErrInternalBadWireType
  729. }
  730. x, err := b.DecodeVarint()
  731. m.OneofUnion = &Message_OneofUint32{uint32(x)}
  732. return true, err
  733. case 404: // oneof_union.oneof_int64
  734. if wire != proto.WireVarint {
  735. return true, proto.ErrInternalBadWireType
  736. }
  737. x, err := b.DecodeVarint()
  738. m.OneofUnion = &Message_OneofInt64{int64(x)}
  739. return true, err
  740. case 405: // oneof_union.oneof_sint64
  741. if wire != proto.WireVarint {
  742. return true, proto.ErrInternalBadWireType
  743. }
  744. x, err := b.DecodeZigzag64()
  745. m.OneofUnion = &Message_OneofSint64{int64(x)}
  746. return true, err
  747. case 406: // oneof_union.oneof_uint64
  748. if wire != proto.WireVarint {
  749. return true, proto.ErrInternalBadWireType
  750. }
  751. x, err := b.DecodeVarint()
  752. m.OneofUnion = &Message_OneofUint64{x}
  753. return true, err
  754. case 407: // oneof_union.oneof_fixed32
  755. if wire != proto.WireFixed32 {
  756. return true, proto.ErrInternalBadWireType
  757. }
  758. x, err := b.DecodeFixed32()
  759. m.OneofUnion = &Message_OneofFixed32{uint32(x)}
  760. return true, err
  761. case 408: // oneof_union.oneof_sfixed32
  762. if wire != proto.WireFixed32 {
  763. return true, proto.ErrInternalBadWireType
  764. }
  765. x, err := b.DecodeFixed32()
  766. m.OneofUnion = &Message_OneofSfixed32{int32(x)}
  767. return true, err
  768. case 409: // oneof_union.oneof_float
  769. if wire != proto.WireFixed32 {
  770. return true, proto.ErrInternalBadWireType
  771. }
  772. x, err := b.DecodeFixed32()
  773. m.OneofUnion = &Message_OneofFloat{math.Float32frombits(uint32(x))}
  774. return true, err
  775. case 410: // oneof_union.oneof_fixed64
  776. if wire != proto.WireFixed64 {
  777. return true, proto.ErrInternalBadWireType
  778. }
  779. x, err := b.DecodeFixed64()
  780. m.OneofUnion = &Message_OneofFixed64{x}
  781. return true, err
  782. case 411: // oneof_union.oneof_sfixed64
  783. if wire != proto.WireFixed64 {
  784. return true, proto.ErrInternalBadWireType
  785. }
  786. x, err := b.DecodeFixed64()
  787. m.OneofUnion = &Message_OneofSfixed64{int64(x)}
  788. return true, err
  789. case 412: // oneof_union.oneof_double
  790. if wire != proto.WireFixed64 {
  791. return true, proto.ErrInternalBadWireType
  792. }
  793. x, err := b.DecodeFixed64()
  794. m.OneofUnion = &Message_OneofDouble{math.Float64frombits(x)}
  795. return true, err
  796. case 413: // oneof_union.oneof_string
  797. if wire != proto.WireBytes {
  798. return true, proto.ErrInternalBadWireType
  799. }
  800. x, err := b.DecodeStringBytes()
  801. m.OneofUnion = &Message_OneofString{x}
  802. return true, err
  803. case 414: // oneof_union.oneof_bytes
  804. if wire != proto.WireBytes {
  805. return true, proto.ErrInternalBadWireType
  806. }
  807. x, err := b.DecodeRawBytes(true)
  808. m.OneofUnion = &Message_OneofBytes{x}
  809. return true, err
  810. case 415: // oneof_union.oneof_child_enum
  811. if wire != proto.WireVarint {
  812. return true, proto.ErrInternalBadWireType
  813. }
  814. x, err := b.DecodeVarint()
  815. m.OneofUnion = &Message_OneofChildEnum{Message_ChildEnum(x)}
  816. return true, err
  817. case 416: // oneof_union.oneof_child_message
  818. if wire != proto.WireBytes {
  819. return true, proto.ErrInternalBadWireType
  820. }
  821. msg := new(Message_ChildMessage)
  822. err := b.DecodeMessage(msg)
  823. m.OneofUnion = &Message_OneofChildMessage{msg}
  824. return true, err
  825. case 417: // oneof_union.oneof_sibling_enum
  826. if wire != proto.WireVarint {
  827. return true, proto.ErrInternalBadWireType
  828. }
  829. x, err := b.DecodeVarint()
  830. m.OneofUnion = &Message_OneofSiblingEnum{SiblingEnum(x)}
  831. return true, err
  832. case 418: // oneof_union.oneof_sibling_message
  833. if wire != proto.WireBytes {
  834. return true, proto.ErrInternalBadWireType
  835. }
  836. msg := new(SiblingMessage)
  837. err := b.DecodeMessage(msg)
  838. m.OneofUnion = &Message_OneofSiblingMessage{msg}
  839. return true, err
  840. case 419: // oneof_union.oneof_string1
  841. if wire != proto.WireBytes {
  842. return true, proto.ErrInternalBadWireType
  843. }
  844. x, err := b.DecodeStringBytes()
  845. m.OneofUnion = &Message_OneofString1{x}
  846. return true, err
  847. case 420: // oneof_union.oneof_string2
  848. if wire != proto.WireBytes {
  849. return true, proto.ErrInternalBadWireType
  850. }
  851. x, err := b.DecodeStringBytes()
  852. m.OneofUnion = &Message_OneofString2{x}
  853. return true, err
  854. case 421: // oneof_union.oneof_string3
  855. if wire != proto.WireBytes {
  856. return true, proto.ErrInternalBadWireType
  857. }
  858. x, err := b.DecodeStringBytes()
  859. m.OneofUnion = &Message_OneofString3{x}
  860. return true, err
  861. default:
  862. return false, nil
  863. }
  864. }
  865. func _Message_OneofSizer(msg proto.Message) (n int) {
  866. m := msg.(*Message)
  867. // oneof_union
  868. switch x := m.OneofUnion.(type) {
  869. case *Message_OneofBool:
  870. n += proto.SizeVarint(400<<3 | proto.WireVarint)
  871. n += 1
  872. case *Message_OneofInt32:
  873. n += proto.SizeVarint(401<<3 | proto.WireVarint)
  874. n += proto.SizeVarint(uint64(x.OneofInt32))
  875. case *Message_OneofSint32:
  876. n += proto.SizeVarint(402<<3 | proto.WireVarint)
  877. n += proto.SizeVarint(uint64((uint32(x.OneofSint32) << 1) ^ uint32((int32(x.OneofSint32) >> 31))))
  878. case *Message_OneofUint32:
  879. n += proto.SizeVarint(403<<3 | proto.WireVarint)
  880. n += proto.SizeVarint(uint64(x.OneofUint32))
  881. case *Message_OneofInt64:
  882. n += proto.SizeVarint(404<<3 | proto.WireVarint)
  883. n += proto.SizeVarint(uint64(x.OneofInt64))
  884. case *Message_OneofSint64:
  885. n += proto.SizeVarint(405<<3 | proto.WireVarint)
  886. n += proto.SizeVarint(uint64(uint64(x.OneofSint64<<1) ^ uint64((int64(x.OneofSint64) >> 63))))
  887. case *Message_OneofUint64:
  888. n += proto.SizeVarint(406<<3 | proto.WireVarint)
  889. n += proto.SizeVarint(uint64(x.OneofUint64))
  890. case *Message_OneofFixed32:
  891. n += proto.SizeVarint(407<<3 | proto.WireFixed32)
  892. n += 4
  893. case *Message_OneofSfixed32:
  894. n += proto.SizeVarint(408<<3 | proto.WireFixed32)
  895. n += 4
  896. case *Message_OneofFloat:
  897. n += proto.SizeVarint(409<<3 | proto.WireFixed32)
  898. n += 4
  899. case *Message_OneofFixed64:
  900. n += proto.SizeVarint(410<<3 | proto.WireFixed64)
  901. n += 8
  902. case *Message_OneofSfixed64:
  903. n += proto.SizeVarint(411<<3 | proto.WireFixed64)
  904. n += 8
  905. case *Message_OneofDouble:
  906. n += proto.SizeVarint(412<<3 | proto.WireFixed64)
  907. n += 8
  908. case *Message_OneofString:
  909. n += proto.SizeVarint(413<<3 | proto.WireBytes)
  910. n += proto.SizeVarint(uint64(len(x.OneofString)))
  911. n += len(x.OneofString)
  912. case *Message_OneofBytes:
  913. n += proto.SizeVarint(414<<3 | proto.WireBytes)
  914. n += proto.SizeVarint(uint64(len(x.OneofBytes)))
  915. n += len(x.OneofBytes)
  916. case *Message_OneofChildEnum:
  917. n += proto.SizeVarint(415<<3 | proto.WireVarint)
  918. n += proto.SizeVarint(uint64(x.OneofChildEnum))
  919. case *Message_OneofChildMessage:
  920. s := proto.Size(x.OneofChildMessage)
  921. n += proto.SizeVarint(416<<3 | proto.WireBytes)
  922. n += proto.SizeVarint(uint64(s))
  923. n += s
  924. case *Message_OneofSiblingEnum:
  925. n += proto.SizeVarint(417<<3 | proto.WireVarint)
  926. n += proto.SizeVarint(uint64(x.OneofSiblingEnum))
  927. case *Message_OneofSiblingMessage:
  928. s := proto.Size(x.OneofSiblingMessage)
  929. n += proto.SizeVarint(418<<3 | proto.WireBytes)
  930. n += proto.SizeVarint(uint64(s))
  931. n += s
  932. case *Message_OneofString1:
  933. n += proto.SizeVarint(419<<3 | proto.WireBytes)
  934. n += proto.SizeVarint(uint64(len(x.OneofString1)))
  935. n += len(x.OneofString1)
  936. case *Message_OneofString2:
  937. n += proto.SizeVarint(420<<3 | proto.WireBytes)
  938. n += proto.SizeVarint(uint64(len(x.OneofString2)))
  939. n += len(x.OneofString2)
  940. case *Message_OneofString3:
  941. n += proto.SizeVarint(421<<3 | proto.WireBytes)
  942. n += proto.SizeVarint(uint64(len(x.OneofString3)))
  943. n += len(x.OneofString3)
  944. case nil:
  945. default:
  946. panic(fmt.Sprintf("proto: unexpected type %T in oneof", x))
  947. }
  948. return n
  949. }
  950. type Message_ChildMessage struct {
  951. F1 string `protobuf:"bytes,1,opt,name=f1" json:"f1,omitempty"`
  952. F2 []string `protobuf:"bytes,2,rep,name=f2" json:"f2,omitempty"`
  953. F3 *Message `protobuf:"bytes,3,opt,name=f3" json:"f3,omitempty"`
  954. }
  955. func (m *Message_ChildMessage) Reset() { *m = Message_ChildMessage{} }
  956. func (m *Message_ChildMessage) String() string { return proto.CompactTextString(m) }
  957. func (*Message_ChildMessage) ProtoMessage() {}
  958. func (*Message_ChildMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1, 0} }
  959. func (m *Message_ChildMessage) GetF3() *Message {
  960. if m != nil {
  961. return m.F3
  962. }
  963. return nil
  964. }
  965. func init() {
  966. proto.RegisterType((*SiblingMessage)(nil), "google.golang.org.proto3_20160519.SiblingMessage")
  967. proto.RegisterType((*Message)(nil), "google.golang.org.proto3_20160519.Message")
  968. proto.RegisterType((*Message_ChildMessage)(nil), "google.golang.org.proto3_20160519.Message.ChildMessage")
  969. proto.RegisterEnum("google.golang.org.proto3_20160519.SiblingEnum", SiblingEnum_name, SiblingEnum_value)
  970. proto.RegisterEnum("google.golang.org.proto3_20160519.Message_ChildEnum", Message_ChildEnum_name, Message_ChildEnum_value)
  971. }
  972. var fileDescriptor0 = []byte{
  973. // 1969 bytes of a gzipped FileDescriptorProto
  974. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x9a, 0xd7, 0x73, 0xdb, 0xce,
  975. 0x11, 0xc7, 0x09, 0x52, 0xc5, 0x3a, 0xb1, 0x82, 0x96, 0x72, 0xa3, 0x27, 0x44, 0x71, 0x1c, 0x44,
  976. 0x89, 0x29, 0x91, 0x84, 0x91, 0xd8, 0x49, 0x6c, 0x4b, 0xb6, 0x1c, 0x3a, 0x63, 0x4f, 0x32, 0xf0,
  977. 0x28, 0x93, 0xf1, 0x8b, 0x42, 0x4a, 0x20, 0x45, 0x1b, 0x20, 0x14, 0x91, 0xd4, 0x44, 0x93, 0x07,
  978. 0xff, 0x0b, 0xe9, 0xbd, 0x97, 0xb7, 0xf4, 0xde, 0xbb, 0x33, 0x4e, 0x6f, 0xbf, 0xfe, 0xd7, 0xfc,
  979. 0xe6, 0xb0, 0xb8, 0x06, 0x80, 0x26, 0x09, 0xce, 0xef, 0xc1, 0x33, 0xd2, 0xf2, 0x7b, 0xfb, 0xe1,
  980. 0x2e, 0xf6, 0x76, 0xef, 0x60, 0xa1, 0x8d, 0xe3, 0x13, 0x6f, 0xe0, 0xd5, 0x2b, 0xa7, 0x5b, 0x95,
  981. 0xad, 0xca, 0xd6, 0xa5, 0xda, 0x56, 0xd5, 0xdc, 0xba, 0x5c, 0xbd, 0x72, 0xa9, 0x69, 0x34, 0x5b,
  982. 0x57, 0xec, 0x83, 0xcb, 0x9b, 0x03, 0xbb, 0x3f, 0xa8, 0xf8, 0x22, 0xf5, 0xf5, 0x1d, 0xcf, 0xeb,
  983. 0x38, 0x76, 0xa5, 0xe3, 0x39, 0xcd, 0x5e, 0xa7, 0xe2, 0x9d, 0x74, 0xe0, 0x83, 0xfa, 0x3e, 0x5d,
  984. 0xb6, 0xee, 0xa0, 0xfc, 0xfd, 0x6e, 0xcb, 0xe9, 0xf6, 0x3a, 0xf7, 0xec, 0x7e, 0xbf, 0xd9, 0xb1,
  985. 0xd5, 0x3c, 0x4a, 0xb7, 0xab, 0x58, 0xd1, 0x14, 0x7d, 0xc9, 0x4a, 0xb7, 0xab, 0xfe, 0xef, 0x35,
  986. 0x9c, 0xd6, 0x32, 0xfe, 0xef, 0x35, 0xf5, 0x2a, 0x4a, 0xb7, 0xeb, 0x38, 0xa3, 0x29, 0xfa, 0x72,
  987. 0x6d, 0xa3, 0x32, 0x96, 0x50, 0x09, 0xfc, 0x5a, 0xe9, 0x76, 0x7d, 0xfd, 0xc9, 0x0d, 0xb4, 0x48,
  988. 0x39, 0x6f, 0x40, 0x39, 0xef, 0x78, 0xd0, 0xf5, 0x7a, 0x4d, 0x67, 0xbf, 0xe5, 0x79, 0x0e, 0x3e,
  989. 0xd4, 0x14, 0xfd, 0x9c, 0x95, 0xa5, 0xc6, 0x1d, 0xcf, 0x73, 0xd4, 0x37, 0xa2, 0x3c, 0x13, 0x75,
  990. 0x7b, 0x83, 0x7a, 0x0d, 0xdb, 0x9a, 0xa2, 0xcf, 0x5b, 0x6c, 0xe9, 0x1d, 0x62, 0x54, 0xdf, 0x84,
  991. 0x0a, 0x4c, 0xd6, 0x07, 0x5d, 0x5b, 0x53, 0xf4, 0x92, 0xc5, 0x56, 0xdf, 0xef, 0x46, 0x84, 0x43,
  992. 0x10, 0x76, 0x34, 0x45, 0xcf, 0x71, 0xe1, 0x1e, 0x08, 0x43, 0x60, 0xd3, 0xc0, 0x47, 0x9a, 0xa2,
  993. 0x67, 0x24, 0xb0, 0x69, 0x44, 0xc0, 0xa6, 0x81, 0xbb, 0x9a, 0xa2, 0xab, 0x32, 0x38, 0x24, 0x1c,
  994. 0x82, 0xf0, 0xa1, 0xa6, 0xe8, 0x73, 0x32, 0xd8, 0x34, 0xd4, 0x37, 0xa3, 0x22, 0x13, 0xb6, 0xbb,
  995. 0x1f, 0xb6, 0x0f, 0xeb, 0x35, 0xfc, 0x48, 0x53, 0xf4, 0x45, 0x8b, 0x39, 0xb8, 0x0d, 0x66, 0xf5,
  996. 0x2d, 0xa8, 0xc4, 0xe1, 0x54, 0xeb, 0x68, 0x8a, 0x5e, 0xb0, 0x98, 0x8f, 0xfb, 0x81, 0x5d, 0x0a,
  997. 0xa8, 0xed, 0x78, 0xcd, 0x01, 0x76, 0x35, 0x45, 0x4f, 0xf3, 0x80, 0x6e, 0x13, 0x63, 0x14, 0x6f,
  998. 0x1a, 0xb8, 0xa7, 0x29, 0xfa, 0x42, 0x08, 0x6f, 0x1a, 0x31, 0x78, 0xd3, 0xc0, 0x9e, 0xa6, 0xe8,
  999. 0xc5, 0x30, 0x3e, 0x14, 0xff, 0xa1, 0x37, 0x6c, 0x39, 0x36, 0x3e, 0xd6, 0x14, 0x5d, 0xe1, 0xf1,
  1000. 0xdf, 0xf2, 0xad, 0x72, 0x46, 0x07, 0x27, 0xdd, 0x5e, 0x07, 0x7f, 0xc8, 0xaf, 0x45, 0x9e, 0x51,
  1001. 0xdf, 0x2a, 0x05, 0xd4, 0x3a, 0x1b, 0xd8, 0x7d, 0x7c, 0xa2, 0x29, 0x7a, 0x96, 0x07, 0xb4, 0x43,
  1002. 0x8c, 0xea, 0x21, 0x2a, 0x33, 0xd9, 0xc1, 0x51, 0xd7, 0x39, 0xdc, 0xb7, 0x7b, 0x43, 0x17, 0xf7,
  1003. 0x35, 0x45, 0xcf, 0xd7, 0x8c, 0xc9, 0xeb, 0xb7, 0x72, 0x93, 0x2c, 0xde, 0xed, 0x0d, 0x5d, 0x8b,
  1004. 0x85, 0xcd, 0x4c, 0xaa, 0x8b, 0x56, 0x43, 0x14, 0x17, 0x96, 0xe1, 0x81, 0xbf, 0x51, 0xde, 0x36,
  1005. 0x2d, 0x88, 0xee, 0x9a, 0xf3, 0x12, 0x8b, 0xee, 0x9d, 0x16, 0x5a, 0x11, 0xca, 0xce, 0xdf, 0xbe,
  1006. 0x10, 0xd6, 0xd0, 0x0f, 0xab, 0x32, 0x01, 0x2d, 0xd8, 0xf5, 0x7e, 0x40, 0x65, 0x5e, 0xac, 0xcc,
  1007. 0xa8, 0x3e, 0x42, 0x38, 0xc2, 0xa0, 0x41, 0x9d, 0xfa, 0x41, 0x55, 0x27, 0xc7, 0xd0, 0x70, 0x56,
  1008. 0x43, 0x24, 0x1a, 0xd0, 0x05, 0x94, 0x3b, 0xb1, 0x8f, 0xed, 0xe6, 0xc0, 0x3e, 0x84, 0x66, 0xf0,
  1009. 0x54, 0xd1, 0x32, 0xa4, 0x1b, 0x50, 0xab, 0xdf, 0x0d, 0x2e, 0xa2, 0x3c, 0x53, 0xc1, 0xe6, 0xfd,
  1010. 0x2b, 0x91, 0xcd, 0x5b, 0x6c, 0x31, 0xb4, 0x03, 0x1d, 0x15, 0x98, 0x2e, 0x68, 0x07, 0x7f, 0x23,
  1011. 0xc2, 0x92, 0xc5, 0xd6, 0x07, 0xfd, 0x40, 0x54, 0x06, 0xfd, 0xe0, 0xef, 0x44, 0x99, 0xe3, 0xca,
  1012. 0xa0, 0x21, 0x84, 0xd8, 0xa6, 0x81, 0xff, 0x41, 0x84, 0x19, 0x89, 0x6d, 0x1a, 0x11, 0xb6, 0x69,
  1013. 0xe0, 0x7f, 0x12, 0xa1, 0x2a, 0xb3, 0x43, 0xca, 0xa0, 0x25, 0xfc, 0x8b, 0x28, 0xe7, 0x64, 0xb6,
  1014. 0x69, 0xa8, 0x1b, 0xa8, 0xc8, 0x94, 0x74, 0x9f, 0xff, 0x9b, 0x48, 0x17, 0x2d, 0xe6, 0x82, 0x36,
  1015. 0x85, 0xb7, 0xa2, 0x12, 0xe7, 0x53, 0xf1, 0x7f, 0x88, 0xb8, 0x60, 0x31, 0x2f, 0xac, 0x2b, 0x88,
  1016. 0x51, 0x41, 0x57, 0xf8, 0x2f, 0x91, 0xa6, 0x79, 0x54, 0xd0, 0x16, 0x22, 0xdf, 0xc0, 0x34, 0xf0,
  1017. 0xff, 0x88, 0x72, 0x21, 0xf4, 0x0d, 0x4c, 0x23, 0xe6, 0x1b, 0x98, 0x06, 0xfe, 0x3f, 0x11, 0x17,
  1018. 0xc3, 0xdf, 0x20, 0x94, 0x85, 0xa0, 0x31, 0x3c, 0x47, 0xb4, 0x0a, 0xcf, 0x42, 0xd0, 0x19, 0xa4,
  1019. 0xcc, 0x42, 0x67, 0x78, 0x5e, 0xf1, 0xc7, 0x12, 0xcf, 0x2c, 0xb4, 0x06, 0x31, 0x2a, 0x68, 0x0d,
  1020. 0x2f, 0x10, 0x61, 0x96, 0x47, 0x05, 0xbd, 0xc1, 0x46, 0x65, 0xa6, 0x13, 0x7a, 0xc3, 0x8b, 0x44,
  1021. 0x9c, 0xb8, 0x39, 0x50, 0x8f, 0xbc, 0x39, 0xf4, 0xd0, 0x6a, 0x08, 0x43, 0xf7, 0xd1, 0x4b, 0x84,
  1022. 0x34, 0x4b, 0x77, 0x90, 0x60, 0x74, 0x33, 0x1d, 0xa0, 0x15, 0xa1, 0x04, 0x85, 0xee, 0xf0, 0x32,
  1023. 0x04, 0x36, 0x75, 0x7b, 0xe0, 0x85, 0xcb, 0xdb, 0x83, 0x83, 0x70, 0x04, 0x42, 0xc3, 0x7a, 0x05,
  1024. 0xc2, 0x4a, 0xd2, 0x1f, 0x42, 0x28, 0x1a, 0xd2, 0x07, 0x51, 0xce, 0x6d, 0x1e, 0xfb, 0xad, 0x01,
  1025. 0xfa, 0xc3, 0xb7, 0xd3, 0x3e, 0xe2, 0x1d, 0x53, 0x64, 0xee, 0x5e, 0xf3, 0x98, 0x74, 0x11, 0xf2,
  1026. 0x6f, 0xb7, 0x37, 0x38, 0x39, 0xb3, 0x96, 0x5d, 0x6e, 0x51, 0x0f, 0x50, 0x9e, 0x11, 0xa0, 0x11,
  1027. 0x7c, 0x07, 0x10, 0xef, 0x9c, 0x1e, 0xe1, 0x77, 0x21, 0x60, 0x64, 0x5d, 0xc1, 0xa4, 0xb6, 0x51,
  1028. 0x81, 0x41, 0x82, 0xc6, 0xf4, 0x5d, 0xa0, 0xbc, 0x6b, 0x7a, 0x0a, 0xb4, 0x30, 0xc0, 0xe4, 0x5c,
  1029. 0xd1, 0x26, 0x71, 0x82, 0xb6, 0xf6, 0xbd, 0xc4, 0x9c, 0xbd, 0x18, 0x4e, 0xd0, 0x14, 0x43, 0x49,
  1030. 0x33, 0x0d, 0xfc, 0xfd, 0x59, 0x92, 0x66, 0x1a, 0x91, 0xa4, 0x99, 0x46, 0x24, 0x69, 0xa6, 0x81,
  1031. 0x7f, 0x30, 0x53, 0xd2, 0x28, 0x46, 0x4c, 0x5a, 0x88, 0x13, 0xf4, 0xe3, 0x1f, 0xce, 0x94, 0xb4,
  1032. 0x30, 0x27, 0xe8, 0xe6, 0x5d, 0x54, 0x64, 0x1c, 0xda, 0xa0, 0x7f, 0x04, 0xa0, 0x6b, 0xd3, 0x83,
  1033. 0x82, 0xbe, 0x0f, 0xa4, 0xbc, 0x2b, 0x19, 0x55, 0x07, 0x95, 0x78, 0xea, 0x28, 0xeb, 0xc7, 0xc0,
  1034. 0xba, 0x9e, 0x20, 0x79, 0x6d, 0x11, 0x56, 0x70, 0x65, 0xab, 0x54, 0x0d, 0x30, 0x4c, 0x7e, 0x92,
  1035. 0xb8, 0x1a, 0xfc, 0xb1, 0x23, 0x57, 0x03, 0x4c, 0xa2, 0x48, 0xf6, 0x4c, 0x03, 0xff, 0x74, 0xb6,
  1036. 0xec, 0xd1, 0xe7, 0x24, 0x65, 0xcf, 0x34, 0x62, 0xb2, 0x67, 0x1a, 0xf8, 0x67, 0x33, 0x66, 0x8f,
  1037. 0xc2, 0xe4, 0xec, 0x85, 0xca, 0x2f, 0x18, 0x84, 0x3f, 0x4f, 0x5c, 0x7e, 0x30, 0x32, 0xe5, 0xf2,
  1038. 0x0b, 0xc6, 0xa8, 0xb4, 0x9d, 0x60, 0x8c, 0xfe, 0x22, 0xf9, 0x76, 0xf2, 0x1d, 0x84, 0xb6, 0x13,
  1039. 0x0c, 0x61, 0xb1, 0x1a, 0x60, 0x08, 0xff, 0x32, 0x71, 0x35, 0xf8, 0xe3, 0x5a, 0xae, 0x06, 0x98,
  1040. 0xe0, 0xc7, 0xa8, 0xcc, 0x20, 0xc2, 0x04, 0xff, 0x15, 0x90, 0x6e, 0x4c, 0x4f, 0x62, 0x53, 0x1b,
  1041. 0x68, 0x45, 0x37, 0x64, 0x56, 0xcf, 0xd0, 0x6a, 0x88, 0x48, 0xa7, 0xde, 0xaf, 0x01, 0x7a, 0x33,
  1042. 0x21, 0x34, 0xb0, 0x01, 0xb7, 0xec, 0x46, 0x3f, 0x51, 0x4f, 0xd1, 0x8a, 0xd0, 0x08, 0x85, 0xb9,
  1043. 0xfe, 0x1b, 0x20, 0xef, 0x24, 0x69, 0x87, 0x6c, 0xa2, 0x03, 0x58, 0x75, 0x23, 0x1f, 0xa8, 0x8f,
  1044. 0x11, 0x8e, 0x70, 0x69, 0xd0, 0xbf, 0x05, 0xf4, 0x6e, 0x62, 0xb4, 0x14, 0xf6, 0x8a, 0x1b, 0xf7,
  1045. 0x19, 0x2d, 0x25, 0x7f, 0xe6, 0xc0, 0xf8, 0xff, 0x5d, 0xa2, 0x52, 0xf2, 0x87, 0x30, 0x9f, 0xff,
  1046. 0xa4, 0x94, 0x98, 0x89, 0xee, 0x8b, 0xbe, 0x40, 0xf9, 0x7d, 0xa2, 0x7d, 0x01, 0x33, 0x98, 0x63,
  1047. 0xc8, 0xbe, 0xe0, 0x36, 0xca, 0x19, 0x0a, 0x9c, 0x3f, 0x24, 0xe2, 0xec, 0xc5, 0x70, 0xb8, 0x4d,
  1048. 0x48, 0x9a, 0x69, 0x00, 0xe6, 0x8f, 0x49, 0x93, 0x66, 0x1a, 0x91, 0xa4, 0x81, 0x49, 0x4c, 0x1a,
  1049. 0xa5, 0xfc, 0x29, 0x71, 0xd2, 0x44, 0x0c, 0x4d, 0x9a, 0xcc, 0x19, 0x0a, 0x9c, 0x3f, 0x27, 0x4e,
  1050. 0x5a, 0x98, 0xc3, 0x6d, 0x74, 0xba, 0x04, 0x13, 0x0d, 0x40, 0x4f, 0x12, 0x4d, 0x97, 0x60, 0x04,
  1051. 0x73, 0x12, 0x79, 0x1a, 0x82, 0x91, 0xa5, 0xce, 0xef, 0x96, 0x40, 0xfa, 0x4b, 0xb2, 0xd4, 0xf9,
  1052. 0x1e, 0x42, 0xa9, 0x63, 0x36, 0x55, 0x43, 0xc8, 0xeb, 0xd9, 0x5e, 0x1b, 0x10, 0x1f, 0xcd, 0x68,
  1053. 0x8a, 0x7e, 0xae, 0x91, 0xb2, 0x96, 0x7c, 0xa3, 0xaf, 0x58, 0x47, 0xcb, 0xa0, 0x80, 0x93, 0xe2,
  1054. 0xc7, 0x88, 0x64, 0xbe, 0x91, 0xb2, 0x60, 0x1d, 0x9c, 0x5c, 0x2f, 0xa0, 0x2c, 0x68, 0x82, 0x63,
  1055. 0xeb, 0xc7, 0x89, 0xa8, 0xd4, 0x48, 0x59, 0xb0, 0x34, 0x38, 0x77, 0x32, 0x55, 0x70, 0xe8, 0xfc,
  1056. 0x04, 0x51, 0xe5, 0x98, 0x2a, 0x38, 0x35, 0x8a, 0x3c, 0xd3, 0xc0, 0x9f, 0x24, 0xa2, 0x8c, 0xc8,
  1057. 0x33, 0x0d, 0x99, 0x67, 0x1a, 0xf8, 0x53, 0x44, 0xa4, 0x4a, 0x3c, 0x51, 0x15, 0x9c, 0xd7, 0x3e,
  1058. 0x4d, 0x54, 0x73, 0x12, 0xcf, 0x34, 0xd4, 0x8b, 0x28, 0x07, 0x2a, 0x7a, 0x02, 0xfa, 0x0c, 0x91,
  1059. 0x2d, 0x36, 0x52, 0x16, 0xac, 0xa6, 0xa7, 0x25, 0x1d, 0xe5, 0x03, 0x26, 0x15, 0x7e, 0x96, 0x08,
  1060. 0x0b, 0x8d, 0x94, 0x05, 0x0e, 0xd8, 0x49, 0x87, 0x45, 0x00, 0xc7, 0x9c, 0xcf, 0x11, 0x59, 0x9a,
  1061. 0x45, 0x00, 0x07, 0x15, 0x99, 0x6a, 0x1a, 0xf8, 0xf3, 0x44, 0xb5, 0x20, 0x53, 0xfd, 0x0b, 0xb0,
  1062. 0x44, 0x35, 0x0d, 0xfc, 0x05, 0x22, 0x2c, 0x86, 0xa8, 0x62, 0xb4, 0xc1, 0xf1, 0xe0, 0x8b, 0x44,
  1063. 0xa7, 0xb0, 0x68, 0x83, 0xf9, 0xce, 0x33, 0x07, 0xc3, 0xfd, 0x4b, 0x44, 0xb5, 0xc4, 0x33, 0x07,
  1064. 0xd3, 0x99, 0x45, 0x00, 0xa3, 0xf9, 0xcb, 0x44, 0x94, 0x65, 0x11, 0xc0, 0x70, 0x6d, 0xa2, 0x22,
  1065. 0x68, 0x84, 0xc9, 0xfa, 0x95, 0x4c, 0xf2, 0x17, 0x67, 0x8d, 0x94, 0x05, 0xa1, 0xf2, 0x69, 0xfa,
  1066. 0x10, 0x95, 0x45, 0x04, 0x9d, 0x2a, 0x5f, 0xcd, 0xcc, 0xf4, 0xd6, 0xac, 0x91, 0xb2, 0x4a, 0x1c,
  1067. 0x44, 0xa7, 0xc8, 0x3e, 0x52, 0x69, 0x49, 0x09, 0xb3, 0xf3, 0x6b, 0x99, 0x24, 0xaf, 0xcc, 0x1a,
  1068. 0x29, 0xab, 0x18, 0x14, 0x22, 0x9f, 0x93, 0x47, 0x68, 0x45, 0x06, 0xd0, 0x70, 0xbe, 0x9e, 0x49,
  1069. 0xf8, 0xbe, 0xac, 0x91, 0xb2, 0xca, 0x22, 0x86, 0x86, 0xc2, 0x6a, 0x0b, 0x9e, 0x71, 0x15, 0x7f,
  1070. 0x83, 0x3e, 0xe4, 0xac, 0xf0, 0x90, 0xab, 0x61, 0x5d, 0x0d, 0x7f, 0x33, 0x4e, 0x57, 0x0b, 0xeb,
  1071. 0xea, 0xf8, 0x5b, 0x71, 0xba, 0xfa, 0xda, 0x43, 0x94, 0x95, 0x52, 0xfa, 0x1a, 0xfe, 0x5f, 0xc1,
  1072. 0xda, 0x35, 0x54, 0x0c, 0xdf, 0xd8, 0xd5, 0x22, 0xca, 0x3c, 0xb2, 0xcf, 0x7c, 0xe0, 0x39, 0x8b,
  1073. 0xfc, 0xa8, 0x9e, 0x47, 0xf3, 0xa7, 0x4d, 0x67, 0x68, 0xe3, 0xb4, 0x6f, 0x83, 0x5f, 0xae, 0xa6,
  1074. 0xdf, 0xae, 0xac, 0x5d, 0x47, 0xa5, 0xc8, 0x75, 0x7c, 0x9c, 0x83, 0x79, 0xd1, 0xc1, 0x0d, 0xa4,
  1075. 0x46, 0x6f, 0xda, 0xe3, 0x3c, 0x94, 0xe2, 0x3d, 0xec, 0x4d, 0xee, 0x21, 0x37, 0x32, 0x88, 0xe0,
  1076. 0xea, 0x30, 0xce, 0x41, 0x66, 0x74, 0x10, 0x13, 0x7a, 0x50, 0x47, 0x07, 0x31, 0xa1, 0x87, 0x39,
  1077. 0xd1, 0xc3, 0x36, 0x2a, 0xc7, 0x5c, 0x56, 0xc7, 0xb9, 0x58, 0x14, 0x5d, 0xec, 0xa0, 0xf3, 0x71,
  1078. 0x77, 0xd0, 0x71, 0x3e, 0x0a, 0xf1, 0xb9, 0xe4, 0x97, 0xcb, 0x71, 0x0e, 0xd2, 0xcf, 0x88, 0x63,
  1079. 0xc2, 0x54, 0x2c, 0x3c, 0x2b, 0x8e, 0x09, 0x7d, 0x14, 0xe3, 0x1f, 0x88, 0x70, 0xcb, 0x1b, 0xe7,
  1080. 0x41, 0x19, 0x51, 0x14, 0xfc, 0xfe, 0x36, 0xce, 0xc3, 0x52, 0x7c, 0x2e, 0xf9, 0xd5, 0x6c, 0x9c,
  1081. 0x83, 0xac, 0xe8, 0xe0, 0x0c, 0xad, 0xc4, 0xde, 0xb8, 0x62, 0x9c, 0xbc, 0x47, 0x74, 0x92, 0xf4,
  1082. 0xb5, 0xac, 0x80, 0x7e, 0x8c, 0xf0, 0xa8, 0x7b, 0x57, 0x0c, 0xfd, 0x9e, 0x48, 0x9f, 0xe1, 0x55,
  1083. 0xad, 0xf0, 0x05, 0x86, 0xe8, 0x75, 0x23, 0xae, 0x5f, 0x31, 0xfc, 0x5b, 0x72, 0xf4, 0xd3, 0xbe,
  1084. 0xbb, 0x15, 0xb0, 0x1f, 0x41, 0x6b, 0xa3, 0xaf, 0x5e, 0x31, 0xe4, 0x77, 0xcb, 0x91, 0x27, 0x78,
  1085. 0x9b, 0x1b, 0x29, 0x18, 0xf9, 0x02, 0x26, 0x32, 0xe7, 0xc7, 0xb5, 0x73, 0xa8, 0xd9, 0xd0, 0xdd,
  1086. 0x4a, 0xf4, 0x50, 0x9a, 0xcc, 0xc3, 0xde, 0x68, 0x0f, 0xb9, 0xc9, 0x46, 0x8a, 0x7c, 0x21, 0x12,
  1087. 0x1d, 0x64, 0x26, 0x0f, 0x62, 0x84, 0x07, 0x75, 0xf2, 0x20, 0x46, 0x78, 0x98, 0x1b, 0xe7, 0x01,
  1088. 0xba, 0x58, 0xf8, 0x7a, 0x22, 0xba, 0x58, 0x9c, 0x30, 0x0c, 0xf9, 0xde, 0x21, 0x7a, 0x58, 0x1a,
  1089. 0xe3, 0x61, 0xbd, 0x82, 0x96, 0xf8, 0x21, 0x70, 0x09, 0xcd, 0x6f, 0xdf, 0x7d, 0x5f, 0x63, 0xbb,
  1090. 0x98, 0x22, 0x3f, 0xee, 0x58, 0xdb, 0xef, 0x7f, 0x6f, 0x51, 0x51, 0x97, 0xd1, 0xe2, 0xcd, 0xc6,
  1091. 0xb6, 0x75, 0xf7, 0xce, 0x6e, 0x31, 0xbd, 0x93, 0xa3, 0xc7, 0xd5, 0x61, 0xaf, 0xeb, 0xf5, 0x36,
  1092. 0xaa, 0x68, 0x59, 0x3c, 0x78, 0xc5, 0x39, 0x40, 0x6a, 0x96, 0x3b, 0x78, 0xaa, 0xec, 0x3c, 0x78,
  1093. 0xf0, 0x81, 0x4e, 0x77, 0x70, 0x34, 0x6c, 0x55, 0x0e, 0x3c, 0x77, 0x13, 0x6a, 0x78, 0xd3, 0xaf,
  1094. 0xdf, 0xd6, 0xb0, 0xbd, 0x79, 0x5a, 0xdb, 0xec, 0xf6, 0x06, 0xf6, 0x49, 0xaf, 0xe9, 0xf8, 0x7f,
  1095. 0x40, 0xe1, 0x7f, 0xd0, 0xdf, 0x74, 0xec, 0x4e, 0xf3, 0xe0, 0x6c, 0x73, 0xcc, 0x9f, 0x5c, 0xb4,
  1096. 0x16, 0x40, 0xf0, 0x6a, 0x00, 0x00, 0x00, 0xff, 0xff, 0xaf, 0x95, 0xb5, 0x99, 0x9c, 0x21, 0x00,
  1097. 0x00,
  1098. }