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