blob: 3259b059d9c1cc9cb7606c0973af55ffa1832066 [file] [log] [blame]
khenaidoo9beaaf12021-10-19 17:32:01 -04001// Code generated by protoc-gen-go. DO NOT EDIT.
2// source: voltha_protos/core_adapter.proto
3
4package core_adapter
5
6import (
7 fmt "fmt"
8 proto "github.com/golang/protobuf/proto"
9 common "github.com/opencord/voltha-protos/v5/go/common"
10 extension "github.com/opencord/voltha-protos/v5/go/extension"
11 omci "github.com/opencord/voltha-protos/v5/go/omci"
12 openflow_13 "github.com/opencord/voltha-protos/v5/go/openflow_13"
13 voltha "github.com/opencord/voltha-protos/v5/go/voltha"
14 math "math"
15)
16
17// Reference imports to suppress errors if they are not otherwise used.
18var _ = proto.Marshal
19var _ = fmt.Errorf
20var _ = math.Inf
21
22// This is a compile-time assertion to ensure that this generated file
23// is compatible with the proto package it is being compiled against.
24// A compilation error at this line likely means your copy of the
25// proto package needs to be updated.
26const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
27
28type AdapterRegistration struct {
29 Adapter *voltha.Adapter `protobuf:"bytes,1,opt,name=adapter,proto3" json:"adapter,omitempty"`
30 DTypes *voltha.DeviceTypes `protobuf:"bytes,2,opt,name=dTypes,proto3" json:"dTypes,omitempty"`
31 XXX_NoUnkeyedLiteral struct{} `json:"-"`
32 XXX_unrecognized []byte `json:"-"`
33 XXX_sizecache int32 `json:"-"`
34}
35
36func (m *AdapterRegistration) Reset() { *m = AdapterRegistration{} }
37func (m *AdapterRegistration) String() string { return proto.CompactTextString(m) }
38func (*AdapterRegistration) ProtoMessage() {}
39func (*AdapterRegistration) Descriptor() ([]byte, []int) {
40 return fileDescriptor_b77436fd29d035f0, []int{0}
41}
42
43func (m *AdapterRegistration) XXX_Unmarshal(b []byte) error {
44 return xxx_messageInfo_AdapterRegistration.Unmarshal(m, b)
45}
46func (m *AdapterRegistration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
47 return xxx_messageInfo_AdapterRegistration.Marshal(b, m, deterministic)
48}
49func (m *AdapterRegistration) XXX_Merge(src proto.Message) {
50 xxx_messageInfo_AdapterRegistration.Merge(m, src)
51}
52func (m *AdapterRegistration) XXX_Size() int {
53 return xxx_messageInfo_AdapterRegistration.Size(m)
54}
55func (m *AdapterRegistration) XXX_DiscardUnknown() {
56 xxx_messageInfo_AdapterRegistration.DiscardUnknown(m)
57}
58
59var xxx_messageInfo_AdapterRegistration proto.InternalMessageInfo
60
61func (m *AdapterRegistration) GetAdapter() *voltha.Adapter {
62 if m != nil {
63 return m.Adapter
64 }
65 return nil
66}
67
68func (m *AdapterRegistration) GetDTypes() *voltha.DeviceTypes {
69 if m != nil {
70 return m.DTypes
71 }
72 return nil
73}
74
75type ChildDeviceFilter struct {
76 ParentId string `protobuf:"bytes,1,opt,name=parent_id,json=parentId,proto3" json:"parent_id,omitempty"`
77 SerialNumber string `protobuf:"bytes,2,opt,name=serial_number,json=serialNumber,proto3" json:"serial_number,omitempty"`
78 OnuId uint32 `protobuf:"varint,3,opt,name=onu_id,json=onuId,proto3" json:"onu_id,omitempty"`
79 ParentPortNo uint32 `protobuf:"varint,4,opt,name=parent_port_no,json=parentPortNo,proto3" json:"parent_port_no,omitempty"`
80 XXX_NoUnkeyedLiteral struct{} `json:"-"`
81 XXX_unrecognized []byte `json:"-"`
82 XXX_sizecache int32 `json:"-"`
83}
84
85func (m *ChildDeviceFilter) Reset() { *m = ChildDeviceFilter{} }
86func (m *ChildDeviceFilter) String() string { return proto.CompactTextString(m) }
87func (*ChildDeviceFilter) ProtoMessage() {}
88func (*ChildDeviceFilter) Descriptor() ([]byte, []int) {
89 return fileDescriptor_b77436fd29d035f0, []int{1}
90}
91
92func (m *ChildDeviceFilter) XXX_Unmarshal(b []byte) error {
93 return xxx_messageInfo_ChildDeviceFilter.Unmarshal(m, b)
94}
95func (m *ChildDeviceFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
96 return xxx_messageInfo_ChildDeviceFilter.Marshal(b, m, deterministic)
97}
98func (m *ChildDeviceFilter) XXX_Merge(src proto.Message) {
99 xxx_messageInfo_ChildDeviceFilter.Merge(m, src)
100}
101func (m *ChildDeviceFilter) XXX_Size() int {
102 return xxx_messageInfo_ChildDeviceFilter.Size(m)
103}
104func (m *ChildDeviceFilter) XXX_DiscardUnknown() {
105 xxx_messageInfo_ChildDeviceFilter.DiscardUnknown(m)
106}
107
108var xxx_messageInfo_ChildDeviceFilter proto.InternalMessageInfo
109
110func (m *ChildDeviceFilter) GetParentId() string {
111 if m != nil {
112 return m.ParentId
113 }
114 return ""
115}
116
117func (m *ChildDeviceFilter) GetSerialNumber() string {
118 if m != nil {
119 return m.SerialNumber
120 }
121 return ""
122}
123
124func (m *ChildDeviceFilter) GetOnuId() uint32 {
125 if m != nil {
126 return m.OnuId
127 }
128 return 0
129}
130
131func (m *ChildDeviceFilter) GetParentPortNo() uint32 {
132 if m != nil {
133 return m.ParentPortNo
134 }
135 return 0
136}
137
138type PortFilter struct {
139 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
140 Port uint32 `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"`
141 PortType voltha.Port_PortType `protobuf:"varint,3,opt,name=port_type,json=portType,proto3,enum=device.Port_PortType" json:"port_type,omitempty"`
142 XXX_NoUnkeyedLiteral struct{} `json:"-"`
143 XXX_unrecognized []byte `json:"-"`
144 XXX_sizecache int32 `json:"-"`
145}
146
147func (m *PortFilter) Reset() { *m = PortFilter{} }
148func (m *PortFilter) String() string { return proto.CompactTextString(m) }
149func (*PortFilter) ProtoMessage() {}
150func (*PortFilter) Descriptor() ([]byte, []int) {
151 return fileDescriptor_b77436fd29d035f0, []int{2}
152}
153
154func (m *PortFilter) XXX_Unmarshal(b []byte) error {
155 return xxx_messageInfo_PortFilter.Unmarshal(m, b)
156}
157func (m *PortFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
158 return xxx_messageInfo_PortFilter.Marshal(b, m, deterministic)
159}
160func (m *PortFilter) XXX_Merge(src proto.Message) {
161 xxx_messageInfo_PortFilter.Merge(m, src)
162}
163func (m *PortFilter) XXX_Size() int {
164 return xxx_messageInfo_PortFilter.Size(m)
165}
166func (m *PortFilter) XXX_DiscardUnknown() {
167 xxx_messageInfo_PortFilter.DiscardUnknown(m)
168}
169
170var xxx_messageInfo_PortFilter proto.InternalMessageInfo
171
172func (m *PortFilter) GetDeviceId() string {
173 if m != nil {
174 return m.DeviceId
175 }
176 return ""
177}
178
179func (m *PortFilter) GetPort() uint32 {
180 if m != nil {
181 return m.Port
182 }
183 return 0
184}
185
186func (m *PortFilter) GetPortType() voltha.Port_PortType {
187 if m != nil {
188 return m.PortType
189 }
190 return voltha.Port_UNKNOWN
191}
192
193type DeviceDiscovery struct {
194 ParentId string `protobuf:"bytes,1,opt,name=parent_id,json=parentId,proto3" json:"parent_id,omitempty"`
195 ParentPortNo uint32 `protobuf:"varint,2,opt,name=parent_port_no,json=parentPortNo,proto3" json:"parent_port_no,omitempty"`
196 ChildDeviceType string `protobuf:"bytes,3,opt,name=child_device_type,json=childDeviceType,proto3" json:"child_device_type,omitempty"`
197 ChannelId uint32 `protobuf:"varint,4,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
198 VendorId string `protobuf:"bytes,5,opt,name=vendor_id,json=vendorId,proto3" json:"vendor_id,omitempty"`
199 SerialNumber string `protobuf:"bytes,6,opt,name=serial_number,json=serialNumber,proto3" json:"serial_number,omitempty"`
200 OnuId uint32 `protobuf:"varint,7,opt,name=onu_id,json=onuId,proto3" json:"onu_id,omitempty"`
201 XXX_NoUnkeyedLiteral struct{} `json:"-"`
202 XXX_unrecognized []byte `json:"-"`
203 XXX_sizecache int32 `json:"-"`
204}
205
206func (m *DeviceDiscovery) Reset() { *m = DeviceDiscovery{} }
207func (m *DeviceDiscovery) String() string { return proto.CompactTextString(m) }
208func (*DeviceDiscovery) ProtoMessage() {}
209func (*DeviceDiscovery) Descriptor() ([]byte, []int) {
210 return fileDescriptor_b77436fd29d035f0, []int{3}
211}
212
213func (m *DeviceDiscovery) XXX_Unmarshal(b []byte) error {
214 return xxx_messageInfo_DeviceDiscovery.Unmarshal(m, b)
215}
216func (m *DeviceDiscovery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
217 return xxx_messageInfo_DeviceDiscovery.Marshal(b, m, deterministic)
218}
219func (m *DeviceDiscovery) XXX_Merge(src proto.Message) {
220 xxx_messageInfo_DeviceDiscovery.Merge(m, src)
221}
222func (m *DeviceDiscovery) XXX_Size() int {
223 return xxx_messageInfo_DeviceDiscovery.Size(m)
224}
225func (m *DeviceDiscovery) XXX_DiscardUnknown() {
226 xxx_messageInfo_DeviceDiscovery.DiscardUnknown(m)
227}
228
229var xxx_messageInfo_DeviceDiscovery proto.InternalMessageInfo
230
231func (m *DeviceDiscovery) GetParentId() string {
232 if m != nil {
233 return m.ParentId
234 }
235 return ""
236}
237
238func (m *DeviceDiscovery) GetParentPortNo() uint32 {
239 if m != nil {
240 return m.ParentPortNo
241 }
242 return 0
243}
244
245func (m *DeviceDiscovery) GetChildDeviceType() string {
246 if m != nil {
247 return m.ChildDeviceType
248 }
249 return ""
250}
251
252func (m *DeviceDiscovery) GetChannelId() uint32 {
253 if m != nil {
254 return m.ChannelId
255 }
256 return 0
257}
258
259func (m *DeviceDiscovery) GetVendorId() string {
260 if m != nil {
261 return m.VendorId
262 }
263 return ""
264}
265
266func (m *DeviceDiscovery) GetSerialNumber() string {
267 if m != nil {
268 return m.SerialNumber
269 }
270 return ""
271}
272
273func (m *DeviceDiscovery) GetOnuId() uint32 {
274 if m != nil {
275 return m.OnuId
276 }
277 return 0
278}
279
280type DeviceStateFilter struct {
281 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
282 ParentDeviceId string `protobuf:"bytes,2,opt,name=parent_device_id,json=parentDeviceId,proto3" json:"parent_device_id,omitempty"`
283 OperStatus common.OperStatus_Types `protobuf:"varint,3,opt,name=oper_status,json=operStatus,proto3,enum=common.OperStatus_Types" json:"oper_status,omitempty"`
284 ConnStatus common.ConnectStatus_Types `protobuf:"varint,4,opt,name=conn_status,json=connStatus,proto3,enum=common.ConnectStatus_Types" json:"conn_status,omitempty"`
285 XXX_NoUnkeyedLiteral struct{} `json:"-"`
286 XXX_unrecognized []byte `json:"-"`
287 XXX_sizecache int32 `json:"-"`
288}
289
290func (m *DeviceStateFilter) Reset() { *m = DeviceStateFilter{} }
291func (m *DeviceStateFilter) String() string { return proto.CompactTextString(m) }
292func (*DeviceStateFilter) ProtoMessage() {}
293func (*DeviceStateFilter) Descriptor() ([]byte, []int) {
294 return fileDescriptor_b77436fd29d035f0, []int{4}
295}
296
297func (m *DeviceStateFilter) XXX_Unmarshal(b []byte) error {
298 return xxx_messageInfo_DeviceStateFilter.Unmarshal(m, b)
299}
300func (m *DeviceStateFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
301 return xxx_messageInfo_DeviceStateFilter.Marshal(b, m, deterministic)
302}
303func (m *DeviceStateFilter) XXX_Merge(src proto.Message) {
304 xxx_messageInfo_DeviceStateFilter.Merge(m, src)
305}
306func (m *DeviceStateFilter) XXX_Size() int {
307 return xxx_messageInfo_DeviceStateFilter.Size(m)
308}
309func (m *DeviceStateFilter) XXX_DiscardUnknown() {
310 xxx_messageInfo_DeviceStateFilter.DiscardUnknown(m)
311}
312
313var xxx_messageInfo_DeviceStateFilter proto.InternalMessageInfo
314
315func (m *DeviceStateFilter) GetDeviceId() string {
316 if m != nil {
317 return m.DeviceId
318 }
319 return ""
320}
321
322func (m *DeviceStateFilter) GetParentDeviceId() string {
323 if m != nil {
324 return m.ParentDeviceId
325 }
326 return ""
327}
328
329func (m *DeviceStateFilter) GetOperStatus() common.OperStatus_Types {
330 if m != nil {
331 return m.OperStatus
332 }
333 return common.OperStatus_UNKNOWN
334}
335
336func (m *DeviceStateFilter) GetConnStatus() common.ConnectStatus_Types {
337 if m != nil {
338 return m.ConnStatus
339 }
340 return common.ConnectStatus_UNKNOWN
341}
342
343type PortState struct {
344 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
345 PortType voltha.Port_PortType `protobuf:"varint,2,opt,name=port_type,json=portType,proto3,enum=device.Port_PortType" json:"port_type,omitempty"`
346 PortNo uint32 `protobuf:"varint,3,opt,name=port_no,json=portNo,proto3" json:"port_no,omitempty"`
347 OperStatus common.OperStatus_Types `protobuf:"varint,4,opt,name=oper_status,json=operStatus,proto3,enum=common.OperStatus_Types" json:"oper_status,omitempty"`
348 XXX_NoUnkeyedLiteral struct{} `json:"-"`
349 XXX_unrecognized []byte `json:"-"`
350 XXX_sizecache int32 `json:"-"`
351}
352
353func (m *PortState) Reset() { *m = PortState{} }
354func (m *PortState) String() string { return proto.CompactTextString(m) }
355func (*PortState) ProtoMessage() {}
356func (*PortState) Descriptor() ([]byte, []int) {
357 return fileDescriptor_b77436fd29d035f0, []int{5}
358}
359
360func (m *PortState) XXX_Unmarshal(b []byte) error {
361 return xxx_messageInfo_PortState.Unmarshal(m, b)
362}
363func (m *PortState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
364 return xxx_messageInfo_PortState.Marshal(b, m, deterministic)
365}
366func (m *PortState) XXX_Merge(src proto.Message) {
367 xxx_messageInfo_PortState.Merge(m, src)
368}
369func (m *PortState) XXX_Size() int {
370 return xxx_messageInfo_PortState.Size(m)
371}
372func (m *PortState) XXX_DiscardUnknown() {
373 xxx_messageInfo_PortState.DiscardUnknown(m)
374}
375
376var xxx_messageInfo_PortState proto.InternalMessageInfo
377
378func (m *PortState) GetDeviceId() string {
379 if m != nil {
380 return m.DeviceId
381 }
382 return ""
383}
384
385func (m *PortState) GetPortType() voltha.Port_PortType {
386 if m != nil {
387 return m.PortType
388 }
389 return voltha.Port_UNKNOWN
390}
391
392func (m *PortState) GetPortNo() uint32 {
393 if m != nil {
394 return m.PortNo
395 }
396 return 0
397}
398
399func (m *PortState) GetOperStatus() common.OperStatus_Types {
400 if m != nil {
401 return m.OperStatus
402 }
403 return common.OperStatus_UNKNOWN
404}
405
406type PortStateFilter struct {
407 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
408 PortTypeFilter uint32 `protobuf:"varint,2,opt,name=port_type_filter,json=portTypeFilter,proto3" json:"port_type_filter,omitempty"`
409 OperStatus common.OperStatus_Types `protobuf:"varint,4,opt,name=oper_status,json=operStatus,proto3,enum=common.OperStatus_Types" json:"oper_status,omitempty"`
410 XXX_NoUnkeyedLiteral struct{} `json:"-"`
411 XXX_unrecognized []byte `json:"-"`
412 XXX_sizecache int32 `json:"-"`
413}
414
415func (m *PortStateFilter) Reset() { *m = PortStateFilter{} }
416func (m *PortStateFilter) String() string { return proto.CompactTextString(m) }
417func (*PortStateFilter) ProtoMessage() {}
418func (*PortStateFilter) Descriptor() ([]byte, []int) {
419 return fileDescriptor_b77436fd29d035f0, []int{6}
420}
421
422func (m *PortStateFilter) XXX_Unmarshal(b []byte) error {
423 return xxx_messageInfo_PortStateFilter.Unmarshal(m, b)
424}
425func (m *PortStateFilter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
426 return xxx_messageInfo_PortStateFilter.Marshal(b, m, deterministic)
427}
428func (m *PortStateFilter) XXX_Merge(src proto.Message) {
429 xxx_messageInfo_PortStateFilter.Merge(m, src)
430}
431func (m *PortStateFilter) XXX_Size() int {
432 return xxx_messageInfo_PortStateFilter.Size(m)
433}
434func (m *PortStateFilter) XXX_DiscardUnknown() {
435 xxx_messageInfo_PortStateFilter.DiscardUnknown(m)
436}
437
438var xxx_messageInfo_PortStateFilter proto.InternalMessageInfo
439
440func (m *PortStateFilter) GetDeviceId() string {
441 if m != nil {
442 return m.DeviceId
443 }
444 return ""
445}
446
447func (m *PortStateFilter) GetPortTypeFilter() uint32 {
448 if m != nil {
449 return m.PortTypeFilter
450 }
451 return 0
452}
453
454func (m *PortStateFilter) GetOperStatus() common.OperStatus_Types {
455 if m != nil {
456 return m.OperStatus
457 }
458 return common.OperStatus_UNKNOWN
459}
460
461type PacketIn struct {
462 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
463 Port uint32 `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"`
464 Packet []byte `protobuf:"bytes,3,opt,name=packet,proto3" json:"packet,omitempty"`
465 XXX_NoUnkeyedLiteral struct{} `json:"-"`
466 XXX_unrecognized []byte `json:"-"`
467 XXX_sizecache int32 `json:"-"`
468}
469
470func (m *PacketIn) Reset() { *m = PacketIn{} }
471func (m *PacketIn) String() string { return proto.CompactTextString(m) }
472func (*PacketIn) ProtoMessage() {}
473func (*PacketIn) Descriptor() ([]byte, []int) {
474 return fileDescriptor_b77436fd29d035f0, []int{7}
475}
476
477func (m *PacketIn) XXX_Unmarshal(b []byte) error {
478 return xxx_messageInfo_PacketIn.Unmarshal(m, b)
479}
480func (m *PacketIn) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
481 return xxx_messageInfo_PacketIn.Marshal(b, m, deterministic)
482}
483func (m *PacketIn) XXX_Merge(src proto.Message) {
484 xxx_messageInfo_PacketIn.Merge(m, src)
485}
486func (m *PacketIn) XXX_Size() int {
487 return xxx_messageInfo_PacketIn.Size(m)
488}
489func (m *PacketIn) XXX_DiscardUnknown() {
490 xxx_messageInfo_PacketIn.DiscardUnknown(m)
491}
492
493var xxx_messageInfo_PacketIn proto.InternalMessageInfo
494
495func (m *PacketIn) GetDeviceId() string {
496 if m != nil {
497 return m.DeviceId
498 }
499 return ""
500}
501
502func (m *PacketIn) GetPort() uint32 {
503 if m != nil {
504 return m.Port
505 }
506 return 0
507}
508
509func (m *PacketIn) GetPacket() []byte {
510 if m != nil {
511 return m.Packet
512 }
513 return nil
514}
515
516type PacketOut struct {
517 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
518 EgressPortNo uint32 `protobuf:"varint,2,opt,name=egress_port_no,json=egressPortNo,proto3" json:"egress_port_no,omitempty"`
519 Packet *openflow_13.OfpPacketOut `protobuf:"bytes,3,opt,name=packet,proto3" json:"packet,omitempty"`
520 XXX_NoUnkeyedLiteral struct{} `json:"-"`
521 XXX_unrecognized []byte `json:"-"`
522 XXX_sizecache int32 `json:"-"`
523}
524
525func (m *PacketOut) Reset() { *m = PacketOut{} }
526func (m *PacketOut) String() string { return proto.CompactTextString(m) }
527func (*PacketOut) ProtoMessage() {}
528func (*PacketOut) Descriptor() ([]byte, []int) {
529 return fileDescriptor_b77436fd29d035f0, []int{8}
530}
531
532func (m *PacketOut) XXX_Unmarshal(b []byte) error {
533 return xxx_messageInfo_PacketOut.Unmarshal(m, b)
534}
535func (m *PacketOut) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
536 return xxx_messageInfo_PacketOut.Marshal(b, m, deterministic)
537}
538func (m *PacketOut) XXX_Merge(src proto.Message) {
539 xxx_messageInfo_PacketOut.Merge(m, src)
540}
541func (m *PacketOut) XXX_Size() int {
542 return xxx_messageInfo_PacketOut.Size(m)
543}
544func (m *PacketOut) XXX_DiscardUnknown() {
545 xxx_messageInfo_PacketOut.DiscardUnknown(m)
546}
547
548var xxx_messageInfo_PacketOut proto.InternalMessageInfo
549
550func (m *PacketOut) GetDeviceId() string {
551 if m != nil {
552 return m.DeviceId
553 }
554 return ""
555}
556
557func (m *PacketOut) GetEgressPortNo() uint32 {
558 if m != nil {
559 return m.EgressPortNo
560 }
561 return 0
562}
563
564func (m *PacketOut) GetPacket() *openflow_13.OfpPacketOut {
565 if m != nil {
566 return m.Packet
567 }
568 return nil
569}
570
571type DeviceReason struct {
572 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
573 Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
574 XXX_NoUnkeyedLiteral struct{} `json:"-"`
575 XXX_unrecognized []byte `json:"-"`
576 XXX_sizecache int32 `json:"-"`
577}
578
579func (m *DeviceReason) Reset() { *m = DeviceReason{} }
580func (m *DeviceReason) String() string { return proto.CompactTextString(m) }
581func (*DeviceReason) ProtoMessage() {}
582func (*DeviceReason) Descriptor() ([]byte, []int) {
583 return fileDescriptor_b77436fd29d035f0, []int{9}
584}
585
586func (m *DeviceReason) XXX_Unmarshal(b []byte) error {
587 return xxx_messageInfo_DeviceReason.Unmarshal(m, b)
588}
589func (m *DeviceReason) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
590 return xxx_messageInfo_DeviceReason.Marshal(b, m, deterministic)
591}
592func (m *DeviceReason) XXX_Merge(src proto.Message) {
593 xxx_messageInfo_DeviceReason.Merge(m, src)
594}
595func (m *DeviceReason) XXX_Size() int {
596 return xxx_messageInfo_DeviceReason.Size(m)
597}
598func (m *DeviceReason) XXX_DiscardUnknown() {
599 xxx_messageInfo_DeviceReason.DiscardUnknown(m)
600}
601
602var xxx_messageInfo_DeviceReason proto.InternalMessageInfo
603
604func (m *DeviceReason) GetDeviceId() string {
605 if m != nil {
606 return m.DeviceId
607 }
608 return ""
609}
610
611func (m *DeviceReason) GetReason() string {
612 if m != nil {
613 return m.Reason
614 }
615 return ""
616}
617
618type BulkFlows struct {
619 Device *voltha.Device `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"`
620 Flows *openflow_13.Flows `protobuf:"bytes,2,opt,name=flows,proto3" json:"flows,omitempty"`
621 Groups *openflow_13.FlowGroups `protobuf:"bytes,3,opt,name=groups,proto3" json:"groups,omitempty"`
622 FlowMetadata *openflow_13.FlowMetadata `protobuf:"bytes,4,opt,name=flow_metadata,json=flowMetadata,proto3" json:"flow_metadata,omitempty"`
623 XXX_NoUnkeyedLiteral struct{} `json:"-"`
624 XXX_unrecognized []byte `json:"-"`
625 XXX_sizecache int32 `json:"-"`
626}
627
628func (m *BulkFlows) Reset() { *m = BulkFlows{} }
629func (m *BulkFlows) String() string { return proto.CompactTextString(m) }
630func (*BulkFlows) ProtoMessage() {}
631func (*BulkFlows) Descriptor() ([]byte, []int) {
632 return fileDescriptor_b77436fd29d035f0, []int{10}
633}
634
635func (m *BulkFlows) XXX_Unmarshal(b []byte) error {
636 return xxx_messageInfo_BulkFlows.Unmarshal(m, b)
637}
638func (m *BulkFlows) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
639 return xxx_messageInfo_BulkFlows.Marshal(b, m, deterministic)
640}
641func (m *BulkFlows) XXX_Merge(src proto.Message) {
642 xxx_messageInfo_BulkFlows.Merge(m, src)
643}
644func (m *BulkFlows) XXX_Size() int {
645 return xxx_messageInfo_BulkFlows.Size(m)
646}
647func (m *BulkFlows) XXX_DiscardUnknown() {
648 xxx_messageInfo_BulkFlows.DiscardUnknown(m)
649}
650
651var xxx_messageInfo_BulkFlows proto.InternalMessageInfo
652
653func (m *BulkFlows) GetDevice() *voltha.Device {
654 if m != nil {
655 return m.Device
656 }
657 return nil
658}
659
660func (m *BulkFlows) GetFlows() *openflow_13.Flows {
661 if m != nil {
662 return m.Flows
663 }
664 return nil
665}
666
667func (m *BulkFlows) GetGroups() *openflow_13.FlowGroups {
668 if m != nil {
669 return m.Groups
670 }
671 return nil
672}
673
674func (m *BulkFlows) GetFlowMetadata() *openflow_13.FlowMetadata {
675 if m != nil {
676 return m.FlowMetadata
677 }
678 return nil
679}
680
681type IncrementalFlows struct {
682 Device *voltha.Device `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"`
683 Flows *openflow_13.FlowChanges `protobuf:"bytes,2,opt,name=flows,proto3" json:"flows,omitempty"`
684 Groups *openflow_13.FlowGroupChanges `protobuf:"bytes,3,opt,name=groups,proto3" json:"groups,omitempty"`
685 FlowMetadata *openflow_13.FlowMetadata `protobuf:"bytes,4,opt,name=flow_metadata,json=flowMetadata,proto3" json:"flow_metadata,omitempty"`
686 XXX_NoUnkeyedLiteral struct{} `json:"-"`
687 XXX_unrecognized []byte `json:"-"`
688 XXX_sizecache int32 `json:"-"`
689}
690
691func (m *IncrementalFlows) Reset() { *m = IncrementalFlows{} }
692func (m *IncrementalFlows) String() string { return proto.CompactTextString(m) }
693func (*IncrementalFlows) ProtoMessage() {}
694func (*IncrementalFlows) Descriptor() ([]byte, []int) {
695 return fileDescriptor_b77436fd29d035f0, []int{11}
696}
697
698func (m *IncrementalFlows) XXX_Unmarshal(b []byte) error {
699 return xxx_messageInfo_IncrementalFlows.Unmarshal(m, b)
700}
701func (m *IncrementalFlows) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
702 return xxx_messageInfo_IncrementalFlows.Marshal(b, m, deterministic)
703}
704func (m *IncrementalFlows) XXX_Merge(src proto.Message) {
705 xxx_messageInfo_IncrementalFlows.Merge(m, src)
706}
707func (m *IncrementalFlows) XXX_Size() int {
708 return xxx_messageInfo_IncrementalFlows.Size(m)
709}
710func (m *IncrementalFlows) XXX_DiscardUnknown() {
711 xxx_messageInfo_IncrementalFlows.DiscardUnknown(m)
712}
713
714var xxx_messageInfo_IncrementalFlows proto.InternalMessageInfo
715
716func (m *IncrementalFlows) GetDevice() *voltha.Device {
717 if m != nil {
718 return m.Device
719 }
720 return nil
721}
722
723func (m *IncrementalFlows) GetFlows() *openflow_13.FlowChanges {
724 if m != nil {
725 return m.Flows
726 }
727 return nil
728}
729
730func (m *IncrementalFlows) GetGroups() *openflow_13.FlowGroupChanges {
731 if m != nil {
732 return m.Groups
733 }
734 return nil
735}
736
737func (m *IncrementalFlows) GetFlowMetadata() *openflow_13.FlowMetadata {
738 if m != nil {
739 return m.FlowMetadata
740 }
741 return nil
742}
743
744type PmConfigsInfo struct {
745 DeviceId string `protobuf:"bytes,1,opt,name=device_id,json=deviceId,proto3" json:"device_id,omitempty"`
746 PmConfigs *voltha.PmConfigs `protobuf:"bytes,2,opt,name=pm_configs,json=pmConfigs,proto3" json:"pm_configs,omitempty"`
747 XXX_NoUnkeyedLiteral struct{} `json:"-"`
748 XXX_unrecognized []byte `json:"-"`
749 XXX_sizecache int32 `json:"-"`
750}
751
752func (m *PmConfigsInfo) Reset() { *m = PmConfigsInfo{} }
753func (m *PmConfigsInfo) String() string { return proto.CompactTextString(m) }
754func (*PmConfigsInfo) ProtoMessage() {}
755func (*PmConfigsInfo) Descriptor() ([]byte, []int) {
756 return fileDescriptor_b77436fd29d035f0, []int{12}
757}
758
759func (m *PmConfigsInfo) XXX_Unmarshal(b []byte) error {
760 return xxx_messageInfo_PmConfigsInfo.Unmarshal(m, b)
761}
762func (m *PmConfigsInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
763 return xxx_messageInfo_PmConfigsInfo.Marshal(b, m, deterministic)
764}
765func (m *PmConfigsInfo) XXX_Merge(src proto.Message) {
766 xxx_messageInfo_PmConfigsInfo.Merge(m, src)
767}
768func (m *PmConfigsInfo) XXX_Size() int {
769 return xxx_messageInfo_PmConfigsInfo.Size(m)
770}
771func (m *PmConfigsInfo) XXX_DiscardUnknown() {
772 xxx_messageInfo_PmConfigsInfo.DiscardUnknown(m)
773}
774
775var xxx_messageInfo_PmConfigsInfo proto.InternalMessageInfo
776
777func (m *PmConfigsInfo) GetDeviceId() string {
778 if m != nil {
779 return m.DeviceId
780 }
781 return ""
782}
783
784func (m *PmConfigsInfo) GetPmConfigs() *voltha.PmConfigs {
785 if m != nil {
786 return m.PmConfigs
787 }
788 return nil
789}
790
791type SwitchCapability struct {
792 Desc *openflow_13.OfpDesc `protobuf:"bytes,1,opt,name=desc,proto3" json:"desc,omitempty"`
793 SwitchFeatures *openflow_13.OfpSwitchFeatures `protobuf:"bytes,2,opt,name=switch_features,json=switchFeatures,proto3" json:"switch_features,omitempty"`
794 XXX_NoUnkeyedLiteral struct{} `json:"-"`
795 XXX_unrecognized []byte `json:"-"`
796 XXX_sizecache int32 `json:"-"`
797}
798
799func (m *SwitchCapability) Reset() { *m = SwitchCapability{} }
800func (m *SwitchCapability) String() string { return proto.CompactTextString(m) }
801func (*SwitchCapability) ProtoMessage() {}
802func (*SwitchCapability) Descriptor() ([]byte, []int) {
803 return fileDescriptor_b77436fd29d035f0, []int{13}
804}
805
806func (m *SwitchCapability) XXX_Unmarshal(b []byte) error {
807 return xxx_messageInfo_SwitchCapability.Unmarshal(m, b)
808}
809func (m *SwitchCapability) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
810 return xxx_messageInfo_SwitchCapability.Marshal(b, m, deterministic)
811}
812func (m *SwitchCapability) XXX_Merge(src proto.Message) {
813 xxx_messageInfo_SwitchCapability.Merge(m, src)
814}
815func (m *SwitchCapability) XXX_Size() int {
816 return xxx_messageInfo_SwitchCapability.Size(m)
817}
818func (m *SwitchCapability) XXX_DiscardUnknown() {
819 xxx_messageInfo_SwitchCapability.DiscardUnknown(m)
820}
821
822var xxx_messageInfo_SwitchCapability proto.InternalMessageInfo
823
824func (m *SwitchCapability) GetDesc() *openflow_13.OfpDesc {
825 if m != nil {
826 return m.Desc
827 }
828 return nil
829}
830
831func (m *SwitchCapability) GetSwitchFeatures() *openflow_13.OfpSwitchFeatures {
832 if m != nil {
833 return m.SwitchFeatures
834 }
835 return nil
836}
837
838type ImageDownloadMessage struct {
839 Device *voltha.Device `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"`
840 Image *voltha.ImageDownload `protobuf:"bytes,2,opt,name=image,proto3" json:"image,omitempty"`
841 XXX_NoUnkeyedLiteral struct{} `json:"-"`
842 XXX_unrecognized []byte `json:"-"`
843 XXX_sizecache int32 `json:"-"`
844}
845
846func (m *ImageDownloadMessage) Reset() { *m = ImageDownloadMessage{} }
847func (m *ImageDownloadMessage) String() string { return proto.CompactTextString(m) }
848func (*ImageDownloadMessage) ProtoMessage() {}
849func (*ImageDownloadMessage) Descriptor() ([]byte, []int) {
850 return fileDescriptor_b77436fd29d035f0, []int{14}
851}
852
853func (m *ImageDownloadMessage) XXX_Unmarshal(b []byte) error {
854 return xxx_messageInfo_ImageDownloadMessage.Unmarshal(m, b)
855}
856func (m *ImageDownloadMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
857 return xxx_messageInfo_ImageDownloadMessage.Marshal(b, m, deterministic)
858}
859func (m *ImageDownloadMessage) XXX_Merge(src proto.Message) {
860 xxx_messageInfo_ImageDownloadMessage.Merge(m, src)
861}
862func (m *ImageDownloadMessage) XXX_Size() int {
863 return xxx_messageInfo_ImageDownloadMessage.Size(m)
864}
865func (m *ImageDownloadMessage) XXX_DiscardUnknown() {
866 xxx_messageInfo_ImageDownloadMessage.DiscardUnknown(m)
867}
868
869var xxx_messageInfo_ImageDownloadMessage proto.InternalMessageInfo
870
871func (m *ImageDownloadMessage) GetDevice() *voltha.Device {
872 if m != nil {
873 return m.Device
874 }
875 return nil
876}
877
878func (m *ImageDownloadMessage) GetImage() *voltha.ImageDownload {
879 if m != nil {
880 return m.Image
881 }
882 return nil
883}
884
885type OMCITest struct {
886 Device *voltha.Device `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"`
887 Request *omci.OmciTestRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
888 XXX_NoUnkeyedLiteral struct{} `json:"-"`
889 XXX_unrecognized []byte `json:"-"`
890 XXX_sizecache int32 `json:"-"`
891}
892
893func (m *OMCITest) Reset() { *m = OMCITest{} }
894func (m *OMCITest) String() string { return proto.CompactTextString(m) }
895func (*OMCITest) ProtoMessage() {}
896func (*OMCITest) Descriptor() ([]byte, []int) {
897 return fileDescriptor_b77436fd29d035f0, []int{15}
898}
899
900func (m *OMCITest) XXX_Unmarshal(b []byte) error {
901 return xxx_messageInfo_OMCITest.Unmarshal(m, b)
902}
903func (m *OMCITest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
904 return xxx_messageInfo_OMCITest.Marshal(b, m, deterministic)
905}
906func (m *OMCITest) XXX_Merge(src proto.Message) {
907 xxx_messageInfo_OMCITest.Merge(m, src)
908}
909func (m *OMCITest) XXX_Size() int {
910 return xxx_messageInfo_OMCITest.Size(m)
911}
912func (m *OMCITest) XXX_DiscardUnknown() {
913 xxx_messageInfo_OMCITest.DiscardUnknown(m)
914}
915
916var xxx_messageInfo_OMCITest proto.InternalMessageInfo
917
918func (m *OMCITest) GetDevice() *voltha.Device {
919 if m != nil {
920 return m.Device
921 }
922 return nil
923}
924
925func (m *OMCITest) GetRequest() *omci.OmciTestRequest {
926 if m != nil {
927 return m.Request
928 }
929 return nil
930}
931
932type SimulateAlarmMessage struct {
933 Device *voltha.Device `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"`
934 Request *voltha.SimulateAlarmRequest `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
935 XXX_NoUnkeyedLiteral struct{} `json:"-"`
936 XXX_unrecognized []byte `json:"-"`
937 XXX_sizecache int32 `json:"-"`
938}
939
940func (m *SimulateAlarmMessage) Reset() { *m = SimulateAlarmMessage{} }
941func (m *SimulateAlarmMessage) String() string { return proto.CompactTextString(m) }
942func (*SimulateAlarmMessage) ProtoMessage() {}
943func (*SimulateAlarmMessage) Descriptor() ([]byte, []int) {
944 return fileDescriptor_b77436fd29d035f0, []int{16}
945}
946
947func (m *SimulateAlarmMessage) XXX_Unmarshal(b []byte) error {
948 return xxx_messageInfo_SimulateAlarmMessage.Unmarshal(m, b)
949}
950func (m *SimulateAlarmMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
951 return xxx_messageInfo_SimulateAlarmMessage.Marshal(b, m, deterministic)
952}
953func (m *SimulateAlarmMessage) XXX_Merge(src proto.Message) {
954 xxx_messageInfo_SimulateAlarmMessage.Merge(m, src)
955}
956func (m *SimulateAlarmMessage) XXX_Size() int {
957 return xxx_messageInfo_SimulateAlarmMessage.Size(m)
958}
959func (m *SimulateAlarmMessage) XXX_DiscardUnknown() {
960 xxx_messageInfo_SimulateAlarmMessage.DiscardUnknown(m)
961}
962
963var xxx_messageInfo_SimulateAlarmMessage proto.InternalMessageInfo
964
965func (m *SimulateAlarmMessage) GetDevice() *voltha.Device {
966 if m != nil {
967 return m.Device
968 }
969 return nil
970}
971
972func (m *SimulateAlarmMessage) GetRequest() *voltha.SimulateAlarmRequest {
973 if m != nil {
974 return m.Request
975 }
976 return nil
977}
978
979type GetExtValueMessage struct {
980 ParentDevice *voltha.Device `protobuf:"bytes,1,opt,name=parent_device,json=parentDevice,proto3" json:"parent_device,omitempty"`
981 ChildDevice *voltha.Device `protobuf:"bytes,2,opt,name=child_device,json=childDevice,proto3" json:"child_device,omitempty"`
982 ValueType extension.ValueType_Type `protobuf:"varint,3,opt,name=value_type,json=valueType,proto3,enum=extension.ValueType_Type" json:"value_type,omitempty"`
983 XXX_NoUnkeyedLiteral struct{} `json:"-"`
984 XXX_unrecognized []byte `json:"-"`
985 XXX_sizecache int32 `json:"-"`
986}
987
988func (m *GetExtValueMessage) Reset() { *m = GetExtValueMessage{} }
989func (m *GetExtValueMessage) String() string { return proto.CompactTextString(m) }
990func (*GetExtValueMessage) ProtoMessage() {}
991func (*GetExtValueMessage) Descriptor() ([]byte, []int) {
992 return fileDescriptor_b77436fd29d035f0, []int{17}
993}
994
995func (m *GetExtValueMessage) XXX_Unmarshal(b []byte) error {
996 return xxx_messageInfo_GetExtValueMessage.Unmarshal(m, b)
997}
998func (m *GetExtValueMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
999 return xxx_messageInfo_GetExtValueMessage.Marshal(b, m, deterministic)
1000}
1001func (m *GetExtValueMessage) XXX_Merge(src proto.Message) {
1002 xxx_messageInfo_GetExtValueMessage.Merge(m, src)
1003}
1004func (m *GetExtValueMessage) XXX_Size() int {
1005 return xxx_messageInfo_GetExtValueMessage.Size(m)
1006}
1007func (m *GetExtValueMessage) XXX_DiscardUnknown() {
1008 xxx_messageInfo_GetExtValueMessage.DiscardUnknown(m)
1009}
1010
1011var xxx_messageInfo_GetExtValueMessage proto.InternalMessageInfo
1012
1013func (m *GetExtValueMessage) GetParentDevice() *voltha.Device {
1014 if m != nil {
1015 return m.ParentDevice
1016 }
1017 return nil
1018}
1019
1020func (m *GetExtValueMessage) GetChildDevice() *voltha.Device {
1021 if m != nil {
1022 return m.ChildDevice
1023 }
1024 return nil
1025}
1026
1027func (m *GetExtValueMessage) GetValueType() extension.ValueType_Type {
1028 if m != nil {
1029 return m.ValueType
1030 }
1031 return extension.ValueType_EMPTY
1032}
1033
1034type SetExtValueMessage struct {
1035 Device *voltha.Device `protobuf:"bytes,1,opt,name=device,proto3" json:"device,omitempty"`
1036 Value *extension.ValueSet `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
1037 XXX_NoUnkeyedLiteral struct{} `json:"-"`
1038 XXX_unrecognized []byte `json:"-"`
1039 XXX_sizecache int32 `json:"-"`
1040}
1041
1042func (m *SetExtValueMessage) Reset() { *m = SetExtValueMessage{} }
1043func (m *SetExtValueMessage) String() string { return proto.CompactTextString(m) }
1044func (*SetExtValueMessage) ProtoMessage() {}
1045func (*SetExtValueMessage) Descriptor() ([]byte, []int) {
1046 return fileDescriptor_b77436fd29d035f0, []int{18}
1047}
1048
1049func (m *SetExtValueMessage) XXX_Unmarshal(b []byte) error {
1050 return xxx_messageInfo_SetExtValueMessage.Unmarshal(m, b)
1051}
1052func (m *SetExtValueMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
1053 return xxx_messageInfo_SetExtValueMessage.Marshal(b, m, deterministic)
1054}
1055func (m *SetExtValueMessage) XXX_Merge(src proto.Message) {
1056 xxx_messageInfo_SetExtValueMessage.Merge(m, src)
1057}
1058func (m *SetExtValueMessage) XXX_Size() int {
1059 return xxx_messageInfo_SetExtValueMessage.Size(m)
1060}
1061func (m *SetExtValueMessage) XXX_DiscardUnknown() {
1062 xxx_messageInfo_SetExtValueMessage.DiscardUnknown(m)
1063}
1064
1065var xxx_messageInfo_SetExtValueMessage proto.InternalMessageInfo
1066
1067func (m *SetExtValueMessage) GetDevice() *voltha.Device {
1068 if m != nil {
1069 return m.Device
1070 }
1071 return nil
1072}
1073
1074func (m *SetExtValueMessage) GetValue() *extension.ValueSet {
1075 if m != nil {
1076 return m.Value
1077 }
1078 return nil
1079}
1080
1081func init() {
1082 proto.RegisterType((*AdapterRegistration)(nil), "core_adapter.AdapterRegistration")
1083 proto.RegisterType((*ChildDeviceFilter)(nil), "core_adapter.ChildDeviceFilter")
1084 proto.RegisterType((*PortFilter)(nil), "core_adapter.PortFilter")
1085 proto.RegisterType((*DeviceDiscovery)(nil), "core_adapter.DeviceDiscovery")
1086 proto.RegisterType((*DeviceStateFilter)(nil), "core_adapter.DeviceStateFilter")
1087 proto.RegisterType((*PortState)(nil), "core_adapter.PortState")
1088 proto.RegisterType((*PortStateFilter)(nil), "core_adapter.PortStateFilter")
1089 proto.RegisterType((*PacketIn)(nil), "core_adapter.PacketIn")
1090 proto.RegisterType((*PacketOut)(nil), "core_adapter.PacketOut")
1091 proto.RegisterType((*DeviceReason)(nil), "core_adapter.DeviceReason")
1092 proto.RegisterType((*BulkFlows)(nil), "core_adapter.BulkFlows")
1093 proto.RegisterType((*IncrementalFlows)(nil), "core_adapter.IncrementalFlows")
1094 proto.RegisterType((*PmConfigsInfo)(nil), "core_adapter.PmConfigsInfo")
1095 proto.RegisterType((*SwitchCapability)(nil), "core_adapter.SwitchCapability")
1096 proto.RegisterType((*ImageDownloadMessage)(nil), "core_adapter.ImageDownloadMessage")
1097 proto.RegisterType((*OMCITest)(nil), "core_adapter.OMCITest")
1098 proto.RegisterType((*SimulateAlarmMessage)(nil), "core_adapter.SimulateAlarmMessage")
1099 proto.RegisterType((*GetExtValueMessage)(nil), "core_adapter.GetExtValueMessage")
1100 proto.RegisterType((*SetExtValueMessage)(nil), "core_adapter.SetExtValueMessage")
1101}
1102
1103func init() { proto.RegisterFile("voltha_protos/core_adapter.proto", fileDescriptor_b77436fd29d035f0) }
1104
1105var fileDescriptor_b77436fd29d035f0 = []byte{
1106 // 1107 bytes of a gzipped FileDescriptorProto
1107 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0x4f, 0x6f, 0x1b, 0x45,
1108 0x14, 0xd7, 0x86, 0xc4, 0x89, 0x9f, 0xff, 0x24, 0x99, 0x34, 0x6d, 0xda, 0x10, 0x88, 0x96, 0x0a,
1109 0xa5, 0xad, 0x70, 0x68, 0x42, 0x11, 0x48, 0x08, 0xa9, 0x75, 0x48, 0xe5, 0x43, 0x9a, 0x68, 0x5c,
1110 0x21, 0xc4, 0x81, 0xd5, 0x64, 0x77, 0x6c, 0xaf, 0xb2, 0x3b, 0xb3, 0x9d, 0x99, 0x75, 0x9a, 0x33,
1111 0x17, 0xce, 0xf0, 0x45, 0x38, 0xf1, 0x31, 0xb8, 0xf0, 0x09, 0xf8, 0x16, 0x1c, 0xd1, 0xfc, 0x59,
1112 0xc7, 0xbb, 0x2e, 0xc1, 0x11, 0x5c, 0xec, 0x9d, 0xf7, 0x7e, 0xef, 0xbd, 0xdf, 0xef, 0xbd, 0xd9,
1113 0xd9, 0x81, 0xdd, 0x31, 0x4f, 0xd4, 0x88, 0x04, 0x99, 0xe0, 0x8a, 0xcb, 0xfd, 0x90, 0x0b, 0x1a,
1114 0x90, 0x88, 0x64, 0x8a, 0x8a, 0x8e, 0xb1, 0xa1, 0xe6, 0xb4, 0xed, 0xc1, 0x83, 0x2a, 0x3e, 0x4d,
1115 0x39, 0xb3, 0xc8, 0xaa, 0xcf, 0xae, 0x9c, 0xef, 0xc3, 0xb2, 0x8f, 0x67, 0x94, 0x0d, 0x12, 0x7e,
1116 0x19, 0x3c, 0x3d, 0x74, 0x80, 0xed, 0x32, 0xa0, 0xc4, 0xa1, 0x9a, 0x39, 0xa2, 0xe3, 0x38, 0xa4,
1117 0xce, 0xf7, 0x41, 0xd9, 0x47, 0xdf, 0x2a, 0xca, 0x64, 0xcc, 0x99, 0x74, 0xfe, 0x9d, 0x4a, 0xe5,
1118 0x34, 0x8c, 0x03, 0x45, 0xa5, 0xb2, 0x6e, 0x9f, 0xc1, 0xc6, 0x73, 0x5b, 0x0b, 0xd3, 0x61, 0x2c,
1119 0x95, 0x20, 0x2a, 0xe6, 0x0c, 0x3d, 0x86, 0x65, 0x47, 0x61, 0xcb, 0xdb, 0xf5, 0xf6, 0x1a, 0x07,
1120 0x6b, 0x9d, 0x82, 0x52, 0x01, 0x2f, 0x00, 0xe8, 0x09, 0xd4, 0xa2, 0xd7, 0x57, 0x19, 0x95, 0x5b,
1121 0x0b, 0x06, 0xba, 0xd1, 0x71, 0x04, 0x8f, 0xcc, 0x9f, 0x71, 0x61, 0x07, 0xf1, 0x7f, 0xf6, 0x60,
1122 0xbd, 0x3b, 0x8a, 0x93, 0xc8, 0x3a, 0x8f, 0xe3, 0x44, 0xa7, 0xd8, 0x86, 0x7a, 0x46, 0x04, 0x65,
1123 0x2a, 0x88, 0x23, 0x53, 0xb0, 0x8e, 0x57, 0xac, 0xa1, 0x17, 0xa1, 0x8f, 0xa0, 0x25, 0xa9, 0x88,
1124 0x49, 0x12, 0xb0, 0x3c, 0x3d, 0xa7, 0xc2, 0x94, 0xa9, 0xe3, 0xa6, 0x35, 0xbe, 0x32, 0x36, 0xb4,
1125 0x09, 0x35, 0xce, 0x72, 0x1d, 0xfe, 0xde, 0xae, 0xb7, 0xd7, 0xc2, 0x4b, 0x9c, 0xe5, 0xbd, 0x08,
1126 0x3d, 0x84, 0xb6, 0x4b, 0x9c, 0x71, 0xa1, 0x02, 0xc6, 0xb7, 0x16, 0x8d, 0xbb, 0x69, 0xad, 0x67,
1127 0x5c, 0xa8, 0x57, 0xdc, 0x7f, 0x03, 0xa0, 0x9f, 0xae, 0xc9, 0x58, 0x01, 0x53, 0x64, 0xac, 0xa1,
1128 0x17, 0x21, 0x04, 0x8b, 0x3a, 0x93, 0xe1, 0xd0, 0xc2, 0xe6, 0x19, 0x1d, 0x40, 0xdd, 0x64, 0x57,
1129 0x57, 0x19, 0x35, 0xe5, 0xdb, 0x07, 0x9b, 0x45, 0x0f, 0x74, 0x5e, 0xf3, 0xa3, 0xe5, 0xe3, 0x95,
1130 0xcc, 0x3d, 0xf9, 0x7f, 0x79, 0xb0, 0x6a, 0x5b, 0x70, 0x14, 0xcb, 0x90, 0x8f, 0xa9, 0xb8, 0xba,
1131 0xb9, 0x0b, 0xb3, 0x4a, 0x16, 0x66, 0x95, 0xa0, 0xc7, 0xb0, 0x1e, 0xea, 0xee, 0x06, 0x4e, 0xc1,
1132 0x84, 0x52, 0x1d, 0xaf, 0x86, 0xd7, 0x6d, 0xd7, 0x14, 0xd0, 0x0e, 0x40, 0x38, 0x22, 0x8c, 0xd1,
1133 0x44, 0xd7, 0xb3, 0x7d, 0xa9, 0x3b, 0x4b, 0x2f, 0xd2, 0x6c, 0xc6, 0x94, 0x45, 0x5c, 0x68, 0xef,
1134 0x92, 0x65, 0x63, 0x0d, 0xef, 0x9a, 0x49, 0xed, 0xc6, 0x99, 0x2c, 0x4f, 0xcd, 0xc4, 0xff, 0xc3,
1135 0x83, 0x75, 0x4b, 0xa3, 0xaf, 0x88, 0xa2, 0xf3, 0x74, 0x7d, 0x0f, 0xd6, 0x9c, 0xf8, 0x6b, 0x8c,
1136 0xdd, 0x05, 0xae, 0x29, 0x47, 0x05, 0xf2, 0x4b, 0x68, 0xf0, 0x8c, 0x8a, 0x40, 0x2a, 0xa2, 0x72,
1137 0xe9, 0xa6, 0xb1, 0xd5, 0x71, 0x2f, 0xea, 0x69, 0x46, 0x45, 0xdf, 0x78, 0x3a, 0x76, 0x5b, 0x02,
1138 0x9f, 0x58, 0xd0, 0x57, 0xd0, 0x08, 0x39, 0x63, 0x45, 0xe8, 0xa2, 0x09, 0xdd, 0x2e, 0x42, 0xbb,
1139 0x9c, 0x31, 0x1a, 0xaa, 0x72, 0xb4, 0xc6, 0x5b, 0x8b, 0xff, 0xab, 0x07, 0x75, 0x3d, 0x04, 0xa3,
1140 0xe9, 0x66, 0x35, 0xa5, 0xfd, 0xb2, 0x30, 0xd7, 0x7e, 0x41, 0xf7, 0x60, 0xb9, 0x98, 0xbb, 0xdd,
1141 0xe0, 0xb5, 0xcc, 0x4e, 0xbc, 0x22, 0x78, 0x71, 0x7e, 0xc1, 0xfe, 0x2f, 0x1e, 0xac, 0x4e, 0x28,
1142 0xcf, 0x3b, 0x86, 0x82, 0x78, 0x30, 0x30, 0x01, 0x6e, 0x17, 0xb6, 0x0b, 0xa2, 0x2e, 0xcd, 0x7f,
1143 0x60, 0xd5, 0x87, 0x95, 0x33, 0x12, 0x5e, 0x50, 0xd5, 0x63, 0xb7, 0x7f, 0x15, 0xef, 0x42, 0x2d,
1144 0x33, 0xc1, 0xa6, 0x4b, 0x4d, 0xec, 0x56, 0xfe, 0x8f, 0x7a, 0x3a, 0xe6, 0xf1, 0x34, 0x57, 0x37,
1145 0xa7, 0x7d, 0x08, 0x6d, 0x3a, 0x14, 0x54, 0xca, 0xea, 0x8b, 0x66, 0xad, 0xee, 0x45, 0x3b, 0x2c,
1146 0x15, 0x6a, 0x1c, 0x6c, 0x77, 0xa6, 0xcf, 0x74, 0x3e, 0xc8, 0x02, 0xeb, 0x0e, 0x78, 0xae, 0x26,
1147 0x2c, 0xba, 0xd0, 0xb4, 0x1b, 0x15, 0x53, 0x22, 0xf9, 0xbf, 0xc8, 0xbb, 0x0b, 0x35, 0x61, 0x60,
1148 0x6e, 0xa7, 0xbb, 0x95, 0xff, 0xbb, 0x07, 0xf5, 0x17, 0x79, 0x72, 0x71, 0x9c, 0xf0, 0x4b, 0x89,
1149 0x3e, 0x86, 0x9a, 0x8d, 0x70, 0xe7, 0x74, 0xbb, 0x7c, 0xf8, 0x62, 0xe7, 0x45, 0x7b, 0xb0, 0xa4,
1150 0xc9, 0x15, 0x67, 0x34, 0x2a, 0xd1, 0x35, 0xa9, 0xb0, 0x05, 0xa0, 0x7d, 0xa8, 0x0d, 0x05, 0xcf,
1151 0x33, 0xe9, 0x94, 0xdd, 0x9b, 0x81, 0xbe, 0x34, 0x6e, 0xec, 0x60, 0xe8, 0x6b, 0x68, 0x19, 0x6f,
1152 0x4a, 0x15, 0x89, 0x88, 0x22, 0x66, 0xda, 0x8d, 0x83, 0xfb, 0x33, 0x71, 0x27, 0x0e, 0x80, 0x9b,
1153 0x83, 0xa9, 0x95, 0xff, 0xa7, 0x07, 0x6b, 0x3d, 0x16, 0x0a, 0x9a, 0x52, 0xa6, 0x48, 0x72, 0x3b,
1154 0x5d, 0x9d, 0xb2, 0xae, 0xad, 0x99, 0xa2, 0xdd, 0x11, 0x61, 0x43, 0x3a, 0x51, 0xf7, 0xac, 0xa2,
1155 0x6e, 0xe7, 0xdd, 0xea, 0x8a, 0xa8, 0xff, 0x4b, 0xe3, 0x0f, 0xd0, 0x3a, 0x4b, 0xbb, 0x9c, 0x0d,
1156 0xe2, 0xa1, 0xec, 0xb1, 0x01, 0xbf, 0x79, 0xf4, 0x9f, 0x02, 0x64, 0x69, 0x10, 0x5a, 0xb8, 0x53,
1157 0xb6, 0x3e, 0x39, 0x21, 0x8a, 0x3c, 0xb8, 0x9e, 0x15, 0x8f, 0xfe, 0x4f, 0x1e, 0xac, 0xf5, 0x2f,
1158 0x63, 0x15, 0x8e, 0xba, 0x24, 0x23, 0xe7, 0x71, 0x12, 0xab, 0x2b, 0xf4, 0x08, 0x16, 0x23, 0x2a,
1159 0x43, 0xd7, 0xc1, 0xcd, 0x99, 0x1d, 0xaa, 0x9d, 0xd8, 0x40, 0x50, 0x0f, 0x56, 0xa5, 0x09, 0x0f,
1160 0x06, 0x94, 0xa8, 0x5c, 0x4c, 0x3e, 0xe6, 0xbb, 0x33, 0x51, 0x15, 0x1c, 0x6e, 0x5b, 0xc3, 0xb1,
1161 0x5b, 0xfb, 0x17, 0x70, 0xa7, 0x97, 0x92, 0x21, 0x3d, 0xe2, 0x97, 0x2c, 0xe1, 0x24, 0x3a, 0xa1,
1162 0x52, 0x92, 0x21, 0x9d, 0x7b, 0xa2, 0x4f, 0x60, 0x29, 0xd6, 0xf1, 0x8e, 0xc0, 0xe4, 0x64, 0x2c,
1163 0x25, 0xc5, 0x16, 0xe3, 0x87, 0xb0, 0x72, 0x7a, 0xd2, 0xed, 0xbd, 0xa6, 0x52, 0xcd, 0x5d, 0x60,
1164 0x1f, 0x96, 0x05, 0x7d, 0x93, 0x53, 0xa9, 0x26, 0x25, 0xf4, 0xad, 0xa8, 0x73, 0x9a, 0x86, 0xb1,
1165 0x4e, 0x84, 0xad, 0x13, 0x17, 0x28, 0x7f, 0x0c, 0x77, 0xfa, 0x71, 0x9a, 0x27, 0x44, 0xd1, 0xe7,
1166 0x09, 0x11, 0xe9, 0x6d, 0x15, 0x7d, 0x5e, 0x2d, 0xf8, 0x7e, 0x01, 0x2c, 0xa5, 0x9d, 0xa9, 0xfb,
1167 0x9b, 0x07, 0xe8, 0x25, 0x55, 0xdf, 0xbc, 0x55, 0xdf, 0x92, 0x24, 0xa7, 0x45, 0xd9, 0x43, 0x68,
1168 0x95, 0x3e, 0x86, 0xff, 0x50, 0xbd, 0x39, 0xfd, 0x65, 0x44, 0x4f, 0xa1, 0x39, 0x7d, 0x31, 0x70,
1169 0x44, 0xaa, 0x31, 0x8d, 0xa9, 0x3b, 0x02, 0xfa, 0x02, 0x60, 0xac, 0xeb, 0x4e, 0xdf, 0x6b, 0xee,
1170 0x77, 0x26, 0x17, 0xcc, 0x8e, 0x21, 0xa5, 0xcf, 0x6f, 0x73, 0x88, 0xe3, 0xfa, 0xb8, 0x58, 0xfb,
1171 0x43, 0x40, 0xfd, 0x59, 0xde, 0xf3, 0xb6, 0xeb, 0x11, 0x2c, 0x99, 0x54, 0xee, 0x0d, 0xdd, 0xa8,
1172 0x96, 0xec, 0x53, 0x85, 0x2d, 0xe2, 0xc5, 0x77, 0xb0, 0xcb, 0xc5, 0xd0, 0x6c, 0xd1, 0x90, 0x8b,
1173 0xa8, 0xe3, 0xee, 0xdc, 0xd3, 0x57, 0xf6, 0xef, 0x3f, 0x1b, 0xc6, 0x6a, 0x94, 0x9f, 0xeb, 0x6f,
1174 0xcf, 0x7e, 0x01, 0x74, 0x97, 0xf3, 0x4f, 0x8a, 0xab, 0xfa, 0xb3, 0xfd, 0x21, 0x2f, 0x5d, 0xfe,
1175 0xcf, 0x6b, 0xc6, 0x75, 0xf8, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0xbc, 0xbf, 0xfc, 0xfe, 0x21,
1176 0x0c, 0x00, 0x00,
1177}