blob: 273fced0d8bd72ae7dcbb66865f7ce353f68513b [file] [log] [blame]
Damien Neil658051b2018-09-10 12:26:21 -07001// Code generated by protoc-gen-go. DO NOT EDIT.
2// source: proto2/fields.proto
3
4package proto2
5
Damien Neilebc699d2018-09-13 08:50:13 -07006import (
Damien Neil1ec33152018-09-13 13:12:36 -07007 fmt "fmt"
Damien Neilebc699d2018-09-13 08:50:13 -07008 proto "github.com/golang/protobuf/proto"
9 math "math"
10)
Damien Neil658051b2018-09-10 12:26:21 -070011
Damien Neil1ec33152018-09-13 13:12:36 -070012// Reference imports to suppress errors if they are not otherwise used.
13var _ = proto.Marshal
14var _ = fmt.Errorf
15var _ = math.Inf
16
Damien Neild4127922018-09-12 11:13:49 -070017// This is a compile-time assertion to ensure that this generated file
18// is compatible with the proto package it is being compiled against.
19// A compilation error at this line likely means your copy of the
20// proto package needs to be updated.
21const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
22
Damien Neil658051b2018-09-10 12:26:21 -070023type FieldTestMessage_Enum int32
24
25const (
26 FieldTestMessage_ZERO FieldTestMessage_Enum = 0
Damien Neilebc699d2018-09-13 08:50:13 -070027 FieldTestMessage_ONE FieldTestMessage_Enum = 1
Damien Neil658051b2018-09-10 12:26:21 -070028)
29
30var FieldTestMessage_Enum_name = map[int32]string{
31 0: "ZERO",
Damien Neilebc699d2018-09-13 08:50:13 -070032 1: "ONE",
Damien Neil658051b2018-09-10 12:26:21 -070033}
34
35var FieldTestMessage_Enum_value = map[string]int32{
36 "ZERO": 0,
Damien Neilebc699d2018-09-13 08:50:13 -070037 "ONE": 1,
Damien Neil658051b2018-09-10 12:26:21 -070038}
39
40func (x FieldTestMessage_Enum) Enum() *FieldTestMessage_Enum {
41 p := new(FieldTestMessage_Enum)
42 *p = x
43 return p
44}
45
46func (x FieldTestMessage_Enum) String() string {
47 return proto.EnumName(FieldTestMessage_Enum_name, int32(x))
48}
49
50func (x *FieldTestMessage_Enum) UnmarshalJSON(data []byte) error {
51 value, err := proto.UnmarshalJSONEnum(FieldTestMessage_Enum_value, data, "FieldTestMessage_Enum")
52 if err != nil {
53 return err
54 }
55 *x = FieldTestMessage_Enum(value)
56 return nil
57}
58
59func (FieldTestMessage_Enum) EnumDescriptor() ([]byte, []int) {
60 return fileDescriptor_fd8a9d72b841fd68, []int{0, 0}
61}
62
63type FieldTestMessage struct {
Damien Neil0bd5a382018-09-13 15:07:10 -070064 OptionalBool *bool `protobuf:"varint,1,opt,name=optional_bool,json=optionalBool" json:"optional_bool,omitempty"`
65 OptionalEnum *FieldTestMessage_Enum `protobuf:"varint,2,opt,name=optional_enum,json=optionalEnum,enum=goproto.protoc.proto2.FieldTestMessage_Enum" json:"optional_enum,omitempty"`
66 OptionalInt32 *int32 `protobuf:"varint,3,opt,name=optional_int32,json=optionalInt32" json:"optional_int32,omitempty"`
67 OptionalSint32 *int32 `protobuf:"zigzag32,4,opt,name=optional_sint32,json=optionalSint32" json:"optional_sint32,omitempty"`
68 OptionalUint32 *uint32 `protobuf:"varint,5,opt,name=optional_uint32,json=optionalUint32" json:"optional_uint32,omitempty"`
69 OptionalInt64 *int64 `protobuf:"varint,6,opt,name=optional_int64,json=optionalInt64" json:"optional_int64,omitempty"`
70 OptionalSint64 *int64 `protobuf:"zigzag64,7,opt,name=optional_sint64,json=optionalSint64" json:"optional_sint64,omitempty"`
71 OptionalUint64 *uint64 `protobuf:"varint,8,opt,name=optional_uint64,json=optionalUint64" json:"optional_uint64,omitempty"`
72 OptionalSfixed32 *int32 `protobuf:"fixed32,9,opt,name=optional_sfixed32,json=optionalSfixed32" json:"optional_sfixed32,omitempty"`
73 OptionalFixed32 *uint32 `protobuf:"fixed32,10,opt,name=optional_fixed32,json=optionalFixed32" json:"optional_fixed32,omitempty"`
74 OptionalFloat *float32 `protobuf:"fixed32,11,opt,name=optional_float,json=optionalFloat" json:"optional_float,omitempty"`
75 OptionalSfixed64 *int64 `protobuf:"fixed64,12,opt,name=optional_sfixed64,json=optionalSfixed64" json:"optional_sfixed64,omitempty"`
76 OptionalFixed64 *uint64 `protobuf:"fixed64,13,opt,name=optional_fixed64,json=optionalFixed64" json:"optional_fixed64,omitempty"`
77 OptionalDouble *float64 `protobuf:"fixed64,14,opt,name=optional_double,json=optionalDouble" json:"optional_double,omitempty"`
78 OptionalString *string `protobuf:"bytes,15,opt,name=optional_string,json=optionalString" json:"optional_string,omitempty"`
79 OptionalBytes []byte `protobuf:"bytes,16,opt,name=optional_bytes,json=optionalBytes" json:"optional_bytes,omitempty"`
80 Optional_Message *FieldTestMessage_Message `protobuf:"bytes,17,opt,name=optional_Message,json=optionalMessage" json:"optional_Message,omitempty"`
81 Optionalgroup *FieldTestMessage_OptionalGroup `protobuf:"group,18,opt,name=OptionalGroup,json=optionalgroup" json:"optionalgroup,omitempty"`
82 RequiredBool *bool `protobuf:"varint,101,req,name=required_bool,json=requiredBool" json:"required_bool,omitempty"`
83 RequiredEnum *FieldTestMessage_Enum `protobuf:"varint,102,req,name=required_enum,json=requiredEnum,enum=goproto.protoc.proto2.FieldTestMessage_Enum" json:"required_enum,omitempty"`
84 RequiredInt32 *int32 `protobuf:"varint,103,req,name=required_int32,json=requiredInt32" json:"required_int32,omitempty"`
85 RequiredSint32 *int32 `protobuf:"zigzag32,104,req,name=required_sint32,json=requiredSint32" json:"required_sint32,omitempty"`
86 RequiredUint32 *uint32 `protobuf:"varint,105,req,name=required_uint32,json=requiredUint32" json:"required_uint32,omitempty"`
87 RequiredInt64 *int64 `protobuf:"varint,106,req,name=required_int64,json=requiredInt64" json:"required_int64,omitempty"`
88 RequiredSint64 *int64 `protobuf:"zigzag64,107,req,name=required_sint64,json=requiredSint64" json:"required_sint64,omitempty"`
89 RequiredUint64 *uint64 `protobuf:"varint,108,req,name=required_uint64,json=requiredUint64" json:"required_uint64,omitempty"`
90 RequiredSfixed32 *int32 `protobuf:"fixed32,109,req,name=required_sfixed32,json=requiredSfixed32" json:"required_sfixed32,omitempty"`
91 RequiredFixed32 *uint32 `protobuf:"fixed32,110,req,name=required_fixed32,json=requiredFixed32" json:"required_fixed32,omitempty"`
92 RequiredFloat *float32 `protobuf:"fixed32,111,req,name=required_float,json=requiredFloat" json:"required_float,omitempty"`
93 RequiredSfixed64 *int64 `protobuf:"fixed64,112,req,name=required_sfixed64,json=requiredSfixed64" json:"required_sfixed64,omitempty"`
94 RequiredFixed64 *uint64 `protobuf:"fixed64,113,req,name=required_fixed64,json=requiredFixed64" json:"required_fixed64,omitempty"`
95 RequiredDouble *float64 `protobuf:"fixed64,114,req,name=required_double,json=requiredDouble" json:"required_double,omitempty"`
96 RequiredString *string `protobuf:"bytes,115,req,name=required_string,json=requiredString" json:"required_string,omitempty"`
97 RequiredBytes []byte `protobuf:"bytes,116,req,name=required_bytes,json=requiredBytes" json:"required_bytes,omitempty"`
98 Required_Message *FieldTestMessage_Message `protobuf:"bytes,117,req,name=required_Message,json=requiredMessage" json:"required_Message,omitempty"`
99 Requiredgroup *FieldTestMessage_RequiredGroup `protobuf:"group,118,req,name=RequiredGroup,json=requiredgroup" json:"requiredgroup,omitempty"`
100 RepeatedBool []bool `protobuf:"varint,201,rep,name=repeated_bool,json=repeatedBool" json:"repeated_bool,omitempty"`
101 RepeatedEnum []FieldTestMessage_Enum `protobuf:"varint,202,rep,name=repeated_enum,json=repeatedEnum,enum=goproto.protoc.proto2.FieldTestMessage_Enum" json:"repeated_enum,omitempty"`
102 RepeatedInt32 []int32 `protobuf:"varint,203,rep,name=repeated_int32,json=repeatedInt32" json:"repeated_int32,omitempty"`
103 RepeatedSint32 []int32 `protobuf:"zigzag32,204,rep,name=repeated_sint32,json=repeatedSint32" json:"repeated_sint32,omitempty"`
104 RepeatedUint32 []uint32 `protobuf:"varint,205,rep,name=repeated_uint32,json=repeatedUint32" json:"repeated_uint32,omitempty"`
105 RepeatedInt64 []int64 `protobuf:"varint,206,rep,name=repeated_int64,json=repeatedInt64" json:"repeated_int64,omitempty"`
106 RepeatedSint64 []int64 `protobuf:"zigzag64,207,rep,name=repeated_sint64,json=repeatedSint64" json:"repeated_sint64,omitempty"`
107 RepeatedUint64 []uint64 `protobuf:"varint,208,rep,name=repeated_uint64,json=repeatedUint64" json:"repeated_uint64,omitempty"`
108 RepeatedSfixed32 []int32 `protobuf:"fixed32,209,rep,name=repeated_sfixed32,json=repeatedSfixed32" json:"repeated_sfixed32,omitempty"`
109 RepeatedFixed32 []uint32 `protobuf:"fixed32,210,rep,name=repeated_fixed32,json=repeatedFixed32" json:"repeated_fixed32,omitempty"`
110 RepeatedFloat []float32 `protobuf:"fixed32,211,rep,name=repeated_float,json=repeatedFloat" json:"repeated_float,omitempty"`
111 RepeatedSfixed64 []int64 `protobuf:"fixed64,212,rep,name=repeated_sfixed64,json=repeatedSfixed64" json:"repeated_sfixed64,omitempty"`
112 RepeatedFixed64 []uint64 `protobuf:"fixed64,213,rep,name=repeated_fixed64,json=repeatedFixed64" json:"repeated_fixed64,omitempty"`
113 RepeatedDouble []float64 `protobuf:"fixed64,214,rep,name=repeated_double,json=repeatedDouble" json:"repeated_double,omitempty"`
114 RepeatedString []string `protobuf:"bytes,215,rep,name=repeated_string,json=repeatedString" json:"repeated_string,omitempty"`
115 RepeatedBytes [][]byte `protobuf:"bytes,216,rep,name=repeated_bytes,json=repeatedBytes" json:"repeated_bytes,omitempty"`
116 Repeated_Message []*FieldTestMessage_Message `protobuf:"bytes,217,rep,name=repeated_Message,json=repeatedMessage" json:"repeated_Message,omitempty"`
117 Repeatedgroup []*FieldTestMessage_RepeatedGroup `protobuf:"group,218,rep,name=RepeatedGroup,json=repeatedgroup" json:"repeatedgroup,omitempty"`
118 DefaultBool *bool `protobuf:"varint,301,opt,name=default_bool,json=defaultBool,def=1" json:"default_bool,omitempty"`
119 DefaultEnum *FieldTestMessage_Enum `protobuf:"varint,302,opt,name=default_enum,json=defaultEnum,enum=goproto.protoc.proto2.FieldTestMessage_Enum,def=1" json:"default_enum,omitempty"`
120 DefaultInt32 *int32 `protobuf:"varint,303,opt,name=default_int32,json=defaultInt32,def=1" json:"default_int32,omitempty"`
121 DefaultSint32 *int32 `protobuf:"zigzag32,304,opt,name=default_sint32,json=defaultSint32,def=1" json:"default_sint32,omitempty"`
122 DefaultUint32 *uint32 `protobuf:"varint,305,opt,name=default_uint32,json=defaultUint32,def=1" json:"default_uint32,omitempty"`
123 DefaultInt64 *int64 `protobuf:"varint,306,opt,name=default_int64,json=defaultInt64,def=1" json:"default_int64,omitempty"`
124 DefaultSint64 *int64 `protobuf:"zigzag64,307,opt,name=default_sint64,json=defaultSint64,def=1" json:"default_sint64,omitempty"`
125 DefaultUint64 *uint64 `protobuf:"varint,308,opt,name=default_uint64,json=defaultUint64,def=1" json:"default_uint64,omitempty"`
126 DefaultSfixed32 *int32 `protobuf:"fixed32,309,opt,name=default_sfixed32,json=defaultSfixed32,def=1" json:"default_sfixed32,omitempty"`
127 DefaultFixed32 *uint32 `protobuf:"fixed32,310,opt,name=default_fixed32,json=defaultFixed32,def=1" json:"default_fixed32,omitempty"`
128 DefaultFloat *float32 `protobuf:"fixed32,311,opt,name=default_float,json=defaultFloat,def=1.5" json:"default_float,omitempty"`
129 DefaultSfixed64 *int64 `protobuf:"fixed64,312,opt,name=default_sfixed64,json=defaultSfixed64,def=1" json:"default_sfixed64,omitempty"`
130 DefaultFixed64 *uint64 `protobuf:"fixed64,313,opt,name=default_fixed64,json=defaultFixed64,def=1" json:"default_fixed64,omitempty"`
131 DefaultDouble *float64 `protobuf:"fixed64,314,opt,name=default_double,json=defaultDouble,def=1.5" json:"default_double,omitempty"`
132 DefaultString *string `protobuf:"bytes,315,opt,name=default_string,json=defaultString,def=x,y" json:"default_string,omitempty"`
133 DefaultBytes []byte `protobuf:"bytes,316,opt,name=default_bytes,json=defaultBytes,def=x,y" json:"default_bytes,omitempty"`
134 DefaultFloatNeginf *float32 `protobuf:"fixed32,400,opt,name=default_float_neginf,json=defaultFloatNeginf,def=-inf" json:"default_float_neginf,omitempty"`
135 DefaultFloatPosinf *float32 `protobuf:"fixed32,401,opt,name=default_float_posinf,json=defaultFloatPosinf,def=inf" json:"default_float_posinf,omitempty"`
136 DefaultFloatNan *float32 `protobuf:"fixed32,402,opt,name=default_float_nan,json=defaultFloatNan,def=nan" json:"default_float_nan,omitempty"`
137 DefaultDoubleNeginf *float64 `protobuf:"fixed64,403,opt,name=default_double_neginf,json=defaultDoubleNeginf,def=-inf" json:"default_double_neginf,omitempty"`
138 DefaultDoublePosinf *float64 `protobuf:"fixed64,404,opt,name=default_double_posinf,json=defaultDoublePosinf,def=inf" json:"default_double_posinf,omitempty"`
139 DefaultDoubleNan *float64 `protobuf:"fixed64,405,opt,name=default_double_nan,json=defaultDoubleNan,def=nan" json:"default_double_nan,omitempty"`
140 MapInt32Int64 map[int32]int64 `protobuf:"bytes,500,rep,name=map_int32_int64,json=mapInt32Int64" json:"map_int32_int64,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
141 MapStringMessage map[string]*FieldTestMessage_Message `protobuf:"bytes,501,rep,name=map_string_message,json=mapStringMessage" json:"map_string_message,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
142 MapFixed64Enum map[uint64]FieldTestMessage_Enum `protobuf:"bytes,502,rep,name=map_fixed64_enum,json=mapFixed64Enum" json:"map_fixed64_enum,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"varint,2,opt,name=value,enum=goproto.protoc.proto2.FieldTestMessage_Enum"`
143 XXX_NoUnkeyedLiteral struct{} `json:"-"`
144 XXX_unrecognized []byte `json:"-"`
145 XXX_sizecache int32 `json:"-"`
Damien Neil658051b2018-09-10 12:26:21 -0700146}
147
Damien Neila1c6abc2018-09-12 13:36:34 -0700148func (m *FieldTestMessage) Reset() { *m = FieldTestMessage{} }
149func (m *FieldTestMessage) String() string { return proto.CompactTextString(m) }
150func (*FieldTestMessage) ProtoMessage() {}
151func (*FieldTestMessage) Descriptor() ([]byte, []int) {
152 return fileDescriptor_fd8a9d72b841fd68, []int{0}
153}
154func (m *FieldTestMessage) XXX_Unmarshal(b []byte) error {
155 return xxx_messageInfo_FieldTestMessage.Unmarshal(m, b)
156}
157func (m *FieldTestMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
158 return xxx_messageInfo_FieldTestMessage.Marshal(b, m, deterministic)
159}
160func (m *FieldTestMessage) XXX_Merge(src proto.Message) {
161 xxx_messageInfo_FieldTestMessage.Merge(m, src)
162}
163func (m *FieldTestMessage) XXX_Size() int {
164 return xxx_messageInfo_FieldTestMessage.Size(m)
165}
166func (m *FieldTestMessage) XXX_DiscardUnknown() {
167 xxx_messageInfo_FieldTestMessage.DiscardUnknown(m)
168}
169
170var xxx_messageInfo_FieldTestMessage proto.InternalMessageInfo
171
Damien Neilebc699d2018-09-13 08:50:13 -0700172const Default_FieldTestMessage_DefaultBool bool = true
173const Default_FieldTestMessage_DefaultEnum FieldTestMessage_Enum = FieldTestMessage_ONE
174const Default_FieldTestMessage_DefaultInt32 int32 = 1
175const Default_FieldTestMessage_DefaultSint32 int32 = 1
176const Default_FieldTestMessage_DefaultUint32 uint32 = 1
177const Default_FieldTestMessage_DefaultInt64 int64 = 1
178const Default_FieldTestMessage_DefaultSint64 int64 = 1
179const Default_FieldTestMessage_DefaultUint64 uint64 = 1
180const Default_FieldTestMessage_DefaultSfixed32 int32 = 1
181const Default_FieldTestMessage_DefaultFixed32 uint32 = 1
182const Default_FieldTestMessage_DefaultFloat float32 = 1.5
183const Default_FieldTestMessage_DefaultSfixed64 int64 = 1
184const Default_FieldTestMessage_DefaultFixed64 uint64 = 1
185const Default_FieldTestMessage_DefaultDouble float64 = 1.5
186const Default_FieldTestMessage_DefaultString string = "x,y"
187
188var Default_FieldTestMessage_DefaultBytes []byte = []byte("x,y")
189var Default_FieldTestMessage_DefaultFloatNeginf float32 = float32(math.Inf(-1))
190var Default_FieldTestMessage_DefaultFloatPosinf float32 = float32(math.Inf(1))
191var Default_FieldTestMessage_DefaultFloatNan float32 = float32(math.NaN())
192var Default_FieldTestMessage_DefaultDoubleNeginf float64 = math.Inf(-1)
193var Default_FieldTestMessage_DefaultDoublePosinf float64 = math.Inf(1)
194var Default_FieldTestMessage_DefaultDoubleNan float64 = math.NaN()
195
Damien Neil77f82fe2018-09-13 10:59:17 -0700196func (m *FieldTestMessage) GetOptionalBool() bool {
197 if m != nil && m.OptionalBool != nil {
198 return *m.OptionalBool
199 }
200 return false
201}
202
203func (m *FieldTestMessage) GetOptionalEnum() FieldTestMessage_Enum {
204 if m != nil && m.OptionalEnum != nil {
205 return *m.OptionalEnum
206 }
207 return FieldTestMessage_ZERO
208}
209
210func (m *FieldTestMessage) GetOptionalInt32() int32 {
211 if m != nil && m.OptionalInt32 != nil {
212 return *m.OptionalInt32
213 }
214 return 0
215}
216
217func (m *FieldTestMessage) GetOptionalSint32() int32 {
218 if m != nil && m.OptionalSint32 != nil {
219 return *m.OptionalSint32
220 }
221 return 0
222}
223
224func (m *FieldTestMessage) GetOptionalUint32() uint32 {
225 if m != nil && m.OptionalUint32 != nil {
226 return *m.OptionalUint32
227 }
228 return 0
229}
230
231func (m *FieldTestMessage) GetOptionalInt64() int64 {
232 if m != nil && m.OptionalInt64 != nil {
233 return *m.OptionalInt64
234 }
235 return 0
236}
237
238func (m *FieldTestMessage) GetOptionalSint64() int64 {
239 if m != nil && m.OptionalSint64 != nil {
240 return *m.OptionalSint64
241 }
242 return 0
243}
244
245func (m *FieldTestMessage) GetOptionalUint64() uint64 {
246 if m != nil && m.OptionalUint64 != nil {
247 return *m.OptionalUint64
248 }
249 return 0
250}
251
252func (m *FieldTestMessage) GetOptionalSfixed32() int32 {
253 if m != nil && m.OptionalSfixed32 != nil {
254 return *m.OptionalSfixed32
255 }
256 return 0
257}
258
259func (m *FieldTestMessage) GetOptionalFixed32() uint32 {
260 if m != nil && m.OptionalFixed32 != nil {
261 return *m.OptionalFixed32
262 }
263 return 0
264}
265
266func (m *FieldTestMessage) GetOptionalFloat() float32 {
267 if m != nil && m.OptionalFloat != nil {
268 return *m.OptionalFloat
269 }
270 return 0
271}
272
273func (m *FieldTestMessage) GetOptionalSfixed64() int64 {
274 if m != nil && m.OptionalSfixed64 != nil {
275 return *m.OptionalSfixed64
276 }
277 return 0
278}
279
280func (m *FieldTestMessage) GetOptionalFixed64() uint64 {
281 if m != nil && m.OptionalFixed64 != nil {
282 return *m.OptionalFixed64
283 }
284 return 0
285}
286
287func (m *FieldTestMessage) GetOptionalDouble() float64 {
288 if m != nil && m.OptionalDouble != nil {
289 return *m.OptionalDouble
290 }
291 return 0
292}
293
294func (m *FieldTestMessage) GetOptionalString() string {
295 if m != nil && m.OptionalString != nil {
296 return *m.OptionalString
297 }
298 return ""
299}
300
301func (m *FieldTestMessage) GetOptionalBytes() []byte {
302 if m != nil {
303 return m.OptionalBytes
304 }
305 return nil
306}
307
308func (m *FieldTestMessage) GetOptional_Message() *FieldTestMessage_Message {
309 if m != nil {
310 return m.Optional_Message
311 }
312 return nil
313}
314
315func (m *FieldTestMessage) GetOptionalgroup() *FieldTestMessage_OptionalGroup {
316 if m != nil {
317 return m.Optionalgroup
318 }
319 return nil
320}
321
322func (m *FieldTestMessage) GetRequiredBool() bool {
323 if m != nil && m.RequiredBool != nil {
324 return *m.RequiredBool
325 }
326 return false
327}
328
329func (m *FieldTestMessage) GetRequiredEnum() FieldTestMessage_Enum {
330 if m != nil && m.RequiredEnum != nil {
331 return *m.RequiredEnum
332 }
333 return FieldTestMessage_ZERO
334}
335
336func (m *FieldTestMessage) GetRequiredInt32() int32 {
337 if m != nil && m.RequiredInt32 != nil {
338 return *m.RequiredInt32
339 }
340 return 0
341}
342
343func (m *FieldTestMessage) GetRequiredSint32() int32 {
344 if m != nil && m.RequiredSint32 != nil {
345 return *m.RequiredSint32
346 }
347 return 0
348}
349
350func (m *FieldTestMessage) GetRequiredUint32() uint32 {
351 if m != nil && m.RequiredUint32 != nil {
352 return *m.RequiredUint32
353 }
354 return 0
355}
356
357func (m *FieldTestMessage) GetRequiredInt64() int64 {
358 if m != nil && m.RequiredInt64 != nil {
359 return *m.RequiredInt64
360 }
361 return 0
362}
363
364func (m *FieldTestMessage) GetRequiredSint64() int64 {
365 if m != nil && m.RequiredSint64 != nil {
366 return *m.RequiredSint64
367 }
368 return 0
369}
370
371func (m *FieldTestMessage) GetRequiredUint64() uint64 {
372 if m != nil && m.RequiredUint64 != nil {
373 return *m.RequiredUint64
374 }
375 return 0
376}
377
378func (m *FieldTestMessage) GetRequiredSfixed32() int32 {
379 if m != nil && m.RequiredSfixed32 != nil {
380 return *m.RequiredSfixed32
381 }
382 return 0
383}
384
385func (m *FieldTestMessage) GetRequiredFixed32() uint32 {
386 if m != nil && m.RequiredFixed32 != nil {
387 return *m.RequiredFixed32
388 }
389 return 0
390}
391
392func (m *FieldTestMessage) GetRequiredFloat() float32 {
393 if m != nil && m.RequiredFloat != nil {
394 return *m.RequiredFloat
395 }
396 return 0
397}
398
399func (m *FieldTestMessage) GetRequiredSfixed64() int64 {
400 if m != nil && m.RequiredSfixed64 != nil {
401 return *m.RequiredSfixed64
402 }
403 return 0
404}
405
406func (m *FieldTestMessage) GetRequiredFixed64() uint64 {
407 if m != nil && m.RequiredFixed64 != nil {
408 return *m.RequiredFixed64
409 }
410 return 0
411}
412
413func (m *FieldTestMessage) GetRequiredDouble() float64 {
414 if m != nil && m.RequiredDouble != nil {
415 return *m.RequiredDouble
416 }
417 return 0
418}
419
420func (m *FieldTestMessage) GetRequiredString() string {
421 if m != nil && m.RequiredString != nil {
422 return *m.RequiredString
423 }
424 return ""
425}
426
427func (m *FieldTestMessage) GetRequiredBytes() []byte {
428 if m != nil {
429 return m.RequiredBytes
430 }
431 return nil
432}
433
434func (m *FieldTestMessage) GetRequired_Message() *FieldTestMessage_Message {
435 if m != nil {
436 return m.Required_Message
437 }
438 return nil
439}
440
441func (m *FieldTestMessage) GetRequiredgroup() *FieldTestMessage_RequiredGroup {
442 if m != nil {
443 return m.Requiredgroup
444 }
445 return nil
446}
447
448func (m *FieldTestMessage) GetRepeatedBool() []bool {
449 if m != nil {
450 return m.RepeatedBool
451 }
452 return nil
453}
454
455func (m *FieldTestMessage) GetRepeatedEnum() []FieldTestMessage_Enum {
456 if m != nil {
457 return m.RepeatedEnum
458 }
459 return nil
460}
461
462func (m *FieldTestMessage) GetRepeatedInt32() []int32 {
463 if m != nil {
464 return m.RepeatedInt32
465 }
466 return nil
467}
468
469func (m *FieldTestMessage) GetRepeatedSint32() []int32 {
470 if m != nil {
471 return m.RepeatedSint32
472 }
473 return nil
474}
475
476func (m *FieldTestMessage) GetRepeatedUint32() []uint32 {
477 if m != nil {
478 return m.RepeatedUint32
479 }
480 return nil
481}
482
483func (m *FieldTestMessage) GetRepeatedInt64() []int64 {
484 if m != nil {
485 return m.RepeatedInt64
486 }
487 return nil
488}
489
490func (m *FieldTestMessage) GetRepeatedSint64() []int64 {
491 if m != nil {
492 return m.RepeatedSint64
493 }
494 return nil
495}
496
497func (m *FieldTestMessage) GetRepeatedUint64() []uint64 {
498 if m != nil {
499 return m.RepeatedUint64
500 }
501 return nil
502}
503
504func (m *FieldTestMessage) GetRepeatedSfixed32() []int32 {
505 if m != nil {
506 return m.RepeatedSfixed32
507 }
508 return nil
509}
510
511func (m *FieldTestMessage) GetRepeatedFixed32() []uint32 {
512 if m != nil {
513 return m.RepeatedFixed32
514 }
515 return nil
516}
517
518func (m *FieldTestMessage) GetRepeatedFloat() []float32 {
519 if m != nil {
520 return m.RepeatedFloat
521 }
522 return nil
523}
524
525func (m *FieldTestMessage) GetRepeatedSfixed64() []int64 {
526 if m != nil {
527 return m.RepeatedSfixed64
528 }
529 return nil
530}
531
532func (m *FieldTestMessage) GetRepeatedFixed64() []uint64 {
533 if m != nil {
534 return m.RepeatedFixed64
535 }
536 return nil
537}
538
539func (m *FieldTestMessage) GetRepeatedDouble() []float64 {
540 if m != nil {
541 return m.RepeatedDouble
542 }
543 return nil
544}
545
546func (m *FieldTestMessage) GetRepeatedString() []string {
547 if m != nil {
548 return m.RepeatedString
549 }
550 return nil
551}
552
553func (m *FieldTestMessage) GetRepeatedBytes() [][]byte {
554 if m != nil {
555 return m.RepeatedBytes
556 }
557 return nil
558}
559
560func (m *FieldTestMessage) GetRepeated_Message() []*FieldTestMessage_Message {
561 if m != nil {
562 return m.Repeated_Message
563 }
564 return nil
565}
566
567func (m *FieldTestMessage) GetRepeatedgroup() []*FieldTestMessage_RepeatedGroup {
568 if m != nil {
569 return m.Repeatedgroup
570 }
571 return nil
572}
573
574func (m *FieldTestMessage) GetDefaultBool() bool {
575 if m != nil && m.DefaultBool != nil {
576 return *m.DefaultBool
577 }
578 return Default_FieldTestMessage_DefaultBool
579}
580
581func (m *FieldTestMessage) GetDefaultEnum() FieldTestMessage_Enum {
582 if m != nil && m.DefaultEnum != nil {
583 return *m.DefaultEnum
584 }
585 return Default_FieldTestMessage_DefaultEnum
586}
587
588func (m *FieldTestMessage) GetDefaultInt32() int32 {
589 if m != nil && m.DefaultInt32 != nil {
590 return *m.DefaultInt32
591 }
592 return Default_FieldTestMessage_DefaultInt32
593}
594
595func (m *FieldTestMessage) GetDefaultSint32() int32 {
596 if m != nil && m.DefaultSint32 != nil {
597 return *m.DefaultSint32
598 }
599 return Default_FieldTestMessage_DefaultSint32
600}
601
602func (m *FieldTestMessage) GetDefaultUint32() uint32 {
603 if m != nil && m.DefaultUint32 != nil {
604 return *m.DefaultUint32
605 }
606 return Default_FieldTestMessage_DefaultUint32
607}
608
609func (m *FieldTestMessage) GetDefaultInt64() int64 {
610 if m != nil && m.DefaultInt64 != nil {
611 return *m.DefaultInt64
612 }
613 return Default_FieldTestMessage_DefaultInt64
614}
615
616func (m *FieldTestMessage) GetDefaultSint64() int64 {
617 if m != nil && m.DefaultSint64 != nil {
618 return *m.DefaultSint64
619 }
620 return Default_FieldTestMessage_DefaultSint64
621}
622
623func (m *FieldTestMessage) GetDefaultUint64() uint64 {
624 if m != nil && m.DefaultUint64 != nil {
625 return *m.DefaultUint64
626 }
627 return Default_FieldTestMessage_DefaultUint64
628}
629
630func (m *FieldTestMessage) GetDefaultSfixed32() int32 {
631 if m != nil && m.DefaultSfixed32 != nil {
632 return *m.DefaultSfixed32
633 }
634 return Default_FieldTestMessage_DefaultSfixed32
635}
636
637func (m *FieldTestMessage) GetDefaultFixed32() uint32 {
638 if m != nil && m.DefaultFixed32 != nil {
639 return *m.DefaultFixed32
640 }
641 return Default_FieldTestMessage_DefaultFixed32
642}
643
644func (m *FieldTestMessage) GetDefaultFloat() float32 {
645 if m != nil && m.DefaultFloat != nil {
646 return *m.DefaultFloat
647 }
648 return Default_FieldTestMessage_DefaultFloat
649}
650
651func (m *FieldTestMessage) GetDefaultSfixed64() int64 {
652 if m != nil && m.DefaultSfixed64 != nil {
653 return *m.DefaultSfixed64
654 }
655 return Default_FieldTestMessage_DefaultSfixed64
656}
657
658func (m *FieldTestMessage) GetDefaultFixed64() uint64 {
659 if m != nil && m.DefaultFixed64 != nil {
660 return *m.DefaultFixed64
661 }
662 return Default_FieldTestMessage_DefaultFixed64
663}
664
665func (m *FieldTestMessage) GetDefaultDouble() float64 {
666 if m != nil && m.DefaultDouble != nil {
667 return *m.DefaultDouble
668 }
669 return Default_FieldTestMessage_DefaultDouble
670}
671
672func (m *FieldTestMessage) GetDefaultString() string {
673 if m != nil && m.DefaultString != nil {
674 return *m.DefaultString
675 }
676 return Default_FieldTestMessage_DefaultString
677}
678
679func (m *FieldTestMessage) GetDefaultBytes() []byte {
680 if m != nil && m.DefaultBytes != nil {
681 return m.DefaultBytes
682 }
683 return append([]byte(nil), Default_FieldTestMessage_DefaultBytes...)
684}
685
686func (m *FieldTestMessage) GetDefaultFloatNeginf() float32 {
687 if m != nil && m.DefaultFloatNeginf != nil {
688 return *m.DefaultFloatNeginf
689 }
690 return Default_FieldTestMessage_DefaultFloatNeginf
691}
692
693func (m *FieldTestMessage) GetDefaultFloatPosinf() float32 {
694 if m != nil && m.DefaultFloatPosinf != nil {
695 return *m.DefaultFloatPosinf
696 }
697 return Default_FieldTestMessage_DefaultFloatPosinf
698}
699
700func (m *FieldTestMessage) GetDefaultFloatNan() float32 {
701 if m != nil && m.DefaultFloatNan != nil {
702 return *m.DefaultFloatNan
703 }
704 return Default_FieldTestMessage_DefaultFloatNan
705}
706
707func (m *FieldTestMessage) GetDefaultDoubleNeginf() float64 {
708 if m != nil && m.DefaultDoubleNeginf != nil {
709 return *m.DefaultDoubleNeginf
710 }
711 return Default_FieldTestMessage_DefaultDoubleNeginf
712}
713
714func (m *FieldTestMessage) GetDefaultDoublePosinf() float64 {
715 if m != nil && m.DefaultDoublePosinf != nil {
716 return *m.DefaultDoublePosinf
717 }
718 return Default_FieldTestMessage_DefaultDoublePosinf
719}
720
721func (m *FieldTestMessage) GetDefaultDoubleNan() float64 {
722 if m != nil && m.DefaultDoubleNan != nil {
723 return *m.DefaultDoubleNan
724 }
725 return Default_FieldTestMessage_DefaultDoubleNan
726}
727
Damien Neil0bd5a382018-09-13 15:07:10 -0700728func (m *FieldTestMessage) GetMapInt32Int64() map[int32]int64 {
729 if m != nil {
730 return m.MapInt32Int64
731 }
732 return nil
733}
734
735func (m *FieldTestMessage) GetMapStringMessage() map[string]*FieldTestMessage_Message {
736 if m != nil {
737 return m.MapStringMessage
738 }
739 return nil
740}
741
742func (m *FieldTestMessage) GetMapFixed64Enum() map[uint64]FieldTestMessage_Enum {
743 if m != nil {
744 return m.MapFixed64Enum
745 }
746 return nil
747}
748
Damien Neil658051b2018-09-10 12:26:21 -0700749type FieldTestMessage_OptionalGroup struct {
750 OptionalGroup *string `protobuf:"bytes,19,opt,name=optional_group,json=optionalGroup" json:"optional_group,omitempty"`
751 XXX_NoUnkeyedLiteral struct{} `json:"-"`
752 XXX_unrecognized []byte `json:"-"`
753 XXX_sizecache int32 `json:"-"`
754}
755
Damien Neila1c6abc2018-09-12 13:36:34 -0700756func (m *FieldTestMessage_OptionalGroup) Reset() { *m = FieldTestMessage_OptionalGroup{} }
757func (m *FieldTestMessage_OptionalGroup) String() string { return proto.CompactTextString(m) }
758func (*FieldTestMessage_OptionalGroup) ProtoMessage() {}
759func (*FieldTestMessage_OptionalGroup) Descriptor() ([]byte, []int) {
760 return fileDescriptor_fd8a9d72b841fd68, []int{0, 0}
761}
762func (m *FieldTestMessage_OptionalGroup) XXX_Unmarshal(b []byte) error {
763 return xxx_messageInfo_FieldTestMessage_OptionalGroup.Unmarshal(m, b)
764}
765func (m *FieldTestMessage_OptionalGroup) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
766 return xxx_messageInfo_FieldTestMessage_OptionalGroup.Marshal(b, m, deterministic)
767}
768func (m *FieldTestMessage_OptionalGroup) XXX_Merge(src proto.Message) {
769 xxx_messageInfo_FieldTestMessage_OptionalGroup.Merge(m, src)
770}
771func (m *FieldTestMessage_OptionalGroup) XXX_Size() int {
772 return xxx_messageInfo_FieldTestMessage_OptionalGroup.Size(m)
773}
774func (m *FieldTestMessage_OptionalGroup) XXX_DiscardUnknown() {
775 xxx_messageInfo_FieldTestMessage_OptionalGroup.DiscardUnknown(m)
776}
777
778var xxx_messageInfo_FieldTestMessage_OptionalGroup proto.InternalMessageInfo
779
Damien Neil77f82fe2018-09-13 10:59:17 -0700780func (m *FieldTestMessage_OptionalGroup) GetOptionalGroup() string {
781 if m != nil && m.OptionalGroup != nil {
782 return *m.OptionalGroup
783 }
784 return ""
785}
786
Damien Neil658051b2018-09-10 12:26:21 -0700787type FieldTestMessage_RequiredGroup struct {
788 RequiredGroup *string `protobuf:"bytes,119,req,name=required_group,json=requiredGroup" json:"required_group,omitempty"`
789 XXX_NoUnkeyedLiteral struct{} `json:"-"`
790 XXX_unrecognized []byte `json:"-"`
791 XXX_sizecache int32 `json:"-"`
792}
793
Damien Neila1c6abc2018-09-12 13:36:34 -0700794func (m *FieldTestMessage_RequiredGroup) Reset() { *m = FieldTestMessage_RequiredGroup{} }
795func (m *FieldTestMessage_RequiredGroup) String() string { return proto.CompactTextString(m) }
796func (*FieldTestMessage_RequiredGroup) ProtoMessage() {}
797func (*FieldTestMessage_RequiredGroup) Descriptor() ([]byte, []int) {
798 return fileDescriptor_fd8a9d72b841fd68, []int{0, 1}
799}
800func (m *FieldTestMessage_RequiredGroup) XXX_Unmarshal(b []byte) error {
801 return xxx_messageInfo_FieldTestMessage_RequiredGroup.Unmarshal(m, b)
802}
803func (m *FieldTestMessage_RequiredGroup) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
804 return xxx_messageInfo_FieldTestMessage_RequiredGroup.Marshal(b, m, deterministic)
805}
806func (m *FieldTestMessage_RequiredGroup) XXX_Merge(src proto.Message) {
807 xxx_messageInfo_FieldTestMessage_RequiredGroup.Merge(m, src)
808}
809func (m *FieldTestMessage_RequiredGroup) XXX_Size() int {
810 return xxx_messageInfo_FieldTestMessage_RequiredGroup.Size(m)
811}
812func (m *FieldTestMessage_RequiredGroup) XXX_DiscardUnknown() {
813 xxx_messageInfo_FieldTestMessage_RequiredGroup.DiscardUnknown(m)
814}
815
816var xxx_messageInfo_FieldTestMessage_RequiredGroup proto.InternalMessageInfo
817
Damien Neil77f82fe2018-09-13 10:59:17 -0700818func (m *FieldTestMessage_RequiredGroup) GetRequiredGroup() string {
819 if m != nil && m.RequiredGroup != nil {
820 return *m.RequiredGroup
821 }
822 return ""
823}
824
Damien Neil658051b2018-09-10 12:26:21 -0700825type FieldTestMessage_RepeatedGroup struct {
826 RepeatedGroup []string `protobuf:"bytes,219,rep,name=repeated_group,json=repeatedGroup" json:"repeated_group,omitempty"`
827 XXX_NoUnkeyedLiteral struct{} `json:"-"`
828 XXX_unrecognized []byte `json:"-"`
829 XXX_sizecache int32 `json:"-"`
830}
831
Damien Neila1c6abc2018-09-12 13:36:34 -0700832func (m *FieldTestMessage_RepeatedGroup) Reset() { *m = FieldTestMessage_RepeatedGroup{} }
833func (m *FieldTestMessage_RepeatedGroup) String() string { return proto.CompactTextString(m) }
834func (*FieldTestMessage_RepeatedGroup) ProtoMessage() {}
835func (*FieldTestMessage_RepeatedGroup) Descriptor() ([]byte, []int) {
836 return fileDescriptor_fd8a9d72b841fd68, []int{0, 2}
837}
838func (m *FieldTestMessage_RepeatedGroup) XXX_Unmarshal(b []byte) error {
839 return xxx_messageInfo_FieldTestMessage_RepeatedGroup.Unmarshal(m, b)
840}
841func (m *FieldTestMessage_RepeatedGroup) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
842 return xxx_messageInfo_FieldTestMessage_RepeatedGroup.Marshal(b, m, deterministic)
843}
844func (m *FieldTestMessage_RepeatedGroup) XXX_Merge(src proto.Message) {
845 xxx_messageInfo_FieldTestMessage_RepeatedGroup.Merge(m, src)
846}
847func (m *FieldTestMessage_RepeatedGroup) XXX_Size() int {
848 return xxx_messageInfo_FieldTestMessage_RepeatedGroup.Size(m)
849}
850func (m *FieldTestMessage_RepeatedGroup) XXX_DiscardUnknown() {
851 xxx_messageInfo_FieldTestMessage_RepeatedGroup.DiscardUnknown(m)
852}
853
854var xxx_messageInfo_FieldTestMessage_RepeatedGroup proto.InternalMessageInfo
855
Damien Neil77f82fe2018-09-13 10:59:17 -0700856func (m *FieldTestMessage_RepeatedGroup) GetRepeatedGroup() []string {
857 if m != nil {
858 return m.RepeatedGroup
859 }
860 return nil
861}
862
Damien Neil658051b2018-09-10 12:26:21 -0700863type FieldTestMessage_Message struct {
864 XXX_NoUnkeyedLiteral struct{} `json:"-"`
865 XXX_unrecognized []byte `json:"-"`
866 XXX_sizecache int32 `json:"-"`
867}
868
Damien Neila1c6abc2018-09-12 13:36:34 -0700869func (m *FieldTestMessage_Message) Reset() { *m = FieldTestMessage_Message{} }
870func (m *FieldTestMessage_Message) String() string { return proto.CompactTextString(m) }
871func (*FieldTestMessage_Message) ProtoMessage() {}
872func (*FieldTestMessage_Message) Descriptor() ([]byte, []int) {
Damien Neil0bd5a382018-09-13 15:07:10 -0700873 return fileDescriptor_fd8a9d72b841fd68, []int{0, 6}
Damien Neila1c6abc2018-09-12 13:36:34 -0700874}
875func (m *FieldTestMessage_Message) XXX_Unmarshal(b []byte) error {
876 return xxx_messageInfo_FieldTestMessage_Message.Unmarshal(m, b)
877}
878func (m *FieldTestMessage_Message) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
879 return xxx_messageInfo_FieldTestMessage_Message.Marshal(b, m, deterministic)
880}
881func (m *FieldTestMessage_Message) XXX_Merge(src proto.Message) {
882 xxx_messageInfo_FieldTestMessage_Message.Merge(m, src)
883}
884func (m *FieldTestMessage_Message) XXX_Size() int {
885 return xxx_messageInfo_FieldTestMessage_Message.Size(m)
886}
887func (m *FieldTestMessage_Message) XXX_DiscardUnknown() {
888 xxx_messageInfo_FieldTestMessage_Message.DiscardUnknown(m)
889}
890
891var xxx_messageInfo_FieldTestMessage_Message proto.InternalMessageInfo
892
Damien Neil658051b2018-09-10 12:26:21 -0700893func init() {
Damien Neilce36f8d2018-09-13 15:19:08 -0700894 proto.RegisterType((*FieldTestMessage)(nil), "goproto.protoc.proto2.FieldTestMessage")
895 proto.RegisterMapType((map[uint64]FieldTestMessage_Enum)(nil), "goproto.protoc.proto2.FieldTestMessage.MapFixed64EnumEntry")
896 proto.RegisterMapType((map[int32]int64)(nil), "goproto.protoc.proto2.FieldTestMessage.MapInt32Int64Entry")
897 proto.RegisterMapType((map[string]*FieldTestMessage_Message)(nil), "goproto.protoc.proto2.FieldTestMessage.MapStringMessageEntry")
898 proto.RegisterType((*FieldTestMessage_OptionalGroup)(nil), "goproto.protoc.proto2.FieldTestMessage.OptionalGroup")
899 proto.RegisterType((*FieldTestMessage_RequiredGroup)(nil), "goproto.protoc.proto2.FieldTestMessage.RequiredGroup")
900 proto.RegisterType((*FieldTestMessage_RepeatedGroup)(nil), "goproto.protoc.proto2.FieldTestMessage.RepeatedGroup")
901 proto.RegisterType((*FieldTestMessage_Message)(nil), "goproto.protoc.proto2.FieldTestMessage.Message")
Damien Neil658051b2018-09-10 12:26:21 -0700902 proto.RegisterEnum("goproto.protoc.proto2.FieldTestMessage_Enum", FieldTestMessage_Enum_name, FieldTestMessage_Enum_value)
903}
904
905func init() { proto.RegisterFile("proto2/fields.proto", fileDescriptor_fd8a9d72b841fd68) }
906
907var fileDescriptor_fd8a9d72b841fd68 = []byte{
Damien Neil0bd5a382018-09-13 15:07:10 -0700908 // 1496 bytes of a gzipped FileDescriptorProto
909 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x98, 0xc9, 0x72, 0xdb, 0x46,
910 0x13, 0xc7, 0x3f, 0x00, 0xd4, 0x36, 0x16, 0x25, 0x6a, 0x64, 0x57, 0xcd, 0xe7, 0xd3, 0x94, 0x9d,
911 0xc4, 0x70, 0x6c, 0x51, 0x31, 0x0d, 0xc3, 0x36, 0x5d, 0xa9, 0x4a, 0xa9, 0x22, 0xa5, 0x72, 0x88,
912 0x9d, 0x20, 0xf1, 0xc5, 0x4e, 0x95, 0x0a, 0x16, 0x41, 0x86, 0x31, 0x09, 0xd0, 0x24, 0xe8, 0x58,
913 0x6f, 0x91, 0xf5, 0x31, 0xb2, 0xef, 0xcb, 0x0b, 0x64, 0xdf, 0xf7, 0x63, 0x5e, 0x21, 0xc9, 0x39,
914 0xd5, 0xd3, 0x33, 0x83, 0x19, 0x40, 0x07, 0x49, 0x27, 0x91, 0x8d, 0x7f, 0xf7, 0xbf, 0xa7, 0x39,
915 0x3f, 0x0c, 0x20, 0xb2, 0x3a, 0x1a, 0x67, 0x79, 0xd6, 0x5a, 0xef, 0xf6, 0x93, 0x41, 0x67, 0xd2,
916 0x14, 0xdf, 0xe8, 0xb1, 0x5e, 0x26, 0x3e, 0xe0, 0xd7, 0x1d, 0xfc, 0xd3, 0x3a, 0xf1, 0xd7, 0x49,
917 0xd2, 0xd8, 0x02, 0xdd, 0x33, 0xc9, 0x24, 0x7f, 0x22, 0x99, 0x4c, 0xe2, 0x5e, 0x42, 0x4f, 0x92,
918 0x7a, 0x36, 0xca, 0xfb, 0x59, 0x1a, 0x0f, 0xb6, 0x6f, 0x65, 0xd9, 0x80, 0x39, 0xdc, 0xf1, 0xe7,
919 0xa3, 0x45, 0x15, 0xdc, 0xc8, 0xb2, 0x01, 0x7d, 0xca, 0x10, 0x25, 0xe9, 0x74, 0xc8, 0x5c, 0xee,
920 0xf8, 0x4b, 0xad, 0xb3, 0xcd, 0x3d, 0x8d, 0x9a, 0x65, 0x93, 0xe6, 0x66, 0x3a, 0x1d, 0x16, 0x25,
921 0xe1, 0x1b, 0xbd, 0x9f, 0x2c, 0xe9, 0x92, 0xfd, 0x34, 0x3f, 0xdf, 0x62, 0x1e, 0x77, 0xfc, 0x99,
922 0x48, 0x1b, 0x3d, 0x0e, 0x41, 0x7a, 0x8a, 0x2c, 0x6b, 0xd9, 0x04, 0x75, 0x35, 0xee, 0xf8, 0x2b,
923 0x91, 0xce, 0x7e, 0xba, 0x5f, 0x11, 0x4e, 0x51, 0x38, 0xc3, 0x1d, 0xbf, 0x5e, 0x08, 0xaf, 0xa3,
924 0xb0, 0x64, 0x1c, 0x06, 0x6c, 0x96, 0x3b, 0xbe, 0x67, 0x19, 0x87, 0x41, 0xc5, 0x38, 0x0c, 0xd8,
925 0x1c, 0x77, 0x7c, 0x6a, 0x1b, 0x97, 0x84, 0x53, 0x14, 0xce, 0x73, 0xc7, 0xaf, 0xd9, 0xc6, 0x61,
926 0x40, 0xcf, 0x90, 0x95, 0xa2, 0x62, 0xb7, 0x7f, 0x2f, 0xe9, 0x9c, 0x6f, 0xb1, 0x05, 0xee, 0xf8,
927 0xcb, 0x51, 0x43, 0xd7, 0x94, 0x71, 0x7a, 0x9a, 0xe8, 0xd8, 0xb6, 0xd2, 0x12, 0xee, 0xf8, 0x73,
928 0x91, 0x76, 0xdb, 0x92, 0x52, 0x73, 0x41, 0xdd, 0x41, 0x16, 0xe7, 0xec, 0x08, 0x77, 0x7c, 0xb7,
929 0x58, 0xd0, 0x16, 0x04, 0xf7, 0xb0, 0x0f, 0x03, 0xb6, 0xc8, 0x1d, 0xbf, 0x51, 0xb6, 0x0f, 0x83,
930 0xaa, 0x7d, 0x18, 0xb0, 0x3a, 0x77, 0xfc, 0xd9, 0x92, 0x7d, 0x69, 0xfd, 0x9d, 0x6c, 0x7a, 0x6b,
931 0x90, 0xb0, 0x25, 0xee, 0xf8, 0x4e, 0xb1, 0xfe, 0x47, 0x45, 0xd4, 0x9e, 0x68, 0x3e, 0xee, 0xa7,
932 0x3d, 0xb6, 0xcc, 0x1d, 0x7f, 0xc1, 0x98, 0xa8, 0x88, 0x5a, 0x0b, 0xba, 0xb5, 0x9b, 0x27, 0x13,
933 0xd6, 0xe0, 0x8e, 0xbf, 0x58, 0x2c, 0x68, 0x03, 0x82, 0xf4, 0x86, 0xd1, 0xa3, 0xdc, 0x68, 0x6c,
934 0x85, 0x3b, 0xfe, 0x91, 0xd6, 0xfa, 0x7e, 0xf7, 0xa5, 0xfc, 0x5b, 0x2c, 0x4a, 0x51, 0x71, 0xb3,
935 0xd8, 0xf0, 0xbd, 0x71, 0x36, 0x1d, 0x31, 0xca, 0x1d, 0x9f, 0xb4, 0x2e, 0xec, 0xb7, 0xf0, 0x35,
936 0x99, 0xfc, 0x18, 0x24, 0x47, 0x76, 0x2d, 0x40, 0x6e, 0x9c, 0xdc, 0x99, 0xf6, 0xc7, 0x49, 0x07,
937 0x91, 0x4b, 0xb8, 0x0b, 0xc8, 0xa9, 0xa0, 0x42, 0x4e, 0x8b, 0x04, 0x72, 0x5d, 0xee, 0x1e, 0x1c,
938 0x39, 0x55, 0x42, 0x21, 0xa7, 0x4b, 0x22, 0x21, 0x3d, 0xee, 0x02, 0x72, 0x2a, 0xaa, 0x91, 0xd3,
939 0x32, 0x89, 0xdc, 0x73, 0xdc, 0x05, 0xe4, 0x54, 0xb8, 0x40, 0x4e, 0x0b, 0x25, 0x72, 0x7d, 0xee,
940 0x02, 0x72, 0x2a, 0x5c, 0x20, 0x67, 0x1a, 0x87, 0x01, 0x7b, 0x9e, 0xbb, 0x80, 0x9c, 0x61, 0x8c,
941 0x3b, 0xc9, 0x32, 0x0e, 0x03, 0x76, 0x9b, 0xbb, 0x80, 0x9c, 0x69, 0x5c, 0x12, 0x4a, 0xe4, 0x06,
942 0xdc, 0x05, 0xe4, 0x4c, 0x63, 0x44, 0xae, 0xa8, 0xa8, 0x30, 0x1a, 0x72, 0x17, 0x90, 0xd3, 0x35,
943 0x0d, 0xe4, 0xb4, 0x58, 0x69, 0x53, 0xee, 0x02, 0x72, 0x2a, 0x6e, 0x20, 0x57, 0x48, 0x05, 0x72,
944 0x19, 0x77, 0x01, 0x39, 0x2d, 0x54, 0xc8, 0x95, 0xec, 0xc3, 0x80, 0x8d, 0xb8, 0x0b, 0xc8, 0xd9,
945 0xf6, 0x88, 0x9c, 0x6d, 0x1f, 0x06, 0xec, 0x0e, 0x77, 0x01, 0x39, 0xcb, 0xbe, 0xb4, 0x7e, 0x89,
946 0xdc, 0x98, 0xbb, 0x80, 0x9c, 0x0a, 0x17, 0xc8, 0x15, 0x0d, 0x20, 0x72, 0x13, 0xee, 0x02, 0x72,
947 0xda, 0x5e, 0x23, 0x57, 0x6c, 0x49, 0x81, 0x5c, 0xce, 0x5d, 0x40, 0x4e, 0xef, 0x49, 0x85, 0x9c,
948 0x96, 0x29, 0xe4, 0xa6, 0xdc, 0x3d, 0x14, 0x72, 0xaa, 0x90, 0x81, 0x9c, 0x0a, 0x21, 0x72, 0x77,
949 0xb9, 0x7b, 0x10, 0xe4, 0x22, 0x99, 0x2c, 0x91, 0xb3, 0x6a, 0xd1, 0xfb, 0xa0, 0xf8, 0x28, 0x89,
950 0x73, 0x85, 0xdc, 0xe7, 0x0e, 0xf7, 0x90, 0x39, 0x8c, 0x0a, 0xe6, 0x22, 0x43, 0x25, 0x98, 0xfb,
951 0x02, 0x54, 0x87, 0x80, 0x0e, 0x6b, 0x08, 0xe8, 0x1e, 0x80, 0xc9, 0xca, 0x9a, 0xc8, 0xc8, 0x97,
952 0x50, 0x54, 0x50, 0x87, 0x61, 0xa4, 0xce, 0x87, 0x9f, 0x4a, 0xea, 0x24, 0x75, 0x5f, 0x81, 0x50,
953 0x60, 0x87, 0x71, 0x89, 0x9d, 0xa9, 0x94, 0xd8, 0x7d, 0x0d, 0xca, 0x7a, 0xa1, 0x94, 0xdc, 0x95,
954 0xbc, 0xc3, 0x80, 0x7d, 0x03, 0x42, 0xcf, 0xf2, 0x0e, 0x83, 0x8a, 0x77, 0x18, 0xb0, 0x6f, 0x41,
955 0x48, 0x6d, 0xef, 0x92, 0x52, 0x92, 0xf7, 0x1d, 0x28, 0x6b, 0xb6, 0x77, 0x18, 0xd0, 0xb3, 0xb0,
956 0xf7, 0x55, 0x4d, 0x85, 0xd3, 0xf7, 0xa0, 0x15, 0xec, 0xc9, 0xaa, 0x8a, 0xbd, 0x07, 0x89, 0x8e,
957 0x69, 0xf6, 0x7e, 0x00, 0xb1, 0x80, 0x0f, 0x2f, 0x28, 0xf8, 0xcc, 0x55, 0x21, 0x7c, 0x3f, 0x82,
958 0xd2, 0x2d, 0x56, 0x85, 0xf4, 0x55, 0x3b, 0x08, 0x03, 0xf6, 0x13, 0x48, 0x1b, 0xe5, 0x0e, 0xc2,
959 0xa0, 0xda, 0x41, 0x18, 0xb0, 0x9f, 0x41, 0x3c, 0x5b, 0xea, 0xa0, 0x34, 0x05, 0xc9, 0xdf, 0x2f,
960 0x20, 0x75, 0x8a, 0x29, 0x48, 0x00, 0xad, 0xc9, 0x22, 0x80, 0xbf, 0x82, 0x72, 0xc1, 0x98, 0x2c,
961 0x12, 0x68, 0xae, 0x0a, 0x09, 0xfc, 0x0d, 0x84, 0x8b, 0xc5, 0xaa, 0x10, 0xc1, 0x9b, 0x46, 0x9f,
962 0x0a, 0xc1, 0xdf, 0x41, 0x79, 0x38, 0x06, 0xb1, 0x92, 0x62, 0xf0, 0xd9, 0x02, 0x00, 0x64, 0xf0,
963 0x0f, 0xa8, 0x7c, 0x20, 0x08, 0x31, 0x5b, 0x43, 0x68, 0x14, 0xa3, 0x3e, 0x59, 0xec, 0x24, 0xdd,
964 0x78, 0x3a, 0xc8, 0x91, 0xc1, 0xd7, 0xe1, 0x29, 0x72, 0xbe, 0x5d, 0xcb, 0xc7, 0xd3, 0x24, 0x3a,
965 0x22, 0x2f, 0x09, 0x10, 0xaf, 0x17, 0x4a, 0xc1, 0xe1, 0x1b, 0x87, 0x78, 0xde, 0x6c, 0x7b, 0xd7,
966 0xae, 0x6e, 0xea, 0xb2, 0x82, 0xc5, 0x53, 0xa4, 0xae, 0xca, 0x22, 0x37, 0x6f, 0x42, 0xdd, 0x99,
967 0xb6, 0x73, 0x2e, 0x52, 0x7e, 0x08, 0xe3, 0x69, 0xb2, 0xa4, 0x84, 0x92, 0xc5, 0xb7, 0x40, 0xb9,
968 0x02, 0x4a, 0x55, 0x42, 0xd2, 0x68, 0x48, 0x25, 0x8c, 0x6f, 0x83, 0xb4, 0x6e, 0x4a, 0xaf, 0xab,
969 0xf3, 0xd2, 0xb4, 0x0f, 0x03, 0xf6, 0x0e, 0x28, 0xbd, 0x92, 0xbd, 0x38, 0x0a, 0x2c, 0xfb, 0x30,
970 0x60, 0xef, 0x82, 0x92, 0x96, 0xed, 0x6d, 0xa9, 0xe4, 0xf1, 0x3d, 0x90, 0xd6, 0xca, 0xf6, 0x61,
971 0x40, 0xd7, 0x48, 0x43, 0x57, 0x55, 0x8c, 0xbd, 0x0f, 0xe2, 0x65, 0x10, 0x2f, 0xab, 0xba, 0x0a,
972 0xc9, 0x33, 0x44, 0x85, 0x34, 0x91, 0x1f, 0x80, 0x7a, 0x0e, 0xd4, 0xca, 0x74, 0x4b, 0x9f, 0x9d,
973 0x7a, 0x69, 0x88, 0xe4, 0x87, 0x20, 0x75, 0xdb, 0xde, 0xb9, 0xe6, 0x05, 0xbd, 0x38, 0xc4, 0xb2,
974 0xd2, 0x46, 0x18, 0xb0, 0x8f, 0x40, 0xdd, 0xa8, 0xb6, 0x21, 0x8e, 0x70, 0xbb, 0x8d, 0x30, 0x60,
975 0x1f, 0x83, 0x7a, 0xb6, 0xd2, 0x86, 0x10, 0xeb, 0x69, 0x48, 0x2e, 0x3f, 0x01, 0xad, 0x83, 0x7d,
976 0xa8, 0x16, 0x25, 0x9b, 0x86, 0x58, 0xa2, 0xf9, 0x29, 0x88, 0x17, 0xda, 0xde, 0xbd, 0xb3, 0xbb,
977 0xc5, 0x9c, 0x11, 0x4f, 0x63, 0x81, 0x48, 0xe7, 0x67, 0xa0, 0x5d, 0x44, 0xad, 0x5a, 0x20, 0x12,
978 0x7a, 0x91, 0x1c, 0xb5, 0x66, 0xb1, 0x9d, 0x26, 0xbd, 0x7e, 0xda, 0x65, 0x2f, 0x7a, 0x62, 0x24,
979 0xb5, 0xb5, 0x7e, 0xda, 0x8d, 0xa8, 0x39, 0x93, 0xab, 0x42, 0x40, 0xc3, 0x72, 0xe2, 0x28, 0x9b,
980 0x40, 0xe2, 0x4b, 0x98, 0xe8, 0x55, 0xf2, 0x9e, 0x14, 0xd7, 0xe9, 0x43, 0x64, 0xa5, 0x64, 0x18,
981 0xa7, 0xec, 0x65, 0x99, 0x94, 0xc6, 0xa9, 0x1e, 0x2a, 0x9a, 0xc5, 0x29, 0xbd, 0x4c, 0x8e, 0xd9,
982 0x73, 0x52, 0x3d, 0xbe, 0xe2, 0x89, 0x71, 0x61, 0x8f, 0xab, 0xd6, 0xbc, 0x64, 0x93, 0x97, 0x2a,
983 0xa9, 0xb2, 0xcb, 0x57, 0x31, 0xd5, 0xab, 0x66, 0xca, 0x36, 0x5b, 0x84, 0x96, 0x4d, 0xe3, 0x94,
984 0xbd, 0x26, 0xd3, 0xa0, 0xcf, 0x86, 0x6d, 0x18, 0xa7, 0x74, 0x87, 0x2c, 0x0f, 0xe3, 0x11, 0xd2,
985 0x2a, 0xa1, 0xf9, 0xdb, 0x13, 0x37, 0xbb, 0xf6, 0xbe, 0x6f, 0x76, 0xf1, 0x48, 0x40, 0x2d, 0xd0,
986 0xda, 0x4c, 0xf3, 0xf1, 0x6e, 0x54, 0x1f, 0x9a, 0x31, 0x3a, 0x20, 0x14, 0x4c, 0x70, 0x13, 0x6c,
987 0x0f, 0xe5, 0x4d, 0xf5, 0x1f, 0xf4, 0x79, 0xf8, 0x00, 0x3e, 0xb8, 0x57, 0x64, 0x00, 0xad, 0x1a,
988 0xc3, 0x52, 0x98, 0x76, 0x09, 0xc4, 0xd4, 0x66, 0xc6, 0xfb, 0xdb, 0xbf, 0xe8, 0x75, 0xe5, 0x00,
989 0x5e, 0x72, 0xcb, 0xc3, 0x7d, 0x0d, 0x9d, 0x96, 0x86, 0x56, 0xf0, 0x78, 0x48, 0xea, 0xd6, 0x5b,
990 0x88, 0xf5, 0x5a, 0x85, 0x77, 0xf7, 0x55, 0xf1, 0xfa, 0xa5, 0xdf, 0x4e, 0x84, 0x0c, 0xf2, 0xac,
991 0x47, 0x29, 0xeb, 0xd9, 0x10, 0xf3, 0x5e, 0x10, 0xcf, 0x90, 0xfa, 0x11, 0x0b, 0xf3, 0x2e, 0x42,
992 0x9e, 0x71, 0xf7, 0xb7, 0x4e, 0x34, 0xcc, 0xfb, 0x13, 0x8f, 0x3e, 0x7d, 0x2c, 0x60, 0xe2, 0x23,
993 0x84, 0x56, 0x7f, 0x23, 0xda, 0x20, 0xde, 0xed, 0x64, 0x57, 0xfc, 0x37, 0x62, 0x26, 0x82, 0x8f,
994 0xf4, 0x28, 0x99, 0xb9, 0x1b, 0x0f, 0xa6, 0x89, 0xf8, 0xe7, 0x83, 0x17, 0xe1, 0x97, 0xb6, 0x7b,
995 0xc9, 0x39, 0x9e, 0x93, 0x63, 0x7b, 0x4e, 0xdf, 0x2c, 0xb2, 0x80, 0x45, 0x36, 0xcd, 0x22, 0x87,
996 0x38, 0x32, 0x0d, 0xd7, 0x8c, 0xac, 0xee, 0xf1, 0x3b, 0x98, 0x9e, 0xb3, 0xe8, 0xb9, 0x61, 0x7a,
997 0x1e, 0xf4, 0x69, 0xd2, 0x30, 0x5c, 0x20, 0x73, 0xf2, 0xd2, 0x89, 0xff, 0x93, 0x9a, 0x38, 0xd1,
998 0xe6, 0x49, 0xed, 0xc6, 0x66, 0x74, 0xad, 0xf1, 0x3f, 0x3a, 0x47, 0xe0, 0xbc, 0x6b, 0x38, 0x1b,
999 0x57, 0x6e, 0x5c, 0xee, 0x65, 0x59, 0x6f, 0x90, 0x34, 0x7b, 0xd9, 0x20, 0x4e, 0x7b, 0xcd, 0x6c,
1000 0xdc, 0x5b, 0x17, 0x16, 0xeb, 0x3b, 0xc3, 0x0e, 0x7e, 0xda, 0x59, 0xeb, 0x25, 0xe9, 0x5a, 0x2f,
1001 0x5b, 0xcf, 0x93, 0x49, 0xde, 0x89, 0xf3, 0x18, 0xc3, 0xad, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff,
1002 0xd8, 0xe8, 0xaa, 0xfc, 0x4f, 0x12, 0x00, 0x00,
Damien Neil658051b2018-09-10 12:26:21 -07001003}