VOL-4200 suport reset of extended pm counters VOL-4270 fetching counters per uni
Change-Id: Icd1c507368e4097b03a34231d47f62218a790a16
diff --git a/VERSION b/VERSION
index 9a36b17..13097ab 100755
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.0.3-dev239
+2.0.3-dev240
diff --git a/go.mod b/go.mod
index ae7e2e8..a2c56f6 100644
--- a/go.mod
+++ b/go.mod
@@ -17,7 +17,7 @@
github.com/looplab/fsm v0.2.0
github.com/opencord/omci-lib-go v1.3.3
github.com/opencord/voltha-lib-go/v7 v7.0.4
- github.com/opencord/voltha-protos/v5 v5.0.1
+ github.com/opencord/voltha-protos/v5 v5.0.2
github.com/stretchr/testify v1.7.0
google.golang.org/grpc v1.41.0
)
diff --git a/go.sum b/go.sum
index e30b4f3..4a0c1ea 100644
--- a/go.sum
+++ b/go.sum
@@ -196,8 +196,8 @@
github.com/opencord/voltha-lib-go/v7 v7.0.4 h1:nVVRkEZyfEkGYewfgmO3NzIAIVdm8G/vVyEaCUwYW6g=
github.com/opencord/voltha-lib-go/v7 v7.0.4/go.mod h1:iZueJRS4XJ3rpm3iy0Zdnhz1lG5bWx2pZoPormwgUKk=
github.com/opencord/voltha-protos/v5 v5.0.0/go.mod h1:uVKXQB499Ir6G+rc47dSThNja1S4Vy3h9JLSDuJGmzI=
-github.com/opencord/voltha-protos/v5 v5.0.1 h1:mHpCEqPy0CRMn4plrZ2XAktn8P6UGWkWIQoCUJa6+PE=
-github.com/opencord/voltha-protos/v5 v5.0.1/go.mod h1:uVKXQB499Ir6G+rc47dSThNja1S4Vy3h9JLSDuJGmzI=
+github.com/opencord/voltha-protos/v5 v5.0.2 h1:PSBmQr3RYIWXCsEaIEkw6BYC/ltGWt8v/NJ4Nz+3CcU=
+github.com/opencord/voltha-protos/v5 v5.0.2/go.mod h1:uVKXQB499Ir6G+rc47dSThNja1S4Vy3h9JLSDuJGmzI=
github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=
github.com/opentracing/opentracing-go v1.2.0 h1:uEJPy/1a5RIPAJ0Ov+OIO8OxWu77jEv+1B0VhjKrZUs=
github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYrxe9dPLANfrWvHYVTgc=
diff --git a/internal/pkg/common/omci_cc.go b/internal/pkg/common/omci_cc.go
index d643a9b..9224d61 100755
--- a/internal/pkg/common/omci_cc.go
+++ b/internal/pkg/common/omci_cc.go
@@ -4609,3 +4609,53 @@
func (oo *OmciCC) SetChMonitoredRequest(omciTransID uint16, chVal bool) {
oo.monitoredRequests[omciTransID].chSuccess <- chVal
}
+
+// SendSetEthernetFrameExtendedPMME sends the set request for ethernet frame extended type me
+func (oo *OmciCC) SendSetEthernetFrameExtendedPMME(ctx context.Context, timeout int, highPrio bool,
+ rxChan chan Message, entityID uint16, classID me.ClassID, controlBlock []uint16) (*me.ManagedEntity, error) {
+ tid := oo.GetNextTid(highPrio)
+ logger.Debugw(ctx, "send-set-ethernet-frame-extended-pm-me-control-block:", log.Fields{"device-id": oo.deviceID,
+ "SequNo": strconv.FormatInt(int64(tid), 16), "InstId": strconv.FormatInt(int64(entityID), 16)})
+
+ meParams := me.ParamData{EntityID: entityID,
+ Attributes: me.AttributeValueMap{"ControlBlock": controlBlock},
+ }
+ var meInstance *me.ManagedEntity
+ var omciErr me.OmciErrors
+ if classID == me.EthernetFrameExtendedPmClassID {
+ meInstance, omciErr = me.NewEthernetFrameExtendedPm(meParams)
+ } else {
+ meInstance, omciErr = me.NewEthernetFrameExtendedPm64Bit(meParams)
+ }
+
+ if omciErr.GetError() == nil {
+ omciLayer, msgLayer, err := omci.EncodeFrame(meInstance, omci.SetRequestType, omci.TransactionID(tid))
+ if err != nil {
+ logger.Errorw(ctx, "cannot-encode-ethernet-frame-extended-pm-me",
+ log.Fields{"err": err, "device-id": oo.deviceID, "inst-id": strconv.FormatInt(int64(entityID), 16)})
+ return nil, err
+ }
+ pkt, err := serializeOmciLayer(ctx, omciLayer, msgLayer)
+ if err != nil {
+ logger.Errorw(ctx, "cannot-serialize-ethernet-frame-extended-pm-me-set-msg",
+ log.Fields{"err": err, "device-id": oo.deviceID, "inst-id": strconv.FormatInt(int64(entityID), 16)})
+ return nil, err
+ }
+ omciRxCallbackPair := CallbackPair{
+ CbKey: tid,
+ CbEntry: CallbackPairEntry{rxChan, oo.receiveOmciResponse, true},
+ }
+ err = oo.Send(ctx, pkt, timeout, CDefaultRetries, highPrio, omciRxCallbackPair)
+ if err != nil {
+ logger.Errorw(ctx, "Cannot send ethernet-frame-extended-pm-me",
+ log.Fields{"Err": err, "device-id": oo.deviceID, "inst-id": strconv.FormatInt(int64(entityID), 16)})
+ return nil, err
+ }
+ logger.Debugw(ctx, "send-ethernet-frame-extended-pm-me-set-msg-done",
+ log.Fields{"device-id": oo.deviceID, "inst-id": strconv.FormatInt(int64(entityID), 16)})
+ return meInstance, nil
+ }
+ logger.Errorw(ctx, "cannot-generate-ethernet-frame-extended-pm-me-instance",
+ log.Fields{"Err": omciErr.GetError(), "device-id": oo.deviceID, "inst-id": strconv.FormatInt(int64(entityID), 16)})
+ return nil, omciErr.GetError()
+}
diff --git a/internal/pkg/core/device_handler.go b/internal/pkg/core/device_handler.go
index a6bba99..41a8771 100755
--- a/internal/pkg/core/device_handler.go
+++ b/internal/pkg/core/device_handler.go
@@ -3600,7 +3600,7 @@
},
}
}
- resp := dh.pOnuMetricsMgr.CollectEthernetFrameExtendedPMCounters(ctx)
+ resp := dh.pOnuMetricsMgr.CollectEthernetFrameExtendedPMCounters(ctx, onuInfo)
return resp
}
diff --git a/internal/pkg/pmmgr/onu_metrics_manager.go b/internal/pkg/pmmgr/onu_metrics_manager.go
index 95fcd60..f1abbe4 100755
--- a/internal/pkg/pmmgr/onu_metrics_manager.go
+++ b/internal/pkg/pmmgr/onu_metrics_manager.go
@@ -301,13 +301,13 @@
pOnuDeviceEntry cmn.IonuDeviceEntry
PAdaptFsm *cmn.AdapterFsm
- opticalMetricsChan chan me.AttributeValueMap
- uniStatusMetricsChan chan me.AttributeValueMap
- l2PmChan chan me.AttributeValueMap
- extendedPmMeChan chan me.AttributeValueMap
- syncTimeResponseChan chan bool // true is success, false is fail
- l2PmCreateOrDeleteResponseChan chan bool // true is success, false is fail
- extendedPMCreateOrDeleteResponseChan chan me.Results // true is sucesss, false is fail
+ opticalMetricsChan chan me.AttributeValueMap
+ uniStatusMetricsChan chan me.AttributeValueMap
+ l2PmChan chan me.AttributeValueMap
+ extendedPmMeChan chan me.AttributeValueMap
+ syncTimeResponseChan chan bool // true is success, false is fail
+ l2PmCreateOrDeleteResponseChan chan bool // true is success, false is fail
+ extendedPMMeResponseChan chan me.Results // true is sucesss, false is fail
activeL2Pms []string // list of active l2 pm MEs created on the ONU.
l2PmToDelete []string // list of L2 PMs to delete
@@ -334,6 +334,7 @@
extPmKvStore *db.Backend
onuEthernetFrameExtendedPmLock sync.RWMutex
isDeviceReadyToCollectExtendedPmStats bool
+ isEthernetFrameExtendedPmOperationOngoing bool
}
// NewOnuMetricsManager returns a new instance of the NewOnuMetricsManager
@@ -359,7 +360,7 @@
metricsManager.syncTimeResponseChan = make(chan bool)
metricsManager.l2PmCreateOrDeleteResponseChan = make(chan bool)
- metricsManager.extendedPMCreateOrDeleteResponseChan = make(chan me.Results)
+ metricsManager.extendedPMMeResponseChan = make(chan me.Results)
metricsManager.StopProcessingOmciResponses = make(chan bool)
metricsManager.StopTicks = make(chan bool)
@@ -1078,6 +1079,8 @@
_ = mm.handleOmciDeleteResponseMessage(ctx, msg)
case omci.GetCurrentDataResponseType:
_ = mm.handleOmciGetCurrentDataResponseMessage(ctx, msg)
+ case omci.SetResponseType:
+ _ = mm.handleOmciSetResponseMessage(ctx, msg)
default:
logger.Warnw(ctx, "Unknown Message Type", log.Fields{"msgType": msg.OmciMsg.MessageType})
@@ -1211,6 +1214,30 @@
return fmt.Errorf("unhandled-omci-synchronize-time-response-message--error-code-%v", msgObj.Result)
}
+func (mm *OnuMetricsManager) handleOmciSetResponseMessage(ctx context.Context, msg cmn.OmciMessage) error {
+ msgLayer := (*msg.OmciPacket).Layer(omci.LayerTypeSetResponse)
+ if msgLayer == nil {
+ logger.Errorw(ctx, "omci Msg layer could not be detected for SetResponse - handling stopped", log.Fields{"device-id": mm.deviceID})
+ return fmt.Errorf("omci Msg layer could not be detected for SetResponse - handling stopped: %s", mm.deviceID)
+ }
+ msgObj, msgOk := msgLayer.(*omci.SetResponse)
+ if !msgOk {
+ logger.Errorw(ctx, "omci Msg layer could not be assigned for SetResponse - handling stopped", log.Fields{"device-id": mm.deviceID})
+ return fmt.Errorf("omci Msg layer could not be assigned for SetResponse - handling stopped: %s", mm.deviceID)
+ }
+ logger.Debugw(ctx, "OMCI SetResponse Data", log.Fields{"device-id": mm.deviceID, "data-fields": msgObj, "result": msgObj.Result})
+ switch msgObj.EntityClass {
+ case me.EthernetFrameExtendedPmClassID,
+ me.EthernetFrameExtendedPm64BitClassID:
+ mm.extendedPMMeResponseChan <- msgObj.Result
+ return nil
+ default:
+ logger.Errorw(ctx, "unhandled omci set response message",
+ log.Fields{"device-id": mm.deviceID, "class-id": msgObj.EntityClass})
+ }
+ return fmt.Errorf("unhandled-omci-set-response-message-%v", mm.deviceID)
+}
+
// flushMetricCollectionChannels flushes all metric collection channels for any stale OMCI responses
func (mm *OnuMetricsManager) flushMetricCollectionChannels(ctx context.Context) {
// flush commMetricsChan
@@ -2333,7 +2360,7 @@
return nil
case me.EthernetFrameExtendedPmClassID,
me.EthernetFrameExtendedPm64BitClassID:
- mm.extendedPMCreateOrDeleteResponseChan <- msgObj.Result
+ mm.extendedPMMeResponseChan <- msgObj.Result
return nil
default:
logger.Errorw(ctx, "unhandled omci create response message",
@@ -3011,7 +3038,7 @@
func (mm *OnuMetricsManager) waitForEthernetFrameCreateOrDeleteResponseOrTimeout(ctx context.Context, create bool, instID uint16, meClassID me.ClassID, upstream bool) (bool, error) {
logger.Debugw(ctx, "wait-for-ethernet-frame-create-or-delete-response-or-timeout", log.Fields{"create": create, "instID": instID, "meClassID": meClassID})
select {
- case resp := <-mm.extendedPMCreateOrDeleteResponseChan:
+ case resp := <-mm.extendedPMMeResponseChan:
logger.Debugw(ctx, "received-extended-pm-me-response",
log.Fields{"device-id": mm.deviceID, "resp": resp, "create": create, "meClassID": meClassID, "instID": instID, "upstream": upstream})
// If the result is me.InstanceExists it means the entity was already created. It is ok handled that as success
@@ -3042,9 +3069,9 @@
} else {
entityID = uniPort.EntityID
}
-
+ logger.Debugw(ctx, "try-creating-extended-pm-me", log.Fields{"device-id": mm.deviceID, "entityID": entityID})
// parent entity id will be same for both direction
- controlBlock := mm.getControlBlockForExtendedPMDirection(ctx, direction, uniPort.EntityID)
+ controlBlock := mm.getControlBlockForExtendedPMDirection(ctx, direction, uniPort.EntityID, false)
inner1:
// retry ExtendedPmCreateAttempts times to create the instance of PM
@@ -3057,7 +3084,8 @@
log.Fields{"device-id": mm.deviceID})
return false, err
}
- if supported, err := mm.waitForEthernetFrameCreateOrDeleteResponseOrTimeout(ctx, true, entityID, meType, direction); err == nil && supported {
+ if supported, err := mm.waitForEthernetFrameCreateOrDeleteResponseOrTimeout(ctx, true, entityID,
+ meType, direction); err == nil && supported {
if direction {
mm.ethernetFrameExtendedPmUpStreamMEByEntityID[entityID] = meEnt
} else {
@@ -3104,7 +3132,7 @@
mm.onuEthernetFrameExtendedPmLock.Unlock()
}
-// CreateEthernetFrameExtendedPMME - TODO: add comment
+// CreateEthernetFrameExtendedPMME - This method tries to create the possible me type for extended pms
func (mm *OnuMetricsManager) CreateEthernetFrameExtendedPMME(ctx context.Context) {
//get the type of extended frame pm me supported by onu first
exist, err := mm.getEthernetFrameExtendedMETypeFromKvStore(ctx)
@@ -3145,9 +3173,105 @@
}
}
-// CollectEthernetFrameExtendedPMCounters - TODO: add comment
-func (mm *OnuMetricsManager) CollectEthernetFrameExtendedPMCounters(ctx context.Context) *extension.SingleGetValueResponse {
- errFunc := func(reason extension.GetValueResponse_ErrorReason) *extension.SingleGetValueResponse {
+func (mm *OnuMetricsManager) setControlBlockResetFlagForEthernetExtendedPMME(ctx context.Context, upstream bool,
+ entityID uint16, meName string, reset bool) (extension.GetValueResponse_ErrorReason, error) {
+ uniPortEntityID := entityID
+ if upstream {
+ uniPortEntityID = entityID - 0x100
+ }
+ controlBlock := mm.getControlBlockForExtendedPMDirection(ctx, upstream, uniPortEntityID, reset)
+ _, err := mm.pOnuDeviceEntry.GetDevOmciCC().SendSetEthernetFrameExtendedPMME(ctx,
+ mm.pDeviceHandler.GetOmciTimeout(), true,
+ mm.PAdaptFsm.CommChan, entityID, mm.supportedEthernetFrameExtendedPMClass, controlBlock)
+ if err != nil {
+ logger.Errorw(ctx, "EthernetFrameExtendedPMME-set-reset-bit-failed",
+ log.Fields{"device-id": mm.deviceID})
+ return extension.GetValueResponse_INTERNAL_ERROR, err
+ }
+
+ if resp := mm.waitForResetResponseOrTimeout(ctx, entityID, meName); resp {
+ return extension.GetValueResponse_REASON_UNDEFINED, nil
+ }
+ return extension.GetValueResponse_INTERNAL_ERROR, fmt.Errorf("unable-to-reset-pm-counters")
+}
+
+func (mm *OnuMetricsManager) waitForResetResponseOrTimeout(ctx context.Context, instID uint16, meClassName string) bool {
+ logger.Debugw(ctx, "wait-for-ethernet-frame-reset-counters-response-or-timeout", log.Fields{"instID": instID, "meClassName": meClassName})
+ select {
+ case resp := <-mm.extendedPMMeResponseChan:
+ logger.Debugw(ctx, "received-extended-pm-me-reset-response",
+ log.Fields{"device-id": mm.deviceID, "resp": resp, "meClassName": meClassName, "instID": instID})
+ if resp == me.Success {
+ return true
+ }
+ return false
+ case <-time.After(mm.pOnuDeviceEntry.GetDevOmciCC().GetMaxOmciTimeoutWithRetries() * time.Second):
+ logger.Errorw(ctx, "timeout-waiting-for-ext-pm-me-reset-response",
+ log.Fields{"device-id": mm.deviceID, "resp": false, "meClassName": meClassName, "instID": instID})
+ }
+ return false
+}
+
+func (mm *OnuMetricsManager) resetEthernetFrameExtendedPMCounters(ctx context.Context,
+ upstreamEntityMap map[uint16]*me.ManagedEntity, downstreamEntityMap map[uint16]*me.ManagedEntity) (extension.GetValueResponse_ErrorReason, error) {
+ className := "EthernetFrameExtendedPm64Bit"
+ if mm.supportedEthernetFrameExtendedPMClass == me.EthernetFrameExtendedPmClassID {
+ className = "EthernetFrameExtendedPm"
+ }
+ // Reset the counters if option is specified
+ for entityID := range upstreamEntityMap {
+ errReason, err := mm.setControlBlockResetFlagForEthernetExtendedPMME(ctx, true, entityID, className,
+ true)
+ if err != nil {
+ return errReason, err
+ }
+ }
+
+ for entityID := range downstreamEntityMap {
+ errReason, err := mm.setControlBlockResetFlagForEthernetExtendedPMME(ctx, false, entityID, className,
+ true)
+ if err != nil {
+ return errReason, err
+ }
+ }
+ // This is currently done as a workaround for sercomm glasfaser onu as the reset bit is not getting cleared by the
+ // device itself.
+ // Unset the reset bit if option is specified
+ for entityID := range upstreamEntityMap {
+ errReason, err := mm.setControlBlockResetFlagForEthernetExtendedPMME(ctx, true, entityID, className,
+ false)
+ if err != nil {
+ return errReason, err
+ }
+ }
+
+ for entityID := range downstreamEntityMap {
+ errReason, err := mm.setControlBlockResetFlagForEthernetExtendedPMME(ctx, false, entityID, className,
+ false)
+ if err != nil {
+ return errReason, err
+ }
+ }
+ return extension.GetValueResponse_REASON_UNDEFINED, nil
+}
+
+func (mm *OnuMetricsManager) setEthernetFrameExtendedPmCounterOperationFlag(val bool) {
+ mm.onuEthernetFrameExtendedPmLock.Lock()
+ defer mm.onuEthernetFrameExtendedPmLock.Unlock()
+ mm.isEthernetFrameExtendedPmOperationOngoing = val
+}
+
+func (mm *OnuMetricsManager) getEthernetFrameExtendedPmCounterOperationFlag() bool {
+ mm.onuEthernetFrameExtendedPmLock.Lock()
+ defer mm.onuEthernetFrameExtendedPmLock.Unlock()
+ return mm.isEthernetFrameExtendedPmOperationOngoing
+}
+
+// CollectEthernetFrameExtendedPMCounters - This method collects the ethernet frame extended pm counters from the device
+func (mm *OnuMetricsManager) CollectEthernetFrameExtendedPMCounters(ctx context.Context,
+ onuInfo *extension.GetOmciEthernetFrameExtendedPmRequest) *extension.SingleGetValueResponse {
+ errFunc := func(reason extension.GetValueResponse_ErrorReason, err string) *extension.SingleGetValueResponse {
+ logger.Error(ctx, err)
return &extension.SingleGetValueResponse{
Response: &extension.GetValueResponse{
Status: extension.GetValueResponse_ERROR,
@@ -3158,9 +3282,54 @@
mm.onuEthernetFrameExtendedPmLock.RLock()
if !mm.isDeviceReadyToCollectExtendedPmStats {
mm.onuEthernetFrameExtendedPmLock.RUnlock()
- return errFunc(extension.GetValueResponse_INTERNAL_ERROR)
+ return errFunc(extension.GetValueResponse_INTERNAL_ERROR, fmt.Sprintf("onu-%v-not-ready-to-collect-stats", mm.deviceID))
}
mm.onuEthernetFrameExtendedPmLock.RUnlock()
+
+ if mm.getEthernetFrameExtendedPmCounterOperationFlag() {
+ return errFunc(extension.GetValueResponse_INTERNAL_ERROR,
+ fmt.Sprintf("extended-pm-reset-or-get-operation-is-still-going-on-for-onu-%v", mm.deviceID))
+ }
+ mm.setEthernetFrameExtendedPmCounterOperationFlag(true)
+ defer mm.setEthernetFrameExtendedPmCounterOperationFlag(false)
+
+ upstreamEntityMap := make(map[uint16]*me.ManagedEntity)
+ downstreamEntityMap := make(map[uint16]*me.ManagedEntity)
+ if onuInfo.IsUniIndex != nil {
+ for _, uniPort := range *mm.pDeviceHandler.GetUniEntityMap() {
+ if uniPort.UniID == uint8(onuInfo.GetUniIndex()) {
+ logger.Debugw(ctx, "mapped-uni-index-to-uni-port", log.Fields{"device-id": mm.deviceID, "uni-index": onuInfo.GetUniIndex()})
+ upstreamEntityMap[uniPort.EntityID+0x100] = mm.ethernetFrameExtendedPmUpStreamMEByEntityID[uniPort.EntityID+0x100]
+ downstreamEntityMap[uniPort.EntityID] = mm.ethernetFrameExtendedPmDownStreamMEByEntityID[uniPort.EntityID]
+ break
+ }
+ }
+ if len(downstreamEntityMap) == 0 {
+ logger.Errorw(ctx, "invalid-uni-index-provided-while-fetching-the-extended-pm",
+ log.Fields{"device-id": mm.deviceID, "uni-index": onuInfo.GetUniIndex()})
+ return errFunc(extension.GetValueResponse_INVALID_REQ_TYPE,
+ fmt.Sprintf("onu-%s-invalid-uni-%v", mm.deviceID, onuInfo.GetUniIndex()))
+ }
+ } else {
+ // make a copy of all downstream and upstream maps in the local ones
+ for entityID, meEnt := range mm.ethernetFrameExtendedPmUpStreamMEByEntityID {
+ upstreamEntityMap[entityID] = meEnt
+ }
+ for entityID, meEnt := range mm.ethernetFrameExtendedPmDownStreamMEByEntityID {
+ downstreamEntityMap[entityID] = meEnt
+ }
+ }
+ logger.Debugw(ctx, "extended-pm-collection-me-count", log.Fields{"device-id": mm.deviceID,
+ "count": len(upstreamEntityMap) + len(downstreamEntityMap)})
+ // Reset the metrics first for all required me's
+ if onuInfo.Reset_ {
+ errReason, err := mm.resetEthernetFrameExtendedPMCounters(ctx, upstreamEntityMap, downstreamEntityMap)
+ if err != nil {
+ logger.Errorw(ctx, "unable-to-reset-ethernet-frame-extended-pm-counters",
+ log.Fields{"device-id": mm.deviceID})
+ return errFunc(errReason, fmt.Sprintf("%v", err.Error()))
+ }
+ }
// Collect metrics for upstream for all the PM Mes per uni port and aggregate
var pmUpstream extension.OmciEthernetFrameExtendedPm
var pmDownstream extension.OmciEthernetFrameExtendedPm
@@ -3168,41 +3337,45 @@
if mm.supportedEthernetFrameExtendedPMClass == me.EthernetFrameExtendedPmClassID {
counterFormat = extension.GetOmciEthernetFrameExtendedPmResponse_THIRTY_TWO_BIT
}
- for entityID, meEnt := range mm.ethernetFrameExtendedPmUpStreamMEByEntityID {
- var receivedMask uint16
- if metricInfo, errResp := mm.collectEthernetFrameExtendedPMData(ctx, meEnt, entityID, true, &receivedMask); metricInfo != nil { // upstream
- if receivedMask == 0 {
- pmUpstream = mm.aggregateEthernetFrameExtendedPM(metricInfo, pmUpstream, false)
- logger.Error(ctx, "all-the-attributes-of-ethernet-frame-extended-pm-counters-are-unsupported")
- pmDownstream = pmUpstream
- singleValResp := extension.SingleGetValueResponse{
- Response: &extension.GetValueResponse{
- Status: extension.GetValueResponse_OK,
- Response: &extension.GetValueResponse_OnuCounters{
- OnuCounters: &extension.GetOmciEthernetFrameExtendedPmResponse{
- Upstream: &pmUpstream,
- Downstream: &pmDownstream,
- OmciEthernetFrameExtendedPmFormat: counterFormat,
+ if !onuInfo.Reset_ {
+ for entityID, meEnt := range upstreamEntityMap {
+ logger.Debugw(ctx, "collect-upstream-pm-counters-for-entity-id", log.Fields{"device-id": mm.deviceID, "entityID": entityID})
+ var receivedMask uint16
+ if metricInfo, errResp, err := mm.collectEthernetFrameExtendedPMData(ctx, meEnt, entityID, true, &receivedMask); metricInfo != nil { // upstream
+ if receivedMask == 0 {
+ pmUpstream = mm.aggregateEthernetFrameExtendedPM(metricInfo, pmUpstream, false)
+ logger.Error(ctx, "all-the-attributes-of-ethernet-frame-extended-pm-counters-are-unsupported")
+ pmDownstream = pmUpstream
+ singleValResp := extension.SingleGetValueResponse{
+ Response: &extension.GetValueResponse{
+ Status: extension.GetValueResponse_OK,
+ Response: &extension.GetValueResponse_OnuCounters{
+ OnuCounters: &extension.GetOmciEthernetFrameExtendedPmResponse{
+ Upstream: &pmUpstream,
+ Downstream: &pmDownstream,
+ OmciEthernetFrameExtendedPmFormat: counterFormat,
+ },
},
},
- },
+ }
+ return &singleValResp
}
- return &singleValResp
+ // Aggregate the result for upstream
+ pmUpstream = mm.aggregateEthernetFrameExtendedPM(metricInfo, pmUpstream, true)
+ } else {
+ return errFunc(errResp, fmt.Sprintf("%v", err.Error()))
}
- // Aggregate the result for upstream
- pmUpstream = mm.aggregateEthernetFrameExtendedPM(metricInfo, pmUpstream, true)
- } else {
- return errFunc(errResp)
}
- }
- for entityID, meEnt := range mm.ethernetFrameExtendedPmDownStreamMEByEntityID {
- var receivedMask uint16
- if metricInfo, errResp := mm.collectEthernetFrameExtendedPMData(ctx, meEnt, entityID, false, &receivedMask); metricInfo != nil { // downstream
- // Aggregate the result for downstream
- pmDownstream = mm.aggregateEthernetFrameExtendedPM(metricInfo, pmDownstream, true)
- } else {
- return errFunc(errResp)
+ for entityID, meEnt := range downstreamEntityMap {
+ logger.Debugw(ctx, "collect-downstream-pm-counters-for-entity-id", log.Fields{"device-id": mm.deviceID, "entityID": entityID})
+ var receivedMask uint16
+ if metricInfo, errResp, err := mm.collectEthernetFrameExtendedPMData(ctx, meEnt, entityID, false, &receivedMask); metricInfo != nil { // downstream
+ // Aggregate the result for downstream
+ pmDownstream = mm.aggregateEthernetFrameExtendedPM(metricInfo, pmDownstream, true)
+ } else {
+ return errFunc(errResp, fmt.Sprintf("%v", err.Error()))
+ }
}
}
singleValResp := extension.SingleGetValueResponse{
@@ -3220,7 +3393,7 @@
return &singleValResp
}
-func (mm *OnuMetricsManager) collectEthernetFrameExtendedPMData(ctx context.Context, meEnt *me.ManagedEntity, entityID uint16, upstream bool, receivedMask *uint16) (map[string]uint64, extension.GetValueResponse_ErrorReason) {
+func (mm *OnuMetricsManager) collectEthernetFrameExtendedPMData(ctx context.Context, meEnt *me.ManagedEntity, entityID uint16, upstream bool, receivedMask *uint16) (map[string]uint64, extension.GetValueResponse_ErrorReason, error) {
var classID me.ClassID
logger.Debugw(ctx, "collecting-data-for-ethernet-frame-extended-pm", log.Fields{"device-id": mm.deviceID, "entityID": entityID, "upstream": upstream})
@@ -3235,7 +3408,7 @@
if errResp, err := mm.populateEthernetFrameExtendedPMMetrics(ctx, classID, entityID, mask, ethPMData, upstream, &sumReceivedMask); err != nil {
logger.Errorw(ctx, "error-during-metric-collection",
log.Fields{"device-id": mm.deviceID, "entityID": entityID, "err": err})
- return nil, errResp
+ return nil, errResp, err
}
if (mask == 0x3F00 || mask == 0x3800) && sumReceivedMask == 0 {
//It means the first attributes fetch was a failure, hence instead of sending multiple failure get requests
@@ -3245,7 +3418,7 @@
}
}
*receivedMask = sumReceivedMask
- return ethPMData, extension.GetValueResponse_REASON_UNDEFINED
+ return ethPMData, extension.GetValueResponse_REASON_UNDEFINED, nil
}
// nolint: gocyclo
@@ -3576,9 +3749,8 @@
return receivedMask
}
-func (mm *OnuMetricsManager) aggregateEthernetFrameExtendedPM(pmDataIn map[string]uint64, pmData extension.OmciEthernetFrameExtendedPm, aggregate bool) extension.OmciEthernetFrameExtendedPm {
- mm.onuEthernetFrameExtendedPmLock.Lock()
- defer mm.onuEthernetFrameExtendedPmLock.Unlock()
+func (mm *OnuMetricsManager) aggregateEthernetFrameExtendedPM(pmDataIn map[string]uint64,
+ pmData extension.OmciEthernetFrameExtendedPm, aggregate bool) extension.OmciEthernetFrameExtendedPm {
errorCounterValue := UnsupportedCounterValue64bit
if mm.supportedEthernetFrameExtendedPMClass == me.EthernetFrameExtendedPmClassID {
errorCounterValue = UnsupportedCounterValue32bit
@@ -3674,7 +3846,7 @@
return pmDataOut
}
-func (mm *OnuMetricsManager) getControlBlockForExtendedPMDirection(ctx context.Context, upstream bool, entityID uint16) []uint16 {
+func (mm *OnuMetricsManager) getControlBlockForExtendedPMDirection(ctx context.Context, upstream bool, entityID uint16, reset bool) []uint16 {
controlBlock := make([]uint16, 8)
// Control Block First two bytes are for threshold data 1/2 id - does not matter here
controlBlock[0] = 0
@@ -3683,7 +3855,11 @@
// Next two bytes are for the parent me instance id
controlBlock[2] = entityID
// Next two bytes are for accumulation disable
- controlBlock[3] = 0
+ if reset {
+ controlBlock[3] = 1 << 15 //Set the 16th bit of AD to reset the counters.
+ } else {
+ controlBlock[3] = 0
+ }
// Next two bytes are for tca disable
controlBlock[4] = 0x4000 //tca global disable
// Next two bytes are for control fields - bit 1(lsb) as 1 for continuous accumulation and bit 2(0 for upstream)
diff --git a/vendor/github.com/opencord/voltha-protos/v5/go/extension/extensions.pb.go b/vendor/github.com/opencord/voltha-protos/v5/go/extension/extensions.pb.go
index bcd623f..15ace74 100644
--- a/vendor/github.com/opencord/voltha-protos/v5/go/extension/extensions.pb.go
+++ b/vendor/github.com/opencord/voltha-protos/v5/go/extension/extensions.pb.go
@@ -1170,10 +1170,14 @@
}
type GetOmciEthernetFrameExtendedPmRequest struct {
- OnuDeviceId string `protobuf:"bytes,1,opt,name=onuDeviceId,proto3" json:"onuDeviceId,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
+ OnuDeviceId string `protobuf:"bytes,1,opt,name=onuDeviceId,proto3" json:"onuDeviceId,omitempty"`
+ // Types that are valid to be assigned to IsUniIndex:
+ // *GetOmciEthernetFrameExtendedPmRequest_UniIndex
+ IsUniIndex isGetOmciEthernetFrameExtendedPmRequest_IsUniIndex `protobuf_oneof:"is_uni_index"`
+ Reset_ bool `protobuf:"varint,3,opt,name=reset,proto3" json:"reset,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
func (m *GetOmciEthernetFrameExtendedPmRequest) Reset() { *m = GetOmciEthernetFrameExtendedPmRequest{} }
@@ -1208,6 +1212,45 @@
return ""
}
+type isGetOmciEthernetFrameExtendedPmRequest_IsUniIndex interface {
+ isGetOmciEthernetFrameExtendedPmRequest_IsUniIndex()
+}
+
+type GetOmciEthernetFrameExtendedPmRequest_UniIndex struct {
+ UniIndex uint32 `protobuf:"varint,2,opt,name=uniIndex,proto3,oneof"`
+}
+
+func (*GetOmciEthernetFrameExtendedPmRequest_UniIndex) isGetOmciEthernetFrameExtendedPmRequest_IsUniIndex() {
+}
+
+func (m *GetOmciEthernetFrameExtendedPmRequest) GetIsUniIndex() isGetOmciEthernetFrameExtendedPmRequest_IsUniIndex {
+ if m != nil {
+ return m.IsUniIndex
+ }
+ return nil
+}
+
+func (m *GetOmciEthernetFrameExtendedPmRequest) GetUniIndex() uint32 {
+ if x, ok := m.GetIsUniIndex().(*GetOmciEthernetFrameExtendedPmRequest_UniIndex); ok {
+ return x.UniIndex
+ }
+ return 0
+}
+
+func (m *GetOmciEthernetFrameExtendedPmRequest) GetReset_() bool {
+ if m != nil {
+ return m.Reset_
+ }
+ return false
+}
+
+// XXX_OneofWrappers is for the internal use of the proto package.
+func (*GetOmciEthernetFrameExtendedPmRequest) XXX_OneofWrappers() []interface{} {
+ return []interface{}{
+ (*GetOmciEthernetFrameExtendedPmRequest_UniIndex)(nil),
+ }
+}
+
type GetRxPowerRequest struct {
IntfId uint32 `protobuf:"fixed32,1,opt,name=intf_id,json=intfId,proto3" json:"intf_id,omitempty"`
OnuId uint32 `protobuf:"fixed32,2,opt,name=onu_id,json=onuId,proto3" json:"onu_id,omitempty"`
@@ -3036,198 +3079,200 @@
func init() { proto.RegisterFile("voltha_protos/extensions.proto", fileDescriptor_7ecf6e9799a9202d) }
var fileDescriptor_7ecf6e9799a9202d = []byte{
- // 3053 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0x4b, 0x73, 0x1b, 0x47,
- 0x92, 0x26, 0x20, 0xb2, 0x09, 0x24, 0x08, 0x12, 0x2c, 0xbe, 0x20, 0x52, 0xcf, 0x76, 0x58, 0xd2,
- 0x3a, 0x6c, 0x48, 0x80, 0x09, 0x99, 0x2b, 0x7b, 0x23, 0xcc, 0x26, 0x9a, 0x04, 0x42, 0x14, 0x00,
- 0x17, 0x00, 0xc9, 0xde, 0x4b, 0x47, 0x13, 0x5d, 0xa4, 0x3a, 0x0c, 0x74, 0x61, 0xbb, 0x1b, 0x32,
- 0xb4, 0xd7, 0xdd, 0xdb, 0xee, 0x6d, 0x2f, 0xfb, 0x1b, 0x36, 0x62, 0x63, 0x0e, 0x73, 0x98, 0xfb,
- 0x9c, 0xe7, 0x4f, 0x4c, 0xc4, 0xfc, 0x82, 0x89, 0x39, 0x4f, 0x4c, 0xd4, 0xa3, 0x9f, 0x00, 0x29,
- 0xc9, 0x33, 0x37, 0x56, 0xe6, 0xf7, 0x7d, 0x5d, 0x5d, 0x95, 0x99, 0x95, 0x5d, 0x20, 0xdc, 0x7b,
- 0x47, 0x47, 0xfe, 0x5b, 0xd3, 0x98, 0xb8, 0xd4, 0xa7, 0xde, 0x53, 0x32, 0xf3, 0x89, 0xe3, 0xd9,
- 0xd4, 0xf1, 0x2a, 0xdc, 0x82, 0xf2, 0xa1, 0x65, 0x7f, 0x1e, 0x6a, 0x0c, 0xa9, 0x73, 0x69, 0x5f,
- 0x09, 0xe8, 0xfe, 0xc1, 0x15, 0xa5, 0x57, 0x23, 0xf2, 0x94, 0x8f, 0x2e, 0xa6, 0x97, 0x4f, 0xc9,
- 0x78, 0xe2, 0xbf, 0x17, 0x4e, 0xf5, 0x39, 0xa0, 0x33, 0xe2, 0x37, 0x6c, 0xcf, 0x37, 0x9d, 0x21,
- 0xc1, 0xe4, 0xdf, 0xa6, 0xc4, 0xf3, 0xd1, 0x03, 0x28, 0x50, 0x67, 0xda, 0x20, 0xef, 0xec, 0x21,
- 0x69, 0x59, 0xe5, 0xcc, 0x83, 0xcc, 0x93, 0x3c, 0x8e, 0x9b, 0xd4, 0x2a, 0x6c, 0x25, 0x78, 0xde,
- 0x84, 0x3a, 0x1e, 0x41, 0xfb, 0x90, 0xb3, 0xa4, 0x8d, 0xb3, 0x8a, 0x38, 0x1c, 0xab, 0x35, 0xd8,
- 0x3e, 0x23, 0x7e, 0xc7, 0x99, 0x0e, 0x1c, 0xbb, 0xe5, 0x5c, 0xd2, 0xe0, 0x61, 0xfb, 0x90, 0x9b,
- 0x32, 0x8b, 0x45, 0x66, 0x01, 0x27, 0x18, 0xab, 0x7f, 0x5c, 0x86, 0x9d, 0x14, 0x49, 0x3e, 0xa9,
- 0x0b, 0x39, 0xd3, 0x1a, 0xf7, 0x7c, 0xd3, 0x17, 0x4f, 0x5a, 0xaf, 0x1d, 0x56, 0xc2, 0x35, 0xa9,
- 0x2c, 0xe4, 0x54, 0x8e, 0xad, 0xb1, 0xed, 0xd8, 0x9e, 0xef, 0x9a, 0xbe, 0xfd, 0x8e, 0x70, 0x2e,
- 0x0e, 0x55, 0x50, 0x07, 0xf2, 0x74, 0x42, 0x5c, 0x21, 0x99, 0xe5, 0x92, 0xd5, 0x0f, 0x4a, 0x76,
- 0x26, 0x84, 0xa9, 0x51, 0xc7, 0x1c, 0x09, 0xbd, 0x48, 0x83, 0x09, 0x8a, 0x8d, 0x68, 0x39, 0x56,
- 0xf9, 0xd6, 0x47, 0x0a, 0x9e, 0x70, 0xc6, 0x54, 0x88, 0xb6, 0x1c, 0x0b, 0x47, 0x1a, 0xea, 0xef,
- 0x33, 0x50, 0x4a, 0xfb, 0x11, 0x80, 0x32, 0x68, 0xbf, 0xec, 0xbc, 0x69, 0x97, 0x96, 0x10, 0x82,
- 0xf5, 0xbe, 0xde, 0x36, 0xb4, 0xe3, 0x9e, 0x6e, 0xf4, 0x8d, 0xd3, 0xc6, 0x8f, 0xa5, 0x0c, 0xda,
- 0x05, 0xd4, 0x1c, 0xb4, 0x1b, 0x58, 0x6f, 0xc4, 0xed, 0x59, 0x54, 0x86, 0xed, 0xb3, 0xd6, 0xd9,
- 0xb1, 0xd6, 0xea, 0x1b, 0x7a, 0xbf, 0xa9, 0xe3, 0xb6, 0x2e, 0x3c, 0xb7, 0x18, 0x83, 0xa9, 0x9c,
- 0x25, 0xed, 0xcb, 0x29, 0xf5, 0x66, 0xe3, 0xc7, 0xd2, 0xca, 0x02, 0x75, 0x66, 0x57, 0x16, 0xaa,
- 0x33, 0xcf, 0xaa, 0x7a, 0x06, 0x5b, 0x0b, 0xf6, 0x81, 0x09, 0x1d, 0x37, 0x5e, 0xf5, 0xfa, 0xc7,
- 0x7d, 0xdd, 0x18, 0xb4, 0x1b, 0xfa, 0x69, 0xab, 0xad, 0x37, 0x4a, 0x4b, 0xec, 0xf5, 0xce, 0x3b,
- 0x27, 0x2f, 0xf5, 0x46, 0x29, 0x83, 0xd6, 0x20, 0x37, 0x68, 0xcb, 0x51, 0x56, 0x3d, 0x85, 0x52,
- 0x7a, 0xf5, 0xd1, 0x1e, 0x6c, 0x75, 0xba, 0x3a, 0x9e, 0x97, 0x29, 0xc0, 0xaa, 0xde, 0x3e, 0xd6,
- 0xce, 0x03, 0x9d, 0x46, 0xab, 0x27, 0x46, 0x59, 0xf5, 0x77, 0x19, 0x9e, 0x03, 0x9d, 0x91, 0xdf,
- 0xa5, 0xae, 0x7f, 0x42, 0xa7, 0x8e, 0x4f, 0x5c, 0x0f, 0xed, 0x82, 0x32, 0xa1, 0xae, 0xdf, 0xa6,
- 0x32, 0x28, 0xe5, 0x08, 0x69, 0x90, 0x63, 0x7f, 0xf5, 0xdf, 0x4f, 0x82, 0x28, 0x79, 0x94, 0xda,
- 0xd4, 0xa4, 0x50, 0xa5, 0x2b, 0xd1, 0x38, 0xe4, 0xa9, 0x3a, 0xe4, 0x02, 0x2b, 0x2a, 0xc1, 0x1a,
- 0xfb, 0xdb, 0x18, 0xb4, 0x5f, 0xb6, 0xc5, 0x2e, 0xee, 0xc0, 0x26, 0xb7, 0x84, 0x0b, 0xd7, 0x6e,
- 0xb7, 0x4a, 0x99, 0x10, 0xd8, 0xed, 0xb4, 0x8d, 0xce, 0x79, 0xbf, 0x94, 0x55, 0xff, 0x70, 0x0b,
- 0xf6, 0xe7, 0x1f, 0x18, 0xa6, 0x48, 0x19, 0x56, 0xfd, 0x99, 0xf6, 0xde, 0x27, 0x1e, 0x7f, 0x85,
- 0x65, 0x1c, 0x0c, 0x99, 0xc7, 0x95, 0x9e, 0xac, 0xf0, 0xc8, 0x21, 0xba, 0x03, 0x79, 0x7f, 0xd6,
- 0x35, 0x87, 0x3f, 0x13, 0xdf, 0xe3, 0x31, 0xbb, 0x8c, 0x23, 0x03, 0xf3, 0xba, 0xa1, 0x77, 0x59,
- 0x78, 0x43, 0x03, 0x7a, 0x04, 0xeb, 0xfe, 0x4c, 0x77, 0x5d, 0xea, 0x06, 0x90, 0x15, 0x0e, 0x49,
- 0x59, 0x19, 0xce, 0x4d, 0xe2, 0x14, 0x81, 0x73, 0xe7, 0x70, 0xfe, 0x4c, 0x1b, 0x9a, 0x9e, 0x1f,
- 0xe0, 0x56, 0x03, 0xbd, 0xb8, 0x55, 0xe8, 0x25, 0x70, 0xb9, 0x40, 0x2f, 0x8d, 0xf3, 0x67, 0x83,
- 0x38, 0x2e, 0x1f, 0xe8, 0x0d, 0xe6, 0xf4, 0x12, 0x38, 0x08, 0xf4, 0x06, 0x73, 0x7a, 0xaf, 0xe2,
- 0xb8, 0x42, 0xa0, 0xf7, 0x6a, 0x4e, 0x2f, 0x81, 0x5b, 0x0b, 0xf4, 0xe2, 0x56, 0xb5, 0x11, 0x14,
- 0xc8, 0x2e, 0x75, 0x3a, 0x13, 0xdf, 0x1e, 0x9a, 0x23, 0x56, 0x1a, 0xd0, 0x97, 0xb0, 0xc2, 0x4b,
- 0x36, 0xdf, 0xc5, 0x42, 0x6d, 0xb7, 0x22, 0x0a, 0x7a, 0x25, 0x28, 0xe8, 0x15, 0x9d, 0x79, 0xb1,
- 0x00, 0xa9, 0xff, 0x99, 0x85, 0x3b, 0x8b, 0x64, 0xc2, 0xb0, 0xf8, 0x02, 0x4a, 0x13, 0xfa, 0x0b,
- 0x71, 0x4f, 0x09, 0xb1, 0x5e, 0xd3, 0x91, 0x6f, 0x5e, 0x89, 0x0a, 0x9a, 0xc5, 0x73, 0x76, 0x54,
- 0x83, 0x6d, 0x97, 0x0c, 0x89, 0xfd, 0x8e, 0x58, 0x52, 0xaa, 0xcb, 0x20, 0x3c, 0x6a, 0xb2, 0x78,
- 0xa1, 0x0f, 0x3d, 0x87, 0xdd, 0x31, 0x31, 0x83, 0x47, 0x9f, 0x9b, 0x53, 0x67, 0xf8, 0x56, 0xb0,
- 0x6e, 0x71, 0xd6, 0x35, 0x5e, 0x36, 0xaf, 0x91, 0xe9, 0x11, 0x57, 0xb3, 0x4d, 0xef, 0x64, 0xea,
- 0xba, 0xc4, 0xf1, 0x79, 0x8c, 0x65, 0xf1, 0x9c, 0x9d, 0x1d, 0x50, 0x3e, 0x19, 0xf3, 0xec, 0x9f,
- 0xba, 0x84, 0xc7, 0x59, 0x16, 0xc7, 0x4d, 0xea, 0x6f, 0x32, 0x70, 0x5f, 0x2c, 0x83, 0xee, 0xbf,
- 0x25, 0xae, 0x43, 0x7c, 0xcd, 0xb5, 0xad, 0x2b, 0xc2, 0x32, 0xa5, 0x69, 0x7b, 0x3e, 0x75, 0xdf,
- 0x23, 0x0c, 0x79, 0xcb, 0x76, 0xc9, 0x90, 0x55, 0x90, 0x6b, 0x0f, 0x91, 0x6b, 0xe9, 0x95, 0x46,
- 0xc0, 0xc5, 0x91, 0x8c, 0x7a, 0x04, 0xf9, 0xd0, 0x8e, 0x8a, 0x90, 0x8f, 0x17, 0x21, 0x56, 0xbf,
- 0xba, 0xbd, 0x3e, 0xd6, 0x8f, 0x5f, 0x95, 0x32, 0x68, 0x1d, 0xa0, 0xd1, 0x79, 0xd3, 0x96, 0xe3,
- 0xac, 0xfa, 0x3f, 0x2b, 0xf0, 0xf8, 0x03, 0x8f, 0x0c, 0xf7, 0xf0, 0x1e, 0x80, 0xe5, 0xd2, 0x89,
- 0xfe, 0x8e, 0x38, 0xbe, 0x27, 0x0b, 0x54, 0xcc, 0xc2, 0x8a, 0x17, 0x1d, 0xfa, 0x2c, 0xd4, 0xb2,
- 0xa2, 0x78, 0x89, 0x11, 0x4b, 0xfc, 0x49, 0x2c, 0xb9, 0x8b, 0x38, 0x18, 0xb2, 0xd5, 0xbf, 0x70,
- 0xa9, 0x69, 0xc5, 0xc3, 0x74, 0x99, 0x43, 0xe6, 0xec, 0x0c, 0x3b, 0x9e, 0x8e, 0xd8, 0x06, 0x46,
- 0xd8, 0x15, 0x81, 0x4d, 0xdb, 0xd1, 0x97, 0xb0, 0x39, 0x74, 0x87, 0x3c, 0xaf, 0x89, 0x15, 0xcf,
- 0xf7, 0x22, 0x9e, 0x77, 0x30, 0xe5, 0xa9, 0x63, 0x11, 0xd7, 0xb3, 0xff, 0x9d, 0xc4, 0x93, 0xbe,
- 0x88, 0xe7, 0xec, 0xe8, 0x09, 0x6c, 0xd0, 0x77, 0x49, 0x68, 0x8e, 0x43, 0xd3, 0x66, 0x86, 0x94,
- 0xaf, 0xf9, 0xfc, 0x50, 0x2e, 0x4b, 0x5e, 0x20, 0x53, 0x66, 0x16, 0xef, 0x81, 0xa9, 0xde, 0xa7,
- 0xd5, 0xda, 0x37, 0x12, 0x0e, 0x1c, 0xbe, 0xd0, 0x87, 0x0e, 0x61, 0x47, 0xda, 0xab, 0xb5, 0xa3,
- 0x3e, 0xad, 0xd5, 0xeb, 0x1d, 0x41, 0x2a, 0x70, 0xd2, 0x62, 0x67, 0x8c, 0x55, 0xab, 0x3f, 0xef,
- 0xd3, 0x7a, 0xb5, 0x2a, 0x1f, 0xb5, 0x96, 0x60, 0x25, 0x9d, 0x2c, 0xb7, 0xa4, 0xa3, 0x5e, 0xad,
- 0xf5, 0x69, 0xf5, 0x59, 0xed, 0x6b, 0x49, 0x2b, 0x72, 0xda, 0x35, 0x5e, 0x74, 0x04, 0x7b, 0xc1,
- 0x34, 0x9e, 0xd5, 0x0e, 0xfb, 0xb4, 0x5a, 0xaf, 0x1e, 0x49, 0xe2, 0x3a, 0x27, 0x5e, 0xe7, 0x56,
- 0xbf, 0x87, 0x92, 0x08, 0xca, 0x53, 0x32, 0x0c, 0xf2, 0xe6, 0xd3, 0x0a, 0xd2, 0x9f, 0x33, 0x50,
- 0x4e, 0x4b, 0x84, 0x81, 0xfc, 0x08, 0xd6, 0x87, 0xd4, 0x65, 0xf9, 0x42, 0xac, 0xe8, 0xa8, 0x2a,
- 0xe2, 0x94, 0x15, 0x55, 0x00, 0x85, 0x96, 0x13, 0x6a, 0x91, 0x37, 0xd4, 0xb5, 0x82, 0xe0, 0x5e,
- 0xe0, 0x61, 0x09, 0x72, 0x49, 0x86, 0x3d, 0x32, 0xa4, 0x8e, 0x15, 0xc4, 0x7a, 0xcc, 0xc2, 0x6b,
- 0x37, 0xf5, 0xcd, 0x51, 0xa4, 0x25, 0x82, 0x3d, 0x65, 0x65, 0x0b, 0x3e, 0x75, 0xa4, 0xbe, 0x79,
- 0x31, 0x22, 0x11, 0x5e, 0x04, 0xfc, 0x35, 0x5e, 0xf5, 0x2c, 0xe8, 0x5b, 0xa3, 0x53, 0x59, 0x74,
- 0xbb, 0x7b, 0xb0, 0x6a, 0x3b, 0xfe, 0xa5, 0x61, 0x8b, 0xb6, 0x7a, 0x15, 0x2b, 0x6c, 0xd8, 0xb2,
- 0xd0, 0x0e, 0x28, 0xd4, 0x99, 0x32, 0x7b, 0x96, 0xdb, 0x57, 0xa8, 0x33, 0x6d, 0x59, 0x6a, 0x0b,
- 0x3e, 0x67, 0x42, 0xe3, 0xa1, 0x1d, 0x54, 0x85, 0x53, 0xd7, 0x1c, 0x13, 0x9d, 0x55, 0x29, 0x8b,
- 0x58, 0xdd, 0xf1, 0xc7, 0xf7, 0xec, 0x27, 0xb0, 0x79, 0x46, 0x7c, 0x3c, 0xe3, 0xe5, 0xf6, 0xd7,
- 0xce, 0xe7, 0x4f, 0x6b, 0xb0, 0x9b, 0x7e, 0x33, 0xb9, 0x97, 0xb7, 0x53, 0x52, 0xcd, 0xa5, 0x50,
- 0x6c, 0x2f, 0x29, 0xd6, 0xcc, 0x48, 0x39, 0xf4, 0x18, 0xd6, 0x27, 0xd4, 0xb3, 0x59, 0x1f, 0x68,
- 0x58, 0xae, 0x7d, 0xe9, 0xf3, 0xbd, 0x52, 0x9a, 0x59, 0x5c, 0x0c, 0xec, 0x0d, 0x66, 0x66, 0x40,
- 0x87, 0x5c, 0x99, 0x31, 0xe0, 0x32, 0x07, 0xde, 0xc2, 0xc5, 0xc0, 0x2e, 0x80, 0x2f, 0xa0, 0x6c,
- 0x91, 0x91, 0x3d, 0xb6, 0x7d, 0xe2, 0x1a, 0x63, 0xdb, 0xf3, 0x0c, 0x8b, 0xf8, 0xb2, 0xc6, 0xaf,
- 0x70, 0xca, 0x32, 0xde, 0x0d, 0x11, 0xaf, 0x6c, 0xcf, 0x6b, 0x04, 0x7e, 0x74, 0x1f, 0xe0, 0xc2,
- 0x9e, 0x18, 0x84, 0x15, 0x25, 0x51, 0xa5, 0x94, 0xe6, 0x0a, 0xce, 0x5f, 0xd8, 0x13, 0x5e, 0xa7,
- 0x3c, 0x74, 0x17, 0xd8, 0xc0, 0x98, 0x3a, 0xb6, 0x2c, 0x4c, 0x4a, 0x53, 0xc1, 0xb9, 0x0b, 0x7b,
- 0x32, 0x60, 0x16, 0x96, 0xd4, 0x97, 0x64, 0x68, 0x84, 0xf1, 0x68, 0x78, 0xef, 0xc7, 0x17, 0x74,
- 0x24, 0x0a, 0x93, 0xd2, 0x5c, 0xc5, 0x5b, 0x97, 0x64, 0x78, 0x12, 0x78, 0x7b, 0xc2, 0xc9, 0x92,
- 0x53, 0xb0, 0x2c, 0xf2, 0x0b, 0x0b, 0x9e, 0x88, 0xcf, 0xcb, 0x94, 0xd2, 0xcc, 0xe1, 0x1d, 0xce,
- 0x93, 0xfe, 0x50, 0x00, 0x7d, 0x0f, 0x07, 0x49, 0x66, 0x22, 0x1a, 0x79, 0xd5, 0x52, 0x9a, 0x79,
- 0x7c, 0x3b, 0xce, 0x1e, 0xc4, 0x21, 0xe8, 0x73, 0x28, 0x26, 0x14, 0x78, 0xd1, 0x52, 0x9a, 0x80,
- 0xd7, 0xe2, 0x1c, 0xf4, 0x0c, 0xb6, 0x92, 0x2f, 0x26, 0x56, 0x60, 0x8d, 0x83, 0x0b, 0x78, 0x33,
- 0xfe, 0x5a, 0x62, 0x29, 0x9e, 0xc0, 0xc6, 0xec, 0x8a, 0x8c, 0x8d, 0x9f, 0xc9, 0xfb, 0x60, 0x3d,
- 0x8b, 0x1c, 0xbd, 0x86, 0x8b, 0xcc, 0xf1, 0x92, 0xbc, 0x8f, 0xd6, 0x94, 0x23, 0x47, 0xd4, 0x13,
- 0xd5, 0x48, 0x69, 0x16, 0x71, 0x8e, 0x99, 0xce, 0xa9, 0xc7, 0x85, 0xdc, 0x99, 0x31, 0x19, 0x51,
- 0x73, 0xec, 0x09, 0xa5, 0xf2, 0x06, 0x07, 0xad, 0xe3, 0xa2, 0x3b, 0xeb, 0x72, 0x3b, 0x57, 0x42,
- 0x5f, 0x01, 0x8a, 0x90, 0x0e, 0x75, 0x0c, 0xdb, 0x1a, 0x91, 0x72, 0x89, 0x83, 0x37, 0xf0, 0x46,
- 0x00, 0x6e, 0x53, 0xa7, 0x65, 0x8d, 0x78, 0xb8, 0xba, 0x33, 0x83, 0x8e, 0x87, 0x76, 0x79, 0x93,
- 0x63, 0x4a, 0x58, 0x71, 0x67, 0x2c, 0xd3, 0x98, 0xcb, 0x97, 0x2e, 0xc4, 0x5d, 0x9b, 0x58, 0xf1,
- 0x85, 0xeb, 0x05, 0xdc, 0x96, 0x2c, 0x43, 0x96, 0x4c, 0x63, 0xe8, 0x0e, 0xe5, 0xc4, 0xb6, 0x38,
- 0x18, 0xe1, 0x1d, 0xa1, 0x23, 0xcf, 0x9f, 0x13, 0x79, 0xcc, 0xa1, 0x03, 0xc8, 0xb9, 0x33, 0xe3,
- 0x82, 0x97, 0xb9, 0x6d, 0x0e, 0xdd, 0x8a, 0x3a, 0xef, 0xfb, 0x00, 0x6c, 0xf6, 0xf2, 0x24, 0xdb,
- 0xe1, 0xee, 0xed, 0x78, 0x7b, 0x7d, 0x00, 0x39, 0x3f, 0x60, 0xef, 0x72, 0xf7, 0x4e, 0xd4, 0xd1,
- 0xdf, 0x07, 0xf0, 0x23, 0xf6, 0x1e, 0x77, 0xef, 0xc6, 0x5b, 0xf7, 0xcf, 0x60, 0xed, 0x82, 0xb8,
- 0x86, 0x4b, 0xd8, 0x47, 0x08, 0xb1, 0xca, 0x65, 0x0e, 0xd9, 0xc3, 0x85, 0x0b, 0x56, 0x0b, 0x84,
- 0x11, 0x3d, 0x84, 0xc2, 0x68, 0x68, 0x5d, 0x05, 0x1b, 0x76, 0x9b, 0x63, 0xca, 0x18, 0x98, 0x51,
- 0xee, 0x16, 0x9b, 0xa6, 0x65, 0x07, 0x88, 0x7d, 0x8e, 0xb8, 0x8d, 0xf3, 0xae, 0x65, 0x4b, 0xc0,
- 0x3d, 0xc8, 0xfb, 0xf6, 0x98, 0x78, 0xbe, 0x39, 0x9e, 0x94, 0x0f, 0x78, 0xb6, 0xef, 0xe3, 0xc8,
- 0xa4, 0xad, 0x01, 0xd8, 0x9e, 0x21, 0x0b, 0x85, 0x56, 0x80, 0xbc, 0xed, 0x19, 0xa2, 0x36, 0x68,
- 0x5b, 0xb0, 0x69, 0x7b, 0x46, 0xb2, 0x1e, 0x48, 0x63, 0x32, 0xf7, 0xb5, 0xbb, 0x70, 0x60, 0xb3,
- 0xc4, 0x5e, 0x9c, 0xe7, 0xda, 0x06, 0x14, 0x6d, 0xcf, 0x88, 0x52, 0x59, 0x5b, 0x87, 0x35, 0x69,
- 0xe0, 0x81, 0xab, 0xed, 0x43, 0xd9, 0xf6, 0x8c, 0x85, 0xb9, 0xaa, 0xdd, 0x81, 0xfd, 0xd0, 0x37,
- 0x97, 0x91, 0xda, 0x03, 0xb8, 0x37, 0xe7, 0x4d, 0x64, 0x9d, 0x86, 0xa0, 0x94, 0x46, 0x68, 0x65,
- 0xd8, 0x9d, 0x7b, 0x9e, 0x98, 0xc9, 0x36, 0x20, 0xdb, 0x33, 0x52, 0xa9, 0x22, 0xe7, 0x1b, 0xa6,
- 0x85, 0x44, 0xa5, 0xf2, 0x40, 0xdb, 0x83, 0x9d, 0x84, 0x35, 0x88, 0x79, 0xb9, 0xc6, 0x32, 0x4e,
- 0xe5, 0x48, 0x06, 0xb4, 0x76, 0x0f, 0xee, 0x44, 0xbe, 0xf9, 0x18, 0xd6, 0x8a, 0x50, 0x10, 0x7e,
- 0x1e, 0x69, 0x72, 0x29, 0xa3, 0xc8, 0x94, 0x7e, 0x3f, 0xe9, 0x8f, 0x62, 0x4f, 0xdb, 0x84, 0x0d,
- 0xb6, 0xd4, 0xb1, 0x58, 0xd3, 0x4a, 0xb0, 0x6e, 0x7b, 0x46, 0x2c, 0xb2, 0x02, 0xd5, 0x30, 0x90,
- 0xe4, 0x0b, 0x87, 0x51, 0xa2, 0xfe, 0xf7, 0x0a, 0x1c, 0xdc, 0x70, 0xe8, 0xa1, 0xfb, 0x50, 0x60,
- 0xed, 0xae, 0x41, 0xa2, 0x0e, 0x58, 0xb9, 0xa1, 0x03, 0x56, 0xc2, 0x0e, 0x78, 0x17, 0x94, 0x4b,
- 0xa6, 0x25, 0x9a, 0x02, 0x05, 0xcb, 0x11, 0xfa, 0xa7, 0x58, 0xff, 0x6b, 0x48, 0x04, 0x3f, 0x61,
- 0xf0, 0x46, 0x68, 0x3f, 0x0d, 0xa1, 0x61, 0x9b, 0x1b, 0x40, 0x57, 0x04, 0x34, 0xb4, 0x4b, 0xe8,
- 0x97, 0x80, 0xc2, 0x95, 0x25, 0x56, 0x00, 0xe6, 0x07, 0x0b, 0x2e, 0x45, 0xed, 0x6f, 0x24, 0x1c,
- 0x76, 0xb9, 0x01, 0x76, 0x55, 0x08, 0x87, 0x76, 0x09, 0x7d, 0x1c, 0x35, 0xbf, 0x01, 0x92, 0x9f,
- 0x31, 0x78, 0x3d, 0x30, 0x4b, 0xe0, 0x13, 0x28, 0x09, 0xbf, 0xf1, 0xfc, 0xd0, 0x88, 0x35, 0xbf,
- 0x0a, 0x5e, 0x17, 0xf6, 0xe7, 0x87, 0x61, 0x47, 0xba, 0x17, 0x20, 0xeb, 0x86, 0x4f, 0x8d, 0x6a,
- 0xed, 0x1b, 0x23, 0xd6, 0xfe, 0x2a, 0x78, 0x4b, 0x12, 0x44, 0xf7, 0xdb, 0x09, 0x3a, 0xd2, 0xb2,
- 0x64, 0x55, 0x6b, 0x47, 0x8c, 0x56, 0xab, 0xd7, 0x03, 0x1a, 0x3f, 0x4b, 0xf0, 0xb6, 0xf0, 0xa7,
- 0xfa, 0xdf, 0x88, 0x57, 0xab, 0x3f, 0x67, 0xbc, 0x7a, 0xb5, 0x6a, 0xc4, 0x5a, 0xe0, 0x90, 0x17,
- 0x74, 0xc0, 0x9d, 0xa0, 0x93, 0xbd, 0x2d, 0x79, 0xf5, 0x6a, 0x8d, 0x4f, 0xf3, 0x59, 0xed, 0x6b,
- 0x23, 0xd6, 0x04, 0x2b, 0x78, 0x47, 0x00, 0xc2, 0x1e, 0x58, 0x32, 0x5f, 0xc0, 0x7e, 0x30, 0xd3,
- 0x67, 0xb5, 0x43, 0x4e, 0xad, 0x57, 0x8f, 0x8c, 0x58, 0x1b, 0xac, 0xe0, 0x5d, 0x39, 0xd7, 0xb0,
- 0x0b, 0x16, 0x5c, 0xf5, 0x2f, 0x59, 0x78, 0xf4, 0xa1, 0x36, 0x4c, 0x76, 0x41, 0x1a, 0xe4, 0xa6,
- 0x13, 0xcf, 0x77, 0x89, 0x39, 0x96, 0xfd, 0x71, 0xfc, 0x7e, 0xe8, 0x26, 0x85, 0x90, 0x87, 0x4e,
- 0x01, 0x2c, 0xfa, 0x8b, 0x23, 0x55, 0xb2, 0x9f, 0xa4, 0x12, 0x63, 0xa2, 0xff, 0xca, 0xc0, 0x23,
- 0x9e, 0xe6, 0x44, 0x82, 0x45, 0xac, 0x18, 0x44, 0xc2, 0x8d, 0xc9, 0xd8, 0xb8, 0xa4, 0xee, 0xd8,
- 0xf4, 0xe5, 0xfd, 0xe4, 0x51, 0xea, 0xf3, 0xf7, 0xc3, 0xef, 0x5b, 0x39, 0xe5, 0x7c, 0xfc, 0x90,
- 0x5e, 0x8f, 0x15, 0x10, 0xf5, 0x19, 0x28, 0xe2, 0x2f, 0x7e, 0x93, 0xd8, 0x6c, 0xe1, 0xfe, 0x4f,
- 0x46, 0xff, 0x4d, 0xc7, 0xd0, 0x5a, 0x7d, 0x71, 0x77, 0xd9, 0x6b, 0xfd, 0xd8, 0xff, 0xc9, 0x38,
- 0xed, 0x0c, 0x30, 0xb7, 0x65, 0xd4, 0xff, 0x15, 0x57, 0x73, 0x61, 0xcb, 0x2a, 0x97, 0xf8, 0x13,
- 0x7b, 0x56, 0x96, 0xf3, 0x9e, 0x6f, 0xfa, 0x53, 0x91, 0xf3, 0x79, 0x2c, 0x47, 0xac, 0x88, 0x5c,
- 0x9a, 0xf6, 0xc8, 0x70, 0x89, 0xe9, 0x51, 0x87, 0xa7, 0x7b, 0x1e, 0x03, 0x33, 0x61, 0x6e, 0x41,
- 0xb7, 0xf9, 0x81, 0xcd, 0x6f, 0x45, 0x78, 0x86, 0x67, 0xd8, 0x71, 0xcd, 0xe7, 0xa2, 0xfe, 0xc7,
- 0x0a, 0x6c, 0x9c, 0x11, 0xff, 0xb5, 0x39, 0x9a, 0x86, 0xd7, 0xe6, 0xdf, 0xa6, 0x6e, 0xbf, 0x0b,
- 0xb5, 0xbb, 0xc9, 0xf5, 0x4c, 0xdd, 0xb3, 0x37, 0x97, 0xa2, 0xeb, 0x71, 0xf4, 0x2d, 0xac, 0x4e,
- 0xc5, 0x5d, 0xb0, 0xdc, 0xf0, 0xfb, 0xd7, 0xdf, 0x15, 0x07, 0xec, 0x80, 0x81, 0x8e, 0xa1, 0x40,
- 0xc5, 0x2d, 0x20, 0x17, 0xb8, 0xb5, 0xe8, 0xe1, 0xa9, 0x6b, 0xc2, 0xe6, 0x12, 0x8e, 0x73, 0x50,
- 0x0b, 0xd6, 0xa9, 0x33, 0x8d, 0x5d, 0x18, 0xf1, 0xf5, 0x58, 0x34, 0x8d, 0xe4, 0xbd, 0x52, 0x73,
- 0x09, 0xa7, 0x88, 0x08, 0x43, 0x91, 0xf8, 0x6f, 0xa3, 0xdb, 0x0b, 0xbe, 0x76, 0x85, 0xda, 0x17,
- 0x1f, 0x7f, 0xb7, 0xd2, 0x5c, 0xc2, 0x49, 0x09, 0xf4, 0x2f, 0xfc, 0x83, 0x4e, 0xba, 0x79, 0x05,
- 0x2d, 0xd4, 0x0e, 0xe6, 0x04, 0xa3, 0x2f, 0xcc, 0xe6, 0x12, 0x8e, 0x11, 0x90, 0x06, 0x40, 0xf9,
- 0xcc, 0xf9, 0x9b, 0xad, 0x72, 0xfa, 0x83, 0x39, 0x7a, 0xea, 0x63, 0x8d, 0x69, 0x44, 0x2c, 0x74,
- 0x0e, 0xab, 0x2c, 0x9e, 0x98, 0x40, 0x8e, 0x0b, 0x3c, 0xfb, 0x84, 0x6c, 0x09, 0xb7, 0x4c, 0x4a,
- 0xa0, 0x23, 0x08, 0x62, 0x89, 0xd7, 0xe3, 0x42, 0xed, 0x4e, 0x52, 0x2d, 0xf9, 0x9d, 0xc6, 0x98,
- 0x12, 0xae, 0xe5, 0x61, 0xd5, 0x15, 0x56, 0xf5, 0xff, 0x72, 0xfc, 0xf3, 0x5c, 0x46, 0xa1, 0x4c,
- 0x8f, 0x17, 0x61, 0xb8, 0x8b, 0x3b, 0x2d, 0x35, 0x29, 0x9c, 0x00, 0x57, 0x7a, 0x1c, 0x19, 0xa6,
- 0x84, 0x0e, 0x79, 0xe2, 0xba, 0x22, 0xfc, 0xe5, 0xf5, 0xf6, 0xe3, 0x9b, 0xe8, 0xfc, 0x00, 0x13,
- 0x70, 0x1c, 0x31, 0xd1, 0x77, 0xb1, 0x4c, 0x10, 0xc1, 0x78, 0xef, 0xba, 0x4c, 0x10, 0x42, 0x89,
- 0x54, 0xf8, 0x2e, 0x4a, 0x85, 0xe5, 0x6b, 0x76, 0x2a, 0xf5, 0xb3, 0x49, 0x3c, 0x17, 0x5e, 0xc2,
- 0xda, 0x44, 0xc4, 0xb9, 0xef, 0x10, 0xd7, 0x93, 0xc1, 0xf7, 0xf9, 0x8d, 0xc9, 0x10, 0xd3, 0x49,
- 0x90, 0xd1, 0x0f, 0x73, 0x59, 0x21, 0x42, 0xef, 0xf1, 0x07, 0xb2, 0x22, 0x26, 0x98, 0xce, 0x8e,
- 0x0b, 0xd8, 0x4c, 0x84, 0x76, 0x2c, 0x22, 0x6b, 0x1f, 0x9f, 0x21, 0xb1, 0x07, 0xcc, 0xcb, 0x21,
- 0x3d, 0x91, 0x2d, 0x22, 0x5a, 0x3f, 0xbb, 0x21, 0x5b, 0x62, 0x6a, 0xf1, 0xac, 0x79, 0xc9, 0xdf,
- 0xbe, 0x4b, 0x9d, 0x60, 0x9d, 0x64, 0xa8, 0x3e, 0xbc, 0x21, 0x73, 0x12, 0xef, 0x1d, 0xa3, 0xa2,
- 0x01, 0xbf, 0xa0, 0x08, 0x95, 0x80, 0x2b, 0x55, 0x3f, 0xf9, 0xc0, 0xe1, 0x75, 0x2b, 0xd2, 0x41,
- 0xff, 0x1c, 0xe5, 0x51, 0x61, 0x51, 0xd9, 0x4b, 0x1d, 0x1e, 0xb1, 0x44, 0x52, 0xab, 0xa0, 0x88,
- 0xf0, 0x47, 0xdb, 0x50, 0xea, 0xf5, 0x8f, 0xfb, 0x83, 0x5e, 0xe2, 0x47, 0x23, 0x05, 0xb2, 0x9d,
- 0x97, 0xa5, 0x0c, 0xca, 0xc3, 0x8a, 0x8e, 0x71, 0x07, 0x97, 0xb2, 0xea, 0xff, 0x67, 0xa0, 0x10,
- 0x8b, 0x79, 0x46, 0xc4, 0xfa, 0x71, 0xaf, 0xd3, 0x4e, 0x10, 0x37, 0xa0, 0x30, 0x68, 0xf7, 0x06,
- 0xdd, 0x6e, 0x07, 0xf7, 0xf9, 0x2f, 0x4e, 0x3b, 0xb0, 0xd9, 0x6a, 0xbf, 0x3e, 0x3e, 0x6f, 0x35,
- 0x8c, 0x86, 0xfe, 0xba, 0x75, 0xa2, 0x1b, 0xad, 0x46, 0x29, 0x1b, 0x37, 0x33, 0xa8, 0xd1, 0xff,
- 0xa9, 0xab, 0x97, 0x6e, 0xa1, 0x02, 0xac, 0xf6, 0x5b, 0xaf, 0xf4, 0xce, 0xa0, 0x5f, 0x5a, 0x66,
- 0x4f, 0x08, 0x30, 0x58, 0xff, 0x41, 0x40, 0x56, 0xd8, 0x69, 0xd9, 0x6a, 0xf7, 0x75, 0xdc, 0x3e,
- 0x3e, 0x37, 0xc4, 0xdc, 0x14, 0x61, 0x8b, 0x3f, 0xa4, 0xb4, 0xaa, 0x01, 0xe4, 0x5c, 0xf9, 0xe6,
- 0xea, 0x6b, 0xd8, 0xe8, 0xa5, 0x4e, 0xac, 0x23, 0x58, 0x33, 0x47, 0xa6, 0x3b, 0x96, 0xbf, 0x18,
- 0xcb, 0x53, 0x6b, 0xab, 0x22, 0x7f, 0x40, 0x3e, 0x66, 0x3e, 0xf1, 0x8b, 0x23, 0x5b, 0x76, 0x33,
- 0x1a, 0xc6, 0x8b, 0xd0, 0x5f, 0x33, 0x50, 0xea, 0x7d, 0x4a, 0x11, 0xea, 0xfd, 0x7d, 0x45, 0xa8,
- 0xf7, 0x71, 0x45, 0xe8, 0xd7, 0x6c, 0xef, 0xe1, 0xaf, 0xd9, 0x5d, 0xd5, 0x86, 0x9d, 0x9e, 0xed,
- 0x5c, 0x8d, 0x48, 0xba, 0x21, 0xd8, 0x87, 0x9c, 0x6f, 0xba, 0x57, 0xc4, 0x0f, 0x2f, 0xe4, 0xc2,
- 0x31, 0x3a, 0x0c, 0x17, 0x50, 0x9e, 0xf7, 0xfb, 0x0b, 0xeb, 0x2c, 0x47, 0xe0, 0x70, 0xad, 0x7f,
- 0x80, 0xdd, 0xf4, 0xa3, 0xe4, 0x82, 0x7f, 0x13, 0xed, 0xb4, 0xdc, 0xc6, 0x83, 0x1b, 0x0a, 0x37,
- 0x8e, 0xc2, 0x22, 0x9c, 0x7d, 0xef, 0x1f, 0x35, 0xfb, 0xde, 0x07, 0x67, 0xdf, 0xfb, 0xb4, 0xd9,
- 0xf7, 0xae, 0x9d, 0x7d, 0xed, 0xb7, 0x19, 0xc8, 0xeb, 0x01, 0x10, 0x61, 0x28, 0x9c, 0x11, 0x5f,
- 0x9f, 0x09, 0x38, 0x8a, 0x9f, 0x1b, 0x0b, 0x77, 0x68, 0xff, 0xe1, 0x0d, 0x08, 0x39, 0x35, 0x0c,
- 0x85, 0xde, 0x8d, 0x9a, 0xbd, 0x0f, 0x6a, 0xa6, 0xe7, 0xaf, 0x61, 0xb8, 0x4b, 0xdd, 0xab, 0x0a,
- 0x9d, 0x10, 0x67, 0x48, 0x5d, 0xab, 0x22, 0xfe, 0x85, 0x23, 0xe2, 0xfd, 0x6b, 0xf5, 0xca, 0xf6,
- 0xdf, 0x4e, 0x2f, 0x2a, 0x43, 0x3a, 0x7e, 0x1a, 0xa0, 0x9e, 0x0a, 0xd4, 0x57, 0xf2, 0x1f, 0x3d,
- 0xde, 0xd5, 0x9f, 0x5e, 0xd1, 0xe8, 0x3f, 0x43, 0xba, 0x4b, 0x17, 0x0a, 0xf7, 0x7c, 0xfd, 0xb7,
- 0x00, 0x00, 0x00, 0xff, 0xff, 0xa4, 0xd6, 0xb3, 0x0a, 0x3d, 0x22, 0x00, 0x00,
+ // 3081 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0x4b, 0x73, 0x1b, 0xc7,
+ 0x11, 0x26, 0x20, 0x72, 0x09, 0x34, 0x08, 0x12, 0x1c, 0xbe, 0x20, 0x52, 0xcf, 0x75, 0x59, 0x52,
+ 0x5c, 0x36, 0x24, 0xc0, 0xa4, 0xcc, 0xc8, 0x4e, 0x95, 0xb9, 0xc4, 0x92, 0x40, 0x89, 0x02, 0xe0,
+ 0x01, 0x20, 0xd9, 0xb9, 0x6c, 0x2d, 0xb1, 0x43, 0x6a, 0xcb, 0xc0, 0x0e, 0xb2, 0xbb, 0x90, 0xa1,
+ 0x5c, 0x93, 0x5b, 0x92, 0x53, 0x2e, 0xf9, 0x0d, 0xa9, 0x4a, 0xe5, 0x90, 0x43, 0xee, 0x39, 0xe7,
+ 0x4f, 0xa4, 0x2a, 0xbf, 0x20, 0x95, 0x73, 0x2a, 0x35, 0x8f, 0x7d, 0x02, 0xa4, 0x24, 0x27, 0x37,
+ 0x4e, 0xf7, 0xf7, 0x7d, 0x3b, 0x3b, 0xd3, 0xdd, 0xd3, 0x3b, 0x20, 0xdc, 0x79, 0x43, 0x87, 0xfe,
+ 0x6b, 0xd3, 0x18, 0xbb, 0xd4, 0xa7, 0xde, 0x63, 0x32, 0xf5, 0x89, 0xe3, 0xd9, 0xd4, 0xf1, 0x2a,
+ 0xdc, 0x82, 0xf2, 0xa1, 0x65, 0x77, 0x16, 0x6a, 0x0c, 0xa8, 0x73, 0x61, 0x5f, 0x0a, 0xe8, 0xee,
+ 0xde, 0x25, 0xa5, 0x97, 0x43, 0xf2, 0x98, 0x8f, 0xce, 0x27, 0x17, 0x8f, 0xc9, 0x68, 0xec, 0xbf,
+ 0x15, 0x4e, 0xf5, 0x29, 0xa0, 0x53, 0xe2, 0xd7, 0x6d, 0xcf, 0x37, 0x9d, 0x01, 0xc1, 0xe4, 0x17,
+ 0x13, 0xe2, 0xf9, 0xe8, 0x1e, 0x14, 0xa8, 0x33, 0xa9, 0x93, 0x37, 0xf6, 0x80, 0x34, 0xad, 0x72,
+ 0xe6, 0x5e, 0xe6, 0x51, 0x1e, 0xc7, 0x4d, 0x6a, 0x15, 0x36, 0x12, 0x3c, 0x6f, 0x4c, 0x1d, 0x8f,
+ 0xa0, 0x5d, 0xc8, 0x59, 0xd2, 0xc6, 0x59, 0x45, 0x1c, 0x8e, 0xd5, 0x1a, 0x6c, 0x9e, 0x12, 0xbf,
+ 0xed, 0x4c, 0xfa, 0x8e, 0xdd, 0x74, 0x2e, 0x68, 0xf0, 0xb0, 0x5d, 0xc8, 0x4d, 0x98, 0xc5, 0x22,
+ 0xd3, 0x80, 0x13, 0x8c, 0xd5, 0x7f, 0x2c, 0xc2, 0x56, 0x8a, 0x24, 0x9f, 0xd4, 0x81, 0x9c, 0x69,
+ 0x8d, 0xba, 0xbe, 0xe9, 0x8b, 0x27, 0xad, 0xd6, 0xf6, 0x2b, 0xe1, 0x9a, 0x54, 0xe6, 0x72, 0x2a,
+ 0x47, 0xd6, 0xc8, 0x76, 0x6c, 0xcf, 0x77, 0x4d, 0xdf, 0x7e, 0x43, 0x38, 0x17, 0x87, 0x2a, 0xa8,
+ 0x0d, 0x79, 0x3a, 0x26, 0xae, 0x90, 0xcc, 0x72, 0xc9, 0xea, 0x3b, 0x25, 0xdb, 0x63, 0xc2, 0xd4,
+ 0xa8, 0x63, 0x0e, 0x85, 0x5e, 0xa4, 0xc1, 0x04, 0xc5, 0x46, 0x34, 0x1d, 0xab, 0x7c, 0xe3, 0x3d,
+ 0x05, 0x8f, 0x39, 0x63, 0x22, 0x44, 0x9b, 0x8e, 0x85, 0x23, 0x0d, 0xf5, 0x6f, 0x19, 0x28, 0xa5,
+ 0xfd, 0x08, 0x40, 0xe9, 0xb7, 0x9e, 0xb7, 0x5f, 0xb5, 0x4a, 0x0b, 0x08, 0xc1, 0x6a, 0x4f, 0x6f,
+ 0x19, 0xda, 0x51, 0x57, 0x37, 0x7a, 0xc6, 0x49, 0xfd, 0xdb, 0x52, 0x06, 0x6d, 0x03, 0x6a, 0xf4,
+ 0x5b, 0x75, 0xac, 0xd7, 0xe3, 0xf6, 0x2c, 0x2a, 0xc3, 0xe6, 0x69, 0xf3, 0xf4, 0x48, 0x6b, 0xf6,
+ 0x0c, 0xbd, 0xd7, 0xd0, 0x71, 0x4b, 0x17, 0x9e, 0x1b, 0x8c, 0xc1, 0x54, 0x4e, 0x93, 0xf6, 0xc5,
+ 0x94, 0x7a, 0xa3, 0xfe, 0x6d, 0x69, 0x69, 0x8e, 0x3a, 0xb3, 0x2b, 0x73, 0xd5, 0x99, 0x67, 0x59,
+ 0x3d, 0x85, 0x8d, 0x39, 0xfb, 0xc0, 0x84, 0x8e, 0xea, 0x2f, 0xba, 0xbd, 0xa3, 0x9e, 0x6e, 0xf4,
+ 0x5b, 0x75, 0xfd, 0xa4, 0xd9, 0xd2, 0xeb, 0xa5, 0x05, 0xf6, 0x7a, 0x67, 0xed, 0xe3, 0xe7, 0x7a,
+ 0xbd, 0x94, 0x41, 0x2b, 0x90, 0xeb, 0xb7, 0xe4, 0x28, 0xab, 0x9e, 0x40, 0x29, 0xbd, 0xfa, 0x68,
+ 0x07, 0x36, 0xda, 0x1d, 0x1d, 0xcf, 0xca, 0x14, 0x60, 0x59, 0x6f, 0x1d, 0x69, 0x67, 0x81, 0x4e,
+ 0xbd, 0xd9, 0x15, 0xa3, 0xac, 0xfa, 0xd7, 0x0c, 0xcf, 0x81, 0xf6, 0xd0, 0xef, 0x50, 0xd7, 0x3f,
+ 0xa6, 0x13, 0xc7, 0x27, 0xae, 0x87, 0xb6, 0x41, 0x19, 0x53, 0xd7, 0x6f, 0x51, 0x19, 0x94, 0x72,
+ 0x84, 0x34, 0xc8, 0xb1, 0xbf, 0x7a, 0x6f, 0xc7, 0x41, 0x94, 0x3c, 0x48, 0x6d, 0x6a, 0x52, 0xa8,
+ 0xd2, 0x91, 0x68, 0x1c, 0xf2, 0x54, 0x1d, 0x72, 0x81, 0x15, 0x95, 0x60, 0x85, 0xfd, 0x6d, 0xf4,
+ 0x5b, 0xcf, 0x5b, 0x62, 0x17, 0xb7, 0x60, 0x9d, 0x5b, 0xc2, 0x85, 0x6b, 0xb5, 0x9a, 0xa5, 0x4c,
+ 0x08, 0xec, 0xb4, 0x5b, 0x46, 0xfb, 0xac, 0x57, 0xca, 0xaa, 0x7f, 0xbf, 0x01, 0xbb, 0xb3, 0x0f,
+ 0x0c, 0x53, 0xa4, 0x0c, 0xcb, 0xfe, 0x54, 0x7b, 0xeb, 0x13, 0x8f, 0xbf, 0xc2, 0x22, 0x0e, 0x86,
+ 0xcc, 0xe3, 0x4a, 0x4f, 0x56, 0x78, 0xe4, 0x10, 0xdd, 0x82, 0xbc, 0x3f, 0xed, 0x98, 0x83, 0xef,
+ 0x89, 0xef, 0xf1, 0x98, 0x5d, 0xc4, 0x91, 0x81, 0x79, 0xdd, 0xd0, 0xbb, 0x28, 0xbc, 0xa1, 0x01,
+ 0x3d, 0x80, 0x55, 0x7f, 0xaa, 0xbb, 0x2e, 0x75, 0x03, 0xc8, 0x12, 0x87, 0xa4, 0xac, 0x0c, 0xe7,
+ 0x26, 0x71, 0x8a, 0xc0, 0xb9, 0x33, 0x38, 0x7f, 0xaa, 0x0d, 0x4c, 0xcf, 0x0f, 0x70, 0xcb, 0x81,
+ 0x5e, 0xdc, 0x2a, 0xf4, 0x12, 0xb8, 0x5c, 0xa0, 0x97, 0xc6, 0xf9, 0xd3, 0x7e, 0x1c, 0x97, 0x0f,
+ 0xf4, 0xfa, 0x33, 0x7a, 0x09, 0x1c, 0x04, 0x7a, 0xfd, 0x19, 0xbd, 0x17, 0x71, 0x5c, 0x21, 0xd0,
+ 0x7b, 0x31, 0xa3, 0x97, 0xc0, 0xad, 0x04, 0x7a, 0x71, 0xab, 0x5a, 0x0f, 0x0a, 0x64, 0x87, 0x3a,
+ 0xed, 0xb1, 0x6f, 0x0f, 0xcc, 0x21, 0x2b, 0x0d, 0xe8, 0x53, 0x58, 0xe2, 0x25, 0x9b, 0xef, 0x62,
+ 0xa1, 0xb6, 0x5d, 0x11, 0x05, 0xbd, 0x12, 0x14, 0xf4, 0x8a, 0xce, 0xbc, 0x58, 0x80, 0xd4, 0x5f,
+ 0x67, 0xe1, 0xd6, 0x3c, 0x99, 0x30, 0x2c, 0x3e, 0x81, 0xd2, 0x98, 0xfe, 0x40, 0xdc, 0x13, 0x42,
+ 0xac, 0x97, 0x74, 0xe8, 0x9b, 0x97, 0xa2, 0x82, 0x66, 0xf1, 0x8c, 0x1d, 0xd5, 0x60, 0xd3, 0x25,
+ 0x03, 0x62, 0xbf, 0x21, 0x96, 0x94, 0xea, 0x30, 0x08, 0x8f, 0x9a, 0x2c, 0x9e, 0xeb, 0x43, 0x4f,
+ 0x61, 0x7b, 0x44, 0xcc, 0xe0, 0xd1, 0x67, 0xe6, 0xc4, 0x19, 0xbc, 0x16, 0xac, 0x1b, 0x9c, 0x75,
+ 0x85, 0x97, 0xcd, 0x6b, 0x68, 0x7a, 0xc4, 0xd5, 0x6c, 0xd3, 0x3b, 0x9e, 0xb8, 0x2e, 0x71, 0x7c,
+ 0x1e, 0x63, 0x59, 0x3c, 0x63, 0x67, 0x07, 0x94, 0x4f, 0x46, 0x3c, 0xfb, 0x27, 0x2e, 0xe1, 0x71,
+ 0x96, 0xc5, 0x71, 0x93, 0xfa, 0xe7, 0x0c, 0xdc, 0x15, 0xcb, 0xa0, 0xfb, 0xaf, 0x89, 0xeb, 0x10,
+ 0x5f, 0x73, 0x6d, 0xeb, 0x92, 0xb0, 0x4c, 0x69, 0xd8, 0x9e, 0x4f, 0xdd, 0xb7, 0x08, 0x43, 0xde,
+ 0xb2, 0x5d, 0x32, 0x60, 0x15, 0xe4, 0xca, 0x43, 0xe4, 0x4a, 0x7a, 0xa5, 0x1e, 0x70, 0x71, 0x24,
+ 0xa3, 0x1e, 0x42, 0x3e, 0xb4, 0xa3, 0x22, 0xe4, 0xe3, 0x45, 0x88, 0xd5, 0xaf, 0x4e, 0xb7, 0x87,
+ 0xf5, 0xa3, 0x17, 0xa5, 0x0c, 0x5a, 0x05, 0xa8, 0xb7, 0x5f, 0xb5, 0xe4, 0x38, 0xab, 0xfe, 0x7e,
+ 0x09, 0x1e, 0xbe, 0xe3, 0x91, 0xe1, 0x1e, 0xde, 0x01, 0xb0, 0x5c, 0x3a, 0xd6, 0xdf, 0x10, 0xc7,
+ 0xf7, 0x64, 0x81, 0x8a, 0x59, 0x58, 0xf1, 0xa2, 0x03, 0x9f, 0x85, 0x5a, 0x56, 0x14, 0x2f, 0x31,
+ 0x62, 0x89, 0x3f, 0x8e, 0x25, 0x77, 0x11, 0x07, 0x43, 0xb6, 0xfa, 0xe7, 0x2e, 0x35, 0xad, 0x78,
+ 0x98, 0x2e, 0x72, 0xc8, 0x8c, 0x9d, 0x61, 0x47, 0x93, 0x21, 0xdb, 0xc0, 0x08, 0xbb, 0x24, 0xb0,
+ 0x69, 0x3b, 0xfa, 0x14, 0xd6, 0x07, 0xee, 0x80, 0xe7, 0x35, 0xb1, 0xe2, 0xf9, 0x5e, 0xc4, 0xb3,
+ 0x0e, 0xa6, 0x3c, 0x71, 0x2c, 0xe2, 0x7a, 0xf6, 0x2f, 0x49, 0x3c, 0xe9, 0x8b, 0x78, 0xc6, 0x8e,
+ 0x1e, 0xc1, 0x1a, 0x7d, 0x93, 0x84, 0xe6, 0x38, 0x34, 0x6d, 0x66, 0x48, 0xf9, 0x9a, 0x4f, 0xf7,
+ 0xe5, 0xb2, 0xe4, 0x05, 0x32, 0x65, 0x66, 0xf1, 0x1e, 0x98, 0x0e, 0x7a, 0xb4, 0x5a, 0xfb, 0x42,
+ 0xc2, 0x81, 0xc3, 0xe7, 0xfa, 0xd0, 0x3e, 0x6c, 0x49, 0x7b, 0xb5, 0x76, 0xd8, 0xa3, 0xb5, 0x83,
+ 0x83, 0xb6, 0x20, 0x15, 0x38, 0x69, 0xbe, 0x33, 0xc6, 0xaa, 0x1d, 0x3c, 0xed, 0xd1, 0x83, 0x6a,
+ 0x55, 0x3e, 0x6a, 0x25, 0xc1, 0x4a, 0x3a, 0x59, 0x6e, 0x49, 0xc7, 0x41, 0xb5, 0xd6, 0xa3, 0xd5,
+ 0x27, 0xb5, 0xcf, 0x25, 0xad, 0xc8, 0x69, 0x57, 0x78, 0xd1, 0x21, 0xec, 0x04, 0xd3, 0x78, 0x52,
+ 0xdb, 0xef, 0xd1, 0xea, 0x41, 0xf5, 0x50, 0x12, 0x57, 0x39, 0xf1, 0x2a, 0xb7, 0xfa, 0x35, 0x94,
+ 0x44, 0x50, 0x9e, 0x90, 0x41, 0x90, 0x37, 0x1f, 0x56, 0x90, 0xfe, 0x95, 0x81, 0x72, 0x5a, 0x22,
+ 0x0c, 0xe4, 0x07, 0xb0, 0x3a, 0xa0, 0x2e, 0xcb, 0x17, 0x62, 0x45, 0x47, 0x55, 0x11, 0xa7, 0xac,
+ 0xa8, 0x02, 0x28, 0xb4, 0x1c, 0x53, 0x8b, 0xbc, 0xa2, 0xae, 0x15, 0x04, 0xf7, 0x1c, 0x0f, 0x4b,
+ 0x90, 0x0b, 0x32, 0xe8, 0x92, 0x01, 0x75, 0xac, 0x20, 0xd6, 0x63, 0x16, 0x5e, 0xbb, 0xa9, 0x6f,
+ 0x0e, 0x23, 0x2d, 0x11, 0xec, 0x29, 0x2b, 0x5b, 0xf0, 0x89, 0x23, 0xf5, 0xcd, 0xf3, 0x21, 0x89,
+ 0xf0, 0x22, 0xe0, 0xaf, 0xf0, 0xaa, 0xa7, 0x41, 0xdf, 0x1a, 0x9d, 0xca, 0xa2, 0xdb, 0xdd, 0x81,
+ 0x65, 0xdb, 0xf1, 0x2f, 0x0c, 0x5b, 0xb4, 0xd5, 0xcb, 0x58, 0x61, 0xc3, 0xa6, 0x85, 0xb6, 0x40,
+ 0xa1, 0xce, 0x84, 0xd9, 0xb3, 0xdc, 0xbe, 0x44, 0x9d, 0x49, 0xd3, 0x52, 0x7f, 0x97, 0x81, 0x8f,
+ 0x99, 0xd2, 0x68, 0x60, 0x07, 0x65, 0xe1, 0xc4, 0x35, 0x47, 0x44, 0x67, 0x65, 0xca, 0x22, 0x56,
+ 0x67, 0xf4, 0xde, 0x4d, 0x3b, 0xba, 0x15, 0xeb, 0xb4, 0xf9, 0xd2, 0x35, 0x16, 0xa2, 0x5e, 0x1b,
+ 0x6d, 0xc2, 0x92, 0x4b, 0x3c, 0xe2, 0xf3, 0xd5, 0xca, 0x61, 0x31, 0xd0, 0x56, 0x61, 0xc5, 0xf6,
+ 0x8c, 0x89, 0x63, 0x1b, 0x36, 0xef, 0xc8, 0x8f, 0x61, 0xfd, 0x94, 0xf8, 0x78, 0xca, 0x6b, 0xf6,
+ 0x8f, 0x7d, 0xa9, 0x7f, 0xae, 0xc0, 0x76, 0x7a, 0x79, 0x64, 0x40, 0xdc, 0x4c, 0x49, 0x35, 0x16,
+ 0x42, 0xb1, 0x9d, 0xa4, 0x58, 0x23, 0x23, 0xe5, 0xd0, 0x43, 0x58, 0x1d, 0x53, 0xcf, 0x66, 0xcd,
+ 0xa4, 0x61, 0xb9, 0xf6, 0x85, 0x78, 0x05, 0xa5, 0x91, 0xc5, 0xc5, 0xc0, 0x5e, 0x67, 0x66, 0x06,
+ 0x74, 0xc8, 0xa5, 0x19, 0x03, 0x2e, 0x72, 0xe0, 0x0d, 0x5c, 0x0c, 0xec, 0x02, 0xf8, 0x0c, 0xca,
+ 0x16, 0x19, 0xda, 0x23, 0xdb, 0x27, 0xae, 0x31, 0xb2, 0x3d, 0xcf, 0xb0, 0x88, 0x2f, 0x0f, 0x8a,
+ 0x25, 0x4e, 0x59, 0xc4, 0xdb, 0x21, 0xe2, 0x85, 0xed, 0x79, 0xf5, 0xc0, 0x8f, 0xee, 0x02, 0x9c,
+ 0xdb, 0x63, 0x83, 0xb0, 0xca, 0x26, 0x4a, 0x9d, 0xd2, 0x58, 0xc2, 0xf9, 0x73, 0x7b, 0xcc, 0x8b,
+ 0x9d, 0x87, 0x6e, 0x03, 0x1b, 0xb0, 0x35, 0x95, 0xd5, 0x4d, 0x69, 0x28, 0x38, 0x77, 0x6e, 0x8f,
+ 0xfb, 0xcc, 0xc2, 0x2a, 0xc3, 0x05, 0x19, 0x18, 0x61, 0x50, 0x1b, 0xde, 0xdb, 0xd1, 0x39, 0x1d,
+ 0x8a, 0xea, 0xa6, 0x34, 0x96, 0xf1, 0xc6, 0x05, 0x19, 0x1c, 0x07, 0xde, 0xae, 0x70, 0xb2, 0x0c,
+ 0x17, 0x2c, 0x8b, 0xfc, 0xc0, 0x22, 0x30, 0xe2, 0xf3, 0x5a, 0xa7, 0x34, 0x72, 0x78, 0x8b, 0xf3,
+ 0xa4, 0x3f, 0x14, 0x40, 0x5f, 0xc3, 0x5e, 0x92, 0x99, 0x08, 0x69, 0x5e, 0xfa, 0x94, 0x46, 0x1e,
+ 0xdf, 0x8c, 0xb3, 0xfb, 0x71, 0x08, 0xfa, 0x18, 0x8a, 0x09, 0x05, 0x5e, 0xf9, 0x94, 0x06, 0xe0,
+ 0x95, 0x38, 0x07, 0x3d, 0x81, 0x8d, 0xe4, 0x8b, 0x89, 0x15, 0x58, 0xe1, 0xe0, 0x02, 0x5e, 0x8f,
+ 0xbf, 0x96, 0x58, 0x8a, 0x47, 0xb0, 0x36, 0xbd, 0x24, 0x23, 0xe3, 0x7b, 0xf2, 0x36, 0x58, 0xcf,
+ 0x22, 0x47, 0xaf, 0xe0, 0x22, 0x73, 0x3c, 0x27, 0x6f, 0xa3, 0x35, 0xe5, 0xc8, 0x21, 0xf5, 0x44,
+ 0x49, 0x53, 0x1a, 0x45, 0x9c, 0x63, 0xa6, 0x33, 0xea, 0x71, 0x21, 0x77, 0x6a, 0x8c, 0x87, 0xd4,
+ 0x1c, 0x79, 0x42, 0xa9, 0xbc, 0xc6, 0x41, 0xab, 0xb8, 0xe8, 0x4e, 0x3b, 0xdc, 0xce, 0x95, 0xd0,
+ 0x67, 0x80, 0x22, 0xa4, 0x43, 0x1d, 0xc3, 0xb6, 0x86, 0xa4, 0x5c, 0xe2, 0xe0, 0x35, 0xbc, 0x16,
+ 0x80, 0x5b, 0xd4, 0x69, 0x5a, 0x43, 0x1e, 0xae, 0xee, 0xd4, 0xa0, 0xa3, 0x81, 0x5d, 0x5e, 0xe7,
+ 0x98, 0x12, 0x56, 0xdc, 0x29, 0xcb, 0x56, 0xe6, 0xf2, 0xa5, 0x0b, 0x71, 0xd7, 0x3a, 0x56, 0x7c,
+ 0xe1, 0x7a, 0x06, 0x37, 0x25, 0xcb, 0x90, 0x75, 0xd7, 0x18, 0xb8, 0x03, 0x39, 0xb1, 0x0d, 0x0e,
+ 0x46, 0x78, 0x4b, 0xe8, 0xc8, 0x43, 0xec, 0x58, 0x9e, 0x95, 0x68, 0x0f, 0x72, 0xee, 0xd4, 0x38,
+ 0xe7, 0xb5, 0x72, 0x93, 0x43, 0x37, 0xa2, 0xf6, 0xfd, 0x2e, 0x00, 0x9b, 0xbd, 0x3c, 0x0e, 0xb7,
+ 0xb8, 0x7b, 0x33, 0xde, 0xa3, 0xef, 0x41, 0xce, 0x0f, 0xd8, 0xdb, 0xdc, 0xbd, 0x15, 0x7d, 0x16,
+ 0xdc, 0x05, 0xf0, 0x23, 0xf6, 0x0e, 0x77, 0x6f, 0xc7, 0xfb, 0xff, 0x8f, 0x60, 0xe5, 0x9c, 0xb8,
+ 0x86, 0x4b, 0xd8, 0x97, 0x0c, 0xb1, 0xca, 0x65, 0x0e, 0xd9, 0xc1, 0x85, 0x73, 0x56, 0x0b, 0x84,
+ 0x11, 0xdd, 0x87, 0xc2, 0x70, 0x60, 0x5d, 0x06, 0x1b, 0x76, 0x93, 0x63, 0xca, 0x18, 0x98, 0x51,
+ 0xee, 0x16, 0x9b, 0xa6, 0x65, 0x07, 0x88, 0x5d, 0x8e, 0xb8, 0x89, 0xf3, 0xae, 0x65, 0x4b, 0xc0,
+ 0x1d, 0xc8, 0xfb, 0xf6, 0x88, 0x78, 0xbe, 0x39, 0x1a, 0x97, 0xf7, 0x78, 0xb6, 0xef, 0xe2, 0xc8,
+ 0xa4, 0xad, 0x00, 0xd8, 0x9e, 0x21, 0x0b, 0x85, 0x56, 0x80, 0xbc, 0xed, 0x19, 0xa2, 0x36, 0x68,
+ 0x1b, 0xb0, 0x6e, 0x7b, 0x46, 0xb2, 0x1e, 0x48, 0x63, 0x32, 0xf7, 0xb5, 0xdb, 0xb0, 0x67, 0xb3,
+ 0xc4, 0x9e, 0x9f, 0xe7, 0xda, 0x1a, 0x14, 0x6d, 0xcf, 0x88, 0x52, 0x59, 0x96, 0xc2, 0x30, 0x75,
+ 0xb5, 0x5d, 0x28, 0xdb, 0x9e, 0x31, 0x37, 0x57, 0xb5, 0x5b, 0xb0, 0x1b, 0xfa, 0x66, 0x32, 0x52,
+ 0xbb, 0x07, 0x77, 0x66, 0xbc, 0x89, 0xac, 0xd3, 0x10, 0x94, 0xd2, 0x08, 0xad, 0x0c, 0xdb, 0x33,
+ 0xcf, 0x13, 0x33, 0xd9, 0x04, 0x64, 0x7b, 0x46, 0x2a, 0x55, 0xe4, 0x7c, 0xc3, 0xb4, 0x90, 0xa8,
+ 0x54, 0x1e, 0x68, 0x3b, 0xb0, 0x95, 0xb0, 0x06, 0x31, 0x2f, 0xd7, 0x58, 0xc6, 0xa9, 0x1c, 0xc9,
+ 0x80, 0xd6, 0xee, 0xc0, 0xad, 0xc8, 0x37, 0x1b, 0xc3, 0x5a, 0x11, 0x0a, 0xc2, 0xcf, 0x23, 0x4d,
+ 0x2e, 0x65, 0x14, 0x99, 0xd2, 0xef, 0x27, 0xfd, 0x51, 0xec, 0x69, 0xeb, 0xb0, 0xc6, 0x96, 0x3a,
+ 0x16, 0x6b, 0x5a, 0x09, 0x56, 0x6d, 0xcf, 0x88, 0x45, 0x56, 0xa0, 0x1a, 0x06, 0x92, 0x7c, 0xe1,
+ 0x30, 0x4a, 0xd4, 0xdf, 0x2e, 0xc1, 0xde, 0x35, 0x07, 0x27, 0xba, 0x0b, 0x05, 0xd6, 0x33, 0x1b,
+ 0x24, 0x6a, 0xa3, 0x95, 0x6b, 0xda, 0x68, 0x25, 0x6c, 0xa3, 0xb7, 0x41, 0xb9, 0x60, 0x5a, 0xa2,
+ 0xb3, 0x50, 0xb0, 0x1c, 0xa1, 0x9f, 0xc4, 0x9a, 0x68, 0x43, 0x22, 0xf8, 0x09, 0x83, 0xd7, 0x42,
+ 0xfb, 0x49, 0x08, 0x0d, 0x7b, 0xe5, 0x00, 0xba, 0x24, 0xa0, 0xa1, 0x5d, 0x42, 0x3f, 0x05, 0x14,
+ 0xae, 0x2c, 0xb1, 0x02, 0x30, 0x3f, 0x58, 0x70, 0x29, 0xea, 0xa1, 0x23, 0xe1, 0xb0, 0x55, 0x0e,
+ 0xb0, 0xcb, 0x42, 0x38, 0xb4, 0x4b, 0xe8, 0xc3, 0xa8, 0x83, 0x0e, 0x90, 0xfc, 0x8c, 0xc1, 0xab,
+ 0x81, 0x59, 0x02, 0x1f, 0x41, 0x49, 0xf8, 0x8d, 0xa7, 0xfb, 0x46, 0xac, 0x83, 0x56, 0xf0, 0xaa,
+ 0xb0, 0x3f, 0xdd, 0x0f, 0xdb, 0xda, 0x9d, 0x00, 0x79, 0x60, 0xf8, 0xd4, 0xa8, 0xd6, 0xbe, 0x30,
+ 0x62, 0x3d, 0xb4, 0x82, 0x37, 0x24, 0x41, 0xb4, 0xd0, 0xed, 0xa0, 0xad, 0x2d, 0x4b, 0x56, 0xb5,
+ 0x76, 0xc8, 0x68, 0xb5, 0x83, 0x83, 0x80, 0xc6, 0xcf, 0x12, 0xbc, 0x29, 0xfc, 0xa9, 0x26, 0x3a,
+ 0xe2, 0xd5, 0x0e, 0x9e, 0x32, 0xde, 0x41, 0xb5, 0x6a, 0xc4, 0xfa, 0xe8, 0x90, 0x17, 0xb4, 0xd1,
+ 0xed, 0xa0, 0x1d, 0xbe, 0x29, 0x79, 0x07, 0xd5, 0x1a, 0x9f, 0xe6, 0x93, 0xda, 0xe7, 0x46, 0xac,
+ 0x93, 0x56, 0xf0, 0x96, 0x00, 0x84, 0x8d, 0xb4, 0x64, 0x3e, 0x83, 0xdd, 0x60, 0xa6, 0x4f, 0x6a,
+ 0xfb, 0x9c, 0x7a, 0x50, 0x3d, 0x34, 0x62, 0xbd, 0xb4, 0x82, 0xb7, 0xe5, 0x5c, 0xc3, 0x56, 0x5a,
+ 0x70, 0xd5, 0x7f, 0x67, 0xe1, 0xc1, 0xbb, 0x5a, 0x39, 0xd9, 0x05, 0x69, 0x90, 0x9b, 0x8c, 0x3d,
+ 0xdf, 0x25, 0xe6, 0x48, 0x36, 0xd9, 0xf1, 0x4b, 0xa6, 0xeb, 0x14, 0x42, 0x1e, 0x3a, 0x01, 0xb0,
+ 0xe8, 0x0f, 0x8e, 0x54, 0xc9, 0x7e, 0x90, 0x4a, 0x8c, 0x89, 0x7e, 0x93, 0x81, 0x07, 0x3c, 0xcd,
+ 0x89, 0x04, 0x8b, 0x58, 0x31, 0x88, 0x84, 0x1b, 0xe3, 0x91, 0x71, 0x41, 0xdd, 0x91, 0xe9, 0xcb,
+ 0x4b, 0xce, 0xc3, 0xd4, 0x37, 0xf4, 0xbb, 0xdf, 0xb7, 0x72, 0xc2, 0xf9, 0xf8, 0x3e, 0xbd, 0x1a,
+ 0x2b, 0x20, 0xea, 0x13, 0x50, 0xc4, 0x5f, 0xfc, 0x3a, 0xb2, 0xd1, 0xc4, 0xbd, 0xef, 0x8c, 0xde,
+ 0xab, 0xb6, 0xa1, 0x35, 0x7b, 0xe2, 0x02, 0xb4, 0xdb, 0xfc, 0xb6, 0xf7, 0x9d, 0x71, 0xd2, 0xee,
+ 0x63, 0x6e, 0xcb, 0xa8, 0x7f, 0x10, 0xf7, 0x7b, 0x61, 0xcb, 0x2a, 0x97, 0xf8, 0x03, 0x7b, 0x56,
+ 0x96, 0xf3, 0x9e, 0x6f, 0xfa, 0x13, 0x91, 0xf3, 0x79, 0x2c, 0x47, 0xac, 0x88, 0x5c, 0x98, 0xf6,
+ 0xd0, 0x70, 0x89, 0xe9, 0x51, 0x87, 0xa7, 0x7b, 0x1e, 0x03, 0x33, 0x61, 0x6e, 0x41, 0x37, 0xf9,
+ 0x81, 0xcd, 0xaf, 0x56, 0x78, 0x86, 0x67, 0xd8, 0x71, 0xcd, 0xe7, 0xa2, 0xfe, 0x6a, 0x09, 0xd6,
+ 0x4e, 0x89, 0xff, 0xd2, 0x1c, 0x4e, 0xc2, 0xbb, 0xf7, 0x2f, 0x53, 0x57, 0xe8, 0x85, 0xda, 0xed,
+ 0xe4, 0x7a, 0xa6, 0x2e, 0xeb, 0x59, 0x0f, 0x1f, 0x10, 0xd0, 0x97, 0xb0, 0x3c, 0x11, 0x17, 0xca,
+ 0x72, 0xc3, 0xef, 0x5e, 0x7d, 0xe1, 0x1c, 0xb0, 0x03, 0x06, 0x3a, 0x82, 0x02, 0x15, 0x57, 0x89,
+ 0x5c, 0xe0, 0xc6, 0xbc, 0x87, 0xa7, 0xee, 0x1a, 0x1b, 0x0b, 0x38, 0xce, 0x41, 0x4d, 0x58, 0xa5,
+ 0xce, 0x24, 0x76, 0xeb, 0xc4, 0xd7, 0x63, 0xde, 0x34, 0x92, 0x97, 0x53, 0x8d, 0x05, 0x9c, 0x22,
+ 0x22, 0x0c, 0x45, 0xe2, 0xbf, 0x8e, 0xae, 0x40, 0xf8, 0xda, 0x15, 0x6a, 0x9f, 0xbc, 0xff, 0x05,
+ 0x4d, 0x63, 0x01, 0x27, 0x25, 0xd0, 0xcf, 0xf8, 0x57, 0xa1, 0x74, 0xf3, 0x0a, 0x5a, 0xa8, 0xed,
+ 0xcd, 0x08, 0x46, 0x9f, 0xa9, 0x8d, 0x05, 0x1c, 0x23, 0x20, 0x0d, 0x80, 0xf2, 0x99, 0xf3, 0x37,
+ 0x5b, 0xe6, 0xf4, 0x7b, 0x33, 0xf4, 0xd4, 0x17, 0x1f, 0xd3, 0x88, 0x58, 0xe8, 0x0c, 0x96, 0x59,
+ 0x3c, 0x31, 0x81, 0x1c, 0x17, 0x78, 0xf2, 0x01, 0xd9, 0x12, 0x6e, 0x99, 0x94, 0x40, 0x87, 0x10,
+ 0xc4, 0x12, 0xaf, 0xc7, 0x85, 0xda, 0xad, 0xa4, 0x5a, 0xf2, 0x3b, 0x8d, 0x31, 0x25, 0x5c, 0xcb,
+ 0xc3, 0xb2, 0x2b, 0xac, 0xea, 0x1f, 0x73, 0xfc, 0x1b, 0x5f, 0x46, 0xa1, 0x4c, 0x8f, 0x67, 0x61,
+ 0xb8, 0x8b, 0x8b, 0x31, 0x35, 0x29, 0x9c, 0x00, 0x57, 0xba, 0x1c, 0x19, 0xa6, 0x84, 0x0e, 0x79,
+ 0xe2, 0xba, 0x22, 0xfc, 0xe5, 0x1d, 0xf9, 0xc3, 0xeb, 0xe8, 0xfc, 0x00, 0x13, 0x70, 0x1c, 0x31,
+ 0xd1, 0x57, 0xb1, 0x4c, 0x10, 0xc1, 0x78, 0xe7, 0xaa, 0x4c, 0x10, 0x42, 0x89, 0x54, 0xf8, 0x2a,
+ 0x4a, 0x85, 0xc5, 0x2b, 0x76, 0x2a, 0xf5, 0xdb, 0x4b, 0x3c, 0x17, 0x9e, 0xc3, 0xca, 0x58, 0xc4,
+ 0xb9, 0xef, 0x10, 0xd7, 0x93, 0xc1, 0xf7, 0xf1, 0xb5, 0xc9, 0x10, 0xd3, 0x49, 0x90, 0xd1, 0x37,
+ 0x33, 0x59, 0x21, 0x42, 0xef, 0xe1, 0x3b, 0xb2, 0x22, 0x26, 0x98, 0xce, 0x8e, 0x73, 0x58, 0x4f,
+ 0x84, 0x76, 0x2c, 0x22, 0x6b, 0xef, 0x9f, 0x21, 0xb1, 0x07, 0xcc, 0xca, 0x21, 0x3d, 0x91, 0x2d,
+ 0x22, 0x5a, 0x3f, 0xba, 0x26, 0x5b, 0x62, 0x6a, 0xf1, 0xac, 0x79, 0xce, 0xdf, 0xbe, 0x43, 0x9d,
+ 0x60, 0x9d, 0x64, 0xa8, 0xde, 0xbf, 0x26, 0x73, 0x12, 0xef, 0x1d, 0xa3, 0xa2, 0x3e, 0xbf, 0xe4,
+ 0x08, 0x95, 0x80, 0x2b, 0x55, 0x3f, 0xf8, 0xc0, 0xe1, 0x75, 0x2b, 0xd2, 0x41, 0x3f, 0x8d, 0xf2,
+ 0xa8, 0x30, 0xaf, 0xec, 0xa5, 0x0e, 0x8f, 0x58, 0x22, 0xa9, 0x55, 0x50, 0x44, 0xf8, 0xa3, 0x4d,
+ 0x28, 0x75, 0x7b, 0x47, 0xbd, 0x7e, 0x37, 0xf1, 0xcb, 0x93, 0x02, 0xd9, 0xf6, 0xf3, 0x52, 0x06,
+ 0xe5, 0x61, 0x49, 0xc7, 0xb8, 0x8d, 0x4b, 0x59, 0xf5, 0x4f, 0x19, 0x28, 0xc4, 0x62, 0x9e, 0x11,
+ 0xb1, 0x7e, 0xd4, 0x6d, 0xb7, 0x12, 0xc4, 0x35, 0x28, 0xf4, 0x5b, 0xdd, 0x7e, 0xa7, 0xd3, 0xc6,
+ 0x3d, 0xfe, 0xb3, 0xd5, 0x16, 0xac, 0x37, 0x5b, 0x2f, 0x8f, 0xce, 0x9a, 0x75, 0xa3, 0xae, 0xbf,
+ 0x6c, 0x1e, 0xeb, 0x46, 0xb3, 0x5e, 0xca, 0xc6, 0xcd, 0x0c, 0x6a, 0xf4, 0xbe, 0xeb, 0xe8, 0xa5,
+ 0x1b, 0xa8, 0x00, 0xcb, 0xbd, 0xe6, 0x0b, 0xbd, 0xdd, 0xef, 0x95, 0x16, 0xd9, 0x13, 0x02, 0x0c,
+ 0xd6, 0xbf, 0x11, 0x90, 0x25, 0x76, 0x5a, 0x36, 0x5b, 0x3d, 0x1d, 0xb7, 0x8e, 0xce, 0x0c, 0x31,
+ 0x37, 0x45, 0xd8, 0xe2, 0x0f, 0x29, 0x2d, 0x6b, 0x00, 0x39, 0x57, 0xbe, 0xb9, 0xfa, 0x12, 0xd6,
+ 0xba, 0xa9, 0x13, 0xeb, 0x10, 0x56, 0xcc, 0xa1, 0xe9, 0x8e, 0xe4, 0xcf, 0xce, 0xf2, 0xd4, 0xda,
+ 0xa8, 0xc8, 0x5f, 0xa1, 0x8f, 0x98, 0x4f, 0xfc, 0x6c, 0xc9, 0x96, 0xdd, 0x8c, 0x86, 0xf1, 0x22,
+ 0xf4, 0x9f, 0x0c, 0x94, 0xba, 0x1f, 0x52, 0x84, 0xba, 0xff, 0x5b, 0x11, 0xea, 0xbe, 0x5f, 0x11,
+ 0xfa, 0x31, 0xdb, 0xbb, 0xff, 0x63, 0x76, 0x57, 0xb5, 0x61, 0xab, 0x6b, 0x3b, 0x97, 0x43, 0x92,
+ 0x6e, 0x08, 0x76, 0x21, 0xe7, 0x9b, 0xee, 0x25, 0xf1, 0xc3, 0x4b, 0xbd, 0x70, 0x8c, 0xf6, 0xc3,
+ 0x05, 0x94, 0xe7, 0xfd, 0xee, 0xdc, 0x3a, 0xcb, 0x11, 0x38, 0x5c, 0xeb, 0x6f, 0x60, 0x3b, 0xfd,
+ 0x28, 0xb9, 0xe0, 0x5f, 0x44, 0x3b, 0x2d, 0xb7, 0x71, 0xef, 0x9a, 0xc2, 0x8d, 0xa3, 0xb0, 0x08,
+ 0x67, 0xdf, 0xfd, 0x7f, 0xcd, 0xbe, 0xfb, 0xce, 0xd9, 0x77, 0x3f, 0x6c, 0xf6, 0xdd, 0x2b, 0x67,
+ 0x5f, 0xfb, 0x4b, 0x06, 0xf2, 0x7a, 0x00, 0x44, 0x18, 0x0a, 0xa7, 0xc4, 0xd7, 0xa7, 0x02, 0x8e,
+ 0xe2, 0xe7, 0xc6, 0xdc, 0x1d, 0xda, 0xbd, 0x7f, 0x0d, 0x42, 0x4e, 0x0d, 0x43, 0xa1, 0x7b, 0xad,
+ 0x66, 0xf7, 0x9d, 0x9a, 0xe9, 0xf9, 0x6b, 0x18, 0x6e, 0x53, 0xf7, 0xb2, 0x42, 0xc7, 0xc4, 0x19,
+ 0x50, 0xd7, 0xaa, 0x88, 0xff, 0x03, 0x89, 0x78, 0x3f, 0xaf, 0x5e, 0xda, 0xfe, 0xeb, 0xc9, 0x79,
+ 0x65, 0x40, 0x47, 0x8f, 0x03, 0xd4, 0x63, 0x81, 0xfa, 0x4c, 0xfe, 0xb7, 0xc8, 0x9b, 0x83, 0xc7,
+ 0x97, 0x34, 0xfa, 0xf7, 0x92, 0xce, 0xc2, 0xb9, 0xc2, 0x3d, 0x9f, 0xff, 0x37, 0x00, 0x00, 0xff,
+ 0xff, 0x3b, 0x54, 0x5a, 0x6b, 0x82, 0x22, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
diff --git a/vendor/modules.txt b/vendor/modules.txt
index f412695..409b744 100644
--- a/vendor/modules.txt
+++ b/vendor/modules.txt
@@ -140,7 +140,7 @@
github.com/opencord/voltha-lib-go/v7/pkg/platform
github.com/opencord/voltha-lib-go/v7/pkg/probe
github.com/opencord/voltha-lib-go/v7/pkg/version
-# github.com/opencord/voltha-protos/v5 v5.0.1
+# github.com/opencord/voltha-protos/v5 v5.0.2
## explicit
github.com/opencord/voltha-protos/v5/go/adapter_services
github.com/opencord/voltha-protos/v5/go/common