William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1 | // Code generated by protoc-gen-go. DO NOT EDIT. |
| 2 | // source: voltha_protos/common.proto |
| 3 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4 | package common |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6 | import ( |
| 7 | fmt "fmt" |
| 8 | proto "github.com/golang/protobuf/proto" |
| 9 | math "math" |
| 10 | ) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 11 | |
| 12 | // Reference imports to suppress errors if they are not otherwise used. |
| 13 | var _ = proto.Marshal |
| 14 | var _ = fmt.Errorf |
| 15 | var _ = math.Inf |
| 16 | |
| 17 | // 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. |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 21 | const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 22 | |
| 23 | type TestModeKeys int32 |
| 24 | |
| 25 | const ( |
| 26 | TestModeKeys_api_test TestModeKeys = 0 |
| 27 | ) |
| 28 | |
| 29 | var TestModeKeys_name = map[int32]string{ |
| 30 | 0: "api_test", |
| 31 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 32 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 33 | var TestModeKeys_value = map[string]int32{ |
| 34 | "api_test": 0, |
| 35 | } |
| 36 | |
| 37 | func (x TestModeKeys) String() string { |
| 38 | return proto.EnumName(TestModeKeys_name, int32(x)) |
| 39 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 40 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 41 | func (TestModeKeys) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 42 | return fileDescriptor_c2e3fd231961e826, []int{0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 43 | } |
| 44 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 45 | // Administrative State |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 46 | type AdminState_Types int32 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 47 | |
| 48 | const ( |
| 49 | // The administrative state of the device is unknown |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 50 | AdminState_UNKNOWN AdminState_Types = 0 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 51 | // The device is pre-provisioned into Voltha, but not contacted by it |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 52 | AdminState_PREPROVISIONED AdminState_Types = 1 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 53 | // The device is enabled for activation and operation |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 54 | AdminState_ENABLED AdminState_Types = 2 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 55 | // The device is disabled and shall not perform its intended forwarding |
| 56 | // functions other than being available for re-activation. |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 57 | AdminState_DISABLED AdminState_Types = 3 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 58 | // The device is in the state of image download |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 59 | AdminState_DOWNLOADING_IMAGE AdminState_Types = 4 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 60 | // The device is marked to be deleted |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 61 | AdminState_DELETED AdminState_Types = 5 |
Himani Chawla | 503b7ce | 2020-10-07 13:20:03 +0530 | [diff] [blame] | 62 | // The device is marked to be in deleting state |
| 63 | AdminState_DELETING AdminState_Types = 6 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 64 | ) |
| 65 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 66 | var AdminState_Types_name = map[int32]string{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 67 | 0: "UNKNOWN", |
| 68 | 1: "PREPROVISIONED", |
| 69 | 2: "ENABLED", |
| 70 | 3: "DISABLED", |
| 71 | 4: "DOWNLOADING_IMAGE", |
| 72 | 5: "DELETED", |
Himani Chawla | 503b7ce | 2020-10-07 13:20:03 +0530 | [diff] [blame] | 73 | 6: "DELETING", |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 74 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 75 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 76 | var AdminState_Types_value = map[string]int32{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 77 | "UNKNOWN": 0, |
| 78 | "PREPROVISIONED": 1, |
| 79 | "ENABLED": 2, |
| 80 | "DISABLED": 3, |
| 81 | "DOWNLOADING_IMAGE": 4, |
| 82 | "DELETED": 5, |
Himani Chawla | 503b7ce | 2020-10-07 13:20:03 +0530 | [diff] [blame] | 83 | "DELETING": 6, |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 84 | } |
| 85 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 86 | func (x AdminState_Types) String() string { |
| 87 | return proto.EnumName(AdminState_Types_name, int32(x)) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 88 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 89 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 90 | func (AdminState_Types) EnumDescriptor() ([]byte, []int) { |
divyadesai | d11cf31 | 2020-02-26 12:23:31 +0000 | [diff] [blame] | 91 | return fileDescriptor_c2e3fd231961e826, []int{2, 0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | // Operational Status |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 95 | type OperStatus_Types int32 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 96 | |
| 97 | const ( |
| 98 | // The status of the device is unknown at this point |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 99 | OperStatus_UNKNOWN OperStatus_Types = 0 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 100 | // The device has been discovered, but not yet activated |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 101 | OperStatus_DISCOVERED OperStatus_Types = 1 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 102 | // The device is being activated (booted, rebooted, upgraded, etc.) |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 103 | OperStatus_ACTIVATING OperStatus_Types = 2 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 104 | // Service impacting tests are being conducted |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 105 | OperStatus_TESTING OperStatus_Types = 3 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 106 | // The device is up and active |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 107 | OperStatus_ACTIVE OperStatus_Types = 4 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 108 | // The device has failed and cannot fulfill its intended role |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 109 | OperStatus_FAILED OperStatus_Types = 5 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 110 | ) |
| 111 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 112 | var OperStatus_Types_name = map[int32]string{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 113 | 0: "UNKNOWN", |
| 114 | 1: "DISCOVERED", |
| 115 | 2: "ACTIVATING", |
| 116 | 3: "TESTING", |
| 117 | 4: "ACTIVE", |
| 118 | 5: "FAILED", |
| 119 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 120 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 121 | var OperStatus_Types_value = map[string]int32{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 122 | "UNKNOWN": 0, |
| 123 | "DISCOVERED": 1, |
| 124 | "ACTIVATING": 2, |
| 125 | "TESTING": 3, |
| 126 | "ACTIVE": 4, |
| 127 | "FAILED": 5, |
| 128 | } |
| 129 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 130 | func (x OperStatus_Types) String() string { |
| 131 | return proto.EnumName(OperStatus_Types_name, int32(x)) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 132 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 133 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 134 | func (OperStatus_Types) EnumDescriptor() ([]byte, []int) { |
divyadesai | d11cf31 | 2020-02-26 12:23:31 +0000 | [diff] [blame] | 135 | return fileDescriptor_c2e3fd231961e826, []int{3, 0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | // Connectivity Status |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 139 | type ConnectStatus_Types int32 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 140 | |
| 141 | const ( |
| 142 | // The device connectivity status is unknown |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 143 | ConnectStatus_UNKNOWN ConnectStatus_Types = 0 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 144 | // The device cannot be reached by Voltha |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 145 | ConnectStatus_UNREACHABLE ConnectStatus_Types = 1 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 146 | // There is live communication between device and Voltha |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 147 | ConnectStatus_REACHABLE ConnectStatus_Types = 2 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 148 | ) |
| 149 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 150 | var ConnectStatus_Types_name = map[int32]string{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 151 | 0: "UNKNOWN", |
| 152 | 1: "UNREACHABLE", |
| 153 | 2: "REACHABLE", |
| 154 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 155 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 156 | var ConnectStatus_Types_value = map[string]int32{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 157 | "UNKNOWN": 0, |
| 158 | "UNREACHABLE": 1, |
| 159 | "REACHABLE": 2, |
| 160 | } |
| 161 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 162 | func (x ConnectStatus_Types) String() string { |
| 163 | return proto.EnumName(ConnectStatus_Types_name, int32(x)) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 164 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 165 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 166 | func (ConnectStatus_Types) EnumDescriptor() ([]byte, []int) { |
divyadesai | d11cf31 | 2020-02-26 12:23:31 +0000 | [diff] [blame] | 167 | return fileDescriptor_c2e3fd231961e826, []int{4, 0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | type OperationResp_OperationReturnCode int32 |
| 171 | |
| 172 | const ( |
| 173 | OperationResp_OPERATION_SUCCESS OperationResp_OperationReturnCode = 0 |
| 174 | OperationResp_OPERATION_FAILURE OperationResp_OperationReturnCode = 1 |
| 175 | OperationResp_OPERATION_UNSUPPORTED OperationResp_OperationReturnCode = 2 |
| 176 | ) |
| 177 | |
| 178 | var OperationResp_OperationReturnCode_name = map[int32]string{ |
| 179 | 0: "OPERATION_SUCCESS", |
| 180 | 1: "OPERATION_FAILURE", |
| 181 | 2: "OPERATION_UNSUPPORTED", |
| 182 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 183 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 184 | var OperationResp_OperationReturnCode_value = map[string]int32{ |
| 185 | "OPERATION_SUCCESS": 0, |
| 186 | "OPERATION_FAILURE": 1, |
| 187 | "OPERATION_UNSUPPORTED": 2, |
| 188 | } |
| 189 | |
| 190 | func (x OperationResp_OperationReturnCode) String() string { |
| 191 | return proto.EnumName(OperationResp_OperationReturnCode_name, int32(x)) |
| 192 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 193 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 194 | func (OperationResp_OperationReturnCode) EnumDescriptor() ([]byte, []int) { |
divyadesai | d11cf31 | 2020-02-26 12:23:31 +0000 | [diff] [blame] | 195 | return fileDescriptor_c2e3fd231961e826, []int{5, 0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 196 | } |
| 197 | |
Dinesh Belwalkar | ed6da5e | 2020-02-25 11:23:57 -0800 | [diff] [blame] | 198 | type ValueType_Type int32 |
| 199 | |
| 200 | const ( |
| 201 | ValueType_EMPTY ValueType_Type = 0 |
| 202 | ValueType_DISTANCE ValueType_Type = 1 |
| 203 | ) |
| 204 | |
| 205 | var ValueType_Type_name = map[int32]string{ |
| 206 | 0: "EMPTY", |
| 207 | 1: "DISTANCE", |
| 208 | } |
| 209 | |
| 210 | var ValueType_Type_value = map[string]int32{ |
| 211 | "EMPTY": 0, |
| 212 | "DISTANCE": 1, |
| 213 | } |
| 214 | |
| 215 | func (x ValueType_Type) String() string { |
| 216 | return proto.EnumName(ValueType_Type_name, int32(x)) |
| 217 | } |
| 218 | |
| 219 | func (ValueType_Type) EnumDescriptor() ([]byte, []int) { |
| 220 | return fileDescriptor_c2e3fd231961e826, []int{6, 0} |
| 221 | } |
| 222 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 223 | // Convey a resource identifier |
| 224 | type ID struct { |
| 225 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 226 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 227 | XXX_unrecognized []byte `json:"-"` |
| 228 | XXX_sizecache int32 `json:"-"` |
| 229 | } |
| 230 | |
| 231 | func (m *ID) Reset() { *m = ID{} } |
| 232 | func (m *ID) String() string { return proto.CompactTextString(m) } |
| 233 | func (*ID) ProtoMessage() {} |
| 234 | func (*ID) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 235 | return fileDescriptor_c2e3fd231961e826, []int{0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 236 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 237 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 238 | func (m *ID) XXX_Unmarshal(b []byte) error { |
| 239 | return xxx_messageInfo_ID.Unmarshal(m, b) |
| 240 | } |
| 241 | func (m *ID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 242 | return xxx_messageInfo_ID.Marshal(b, m, deterministic) |
| 243 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 244 | func (m *ID) XXX_Merge(src proto.Message) { |
| 245 | xxx_messageInfo_ID.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 246 | } |
| 247 | func (m *ID) XXX_Size() int { |
| 248 | return xxx_messageInfo_ID.Size(m) |
| 249 | } |
| 250 | func (m *ID) XXX_DiscardUnknown() { |
| 251 | xxx_messageInfo_ID.DiscardUnknown(m) |
| 252 | } |
| 253 | |
| 254 | var xxx_messageInfo_ID proto.InternalMessageInfo |
| 255 | |
| 256 | func (m *ID) GetId() string { |
| 257 | if m != nil { |
| 258 | return m.Id |
| 259 | } |
| 260 | return "" |
| 261 | } |
| 262 | |
| 263 | // Represents a list of IDs |
| 264 | type IDs struct { |
| 265 | Items []*ID `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"` |
| 266 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 267 | XXX_unrecognized []byte `json:"-"` |
| 268 | XXX_sizecache int32 `json:"-"` |
| 269 | } |
| 270 | |
| 271 | func (m *IDs) Reset() { *m = IDs{} } |
| 272 | func (m *IDs) String() string { return proto.CompactTextString(m) } |
| 273 | func (*IDs) ProtoMessage() {} |
| 274 | func (*IDs) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 275 | return fileDescriptor_c2e3fd231961e826, []int{1} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 276 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 277 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 278 | func (m *IDs) XXX_Unmarshal(b []byte) error { |
| 279 | return xxx_messageInfo_IDs.Unmarshal(m, b) |
| 280 | } |
| 281 | func (m *IDs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 282 | return xxx_messageInfo_IDs.Marshal(b, m, deterministic) |
| 283 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 284 | func (m *IDs) XXX_Merge(src proto.Message) { |
| 285 | xxx_messageInfo_IDs.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 286 | } |
| 287 | func (m *IDs) XXX_Size() int { |
| 288 | return xxx_messageInfo_IDs.Size(m) |
| 289 | } |
| 290 | func (m *IDs) XXX_DiscardUnknown() { |
| 291 | xxx_messageInfo_IDs.DiscardUnknown(m) |
| 292 | } |
| 293 | |
| 294 | var xxx_messageInfo_IDs proto.InternalMessageInfo |
| 295 | |
| 296 | func (m *IDs) GetItems() []*ID { |
| 297 | if m != nil { |
| 298 | return m.Items |
| 299 | } |
| 300 | return nil |
| 301 | } |
| 302 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 303 | type AdminState struct { |
| 304 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 305 | XXX_unrecognized []byte `json:"-"` |
| 306 | XXX_sizecache int32 `json:"-"` |
| 307 | } |
| 308 | |
| 309 | func (m *AdminState) Reset() { *m = AdminState{} } |
| 310 | func (m *AdminState) String() string { return proto.CompactTextString(m) } |
| 311 | func (*AdminState) ProtoMessage() {} |
| 312 | func (*AdminState) Descriptor() ([]byte, []int) { |
divyadesai | d11cf31 | 2020-02-26 12:23:31 +0000 | [diff] [blame] | 313 | return fileDescriptor_c2e3fd231961e826, []int{2} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 314 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 315 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 316 | func (m *AdminState) XXX_Unmarshal(b []byte) error { |
| 317 | return xxx_messageInfo_AdminState.Unmarshal(m, b) |
| 318 | } |
| 319 | func (m *AdminState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 320 | return xxx_messageInfo_AdminState.Marshal(b, m, deterministic) |
| 321 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 322 | func (m *AdminState) XXX_Merge(src proto.Message) { |
| 323 | xxx_messageInfo_AdminState.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 324 | } |
| 325 | func (m *AdminState) XXX_Size() int { |
| 326 | return xxx_messageInfo_AdminState.Size(m) |
| 327 | } |
| 328 | func (m *AdminState) XXX_DiscardUnknown() { |
| 329 | xxx_messageInfo_AdminState.DiscardUnknown(m) |
| 330 | } |
| 331 | |
| 332 | var xxx_messageInfo_AdminState proto.InternalMessageInfo |
| 333 | |
| 334 | type OperStatus struct { |
| 335 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 336 | XXX_unrecognized []byte `json:"-"` |
| 337 | XXX_sizecache int32 `json:"-"` |
| 338 | } |
| 339 | |
| 340 | func (m *OperStatus) Reset() { *m = OperStatus{} } |
| 341 | func (m *OperStatus) String() string { return proto.CompactTextString(m) } |
| 342 | func (*OperStatus) ProtoMessage() {} |
| 343 | func (*OperStatus) Descriptor() ([]byte, []int) { |
divyadesai | d11cf31 | 2020-02-26 12:23:31 +0000 | [diff] [blame] | 344 | return fileDescriptor_c2e3fd231961e826, []int{3} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 345 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 346 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 347 | func (m *OperStatus) XXX_Unmarshal(b []byte) error { |
| 348 | return xxx_messageInfo_OperStatus.Unmarshal(m, b) |
| 349 | } |
| 350 | func (m *OperStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 351 | return xxx_messageInfo_OperStatus.Marshal(b, m, deterministic) |
| 352 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 353 | func (m *OperStatus) XXX_Merge(src proto.Message) { |
| 354 | xxx_messageInfo_OperStatus.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 355 | } |
| 356 | func (m *OperStatus) XXX_Size() int { |
| 357 | return xxx_messageInfo_OperStatus.Size(m) |
| 358 | } |
| 359 | func (m *OperStatus) XXX_DiscardUnknown() { |
| 360 | xxx_messageInfo_OperStatus.DiscardUnknown(m) |
| 361 | } |
| 362 | |
| 363 | var xxx_messageInfo_OperStatus proto.InternalMessageInfo |
| 364 | |
| 365 | type ConnectStatus struct { |
| 366 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 367 | XXX_unrecognized []byte `json:"-"` |
| 368 | XXX_sizecache int32 `json:"-"` |
| 369 | } |
| 370 | |
| 371 | func (m *ConnectStatus) Reset() { *m = ConnectStatus{} } |
| 372 | func (m *ConnectStatus) String() string { return proto.CompactTextString(m) } |
| 373 | func (*ConnectStatus) ProtoMessage() {} |
| 374 | func (*ConnectStatus) Descriptor() ([]byte, []int) { |
divyadesai | d11cf31 | 2020-02-26 12:23:31 +0000 | [diff] [blame] | 375 | return fileDescriptor_c2e3fd231961e826, []int{4} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 376 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 377 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 378 | func (m *ConnectStatus) XXX_Unmarshal(b []byte) error { |
| 379 | return xxx_messageInfo_ConnectStatus.Unmarshal(m, b) |
| 380 | } |
| 381 | func (m *ConnectStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 382 | return xxx_messageInfo_ConnectStatus.Marshal(b, m, deterministic) |
| 383 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 384 | func (m *ConnectStatus) XXX_Merge(src proto.Message) { |
| 385 | xxx_messageInfo_ConnectStatus.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 386 | } |
| 387 | func (m *ConnectStatus) XXX_Size() int { |
| 388 | return xxx_messageInfo_ConnectStatus.Size(m) |
| 389 | } |
| 390 | func (m *ConnectStatus) XXX_DiscardUnknown() { |
| 391 | xxx_messageInfo_ConnectStatus.DiscardUnknown(m) |
| 392 | } |
| 393 | |
| 394 | var xxx_messageInfo_ConnectStatus proto.InternalMessageInfo |
| 395 | |
| 396 | type OperationResp struct { |
| 397 | // Return code |
William Kurkian | 12fc0af | 2019-04-18 14:27:45 -0400 | [diff] [blame] | 398 | Code OperationResp_OperationReturnCode `protobuf:"varint,1,opt,name=code,proto3,enum=common.OperationResp_OperationReturnCode" json:"code,omitempty"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 399 | // Additional Info |
| 400 | AdditionalInfo string `protobuf:"bytes,2,opt,name=additional_info,json=additionalInfo,proto3" json:"additional_info,omitempty"` |
| 401 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 402 | XXX_unrecognized []byte `json:"-"` |
| 403 | XXX_sizecache int32 `json:"-"` |
| 404 | } |
| 405 | |
| 406 | func (m *OperationResp) Reset() { *m = OperationResp{} } |
| 407 | func (m *OperationResp) String() string { return proto.CompactTextString(m) } |
| 408 | func (*OperationResp) ProtoMessage() {} |
| 409 | func (*OperationResp) Descriptor() ([]byte, []int) { |
divyadesai | d11cf31 | 2020-02-26 12:23:31 +0000 | [diff] [blame] | 410 | return fileDescriptor_c2e3fd231961e826, []int{5} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 411 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 412 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 413 | func (m *OperationResp) XXX_Unmarshal(b []byte) error { |
| 414 | return xxx_messageInfo_OperationResp.Unmarshal(m, b) |
| 415 | } |
| 416 | func (m *OperationResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 417 | return xxx_messageInfo_OperationResp.Marshal(b, m, deterministic) |
| 418 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 419 | func (m *OperationResp) XXX_Merge(src proto.Message) { |
| 420 | xxx_messageInfo_OperationResp.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 421 | } |
| 422 | func (m *OperationResp) XXX_Size() int { |
| 423 | return xxx_messageInfo_OperationResp.Size(m) |
| 424 | } |
| 425 | func (m *OperationResp) XXX_DiscardUnknown() { |
| 426 | xxx_messageInfo_OperationResp.DiscardUnknown(m) |
| 427 | } |
| 428 | |
| 429 | var xxx_messageInfo_OperationResp proto.InternalMessageInfo |
| 430 | |
| 431 | func (m *OperationResp) GetCode() OperationResp_OperationReturnCode { |
| 432 | if m != nil { |
| 433 | return m.Code |
| 434 | } |
| 435 | return OperationResp_OPERATION_SUCCESS |
| 436 | } |
| 437 | |
| 438 | func (m *OperationResp) GetAdditionalInfo() string { |
| 439 | if m != nil { |
| 440 | return m.AdditionalInfo |
| 441 | } |
| 442 | return "" |
| 443 | } |
| 444 | |
Dinesh Belwalkar | ed6da5e | 2020-02-25 11:23:57 -0800 | [diff] [blame] | 445 | type ValueType struct { |
| 446 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 447 | XXX_unrecognized []byte `json:"-"` |
| 448 | XXX_sizecache int32 `json:"-"` |
| 449 | } |
| 450 | |
| 451 | func (m *ValueType) Reset() { *m = ValueType{} } |
| 452 | func (m *ValueType) String() string { return proto.CompactTextString(m) } |
| 453 | func (*ValueType) ProtoMessage() {} |
| 454 | func (*ValueType) Descriptor() ([]byte, []int) { |
| 455 | return fileDescriptor_c2e3fd231961e826, []int{6} |
| 456 | } |
| 457 | |
| 458 | func (m *ValueType) XXX_Unmarshal(b []byte) error { |
| 459 | return xxx_messageInfo_ValueType.Unmarshal(m, b) |
| 460 | } |
| 461 | func (m *ValueType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 462 | return xxx_messageInfo_ValueType.Marshal(b, m, deterministic) |
| 463 | } |
| 464 | func (m *ValueType) XXX_Merge(src proto.Message) { |
| 465 | xxx_messageInfo_ValueType.Merge(m, src) |
| 466 | } |
| 467 | func (m *ValueType) XXX_Size() int { |
| 468 | return xxx_messageInfo_ValueType.Size(m) |
| 469 | } |
| 470 | func (m *ValueType) XXX_DiscardUnknown() { |
| 471 | xxx_messageInfo_ValueType.DiscardUnknown(m) |
| 472 | } |
| 473 | |
| 474 | var xxx_messageInfo_ValueType proto.InternalMessageInfo |
| 475 | |
| 476 | type ValueSpecifier struct { |
| 477 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 478 | Value ValueType_Type `protobuf:"varint,2,opt,name=value,proto3,enum=common.ValueType_Type" json:"value,omitempty"` |
| 479 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 480 | XXX_unrecognized []byte `json:"-"` |
| 481 | XXX_sizecache int32 `json:"-"` |
| 482 | } |
| 483 | |
| 484 | func (m *ValueSpecifier) Reset() { *m = ValueSpecifier{} } |
| 485 | func (m *ValueSpecifier) String() string { return proto.CompactTextString(m) } |
| 486 | func (*ValueSpecifier) ProtoMessage() {} |
| 487 | func (*ValueSpecifier) Descriptor() ([]byte, []int) { |
| 488 | return fileDescriptor_c2e3fd231961e826, []int{7} |
| 489 | } |
| 490 | |
| 491 | func (m *ValueSpecifier) XXX_Unmarshal(b []byte) error { |
| 492 | return xxx_messageInfo_ValueSpecifier.Unmarshal(m, b) |
| 493 | } |
| 494 | func (m *ValueSpecifier) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 495 | return xxx_messageInfo_ValueSpecifier.Marshal(b, m, deterministic) |
| 496 | } |
| 497 | func (m *ValueSpecifier) XXX_Merge(src proto.Message) { |
| 498 | xxx_messageInfo_ValueSpecifier.Merge(m, src) |
| 499 | } |
| 500 | func (m *ValueSpecifier) XXX_Size() int { |
| 501 | return xxx_messageInfo_ValueSpecifier.Size(m) |
| 502 | } |
| 503 | func (m *ValueSpecifier) XXX_DiscardUnknown() { |
| 504 | xxx_messageInfo_ValueSpecifier.DiscardUnknown(m) |
| 505 | } |
| 506 | |
| 507 | var xxx_messageInfo_ValueSpecifier proto.InternalMessageInfo |
| 508 | |
| 509 | func (m *ValueSpecifier) GetId() string { |
| 510 | if m != nil { |
| 511 | return m.Id |
| 512 | } |
| 513 | return "" |
| 514 | } |
| 515 | |
| 516 | func (m *ValueSpecifier) GetValue() ValueType_Type { |
| 517 | if m != nil { |
| 518 | return m.Value |
| 519 | } |
| 520 | return ValueType_EMPTY |
| 521 | } |
| 522 | |
| 523 | type ReturnValues struct { |
| 524 | Set uint32 `protobuf:"varint,1,opt,name=Set,proto3" json:"Set,omitempty"` |
| 525 | Unsupported uint32 `protobuf:"varint,2,opt,name=Unsupported,proto3" json:"Unsupported,omitempty"` |
| 526 | Error uint32 `protobuf:"varint,3,opt,name=Error,proto3" json:"Error,omitempty"` |
| 527 | Distance uint32 `protobuf:"varint,4,opt,name=Distance,proto3" json:"Distance,omitempty"` |
| 528 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 529 | XXX_unrecognized []byte `json:"-"` |
| 530 | XXX_sizecache int32 `json:"-"` |
| 531 | } |
| 532 | |
| 533 | func (m *ReturnValues) Reset() { *m = ReturnValues{} } |
| 534 | func (m *ReturnValues) String() string { return proto.CompactTextString(m) } |
| 535 | func (*ReturnValues) ProtoMessage() {} |
| 536 | func (*ReturnValues) Descriptor() ([]byte, []int) { |
| 537 | return fileDescriptor_c2e3fd231961e826, []int{8} |
| 538 | } |
| 539 | |
| 540 | func (m *ReturnValues) XXX_Unmarshal(b []byte) error { |
| 541 | return xxx_messageInfo_ReturnValues.Unmarshal(m, b) |
| 542 | } |
| 543 | func (m *ReturnValues) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 544 | return xxx_messageInfo_ReturnValues.Marshal(b, m, deterministic) |
| 545 | } |
| 546 | func (m *ReturnValues) XXX_Merge(src proto.Message) { |
| 547 | xxx_messageInfo_ReturnValues.Merge(m, src) |
| 548 | } |
| 549 | func (m *ReturnValues) XXX_Size() int { |
| 550 | return xxx_messageInfo_ReturnValues.Size(m) |
| 551 | } |
| 552 | func (m *ReturnValues) XXX_DiscardUnknown() { |
| 553 | xxx_messageInfo_ReturnValues.DiscardUnknown(m) |
| 554 | } |
| 555 | |
| 556 | var xxx_messageInfo_ReturnValues proto.InternalMessageInfo |
| 557 | |
| 558 | func (m *ReturnValues) GetSet() uint32 { |
| 559 | if m != nil { |
| 560 | return m.Set |
| 561 | } |
| 562 | return 0 |
| 563 | } |
| 564 | |
| 565 | func (m *ReturnValues) GetUnsupported() uint32 { |
| 566 | if m != nil { |
| 567 | return m.Unsupported |
| 568 | } |
| 569 | return 0 |
| 570 | } |
| 571 | |
| 572 | func (m *ReturnValues) GetError() uint32 { |
| 573 | if m != nil { |
| 574 | return m.Error |
| 575 | } |
| 576 | return 0 |
| 577 | } |
| 578 | |
| 579 | func (m *ReturnValues) GetDistance() uint32 { |
| 580 | if m != nil { |
| 581 | return m.Distance |
| 582 | } |
| 583 | return 0 |
| 584 | } |
| 585 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 586 | func init() { |
William Kurkian | 12fc0af | 2019-04-18 14:27:45 -0400 | [diff] [blame] | 587 | proto.RegisterEnum("common.TestModeKeys", TestModeKeys_name, TestModeKeys_value) |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame] | 588 | proto.RegisterEnum("common.AdminState_Types", AdminState_Types_name, AdminState_Types_value) |
| 589 | proto.RegisterEnum("common.OperStatus_Types", OperStatus_Types_name, OperStatus_Types_value) |
| 590 | proto.RegisterEnum("common.ConnectStatus_Types", ConnectStatus_Types_name, ConnectStatus_Types_value) |
William Kurkian | 12fc0af | 2019-04-18 14:27:45 -0400 | [diff] [blame] | 591 | proto.RegisterEnum("common.OperationResp_OperationReturnCode", OperationResp_OperationReturnCode_name, OperationResp_OperationReturnCode_value) |
Dinesh Belwalkar | ed6da5e | 2020-02-25 11:23:57 -0800 | [diff] [blame] | 592 | proto.RegisterEnum("common.ValueType_Type", ValueType_Type_name, ValueType_Type_value) |
William Kurkian | 12fc0af | 2019-04-18 14:27:45 -0400 | [diff] [blame] | 593 | proto.RegisterType((*ID)(nil), "common.ID") |
| 594 | proto.RegisterType((*IDs)(nil), "common.IDs") |
William Kurkian | 12fc0af | 2019-04-18 14:27:45 -0400 | [diff] [blame] | 595 | proto.RegisterType((*AdminState)(nil), "common.AdminState") |
| 596 | proto.RegisterType((*OperStatus)(nil), "common.OperStatus") |
| 597 | proto.RegisterType((*ConnectStatus)(nil), "common.ConnectStatus") |
| 598 | proto.RegisterType((*OperationResp)(nil), "common.OperationResp") |
Dinesh Belwalkar | ed6da5e | 2020-02-25 11:23:57 -0800 | [diff] [blame] | 599 | proto.RegisterType((*ValueType)(nil), "common.ValueType") |
| 600 | proto.RegisterType((*ValueSpecifier)(nil), "common.ValueSpecifier") |
| 601 | proto.RegisterType((*ReturnValues)(nil), "common.ReturnValues") |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 602 | } |
| 603 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 604 | func init() { proto.RegisterFile("voltha_protos/common.proto", fileDescriptor_c2e3fd231961e826) } |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 605 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 606 | var fileDescriptor_c2e3fd231961e826 = []byte{ |
Himani Chawla | 503b7ce | 2020-10-07 13:20:03 +0530 | [diff] [blame] | 607 | // 614 bytes of a gzipped FileDescriptorProto |
| 608 | 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x53, 0x4f, 0x4f, 0xdb, 0x4e, |
| 609 | 0x10, 0x8d, 0x9d, 0x3f, 0x3f, 0x32, 0x21, 0xc6, 0xbf, 0x05, 0xaa, 0x14, 0x55, 0x6a, 0xe4, 0x0b, |
| 610 | 0xb4, 0xa2, 0x89, 0x04, 0xbd, 0xf6, 0x60, 0xec, 0x2d, 0x5d, 0x01, 0xeb, 0x68, 0x6d, 0x07, 0xd1, |
| 611 | 0x43, 0x23, 0x13, 0x2f, 0xc1, 0x12, 0xf1, 0x5a, 0xf6, 0x06, 0x89, 0x73, 0x3f, 0x64, 0xbf, 0x4e, |
| 612 | 0xb5, 0xeb, 0xf0, 0xaf, 0xe2, 0x62, 0xfb, 0xcd, 0x7b, 0x3b, 0x33, 0x6f, 0xc6, 0x0b, 0x7b, 0xf7, |
| 613 | 0xe2, 0x4e, 0xde, 0x26, 0xb3, 0xa2, 0x14, 0x52, 0x54, 0xe3, 0xb9, 0x58, 0x2e, 0x45, 0x3e, 0xd2, |
| 614 | 0x08, 0x75, 0x6a, 0xe4, 0xec, 0x80, 0x49, 0x7c, 0x64, 0x81, 0x99, 0xa5, 0x03, 0x63, 0x68, 0x1c, |
| 615 | 0x74, 0x99, 0x99, 0xa5, 0xce, 0x3e, 0x34, 0x89, 0x5f, 0xa1, 0x21, 0xb4, 0x33, 0xc9, 0x97, 0xd5, |
| 616 | 0xc0, 0x18, 0x36, 0x0f, 0x7a, 0x47, 0x30, 0x5a, 0xa7, 0x20, 0x3e, 0xab, 0x09, 0xe7, 0xb7, 0x01, |
| 617 | 0xe0, 0xa6, 0xcb, 0x2c, 0x0f, 0x65, 0x22, 0xb9, 0xb3, 0x82, 0x76, 0xf4, 0x50, 0xf0, 0x0a, 0xf5, |
| 618 | 0xe0, 0xbf, 0x98, 0x9e, 0xd1, 0xe0, 0x92, 0xda, 0x0d, 0x84, 0xc0, 0x9a, 0x30, 0x3c, 0x61, 0xc1, |
| 619 | 0x94, 0x84, 0x24, 0xa0, 0xd8, 0xb7, 0x0d, 0x25, 0xc0, 0xd4, 0x3d, 0x39, 0xc7, 0xbe, 0x6d, 0xa2, |
| 620 | 0x4d, 0xd8, 0xf0, 0x49, 0x58, 0xa3, 0x26, 0xda, 0x85, 0xff, 0xfd, 0xe0, 0x92, 0x9e, 0x07, 0xae, |
| 621 | 0x4f, 0xe8, 0xe9, 0x8c, 0x5c, 0xb8, 0xa7, 0xd8, 0x6e, 0xa9, 0x13, 0x3e, 0x3e, 0xc7, 0x11, 0xf6, |
| 622 | 0xed, 0xb6, 0x3e, 0xa1, 0x00, 0xa1, 0xa7, 0x76, 0xc7, 0x59, 0x00, 0x04, 0x05, 0x2f, 0x55, 0x0f, |
| 623 | 0xab, 0xca, 0xb9, 0x7a, 0xb3, 0x09, 0x0b, 0xc0, 0x27, 0xa1, 0x17, 0x4c, 0x31, 0xd3, 0x0d, 0x58, |
| 624 | 0x00, 0xae, 0x17, 0x91, 0xa9, 0xab, 0x73, 0x98, 0x4a, 0x1c, 0xe1, 0x50, 0x83, 0x26, 0x02, 0xe8, |
| 625 | 0x68, 0x52, 0xd5, 0x05, 0xe8, 0x7c, 0x77, 0x89, 0x6a, 0xad, 0xed, 0x60, 0xe8, 0x7b, 0x22, 0xcf, |
| 626 | 0xf9, 0x5c, 0xae, 0x6b, 0x7d, 0x7d, 0xb3, 0xd6, 0x16, 0xf4, 0x62, 0xca, 0xb0, 0xeb, 0xfd, 0x50, |
| 627 | 0x9e, 0x6c, 0x03, 0xf5, 0xa1, 0xfb, 0x0c, 0x4d, 0xe7, 0x8f, 0x01, 0x7d, 0xd5, 0x70, 0x22, 0x33, |
| 628 | 0x91, 0x33, 0x5e, 0x15, 0xe8, 0x1b, 0xb4, 0xe6, 0x22, 0xe5, 0x7a, 0x05, 0xd6, 0xd1, 0xa7, 0xc7, |
| 629 | 0x41, 0xbf, 0x12, 0xbd, 0x44, 0x72, 0x55, 0xe6, 0x9e, 0x48, 0x39, 0xd3, 0xc7, 0xd0, 0x3e, 0x6c, |
| 630 | 0x25, 0x69, 0x9a, 0x29, 0x2e, 0xb9, 0x9b, 0x65, 0xf9, 0x8d, 0x18, 0x98, 0x7a, 0x99, 0xd6, 0x73, |
| 631 | 0x98, 0xe4, 0x37, 0xc2, 0xf9, 0x05, 0xdb, 0x6f, 0x64, 0x51, 0x23, 0x0f, 0x26, 0x98, 0xb9, 0x11, |
| 632 | 0x09, 0xe8, 0x2c, 0x8c, 0x3d, 0x0f, 0x87, 0xa1, 0xdd, 0x78, 0x1d, 0x56, 0x43, 0x88, 0x99, 0x72, |
| 633 | 0xf3, 0x1e, 0x76, 0x9f, 0xc3, 0x31, 0x0d, 0xe3, 0xc9, 0x24, 0x60, 0x6a, 0x2f, 0xa6, 0x73, 0x08, |
| 634 | 0xdd, 0x69, 0x72, 0xb7, 0xe2, 0x6a, 0x28, 0xce, 0x47, 0x68, 0xa9, 0x37, 0xea, 0x42, 0x1b, 0x5f, |
| 635 | 0x4c, 0xa2, 0x2b, 0xbb, 0xb1, 0xde, 0x74, 0xe4, 0x52, 0x0f, 0xdb, 0x86, 0x43, 0xc1, 0xd2, 0xea, |
| 636 | 0xb0, 0xe0, 0xf3, 0xec, 0x26, 0xe3, 0xe5, 0xbf, 0x3f, 0x22, 0x3a, 0x84, 0xf6, 0xbd, 0x52, 0x68, |
| 637 | 0x3b, 0xd6, 0xd1, 0xbb, 0xc7, 0xc1, 0x3c, 0x15, 0x19, 0xa9, 0x07, 0xab, 0x45, 0x8e, 0x84, 0xcd, |
| 638 | 0xda, 0x94, 0xa6, 0x2b, 0x64, 0x43, 0x33, 0xe4, 0x52, 0xa7, 0xeb, 0x33, 0xf5, 0x89, 0x86, 0xd0, |
| 639 | 0x8b, 0xf3, 0x6a, 0x55, 0x14, 0xa2, 0x94, 0x3c, 0xd5, 0x59, 0xfb, 0xec, 0x65, 0x08, 0xed, 0x40, |
| 640 | 0x1b, 0x97, 0xa5, 0x28, 0x07, 0x4d, 0xcd, 0xd5, 0x00, 0xed, 0xc1, 0x86, 0x9f, 0x55, 0x32, 0xc9, |
| 641 | 0xe7, 0x7c, 0xd0, 0xd2, 0xc4, 0x13, 0xfe, 0xfc, 0x01, 0x36, 0x23, 0x5e, 0xc9, 0x0b, 0x91, 0xf2, |
| 642 | 0x33, 0xfe, 0x50, 0x29, 0x8f, 0x49, 0x91, 0xcd, 0x24, 0xaf, 0xa4, 0xdd, 0x38, 0xc1, 0xb0, 0x2d, |
| 643 | 0xca, 0xc5, 0x48, 0x14, 0x3c, 0x9f, 0x8b, 0x32, 0x1d, 0xd5, 0x77, 0xf2, 0xe7, 0x68, 0x91, 0xc9, |
| 644 | 0xdb, 0xd5, 0xb5, 0xf2, 0x33, 0x7e, 0xe4, 0xc6, 0x35, 0xf7, 0x65, 0x7d, 0x5f, 0xef, 0x8f, 0xc7, |
| 645 | 0x0b, 0xb1, 0xbe, 0xb5, 0xd7, 0x1d, 0x1d, 0x3c, 0xfe, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x7d, 0x48, |
| 646 | 0xb2, 0xfa, 0xd4, 0x03, 0x00, 0x00, |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 647 | } |