diff --git a/LibreNMS/DB/SyncsModels.php b/LibreNMS/DB/SyncsModels.php
index ed29ff47ef..93e7ffe0f0 100644
--- a/LibreNMS/DB/SyncsModels.php
+++ b/LibreNMS/DB/SyncsModels.php
@@ -41,14 +41,14 @@ trait SyncsModels
$models = $models->keyBy->getCompositeKey();
$existing = $device->$relationship->keyBy->getCompositeKey();
- foreach ($existing as $key => $existing_lsp) {
- if ($models->offsetExists($key)) {
+ foreach ($existing as $exist_key => $exist_value) {
+ if ($models->offsetExists($exist_key)) {
// update
- $existing_lsp->fill($models->get($key)->getAttributes())->save();
+ $exist_value->fill($models->get($exist_key)->getAttributes())->save();
} else {
// delete
- $existing_lsp->delete();
- $existing->forget($key);
+ $exist_value->delete();
+ $existing->forget($exist_key);
}
}
diff --git a/LibreNMS/Interfaces/Discovery/MplsDiscovery.php b/LibreNMS/Interfaces/Discovery/MplsDiscovery.php
index 45804b49f1..a436d874ad 100644
--- a/LibreNMS/Interfaces/Discovery/MplsDiscovery.php
+++ b/LibreNMS/Interfaces/Discovery/MplsDiscovery.php
@@ -1,6 +1,6 @@
syncModels($os->getDeviceModel(), 'mplsLspPaths', $os->discoverMplsPaths($lsps));
+ echo "\nMPLS SDPs: ";
+ ModuleModelObserver::observe('\App\Models\MplsSdp');
+ $sdps = $this->syncModels($os->getDeviceModel(), 'mplsSdps', $os->discoverMplsSdps());
+
+ echo "\nMPLS Services: ";
+ ModuleModelObserver::observe('\App\Models\MplsService');
+ $svcs = $this->syncModels($os->getDeviceModel(), 'mplsServices', $os->discoverMplsServices());
+
+ echo "\nMPLS SAPs: ";
+ ModuleModelObserver::observe('\App\Models\MplsSap');
+ $this->syncModels($os->getDeviceModel(), 'mplsSaps', $os->discoverMplsSaps($svcs));
+
+ echo "\nMPLS SDP Bindings: ";
+ ModuleModelObserver::observe('\App\Models\MplsSdpBind');
+ $this->syncModels($os->getDeviceModel(), 'mplsSdpBinds', $os->discoverMplsSdpBinds($sdps, $svcs));
+
echo PHP_EOL;
}
}
@@ -77,6 +93,22 @@ class Mpls implements Module
ModuleModelObserver::observe('\App\Models\MplsLspPath');
$this->syncModels($os->getDeviceModel(), 'mplsLspPaths', $os->pollMplsPaths($lsps));
+ echo "\nMPLS SDPs: ";
+ ModuleModelObserver::observe('\App\Models\MplsSdp');
+ $sdps = $this->syncModels($os->getDeviceModel(), 'mplsSdps', $os->pollMplsSdps());
+
+ echo "\nMPLS Services: ";
+ ModuleModelObserver::observe('\App\Models\MplsService');
+ $svcs = $this->syncModels($os->getDeviceModel(), 'mplsServices', $os->pollMplsServices());
+
+ echo "\nMPLS SAPs: ";
+ ModuleModelObserver::observe('\App\Models\MplsSap');
+ $this->syncModels($os->getDeviceModel(), 'mplsSaps', $os->pollMplsSaps($svcs));
+
+ echo "\nMPLS SDP Bindings: ";
+ ModuleModelObserver::observe('\App\Models\MplsSdpBind');
+ $this->syncModels($os->getDeviceModel(), 'mplsSdpBinds', $os->pollMplsSdpBinds($sdps, $svcs));
+
echo PHP_EOL;
}
}
@@ -91,5 +123,9 @@ class Mpls implements Module
{
$os->getDeviceModel()->mplsLsps()->delete();
$os->getDeviceModel()->mplsLspPaths()->delete();
+ $os->getDeviceModel()->mplsSdps()->delete();
+ $os->getDeviceModel()->mplsServices()->delete();
+ $os->getDeviceModel()->mplsSaps()->delete();
+ $os->getDeviceModel()->mplsSdpBinds()->delete();
}
}
diff --git a/LibreNMS/OS/Timos.php b/LibreNMS/OS/Timos.php
index fcad0ac101..42af2c3ee1 100644
--- a/LibreNMS/OS/Timos.php
+++ b/LibreNMS/OS/Timos.php
@@ -29,6 +29,10 @@ namespace LibreNMS\OS;
use App\Models\MplsLsp;
use App\Models\MplsLspPath;
+use App\Models\MplsSdp;
+use App\Models\MplsService;
+use App\Models\MplsSap;
+use App\Models\MplsSdpBind;
use Illuminate\Support\Collection;
use LibreNMS\Interfaces\Discovery\MplsDiscovery;
use LibreNMS\Interfaces\Polling\MplsPolling;
@@ -36,6 +40,50 @@ use LibreNMS\OS;
class Timos extends OS implements MplsDiscovery, MplsPolling
{
+ /**
+ * @param tmnxEnacpVal
+ * @return encapsulation string
+ * see TIMETRA-TC-MIB::TmnxEncapVal
+ */
+ private function nokiaEncap($tmnxEncapVal)
+ {
+ // implement other encapsulation values
+ $map = sprintf("%032b", $tmnxEncapVal);
+
+ if (substr($map, -32, 20) == '00000000000000000000') { // 12-bit IEEE 802.1Q VLAN ID
+ if ($tmnxEncapVal == 4095) {
+ return '*';
+ }
+ }
+
+ return $tmnxEncapVal;
+ }
+
+ /**
+ * @param tmnxPortID a 32bit encoded value
+ * @param scheme
+ * @return converted ifName
+ * see TIMETRA-TC-MIB::TmnxPortID
+ */
+ private function nokiaIfName($tmnxPortId, $scheme)
+ {
+ // Fixme implement other schemes and channels
+ if ($scheme == 'schemeA') {
+ $map = sprintf("%032b", $tmnxPortId);
+
+ if (substr($map, -32, 4) == '0101') { // LAG Port
+ if (substr($map, -28, 4) == '1011') { // Pseudowire Port
+ return "pw-" . bindec(substr($map, -10, 10));
+ }
+ return "lag-" . bindec(substr($map, -10, 10));
+ }
+ $slot = bindec(substr($map, -29, 4));
+ $mda = bindec(substr($map, -25, 4));
+ $port = bindec(substr($map, -21, 6));
+ return $slot . "/" . $mda . "/" . $port;
+ }
+ }
+
/**
* @return Collection MplsLsp objects
*/
@@ -105,6 +153,166 @@ class Timos extends OS implements MplsDiscovery, MplsPolling
return $paths;
}
+ /**
+ * @return Collection MplsSdp objects
+ */
+ public function discoverMplsSdps()
+ {
+ $mplsSdpCache = snmpwalk_cache_multi_oid($this->getDevice(), 'sdpInfoTable', [], 'TIMETRA-SDP-MIB', 'nokia', '-OQUst');
+
+ $sdps = collect();
+ foreach ($mplsSdpCache as $value) {
+ if ((!empty($value['sdpFarEndInetAddress'])) && ($value['sdpFarEndInetAddressType'] == 'ipv4')) {
+ $ip = long2ip(hexdec(str_replace(' ', '', $value['sdpFarEndInetAddress'])));
+ } else {
+ #Fixme implement ipv6 conversion
+ $ip = $value['sdpFarEndInetAddress'];
+ }
+ $sdps->push(new MplsSdp([
+ 'sdp_oid' => $value['sdpId'],
+ 'device_id' => $this->getDeviceId(),
+ 'sdpRowStatus' => $value['sdpRowStatus'],
+ 'sdpDelivery' => $value['sdpDelivery'],
+ 'sdpDescription' => $value['sdpDescription'],
+ 'sdpAdminStatus' => $value['sdpAdminStatus'],
+ 'sdpOperStatus' => $value['sdpOperStatus'],
+ 'sdpAdminPathMtu' => $value['sdpAdminPathMtu'],
+ 'sdpOperPathMtu' => $value['sdpOperPathMtu'],
+ 'sdpLastMgmtChange' => round($value['sdpLastMgmtChange'] / 100),
+ 'sdpLastStatusChange' => round($value['sdpLastStatusChange'] / 100),
+ 'sdpActiveLspType' => $value['sdpActiveLspType'],
+ 'sdpFarEndInetAddressType' => $value['sdpFarEndInetAddressType'],
+ 'sdpFarEndInetAddress' => $ip,
+ ]));
+ }
+
+ return $sdps;
+ }
+
+ /**
+ * @return Collection MplsService objects
+ */
+ public function discoverMplsServices()
+ {
+ $mplsSvcCache = snmpwalk_cache_multi_oid($this->getDevice(), 'svcBaseInfoTable', [], 'TIMETRA-SERV-MIB', 'nokia', '-OQUst');
+ $mplsSvcCache = snmpwalk_cache_multi_oid($this->getDevice(), 'svcTlsInfoTable', $mplsSvcCache, 'TIMETRA-SERV-MIB', 'nokia', '-OQUst');
+
+ $svcs = collect();
+
+ // Workaround, remove some defalt entries we do not want to see
+ $filter = '/^\w* Service for internal purposes only/';
+
+ foreach ($mplsSvcCache as $key => $value) {
+ $garbage = preg_match($filter, $value['svcDescription']);
+ if ($garbage) {
+ unset($key);
+ continue;
+ }
+
+ $svcs->push(new MplsService([
+ 'svc_oid' => $value['svcId'],
+ 'device_id' => $this->getDeviceId(),
+ 'svcRowStatus' => $value['svcRowStatus'],
+ 'svcType' => $value['svcType'],
+ 'svcCustId' => $value['svcCustId'],
+ 'svcAdminStatus' => $value['svcAdminStatus'],
+ 'svcOperStatus' => $value['svcOperStatus'],
+ 'svcDescription' => $value['svcDescription'],
+ 'svcMtu' => $value['svcMtu'],
+ 'svcNumSaps' => $value['svcNumSaps'],
+ 'svcNumSdps' => $value['svcNumSdps'],
+ 'svcLastMgmtChange' => round($value['svcLastMgmtChange'] / 100),
+ 'svcLastStatusChange' => round($value['svcLastStatusChange'] / 100),
+ 'svcVRouterId' => $value['svcVRouterId'],
+ 'svcTlsMacLearning' => $value['svcTlsMacLearning'],
+ 'svcTlsStpAdminStatus' => $value['svcTlsStpAdminStatus'],
+ 'svcTlsStpOperStatus' => $value['svcTlsStpOperStatus'],
+ 'svcTlsFdbTableSize' => $value['svcTlsFdbTableSize'],
+ 'svcTlsFdbNumEntries' => $value['svcTlsFdbNumEntries'],
+ ]));
+ }
+ return $svcs;
+ }
+
+ /**
+ * @return Collection MplsSap objects
+ */
+ public function discoverMplsSaps($svcs)
+ {
+ $mplsSapCache = snmpwalk_cache_multi_oid($this->getDevice(), 'sapBaseInfoTable', [], 'TIMETRA-SAP-MIB', 'nokia', '-OQUst');
+ $portScheme = snmp_get($this->getDevice(), 'tmnxChassisPortIdScheme.1', '-Oqv', 'TIMETRA-CHASSIS-MIB', 'nokia');
+
+ $saps = collect();
+
+ // Workaround, there are some oids not covered by actual MIB, try to filter them
+ // i.e. sapBaseInfoEntry.300.118208001.1342177283.10
+ $filter_key = '/300\.[0-9]+\.[0-9]+\.[0-9]+/';
+ // remove some defalt entries we do not want to see
+ $filter_value = '/^Internal SAP/';
+
+ foreach ($mplsSapCache as $key => $value) {
+ if (preg_match($filter_key, $key) || preg_match($filter_value, $value['sapDescription'])) {
+ unset($key);
+ continue;
+ }
+ list($svcId, $sapPortId, $sapEncapValue) = explode('.', $key);
+ $svc_id = $svcs->firstWhere('svc_oid', $svcId)->svc_id;
+ $saps->push(new MplsSap([
+ 'svc_id' => $svc_id,
+ 'svc_oid' => $svcId,
+ 'sapPortId' => $sapPortId,
+ 'ifName' => $this->nokiaIfName($sapPortId, $portScheme),
+ 'device_id' => $this->getDeviceId(),
+ 'sapEncapValue' => $this->nokiaEncap($sapEncapValue),
+ 'sapRowStatus' => $value['sapRowStatus'],
+ 'sapType' => $value['sapType'],
+ 'sapDescription' => $value['sapDescription'],
+ 'sapAdminStatus' => $value['sapAdminStatus'],
+ 'sapOperStatus' => $value['sapOperStatus'],
+ 'sapLastMgmtChange' => round($value['sapLastMgmtChange'] / 100),
+ 'sapLastStatusChange' => round($value['sapLastStatusChange'] /100),
+ ]));
+ }
+ return $saps;
+ }
+
+
+ /**
+ * @return Collection MplsSdpBind objects
+ */
+ public function discoverMplsSdpBinds($sdps, $svcs)
+ {
+ $mplsBindCache = snmpwalk_cache_multi_oid($this->getDevice(), 'sdpBindTable', [], 'TIMETRA-SDP-MIB', 'nokia', '-OQUsbt');
+ $mplsBindCache = snmpwalk_cache_multi_oid($this->getDevice(), 'sdpBindBaseStatsTable', $mplsBindCache, 'TIMETRA-SDP-MIB', 'nokia', '-OQUsb');
+
+ $binds = collect();
+ foreach ($mplsBindCache as $value) {
+ $bind_id = str_replace(' ', '', $value['sdpBindId']);
+ $sdp_oid = hexdec(substr($bind_id, 0, 8));
+ $svc_oid = hexdec(substr($bind_id, 9, 16));
+ $sdp_id = $sdps->firstWhere('sdp_oid', $sdp_oid)->sdp_id;
+ $svc_id = $svcs->firstWhere('svc_oid', $svc_oid)->svc_id;
+ $binds->push(new MplsSdpBind([
+ 'sdp_id' => $sdp_id,
+ 'svc_id' => $svc_id,
+ 'sdp_oid' => $sdp_oid,
+ 'svc_oid' => $svc_oid,
+ 'device_id' => $this->getDeviceId(),
+ 'sdpBindRowStatus' => $value['sdpBindRowStatus'],
+ 'sdpBindAdminStatus' => $value['sdpBindAdminStatus'],
+ 'sdpBindOperStatus' => $value['sdpBindOperStatus'],
+ 'sdpBindLastMgmtChange' => round($value['sdpBindLastMgmtChange'] / 100),
+ 'sdpBindLastStatusChange' => round($value['sdpBindLastStatusChange'] / 100),
+ 'sdpBindType' => $value['sdpBindType'],
+ 'sdpBindVcType' => $value['sdpBindVcType'],
+ 'sdpBindBaseStatsIngFwdPackets' => $value['sdpBindBaseStatsIngressForwardedPackets'],
+ 'sdpBindBaseStatsIngFwdOctets' => $value['sdpBindBaseStatsIngFwdOctets'],
+ 'sdpBindBaseStatsEgrFwdPackets' => $value['sdpBindBaseStatsEgressForwardedPackets'],
+ 'sdpBindBaseStatsEgrFwdOctets' => $value['sdpBindBaseStatsEgressForwardedOctets'],
+ ]));
+ }
+ return $binds;
+ }
/**
* @return Collection MplsLsp objects
@@ -188,4 +396,165 @@ class Timos extends OS implements MplsDiscovery, MplsPolling
return $paths;
}
+
+ /**
+ * @return Collection MplsSdp objects
+ */
+ public function pollMplsSdps()
+ {
+ $mplsSdpCache = snmpwalk_cache_multi_oid($this->getDevice(), 'sdpInfoTable', [], 'TIMETRA-SDP-MIB', 'nokia', '-OQUst');
+
+ $sdps = collect();
+ foreach ($mplsSdpCache as $value) {
+ if ((!empty($value['sdpFarEndInetAddress'])) && ($value['sdpFarEndInetAddressType'] == 'ipv4')) {
+ $ip = long2ip(hexdec(str_replace(' ', '', $value['sdpFarEndInetAddress'])));
+ } else {
+ #Fixme implement ipv6 conversion
+ $ip = $value['sdpFarEndInetAddress'];
+ }
+ $sdps->push(new MplsSdp([
+ 'sdp_oid' => $value['sdpId'],
+ 'device_id' => $this->getDeviceId(),
+ 'sdpRowStatus' => $value['sdpRowStatus'],
+ 'sdpDelivery' => $value['sdpDelivery'],
+ 'sdpDescription' => $value['sdpDescription'],
+ 'sdpAdminStatus' => $value['sdpAdminStatus'],
+ 'sdpOperStatus' => $value['sdpOperStatus'],
+ 'sdpAdminPathMtu' => $value['sdpAdminPathMtu'],
+ 'sdpOperPathMtu' => $value['sdpOperPathMtu'],
+ 'sdpLastMgmtChange' => round($value['sdpLastMgmtChange'] / 100),
+ 'sdpLastStatusChange' => round($value['sdpLastStatusChange'] / 100),
+ 'sdpActiveLspType' => $value['sdpActiveLspType'],
+ 'sdpFarEndInetAddressType' => $value['sdpFarEndInetAddressType'],
+ 'sdpFarEndInetAddress' => $ip,
+ ]));
+ }
+
+ return $sdps;
+ }
+
+ /**
+ * @return Collection MplsService objects
+ */
+ public function pollMplsServices()
+ {
+ $mplsSvcCache = snmpwalk_cache_multi_oid($this->getDevice(), 'svcBaseInfoTable', [], 'TIMETRA-SERV-MIB', 'nokia', '-OQUst');
+ $mplsSvcCache = snmpwalk_cache_multi_oid($this->getDevice(), 'svcTlsInfoTable', $mplsSvcCache, 'TIMETRA-SERV-MIB', 'nokia', '-OQUst');
+
+ $svcs = collect();
+
+ // Workaround, remove some default entries we do not want to see
+ $filter = '/^\w* Service for internal purposes only/';
+
+ foreach ($mplsSvcCache as $key => $value) {
+ $garbage = preg_match($filter, $value['svcDescription']);
+ if ($garbage) {
+ unset($key);
+ continue;
+ }
+ $svcs->push(new MplsService([
+ 'svc_oid' => $value['svcId'],
+ 'device_id' => $this->getDeviceId(),
+ 'svcRowStatus' => $value['svcRowStatus'],
+ 'svcType' => $value['svcType'],
+ 'svcCustId' => $value['svcCustId'],
+ 'svcAdminStatus' => $value['svcAdminStatus'],
+ 'svcOperStatus' => $value['svcOperStatus'],
+ 'svcDescription' => $value['svcDescription'],
+ 'svcMtu' => $value['svcMtu'],
+ 'svcNumSaps' => $value['svcNumSaps'],
+ 'svcNumSdps' => $value['svcNumSdps'],
+ 'svcLastMgmtChange' => round($value['svcLastMgmtChange'] / 100),
+ 'svcLastStatusChange' => round($value['svcLastStatusChange'] / 100),
+ 'svcVRouterId' => $value['svcVRouterId'],
+ 'svcTlsMacLearning' => $value['svcTlsMacLearning'],
+ 'svcTlsStpAdminStatus' => $value['svcTlsStpAdminStatus'],
+ 'svcTlsStpOperStatus' => $value['svcTlsStpOperStatus'],
+ 'svcTlsFdbTableSize' => $value['svcTlsFdbTableSize'],
+ 'svcTlsFdbNumEntries' => $value['svcTlsFdbNumEntries'],
+ ]));
+ }
+
+ return $svcs;
+ }
+
+ /**
+ * @return Collection MplsSap objects
+ */
+ public function pollMplsSaps($svcs)
+ {
+ $mplsSapCache = snmpwalk_cache_multi_oid($this->getDevice(), 'sapBaseInfoTable', [], 'TIMETRA-SAP-MIB', 'nokia', '-OQUst');
+ $portScheme = snmp_get($this->getDevice(), 'tmnxChassisPortIdScheme.1', '-Oqv', 'TIMETRA-CHASSIS-MIB', 'nokia');
+
+ $saps = collect();
+
+ // Workaround, there are some oids not covered by actual MIB, try to filter them
+ // i.e. sapBaseInfoEntry.300.118208001.1342177283.10
+ $filter_key = '/300\.[0-9]+\.[0-9]+\.[0-9]+/';
+ // remove some default entries we do not want to see
+ $filter_value = '/^Internal SAP/';
+
+ foreach ($mplsSapCache as $key => $value) {
+ if (preg_match($filter_key, $key) || preg_match($filter_value, $value['sapDescription'])) {
+ unset($key);
+ continue;
+ }
+ list($svcId, $sapPortId, $sapEncapValue) = explode('.', $key);
+ $svc_id = $svcs->firstWhere('svc_oid', $svcId)->svc_id;
+ $saps->push(new MplsSap([
+ 'svc_id' => $svc_id,
+ 'svc_oid' => $svcId,
+ 'sapPortId' => $sapPortId,
+ 'ifName' => $this->nokiaIfName($sapPortId, $portScheme),
+ 'device_id' => $this->getDeviceId(),
+ 'sapEncapValue' => $this->nokiaEncap($sapEncapValue),
+ 'sapRowStatus' => $value['sapRowStatus'],
+ 'sapType' => $value['sapType'],
+ 'sapDescription' => $value['sapDescription'],
+ 'sapAdminStatus' => $value['sapAdminStatus'],
+ 'sapOperStatus' => $value['sapOperStatus'],
+ 'sapLastMgmtChange' => round($value['sapLastMgmtChange'] / 100),
+ 'sapLastStatusChange' => round($value['sapLastStatusChange'] /100),
+ ]));
+ }
+ return $saps;
+ }
+
+ /**
+ * @return Collection MplsSDpBind objects
+ */
+ public function pollMplsSdpBinds($sdps, $svcs)
+ {
+ $mplsBindCache = snmpwalk_cache_multi_oid($this->getDevice(), 'sdpBindTable', [], 'TIMETRA-SDP-MIB', 'nokia', '-OQUsbt');
+ $mplsBindCache = snmpwalk_cache_multi_oid($this->getDevice(), 'sdpBindBaseStatsTable', $mplsBindCache, 'TIMETRA-SDP-MIB', 'nokia', '-OQUsb');
+
+ $binds = collect();
+ foreach ($mplsBindCache as $value) {
+ $bind_id = str_replace(' ', '', $value['sdpBindId']);
+ $sdp_oid = hexdec(substr($bind_id, 0, 8));
+ $svc_oid = hexdec(substr($bind_id, 9, 16));
+ $sdp_id = $sdps->firstWhere('sdp_oid', $sdp_oid)->sdp_id;
+ $svc_id = $svcs->firstWhere('svc_oid', $svc_oid)->svc_id;
+ $binds->push(new MplsSdpBind([
+ 'sdp_id' => $sdp_id,
+ 'svc_id' => $svc_id,
+ 'sdp_oid' => $sdp_oid,
+ 'svc_oid' => $svc_oid,
+ 'device_id' => $this->getDeviceId(),
+ 'sdpBindRowStatus' => $value['sdpBindRowStatus'],
+ 'sdpBindAdminStatus' => $value['sdpBindAdminStatus'],
+ 'sdpBindOperStatus' => $value['sdpBindOperStatus'],
+ 'sdpBindLastMgmtChange' => round($value['sdpBindLastMgmtChange'] / 100),
+ 'sdpBindLastStatusChange' => round($value['sdpBindLastStatusChange'] / 100),
+ 'sdpBindType' => $value['sdpBindType'],
+ 'sdpBindVcType' => $value['sdpBindVcType'],
+ 'sdpBindBaseStatsIngFwdPackets' => $value['sdpBindBaseStatsIngressForwardedPackets'],
+ 'sdpBindBaseStatsIngFwdOctets' => $value['sdpBindBaseStatsIngFwdOctets'],
+ 'sdpBindBaseStatsEgrFwdPackets' => $value['sdpBindBaseStatsEgressForwardedPackets'],
+ 'sdpBindBaseStatsEgrFwdOctets' => $value['sdpBindBaseStatsEgressForwardedOctets'],
+ ]));
+ }
+
+ return $binds;
+ }
}
diff --git a/app/Models/Device.php b/app/Models/Device.php
index 0949c89fbd..b29e4ec06a 100644
--- a/app/Models/Device.php
+++ b/app/Models/Device.php
@@ -566,6 +566,26 @@ class Device extends BaseModel
return $this->hasMany('App\Models\MplsLspPath', 'device_id');
}
+ public function mplsSdps()
+ {
+ return $this->hasMany('App\Models\MplsSdp', 'device_id');
+ }
+
+ public function mplsServices()
+ {
+ return $this->hasMany('App\Models\MplsService', 'device_id');
+ }
+
+ public function mplsSaps()
+ {
+ return $this->hasMany('App\Models\MplsSap', 'device_id');
+ }
+
+ public function mplsSdpBinds()
+ {
+ return $this->hasMany('App\Models\MplsSdpBind', 'device_id');
+ }
+
public function syslogs()
{
return $this->hasMany('App\Models\Syslog', 'device_id', 'device_id');
diff --git a/app/Models/MplsSap.php b/app/Models/MplsSap.php
new file mode 100644
index 0000000000..7b3eb9af50
--- /dev/null
+++ b/app/Models/MplsSap.php
@@ -0,0 +1,50 @@
+svc_oid . '-' . $this->sapPortId . '-' . $this->sapEncapValue;
+ }
+
+ // ---- Define Relationships ----
+
+ public function binds()
+ {
+ return $this->hasMany('App\Models\MplsSdpBind', 'svc_id');
+ }
+
+ public function services()
+ {
+ return $this->hasMany('App\Models\MplsService', 'svc_id');
+ }
+}
diff --git a/app/Models/MplsSdp.php b/app/Models/MplsSdp.php
new file mode 100644
index 0000000000..97da84db57
--- /dev/null
+++ b/app/Models/MplsSdp.php
@@ -0,0 +1,46 @@
+sdp_oid;
+ }
+
+ // ---- Define Relationships ----
+
+ public function binds()
+ {
+ return $this->hasMany('App\Models\MplsSdpBind', 'sdp_id');
+ }
+}
diff --git a/app/Models/MplsSdpBind.php b/app/Models/MplsSdpBind.php
new file mode 100644
index 0000000000..ab0a4091b4
--- /dev/null
+++ b/app/Models/MplsSdpBind.php
@@ -0,0 +1,53 @@
+sdp_oid . '-' . $this->svc_oid;
+ }
+
+ // ---- Define Relationships ----
+
+ public function sdp()
+ {
+ return $this->belongsTo('App\Models\MplsSdp', 'sdp_id');
+ }
+
+ public function service()
+ {
+ return $this->belongsTo('App\Models\MplsService', 'svc_id');
+ }
+}
diff --git a/app/Models/MplsService.php b/app/Models/MplsService.php
new file mode 100644
index 0000000000..6847d5bf38
--- /dev/null
+++ b/app/Models/MplsService.php
@@ -0,0 +1,51 @@
+svc_oid;
+ }
+
+ // ---- Define Relationships ----
+
+ public function binds()
+ {
+ return $this->hasMany('App\Models\MplsSdpBind', 'svc_id');
+ }
+}
diff --git a/database/migrations/2019_06_30_190400_create_mpls_sdps_table.php b/database/migrations/2019_06_30_190400_create_mpls_sdps_table.php
new file mode 100644
index 0000000000..02324ba078
--- /dev/null
+++ b/database/migrations/2019_06_30_190400_create_mpls_sdps_table.php
@@ -0,0 +1,44 @@
+increments('sdp_id');
+ $table->unsignedInteger('sdp_oid');
+ $table->unsignedInteger('device_id')->index('device_id');
+ $table->enum('sdpRowStatus', array('active','notInService','notReady','createAndGo','createAndWait','destroy'))->nullable();
+ $table->enum('sdpDelivery', array('gre','mpls','l2tpv3','greethbridged'))->nullable();
+ $table->string('sdpDescription', 80)->nullable();
+ $table->enum('sdpAdminStatus', array('up','down'))->nullable();
+ $table->enum('sdpOperStatus', array('up','notAlive','notReady','invalidEgressInterface','transportTunnelDown','down'))->nullable();
+ $table->integer('sdpAdminPathMtu')->nullable();
+ $table->integer('sdpOperPathMtu')->nullable();
+ $table->bigInteger('sdpLastMgmtChange')->nullable();
+ $table->bigInteger('sdpLastStatusChange')->nullable();
+ $table->enum('sdpActiveLspType', array('not-applicable','rsvp','ldp','bgp','none','mplsTp','srIsis','srOspf','srTeLsp','fpe'))->nullable();
+ $table->enum('sdpFarEndInetAddressType', array('ipv4','ipv6'))->nullable();
+ $table->string('sdpFarEndInetAddress', 46)->nullable();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::dropIfExists('mpls_sdps');
+ }
+}
diff --git a/database/migrations/2019_06_30_190401_create_mpls_sdp_binds_table.php b/database/migrations/2019_06_30_190401_create_mpls_sdp_binds_table.php
new file mode 100644
index 0000000000..89aab76f9b
--- /dev/null
+++ b/database/migrations/2019_06_30_190401_create_mpls_sdp_binds_table.php
@@ -0,0 +1,46 @@
+increments('bind_id');
+ $table->unsignedInteger('sdp_id');
+ $table->unsignedInteger('svc_id');
+ $table->unsignedInteger('sdp_oid');
+ $table->unsignedInteger('svc_oid');
+ $table->unsignedInteger('device_id')->index('device_id');
+ $table->enum('sdpBindRowStatus', array('active','notInService','notReady','createAndGo','createAndWait','destroy'))->nullable();
+ $table->enum('sdpBindAdminStatus', array('up','down'))->nullable();
+ $table->enum('sdpBindOperStatus', array('up','down'))->nullable();
+ $table->bigInteger('sdpBindLastMgmtChange')->nullable();
+ $table->bigInteger('sdpBindLastStatusChange')->nullable();
+ $table->enum('sdpBindType', array('spoke','mesh'))->nullable();
+ $table->enum('sdpBindVcType', array('undef','ether','vlan','mirrior','atmSdu'.'atmCell','atmVcc','atmVpc','frDlci','ipipe','satopE1','satopT1','satopE3','satopT3','cesopsn','cesopsnCas'))->nullable();
+ $table->bigInteger('sdpBindBaseStatsIngFwdPackets')->nullable();
+ $table->bigInteger('sdpBindBaseStatsIngFwdOctets')->nullable();
+ $table->bigInteger('sdpBindBaseStatsEgrFwdPackets')->nullable();
+ $table->bigInteger('sdpBindBaseStatsEgrFwdOctets')->nullable();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::dropIfExists('mpls_sdp_binds');
+ }
+}
diff --git a/database/migrations/2019_06_30_190402_create_mpls_services_table.php b/database/migrations/2019_06_30_190402_create_mpls_services_table.php
new file mode 100644
index 0000000000..07622bc190
--- /dev/null
+++ b/database/migrations/2019_06_30_190402_create_mpls_services_table.php
@@ -0,0 +1,49 @@
+increments('svc_id');
+ $table->unsignedInteger('svc_oid');
+ $table->unsignedInteger('device_id')->index('device_id');
+ $table->enum('svcRowStatus', array('active', 'notInService', 'notReady', 'createAndGo', 'createAndWait', 'destroy'))->nullable();
+ $table->enum('svcType', array('unknown', 'epipe', 'tls', 'vprn', 'ies', 'mirror', 'apipe', 'fpipe', 'ipipe', 'cpipe', 'intTls', 'evpnIsaTls'))->nullable();
+ $table->unsignedInteger('svcCustId')->nullable();
+ $table->enum('svcAdminStatus', array('up', 'down'))->nullable();
+ $table->enum('svcOperStatus', array('up', 'down'))->nullable();
+ $table->string('svcDescription', 80)->nullable();
+ $table->integer('svcMtu')->nullable();
+ $table->integer('svcNumSaps')->nullable();
+ $table->integer('svcNumSdps')->nullable();
+ $table->bigInteger('svcLastMgmtChange')->nullable();
+ $table->bigInteger('svcLastStatusChange')->nullable();
+ $table->integer('svcVRouterId')->nullable();
+ $table->enum('svcTlsMacLearning', array('enabled', 'disabled'))->nullable();
+ $table->enum('svcTlsStpAdminStatus', array('enabled', 'disabled'))->nullable();
+ $table->enum('svcTlsStpOperStatus', array('up', 'down'))->nullable();
+ $table->integer('svcTlsFdbTableSize')->nullable();
+ $table->integer('svcTlsFdbNumEntries')->nullable();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::dropIfExists('mpls_services');
+ }
+}
diff --git a/database/migrations/2019_07_03_132417_create_mpls_saps_table.php b/database/migrations/2019_07_03_132417_create_mpls_saps_table.php
new file mode 100644
index 0000000000..8f78c3dc24
--- /dev/null
+++ b/database/migrations/2019_07_03_132417_create_mpls_saps_table.php
@@ -0,0 +1,43 @@
+increments('sap_id');
+ $table->unsignedInteger('svc_id');
+ $table->unsignedInteger('svc_oid');
+ $table->unsignedInteger('sapPortId');
+ $table->string('ifName', 255)->nullable();
+ $table->unsignedInteger('device_id')->index('device_id');
+ $table->string('sapEncapValue', 255)->nullable();
+ $table->enum('sapRowStatus', array('active', 'notInService', 'notReady', 'createAndGo', 'createAndWait', 'destroy'))->nullable();
+ $table->enum('sapType', array('unknown', 'epipe', 'tls', 'vprn', 'ies', 'mirror', 'apipe', 'fpipe', 'ipipe', 'cpipe', 'intTls', 'evpnIsaTls'))->nullable();
+ $table->string('sapDescription', 80)->nullable();
+ $table->enum('sapAdminStatus', array('up', 'down'))->nullable();
+ $table->enum('sapOperStatus', array('up', 'down'))->nullable();
+ $table->bigInteger('sapLastMgmtChange')->nullable();
+ $table->bigInteger('sapLastStatusChange')->nullable();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::dropIfExists('mpls_saps');
+ }
+}
diff --git a/includes/html/pages/device/routing/mpls.inc.php b/includes/html/pages/device/routing/mpls.inc.php
index 4b81e918c0..df6659e569 100644
--- a/includes/html/pages/device/routing/mpls.inc.php
+++ b/includes/html/pages/device/routing/mpls.inc.php
@@ -19,7 +19,7 @@ if ($vars['view'] == 'lsp') {
echo "';
}
@@ -35,6 +35,50 @@ if ($vars['view'] == 'paths') {
echo '';
}
+echo ' | ';
+
+if ($vars['view'] == 'sdps') {
+ echo "';
+}
+
+echo ' | ';
+
+if ($vars['view'] == 'sdpbinds') {
+ echo "';
+}
+
+echo ' | ';
+
+if ($vars['view'] == 'services') {
+ echo "';
+}
+
+echo ' | ';
+
+if ($vars['view'] == 'saps') {
+ echo "';
+}
+
print_optionbar_end();
echo '
@@ -86,7 +130,7 @@ if ($vars['view'] == 'lsp') {
$host = @dbFetchRow('SELECT * FROM `ipv4_addresses` AS A, `ports` AS I, `devices` AS D WHERE A.ipv4_address = ? AND I.port_id = A.port_id AND D.device_id = I.device_id', [$lsp['mplsLspToAddr']]);
$destination = $lsp['mplsLspToAddr'];
if (is_array($host)) {
- $destination = generate_device_link($host, 0, array('tab' => 'routing', 'proto' => 'mpls'));
+ $destination = generate_device_link($host, 0, array('tab' => 'routing', 'proto' => 'mpls', 'view' => 'lsp'));
}
echo "
@@ -175,4 +219,249 @@ if ($vars['view'] == 'paths') {
$i++;
}
echo '';
-} // end lsp path view
+} // end paths view
+
+if ($vars['view'] == 'sdps') {
+ echo 'SDP Id |
+ Destination |
+ Type |
+ LSP Type |
+ Description |
+ Admin State |
+ Oper State |
+ Admin MTU |
+ Oper MTU |
+ Last Mgmt Change at |
+ Last Status Change at |
+
';
+
+ $i = 0;
+
+ foreach (dbFetchRows('SELECT * FROM `mpls_sdps` WHERE `device_id` = ? ORDER BY `sdp_oid`', array($device['device_id'])) as $sdp) {
+ if (!is_integer($i / 2)) {
+ $bg_colour = \LibreNMS\Config::get('list_colour.even');
+ } else {
+ $bg_colour = \LibreNMS\Config::get('list_colour.odd');
+ }
+
+ $adminstate_status_color = $operstate_status_color = 'default';
+ $failcode_status_color = 'warning';
+
+ if ($sdp['sdpAdminStatus'] == 'up') {
+ $adminstate_status_color = 'success';
+ }
+ if ($sdp['sdpOperStatus'] == 'up') {
+ $operstate_status_color = 'success';
+ } elseif ($sdp['sdpAdminStatus'] == 'up' && $sdp['sdpOperStatus'] == 'down') {
+ $operstate_status_color = 'danger';
+ }
+
+ $host = @dbFetchRow('SELECT * FROM `ipv4_addresses` AS A, `ports` AS I, `devices` AS D WHERE A.ipv4_address = ? AND I.port_id = A.port_id AND D.device_id = I.device_id', [$sdp['sdpFarEndInetAddress']]);
+ $destination = $sdp['sdpFarEndInetAddress'];
+ if (is_array($host)) {
+ $destination = generate_device_link($host, 0, array('tab' => 'routing', 'proto' => 'mpls', 'view' => 'sdps'));
+ }
+ echo "
+ " . $sdp['sdp_oid'] . ' |
+ ' . $destination . ' |
+ ' . $sdp['sdpDelivery'] . ' |
+ ' . $sdp['sdpActiveLspType'] . ' |
+ ' . $sdp['sdpDescription'] . ' |
+ ' . $sdp['sdpAdminStatus'] . ' |
+ ' . $sdp['sdpOperStatus'] . ' |
+ ' . $sdp['sdpAdminPathMtu'] . ' |
+ ' . $sdp['sdpOperPathMtu'] . ' |
+ ' . formatUptime($sdp['sdpLastMgmtChange']) . ' |
+ ' . formatUptime($sdp['sdpLastStatusChange']) . ' | ';
+ echo '
';
+
+ $i++;
+ }
+ echo '
';
+} // end sdps view
+
+if ($vars['view'] == 'sdpbinds') {
+ echo 'SDP Bind Id |
+ Bind Type |
+ VC Type |
+ Admin State |
+ Oper State |
+ Last Mgmt Change at |
+ Last Status Change at |
+ Ing Fwd Packets |
+ Ing Fwd Octets |
+ Egr Fwd Packets |
+ Egr Fwd Octets |
+ ';
+
+ $i = 0;
+
+ foreach (dbFetchRows('SELECT * FROM `mpls_sdp_binds` WHERE `device_id` = ? ORDER BY `sdp_oid`, `svc_oid`', array($device['device_id'])) as $sdpbind) {
+ if (!is_integer($i / 2)) {
+ $bg_colour = \LibreNMS\Config::get('list_colour.even');
+ } else {
+ $bg_colour = \LibreNMS\Config::get('list_colour.odd');
+ }
+
+ $adminstate_status_color = $operstate_status_color = 'default';
+ $failcode_status_color = 'warning';
+
+ if ($sdpbind['sdpBindAdminStatus'] == 'up') {
+ $adminstate_status_color = 'success';
+ }
+ if ($sdpbind['sdpBindOperStatus'] == 'up') {
+ $operstate_status_color = 'success';
+ } else {
+ $operstate_status_color = 'danger';
+ }
+
+ echo "
+ " . $sdpbind['sdp_oid'] . ':' . $sdpbind['svc_oid'] . ' |
+ ' . $sdpbind['sdpBindType'] . ' |
+ ' . $sdpbind['sdpBindVcType'] . ' |
+ ' . $sdpbind['sdpBindAdminStatus'] . ' |
+ ' . $sdpbind['sdpBindOperStatus'] . ' |
+ ' . formatUptime($sdpbind['sdpBindLastMgmtChange']) . ' |
+ ' . formatUptime($sdpbind['sdpBindLastStatusChange']) . ' |
+ ' . $sdpbind['sdpBindBaseStatsIngFwdPackets'] . ' |
+ ' . $sdpbind['sdpBindBaseStatsIngFwdOctets'] . ' |
+ ' . $sdpbind['sdpBindBaseStatsEgrFwdPackets'] . ' |
+ ' . $sdpbind['sdpBindBaseStatsEgrFwdOctets'] . ' | ';
+ echo '
';
+
+ $i++;
+ }
+ echo '';
+} // end sdpbinds view
+
+if ($vars['view'] == 'services') {
+ echo 'Service Id |
+ Type |
+ Customer |
+ Admin Status |
+ Oper Status |
+ Description |
+ Service MTU |
+ Num SAPs |
+ Last Mgmt Change at |
+ Last Status Change at |
+ VRF |
+ MAC Learning |
+ FDB Table Size |
+ FDB Entries |
+ STP Admin Status |
+ STP Oper Status |
+ ';
+
+ $i = 0;
+
+ foreach (dbFetchRows('SELECT s.*, v.vrf_name FROM `mpls_services` AS s LEFT JOIN `vrfs` AS v ON `s`.`svcVRouterId` = `v`.`vrf_oid` AND `s`.`device_id` = `v`.`device_id` WHERE `s`.`device_id` = ? ORDER BY `svc_oid`', array($device['device_id'])) as $svc) {
+ if (!is_integer($i / 2)) {
+ $bg_colour = \LibreNMS\Config::get('list_colour.even');
+ } else {
+ $bg_colour = \LibreNMS\Config::get('list_colour.odd');
+ }
+
+ $adminstate_status_color = $operstate_status_color = 'default';
+ $failcode_status_color = 'warning';
+
+ if ($svc['svcAdminStatus'] == 'up') {
+ $adminstate_status_color = 'success';
+ }
+ if ($svc['svcOperStatus'] == 'up') {
+ $operstate_status_color = 'success';
+ } else {
+ $operstate_status_color = 'danger';
+ }
+
+ echo "
+ " . $svc['svc_oid'] . ' |
+ ' . $svc['svcType'] . ' |
+ ' . $svc['svcCustId'] . ' |
+ ' . $svc['svcAdminStatus'] . ' |
+ ' . $svc['svcOperStatus'] . ' |
+ ' . $svc['svcDescription'] . ' |
+ ' . $svc['svcMtu'] . ' |
+ ' . $svc['svcNumSaps'] . ' |
+ ' . formatUptime($svc['svcLastMgmtChange']) . ' |
+ ' . formatUptime($svc['svcLastStatusChange']) . ' |
+ ' . $svc['vrf_name'] . ' |
+ ' . $svc['svcTlsMacLearning'] . ' |
+ ' . $svc['svcTlsFdbTableSize'] . ' |
+ ' . $svc['svcTlsFdbNumEntries'] . ' |
+ ' . $svc['svcTlsStpAdminStatus'] . ' |
+ ' . $svc['svcTlsStpOperStatus'] . ' | ';
+ echo '
';
+
+ $i++;
+ }
+ echo '';
+} // end services view
+
+if ($vars['view'] == 'saps') {
+ echo 'Service Id |
+ SAP Port |
+ Encapsulation |
+ Type |
+ Description |
+ Admin Status |
+ Oper Satatus |
+ Last Mgmt Change at |
+ Last Oper Change at |
+ ';
+
+ $i = 0;
+
+ foreach (dbFetchRows('SELECT * FROM `mpls_saps` WHERE `device_id` = ? ORDER BY `device_id`, `svc_oid`, `sapPortId`, `sapEncapValue`', array($device['device_id'])) as $sap) {
+ $port = dbFetchRow('SELECT * FROM `ports` WHERE `device_id` = ? AND `ifName` = ?', [$sap['device_id'], $sap['ifName']]);
+ $port = cleanPort($port);
+
+ if (!is_integer($i / 2)) {
+ $bg_colour = \LibreNMS\Config::get('list_colour.even');
+ } else {
+ $bg_colour = \LibreNMS\Config::get('list_colour.odd');
+ }
+
+ $adminstate_status_color = $operstate_status_color = 'default';
+ $failcode_status_color = 'warning';
+
+ if ($sap['sapAdminStatus'] == 'up') {
+ $adminstate_status_color = 'success';
+ }
+ if ($sap['sapOperStatus'] == 'up') {
+ $operstate_status_color = 'success';
+ } else {
+ $operstate_status_color = 'danger';
+ }
+
+ echo "
+ " . $sap['svc_oid'] . ' |
+ ' . generate_port_link($port) . ' |
+ ' . $sap['sapEncapValue'] . ' |
+ ' . $sap['sapType'] . ' |
+ ' . $sap['sapDescription'] . ' |
+ ' . $sap['sapAdminStatus'] . ' |
+ ' . $sap['sapOperStatus'] . ' |
+ ' . formatUptime($sap['sapLastMgmtChange']) . ' |
+ ' . formatUptime($sap['sapLastStatusChange']) . ' | ';
+ echo '
';
+
+ $i++;
+ }
+ echo '';
+} // end sap view
diff --git a/includes/html/pages/routing/mpls.inc.php b/includes/html/pages/routing/mpls.inc.php
index 589072d9a1..8871e83e4a 100644
--- a/includes/html/pages/routing/mpls.inc.php
+++ b/includes/html/pages/routing/mpls.inc.php
@@ -17,7 +17,7 @@ if ($vars['view'] == 'lsp') {
echo "';
}
@@ -33,6 +33,50 @@ if ($vars['view'] == 'paths') {
echo '';
}
+echo ' | ';
+
+if ($vars['view'] == 'sdps') {
+ echo "';
+}
+
+echo ' | ';
+
+if ($vars['view'] == 'sdpbinds') {
+ echo "';
+}
+
+echo ' | ';
+
+if ($vars['view'] == 'services') {
+ echo "';
+}
+
+echo ' | ';
+
+if ($vars['view'] == 'saps') {
+ echo "';
+}
+
print_optionbar_end();
echo '
@@ -180,4 +224,261 @@ if ($vars['view'] == 'paths') {
$i++;
}
echo '
';
-}
+} // end paths view
+
+if ($vars['view'] == 'sdps') {
+ echo 'Device |
+ SDP Id |
+ Destination |
+ Type |
+ LSP Type |
+ Description |
+ Admin State |
+ Oper State |
+ Admin MTU |
+ Oper MTU |
+ Last Mgmt Change at |
+ Last Status Change at |
+
';
+
+ $i = 0;
+
+ foreach (dbFetchRows('SELECT * FROM `mpls_sdps` ORDER BY `sdp_oid`') as $sdp) {
+ $device = device_by_id_cache($sdp['device_id']);
+ if (!is_integer($i / 2)) {
+ $bg_colour = \LibreNMS\Config::get('list_colour.even');
+ } else {
+ $bg_colour = \LibreNMS\Config::get('list_colour.odd');
+ }
+
+ $adminstate_status_color = $operstate_status_color = 'default';
+ $failcode_status_color = 'warning';
+
+ if ($sdp['sdpAdminStatus'] == 'up') {
+ $adminstate_status_color = 'success';
+ }
+ if ($sdp['sdpOperStatus'] == 'up') {
+ $operstate_status_color = 'success';
+ } elseif ($sdp['sdpAdminStatus'] == 'up' && $sdp['sdpOperStatus'] == 'down') {
+ $operstate_status_color = 'danger';
+ }
+
+ $host = @dbFetchRow('SELECT * FROM `ipv4_addresses` AS A, `ports` AS I, `devices` AS D WHERE A.ipv4_address = ? AND I.port_id = A.port_id AND D.device_id = I.device_id', [$sdp['sdpFarEndInetAddress']]);
+ $destination = $sdp['sdpFarEndInetAddress'];
+ if (is_array($host)) {
+ $destination = generate_device_link($host, 0, array('tab' => 'routing', 'proto' => 'mpls'));
+ }
+ echo "
+ " . generate_device_link($device, 0, array('tab' => 'routing', 'proto' => 'mpls')) . ' |
+ ' . $sdp['sdp_oid'] . ' |
+ ' . $destination . ' |
+ ' . $sdp['sdpDelivery'] . ' |
+ ' . $sdp['sdpActiveLspType'] . ' |
+ ' . $sdp['sdpDescription'] . ' |
+ ' . $sdp['sdpAdminStatus'] . ' |
+ ' . $sdp['sdpOperStatus'] . ' |
+ ' . $sdp['sdpAdminPathMtu'] . ' |
+ ' . $sdp['sdpOperPathMtu'] . ' |
+ ' . formatUptime($sdp['sdpLastMgmtChange']) . ' |
+ ' . formatUptime($sdp['sdpLastStatusChange']) . ' | ';
+ echo '
';
+
+ $i++;
+ }
+ echo '';
+} // end sdps view
+
+if ($vars['view'] == 'sdpbinds') {
+ echo 'Device |
+ SDP Bind Id |
+ Bind Type |
+ VC Type |
+ Admin State |
+ Oper State |
+ Last Mgmt Change at |
+ Last Status Change at |
+ Ing Fwd Packets |
+ Ing Fwd Octets |
+ Egr Fwd Packets |
+ Egr Fwd Octets |
+
';
+
+ $i = 0;
+
+ foreach (dbFetchRows('SELECT * FROM `mpls_sdp_binds` ORDER BY `sdp_oid`, `svc_oid`') as $sdpbind) {
+ $device = device_by_id_cache($sdpbind['device_id']);
+ if (!is_integer($i / 2)) {
+ $bg_colour = \LibreNMS\Config::get('list_colour.even');
+ } else {
+ $bg_colour = \LibreNMS\Config::get('list_colour.odd');
+ }
+
+ $adminstate_status_color = $operstate_status_color = 'default';
+ $failcode_status_color = 'warning';
+
+ if ($sdpbind['sdpBindAdminStatus'] == 'up') {
+ $adminstate_status_color = 'success';
+ }
+ if ($sdpbind['sdpBindOperStatus'] == 'up') {
+ $operstate_status_color = 'success';
+ } else {
+ $operstate_status_color = 'danger';
+ }
+
+ echo "
+ " . generate_device_link($device, 0, array('tab' => 'routing', 'proto' => 'mpls')) . ' |
+ ' . $sdpbind['sdp_oid'] . ':' . $sdpbind['svc_oid'] . ' |
+ ' . $sdpbind['sdpBindType'] . ' |
+ ' . $sdpbind['sdpBindVcType'] . ' |
+ ' . $sdpbind['sdpBindAdminStatus'] . ' |
+ ' . $sdpbind['sdpBindOperStatus'] . ' |
+ ' . formatUptime($sdpbind['sdpBindLastMgmtChange']) . ' |
+ ' . formatUptime($sdpbind['sdpBindLastStatusChange']) . ' |
+ ' . $sdpbind['sdpBindBaseStatsIngFwdPackets'] . ' |
+ ' . $sdpbind['sdpBindBaseStatsIngFwdOctets'] . ' |
+ ' . $sdpbind['sdpBindBaseStatsEgrFwdPackets'] . ' |
+ ' . $sdpbind['sdpBindBaseStatsEgrFwdOctets'] . ' | ';
+ echo '
';
+
+ $i++;
+ }
+ echo '';
+} // end sdpbinds view
+
+if ($vars['view'] == 'services') {
+ echo 'Device |
+ Service Id |
+ Type |
+ Customer |
+ Admin Status |
+ Oper Status |
+ Description |
+ Service MTU |
+ Num SAPs |
+ Last Mgmt Change at |
+ Last Status Change at |
+ VRF |
+ MAC Learning |
+ FDB Table Size |
+ FDB Entries |
+ STP Admin Status |
+ STP Oper Status |
+
';
+
+ $i = 0;
+
+ foreach (dbFetchRows('SELECT s.*, v.vrf_name FROM `mpls_services` AS s LEFT JOIN `vrfs` AS v ON `s`.`svcVRouterId` = `v`.`vrf_oid` AND `s`.`device_id` = `v`.`device_id` ORDER BY `svc_oid`') as $svc) {
+ $device = device_by_id_cache($svc['device_id']);
+ if (!is_integer($i / 2)) {
+ $bg_colour = \LibreNMS\Config::get('list_colour.even');
+ } else {
+ $bg_colour = \LibreNMS\Config::get('list_colour.odd');
+ }
+
+ $adminstate_status_color = $operstate_status_color = 'default';
+ $failcode_status_color = 'warning';
+
+ if ($svc['svcAdminStatus'] == 'up') {
+ $adminstate_status_color = 'success';
+ }
+ if ($svc['svcOperStatus'] == 'up') {
+ $operstate_status_color = 'success';
+ } else {
+ $operstate_status_color = 'danger';
+ }
+
+ echo "
+ " . generate_device_link($device, 0, array('tab' => 'routing', 'proto' => 'mpls')) . ' |
+ ' . $svc['svc_oid'] . ' |
+ ' . $svc['svcType'] . ' |
+ ' . $svc['svcCustId'] . ' |
+ ' . $svc['svcAdminStatus'] . ' |
+ ' . $svc['svcOperStatus'] . ' |
+ ' . $svc['svcDescription'] . ' |
+ ' . $svc['svcMtu'] . ' |
+ ' . $svc['svcNumSaps'] . ' |
+ ' . formatUptime($svc['svcLastMgmtChange']) . ' |
+ ' . formatUptime($svc['svcLastStatusChange']) . ' |
+ ' . $svc['vrf_name'] . ' |
+ ' . $svc['svcTlsMacLearning'] . ' |
+ ' . $svc['svcTlsFdbTableSize'] . ' |
+ ' . $svc['svcTlsFdbNumEntries'] . ' |
+ ' . $svc['svcTlsStpAdminStatus'] . ' |
+ ' . $svc['svcTlsStpOperStatus'] . ' | ';
+ echo '
';
+
+ $i++;
+ }
+ echo '';
+} // end services view
+
+if ($vars['view'] == 'saps') {
+ echo 'Device |
+ Service Id |
+ SAP Port |
+ Encapsulation |
+ Type |
+ Description |
+ Admin Status |
+ Oper Satatus |
+ Last Mgmt Change at |
+ Last Oper Change at |
+
';
+
+ $i = 0;
+
+ foreach (dbFetchRows('SELECT * FROM `mpls_saps` ORDER BY `device_id`, `svc_oid`, `sapPortId`, `sapEncapValue`') as $sap) {
+ $port = dbFetchRow('SELECT * FROM `ports` WHERE `device_id` = ? AND `ifName` = ?', [$sap['device_id'], $sap['ifName']]);
+ $port = cleanPort($port);
+
+ $device = device_by_id_cache($sap['device_id']);
+ if (!is_integer($i / 2)) {
+ $bg_colour = \LibreNMS\Config::get('list_colour.even');
+ } else {
+ $bg_colour = \LibreNMS\Config::get('list_colour.odd');
+ }
+
+ $adminstate_status_color = $operstate_status_color = 'default';
+ $failcode_status_color = 'warning';
+
+ if ($sap['sapAdminStatus'] == 'up') {
+ $adminstate_status_color = 'success';
+ }
+ if ($sap['sapOperStatus'] == 'up') {
+ $operstate_status_color = 'success';
+ } else {
+ $operstate_status_color = 'danger';
+ }
+
+ echo "
+ " . generate_device_link($device, 0, array('tab' => 'routing', 'proto' => 'mpls')) . ' |
+ ' . $sap['svc_oid'] . ' |
+ ' . generate_port_link($port) . ' |
+ ' . $sap['sapEncapValue'] . ' |
+ ' . $sap['sapType'] . ' |
+ ' . $sap['sapDescription'] . ' |
+ ' . $sap['sapAdminStatus'] . ' |
+ ' . $sap['sapOperStatus'] . ' |
+ ' . formatUptime($sap['sapLastMgmtChange']) . ' |
+ ' . formatUptime($sap['sapLastStatusChange']) . ' | ';
+ echo '
';
+
+ $i++;
+ }
+ echo '';
+} // end sap view
diff --git a/misc/db_schema.yaml b/misc/db_schema.yaml
index 62cd3104ce..3f4f1e4693 100644
--- a/misc/db_schema.yaml
+++ b/misc/db_schema.yaml
@@ -919,6 +919,92 @@ mpls_lsp_paths:
Indexes:
PRIMARY: { Name: PRIMARY, Columns: [lsp_path_id], Unique: true, Type: BTREE }
device_id: { Name: device_id, Columns: [device_id], Unique: false, Type: BTREE }
+mpls_saps:
+ Columns:
+ - { Field: sap_id, Type: 'int(10) unsigned', 'Null': false, Extra: auto_increment }
+ - { Field: svc_id, Type: 'int(10) unsigned', 'Null': false, Extra: '' }
+ - { Field: svc_oid, Type: 'int(10) unsigned', 'Null': false, Extra: '' }
+ - { Field: sapPortId, Type: 'int(10) unsigned', 'Null': false, Extra: '' }
+ - { Field: ifName, Type: varchar(255), 'Null': true, Extra: '' }
+ - { Field: device_id, Type: 'int(10) unsigned', 'Null': false, Extra: '' }
+ - { Field: sapEncapValue, Type: varchar(255), 'Null': true, Extra: '' }
+ - { Field: sapRowStatus, Type: 'enum(''active'',''notInService'',''notReady'',''createAndGo'',''createAndWait'',''destroy'')', 'Null': true, Extra: '' }
+ - { Field: sapType, Type: 'enum(''unknown'',''epipe'',''tls'',''vprn'',''ies'',''mirror'',''apipe'',''fpipe'',''ipipe'',''cpipe'',''intTls'',''evpnIsaTls'')', 'Null': true, Extra: '' }
+ - { Field: sapDescription, Type: varchar(80), 'Null': true, Extra: '' }
+ - { Field: sapAdminStatus, Type: 'enum(''up'',''down'')', 'Null': true, Extra: '' }
+ - { Field: sapOperStatus, Type: 'enum(''up'',''down'')', 'Null': true, Extra: '' }
+ - { Field: sapLastMgmtChange, Type: bigint(20), 'Null': true, Extra: '' }
+ - { Field: sapLastStatusChange, Type: bigint(20), 'Null': true, Extra: '' }
+ Indexes:
+ PRIMARY: { Name: PRIMARY, Columns: [sap_id], Unique: true, Type: BTREE }
+ device_id: { Name: device_id, Columns: [device_id], Unique: false, Type: BTREE }
+mpls_sdps:
+ Columns:
+ - { Field: sdp_id, Type: 'int(10) unsigned', 'Null': false, Extra: auto_increment }
+ - { Field: sdp_oid, Type: 'int(10) unsigned', 'Null': false, Extra: '' }
+ - { Field: device_id, Type: 'int(10) unsigned', 'Null': false, Extra: '' }
+ - { Field: sdpRowStatus, Type: 'enum(''active'',''notInService'',''notReady'',''createAndGo'',''createAndWait'',''destroy'')', 'Null': true, Extra: '' }
+ - { Field: sdpDelivery, Type: 'enum(''gre'',''mpls'',''l2tpv3'',''greethbridged'')', 'Null': true, Extra: '' }
+ - { Field: sdpDescription, Type: varchar(80), 'Null': true, Extra: '' }
+ - { Field: sdpAdminStatus, Type: 'enum(''up'',''down'')', 'Null': true, Extra: '' }
+ - { Field: sdpOperStatus, Type: 'enum(''up'',''notAlive'',''notReady'',''invalidEgressInterface'',''transportTunnelDown'',''down'')', 'Null': true, Extra: '' }
+ - { Field: sdpAdminPathMtu, Type: int(11), 'Null': true, Extra: '' }
+ - { Field: sdpOperPathMtu, Type: int(11), 'Null': true, Extra: '' }
+ - { Field: sdpLastMgmtChange, Type: bigint(20), 'Null': true, Extra: '' }
+ - { Field: sdpLastStatusChange, Type: bigint(20), 'Null': true, Extra: '' }
+ - { Field: sdpActiveLspType, Type: 'enum(''not-applicable'',''rsvp'',''ldp'',''bgp'',''none'',''mplsTp'',''srIsis'',''srOspf'',''srTeLsp'',''fpe'')', 'Null': true, Extra: '' }
+ - { Field: sdpFarEndInetAddressType, Type: 'enum(''ipv4'',''ipv6'')', 'Null': true, Extra: '' }
+ - { Field: sdpFarEndInetAddress, Type: varchar(46), 'Null': true, Extra: '' }
+ Indexes:
+ PRIMARY: { Name: PRIMARY, Columns: [sdp_id], Unique: true, Type: BTREE }
+ device_id: { Name: device_id, Columns: [device_id], Unique: false, Type: BTREE }
+mpls_sdp_binds:
+ Columns:
+ - { Field: bind_id, Type: 'int(10) unsigned', 'Null': false, Extra: auto_increment }
+ - { Field: sdp_id, Type: 'int(10) unsigned', 'Null': false, Extra: '' }
+ - { Field: svc_id, Type: 'int(10) unsigned', 'Null': false, Extra: '' }
+ - { Field: sdp_oid, Type: 'int(10) unsigned', 'Null': false, Extra: '' }
+ - { Field: svc_oid, Type: 'int(10) unsigned', 'Null': false, Extra: '' }
+ - { Field: device_id, Type: 'int(10) unsigned', 'Null': false, Extra: '' }
+ - { Field: sdpBindRowStatus, Type: 'enum(''active'',''notInService'',''notReady'',''createAndGo'',''createAndWait'',''destroy'')', 'Null': true, Extra: '' }
+ - { Field: sdpBindAdminStatus, Type: 'enum(''up'',''down'')', 'Null': true, Extra: '' }
+ - { Field: sdpBindOperStatus, Type: 'enum(''up'',''down'')', 'Null': true, Extra: '' }
+ - { Field: sdpBindLastMgmtChange, Type: bigint(20), 'Null': true, Extra: '' }
+ - { Field: sdpBindLastStatusChange, Type: bigint(20), 'Null': true, Extra: '' }
+ - { Field: sdpBindType, Type: 'enum(''spoke'',''mesh'')', 'Null': true, Extra: '' }
+ - { Field: sdpBindVcType, Type: 'enum(''undef'',''ether'',''vlan'',''mirrior'',''atmSduatmCell'',''atmVcc'',''atmVpc'',''frDlci'',''ipipe'',''satopE1'',''satopT1'',''satopE3'',''satopT3'',''cesopsn'',''cesopsnCas'')', 'Null': true, Extra: '' }
+ - { Field: sdpBindBaseStatsIngFwdPackets, Type: bigint(20), 'Null': true, Extra: '' }
+ - { Field: sdpBindBaseStatsIngFwdOctets, Type: bigint(20), 'Null': true, Extra: '' }
+ - { Field: sdpBindBaseStatsEgrFwdPackets, Type: bigint(20), 'Null': true, Extra: '' }
+ - { Field: sdpBindBaseStatsEgrFwdOctets, Type: bigint(20), 'Null': true, Extra: '' }
+ Indexes:
+ PRIMARY: { Name: PRIMARY, Columns: [bind_id], Unique: true, Type: BTREE }
+ device_id: { Name: device_id, Columns: [device_id], Unique: false, Type: BTREE }
+mpls_services:
+ Columns:
+ - { Field: svc_id, Type: 'int(10) unsigned', 'Null': false, Extra: auto_increment }
+ - { Field: svc_oid, Type: 'int(10) unsigned', 'Null': false, Extra: '' }
+ - { Field: device_id, Type: 'int(10) unsigned', 'Null': false, Extra: '' }
+ - { Field: svcRowStatus, Type: 'enum(''active'',''notInService'',''notReady'',''createAndGo'',''createAndWait'',''destroy'')', 'Null': true, Extra: '' }
+ - { Field: svcType, Type: 'enum(''unknown'',''epipe'',''tls'',''vprn'',''ies'',''mirror'',''apipe'',''fpipe'',''ipipe'',''cpipe'',''intTls'',''evpnIsaTls'')', 'Null': true, Extra: '' }
+ - { Field: svcCustId, Type: 'int(10) unsigned', 'Null': true, Extra: '' }
+ - { Field: svcAdminStatus, Type: 'enum(''up'',''down'')', 'Null': true, Extra: '' }
+ - { Field: svcOperStatus, Type: 'enum(''up'',''down'')', 'Null': true, Extra: '' }
+ - { Field: svcDescription, Type: varchar(80), 'Null': true, Extra: '' }
+ - { Field: svcMtu, Type: int(11), 'Null': true, Extra: '' }
+ - { Field: svcNumSaps, Type: int(11), 'Null': true, Extra: '' }
+ - { Field: svcNumSdps, Type: int(11), 'Null': true, Extra: '' }
+ - { Field: svcLastMgmtChange, Type: bigint(20), 'Null': true, Extra: '' }
+ - { Field: svcLastStatusChange, Type: bigint(20), 'Null': true, Extra: '' }
+ - { Field: svcVRouterId, Type: int(11), 'Null': true, Extra: '' }
+ - { Field: svcTlsMacLearning, Type: 'enum(''enabled'',''disabled'')', 'Null': true, Extra: '' }
+ - { Field: svcTlsStpAdminStatus, Type: 'enum(''enabled'',''disabled'')', 'Null': true, Extra: '' }
+ - { Field: svcTlsStpOperStatus, Type: 'enum(''up'',''down'')', 'Null': true, Extra: '' }
+ - { Field: svcTlsFdbTableSize, Type: int(11), 'Null': true, Extra: '' }
+ - { Field: svcTlsFdbNumEntries, Type: int(11), 'Null': true, Extra: '' }
+ Indexes:
+ PRIMARY: { Name: PRIMARY, Columns: [svc_id], Unique: true, Type: BTREE }
+ device_id: { Name: device_id, Columns: [device_id], Unique: false, Type: BTREE }
munin_plugins:
Columns:
- { Field: mplug_id, Type: 'int(10) unsigned', 'Null': false, Extra: auto_increment }
diff --git a/tests/data/timos.json b/tests/data/timos.json
index 865086a5c7..2f922e4918 100644
--- a/tests/data/timos.json
+++ b/tests/data/timos.json
@@ -2129,6 +2129,216 @@
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
},
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "to_goe-0-nokia-sw-b, IP interface",
+ "ifName": "to_b",
+ "portName": null,
+ "ifIndex": 3,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ipForward",
+ "ifAlias": "IP interface",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "to_goe-0-bng-a, IP interface",
+ "ifName": "to_a",
+ "portName": null,
+ "ifIndex": 4,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ipForward",
+ "ifAlias": "IP interface",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
{
"port_descr_type": null,
"port_descr_descr": null,
@@ -3704,6 +3914,216 @@
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
},
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "2/1/1, 10-Gig Ethernet, \\\\transit: private",
+ "ifName": "2/1/1",
+ "portName": null,
+ "ifIndex": 69238784,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "transit: Test",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "2/1/2, 10-Gig Ethernet",
+ "ifName": "2/1/2",
+ "portName": null,
+ "ifIndex": 69271552,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "10-Gig Ethernet",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
{
"port_descr_type": null,
"port_descr_descr": null,
@@ -3914,6 +4334,216 @@
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
},
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "3/1/1, 10-Gig Ethernet",
+ "ifName": "3/1/1",
+ "portName": null,
+ "ifIndex": 102793216,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "10-Gig Ethernet",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "3/1/2, 10-Gig Ethernet",
+ "ifName": "3/1/2",
+ "portName": null,
+ "ifIndex": 102825984,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "10-Gig Ethernet",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
{
"port_descr_type": null,
"port_descr_descr": null,
@@ -4124,6 +4754,216 @@
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
},
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "A/1, 10/100 Ethernet TX",
+ "ifName": "A/1",
+ "portName": null,
+ "ifIndex": 234913792,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "10/100 Ethernet TX",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "B/1, 10/100 Ethernet TX",
+ "ifName": "B/1",
+ "portName": null,
+ "ifIndex": 268468224,
+ "ifSpeed": null,
+ "ifConnectorPresent": null,
+ "ifPromiscuousMode": null,
+ "ifHighSpeed": null,
+ "ifOperStatus": null,
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": null,
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": null,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "10/100 Ethernet TX",
+ "ifPhysAddress": null,
+ "ifHardType": null,
+ "ifLastChange": 0,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": null,
+ "ifInUcastPkts_prev": null,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": null,
+ "ifOutUcastPkts_prev": null,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": null,
+ "ifInErrors_prev": null,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": null,
+ "ifOutErrors_prev": null,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": null,
+ "ifInOctets_prev": null,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": null,
+ "ifOutOctets_prev": null,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": null,
+ "ifInNUcastPkts_prev": null,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": null,
+ "ifOutNUcastPkts_prev": null,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": null,
+ "ifInDiscards_prev": null,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": null,
+ "ifOutDiscards_prev": null,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": null,
+ "ifInUnknownProtos_prev": null,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": null,
+ "ifInBroadcastPkts_prev": null,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": null,
+ "ifOutBroadcastPkts_prev": null,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": null,
+ "ifInMulticastPkts_prev": null,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": null,
+ "ifOutMulticastPkts_prev": null,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
{
"port_descr_type": null,
"port_descr_descr": null,
@@ -4968,6 +5808,216 @@
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
},
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "to_goe-0-nokia-sw-b, IP interface",
+ "ifName": "to_b",
+ "portName": null,
+ "ifIndex": 3,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "false",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 9198,
+ "ifType": "ipForward",
+ "ifAlias": "IP interface",
+ "ifPhysAddress": "8cf77337e094",
+ "ifHardType": null,
+ "ifLastChange": 13819,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 20736350,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 26791449,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 3234783752,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 2674853712,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 2,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 6417494,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "to_goe-0-bng-a, IP interface",
+ "ifName": "to_a",
+ "portName": null,
+ "ifIndex": 4,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "false",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": null,
+ "ifMtu": 9198,
+ "ifType": "ipForward",
+ "ifAlias": "IP interface",
+ "ifPhysAddress": "8cf77337e093",
+ "ifHardType": null,
+ "ifLastChange": 58355742,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 14402407,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 8444685,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 2234593722,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 1056625634,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 3,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 6263152,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
{
"port_descr_type": null,
"port_descr_descr": null,
@@ -7488,6 +8538,216 @@
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
},
+ {
+ "port_descr_type": "transit",
+ "port_descr_descr": "Test",
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "2/1/1, 10-Gig Ethernet, \\\\transit: private",
+ "ifName": "2/1/1",
+ "portName": null,
+ "ifIndex": 69238784,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": "fullDuplex",
+ "ifMtu": 1522,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "transit: Test",
+ "ifPhysAddress": "8cf773191fa1",
+ "ifHardType": null,
+ "ifLastChange": 2330846318,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 337142824054,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 180877747913,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 352966541533523,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 169492143743354,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 12338668,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 141002,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 3305802,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 3608167,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "2/1/2, 10-Gig Ethernet",
+ "ifName": "2/1/2",
+ "portName": null,
+ "ifIndex": 69271552,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": "fullDuplex",
+ "ifMtu": 1526,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "10-Gig Ethernet",
+ "ifPhysAddress": "8cf773191fa2",
+ "ifHardType": null,
+ "ifLastChange": 725648953,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 279983046899,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 198583531800,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 2,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 205332011337923,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 264412482414345,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 12888862,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 929678,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 31859125,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 26593960,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
{
"port_descr_type": null,
"port_descr_descr": null,
@@ -7698,6 +8958,216 @@
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
},
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "3/1/1, 10-Gig Ethernet",
+ "ifName": "3/1/1",
+ "portName": null,
+ "ifIndex": 102793216,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "false",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "down",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": "unknown",
+ "ifMtu": 9212,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "10-Gig Ethernet",
+ "ifPhysAddress": "8cf773579ab5",
+ "ifHardType": null,
+ "ifLastChange": 790,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "3/1/2, 10-Gig Ethernet",
+ "ifName": "3/1/2",
+ "portName": null,
+ "ifIndex": 102825984,
+ "ifSpeed": 10000000000,
+ "ifConnectorPresent": "false",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 10000,
+ "ifOperStatus": "down",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "down",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": "unknown",
+ "ifMtu": 9212,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "10-Gig Ethernet",
+ "ifPhysAddress": "8cf773579ab6",
+ "ifHardType": null,
+ "ifLastChange": 14504,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 0,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 0,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 0,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 0,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 0,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 0,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 0,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 0,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
{
"port_descr_type": null,
"port_descr_descr": null,
@@ -7908,6 +9378,216 @@
"ifOutMulticastPkts_delta": null,
"ifOutMulticastPkts_rate": null
},
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "A/1, 10/100 Ethernet TX",
+ "ifName": "A/1",
+ "portName": null,
+ "ifIndex": 234913792,
+ "ifSpeed": 100000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 100,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": "fullDuplex",
+ "ifMtu": 1514,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "10/100 Ethernet TX",
+ "ifPhysAddress": "8cf7730c0cc8",
+ "ifHardType": null,
+ "ifLastChange": 349,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 19553169,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 17691093,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 6947708189,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 4561443664,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 18868207,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 16534873,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 23856,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 29743216,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
+ {
+ "port_descr_type": null,
+ "port_descr_descr": null,
+ "port_descr_circuit": null,
+ "port_descr_speed": null,
+ "port_descr_notes": null,
+ "ifDescr": "B/1, 10/100 Ethernet TX",
+ "ifName": "B/1",
+ "portName": null,
+ "ifIndex": 268468224,
+ "ifSpeed": 100000000,
+ "ifConnectorPresent": "true",
+ "ifPromiscuousMode": "false",
+ "ifHighSpeed": 100,
+ "ifOperStatus": "up",
+ "ifOperStatus_prev": null,
+ "ifAdminStatus": "up",
+ "ifAdminStatus_prev": null,
+ "ifDuplex": "fullDuplex",
+ "ifMtu": 1514,
+ "ifType": "ethernetCsmacd",
+ "ifAlias": "10/100 Ethernet TX",
+ "ifPhysAddress": "8cf7730c0ca4",
+ "ifHardType": null,
+ "ifLastChange": 3321,
+ "ifVlan": "",
+ "ifTrunk": null,
+ "counter_in": null,
+ "counter_out": null,
+ "ignore": 0,
+ "disabled": 0,
+ "detailed": 0,
+ "deleted": 0,
+ "pagpOperationMode": null,
+ "pagpPortState": null,
+ "pagpPartnerDeviceId": null,
+ "pagpPartnerLearnMethod": null,
+ "pagpPartnerIfIndex": null,
+ "pagpPartnerGroupIfIndex": null,
+ "pagpPartnerDeviceName": null,
+ "pagpEthcOperationMode": null,
+ "pagpDeviceId": null,
+ "pagpGroupIfIndex": null,
+ "ifInUcastPkts": 2493046,
+ "ifInUcastPkts_prev": 0,
+ "ifInUcastPkts_delta": null,
+ "ifInUcastPkts_rate": null,
+ "ifOutUcastPkts": 1699,
+ "ifOutUcastPkts_prev": 0,
+ "ifOutUcastPkts_delta": null,
+ "ifOutUcastPkts_rate": null,
+ "ifInErrors": 0,
+ "ifInErrors_prev": 0,
+ "ifInErrors_delta": null,
+ "ifInErrors_rate": null,
+ "ifOutErrors": 0,
+ "ifOutErrors_prev": 0,
+ "ifOutErrors_delta": null,
+ "ifOutErrors_rate": null,
+ "ifInOctets": 5235761419,
+ "ifInOctets_prev": 0,
+ "ifInOctets_delta": null,
+ "ifInOctets_rate": null,
+ "ifOutOctets": 110078,
+ "ifOutOctets_prev": 0,
+ "ifOutOctets_delta": null,
+ "ifOutOctets_rate": null,
+ "poll_prev": null,
+ "ifInNUcastPkts": 0,
+ "ifInNUcastPkts_prev": 0,
+ "ifInNUcastPkts_delta": null,
+ "ifInNUcastPkts_rate": null,
+ "ifOutNUcastPkts": 0,
+ "ifOutNUcastPkts_prev": 0,
+ "ifOutNUcastPkts_delta": null,
+ "ifOutNUcastPkts_rate": null,
+ "ifInDiscards": 18868187,
+ "ifInDiscards_prev": 0,
+ "ifInDiscards_delta": null,
+ "ifInDiscards_rate": null,
+ "ifOutDiscards": 0,
+ "ifOutDiscards_prev": 0,
+ "ifOutDiscards_delta": null,
+ "ifOutDiscards_rate": null,
+ "ifInUnknownProtos": 0,
+ "ifInUnknownProtos_prev": 0,
+ "ifInUnknownProtos_delta": null,
+ "ifInUnknownProtos_rate": null,
+ "ifInBroadcastPkts": 16558685,
+ "ifInBroadcastPkts_prev": 0,
+ "ifInBroadcastPkts_delta": null,
+ "ifInBroadcastPkts_rate": null,
+ "ifOutBroadcastPkts": 5,
+ "ifOutBroadcastPkts_prev": 0,
+ "ifOutBroadcastPkts_delta": null,
+ "ifOutBroadcastPkts_rate": null,
+ "ifInMulticastPkts": 29743194,
+ "ifInMulticastPkts_prev": 0,
+ "ifInMulticastPkts_delta": null,
+ "ifInMulticastPkts_rate": null,
+ "ifOutMulticastPkts": 0,
+ "ifOutMulticastPkts_prev": 0,
+ "ifOutMulticastPkts_delta": null,
+ "ifOutMulticastPkts_rate": null
+ },
{
"port_descr_type": null,
"port_descr_descr": null,
@@ -8550,7 +10230,7 @@
"bgpLocalAs": 0,
"mplsVpnVrfRouteDistinguisher": null,
"mplsVpnVrfDescription": "",
- "ifIndices": "1,7,131073"
+ "ifIndices": "1,3,4,7,131073"
},
{
"vrf_oid": "3",
@@ -8560,6 +10240,22 @@
"mplsVpnVrfDescription": "",
"ifIndices": null
},
+ {
+ "vrf_oid": "254",
+ "vrf_name": "vpls-management",
+ "bgpLocalAs": 0,
+ "mplsVpnVrfRouteDistinguisher": null,
+ "mplsVpnVrfDescription": "",
+ "ifIndices": null
+ },
+ {
+ "vrf_oid": "255",
+ "vrf_name": "management",
+ "bgpLocalAs": 0,
+ "mplsVpnVrfRouteDistinguisher": null,
+ "mplsVpnVrfDescription": "",
+ "ifIndices": null
+ },
{
"vrf_oid": "4094",
"vrf_name": "vpls-management",
@@ -8811,7 +10507,7 @@
"lsp_oid": 2,
"mplsLspRowStatus": "active",
"mplsLspLastChange": 8,
- "mplsLspName": "l-to_goe-0-nokia-sw-b",
+ "mplsLspName": "l-to_b",
"mplsLspAdminState": "inService",
"mplsLspOperState": "inService",
"mplsLspFromAddr": "0.0.0.0",
@@ -8833,7 +10529,7 @@
"lsp_oid": 3,
"mplsLspRowStatus": "active",
"mplsLspLastChange": 8,
- "mplsLspName": "l-to_ber-0-nokia-sw-a",
+ "mplsLspName": "l-to_a",
"mplsLspAdminState": "inService",
"mplsLspOperState": "inService",
"mplsLspFromAddr": "0.0.0.0",
@@ -8855,7 +10551,7 @@
"lsp_oid": 5,
"mplsLspRowStatus": "active",
"mplsLspLastChange": 6568308,
- "mplsLspName": "l-ks-0-nokia-sw-a",
+ "mplsLspName": "l-ks-a",
"mplsLspAdminState": "inService",
"mplsLspOperState": "inService",
"mplsLspFromAddr": "0.0.0.0",
@@ -8877,7 +10573,7 @@
"lsp_oid": 6,
"mplsLspRowStatus": "active",
"mplsLspLastChange": 9341769,
- "mplsLspName": "l-to_goe-0-bng-a",
+ "mplsLspName": "l-to_c",
"mplsLspAdminState": "inService",
"mplsLspOperState": "inService",
"mplsLspFromAddr": "0.0.0.0",
@@ -8899,7 +10595,7 @@
"lsp_oid": 7,
"mplsLspRowStatus": "active",
"mplsLspLastChange": 11924597,
- "mplsLspName": "l-to_goe-0-bng-b",
+ "mplsLspName": "l-to_d",
"mplsLspAdminState": "inService",
"mplsLspOperState": "inService",
"mplsLspFromAddr": "0.0.0.0",
@@ -8952,9 +10648,9 @@
"mplsLspPathFailNodeAddr": "0.0.0.0",
"mplsLspPathMetric": 5,
"mplsLspPathOperMetric": 5,
- "mplsLspPathTimeUp": 0,
- "mplsLspPathTimeDown": 0,
- "mplsLspPathTransitionCount": 0,
+ "mplsLspPathTimeUp": null,
+ "mplsLspPathTimeDown": null,
+ "mplsLspPathTransitionCount": null,
"vrf_oid": 1,
"lsp_oid": 2
},
@@ -8972,9 +10668,9 @@
"mplsLspPathFailNodeAddr": "0.0.0.0",
"mplsLspPathMetric": 15,
"mplsLspPathOperMetric": 15,
- "mplsLspPathTimeUp": 0,
- "mplsLspPathTimeDown": 0,
- "mplsLspPathTransitionCount": 0,
+ "mplsLspPathTimeUp": null,
+ "mplsLspPathTimeDown": null,
+ "mplsLspPathTransitionCount": null,
"vrf_oid": 1,
"lsp_oid": 3
},
@@ -8992,9 +10688,9 @@
"mplsLspPathFailNodeAddr": "0.0.0.0",
"mplsLspPathMetric": 20,
"mplsLspPathOperMetric": 20,
- "mplsLspPathTimeUp": 0,
- "mplsLspPathTimeDown": 0,
- "mplsLspPathTransitionCount": 0,
+ "mplsLspPathTimeUp": null,
+ "mplsLspPathTimeDown": null,
+ "mplsLspPathTransitionCount": null,
"vrf_oid": 1,
"lsp_oid": 5
},
@@ -9012,9 +10708,9 @@
"mplsLspPathFailNodeAddr": "0.0.0.0",
"mplsLspPathMetric": 10,
"mplsLspPathOperMetric": 10,
- "mplsLspPathTimeUp": 0,
- "mplsLspPathTimeDown": 0,
- "mplsLspPathTransitionCount": 0,
+ "mplsLspPathTimeUp": null,
+ "mplsLspPathTimeDown": null,
+ "mplsLspPathTransitionCount": null,
"vrf_oid": 1,
"lsp_oid": 6
},
@@ -9032,12 +10728,476 @@
"mplsLspPathFailNodeAddr": "0.0.0.0",
"mplsLspPathMetric": 20,
"mplsLspPathOperMetric": 20,
- "mplsLspPathTimeUp": 0,
- "mplsLspPathTimeDown": 0,
- "mplsLspPathTransitionCount": 0,
+ "mplsLspPathTimeUp": null,
+ "mplsLspPathTimeDown": null,
+ "mplsLspPathTransitionCount": null,
"vrf_oid": 1,
"lsp_oid": 7
}
+ ],
+ "mpls_sdps": [
+ {
+ "sdp_oid": 10001,
+ "sdpRowStatus": "active",
+ "sdpDelivery": "mpls",
+ "sdpDescription": "",
+ "sdpAdminStatus": "up",
+ "sdpOperStatus": "up",
+ "sdpAdminPathMtu": 0,
+ "sdpOperPathMtu": 9190,
+ "sdpLastMgmtChange": 8,
+ "sdpLastStatusChange": 16538799,
+ "sdpActiveLspType": "rsvp",
+ "sdpFarEndInetAddressType": "ipv4",
+ "sdpFarEndInetAddress": "172.17.0.1"
+ },
+ {
+ "sdp_oid": 10002,
+ "sdpRowStatus": "active",
+ "sdpDelivery": "mpls",
+ "sdpDescription": "",
+ "sdpAdminStatus": "up",
+ "sdpOperStatus": "up",
+ "sdpAdminPathMtu": 0,
+ "sdpOperPathMtu": 9190,
+ "sdpLastMgmtChange": 8,
+ "sdpLastStatusChange": 23308539,
+ "sdpActiveLspType": "rsvp",
+ "sdpFarEndInetAddressType": "ipv4",
+ "sdpFarEndInetAddress": "172.17.0.2"
+ },
+ {
+ "sdp_oid": 10003,
+ "sdpRowStatus": "active",
+ "sdpDelivery": "mpls",
+ "sdpDescription": "",
+ "sdpAdminStatus": "up",
+ "sdpOperStatus": "up",
+ "sdpAdminPathMtu": 0,
+ "sdpOperPathMtu": 9186,
+ "sdpLastMgmtChange": 13057174,
+ "sdpLastStatusChange": 16811037,
+ "sdpActiveLspType": "rsvp",
+ "sdpFarEndInetAddressType": "ipv4",
+ "sdpFarEndInetAddress": "172.17.0.5"
+ },
+ {
+ "sdp_oid": 10004,
+ "sdpRowStatus": "active",
+ "sdpDelivery": "mpls",
+ "sdpDescription": "",
+ "sdpAdminStatus": "up",
+ "sdpOperStatus": "up",
+ "sdpAdminPathMtu": 0,
+ "sdpOperPathMtu": 9190,
+ "sdpLastMgmtChange": 9342591,
+ "sdpLastStatusChange": 9342591,
+ "sdpActiveLspType": "rsvp",
+ "sdpFarEndInetAddressType": "ipv4",
+ "sdpFarEndInetAddress": "172.17.0.3"
+ },
+ {
+ "sdp_oid": 10005,
+ "sdpRowStatus": "active",
+ "sdpDelivery": "mpls",
+ "sdpDescription": "",
+ "sdpAdminStatus": "up",
+ "sdpOperStatus": "up",
+ "sdpAdminPathMtu": 0,
+ "sdpOperPathMtu": 9190,
+ "sdpLastMgmtChange": 11924642,
+ "sdpLastStatusChange": 18735520,
+ "sdpActiveLspType": "rsvp",
+ "sdpFarEndInetAddressType": "ipv4",
+ "sdpFarEndInetAddress": "172.17.0.4"
+ }
+ ],
+ "mpls_sdp_binds": [
+ {
+ "sdp_oid": 10002,
+ "svc_oid": 118208001,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 8,
+ "sdpBindLastStatusChange": 23308539,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 10921418,
+ "sdpBindBaseStatsIngFwdOctets": 2565706678,
+ "sdpBindBaseStatsEgrFwdPackets": 25010173,
+ "sdpBindBaseStatsEgrFwdOctets": 3108152491
+ },
+ {
+ "sdp_oid": 10003,
+ "svc_oid": 118208001,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 6568883,
+ "sdpBindLastStatusChange": 16811037,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 23440009,
+ "sdpBindBaseStatsIngFwdOctets": 5652482196,
+ "sdpBindBaseStatsEgrFwdPackets": 43081574,
+ "sdpBindBaseStatsEgrFwdOctets": 5375761401
+ },
+ {
+ "sdp_oid": 10003,
+ "svc_oid": 118208002,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 13038001,
+ "sdpBindLastStatusChange": 16811037,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 118738109,
+ "sdpBindBaseStatsIngFwdOctets": 27713461538,
+ "sdpBindBaseStatsEgrFwdPackets": 94809135,
+ "sdpBindBaseStatsEgrFwdOctets": 11497030416
+ },
+ {
+ "sdp_oid": 10003,
+ "svc_oid": 118208003,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 15315549,
+ "sdpBindLastStatusChange": 16811037,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 1260099,
+ "sdpBindBaseStatsIngFwdOctets": 190952114,
+ "sdpBindBaseStatsEgrFwdPackets": 904877,
+ "sdpBindBaseStatsEgrFwdOctets": 262962167
+ },
+ {
+ "sdp_oid": 10003,
+ "svc_oid": 118208004,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 18844830,
+ "sdpBindLastStatusChange": 18846521,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 118360373,
+ "sdpBindBaseStatsIngFwdOctets": 24567445373,
+ "sdpBindBaseStatsEgrFwdPackets": 112611191,
+ "sdpBindBaseStatsEgrFwdOctets": 14268643820
+ },
+ {
+ "sdp_oid": 10003,
+ "svc_oid": 118208016,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 22704040,
+ "sdpBindLastStatusChange": 22704056,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 16217838992,
+ "sdpBindBaseStatsIngFwdOctets": 21668561559516,
+ "sdpBindBaseStatsEgrFwdPackets": 9377036331,
+ "sdpBindBaseStatsEgrFwdOctets": 1611865356827
+ },
+ {
+ "sdp_oid": 10004,
+ "svc_oid": 118208010,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 9676834,
+ "sdpBindLastStatusChange": 9681381,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 180681411423,
+ "sdpBindBaseStatsIngFwdOctets": 172681948437626,
+ "sdpBindBaseStatsEgrFwdPackets": 196610148816,
+ "sdpBindBaseStatsEgrFwdOctets": 205080634467432
+ },
+ {
+ "sdp_oid": 10004,
+ "svc_oid": 118208012,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 13559106,
+ "sdpBindLastStatusChange": 13559187,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 60320060747,
+ "sdpBindBaseStatsIngFwdOctets": 81978018332493,
+ "sdpBindBaseStatsEgrFwdPackets": 74070713278,
+ "sdpBindBaseStatsEgrFwdOctets": 74644018584588
+ },
+ {
+ "sdp_oid": 10005,
+ "svc_oid": 118208010,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 18735388,
+ "sdpBindLastStatusChange": 18735991,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 157166550,
+ "sdpBindBaseStatsIngFwdOctets": 22598886838,
+ "sdpBindBaseStatsEgrFwdPackets": 140503814341,
+ "sdpBindBaseStatsEgrFwdOctets": 153942622446859
+ },
+ {
+ "sdp_oid": 10005,
+ "svc_oid": 118208012,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 18738566,
+ "sdpBindLastStatusChange": 18740517,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 59278632,
+ "sdpBindBaseStatsIngFwdOctets": 6624642623,
+ "sdpBindBaseStatsEgrFwdPackets": 126434894682,
+ "sdpBindBaseStatsEgrFwdOctets": 122675287979227
+ }
+ ],
+ "mpls_services": [
+ {
+ "svc_oid": 118208001,
+ "svcRowStatus": "active",
+ "svcType": "tls",
+ "svcCustId": 1,
+ "svcAdminStatus": "up",
+ "svcOperStatus": "up",
+ "svcDescription": "Management",
+ "svcMtu": 1514,
+ "svcNumSaps": 1,
+ "svcNumSdps": 2,
+ "svcLastMgmtChange": 12437218,
+ "svcLastStatusChange": 7092377,
+ "svcVRouterId": 0,
+ "svcTlsMacLearning": "enabled",
+ "svcTlsStpAdminStatus": "disabled",
+ "svcTlsStpOperStatus": "down",
+ "svcTlsFdbTableSize": 250,
+ "svcTlsFdbNumEntries": 53
+ },
+ {
+ "svc_oid": 118208002,
+ "svcRowStatus": "active",
+ "svcType": "tls",
+ "svcCustId": 1,
+ "svcAdminStatus": "up",
+ "svcOperStatus": "up",
+ "svcDescription": "VLAN 2002",
+ "svcMtu": 1514,
+ "svcNumSaps": 1,
+ "svcNumSdps": 1,
+ "svcLastMgmtChange": 13038062,
+ "svcLastStatusChange": 13038062,
+ "svcVRouterId": 0,
+ "svcTlsMacLearning": "enabled",
+ "svcTlsStpAdminStatus": "disabled",
+ "svcTlsStpOperStatus": "down",
+ "svcTlsFdbTableSize": 250,
+ "svcTlsFdbNumEntries": 2
+ },
+ {
+ "svc_oid": 118208003,
+ "svcRowStatus": "active",
+ "svcType": "tls",
+ "svcCustId": 1,
+ "svcAdminStatus": "up",
+ "svcOperStatus": "up",
+ "svcDescription": "VLAN 2512",
+ "svcMtu": 1514,
+ "svcNumSaps": 1,
+ "svcNumSdps": 1,
+ "svcLastMgmtChange": 15315561,
+ "svcLastStatusChange": 15315561,
+ "svcVRouterId": 0,
+ "svcTlsMacLearning": "enabled",
+ "svcTlsStpAdminStatus": "disabled",
+ "svcTlsStpOperStatus": "down",
+ "svcTlsFdbTableSize": 250,
+ "svcTlsFdbNumEntries": 8
+ },
+ {
+ "svc_oid": 118208004,
+ "svcRowStatus": "active",
+ "svcType": "tls",
+ "svcCustId": 1,
+ "svcAdminStatus": "up",
+ "svcOperStatus": "up",
+ "svcDescription": "VLAN 2003",
+ "svcMtu": 1514,
+ "svcNumSaps": 1,
+ "svcNumSdps": 1,
+ "svcLastMgmtChange": 18844847,
+ "svcLastStatusChange": 18844847,
+ "svcVRouterId": 0,
+ "svcTlsMacLearning": "enabled",
+ "svcTlsStpAdminStatus": "disabled",
+ "svcTlsStpOperStatus": "down",
+ "svcTlsFdbTableSize": 250,
+ "svcTlsFdbNumEntries": 2
+ },
+ {
+ "svc_oid": 118208010,
+ "svcRowStatus": "active",
+ "svcType": "tls",
+ "svcCustId": 1,
+ "svcAdminStatus": "up",
+ "svcOperStatus": "up",
+ "svcDescription": "BNG",
+ "svcMtu": 1518,
+ "svcNumSaps": 1,
+ "svcNumSdps": 2,
+ "svcLastMgmtChange": 18735388,
+ "svcLastStatusChange": 9676834,
+ "svcVRouterId": 0,
+ "svcTlsMacLearning": "enabled",
+ "svcTlsStpAdminStatus": "disabled",
+ "svcTlsStpOperStatus": "down",
+ "svcTlsFdbTableSize": 250,
+ "svcTlsFdbNumEntries": 3
+ },
+ {
+ "svc_oid": 118208012,
+ "svcRowStatus": "active",
+ "svcType": "tls",
+ "svcCustId": 1,
+ "svcAdminStatus": "up",
+ "svcOperStatus": "up",
+ "svcDescription": "BGP Peering",
+ "svcMtu": 1518,
+ "svcNumSaps": 1,
+ "svcNumSdps": 2,
+ "svcLastMgmtChange": 18738566,
+ "svcLastStatusChange": 13559111,
+ "svcVRouterId": 0,
+ "svcTlsMacLearning": "enabled",
+ "svcTlsStpAdminStatus": "disabled",
+ "svcTlsStpOperStatus": "down",
+ "svcTlsFdbTableSize": 250,
+ "svcTlsFdbNumEntries": 7
+ },
+ {
+ "svc_oid": 118208016,
+ "svcRowStatus": "active",
+ "svcType": "tls",
+ "svcCustId": 1,
+ "svcAdminStatus": "up",
+ "svcOperStatus": "up",
+ "svcDescription": "Test",
+ "svcMtu": 1514,
+ "svcNumSaps": 1,
+ "svcNumSdps": 1,
+ "svcLastMgmtChange": 22704053,
+ "svcLastStatusChange": 22704056,
+ "svcVRouterId": 0,
+ "svcTlsMacLearning": "enabled",
+ "svcTlsStpAdminStatus": "disabled",
+ "svcTlsStpOperStatus": "down",
+ "svcTlsFdbTableSize": 250,
+ "svcTlsFdbNumEntries": 2
+ }
+ ],
+ "mpls_saps": [
+ {
+ "svc_oid": 118208001,
+ "sapPortId": 1342177283,
+ "ifName": "lag-3",
+ "sapEncapValue": "10",
+ "sapRowStatus": "active",
+ "sapType": "tls",
+ "sapDescription": "VLAN 10",
+ "sapAdminStatus": "up",
+ "sapOperStatus": "up",
+ "sapLastMgmtChange": 12437249,
+ "sapLastStatusChange": 7256490
+ },
+ {
+ "svc_oid": 118208002,
+ "sapPortId": 1342177283,
+ "ifName": "lag-3",
+ "sapEncapValue": "2002",
+ "sapRowStatus": "active",
+ "sapType": "tls",
+ "sapDescription": "",
+ "sapAdminStatus": "up",
+ "sapOperStatus": "up",
+ "sapLastMgmtChange": 13038042,
+ "sapLastStatusChange": 13038062
+ },
+ {
+ "svc_oid": 118208003,
+ "sapPortId": 1342177283,
+ "ifName": "lag-3",
+ "sapEncapValue": "2512",
+ "sapRowStatus": "active",
+ "sapType": "tls",
+ "sapDescription": "",
+ "sapAdminStatus": "up",
+ "sapOperStatus": "up",
+ "sapLastMgmtChange": 15315533,
+ "sapLastStatusChange": 15315561
+ },
+ {
+ "svc_oid": 118208004,
+ "sapPortId": 1342177283,
+ "ifName": "lag-3",
+ "sapEncapValue": "2003",
+ "sapRowStatus": "active",
+ "sapType": "tls",
+ "sapDescription": "",
+ "sapAdminStatus": "up",
+ "sapOperStatus": "up",
+ "sapLastMgmtChange": 18844769,
+ "sapLastStatusChange": 18844847
+ },
+ {
+ "svc_oid": 118208010,
+ "sapPortId": 69238784,
+ "ifName": "2/1/1",
+ "sapEncapValue": "58",
+ "sapRowStatus": "active",
+ "sapType": "tls",
+ "sapDescription": "VLAN 58",
+ "sapAdminStatus": "up",
+ "sapOperStatus": "up",
+ "sapLastMgmtChange": 9415513,
+ "sapLastStatusChange": 23308463
+ },
+ {
+ "svc_oid": 118208012,
+ "sapPortId": 1342177283,
+ "ifName": "lag-3",
+ "sapEncapValue": "113",
+ "sapRowStatus": "active",
+ "sapType": "tls",
+ "sapDescription": "VLAN 113",
+ "sapAdminStatus": "up",
+ "sapOperStatus": "up",
+ "sapLastMgmtChange": 13559097,
+ "sapLastStatusChange": 13559111
+ },
+ {
+ "svc_oid": 118208016,
+ "sapPortId": 1342177283,
+ "ifName": "lag-3",
+ "sapEncapValue": "2001",
+ "sapRowStatus": "active",
+ "sapType": "tls",
+ "sapDescription": "VLAN 2001",
+ "sapAdminStatus": "up",
+ "sapOperStatus": "up",
+ "sapLastMgmtChange": 22954389,
+ "sapLastStatusChange": 0
+ }
]
},
"poller": {
@@ -9069,7 +11229,7 @@
"lsp_oid": 2,
"mplsLspRowStatus": "active",
"mplsLspLastChange": 8,
- "mplsLspName": "l-to_goe-0-nokia-sw-b",
+ "mplsLspName": "l-to_b",
"mplsLspAdminState": "inService",
"mplsLspOperState": "inService",
"mplsLspFromAddr": "0.0.0.0",
@@ -9091,7 +11251,7 @@
"lsp_oid": 3,
"mplsLspRowStatus": "active",
"mplsLspLastChange": 8,
- "mplsLspName": "l-to_ber-0-nokia-sw-a",
+ "mplsLspName": "l-to_a",
"mplsLspAdminState": "inService",
"mplsLspOperState": "inService",
"mplsLspFromAddr": "0.0.0.0",
@@ -9113,7 +11273,7 @@
"lsp_oid": 5,
"mplsLspRowStatus": "active",
"mplsLspLastChange": 6568308,
- "mplsLspName": "l-ks-0-nokia-sw-a",
+ "mplsLspName": "l-ks-a",
"mplsLspAdminState": "inService",
"mplsLspOperState": "inService",
"mplsLspFromAddr": "0.0.0.0",
@@ -9135,7 +11295,7 @@
"lsp_oid": 6,
"mplsLspRowStatus": "active",
"mplsLspLastChange": 9341769,
- "mplsLspName": "l-to_goe-0-bng-a",
+ "mplsLspName": "l-to_c",
"mplsLspAdminState": "inService",
"mplsLspOperState": "inService",
"mplsLspFromAddr": "0.0.0.0",
@@ -9157,7 +11317,7 @@
"lsp_oid": 7,
"mplsLspRowStatus": "active",
"mplsLspLastChange": 11924597,
- "mplsLspName": "l-to_goe-0-bng-b",
+ "mplsLspName": "l-to_d",
"mplsLspAdminState": "inService",
"mplsLspOperState": "inService",
"mplsLspFromAddr": "0.0.0.0",
@@ -9296,6 +11456,470 @@
"vrf_oid": 1,
"lsp_oid": 7
}
+ ],
+ "mpls_sdps": [
+ {
+ "sdp_oid": 10001,
+ "sdpRowStatus": "active",
+ "sdpDelivery": "mpls",
+ "sdpDescription": "",
+ "sdpAdminStatus": "up",
+ "sdpOperStatus": "up",
+ "sdpAdminPathMtu": 0,
+ "sdpOperPathMtu": 9190,
+ "sdpLastMgmtChange": 8,
+ "sdpLastStatusChange": 16538799,
+ "sdpActiveLspType": "rsvp",
+ "sdpFarEndInetAddressType": "ipv4",
+ "sdpFarEndInetAddress": "172.17.0.1"
+ },
+ {
+ "sdp_oid": 10002,
+ "sdpRowStatus": "active",
+ "sdpDelivery": "mpls",
+ "sdpDescription": "",
+ "sdpAdminStatus": "up",
+ "sdpOperStatus": "up",
+ "sdpAdminPathMtu": 0,
+ "sdpOperPathMtu": 9190,
+ "sdpLastMgmtChange": 8,
+ "sdpLastStatusChange": 23308539,
+ "sdpActiveLspType": "rsvp",
+ "sdpFarEndInetAddressType": "ipv4",
+ "sdpFarEndInetAddress": "172.17.0.2"
+ },
+ {
+ "sdp_oid": 10003,
+ "sdpRowStatus": "active",
+ "sdpDelivery": "mpls",
+ "sdpDescription": "",
+ "sdpAdminStatus": "up",
+ "sdpOperStatus": "up",
+ "sdpAdminPathMtu": 0,
+ "sdpOperPathMtu": 9186,
+ "sdpLastMgmtChange": 13057174,
+ "sdpLastStatusChange": 16811037,
+ "sdpActiveLspType": "rsvp",
+ "sdpFarEndInetAddressType": "ipv4",
+ "sdpFarEndInetAddress": "172.17.0.5"
+ },
+ {
+ "sdp_oid": 10004,
+ "sdpRowStatus": "active",
+ "sdpDelivery": "mpls",
+ "sdpDescription": "",
+ "sdpAdminStatus": "up",
+ "sdpOperStatus": "up",
+ "sdpAdminPathMtu": 0,
+ "sdpOperPathMtu": 9190,
+ "sdpLastMgmtChange": 9342591,
+ "sdpLastStatusChange": 9342591,
+ "sdpActiveLspType": "rsvp",
+ "sdpFarEndInetAddressType": "ipv4",
+ "sdpFarEndInetAddress": "172.17.0.3"
+ },
+ {
+ "sdp_oid": 10005,
+ "sdpRowStatus": "active",
+ "sdpDelivery": "mpls",
+ "sdpDescription": "",
+ "sdpAdminStatus": "up",
+ "sdpOperStatus": "up",
+ "sdpAdminPathMtu": 0,
+ "sdpOperPathMtu": 9190,
+ "sdpLastMgmtChange": 11924642,
+ "sdpLastStatusChange": 18735520,
+ "sdpActiveLspType": "rsvp",
+ "sdpFarEndInetAddressType": "ipv4",
+ "sdpFarEndInetAddress": "172.17.0.4"
+ }
+ ],
+ "mpls_sdp_binds": [
+ {
+ "sdp_oid": 10002,
+ "svc_oid": 118208001,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 8,
+ "sdpBindLastStatusChange": 23308539,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 10921418,
+ "sdpBindBaseStatsIngFwdOctets": 2565706678,
+ "sdpBindBaseStatsEgrFwdPackets": 25010173,
+ "sdpBindBaseStatsEgrFwdOctets": 3108152491
+ },
+ {
+ "sdp_oid": 10003,
+ "svc_oid": 118208001,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 6568883,
+ "sdpBindLastStatusChange": 16811037,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 23440009,
+ "sdpBindBaseStatsIngFwdOctets": 5652482196,
+ "sdpBindBaseStatsEgrFwdPackets": 43081574,
+ "sdpBindBaseStatsEgrFwdOctets": 5375761401
+ },
+ {
+ "sdp_oid": 10003,
+ "svc_oid": 118208002,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 13038001,
+ "sdpBindLastStatusChange": 16811037,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 118738109,
+ "sdpBindBaseStatsIngFwdOctets": 27713461538,
+ "sdpBindBaseStatsEgrFwdPackets": 94809135,
+ "sdpBindBaseStatsEgrFwdOctets": 11497030416
+ },
+ {
+ "sdp_oid": 10003,
+ "svc_oid": 118208003,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 15315549,
+ "sdpBindLastStatusChange": 16811037,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 1260099,
+ "sdpBindBaseStatsIngFwdOctets": 190952114,
+ "sdpBindBaseStatsEgrFwdPackets": 904877,
+ "sdpBindBaseStatsEgrFwdOctets": 262962167
+ },
+ {
+ "sdp_oid": 10003,
+ "svc_oid": 118208004,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 18844830,
+ "sdpBindLastStatusChange": 18846521,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 118360373,
+ "sdpBindBaseStatsIngFwdOctets": 24567445373,
+ "sdpBindBaseStatsEgrFwdPackets": 112611191,
+ "sdpBindBaseStatsEgrFwdOctets": 14268643820
+ },
+ {
+ "sdp_oid": 10003,
+ "svc_oid": 118208016,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 22704040,
+ "sdpBindLastStatusChange": 22704056,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 16217838992,
+ "sdpBindBaseStatsIngFwdOctets": 21668561559516,
+ "sdpBindBaseStatsEgrFwdPackets": 9377036331,
+ "sdpBindBaseStatsEgrFwdOctets": 1611865356827
+ },
+ {
+ "sdp_oid": 10004,
+ "svc_oid": 118208010,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 9676834,
+ "sdpBindLastStatusChange": 9681381,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 180681411423,
+ "sdpBindBaseStatsIngFwdOctets": 172681948437626,
+ "sdpBindBaseStatsEgrFwdPackets": 196610148816,
+ "sdpBindBaseStatsEgrFwdOctets": 205080634467432
+ },
+ {
+ "sdp_oid": 10004,
+ "svc_oid": 118208012,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 13559106,
+ "sdpBindLastStatusChange": 13559187,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 60320060747,
+ "sdpBindBaseStatsIngFwdOctets": 81978018332493,
+ "sdpBindBaseStatsEgrFwdPackets": 74070713278,
+ "sdpBindBaseStatsEgrFwdOctets": 74644018584588
+ },
+ {
+ "sdp_oid": 10005,
+ "svc_oid": 118208010,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 18735388,
+ "sdpBindLastStatusChange": 18735991,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 157166550,
+ "sdpBindBaseStatsIngFwdOctets": 22598886838,
+ "sdpBindBaseStatsEgrFwdPackets": 140503814341,
+ "sdpBindBaseStatsEgrFwdOctets": 153942622446859
+ },
+ {
+ "sdp_oid": 10005,
+ "svc_oid": 118208012,
+ "sdpBindRowStatus": "active",
+ "sdpBindAdminStatus": "up",
+ "sdpBindOperStatus": "up",
+ "sdpBindLastMgmtChange": 18738566,
+ "sdpBindLastStatusChange": 18740517,
+ "sdpBindType": "mesh",
+ "sdpBindVcType": "ether",
+ "sdpBindBaseStatsIngFwdPackets": 59278632,
+ "sdpBindBaseStatsIngFwdOctets": 6624642623,
+ "sdpBindBaseStatsEgrFwdPackets": 126434894682,
+ "sdpBindBaseStatsEgrFwdOctets": 122675287979227
+ }
+ ],
+ "mpls_services": [
+ {
+ "svc_oid": 118208001,
+ "svcRowStatus": "active",
+ "svcType": "tls",
+ "svcCustId": 1,
+ "svcAdminStatus": "up",
+ "svcOperStatus": "up",
+ "svcDescription": "Management",
+ "svcMtu": 1514,
+ "svcNumSaps": 1,
+ "svcNumSdps": 2,
+ "svcLastMgmtChange": 12437218,
+ "svcLastStatusChange": 7092377,
+ "svcVRouterId": 0,
+ "svcTlsMacLearning": "enabled",
+ "svcTlsStpAdminStatus": "disabled",
+ "svcTlsStpOperStatus": "down",
+ "svcTlsFdbTableSize": 250,
+ "svcTlsFdbNumEntries": 53
+ },
+ {
+ "svc_oid": 118208002,
+ "svcRowStatus": "active",
+ "svcType": "tls",
+ "svcCustId": 1,
+ "svcAdminStatus": "up",
+ "svcOperStatus": "up",
+ "svcDescription": "VLAN 2002",
+ "svcMtu": 1514,
+ "svcNumSaps": 1,
+ "svcNumSdps": 1,
+ "svcLastMgmtChange": 13038062,
+ "svcLastStatusChange": 13038062,
+ "svcVRouterId": 0,
+ "svcTlsMacLearning": "enabled",
+ "svcTlsStpAdminStatus": "disabled",
+ "svcTlsStpOperStatus": "down",
+ "svcTlsFdbTableSize": 250,
+ "svcTlsFdbNumEntries": 2
+ },
+ {
+ "svc_oid": 118208003,
+ "svcRowStatus": "active",
+ "svcType": "tls",
+ "svcCustId": 1,
+ "svcAdminStatus": "up",
+ "svcOperStatus": "up",
+ "svcDescription": "VLAN 2512",
+ "svcMtu": 1514,
+ "svcNumSaps": 1,
+ "svcNumSdps": 1,
+ "svcLastMgmtChange": 15315561,
+ "svcLastStatusChange": 15315561,
+ "svcVRouterId": 0,
+ "svcTlsMacLearning": "enabled",
+ "svcTlsStpAdminStatus": "disabled",
+ "svcTlsStpOperStatus": "down",
+ "svcTlsFdbTableSize": 250,
+ "svcTlsFdbNumEntries": 8
+ },
+ {
+ "svc_oid": 118208004,
+ "svcRowStatus": "active",
+ "svcType": "tls",
+ "svcCustId": 1,
+ "svcAdminStatus": "up",
+ "svcOperStatus": "up",
+ "svcDescription": "VLAN 2003",
+ "svcMtu": 1514,
+ "svcNumSaps": 1,
+ "svcNumSdps": 1,
+ "svcLastMgmtChange": 18844847,
+ "svcLastStatusChange": 18844847,
+ "svcVRouterId": 0,
+ "svcTlsMacLearning": "enabled",
+ "svcTlsStpAdminStatus": "disabled",
+ "svcTlsStpOperStatus": "down",
+ "svcTlsFdbTableSize": 250,
+ "svcTlsFdbNumEntries": 2
+ },
+ {
+ "svc_oid": 118208010,
+ "svcRowStatus": "active",
+ "svcType": "tls",
+ "svcCustId": 1,
+ "svcAdminStatus": "up",
+ "svcOperStatus": "up",
+ "svcDescription": "BNG",
+ "svcMtu": 1518,
+ "svcNumSaps": 1,
+ "svcNumSdps": 2,
+ "svcLastMgmtChange": 18735388,
+ "svcLastStatusChange": 9676834,
+ "svcVRouterId": 0,
+ "svcTlsMacLearning": "enabled",
+ "svcTlsStpAdminStatus": "disabled",
+ "svcTlsStpOperStatus": "down",
+ "svcTlsFdbTableSize": 250,
+ "svcTlsFdbNumEntries": 3
+ },
+ {
+ "svc_oid": 118208012,
+ "svcRowStatus": "active",
+ "svcType": "tls",
+ "svcCustId": 1,
+ "svcAdminStatus": "up",
+ "svcOperStatus": "up",
+ "svcDescription": "BGP Peering",
+ "svcMtu": 1518,
+ "svcNumSaps": 1,
+ "svcNumSdps": 2,
+ "svcLastMgmtChange": 18738566,
+ "svcLastStatusChange": 13559111,
+ "svcVRouterId": 0,
+ "svcTlsMacLearning": "enabled",
+ "svcTlsStpAdminStatus": "disabled",
+ "svcTlsStpOperStatus": "down",
+ "svcTlsFdbTableSize": 250,
+ "svcTlsFdbNumEntries": 7
+ },
+ {
+ "svc_oid": 118208016,
+ "svcRowStatus": "active",
+ "svcType": "tls",
+ "svcCustId": 1,
+ "svcAdminStatus": "up",
+ "svcOperStatus": "up",
+ "svcDescription": "Test",
+ "svcMtu": 1514,
+ "svcNumSaps": 1,
+ "svcNumSdps": 1,
+ "svcLastMgmtChange": 22704053,
+ "svcLastStatusChange": 22704056,
+ "svcVRouterId": 0,
+ "svcTlsMacLearning": "enabled",
+ "svcTlsStpAdminStatus": "disabled",
+ "svcTlsStpOperStatus": "down",
+ "svcTlsFdbTableSize": 250,
+ "svcTlsFdbNumEntries": 2
+ }
+ ],
+ "mpls_saps": [
+ {
+ "svc_oid": 118208001,
+ "sapPortId": 1342177283,
+ "ifName": "lag-3",
+ "sapEncapValue": "10",
+ "sapRowStatus": "active",
+ "sapType": "tls",
+ "sapDescription": "VLAN 10",
+ "sapAdminStatus": "up",
+ "sapOperStatus": "up",
+ "sapLastMgmtChange": 12437249,
+ "sapLastStatusChange": 7256490
+ },
+ {
+ "svc_oid": 118208002,
+ "sapPortId": 1342177283,
+ "ifName": "lag-3",
+ "sapEncapValue": "2002",
+ "sapRowStatus": "active",
+ "sapType": "tls",
+ "sapDescription": "",
+ "sapAdminStatus": "up",
+ "sapOperStatus": "up",
+ "sapLastMgmtChange": 13038042,
+ "sapLastStatusChange": 13038062
+ },
+ {
+ "svc_oid": 118208003,
+ "sapPortId": 1342177283,
+ "ifName": "lag-3",
+ "sapEncapValue": "2512",
+ "sapRowStatus": "active",
+ "sapType": "tls",
+ "sapDescription": "",
+ "sapAdminStatus": "up",
+ "sapOperStatus": "up",
+ "sapLastMgmtChange": 15315533,
+ "sapLastStatusChange": 15315561
+ },
+ {
+ "svc_oid": 118208004,
+ "sapPortId": 1342177283,
+ "ifName": "lag-3",
+ "sapEncapValue": "2003",
+ "sapRowStatus": "active",
+ "sapType": "tls",
+ "sapDescription": "",
+ "sapAdminStatus": "up",
+ "sapOperStatus": "up",
+ "sapLastMgmtChange": 18844769,
+ "sapLastStatusChange": 18844847
+ },
+ {
+ "svc_oid": 118208010,
+ "sapPortId": 69238784,
+ "ifName": "2/1/1",
+ "sapEncapValue": "58",
+ "sapRowStatus": "active",
+ "sapType": "tls",
+ "sapDescription": "VLAN 58",
+ "sapAdminStatus": "up",
+ "sapOperStatus": "up",
+ "sapLastMgmtChange": 9415513,
+ "sapLastStatusChange": 23308463
+ },
+ {
+ "svc_oid": 118208012,
+ "sapPortId": 1342177283,
+ "ifName": "lag-3",
+ "sapEncapValue": "113",
+ "sapRowStatus": "active",
+ "sapType": "tls",
+ "sapDescription": "VLAN 113",
+ "sapAdminStatus": "up",
+ "sapOperStatus": "up",
+ "sapLastMgmtChange": 13559097,
+ "sapLastStatusChange": 13559111
+ },
+ {
+ "svc_oid": 118208016,
+ "sapPortId": 1342177283,
+ "ifName": "lag-3",
+ "sapEncapValue": "2001",
+ "sapRowStatus": "active",
+ "sapType": "tls",
+ "sapDescription": "VLAN 2001",
+ "sapAdminStatus": "up",
+ "sapOperStatus": "up",
+ "sapLastMgmtChange": 22954389,
+ "sapLastStatusChange": 0
+ }
]
}
}
diff --git a/tests/module_tables.yaml b/tests/module_tables.yaml
index f8422cd837..4c7ea76060 100644
--- a/tests/module_tables.yaml
+++ b/tests/module_tables.yaml
@@ -38,6 +38,23 @@ mpls:
joins:
- { left: mpls_lsp_paths.lsp_id, right: mpls_lsps.lsp_id, select: [vrf_oid, lsp_oid] }
order_by: vrf_oid, lsp_oid, path_oid
+ mpls_sdps:
+ excluded_fields: [sdp_id, device_id]
+ order_by: sdp_oid
+ mpls_sdp_binds:
+ excluded_fields: [bind_id, sdp_id, svc_id, device_id]
+ joins:
+ - { left: mpls_sdp_binds.sdp_id, right: mpls_sdps.sdp_id, select: [mpls_sdps.sdp_oid] }
+ - { left: mpls_sdp_binds.svc_id, right: mpls_services.svc_id, select: [mpls_services.svc_oid] }
+ order_by: mpls_sdps.sdp_oid, mpls_services.svc_oid
+ mpls_services:
+ excluded_fields: [svc_id, device_id]
+ order_by: svc_oid
+ mpls_saps:
+ excluded_fields: [sap_id, svc_id, device_id]
+ joins:
+ - { left: mpls_saps.svc_id, right: mpls_services.svc_id, select: [mpls_services.svc_oid] }
+ order_by: mpls_services.svc_oid, mpls_saps.sapPortId, mpls_saps.sapEncapValue
ports:
ports:
excluded_fields: [device_id, port_id, poll_time, poll_period, ifVrf]
@@ -100,4 +117,4 @@ cisco-mac-accounting:
joins:
- { left: mac_accounting.port_id, right: ports.port_id, select: [ifIndex] }
custom_where: WHERE ports.device_id=?
- order_by: ports.ifIndex, mac
\ No newline at end of file
+ order_by: ports.ifIndex, mac
diff --git a/tests/snmpsim/timos.snmprec b/tests/snmpsim/timos.snmprec
index 80876701e7..3f544a0386 100644
--- a/tests/snmpsim/timos.snmprec
+++ b/tests/snmpsim/timos.snmprec
@@ -5,6 +5,8 @@
1.3.6.1.2.1.1.5.0|4|
1.3.6.1.2.1.1.6.0|4|
1.3.6.1.2.1.2.2.1.2.1|4|system, Loopback IP interface
+1.3.6.1.2.1.2.2.1.2.3|4|to_goe-0-nokia-sw-b, IP interface
+1.3.6.1.2.1.2.2.1.2.4|4|to_goe-0-bng-a, IP interface
1.3.6.1.2.1.2.2.1.2.7|4|to_test IP interface
1.3.6.1.2.1.2.2.1.2.131073|4|_tmnx_nat-network_1/3, IP interface
1.3.6.1.2.1.2.2.1.2.35684352|4|1/1/1, 10-Gig Ethernet
@@ -20,10 +22,16 @@
1.3.6.1.2.1.2.2.1.2.40009728|4|1/3/lns-esm, IP interface, \Broadband\
1.3.6.1.2.1.2.2.1.2.40042496|4|1/3/nat-in-ds, IP interface, \Broadband\
1.3.6.1.2.1.2.2.1.2.40075264|4|1/3/lo-gre, IP interface, \Broadband\
+1.3.6.1.2.1.2.2.1.2.69238784|4|2/1/1, 10-Gig Ethernet, \transit: private\
+1.3.6.1.2.1.2.2.1.2.69271552|4|2/1/2, 10-Gig Ethernet
1.3.6.1.2.1.2.2.1.2.100696064|4|A/1, 10/100 Ethernet TX
1.3.6.1.2.1.2.2.1.2.100794368|4|A/4, 10/100 Ethernet TX
+1.3.6.1.2.1.2.2.1.2.102793216|4|3/1/1, 10-Gig Ethernet
+1.3.6.1.2.1.2.2.1.2.102825984|4|3/1/2, 10-Gig Ethernet
1.3.6.1.2.1.2.2.1.2.134250496|4|B/1, 10/100 Ethernet TX
1.3.6.1.2.1.2.2.1.2.134348800|4|B/4, 10/100 Ethernet TX
+1.3.6.1.2.1.2.2.1.2.234913792|4|A/1, 10/100 Ethernet TX
+1.3.6.1.2.1.2.2.1.2.268468224|4|B/1, 10/100 Ethernet TX
1.3.6.1.2.1.2.2.1.2.1342177281|4|lag-1, LAG Group, \PPPoE Customer\
1.3.6.1.2.1.2.2.1.2.1342177282|4|lag-2, LAG Group, \MPLS\
1.3.6.1.2.1.2.2.1.2.1342177283|4|lag-3, LAG Group, \L2 VLAN\
@@ -31,6 +39,8 @@
1.3.6.1.2.1.2.2.1.2.1509949473|4|bbg-1.nat-in-ip, IP interface, \Broadband\
1.3.6.1.2.1.2.2.1.2.1509949478|4|bbg-1.nat-in-ds, IP interface, \Broadband\
1.3.6.1.2.1.2.2.1.3.1|2|24
+1.3.6.1.2.1.2.2.1.3.3|2|142
+1.3.6.1.2.1.2.2.1.3.4|2|142
1.3.6.1.2.1.2.2.1.3.7|2|142
1.3.6.1.2.1.2.2.1.3.131073|2|142
1.3.6.1.2.1.2.2.1.3.35684352|2|6
@@ -46,10 +56,16 @@
1.3.6.1.2.1.2.2.1.3.40009728|2|1
1.3.6.1.2.1.2.2.1.3.40042496|2|1
1.3.6.1.2.1.2.2.1.3.40075264|2|1
+1.3.6.1.2.1.2.2.1.3.69238784|2|6
+1.3.6.1.2.1.2.2.1.3.69271552|2|6
1.3.6.1.2.1.2.2.1.3.100696064|2|6
1.3.6.1.2.1.2.2.1.3.100794368|2|6
+1.3.6.1.2.1.2.2.1.3.102793216|2|6
+1.3.6.1.2.1.2.2.1.3.102825984|2|6
1.3.6.1.2.1.2.2.1.3.134250496|2|6
1.3.6.1.2.1.2.2.1.3.134348800|2|6
+1.3.6.1.2.1.2.2.1.3.234913792|2|6
+1.3.6.1.2.1.2.2.1.3.268468224|2|6
1.3.6.1.2.1.2.2.1.3.1342177281|2|161
1.3.6.1.2.1.2.2.1.3.1342177282|2|161
1.3.6.1.2.1.2.2.1.3.1342177283|2|161
@@ -57,6 +73,8 @@
1.3.6.1.2.1.2.2.1.3.1509949473|2|1
1.3.6.1.2.1.2.2.1.3.1509949478|2|1
1.3.6.1.2.1.2.2.1.4.1|2|1500
+1.3.6.1.2.1.2.2.1.4.3|2|9198
+1.3.6.1.2.1.2.2.1.4.4|2|9198
1.3.6.1.2.1.2.2.1.4.7|2|9198
1.3.6.1.2.1.2.2.1.4.131073|2|9194
1.3.6.1.2.1.2.2.1.4.35684352|2|1518
@@ -72,10 +90,16 @@
1.3.6.1.2.1.2.2.1.4.40009728|2|9212
1.3.6.1.2.1.2.2.1.4.40042496|2|9212
1.3.6.1.2.1.2.2.1.4.40075264|2|9212
+1.3.6.1.2.1.2.2.1.4.69238784|2|1522
+1.3.6.1.2.1.2.2.1.4.69271552|2|1526
1.3.6.1.2.1.2.2.1.4.100696064|2|1514
1.3.6.1.2.1.2.2.1.4.100794368|2|1514
+1.3.6.1.2.1.2.2.1.4.102793216|2|9212
+1.3.6.1.2.1.2.2.1.4.102825984|2|9212
1.3.6.1.2.1.2.2.1.4.134250496|2|1514
1.3.6.1.2.1.2.2.1.4.134348800|2|1514
+1.3.6.1.2.1.2.2.1.4.234913792|2|1514
+1.3.6.1.2.1.2.2.1.4.268468224|2|1514
1.3.6.1.2.1.2.2.1.4.1342177281|2|1518
1.3.6.1.2.1.2.2.1.4.1342177282|2|9212
1.3.6.1.2.1.2.2.1.4.1342177283|2|1518
@@ -83,6 +107,8 @@
1.3.6.1.2.1.2.2.1.4.1509949473|2|9212
1.3.6.1.2.1.2.2.1.4.1509949478|2|9212
1.3.6.1.2.1.2.2.1.6.1|4x|A47B2C978E01
+1.3.6.1.2.1.2.2.1.6.3|4x|8CF77337E094
+1.3.6.1.2.1.2.2.1.6.4|4x|8CF77337E093
1.3.6.1.2.1.2.2.1.6.7|4x|A47B2C978F43
1.3.6.1.2.1.2.2.1.6.131073|4x|000000010101
1.3.6.1.2.1.2.2.1.6.35684352|4x|20E09C7514A9
@@ -98,10 +124,16 @@
1.3.6.1.2.1.2.2.1.6.40009728|4x|20E09C73D6B7
1.3.6.1.2.1.2.2.1.6.40042496|4x|20E09C73D6B8
1.3.6.1.2.1.2.2.1.6.40075264|4x|20E09C73D6B9
+1.3.6.1.2.1.2.2.1.6.69238784|4x|8CF773191FA1
+1.3.6.1.2.1.2.2.1.6.69271552|4x|8CF773191FA2
1.3.6.1.2.1.2.2.1.6.100696064|4x|A47B2CE2E26A
1.3.6.1.2.1.2.2.1.6.100794368|4x|A47B2CE2E26B
+1.3.6.1.2.1.2.2.1.6.102793216|4x|8CF773579AB5
+1.3.6.1.2.1.2.2.1.6.102825984|4x|8CF773579AB6
1.3.6.1.2.1.2.2.1.6.134250496|4x|000000000000
1.3.6.1.2.1.2.2.1.6.134348800|4x|000000000000
+1.3.6.1.2.1.2.2.1.6.234913792|4x|8CF7730C0CC8
+1.3.6.1.2.1.2.2.1.6.268468224|4x|8CF7730C0CA4
1.3.6.1.2.1.2.2.1.6.1342177281|4x|A47B2C978F42
1.3.6.1.2.1.2.2.1.6.1342177282|4x|A47B2C978F43
1.3.6.1.2.1.2.2.1.6.1342177283|4x|A47B2C978F44
@@ -109,6 +141,8 @@
1.3.6.1.2.1.2.2.1.6.1509949473|4x|000000010101
1.3.6.1.2.1.2.2.1.6.1509949478|4x|000000010101
1.3.6.1.2.1.2.2.1.7.1|2|1
+1.3.6.1.2.1.2.2.1.7.3|2|1
+1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.7|2|1
1.3.6.1.2.1.2.2.1.7.131073|2|1
1.3.6.1.2.1.2.2.1.7.35684352|2|1
@@ -124,10 +158,16 @@
1.3.6.1.2.1.2.2.1.7.40009728|2|1
1.3.6.1.2.1.2.2.1.7.40042496|2|1
1.3.6.1.2.1.2.2.1.7.40075264|2|1
+1.3.6.1.2.1.2.2.1.7.69238784|2|1
+1.3.6.1.2.1.2.2.1.7.69271552|2|1
1.3.6.1.2.1.2.2.1.7.100696064|2|1
1.3.6.1.2.1.2.2.1.7.100794368|2|1
+1.3.6.1.2.1.2.2.1.7.102793216|2|2
+1.3.6.1.2.1.2.2.1.7.102825984|2|2
1.3.6.1.2.1.2.2.1.7.134250496|2|1
1.3.6.1.2.1.2.2.1.7.134348800|2|1
+1.3.6.1.2.1.2.2.1.7.234913792|2|1
+1.3.6.1.2.1.2.2.1.7.268468224|2|1
1.3.6.1.2.1.2.2.1.7.1342177281|2|1
1.3.6.1.2.1.2.2.1.7.1342177282|2|1
1.3.6.1.2.1.2.2.1.7.1342177283|2|1
@@ -135,6 +175,8 @@
1.3.6.1.2.1.2.2.1.7.1509949473|2|1
1.3.6.1.2.1.2.2.1.7.1509949478|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
+1.3.6.1.2.1.2.2.1.8.3|2|1
+1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.7|2|1
1.3.6.1.2.1.2.2.1.8.131073|2|1
1.3.6.1.2.1.2.2.1.8.35684352|2|1
@@ -150,10 +192,16 @@
1.3.6.1.2.1.2.2.1.8.40009728|2|1
1.3.6.1.2.1.2.2.1.8.40042496|2|1
1.3.6.1.2.1.2.2.1.8.40075264|2|1
+1.3.6.1.2.1.2.2.1.8.69238784|2|1
+1.3.6.1.2.1.2.2.1.8.69271552|2|1
1.3.6.1.2.1.2.2.1.8.100696064|2|1
1.3.6.1.2.1.2.2.1.8.100794368|2|2
+1.3.6.1.2.1.2.2.1.8.102793216|2|2
+1.3.6.1.2.1.2.2.1.8.102825984|2|2
1.3.6.1.2.1.2.2.1.8.134250496|2|6
1.3.6.1.2.1.2.2.1.8.134348800|2|6
+1.3.6.1.2.1.2.2.1.8.234913792|2|1
+1.3.6.1.2.1.2.2.1.8.268468224|2|1
1.3.6.1.2.1.2.2.1.8.1342177281|2|1
1.3.6.1.2.1.2.2.1.8.1342177282|2|1
1.3.6.1.2.1.2.2.1.8.1342177283|2|1
@@ -161,6 +209,8 @@
1.3.6.1.2.1.2.2.1.8.1509949473|2|1
1.3.6.1.2.1.2.2.1.8.1509949478|2|1
1.3.6.1.2.1.2.2.1.9.1|67|337305142
+1.3.6.1.2.1.2.2.1.9.3|67|13819
+1.3.6.1.2.1.2.2.1.9.4|67|58355742
1.3.6.1.2.1.2.2.1.9.7|67|377915467
1.3.6.1.2.1.2.2.1.9.131073|67|793116605
1.3.6.1.2.1.2.2.1.9.35684352|67|464979643
@@ -176,10 +226,16 @@
1.3.6.1.2.1.2.2.1.9.40009728|67|793088667
1.3.6.1.2.1.2.2.1.9.40042496|67|793088667
1.3.6.1.2.1.2.2.1.9.40075264|67|793088667
+1.3.6.1.2.1.2.2.1.9.69238784|67|2330846318
+1.3.6.1.2.1.2.2.1.9.69271552|67|725648953
1.3.6.1.2.1.2.2.1.9.100696064|67|101
1.3.6.1.2.1.2.2.1.9.100794368|67|101
+1.3.6.1.2.1.2.2.1.9.102793216|67|790
+1.3.6.1.2.1.2.2.1.9.102825984|67|14504
1.3.6.1.2.1.2.2.1.9.134250496|67|1
1.3.6.1.2.1.2.2.1.9.134348800|67|1
+1.3.6.1.2.1.2.2.1.9.234913792|67|349
+1.3.6.1.2.1.2.2.1.9.268468224|67|3321
1.3.6.1.2.1.2.2.1.9.1342177281|67|464979643
1.3.6.1.2.1.2.2.1.9.1342177282|67|377915467
1.3.6.1.2.1.2.2.1.9.1342177283|67|189344769
@@ -187,6 +243,8 @@
1.3.6.1.2.1.2.2.1.9.1509949473|67|793117790
1.3.6.1.2.1.2.2.1.9.1509949478|67|793117790
1.3.6.1.2.1.2.2.1.13.1|65|0
+1.3.6.1.2.1.2.2.1.13.3|65|0
+1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.7|65|0
1.3.6.1.2.1.2.2.1.13.131073|65|0
1.3.6.1.2.1.2.2.1.13.35684352|65|0
@@ -202,10 +260,16 @@
1.3.6.1.2.1.2.2.1.13.40009728|65|0
1.3.6.1.2.1.2.2.1.13.40042496|65|0
1.3.6.1.2.1.2.2.1.13.40075264|65|0
+1.3.6.1.2.1.2.2.1.13.69238784|65|0
+1.3.6.1.2.1.2.2.1.13.69271552|65|0
1.3.6.1.2.1.2.2.1.13.100696064|65|0
1.3.6.1.2.1.2.2.1.13.100794368|65|0
+1.3.6.1.2.1.2.2.1.13.102793216|65|0
+1.3.6.1.2.1.2.2.1.13.102825984|65|0
1.3.6.1.2.1.2.2.1.13.134250496|65|0
1.3.6.1.2.1.2.2.1.13.134348800|65|0
+1.3.6.1.2.1.2.2.1.13.234913792|65|18868207
+1.3.6.1.2.1.2.2.1.13.268468224|65|18868187
1.3.6.1.2.1.2.2.1.13.1342177281|65|0
1.3.6.1.2.1.2.2.1.13.1342177282|65|0
1.3.6.1.2.1.2.2.1.13.1342177283|65|0
@@ -213,6 +277,8 @@
1.3.6.1.2.1.2.2.1.13.1509949473|65|0
1.3.6.1.2.1.2.2.1.13.1509949478|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
+1.3.6.1.2.1.2.2.1.14.3|65|0
+1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.7|65|0
1.3.6.1.2.1.2.2.1.14.131073|65|0
1.3.6.1.2.1.2.2.1.14.35684352|65|0
@@ -228,10 +294,16 @@
1.3.6.1.2.1.2.2.1.14.40009728|65|0
1.3.6.1.2.1.2.2.1.14.40042496|65|0
1.3.6.1.2.1.2.2.1.14.40075264|65|0
+1.3.6.1.2.1.2.2.1.14.69238784|65|0
+1.3.6.1.2.1.2.2.1.14.69271552|65|2
1.3.6.1.2.1.2.2.1.14.100696064|65|0
1.3.6.1.2.1.2.2.1.14.100794368|65|0
+1.3.6.1.2.1.2.2.1.14.102793216|65|0
+1.3.6.1.2.1.2.2.1.14.102825984|65|0
1.3.6.1.2.1.2.2.1.14.134250496|65|0
1.3.6.1.2.1.2.2.1.14.134348800|65|0
+1.3.6.1.2.1.2.2.1.14.234913792|65|0
+1.3.6.1.2.1.2.2.1.14.268468224|65|0
1.3.6.1.2.1.2.2.1.14.1342177281|65|0
1.3.6.1.2.1.2.2.1.14.1342177282|65|0
1.3.6.1.2.1.2.2.1.14.1342177283|65|0
@@ -239,6 +311,8 @@
1.3.6.1.2.1.2.2.1.14.1509949473|65|0
1.3.6.1.2.1.2.2.1.14.1509949478|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
+1.3.6.1.2.1.2.2.1.19.3|65|0
+1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.7|65|0
1.3.6.1.2.1.2.2.1.19.131073|65|0
1.3.6.1.2.1.2.2.1.19.35684352|65|0
@@ -254,10 +328,16 @@
1.3.6.1.2.1.2.2.1.19.40009728|65|0
1.3.6.1.2.1.2.2.1.19.40042496|65|0
1.3.6.1.2.1.2.2.1.19.40075264|65|0
+1.3.6.1.2.1.2.2.1.19.69238784|65|0
+1.3.6.1.2.1.2.2.1.19.69271552|65|0
1.3.6.1.2.1.2.2.1.19.100696064|65|0
1.3.6.1.2.1.2.2.1.19.100794368|65|0
+1.3.6.1.2.1.2.2.1.19.102793216|65|0
+1.3.6.1.2.1.2.2.1.19.102825984|65|0
1.3.6.1.2.1.2.2.1.19.134250496|65|0
1.3.6.1.2.1.2.2.1.19.134348800|65|0
+1.3.6.1.2.1.2.2.1.19.234913792|65|0
+1.3.6.1.2.1.2.2.1.19.268468224|65|0
1.3.6.1.2.1.2.2.1.19.1342177281|65|0
1.3.6.1.2.1.2.2.1.19.1342177282|65|0
1.3.6.1.2.1.2.2.1.19.1342177283|65|0
@@ -265,6 +345,8 @@
1.3.6.1.2.1.2.2.1.19.1509949473|65|0
1.3.6.1.2.1.2.2.1.19.1509949478|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
+1.3.6.1.2.1.2.2.1.20.3|65|0
+1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.7|65|0
1.3.6.1.2.1.2.2.1.20.131073|65|0
1.3.6.1.2.1.2.2.1.20.35684352|65|0
@@ -280,10 +362,16 @@
1.3.6.1.2.1.2.2.1.20.40009728|65|0
1.3.6.1.2.1.2.2.1.20.40042496|65|0
1.3.6.1.2.1.2.2.1.20.40075264|65|0
+1.3.6.1.2.1.2.2.1.20.69238784|65|0
+1.3.6.1.2.1.2.2.1.20.69271552|65|0
1.3.6.1.2.1.2.2.1.20.100696064|65|0
1.3.6.1.2.1.2.2.1.20.100794368|65|0
+1.3.6.1.2.1.2.2.1.20.102793216|65|0
+1.3.6.1.2.1.2.2.1.20.102825984|65|0
1.3.6.1.2.1.2.2.1.20.134250496|65|0
1.3.6.1.2.1.2.2.1.20.134348800|65|0
+1.3.6.1.2.1.2.2.1.20.234913792|65|0
+1.3.6.1.2.1.2.2.1.20.268468224|65|0
1.3.6.1.2.1.2.2.1.20.1342177281|65|0
1.3.6.1.2.1.2.2.1.20.1342177282|65|0
1.3.6.1.2.1.2.2.1.20.1342177283|65|0
@@ -296,12 +384,20 @@
1.3.6.1.2.1.10.7.2.1.19.35782656|2|3
1.3.6.1.2.1.10.7.2.1.19.35815424|2|1
1.3.6.1.2.1.10.7.2.1.19.35848192|2|1
+1.3.6.1.2.1.10.7.2.1.19.69238784|2|3
+1.3.6.1.2.1.10.7.2.1.19.69271552|2|3
1.3.6.1.2.1.10.7.2.1.19.100696064|2|3
1.3.6.1.2.1.10.7.2.1.19.100794368|2|1
+1.3.6.1.2.1.10.7.2.1.19.102793216|2|1
+1.3.6.1.2.1.10.7.2.1.19.102825984|2|1
1.3.6.1.2.1.10.7.2.1.19.134250496|2|1
1.3.6.1.2.1.10.7.2.1.19.134348800|2|1
+1.3.6.1.2.1.10.7.2.1.19.234913792|2|3
+1.3.6.1.2.1.10.7.2.1.19.268468224|2|3
1.3.6.1.2.1.16.1.1.1.1.35684352|2|35684352
1.3.6.1.2.1.31.1.1.1.1.1|4|system
+1.3.6.1.2.1.31.1.1.1.1.3|4|to_b
+1.3.6.1.2.1.31.1.1.1.1.4|4|to_a
1.3.6.1.2.1.31.1.1.1.1.7|4|to_test
1.3.6.1.2.1.31.1.1.1.1.131073|4|_tmnx_nat-network_1/3
1.3.6.1.2.1.31.1.1.1.1.35684352|4|1/1/1
@@ -317,10 +413,16 @@
1.3.6.1.2.1.31.1.1.1.1.40009728|4|1/3/lns-esm
1.3.6.1.2.1.31.1.1.1.1.40042496|4|1/3/nat-in-ds
1.3.6.1.2.1.31.1.1.1.1.40075264|4|1/3/lo-gre
+1.3.6.1.2.1.31.1.1.1.1.69238784|4|2/1/1
+1.3.6.1.2.1.31.1.1.1.1.69271552|4|2/1/2
1.3.6.1.2.1.31.1.1.1.1.100696064|4|A/1
1.3.6.1.2.1.31.1.1.1.1.100794368|4|A/4
+1.3.6.1.2.1.31.1.1.1.1.102793216|4|3/1/1
+1.3.6.1.2.1.31.1.1.1.1.102825984|4|3/1/2
1.3.6.1.2.1.31.1.1.1.1.134250496|4|B/1
1.3.6.1.2.1.31.1.1.1.1.134348800|4|B/4
+1.3.6.1.2.1.31.1.1.1.1.234913792|4|A/1
+1.3.6.1.2.1.31.1.1.1.1.268468224|4|B/1
1.3.6.1.2.1.31.1.1.1.1.1342177281|4|lag-1
1.3.6.1.2.1.31.1.1.1.1.1342177282|4|lag-2
1.3.6.1.2.1.31.1.1.1.1.1342177283|4|lag-3
@@ -328,6 +430,8 @@
1.3.6.1.2.1.31.1.1.1.1.1509949473|4|bbg-1.nat-in-ip
1.3.6.1.2.1.31.1.1.1.1.1509949478|4|bbg-1.nat-in-ds
1.3.6.1.2.1.31.1.1.1.2.1|65|0
+1.3.6.1.2.1.31.1.1.1.2.3|65|6417494
+1.3.6.1.2.1.31.1.1.1.2.4|65|6263152
1.3.6.1.2.1.31.1.1.1.2.7|65|0
1.3.6.1.2.1.31.1.1.1.2.131073|65|0
1.3.6.1.2.1.31.1.1.1.2.35684352|65|186946
@@ -343,10 +447,16 @@
1.3.6.1.2.1.31.1.1.1.2.40009728|65|0
1.3.6.1.2.1.31.1.1.1.2.40042496|65|0
1.3.6.1.2.1.31.1.1.1.2.40075264|65|0
+1.3.6.1.2.1.31.1.1.1.2.69238784|65|3305802
+1.3.6.1.2.1.31.1.1.1.2.69271552|65|31859125
1.3.6.1.2.1.31.1.1.1.2.100696064|65|0
1.3.6.1.2.1.31.1.1.1.2.100794368|65|0
+1.3.6.1.2.1.31.1.1.1.2.102793216|65|0
+1.3.6.1.2.1.31.1.1.1.2.102825984|65|0
1.3.6.1.2.1.31.1.1.1.2.134250496|65|0
1.3.6.1.2.1.31.1.1.1.2.134348800|65|0
+1.3.6.1.2.1.31.1.1.1.2.234913792|65|29743216
+1.3.6.1.2.1.31.1.1.1.2.268468224|65|29743194
1.3.6.1.2.1.31.1.1.1.2.1342177281|65|186946
1.3.6.1.2.1.31.1.1.1.2.1342177282|65|869472
1.3.6.1.2.1.31.1.1.1.2.1342177283|65|20897675
@@ -354,6 +464,8 @@
1.3.6.1.2.1.31.1.1.1.2.1509949473|65|0
1.3.6.1.2.1.31.1.1.1.2.1509949478|65|0
1.3.6.1.2.1.31.1.1.1.3.1|65|0
+1.3.6.1.2.1.31.1.1.1.3.3|65|2
+1.3.6.1.2.1.31.1.1.1.3.4|65|3
1.3.6.1.2.1.31.1.1.1.3.7|65|2
1.3.6.1.2.1.31.1.1.1.3.131073|65|0
1.3.6.1.2.1.31.1.1.1.3.35684352|65|108883361
@@ -369,10 +481,16 @@
1.3.6.1.2.1.31.1.1.1.3.40009728|65|0
1.3.6.1.2.1.31.1.1.1.3.40042496|65|0
1.3.6.1.2.1.31.1.1.1.3.40075264|65|0
+1.3.6.1.2.1.31.1.1.1.3.69238784|65|12338668
+1.3.6.1.2.1.31.1.1.1.3.69271552|65|12888862
1.3.6.1.2.1.31.1.1.1.3.100696064|65|6551021
1.3.6.1.2.1.31.1.1.1.3.100794368|65|0
+1.3.6.1.2.1.31.1.1.1.3.102793216|65|0
+1.3.6.1.2.1.31.1.1.1.3.102825984|65|0
1.3.6.1.2.1.31.1.1.1.3.134250496|65|0
1.3.6.1.2.1.31.1.1.1.3.134348800|65|0
+1.3.6.1.2.1.31.1.1.1.3.234913792|65|16534873
+1.3.6.1.2.1.31.1.1.1.3.268468224|65|16558685
1.3.6.1.2.1.31.1.1.1.3.1342177281|65|108883361
1.3.6.1.2.1.31.1.1.1.3.1342177282|65|2
1.3.6.1.2.1.31.1.1.1.3.1342177283|65|6447741
@@ -380,6 +498,8 @@
1.3.6.1.2.1.31.1.1.1.3.1509949473|65|0
1.3.6.1.2.1.31.1.1.1.3.1509949478|65|0
1.3.6.1.2.1.31.1.1.1.4.1|65|0
+1.3.6.1.2.1.31.1.1.1.4.3|65|0
+1.3.6.1.2.1.31.1.1.1.4.4|65|0
1.3.6.1.2.1.31.1.1.1.4.7|65|0
1.3.6.1.2.1.31.1.1.1.4.131073|65|0
1.3.6.1.2.1.31.1.1.1.4.35684352|65|186584
@@ -395,10 +515,16 @@
1.3.6.1.2.1.31.1.1.1.4.40009728|65|0
1.3.6.1.2.1.31.1.1.1.4.40042496|65|0
1.3.6.1.2.1.31.1.1.1.4.40075264|65|0
+1.3.6.1.2.1.31.1.1.1.4.69238784|65|3608167
+1.3.6.1.2.1.31.1.1.1.4.69271552|65|26593960
1.3.6.1.2.1.31.1.1.1.4.100696064|65|0
1.3.6.1.2.1.31.1.1.1.4.100794368|65|0
+1.3.6.1.2.1.31.1.1.1.4.102793216|65|0
+1.3.6.1.2.1.31.1.1.1.4.102825984|65|0
1.3.6.1.2.1.31.1.1.1.4.134250496|65|0
1.3.6.1.2.1.31.1.1.1.4.134348800|65|0
+1.3.6.1.2.1.31.1.1.1.4.234913792|65|0
+1.3.6.1.2.1.31.1.1.1.4.268468224|65|0
1.3.6.1.2.1.31.1.1.1.4.1342177281|65|186584
1.3.6.1.2.1.31.1.1.1.4.1342177282|65|2396231
1.3.6.1.2.1.31.1.1.1.4.1342177283|65|765863
@@ -406,6 +532,8 @@
1.3.6.1.2.1.31.1.1.1.4.1509949473|65|0
1.3.6.1.2.1.31.1.1.1.4.1509949478|65|0
1.3.6.1.2.1.31.1.1.1.5.1|65|0
+1.3.6.1.2.1.31.1.1.1.5.3|65|0
+1.3.6.1.2.1.31.1.1.1.5.4|65|0
1.3.6.1.2.1.31.1.1.1.5.7|65|0
1.3.6.1.2.1.31.1.1.1.5.131073|65|0
1.3.6.1.2.1.31.1.1.1.5.35684352|65|0
@@ -421,10 +549,16 @@
1.3.6.1.2.1.31.1.1.1.5.40009728|65|0
1.3.6.1.2.1.31.1.1.1.5.40042496|65|0
1.3.6.1.2.1.31.1.1.1.5.40075264|65|0
+1.3.6.1.2.1.31.1.1.1.5.69238784|65|141002
+1.3.6.1.2.1.31.1.1.1.5.69271552|65|929678
1.3.6.1.2.1.31.1.1.1.5.100696064|65|10197
1.3.6.1.2.1.31.1.1.1.5.100794368|65|0
+1.3.6.1.2.1.31.1.1.1.5.102793216|65|0
+1.3.6.1.2.1.31.1.1.1.5.102825984|65|0
1.3.6.1.2.1.31.1.1.1.5.134250496|65|0
1.3.6.1.2.1.31.1.1.1.5.134348800|65|0
+1.3.6.1.2.1.31.1.1.1.5.234913792|65|23856
+1.3.6.1.2.1.31.1.1.1.5.268468224|65|5
1.3.6.1.2.1.31.1.1.1.5.1342177281|65|0
1.3.6.1.2.1.31.1.1.1.5.1342177282|65|3
1.3.6.1.2.1.31.1.1.1.5.1342177283|65|20
@@ -432,6 +566,8 @@
1.3.6.1.2.1.31.1.1.1.5.1509949473|65|0
1.3.6.1.2.1.31.1.1.1.5.1509949478|65|0
1.3.6.1.2.1.31.1.1.1.6.1|70|672
+1.3.6.1.2.1.31.1.1.1.6.3|70|3234783752
+1.3.6.1.2.1.31.1.1.1.6.4|70|2234593722
1.3.6.1.2.1.31.1.1.1.6.7|70|214796014
1.3.6.1.2.1.31.1.1.1.6.131073|70|0
1.3.6.1.2.1.31.1.1.1.6.35684352|70|40300062544
@@ -447,10 +583,16 @@
1.3.6.1.2.1.31.1.1.1.6.40009728|70|0
1.3.6.1.2.1.31.1.1.1.6.40042496|70|0
1.3.6.1.2.1.31.1.1.1.6.40075264|70|0
+1.3.6.1.2.1.31.1.1.1.6.69238784|70|352966541533523
+1.3.6.1.2.1.31.1.1.1.6.69271552|70|205332011337923
1.3.6.1.2.1.31.1.1.1.6.100696064|70|1067471846
1.3.6.1.2.1.31.1.1.1.6.100794368|70|0
+1.3.6.1.2.1.31.1.1.1.6.102793216|70|0
+1.3.6.1.2.1.31.1.1.1.6.102825984|70|0
1.3.6.1.2.1.31.1.1.1.6.134250496|70|0
1.3.6.1.2.1.31.1.1.1.6.134348800|70|0
+1.3.6.1.2.1.31.1.1.1.6.234913792|70|6947708189
+1.3.6.1.2.1.31.1.1.1.6.268468224|70|5235761419
1.3.6.1.2.1.31.1.1.1.6.1342177281|70|40300062544
1.3.6.1.2.1.31.1.1.1.6.1342177282|70|8855056384
1.3.6.1.2.1.31.1.1.1.6.1342177283|70|161588282828
@@ -458,6 +600,8 @@
1.3.6.1.2.1.31.1.1.1.6.1509949473|70|0
1.3.6.1.2.1.31.1.1.1.6.1509949478|70|0
1.3.6.1.2.1.31.1.1.1.7.1|70|8
+1.3.6.1.2.1.31.1.1.1.7.3|70|20736350
+1.3.6.1.2.1.31.1.1.1.7.4|70|14402407
1.3.6.1.2.1.31.1.1.1.7.7|70|2786248
1.3.6.1.2.1.31.1.1.1.7.131073|70|0
1.3.6.1.2.1.31.1.1.1.7.35684352|70|1876644
@@ -473,10 +617,16 @@
1.3.6.1.2.1.31.1.1.1.7.40009728|70|0
1.3.6.1.2.1.31.1.1.1.7.40042496|70|0
1.3.6.1.2.1.31.1.1.1.7.40075264|70|0
+1.3.6.1.2.1.31.1.1.1.7.69238784|70|337142824054
+1.3.6.1.2.1.31.1.1.1.7.69271552|70|279983046899
1.3.6.1.2.1.31.1.1.1.7.100696064|70|4532006
1.3.6.1.2.1.31.1.1.1.7.100794368|70|0
+1.3.6.1.2.1.31.1.1.1.7.102793216|70|0
+1.3.6.1.2.1.31.1.1.1.7.102825984|70|0
1.3.6.1.2.1.31.1.1.1.7.134250496|70|0
1.3.6.1.2.1.31.1.1.1.7.134348800|70|0
+1.3.6.1.2.1.31.1.1.1.7.234913792|70|19553169
+1.3.6.1.2.1.31.1.1.1.7.268468224|70|2493046
1.3.6.1.2.1.31.1.1.1.7.1342177281|70|1876644
1.3.6.1.2.1.31.1.1.1.7.1342177282|70|37587214
1.3.6.1.2.1.31.1.1.1.7.1342177283|70|2162174992
@@ -484,6 +634,8 @@
1.3.6.1.2.1.31.1.1.1.7.1509949473|70|0
1.3.6.1.2.1.31.1.1.1.7.1509949478|70|0
1.3.6.1.2.1.31.1.1.1.8.1|70|0
+1.3.6.1.2.1.31.1.1.1.8.3|70|6417494
+1.3.6.1.2.1.31.1.1.1.8.4|70|6263152
1.3.6.1.2.1.31.1.1.1.8.7|70|0
1.3.6.1.2.1.31.1.1.1.8.131073|70|0
1.3.6.1.2.1.31.1.1.1.8.35684352|70|186946
@@ -499,10 +651,16 @@
1.3.6.1.2.1.31.1.1.1.8.40009728|70|0
1.3.6.1.2.1.31.1.1.1.8.40042496|70|0
1.3.6.1.2.1.31.1.1.1.8.40075264|70|0
+1.3.6.1.2.1.31.1.1.1.8.69238784|70|3305802
+1.3.6.1.2.1.31.1.1.1.8.69271552|70|31859125
1.3.6.1.2.1.31.1.1.1.8.100696064|70|0
1.3.6.1.2.1.31.1.1.1.8.100794368|70|0
+1.3.6.1.2.1.31.1.1.1.8.102793216|70|0
+1.3.6.1.2.1.31.1.1.1.8.102825984|70|0
1.3.6.1.2.1.31.1.1.1.8.134250496|70|0
1.3.6.1.2.1.31.1.1.1.8.134348800|70|0
+1.3.6.1.2.1.31.1.1.1.8.234913792|70|29743216
+1.3.6.1.2.1.31.1.1.1.8.268468224|70|29743194
1.3.6.1.2.1.31.1.1.1.8.1342177281|70|186946
1.3.6.1.2.1.31.1.1.1.8.1342177282|70|869472
1.3.6.1.2.1.31.1.1.1.8.1342177283|70|20897675
@@ -510,6 +668,8 @@
1.3.6.1.2.1.31.1.1.1.8.1509949473|70|0
1.3.6.1.2.1.31.1.1.1.8.1509949478|70|0
1.3.6.1.2.1.31.1.1.1.9.1|70|0
+1.3.6.1.2.1.31.1.1.1.9.3|70|2
+1.3.6.1.2.1.31.1.1.1.9.4|70|3
1.3.6.1.2.1.31.1.1.1.9.7|70|2
1.3.6.1.2.1.31.1.1.1.9.131073|70|0
1.3.6.1.2.1.31.1.1.1.9.35684352|70|108883361
@@ -525,10 +685,16 @@
1.3.6.1.2.1.31.1.1.1.9.40009728|70|0
1.3.6.1.2.1.31.1.1.1.9.40042496|70|0
1.3.6.1.2.1.31.1.1.1.9.40075264|70|0
+1.3.6.1.2.1.31.1.1.1.9.69238784|70|12338668
+1.3.6.1.2.1.31.1.1.1.9.69271552|70|12888862
1.3.6.1.2.1.31.1.1.1.9.100696064|70|6551021
1.3.6.1.2.1.31.1.1.1.9.100794368|70|0
+1.3.6.1.2.1.31.1.1.1.9.102793216|70|0
+1.3.6.1.2.1.31.1.1.1.9.102825984|70|0
1.3.6.1.2.1.31.1.1.1.9.134250496|70|0
1.3.6.1.2.1.31.1.1.1.9.134348800|70|0
+1.3.6.1.2.1.31.1.1.1.9.234913792|70|16534873
+1.3.6.1.2.1.31.1.1.1.9.268468224|70|16558685
1.3.6.1.2.1.31.1.1.1.9.1342177281|70|108883361
1.3.6.1.2.1.31.1.1.1.9.1342177282|70|2
1.3.6.1.2.1.31.1.1.1.9.1342177283|70|6447741
@@ -536,6 +702,8 @@
1.3.6.1.2.1.31.1.1.1.9.1509949473|70|0
1.3.6.1.2.1.31.1.1.1.9.1509949478|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|0
+1.3.6.1.2.1.31.1.1.1.10.3|70|2674853712
+1.3.6.1.2.1.31.1.1.1.10.4|70|1056625634
1.3.6.1.2.1.31.1.1.1.10.7|70|542904288
1.3.6.1.2.1.31.1.1.1.10.131073|70|0
1.3.6.1.2.1.31.1.1.1.10.35684352|70|8583473043
@@ -551,10 +719,16 @@
1.3.6.1.2.1.31.1.1.1.10.40009728|70|0
1.3.6.1.2.1.31.1.1.1.10.40042496|70|0
1.3.6.1.2.1.31.1.1.1.10.40075264|70|0
+1.3.6.1.2.1.31.1.1.1.10.69238784|70|169492143743354
+1.3.6.1.2.1.31.1.1.1.10.69271552|70|264412482414345
1.3.6.1.2.1.31.1.1.1.10.100696064|70|1369324995
1.3.6.1.2.1.31.1.1.1.10.100794368|70|0
+1.3.6.1.2.1.31.1.1.1.10.102793216|70|0
+1.3.6.1.2.1.31.1.1.1.10.102825984|70|0
1.3.6.1.2.1.31.1.1.1.10.134250496|70|0
1.3.6.1.2.1.31.1.1.1.10.134348800|70|0
+1.3.6.1.2.1.31.1.1.1.10.234913792|70|4561443664
+1.3.6.1.2.1.31.1.1.1.10.268468224|70|110078
1.3.6.1.2.1.31.1.1.1.10.1342177281|70|8583473043
1.3.6.1.2.1.31.1.1.1.10.1342177282|70|4875651088
1.3.6.1.2.1.31.1.1.1.10.1342177283|70|143168263954
@@ -562,6 +736,8 @@
1.3.6.1.2.1.31.1.1.1.10.1509949473|70|0
1.3.6.1.2.1.31.1.1.1.10.1509949478|70|0
1.3.6.1.2.1.31.1.1.1.11.1|70|0
+1.3.6.1.2.1.31.1.1.1.11.3|70|26791449
+1.3.6.1.2.1.31.1.1.1.11.4|70|8444685
1.3.6.1.2.1.31.1.1.1.11.7|70|5812645
1.3.6.1.2.1.31.1.1.1.11.131073|70|0
1.3.6.1.2.1.31.1.1.1.11.35684352|70|6111718
@@ -577,10 +753,16 @@
1.3.6.1.2.1.31.1.1.1.11.40009728|70|0
1.3.6.1.2.1.31.1.1.1.11.40042496|70|0
1.3.6.1.2.1.31.1.1.1.11.40075264|70|0
+1.3.6.1.2.1.31.1.1.1.11.69238784|70|180877747913
+1.3.6.1.2.1.31.1.1.1.11.69271552|70|198583531800
1.3.6.1.2.1.31.1.1.1.11.100696064|70|5174624
1.3.6.1.2.1.31.1.1.1.11.100794368|70|0
+1.3.6.1.2.1.31.1.1.1.11.102793216|70|0
+1.3.6.1.2.1.31.1.1.1.11.102825984|70|0
1.3.6.1.2.1.31.1.1.1.11.134250496|70|0
1.3.6.1.2.1.31.1.1.1.11.134348800|70|0
+1.3.6.1.2.1.31.1.1.1.11.234913792|70|17691093
+1.3.6.1.2.1.31.1.1.1.11.268468224|70|1699
1.3.6.1.2.1.31.1.1.1.11.1342177281|70|6111718
1.3.6.1.2.1.31.1.1.1.11.1342177282|70|34873520
1.3.6.1.2.1.31.1.1.1.11.1342177283|70|2112762925
@@ -588,6 +770,8 @@
1.3.6.1.2.1.31.1.1.1.11.1509949473|70|0
1.3.6.1.2.1.31.1.1.1.11.1509949478|70|0
1.3.6.1.2.1.31.1.1.1.12.1|70|0
+1.3.6.1.2.1.31.1.1.1.12.3|70|0
+1.3.6.1.2.1.31.1.1.1.12.4|70|0
1.3.6.1.2.1.31.1.1.1.12.7|70|0
1.3.6.1.2.1.31.1.1.1.12.131073|70|0
1.3.6.1.2.1.31.1.1.1.12.35684352|70|186584
@@ -603,10 +787,16 @@
1.3.6.1.2.1.31.1.1.1.12.40009728|70|0
1.3.6.1.2.1.31.1.1.1.12.40042496|70|0
1.3.6.1.2.1.31.1.1.1.12.40075264|70|0
+1.3.6.1.2.1.31.1.1.1.12.69238784|70|3608167
+1.3.6.1.2.1.31.1.1.1.12.69271552|70|26593960
1.3.6.1.2.1.31.1.1.1.12.100696064|70|0
1.3.6.1.2.1.31.1.1.1.12.100794368|70|0
+1.3.6.1.2.1.31.1.1.1.12.102793216|70|0
+1.3.6.1.2.1.31.1.1.1.12.102825984|70|0
1.3.6.1.2.1.31.1.1.1.12.134250496|70|0
1.3.6.1.2.1.31.1.1.1.12.134348800|70|0
+1.3.6.1.2.1.31.1.1.1.12.234913792|70|0
+1.3.6.1.2.1.31.1.1.1.12.268468224|70|0
1.3.6.1.2.1.31.1.1.1.12.1342177281|70|186584
1.3.6.1.2.1.31.1.1.1.12.1342177282|70|2396231
1.3.6.1.2.1.31.1.1.1.12.1342177283|70|765863
@@ -614,6 +804,8 @@
1.3.6.1.2.1.31.1.1.1.12.1509949473|70|0
1.3.6.1.2.1.31.1.1.1.12.1509949478|70|0
1.3.6.1.2.1.31.1.1.1.13.1|70|0
+1.3.6.1.2.1.31.1.1.1.13.3|70|0
+1.3.6.1.2.1.31.1.1.1.13.4|70|0
1.3.6.1.2.1.31.1.1.1.13.7|70|0
1.3.6.1.2.1.31.1.1.1.13.131073|70|0
1.3.6.1.2.1.31.1.1.1.13.35684352|70|0
@@ -629,10 +821,16 @@
1.3.6.1.2.1.31.1.1.1.13.40009728|70|0
1.3.6.1.2.1.31.1.1.1.13.40042496|70|0
1.3.6.1.2.1.31.1.1.1.13.40075264|70|0
+1.3.6.1.2.1.31.1.1.1.13.69238784|70|141002
+1.3.6.1.2.1.31.1.1.1.13.69271552|70|929678
1.3.6.1.2.1.31.1.1.1.13.100696064|70|10197
1.3.6.1.2.1.31.1.1.1.13.100794368|70|0
+1.3.6.1.2.1.31.1.1.1.13.102793216|70|0
+1.3.6.1.2.1.31.1.1.1.13.102825984|70|0
1.3.6.1.2.1.31.1.1.1.13.134250496|70|0
1.3.6.1.2.1.31.1.1.1.13.134348800|70|0
+1.3.6.1.2.1.31.1.1.1.13.234913792|70|23856
+1.3.6.1.2.1.31.1.1.1.13.268468224|70|5
1.3.6.1.2.1.31.1.1.1.13.1342177281|70|0
1.3.6.1.2.1.31.1.1.1.13.1342177282|70|3
1.3.6.1.2.1.31.1.1.1.13.1342177283|70|20
@@ -640,6 +838,8 @@
1.3.6.1.2.1.31.1.1.1.13.1509949473|70|0
1.3.6.1.2.1.31.1.1.1.13.1509949478|70|0
1.3.6.1.2.1.31.1.1.1.14.1|2|1
+1.3.6.1.2.1.31.1.1.1.14.3|2|1
+1.3.6.1.2.1.31.1.1.1.14.4|2|1
1.3.6.1.2.1.31.1.1.1.14.7|2|1
1.3.6.1.2.1.31.1.1.1.14.131073|2|1
1.3.6.1.2.1.31.1.1.1.14.35684352|2|1
@@ -655,10 +855,16 @@
1.3.6.1.2.1.31.1.1.1.14.40009728|2|1
1.3.6.1.2.1.31.1.1.1.14.40042496|2|1
1.3.6.1.2.1.31.1.1.1.14.40075264|2|1
+1.3.6.1.2.1.31.1.1.1.14.69238784|2|1
+1.3.6.1.2.1.31.1.1.1.14.69271552|2|1
1.3.6.1.2.1.31.1.1.1.14.100696064|2|1
1.3.6.1.2.1.31.1.1.1.14.100794368|2|1
+1.3.6.1.2.1.31.1.1.1.14.102793216|2|1
+1.3.6.1.2.1.31.1.1.1.14.102825984|2|1
1.3.6.1.2.1.31.1.1.1.14.134250496|2|1
1.3.6.1.2.1.31.1.1.1.14.134348800|2|1
+1.3.6.1.2.1.31.1.1.1.14.234913792|2|1
+1.3.6.1.2.1.31.1.1.1.14.268468224|2|1
1.3.6.1.2.1.31.1.1.1.14.1342177281|2|1
1.3.6.1.2.1.31.1.1.1.14.1342177282|2|1
1.3.6.1.2.1.31.1.1.1.14.1342177283|2|1
@@ -666,6 +872,8 @@
1.3.6.1.2.1.31.1.1.1.14.1509949473|2|1
1.3.6.1.2.1.31.1.1.1.14.1509949478|2|1
1.3.6.1.2.1.31.1.1.1.15.1|66|0
+1.3.6.1.2.1.31.1.1.1.15.3|66|10000
+1.3.6.1.2.1.31.1.1.1.15.4|66|10000
1.3.6.1.2.1.31.1.1.1.15.7|66|10000
1.3.6.1.2.1.31.1.1.1.15.131073|66|40000
1.3.6.1.2.1.31.1.1.1.15.35684352|66|10000
@@ -681,10 +889,16 @@
1.3.6.1.2.1.31.1.1.1.15.40009728|66|40000
1.3.6.1.2.1.31.1.1.1.15.40042496|66|40000
1.3.6.1.2.1.31.1.1.1.15.40075264|66|40000
+1.3.6.1.2.1.31.1.1.1.15.69238784|66|10000
+1.3.6.1.2.1.31.1.1.1.15.69271552|66|10000
1.3.6.1.2.1.31.1.1.1.15.100696064|66|100
1.3.6.1.2.1.31.1.1.1.15.100794368|66|0
+1.3.6.1.2.1.31.1.1.1.15.102793216|66|10000
+1.3.6.1.2.1.31.1.1.1.15.102825984|66|10000
1.3.6.1.2.1.31.1.1.1.15.134250496|66|0
1.3.6.1.2.1.31.1.1.1.15.134348800|66|0
+1.3.6.1.2.1.31.1.1.1.15.234913792|66|100
+1.3.6.1.2.1.31.1.1.1.15.268468224|66|100
1.3.6.1.2.1.31.1.1.1.15.1342177281|66|10000
1.3.6.1.2.1.31.1.1.1.15.1342177282|66|10000
1.3.6.1.2.1.31.1.1.1.15.1342177283|66|20000
@@ -692,6 +906,8 @@
1.3.6.1.2.1.31.1.1.1.15.1509949473|66|40000
1.3.6.1.2.1.31.1.1.1.15.1509949478|66|40000
1.3.6.1.2.1.31.1.1.1.16.1|2|2
+1.3.6.1.2.1.31.1.1.1.16.3|2|2
+1.3.6.1.2.1.31.1.1.1.16.4|2|2
1.3.6.1.2.1.31.1.1.1.16.7|2|2
1.3.6.1.2.1.31.1.1.1.16.131073|2|2
1.3.6.1.2.1.31.1.1.1.16.35684352|2|2
@@ -707,10 +923,16 @@
1.3.6.1.2.1.31.1.1.1.16.40009728|2|2
1.3.6.1.2.1.31.1.1.1.16.40042496|2|2
1.3.6.1.2.1.31.1.1.1.16.40075264|2|2
+1.3.6.1.2.1.31.1.1.1.16.69238784|2|2
+1.3.6.1.2.1.31.1.1.1.16.69271552|2|2
1.3.6.1.2.1.31.1.1.1.16.100696064|2|2
1.3.6.1.2.1.31.1.1.1.16.100794368|2|2
+1.3.6.1.2.1.31.1.1.1.16.102793216|2|2
+1.3.6.1.2.1.31.1.1.1.16.102825984|2|2
1.3.6.1.2.1.31.1.1.1.16.134250496|2|2
1.3.6.1.2.1.31.1.1.1.16.134348800|2|2
+1.3.6.1.2.1.31.1.1.1.16.234913792|2|2
+1.3.6.1.2.1.31.1.1.1.16.268468224|2|2
1.3.6.1.2.1.31.1.1.1.16.1342177281|2|2
1.3.6.1.2.1.31.1.1.1.16.1342177282|2|2
1.3.6.1.2.1.31.1.1.1.16.1342177283|2|2
@@ -718,6 +940,8 @@
1.3.6.1.2.1.31.1.1.1.16.1509949473|2|2
1.3.6.1.2.1.31.1.1.1.16.1509949478|2|2
1.3.6.1.2.1.31.1.1.1.17.1|2|2
+1.3.6.1.2.1.31.1.1.1.17.3|2|2
+1.3.6.1.2.1.31.1.1.1.17.4|2|2
1.3.6.1.2.1.31.1.1.1.17.7|2|2
1.3.6.1.2.1.31.1.1.1.17.131073|2|2
1.3.6.1.2.1.31.1.1.1.17.35684352|2|1
@@ -733,10 +957,16 @@
1.3.6.1.2.1.31.1.1.1.17.40009728|2|1
1.3.6.1.2.1.31.1.1.1.17.40042496|2|1
1.3.6.1.2.1.31.1.1.1.17.40075264|2|1
+1.3.6.1.2.1.31.1.1.1.17.69238784|2|1
+1.3.6.1.2.1.31.1.1.1.17.69271552|2|1
1.3.6.1.2.1.31.1.1.1.17.100696064|2|1
1.3.6.1.2.1.31.1.1.1.17.100794368|2|1
+1.3.6.1.2.1.31.1.1.1.17.102793216|2|2
+1.3.6.1.2.1.31.1.1.1.17.102825984|2|2
1.3.6.1.2.1.31.1.1.1.17.134250496|2|2
1.3.6.1.2.1.31.1.1.1.17.134348800|2|2
+1.3.6.1.2.1.31.1.1.1.17.234913792|2|1
+1.3.6.1.2.1.31.1.1.1.17.268468224|2|1
1.3.6.1.2.1.31.1.1.1.17.1342177281|2|2
1.3.6.1.2.1.31.1.1.1.17.1342177282|2|2
1.3.6.1.2.1.31.1.1.1.17.1342177283|2|2
@@ -744,6 +974,8 @@
1.3.6.1.2.1.31.1.1.1.17.1509949473|2|2
1.3.6.1.2.1.31.1.1.1.17.1509949478|2|2
1.3.6.1.2.1.31.1.1.1.18.1|4|Loopback IP interface
+1.3.6.1.2.1.31.1.1.1.18.3|4|IP interface
+1.3.6.1.2.1.31.1.1.1.18.4|4|IP interface
1.3.6.1.2.1.31.1.1.1.18.7|4|IP interface
1.3.6.1.2.1.31.1.1.1.18.131073|4|IP interface
1.3.6.1.2.1.31.1.1.1.18.35684352|4|10-Gig Ethernet
@@ -759,10 +991,16 @@
1.3.6.1.2.1.31.1.1.1.18.40009728|4|Broadband
1.3.6.1.2.1.31.1.1.1.18.40042496|4|Broadband
1.3.6.1.2.1.31.1.1.1.18.40075264|4|Broadband
+1.3.6.1.2.1.31.1.1.1.18.69238784|4|transit: Test
+1.3.6.1.2.1.31.1.1.1.18.69271552|4|10-Gig Ethernet
1.3.6.1.2.1.31.1.1.1.18.100696064|4|10/100 Ethernet TX
1.3.6.1.2.1.31.1.1.1.18.100794368|4|10/100 Ethernet TX
+1.3.6.1.2.1.31.1.1.1.18.102793216|4|10-Gig Ethernet
+1.3.6.1.2.1.31.1.1.1.18.102825984|4|10-Gig Ethernet
1.3.6.1.2.1.31.1.1.1.18.134250496|4|10/100 Ethernet TX
1.3.6.1.2.1.31.1.1.1.18.134348800|4|10/100 Ethernet TX
+1.3.6.1.2.1.31.1.1.1.18.234913792|4|10/100 Ethernet TX
+1.3.6.1.2.1.31.1.1.1.18.268468224|4|10/100 Ethernet TX
1.3.6.1.2.1.31.1.1.1.18.1342177281|4|PPPoE Customer
1.3.6.1.2.1.31.1.1.1.18.1342177282|4|MPLS
1.3.6.1.2.1.31.1.1.1.18.1342177283|4|L2 VLAN
@@ -770,6 +1008,8 @@
1.3.6.1.2.1.31.1.1.1.18.1509949473|4|Broadband
1.3.6.1.2.1.31.1.1.1.18.1509949478|4|Broadband
1.3.6.1.2.1.31.1.1.1.19.1|67|0
+1.3.6.1.2.1.31.1.1.1.19.3|67|0
+1.3.6.1.2.1.31.1.1.1.19.4|67|0
1.3.6.1.2.1.31.1.1.1.19.7|67|0
1.3.6.1.2.1.31.1.1.1.19.131073|67|0
1.3.6.1.2.1.31.1.1.1.19.35684352|67|218713683
@@ -785,10 +1025,16 @@
1.3.6.1.2.1.31.1.1.1.19.40009728|67|0
1.3.6.1.2.1.31.1.1.1.19.40042496|67|793117790
1.3.6.1.2.1.31.1.1.1.19.40075264|67|0
+1.3.6.1.2.1.31.1.1.1.19.69238784|67|0
+1.3.6.1.2.1.31.1.1.1.19.69271552|67|656771045
1.3.6.1.2.1.31.1.1.1.19.100696064|67|0
1.3.6.1.2.1.31.1.1.1.19.100794368|67|0
+1.3.6.1.2.1.31.1.1.1.19.102793216|67|0
+1.3.6.1.2.1.31.1.1.1.19.102825984|67|794
1.3.6.1.2.1.31.1.1.1.19.134250496|67|0
1.3.6.1.2.1.31.1.1.1.19.134348800|67|0
+1.3.6.1.2.1.31.1.1.1.19.234913792|67|0
+1.3.6.1.2.1.31.1.1.1.19.268468224|67|0
1.3.6.1.2.1.31.1.1.1.19.1342177281|67|218713914
1.3.6.1.2.1.31.1.1.1.19.1342177282|67|218713914
1.3.6.1.2.1.31.1.1.1.19.1342177283|67|218713914
@@ -1636,26 +1882,38 @@
1.3.6.1.4.1.6527.3.1.2.2.1.24.1.1.5.3.1.1|66|12
1.3.6.1.4.1.6527.3.1.2.3.1.1.2.1|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.2.3|2|1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.2.254|2|1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.2.255|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.2.4094|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.2.4095|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.3.1|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.3.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.3.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.3.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.3.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.3.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.4.1|4|Base
1.3.6.1.4.1.6527.3.1.2.3.1.1.4.3|4|vprn1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.4.254|4|vpls-management
+1.3.6.1.4.1.6527.3.1.2.3.1.1.4.255|4|management
1.3.6.1.4.1.6527.3.1.2.3.1.1.4.4094|4|vpls-management
1.3.6.1.4.1.6527.3.1.2.3.1.1.4.4095|4|management
1.3.6.1.4.1.6527.3.1.2.3.1.1.5.1|2|-1
1.3.6.1.4.1.6527.3.1.2.3.1.1.5.3|2|-1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.5.254|2|-1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.5.255|2|-1
1.3.6.1.4.1.6527.3.1.2.3.1.1.5.4094|2|-1
1.3.6.1.4.1.6527.3.1.2.3.1.1.5.4095|2|-1
1.3.6.1.4.1.6527.3.1.2.3.1.1.6.1|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.6.3|2|1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.6.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.6.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.6.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.6.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.7.1|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.7.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.7.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.7.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.7.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.7.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.9.1|2|2
@@ -1664,193 +1922,292 @@
1.3.6.1.4.1.6527.3.1.2.3.1.1.9.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.10.1|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.10.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.10.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.10.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.10.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.10.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.11.1|66|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.11.3|66|1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.11.254|66|1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.11.255|66|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.11.4094|66|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.11.4095|66|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.13.1|2|3
1.3.6.1.4.1.6527.3.1.2.3.1.1.13.3|2|3
+1.3.6.1.4.1.6527.3.1.2.3.1.1.13.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.13.255|2|1281
1.3.6.1.4.1.6527.3.1.2.3.1.1.13.4094|2|3
1.3.6.1.4.1.6527.3.1.2.3.1.1.13.4095|2|3
1.3.6.1.4.1.6527.3.1.2.3.1.1.14.1|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.14.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.14.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.14.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.14.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.14.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.16.1|64|172.17.0.3
1.3.6.1.4.1.6527.3.1.2.3.1.1.16.3|64|192.0.2.0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.16.254|64|172.17.0.0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.16.255|64|172.17.0.0
1.3.6.1.4.1.6527.3.1.2.3.1.1.16.4094|64|0.0.0.0
1.3.6.1.4.1.6527.3.1.2.3.1.1.16.4095|64|0.0.0.0
1.3.6.1.4.1.6527.3.1.2.3.1.1.17.1|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.17.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.17.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.17.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.17.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.17.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.19.1|4x|0000000000000000
1.3.6.1.4.1.6527.3.1.2.3.1.1.19.3|4x|00009B9B070BB60A
+1.3.6.1.4.1.6527.3.1.2.3.1.1.19.254|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.3.1.1.19.255|4x|0000000000000000
1.3.6.1.4.1.6527.3.1.2.3.1.1.19.4094|4x|0000000000000000
1.3.6.1.4.1.6527.3.1.2.3.1.1.19.4095|4x|0000000000000000
1.3.6.1.4.1.6527.3.1.2.3.1.1.20.1|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.20.3|66|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.20.254|66|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.20.255|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.20.4094|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.20.4095|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.21.1|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.21.3|66|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.21.254|66|100
+1.3.6.1.4.1.6527.3.1.2.3.1.1.21.255|66|100
1.3.6.1.4.1.6527.3.1.2.3.1.1.21.4094|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.21.4095|66|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.22.1|66|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.22.254|66|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.22.255|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.23.1|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.23.3|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.23.254|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.23.255|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.23.4094|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.23.4095|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.25.1|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.25.3|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.25.254|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.25.255|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.25.4094|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.25.4095|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.26.1|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.26.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.26.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.26.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.26.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.26.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.27.1|2|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.27.3|2|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.27.254|2|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.27.255|2|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.27.4094|2|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.27.4095|2|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.28.1|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.28.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.28.254|2|3
+1.3.6.1.4.1.6527.3.1.2.3.1.1.28.255|2|3
1.3.6.1.4.1.6527.3.1.2.3.1.1.28.4094|2|3
1.3.6.1.4.1.6527.3.1.2.3.1.1.28.4095|2|3
1.3.6.1.4.1.6527.3.1.2.3.1.1.29.1|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.29.3|66|1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.29.254|66|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.29.255|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.29.4094|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.29.4095|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.30.1|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.30.3|66|1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.30.254|66|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.30.255|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.30.4094|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.30.4095|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.31.1|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.31.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.31.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.31.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.31.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.31.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.32.1|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.32.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.32.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.32.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.32.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.32.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.33.1|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.33.3|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.33.254|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.33.255|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.33.4094|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.33.4095|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.34.1|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.34.3|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.34.254|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.34.255|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.34.4094|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.34.4095|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.35.1|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.35.3|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.35.254|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.35.255|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.35.4094|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.35.4095|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.36.1|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.36.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.36.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.36.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.36.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.36.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.37.1|2|-1
1.3.6.1.4.1.6527.3.1.2.3.1.1.37.3|2|-1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.37.254|2|-1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.37.255|2|-1
1.3.6.1.4.1.6527.3.1.2.3.1.1.37.4094|2|-1
1.3.6.1.4.1.6527.3.1.2.3.1.1.37.4095|2|-1
1.3.6.1.4.1.6527.3.1.2.3.1.1.38.1|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.38.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.38.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.38.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.38.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.38.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.39.1|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.39.3|66|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.39.254|66|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.39.255|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.39.4094|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.39.4095|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.40.1|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.40.3|2|1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.40.254|2|1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.40.255|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.40.4094|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.40.4095|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.42.1|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.42.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.42.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.42.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.42.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.42.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.43.1|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.43.3|2|1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.43.254|2|1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.43.255|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.43.4094|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.43.4095|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.44.1|2|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.44.3|2|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.44.254|2|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.44.255|2|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.44.4094|2|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.44.4095|2|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.45.1|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.45.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.45.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.45.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.45.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.45.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.46.1|2|-1
1.3.6.1.4.1.6527.3.1.2.3.1.1.46.3|2|-1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.46.254|2|-1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.46.255|2|-1
1.3.6.1.4.1.6527.3.1.2.3.1.1.46.4094|2|-1
1.3.6.1.4.1.6527.3.1.2.3.1.1.46.4095|2|-1
1.3.6.1.4.1.6527.3.1.2.3.1.1.47.1|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.47.3|66|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.47.254|66|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.47.255|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.47.4094|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.47.4095|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.48.1|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.48.3|66|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.48.254|66|100
+1.3.6.1.4.1.6527.3.1.2.3.1.1.48.255|66|100
1.3.6.1.4.1.6527.3.1.2.3.1.1.48.4094|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.48.4095|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.49.1|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.49.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.49.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.49.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.49.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.49.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.50.1|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.50.3|2|1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.50.254|2|1
+1.3.6.1.4.1.6527.3.1.2.3.1.1.50.255|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.50.4094|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.50.4095|2|1
1.3.6.1.4.1.6527.3.1.2.3.1.1.51.1|4|default
1.3.6.1.4.1.6527.3.1.2.3.1.1.51.3|4|default
+1.3.6.1.4.1.6527.3.1.2.3.1.1.51.254|4|default
+1.3.6.1.4.1.6527.3.1.2.3.1.1.51.255|4|default
1.3.6.1.4.1.6527.3.1.2.3.1.1.51.4094|4|default
1.3.6.1.4.1.6527.3.1.2.3.1.1.51.4095|4|default
1.3.6.1.4.1.6527.3.1.2.3.1.1.52.1|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.52.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.52.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.52.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.52.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.52.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.53.1|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.53.3|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.53.254|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.53.255|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.53.4094|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.53.4095|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.54.1|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.54.3|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.54.254|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.54.255|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.54.4094|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.54.4095|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.55.1|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.55.3|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.55.254|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.55.255|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.55.4094|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.55.4095|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.56.1|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.56.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.56.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.56.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.56.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.56.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.57.1|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.57.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.57.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.57.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.57.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.57.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.58.1|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.58.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.58.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.58.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.58.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.58.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.59.1|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.59.3|66|39835
+1.3.6.1.4.1.6527.3.1.2.3.1.1.59.254|66|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.59.255|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.59.4094|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.59.4095|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.60.1|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.60.3|66|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.60.254|66|0
+1.3.6.1.4.1.6527.3.1.2.3.1.1.60.255|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.60.4094|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.60.4095|66|0
1.3.6.1.4.1.6527.3.1.2.3.1.1.61.1|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.61.3|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.61.254|4|
+1.3.6.1.4.1.6527.3.1.2.3.1.1.61.255|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.61.4094|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.61.4095|4|
1.3.6.1.4.1.6527.3.1.2.3.1.1.65.1|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.65.3|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.65.254|2|2
+1.3.6.1.4.1.6527.3.1.2.3.1.1.65.255|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.65.4094|2|2
1.3.6.1.4.1.6527.3.1.2.3.1.1.65.4095|2|2
1.3.6.1.4.1.6527.3.1.2.3.4.1.3.1.1|2|1
+1.3.6.1.4.1.6527.3.1.2.3.4.1.3.1.3|2|1
+1.3.6.1.4.1.6527.3.1.2.3.4.1.3.1.4|2|1
1.3.6.1.4.1.6527.3.1.2.3.4.1.3.1.7|2|1
1.3.6.1.4.1.6527.3.1.2.3.4.1.3.1.131073|2|1
1.3.6.1.4.1.6527.3.1.2.3.4.1.3.3.2|2|5
@@ -1862,8 +2219,11 @@
1.3.6.1.4.1.6527.3.1.2.3.4.1.3.3.11|2|5
1.3.6.1.4.1.6527.3.1.2.3.4.1.3.3.131074|2|5
1.3.6.1.4.1.6527.3.1.2.3.4.1.3.3.131075|2|5
+1.3.6.1.4.1.6527.3.1.2.3.4.1.3.255.1280|2|1
1.3.6.1.4.1.6527.3.1.2.3.4.1.3.4095.1280|2|1
1.3.6.1.4.1.6527.3.1.2.3.4.1.4.1.1|4|system
+1.3.6.1.4.1.6527.3.1.2.3.4.1.4.1.3|4|to_b
+1.3.6.1.4.1.6527.3.1.2.3.4.1.4.1.4|4|to_a
1.3.6.1.4.1.6527.3.1.2.3.4.1.4.1.7|4|to_test
1.3.6.1.4.1.6527.3.1.2.3.4.1.4.1.131073|4|_tmnx_nat-network_1/3
1.3.6.1.4.1.6527.3.1.2.3.4.1.4.3.2|4|to-local-dhcp
@@ -1875,8 +2235,11 @@
1.3.6.1.4.1.6527.3.1.2.3.4.1.4.3.11|4|to_proxyACCT
1.3.6.1.4.1.6527.3.1.2.3.4.1.4.3.131074|4|_tmnx_nat-outside_1/3
1.3.6.1.4.1.6527.3.1.2.3.4.1.4.3.131075|4|_tmnx_nat-inside
+1.3.6.1.4.1.6527.3.1.2.3.4.1.4.255.1280|4|management
1.3.6.1.4.1.6527.3.1.2.3.4.1.4.4095.1280|4|management
1.3.6.1.4.1.6527.3.1.2.3.4.1.10.1.1|4|
+1.3.6.1.4.1.6527.3.1.2.3.4.1.10.1.3|4|
+1.3.6.1.4.1.6527.3.1.2.3.4.1.10.1.4|4|
1.3.6.1.4.1.6527.3.1.2.3.4.1.10.1.7|4|
1.3.6.1.4.1.6527.3.1.2.3.4.1.10.1.131073|4|
1.3.6.1.4.1.6527.3.1.2.3.4.1.10.3.2|4|
@@ -1888,8 +2251,11 @@
1.3.6.1.4.1.6527.3.1.2.3.4.1.10.3.11|4|
1.3.6.1.4.1.6527.3.1.2.3.4.1.10.3.131074|4|
1.3.6.1.4.1.6527.3.1.2.3.4.1.10.3.131075|4|
+1.3.6.1.4.1.6527.3.1.2.3.4.1.10.255.1280|4|
1.3.6.1.4.1.6527.3.1.2.3.4.1.10.4095.1280|4|
1.3.6.1.4.1.6527.3.1.2.3.4.1.25.1.1|66|0
+1.3.6.1.4.1.6527.3.1.2.3.4.1.25.1.3|66|0
+1.3.6.1.4.1.6527.3.1.2.3.4.1.25.1.4|66|0
1.3.6.1.4.1.6527.3.1.2.3.4.1.25.1.7|66|0
1.3.6.1.4.1.6527.3.1.2.3.4.1.25.1.131073|66|0
1.3.6.1.4.1.6527.3.1.2.3.4.1.25.3.2|66|0
@@ -1901,8 +2267,11 @@
1.3.6.1.4.1.6527.3.1.2.3.4.1.25.3.11|66|0
1.3.6.1.4.1.6527.3.1.2.3.4.1.25.3.131074|66|0
1.3.6.1.4.1.6527.3.1.2.3.4.1.25.3.131075|66|0
+1.3.6.1.4.1.6527.3.1.2.3.4.1.25.255.1280|66|0
1.3.6.1.4.1.6527.3.1.2.3.4.1.25.4095.1280|66|0
1.3.6.1.4.1.6527.3.1.2.3.4.1.34.1.1|4|
+1.3.6.1.4.1.6527.3.1.2.3.4.1.34.1.3|4|
+1.3.6.1.4.1.6527.3.1.2.3.4.1.34.1.4|4|
1.3.6.1.4.1.6527.3.1.2.3.4.1.34.1.7|4|
1.3.6.1.4.1.6527.3.1.2.3.4.1.34.1.131073|4|
1.3.6.1.4.1.6527.3.1.2.3.4.1.34.3.2|4|
@@ -1914,8 +2283,11 @@
1.3.6.1.4.1.6527.3.1.2.3.4.1.34.3.11|4|
1.3.6.1.4.1.6527.3.1.2.3.4.1.34.3.131074|4|
1.3.6.1.4.1.6527.3.1.2.3.4.1.34.3.131075|4|
+1.3.6.1.4.1.6527.3.1.2.3.4.1.34.255.1280|4|
1.3.6.1.4.1.6527.3.1.2.3.4.1.34.4095.1280|4|
1.3.6.1.4.1.6527.3.1.2.3.54.1.40.1.1|70|8
+1.3.6.1.4.1.6527.3.1.2.3.54.1.40.1.3|70|27153854
+1.3.6.1.4.1.6527.3.1.2.3.54.1.40.1.4|70|20665568
1.3.6.1.4.1.6527.3.1.2.3.54.1.40.1.7|70|2786251
1.3.6.1.4.1.6527.3.1.2.3.54.1.40.1.131073|70|0
1.3.6.1.4.1.6527.3.1.2.3.54.1.40.3.2|70|0
@@ -1927,8 +2299,11 @@
1.3.6.1.4.1.6527.3.1.2.3.54.1.40.3.11|70|0
1.3.6.1.4.1.6527.3.1.2.3.54.1.40.3.131074|70|3157900
1.3.6.1.4.1.6527.3.1.2.3.54.1.40.3.131075|70|4191017
+1.3.6.1.4.1.6527.3.1.2.3.54.1.40.255.1280|70|18230571304430338048
1.3.6.1.4.1.6527.3.1.2.3.54.1.40.4095.1280|70|4811042
1.3.6.1.4.1.6527.3.1.2.3.54.1.43.1.1|70|672
+1.3.6.1.4.1.6527.3.1.2.3.54.1.43.1.3|70|3234784855
+1.3.6.1.4.1.6527.3.1.2.3.54.1.43.1.4|70|2234594541
1.3.6.1.4.1.6527.3.1.2.3.54.1.43.1.7|70|214796074
1.3.6.1.4.1.6527.3.1.2.3.54.1.43.1.131073|70|0
1.3.6.1.4.1.6527.3.1.2.3.54.1.43.3.2|70|17669
@@ -1940,8 +2315,11 @@
1.3.6.1.4.1.6527.3.1.2.3.54.1.43.3.11|70|40912
1.3.6.1.4.1.6527.3.1.2.3.54.1.43.3.131074|70|822979611
1.3.6.1.4.1.6527.3.1.2.3.54.1.43.3.131075|70|6189849240
+1.3.6.1.4.1.6527.3.1.2.3.54.1.43.255.1280|70|18374686483949813760
1.3.6.1.4.1.6527.3.1.2.3.54.1.43.4095.1280|70|497357822
1.3.6.1.4.1.6527.3.1.2.3.54.1.103.1.1|70|100000000
+1.3.6.1.4.1.6527.3.1.2.3.54.1.103.1.3|70|1410065408
+1.3.6.1.4.1.6527.3.1.2.3.54.1.103.1.4|70|1410065408
1.3.6.1.4.1.6527.3.1.2.3.54.1.103.1.7|70|10000000000
1.3.6.1.4.1.6527.3.1.2.3.54.1.103.1.131073|70|40000000000
1.3.6.1.4.1.6527.3.1.2.3.54.1.103.3.2|70|100000000
@@ -1953,8 +2331,11 @@
1.3.6.1.4.1.6527.3.1.2.3.54.1.103.3.11|70|100000000
1.3.6.1.4.1.6527.3.1.2.3.54.1.103.3.131074|70|40000000000
1.3.6.1.4.1.6527.3.1.2.3.54.1.103.3.131075|70|40000000000
+1.3.6.1.4.1.6527.3.1.2.3.54.1.103.255.1280|70|0
1.3.6.1.4.1.6527.3.1.2.3.54.1.103.4095.1280|70|0
1.3.6.1.4.1.6527.3.1.2.3.74.1.1.1.1|70|0
+1.3.6.1.4.1.6527.3.1.2.3.74.1.1.1.3|70|26791459
+1.3.6.1.4.1.6527.3.1.2.3.74.1.1.1.4|70|8444689
1.3.6.1.4.1.6527.3.1.2.3.74.1.1.1.7|70|5812645
1.3.6.1.4.1.6527.3.1.2.3.74.1.1.1.131073|70|0
1.3.6.1.4.1.6527.3.1.2.3.74.1.1.3.2|70|0
@@ -1966,8 +2347,11 @@
1.3.6.1.4.1.6527.3.1.2.3.74.1.1.3.11|70|0
1.3.6.1.4.1.6527.3.1.2.3.74.1.1.3.131074|70|7005916
1.3.6.1.4.1.6527.3.1.2.3.74.1.1.3.131075|70|831035
+1.3.6.1.4.1.6527.3.1.2.3.74.1.1.255.1280|70|744428
1.3.6.1.4.1.6527.3.1.2.3.74.1.1.4095.1280|70|220095
1.3.6.1.4.1.6527.3.1.2.3.74.1.4.1.1|70|0
+1.3.6.1.4.1.6527.3.1.2.3.74.1.4.1.3|70|2674854728
+1.3.6.1.4.1.6527.3.1.2.3.74.1.4.1.4|70|1056626236
1.3.6.1.4.1.6527.3.1.2.3.74.1.4.1.7|70|542904288
1.3.6.1.4.1.6527.3.1.2.3.74.1.4.1.131073|70|0
1.3.6.1.4.1.6527.3.1.2.3.74.1.4.3.2|70|0
@@ -1979,7 +2363,2184 @@
1.3.6.1.4.1.6527.3.1.2.3.74.1.4.3.11|70|0
1.3.6.1.4.1.6527.3.1.2.3.74.1.4.3.131074|70|6417281160
1.3.6.1.4.1.6527.3.1.2.3.74.1.4.3.131075|70|629037025
+1.3.6.1.4.1.6527.3.1.2.3.74.1.4.255.1280|70|63817254
1.3.6.1.4.1.6527.3.1.2.3.74.1.4.4095.1280|70|19668974
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.1.118208001|66|118208001
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.1.118208002|66|118208002
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.1.118208003|66|118208003
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.1.118208004|66|118208004
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.1.118208010|66|118208010
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.1.118208012|66|118208012
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.1.118208016|66|118208016
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.1.2147483648|66|2147483648
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.1.2147483649|66|2147483649
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.2.118208001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.2.118208002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.2.118208003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.2.118208004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.2.118208010|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.2.118208012|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.2.118208016|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.2.2147483648|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.2.2147483649|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.3.118208001|2|3
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.3.118208002|2|3
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.3.118208003|2|3
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.3.118208004|2|3
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.3.118208010|2|3
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.3.118208012|2|3
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.3.118208016|2|3
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.3.2147483648|2|5
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.3.2147483649|2|11
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.4.118208001|66|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.4.118208002|66|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.4.118208003|66|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.4.118208004|66|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.4.118208010|66|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.4.118208012|66|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.4.118208016|66|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.4.2147483648|66|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.4.2147483649|66|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.5.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.5.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.5.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.5.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.5.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.5.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.5.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.5.2147483648|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.5.2147483649|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.6.118208001|4|Management
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.6.118208002|4|VLAN 2002
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.6.118208003|4|VLAN 2512
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.6.118208004|4|VLAN 2003
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.6.118208010|4|BNG
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.6.118208012|4|BGP Peering
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.6.118208016|4|Test
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.6.2147483648|4|IES Service for internal purposes only
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.6.2147483649|4|VPLS Service for internal purposes only
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.7.118208001|2|1514
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.7.118208002|2|1514
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.7.118208003|2|1514
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.7.118208004|2|1514
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.7.118208010|2|1518
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.7.118208012|2|1518
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.7.118208016|2|1514
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.7.2147483648|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.7.2147483649|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.8.118208001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.8.118208002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.8.118208003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.8.118208004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.8.118208010|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.8.118208012|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.8.118208016|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.8.2147483648|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.8.2147483649|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.9.118208001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.9.118208002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.9.118208003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.9.118208004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.9.118208010|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.9.118208012|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.9.118208016|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.9.2147483648|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.9.2147483649|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.10.118208001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.10.118208002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.10.118208003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.10.118208004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.10.118208010|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.10.118208012|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.10.118208016|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.10.2147483648|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.10.2147483649|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.11.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.11.118208002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.11.118208003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.11.118208004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.11.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.11.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.11.118208016|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.11.2147483648|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.11.2147483649|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.12.118208001|67|1243721846
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.12.118208002|67|1303806200
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.12.118208003|67|1531556065
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.12.118208004|67|1884484709
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.12.118208010|67|1873538810
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.12.118208012|67|1873856566
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.12.118208016|67|2270405268
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.12.2147483648|67|37
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.12.2147483649|67|37
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.13.118208001|66|118208001
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.13.118208002|66|118208002
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.13.118208003|66|118208003
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.13.118208004|66|118208004
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.13.118208010|66|118208010
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.13.118208012|66|118208012
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.13.118208016|66|118208016
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.13.2147483648|66|2147483648
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.13.2147483649|66|2147483649
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.14.118208001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.14.118208002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.14.118208003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.14.118208004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.14.118208010|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.14.118208012|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.14.118208016|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.14.2147483648|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.14.2147483649|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.15.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.15.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.15.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.15.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.15.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.15.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.15.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.15.2147483648|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.15.2147483649|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.17.118208001|67|709237701
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.17.118208002|67|1303806200
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.17.118208003|67|1531556065
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.17.118208004|67|1884484709
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.17.118208010|67|967683440
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.17.118208012|67|1355911118
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.17.118208016|67|2270405613
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.17.2147483648|67|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.17.2147483649|67|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.18.118208001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.18.118208002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.18.118208003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.18.118208004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.18.118208010|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.18.118208012|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.18.118208016|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.18.2147483648|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.18.2147483649|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.19.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.19.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.19.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.19.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.19.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.19.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.19.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.19.2147483648|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.19.2147483649|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.20.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.20.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.20.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.20.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.20.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.20.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.20.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.20.2147483648|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.20.2147483649|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.23.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.23.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.23.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.23.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.23.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.23.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.23.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.23.2147483648|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.23.2147483649|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.26.118208001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.26.118208002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.26.118208003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.26.118208004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.26.118208010|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.26.118208012|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.26.118208016|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.26.2147483648|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.26.2147483649|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.27.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.27.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.27.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.27.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.27.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.27.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.27.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.27.2147483648|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.27.2147483649|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.29.118208001|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.29.118208002|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.29.118208003|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.29.118208004|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.29.118208010|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.29.118208012|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.29.118208016|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.29.2147483648|4|_tmnx_InternalIesService
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.29.2147483649|4|_tmnx_InternalVplsService
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.31.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.31.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.31.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.31.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.31.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.31.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.31.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.31.2147483648|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.31.2147483649|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.32.118208001|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.32.118208002|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.32.118208003|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.32.118208004|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.32.118208010|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.32.118208012|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.32.118208016|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.32.2147483648|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.32.2147483649|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.34.118208001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.34.118208002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.34.118208003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.34.118208004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.34.118208010|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.34.118208012|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.34.118208016|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.34.2147483648|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.34.2147483649|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.37.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.37.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.37.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.37.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.37.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.37.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.37.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.37.2147483648|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.37.2147483649|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.39.118208001|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.39.118208002|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.39.118208003|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.39.118208004|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.39.118208010|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.39.118208012|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.39.118208016|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.39.2147483648|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.39.2147483649|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.40.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.40.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.40.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.40.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.40.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.40.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.40.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.40.2147483648|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.40.2147483649|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.42.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.42.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.42.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.42.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.42.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.42.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.42.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.42.2147483648|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.2.1.42.2147483649|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.1.118208001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.1.118208002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.1.118208003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.1.118208004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.1.118208010|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.1.118208012|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.1.118208016|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.2.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.2.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.2.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.2.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.2.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.2.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.2.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.3.118208001|2|250
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.3.118208002|2|250
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.3.118208003|2|250
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.3.118208004|2|250
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.3.118208010|2|250
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.3.118208012|2|250
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.3.118208016|2|250
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.4.118208001|2|53
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.4.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.4.118208003|2|8
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.4.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.4.118208010|2|3
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.4.118208012|2|7
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.4.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.5.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.5.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.5.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.5.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.5.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.5.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.5.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.6.118208001|2|300
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.6.118208002|2|300
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.6.118208003|2|300
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.6.118208004|2|300
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.6.118208010|2|300
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.6.118208012|2|300
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.6.118208016|2|300
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.7.118208001|2|900
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.7.118208002|2|900
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.7.118208003|2|900
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.7.118208004|2|900
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.7.118208010|2|900
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.7.118208012|2|900
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.7.118208016|2|900
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.8.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.8.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.8.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.8.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.8.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.8.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.8.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.9.118208001|2|32768
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.9.118208002|2|32768
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.9.118208003|2|32768
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.9.118208004|2|32768
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.9.118208010|2|32768
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.9.118208012|2|32768
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.9.118208016|2|32768
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.10.118208001|4x|8CF77337E077
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.10.118208002|4x|8CF77337E077
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.10.118208003|4x|8CF77337E077
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.10.118208004|4x|8CF77337E077
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.10.118208010|4x|8CF77337E077
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.10.118208012|4x|8CF77337E077
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.10.118208016|4x|8CF77337E077
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.11.118208001|67|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.11.118208002|67|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.11.118208003|67|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.11.118208004|67|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.11.118208010|67|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.11.118208012|67|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.11.118208016|67|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.12.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.12.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.12.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.12.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.12.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.12.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.12.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.13.118208001|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.13.118208002|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.13.118208003|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.13.118208004|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.13.118208010|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.13.118208012|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.13.118208016|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.14.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.14.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.14.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.14.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.14.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.14.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.14.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.15.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.15.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.15.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.15.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.15.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.15.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.15.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.16.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.16.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.16.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.16.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.16.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.16.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.16.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.17.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.17.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.17.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.17.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.17.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.17.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.17.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.19.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.19.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.19.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.19.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.19.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.19.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.19.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.20.118208001|2|20
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.20.118208002|2|20
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.20.118208003|2|20
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.20.118208004|2|20
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.20.118208010|2|20
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.20.118208012|2|20
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.20.118208016|2|20
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.21.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.21.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.21.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.21.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.21.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.21.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.21.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.22.118208001|2|15
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.22.118208002|2|15
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.22.118208003|2|15
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.22.118208004|2|15
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.22.118208010|2|15
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.22.118208012|2|15
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.22.118208016|2|15
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.30.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.30.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.30.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.30.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.30.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.30.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.30.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.31.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.31.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.31.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.31.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.31.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.31.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.31.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.32.118208001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.32.118208002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.32.118208003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.32.118208004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.32.118208010|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.32.118208012|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.32.118208016|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.33.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.33.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.33.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.33.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.33.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.33.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.33.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.34.118208001|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.34.118208002|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.34.118208003|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.34.118208004|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.34.118208010|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.34.118208012|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.34.118208016|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.35.118208001|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.35.118208002|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.35.118208003|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.35.118208004|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.35.118208010|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.35.118208012|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.35.118208016|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.36.118208001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.36.118208002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.36.118208003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.36.118208004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.36.118208010|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.36.118208012|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.36.118208016|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.37.118208001|66|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.37.118208002|66|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.37.118208003|66|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.37.118208004|66|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.37.118208010|66|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.37.118208012|66|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.37.118208016|66|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.38.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.38.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.38.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.38.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.38.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.38.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.38.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.39.118208001|2|6
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.39.118208002|2|6
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.39.118208003|2|6
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.39.118208004|2|6
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.39.118208010|2|6
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.39.118208012|2|6
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.39.118208016|2|6
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.40.118208001|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.40.118208002|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.40.118208003|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.40.118208004|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.40.118208010|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.40.118208012|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.40.118208016|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.41.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.41.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.41.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.41.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.41.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.41.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.41.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.42.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.42.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.42.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.42.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.42.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.42.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.42.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.43.118208001|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.43.118208002|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.43.118208003|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.43.118208004|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.43.118208010|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.43.118208012|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.43.118208016|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.44.118208001|66|10
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.44.118208002|66|10
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.44.118208003|66|10
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.44.118208004|66|10
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.44.118208010|66|10
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.44.118208012|66|10
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.44.118208016|66|10
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.45.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.45.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.45.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.45.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.45.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.45.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.45.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.46.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.46.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.46.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.46.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.46.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.46.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.46.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.47.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.47.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.47.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.47.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.47.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.47.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.47.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.48.118208001|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.48.118208002|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.48.118208003|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.48.118208004|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.48.118208010|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.48.118208012|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.48.118208016|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.49.118208001|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.49.118208002|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.49.118208003|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.49.118208004|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.49.118208010|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.49.118208012|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.49.118208016|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.50.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.50.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.50.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.50.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.50.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.50.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.50.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.51.118208001|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.51.118208002|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.51.118208003|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.51.118208004|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.51.118208010|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.51.118208012|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.51.118208016|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.52.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.52.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.52.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.52.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.52.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.52.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.52.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.53.118208001|2|20
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.53.118208002|2|20
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.53.118208003|2|20
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.53.118208004|2|20
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.53.118208010|2|20
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.53.118208012|2|20
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.53.118208016|2|20
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.54.118208001|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.54.118208002|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.54.118208003|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.54.118208004|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.54.118208010|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.54.118208012|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.54.118208016|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.55.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.55.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.55.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.55.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.55.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.55.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.55.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.56.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.56.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.56.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.56.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.56.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.56.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.56.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.57.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.57.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.57.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.57.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.57.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.57.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.57.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.58.118208001|2|53
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.58.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.58.118208003|2|8
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.58.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.58.118208010|2|3
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.58.118208012|2|7
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.58.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.59.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.59.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.59.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.59.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.59.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.59.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.59.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.60.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.60.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.60.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.60.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.60.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.60.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.60.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.61.118208001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.61.118208002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.61.118208003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.61.118208004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.61.118208010|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.61.118208012|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.61.118208016|2|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.62.118208001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.62.118208002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.62.118208003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.62.118208004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.62.118208010|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.62.118208012|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.62.118208016|2|1
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.63.118208001|64|0.0.0.0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.63.118208002|64|0.0.0.0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.63.118208003|64|0.0.0.0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.63.118208004|64|0.0.0.0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.63.118208010|64|0.0.0.0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.63.118208012|64|0.0.0.0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.63.118208016|64|0.0.0.0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.64.118208001|4x|000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.64.118208002|4x|000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.64.118208003|4x|000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.64.118208004|4x|000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.64.118208010|4x|000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.64.118208012|4x|000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.64.118208016|4x|000000000000
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.65.118208001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.65.118208002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.65.118208003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.65.118208004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.65.118208010|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.65.118208012|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.65.118208016|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.66.118208001|66|3
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.66.118208002|66|3
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.66.118208003|66|3
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.66.118208004|66|3
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.66.118208010|66|3
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.66.118208012|66|3
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.66.118208016|66|3
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.67.118208001|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.67.118208002|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.67.118208003|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.67.118208004|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.67.118208010|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.67.118208012|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.67.118208016|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.68.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.68.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.68.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.68.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.68.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.68.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.68.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.69.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.69.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.69.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.69.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.69.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.69.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.69.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.70.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.70.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.70.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.70.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.70.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.70.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.70.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.71.118208001|66|2048
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.71.118208002|66|2048
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.71.118208003|66|2048
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.71.118208004|66|2048
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.71.118208010|66|2048
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.71.118208012|66|2048
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.71.118208016|66|2048
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.72.118208001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.72.118208002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.72.118208003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.72.118208004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.72.118208010|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.72.118208012|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.72.118208016|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.73.118208001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.73.118208002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.73.118208003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.73.118208004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.73.118208010|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.73.118208012|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.73.118208016|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.74.118208001|4|default
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.74.118208002|4|default
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.74.118208003|4|default
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.74.118208004|4|default
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.74.118208010|4|default
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.74.118208012|4|default
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.74.118208016|4|default
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.75.118208001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.75.118208002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.75.118208003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.75.118208004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.75.118208010|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.75.118208012|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.75.118208016|66|0
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.76.118208001|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.76.118208002|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.76.118208003|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.76.118208004|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.76.118208010|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.76.118208012|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.76.118208016|2|95
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.77.118208001|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.77.118208002|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.77.118208003|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.77.118208004|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.77.118208010|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.77.118208012|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.77.118208016|2|90
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.78.118208001|66|3
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.78.118208002|66|3
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.78.118208003|66|3
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.78.118208004|66|3
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.78.118208010|66|3
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.78.118208012|66|3
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.78.118208016|66|3
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.79.118208001|2|48
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.79.118208002|2|48
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.79.118208003|2|48
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.79.118208004|2|48
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.79.118208010|2|48
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.79.118208012|2|48
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.79.118208016|2|48
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.85.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.85.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.85.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.85.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.85.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.85.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.85.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.86.118208001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.86.118208002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.86.118208003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.86.118208004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.86.118208010|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.86.118208012|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.86.118208016|2|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.87.118208001|66|10
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.87.118208002|66|10
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.87.118208003|66|10
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.87.118208004|66|10
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.87.118208010|66|10
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.87.118208012|66|10
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.87.118208016|66|10
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.88.118208001|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.88.118208002|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.88.118208003|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.88.118208004|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.88.118208010|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.88.118208012|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.88.118208016|66|2
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.92.118208001|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.92.118208002|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.92.118208003|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.92.118208004|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.92.118208010|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.92.118208012|4|
+1.3.6.1.4.1.6527.3.1.2.4.2.3.1.92.118208016|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.1.118208001.1342177283.10|66|1342177283
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.1.118208002.1342177283.2002|66|1342177283
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.1.118208003.1342177283.2512|66|1342177283
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.1.118208004.1342177283.2003|66|1342177283
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.1.118208010.69238784.58|66|69238784
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.1.118208012.1342177283.113|66|1342177283
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.1.118208016.1342177283.2001|66|1342177283
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.2.118208001.1342177283.10|66|10
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.2.118208002.1342177283.2002|66|2002
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.2.118208003.1342177283.2512|66|2512
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.2.118208004.1342177283.2003|66|2003
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.2.118208010.69238784.58|66|58
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.2.118208012.1342177283.113|66|113
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.2.118208016.1342177283.2001|66|2001
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.3.118208001.1342177283.10|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.3.118208002.1342177283.2002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.3.118208003.1342177283.2512|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.3.118208004.1342177283.2003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.3.118208010.69238784.58|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.3.118208012.1342177283.113|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.3.118208016.1342177283.2001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.4.118208001.1342177283.10|2|3
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.4.118208002.1342177283.2002|2|3
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.4.118208003.1342177283.2512|2|3
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.4.118208004.1342177283.2003|2|3
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.4.118208010.69238784.58|2|3
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.4.118208012.1342177283.113|2|3
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.4.118208016.1342177283.2001|2|3
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.5.118208001.1342177283.10|4|VLAN 10
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.5.118208002.1342177283.2002|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.5.118208003.1342177283.2512|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.5.118208004.1342177283.2003|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.5.118208010.69238784.58|4|VLAN 58
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.5.118208012.1342177283.113|4|VLAN 113
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.5.118208016.1342177283.2001|4|VLAN 2001
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.6.118208001.1342177283.10|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.6.118208002.1342177283.2002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.6.118208003.1342177283.2512|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.6.118208004.1342177283.2003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.6.118208010.69238784.58|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.6.118208012.1342177283.113|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.6.118208016.1342177283.2001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.7.118208001.1342177283.10|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.7.118208002.1342177283.2002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.7.118208003.1342177283.2512|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.7.118208004.1342177283.2003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.7.118208010.69238784.58|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.7.118208012.1342177283.113|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.7.118208016.1342177283.2001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.8.118208001.1342177283.10|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.8.118208002.1342177283.2002|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.8.118208003.1342177283.2512|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.8.118208004.1342177283.2003|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.8.118208010.69238784.58|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.8.118208012.1342177283.113|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.8.118208016.1342177283.2001|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.9.118208001.1342177283.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.9.118208002.1342177283.2002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.9.118208003.1342177283.2512|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.9.118208004.1342177283.2003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.9.118208010.69238784.58|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.9.118208012.1342177283.113|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.9.118208016.1342177283.2001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.10.118208001.1342177283.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.10.118208002.1342177283.2002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.10.118208003.1342177283.2512|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.10.118208004.1342177283.2003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.10.118208010.69238784.58|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.10.118208012.1342177283.113|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.10.118208016.1342177283.2001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.11.118208001.1342177283.10|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.11.118208002.1342177283.2002|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.11.118208003.1342177283.2512|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.11.118208004.1342177283.2003|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.11.118208010.69238784.58|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.11.118208012.1342177283.113|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.11.118208016.1342177283.2001|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.12.118208001.1342177283.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.12.118208002.1342177283.2002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.12.118208003.1342177283.2512|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.12.118208004.1342177283.2003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.12.118208010.69238784.58|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.12.118208012.1342177283.113|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.12.118208016.1342177283.2001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.13.118208001.1342177283.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.13.118208002.1342177283.2002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.13.118208003.1342177283.2512|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.13.118208004.1342177283.2003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.13.118208010.69238784.58|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.13.118208012.1342177283.113|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.13.118208016.1342177283.2001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.14.118208001.1342177283.10|2|4
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.14.118208002.1342177283.2002|2|4
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.14.118208003.1342177283.2512|2|4
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.14.118208004.1342177283.2003|2|4
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.14.118208010.69238784.58|2|4
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.14.118208012.1342177283.113|2|4
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.14.118208016.1342177283.2001|2|4
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.15.118208001.1342177283.10|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.15.118208002.1342177283.2002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.15.118208003.1342177283.2512|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.15.118208004.1342177283.2003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.15.118208010.69238784.58|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.15.118208012.1342177283.113|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.15.118208016.1342177283.2001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.16.118208001.1342177283.10|67|1243724913
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.16.118208002.1342177283.2002|67|1303804220
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.16.118208003.1342177283.2512|67|1531553262
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.16.118208004.1342177283.2003|67|1884476941
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.16.118208010.69238784.58|67|941551342
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.16.118208012.1342177283.113|67|1355909651
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.16.118208016.1342177283.2001|67|2295438927
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.17.118208001.1342177283.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.17.118208002.1342177283.2002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.17.118208003.1342177283.2512|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.17.118208004.1342177283.2003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.17.118208010.69238784.58|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.17.118208012.1342177283.113|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.17.118208016.1342177283.2001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.18.118208001.1342177283.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.18.118208002.1342177283.2002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.18.118208003.1342177283.2512|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.18.118208004.1342177283.2003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.18.118208010.69238784.58|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.18.118208012.1342177283.113|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.18.118208016.1342177283.2001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.19.118208001.1342177283.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.19.118208002.1342177283.2002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.19.118208003.1342177283.2512|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.19.118208004.1342177283.2003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.19.118208010.69238784.58|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.19.118208012.1342177283.113|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.19.118208016.1342177283.2001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.20.118208001.1342177283.10|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.20.118208002.1342177283.2002|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.20.118208003.1342177283.2512|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.20.118208004.1342177283.2003|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.20.118208010.69238784.58|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.20.118208012.1342177283.113|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.20.118208016.1342177283.2001|66|1
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.24.118208001.1342177283.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.24.118208002.1342177283.2002|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.24.118208003.1342177283.2512|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.24.118208004.1342177283.2003|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.24.118208010.69238784.58|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.24.118208012.1342177283.113|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.24.118208016.1342177283.2001|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.25.118208001.1342177283.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.25.118208002.1342177283.2002|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.25.118208003.1342177283.2512|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.25.118208004.1342177283.2003|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.25.118208010.69238784.58|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.25.118208012.1342177283.113|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.25.118208016.1342177283.2001|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.27.118208001.1342177283.10|4|00 00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.27.118208002.1342177283.2002|4|00 00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.27.118208003.1342177283.2512|4|00 00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.27.118208004.1342177283.2003|4|00 00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.27.118208010.69238784.58|4|00 00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.27.118208012.1342177283.113|4|00 00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.27.118208016.1342177283.2001|4|00 00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.28.118208001.1342177283.10|67|725648953
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.28.118208002.1342177283.2002|67|1303806200
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.28.118208003.1342177283.2512|67|1531556065
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.28.118208004.1342177283.2003|67|1884484709
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.28.118208010.69238784.58|67|2330846318
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.28.118208012.1342177283.113|67|1355911118
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.28.118208016.1342177283.2001|67|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.30.118208001.1342177283.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.30.118208002.1342177283.2002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.30.118208003.1342177283.2512|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.30.118208004.1342177283.2003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.30.118208010.69238784.58|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.30.118208012.1342177283.113|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.30.118208016.1342177283.2001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.31.118208001.1342177283.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.31.118208002.1342177283.2002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.31.118208003.1342177283.2512|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.31.118208004.1342177283.2003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.31.118208010.69238784.58|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.31.118208012.1342177283.113|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.31.118208016.1342177283.2001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.32.118208001.1342177283.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.32.118208002.1342177283.2002|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.32.118208003.1342177283.2512|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.32.118208004.1342177283.2003|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.32.118208010.69238784.58|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.32.118208012.1342177283.113|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.32.118208016.1342177283.2001|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.36.118208001.1342177283.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.36.118208002.1342177283.2002|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.36.118208003.1342177283.2512|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.36.118208004.1342177283.2003|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.36.118208010.69238784.58|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.36.118208012.1342177283.113|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.36.118208016.1342177283.2001|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.39.118208001.1342177283.10|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.39.118208002.1342177283.2002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.39.118208003.1342177283.2512|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.39.118208004.1342177283.2003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.39.118208010.69238784.58|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.39.118208012.1342177283.113|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.39.118208016.1342177283.2001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.51.118208001.1342177283.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.51.118208002.1342177283.2002|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.51.118208003.1342177283.2512|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.51.118208004.1342177283.2003|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.51.118208010.69238784.58|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.51.118208012.1342177283.113|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.51.118208016.1342177283.2001|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.52.118208001.1342177283.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.52.118208002.1342177283.2002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.52.118208003.1342177283.2512|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.52.118208004.1342177283.2003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.52.118208010.69238784.58|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.52.118208012.1342177283.113|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.52.118208016.1342177283.2001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.56.118208001.1342177283.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.56.118208002.1342177283.2002|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.56.118208003.1342177283.2512|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.56.118208004.1342177283.2003|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.56.118208010.69238784.58|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.56.118208012.1342177283.113|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.56.118208016.1342177283.2001|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.57.118208001.1342177283.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.57.118208002.1342177283.2002|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.57.118208003.1342177283.2512|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.57.118208004.1342177283.2003|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.57.118208010.69238784.58|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.57.118208012.1342177283.113|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.57.118208016.1342177283.2001|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.62.118208001.1342177283.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.62.118208002.1342177283.2002|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.62.118208003.1342177283.2512|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.62.118208004.1342177283.2003|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.62.118208010.69238784.58|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.62.118208012.1342177283.113|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.62.118208016.1342177283.2001|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.68.118208001.1342177283.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.68.118208002.1342177283.2002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.68.118208003.1342177283.2512|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.68.118208004.1342177283.2003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.68.118208010.69238784.58|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.68.118208012.1342177283.113|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.68.118208016.1342177283.2001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.69.118208001.1342177283.10|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.69.118208002.1342177283.2002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.69.118208003.1342177283.2512|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.69.118208004.1342177283.2003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.69.118208010.69238784.58|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.69.118208012.1342177283.113|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.69.118208016.1342177283.2001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.70.118208001.1342177283.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.70.118208002.1342177283.2002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.70.118208003.1342177283.2512|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.70.118208004.1342177283.2003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.70.118208010.69238784.58|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.70.118208012.1342177283.113|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.70.118208016.1342177283.2001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.71.118208001.1342177283.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.71.118208002.1342177283.2002|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.71.118208003.1342177283.2512|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.71.118208004.1342177283.2003|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.71.118208010.69238784.58|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.71.118208012.1342177283.113|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.71.118208016.1342177283.2001|4|
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.72.118208001.1342177283.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.72.118208002.1342177283.2002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.72.118208003.1342177283.2512|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.72.118208004.1342177283.2003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.72.118208010.69238784.58|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.72.118208012.1342177283.113|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.72.118208016.1342177283.2001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.77.118208001.1342177283.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.77.118208002.1342177283.2002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.77.118208003.1342177283.2512|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.77.118208004.1342177283.2003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.77.118208010.69238784.58|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.77.118208012.1342177283.113|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.77.118208016.1342177283.2001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.80.118208001.1342177283.10|66|4294967295
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.80.118208002.1342177283.2002|66|4294967295
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.80.118208003.1342177283.2512|66|4294967295
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.80.118208004.1342177283.2003|66|4294967295
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.80.118208010.69238784.58|66|4294967295
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.80.118208012.1342177283.113|66|4294967295
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.80.118208016.1342177283.2001|66|4294967295
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.300.118208001.1342177283.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.300.118208002.1342177283.2002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.300.118208003.1342177283.2512|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.300.118208004.1342177283.2003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.300.118208010.69238784.58|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.300.118208012.1342177283.113|2|2
+1.3.6.1.4.1.6527.3.1.2.4.3.2.1.300.118208016.1342177283.2001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.1.10001|66|10001
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.1.10002|66|10002
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.1.10003|66|10003
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.1.10004|66|10004
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.1.10005|66|10005
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.2.10001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.2.10002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.2.10003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.2.10004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.2.10005|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.3.10001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.3.10002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.3.10003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.3.10004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.3.10005|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.5.10001|4x|0000000200000000
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.5.10002|4x|0000000300000000
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.5.10003|4x|0000000500000000
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.5.10004|4x|0000000600000000
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.5.10005|4x|0000000700000000
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.6.10001|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.6.10002|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.6.10003|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.6.10004|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.6.10005|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.7.10001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.7.10002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.7.10003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.7.10004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.7.10005|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.8.10001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.8.10002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.8.10003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.8.10004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.8.10005|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.9.10001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.9.10002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.9.10003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.9.10004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.9.10005|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.10.10001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.10.10002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.10.10003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.10.10004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.10.10005|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.11.10001|2|9190
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.11.10002|2|9190
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.11.10003|2|9186
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.11.10004|2|9190
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.11.10005|2|9190
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.12.10001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.12.10002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.12.10003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.12.10004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.12.10005|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.13.10001|2|5
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.13.10002|2|5
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.13.10003|2|5
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.13.10004|2|5
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.13.10005|2|5
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.14.10001|2|10
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.14.10002|2|10
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.14.10003|2|10
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.14.10004|2|10
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.14.10005|2|10
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.15.10001|2|3
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.15.10002|2|3
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.15.10003|2|3
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.15.10004|2|3
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.15.10005|2|3
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.16.10001|2|10
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.16.10002|2|10
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.16.10003|2|10
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.16.10004|2|10
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.16.10005|2|10
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.17.10001|67|801
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.17.10002|67|802
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.17.10003|67|1305717444
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.17.10004|67|934259059
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.17.10005|67|1192464194
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.18.10001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.18.10002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.18.10003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.18.10004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.18.10005|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.19.10001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.19.10002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.19.10003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.19.10004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.19.10005|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.20.10001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.20.10002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.20.10003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.20.10004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.20.10005|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.21.10001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.21.10002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.21.10003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.21.10004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.21.10005|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.22.10001|2|5
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.22.10002|2|5
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.22.10003|2|5
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.22.10004|2|5
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.22.10005|2|5
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.23.10001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.23.10002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.23.10003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.23.10004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.23.10005|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.24.10001|66|33024
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.24.10002|66|33024
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.24.10003|66|33024
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.24.10004|66|33024
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.24.10005|66|33024
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.25.10001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.25.10002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.25.10003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.25.10004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.25.10005|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.26.10001|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.26.10002|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.26.10003|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.26.10004|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.26.10005|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.27.10001|67|1653879860
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.27.10002|67|2330853901
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.27.10003|67|1681103670
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.27.10004|67|934259059
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.27.10005|67|1873551980
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.28.10001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.28.10002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.28.10003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.28.10004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.28.10005|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.29.10001|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.29.10002|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.29.10003|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.29.10004|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.29.10005|4x|0000000000000000
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.30.10001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.30.10002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.30.10003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.30.10004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.30.10005|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.31.10001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.31.10002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.31.10003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.31.10004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.31.10005|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.32.10001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.32.10002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.32.10003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.32.10004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.32.10005|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.33.10001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.33.10002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.33.10003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.33.10004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.33.10005|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.34.10001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.34.10002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.34.10003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.34.10004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.34.10005|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.35.10001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.35.10002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.35.10003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.35.10004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.35.10005|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.36.10001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.36.10002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.36.10003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.36.10004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.36.10005|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.39.10001|66|100
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.39.10002|66|100
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.39.10003|66|100
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.39.10004|66|100
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.39.10005|66|100
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.40.10001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.40.10002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.40.10003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.40.10004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.40.10005|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.41.10001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.41.10002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.41.10003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.41.10004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.41.10005|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.44.10001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.44.10002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.44.10003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.44.10004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.44.10005|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.45.10001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.45.10002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.45.10003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.45.10004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.45.10005|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.46.10001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.46.10002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.46.10003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.46.10004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.46.10005|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.47.10001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.47.10002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.47.10003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.47.10004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.47.10005|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.48.10001|2|-1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.48.10002|2|-1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.48.10003|2|-1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.48.10004|2|-1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.48.10005|2|-1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.49.10001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.49.10002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.49.10003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.49.10004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.49.10005|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.51.10001|4|default
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.51.10002|4|default
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.51.10003|4|default
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.51.10004|4|default
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.51.10005|4|default
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.52.10001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.52.10002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.52.10003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.52.10004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.52.10005|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.53.10001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.53.10002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.53.10003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.53.10004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.53.10005|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.54.10001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.54.10002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.54.10003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.54.10004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.54.10005|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.56.10001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.56.10002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.56.10003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.56.10004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.56.10005|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.57.10001|66|503316480
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.57.10002|66|503316480
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.57.10003|66|503316480
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.57.10004|66|503316480
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.57.10005|66|503316480
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.58.10001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.58.10002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.58.10003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.58.10004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.58.10005|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.59.10001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.59.10002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.59.10003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.59.10004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.59.10005|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.60.10001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.60.10002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.60.10003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.60.10004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.60.10005|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.61.10001|4x|AC110001
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.61.10002|4x|AC110002
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.61.10003|4x|AC110005
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.61.10004|4x|AC110003
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.61.10005|4x|AC110004
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.62.10001|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.62.10002|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.62.10003|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.62.10004|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.62.10005|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.63.10001|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.63.10002|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.63.10003|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.63.10004|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.63.10005|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.64.10001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.64.10002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.64.10003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.64.10004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.64.10005|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.65.10001|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.65.10002|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.65.10003|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.65.10004|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.65.10005|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.66.10001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.66.10002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.66.10003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.66.10004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.66.10005|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.67.10001|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.67.10002|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.67.10003|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.67.10004|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.67.10005|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.68.10001|4x|AC110001
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.68.10002|4x|AC110002
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.68.10003|4x|AC110005
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.68.10004|4x|AC110003
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.68.10005|4x|AC110004
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.69.10001|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.69.10002|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.69.10003|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.69.10004|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.3.1.69.10005|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.1.118208001.0.0.39.18.7.11.182.1|4x|00002712070BB601
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.1.118208001.0.0.39.19.7.11.182.1|4x|00002713070BB601
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.1.118208002.0.0.39.19.7.11.182.2|4x|00002713070BB602
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.1.118208003.0.0.39.19.7.11.182.3|4x|00002713070BB603
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.1.118208004.0.0.39.19.7.11.182.4|4x|00002713070BB604
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.1.118208010.0.0.39.20.7.11.182.10|4x|00002714070BB60A
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.1.118208010.0.0.39.21.7.11.182.10|4x|00002715070BB60A
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.1.118208012.0.0.39.20.7.11.182.12|4x|00002714070BB60C
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.1.118208012.0.0.39.21.7.11.182.12|4x|00002715070BB60C
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.1.118208016.0.0.39.19.7.11.182.16|4x|00002713070BB610
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.2.118208001.0.0.39.18.7.11.182.1|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.2.118208001.0.0.39.19.7.11.182.1|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.2.118208002.0.0.39.19.7.11.182.2|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.2.118208003.0.0.39.19.7.11.182.3|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.2.118208004.0.0.39.19.7.11.182.4|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.2.118208010.0.0.39.20.7.11.182.10|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.2.118208010.0.0.39.21.7.11.182.10|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.2.118208012.0.0.39.20.7.11.182.12|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.2.118208012.0.0.39.21.7.11.182.12|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.2.118208016.0.0.39.19.7.11.182.16|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.3.118208001.0.0.39.18.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.3.118208001.0.0.39.19.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.3.118208002.0.0.39.19.7.11.182.2|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.3.118208003.0.0.39.19.7.11.182.3|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.3.118208004.0.0.39.19.7.11.182.4|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.3.118208010.0.0.39.20.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.3.118208010.0.0.39.21.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.3.118208012.0.0.39.20.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.3.118208012.0.0.39.21.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.3.118208016.0.0.39.19.7.11.182.16|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.4.118208001.0.0.39.18.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.4.118208001.0.0.39.19.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.4.118208002.0.0.39.19.7.11.182.2|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.4.118208003.0.0.39.19.7.11.182.3|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.4.118208004.0.0.39.19.7.11.182.4|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.4.118208010.0.0.39.20.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.4.118208010.0.0.39.21.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.4.118208012.0.0.39.20.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.4.118208012.0.0.39.21.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.4.118208016.0.0.39.19.7.11.182.16|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.5.118208001.0.0.39.18.7.11.182.1|66|131056
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.5.118208001.0.0.39.19.7.11.182.1|66|131059
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.5.118208002.0.0.39.19.7.11.182.2|66|131054
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.5.118208003.0.0.39.19.7.11.182.3|66|131053
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.5.118208004.0.0.39.19.7.11.182.4|66|131045
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.5.118208010.0.0.39.20.7.11.182.10|66|131064
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.5.118208010.0.0.39.21.7.11.182.10|66|131047
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.5.118208012.0.0.39.20.7.11.182.12|66|131063
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.5.118208012.0.0.39.21.7.11.182.12|66|131046
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.5.118208016.0.0.39.19.7.11.182.16|66|131043
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.6.118208001.0.0.39.18.7.11.182.1|66|131062
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.6.118208001.0.0.39.19.7.11.182.1|66|131064
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.6.118208002.0.0.39.19.7.11.182.2|66|131063
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.6.118208003.0.0.39.19.7.11.182.3|66|131062
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.6.118208004.0.0.39.19.7.11.182.4|66|131057
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.6.118208010.0.0.39.20.7.11.182.10|66|524284
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.6.118208010.0.0.39.21.7.11.182.10|66|524280
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.6.118208012.0.0.39.20.7.11.182.12|66|524277
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.6.118208012.0.0.39.21.7.11.182.12|66|524279
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.6.118208016.0.0.39.19.7.11.182.16|66|131056
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.7.118208001.0.0.39.18.7.11.182.1|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.7.118208001.0.0.39.19.7.11.182.1|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.7.118208002.0.0.39.19.7.11.182.2|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.7.118208003.0.0.39.19.7.11.182.3|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.7.118208004.0.0.39.19.7.11.182.4|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.7.118208010.0.0.39.20.7.11.182.10|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.7.118208010.0.0.39.21.7.11.182.10|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.7.118208012.0.0.39.20.7.11.182.12|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.7.118208012.0.0.39.21.7.11.182.12|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.7.118208016.0.0.39.19.7.11.182.16|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.8.118208001.0.0.39.18.7.11.182.1|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.8.118208001.0.0.39.19.7.11.182.1|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.8.118208002.0.0.39.19.7.11.182.2|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.8.118208003.0.0.39.19.7.11.182.3|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.8.118208004.0.0.39.19.7.11.182.4|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.8.118208010.0.0.39.20.7.11.182.10|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.8.118208010.0.0.39.21.7.11.182.10|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.8.118208012.0.0.39.20.7.11.182.12|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.8.118208012.0.0.39.21.7.11.182.12|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.8.118208016.0.0.39.19.7.11.182.16|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.9.118208001.0.0.39.18.7.11.182.1|67|802
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.9.118208001.0.0.39.19.7.11.182.1|67|656888286
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.9.118208002.0.0.39.19.7.11.182.2|67|1303800121
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.9.118208003.0.0.39.19.7.11.182.3|67|1531554878
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.9.118208004.0.0.39.19.7.11.182.4|67|1884483015
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.9.118208010.0.0.39.20.7.11.182.10|67|967683439
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.9.118208010.0.0.39.21.7.11.182.10|67|1873538810
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.9.118208012.0.0.39.20.7.11.182.12|67|1355910555
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.9.118208012.0.0.39.21.7.11.182.12|67|1873856566
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.9.118208016.0.0.39.19.7.11.182.16|67|2270403982
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.10.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.10.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.10.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.10.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.10.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.10.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.10.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.10.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.10.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.10.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.11.118208001.0.0.39.18.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.11.118208001.0.0.39.19.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.11.118208002.0.0.39.19.7.11.182.2|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.11.118208003.0.0.39.19.7.11.182.3|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.11.118208004.0.0.39.19.7.11.182.4|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.11.118208010.0.0.39.20.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.11.118208010.0.0.39.21.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.11.118208012.0.0.39.20.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.11.118208012.0.0.39.21.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.11.118208016.0.0.39.19.7.11.182.16|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.12.118208001.0.0.39.18.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.12.118208001.0.0.39.19.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.12.118208002.0.0.39.19.7.11.182.2|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.12.118208003.0.0.39.19.7.11.182.3|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.12.118208004.0.0.39.19.7.11.182.4|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.12.118208010.0.0.39.20.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.12.118208010.0.0.39.21.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.12.118208012.0.0.39.20.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.12.118208012.0.0.39.21.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.12.118208016.0.0.39.19.7.11.182.16|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.13.118208001.0.0.39.18.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.13.118208001.0.0.39.19.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.13.118208002.0.0.39.19.7.11.182.2|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.13.118208003.0.0.39.19.7.11.182.3|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.13.118208004.0.0.39.19.7.11.182.4|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.13.118208010.0.0.39.20.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.13.118208010.0.0.39.21.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.13.118208012.0.0.39.20.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.13.118208012.0.0.39.21.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.13.118208016.0.0.39.19.7.11.182.16|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.14.118208001.0.0.39.18.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.14.118208001.0.0.39.19.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.14.118208002.0.0.39.19.7.11.182.2|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.14.118208003.0.0.39.19.7.11.182.3|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.14.118208004.0.0.39.19.7.11.182.4|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.14.118208010.0.0.39.20.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.14.118208010.0.0.39.21.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.14.118208012.0.0.39.20.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.14.118208012.0.0.39.21.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.14.118208016.0.0.39.19.7.11.182.16|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.15.118208001.0.0.39.18.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.15.118208001.0.0.39.19.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.15.118208002.0.0.39.19.7.11.182.2|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.15.118208003.0.0.39.19.7.11.182.3|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.15.118208004.0.0.39.19.7.11.182.4|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.15.118208010.0.0.39.20.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.15.118208010.0.0.39.21.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.15.118208012.0.0.39.20.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.15.118208012.0.0.39.21.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.15.118208016.0.0.39.19.7.11.182.16|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.16.118208001.0.0.39.18.7.11.182.1|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.16.118208001.0.0.39.19.7.11.182.1|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.16.118208002.0.0.39.19.7.11.182.2|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.16.118208003.0.0.39.19.7.11.182.3|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.16.118208004.0.0.39.19.7.11.182.4|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.16.118208010.0.0.39.20.7.11.182.10|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.16.118208010.0.0.39.21.7.11.182.10|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.16.118208012.0.0.39.20.7.11.182.12|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.16.118208012.0.0.39.21.7.11.182.12|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.16.118208016.0.0.39.19.7.11.182.16|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.17.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.17.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.17.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.17.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.17.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.17.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.17.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.17.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.17.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.17.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.18.118208001.0.0.39.18.7.11.182.1|66|4095
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.18.118208001.0.0.39.19.7.11.182.1|66|4095
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.18.118208002.0.0.39.19.7.11.182.2|66|4095
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.18.118208003.0.0.39.19.7.11.182.3|66|4095
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.18.118208004.0.0.39.19.7.11.182.4|66|4095
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.18.118208010.0.0.39.20.7.11.182.10|66|4095
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.18.118208010.0.0.39.21.7.11.182.10|66|4095
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.18.118208012.0.0.39.20.7.11.182.12|66|4095
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.18.118208012.0.0.39.21.7.11.182.12|66|4095
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.18.118208016.0.0.39.19.7.11.182.16|66|4095
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.19.118208001.0.0.39.18.7.11.182.1|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.19.118208001.0.0.39.19.7.11.182.1|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.19.118208002.0.0.39.19.7.11.182.2|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.19.118208003.0.0.39.19.7.11.182.3|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.19.118208004.0.0.39.19.7.11.182.4|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.19.118208010.0.0.39.20.7.11.182.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.19.118208010.0.0.39.21.7.11.182.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.19.118208012.0.0.39.20.7.11.182.12|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.19.118208012.0.0.39.21.7.11.182.12|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.19.118208016.0.0.39.19.7.11.182.16|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.20.118208001.0.0.39.18.7.11.182.1|4|00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.20.118208001.0.0.39.19.7.11.182.1|4|00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.20.118208002.0.0.39.19.7.11.182.2|4|00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.20.118208003.0.0.39.19.7.11.182.3|4|00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.20.118208004.0.0.39.19.7.11.182.4|4|00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.20.118208010.0.0.39.20.7.11.182.10|4|00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.20.118208010.0.0.39.21.7.11.182.10|4|00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.20.118208012.0.0.39.20.7.11.182.12|4|00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.20.118208012.0.0.39.21.7.11.182.12|4|00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.20.118208016.0.0.39.19.7.11.182.16|4|00 00 00 00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.21.118208001.0.0.39.18.7.11.182.1|67|2330853901
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.21.118208001.0.0.39.19.7.11.182.1|67|1681103713
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.21.118208002.0.0.39.19.7.11.182.2|67|1681103724
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.21.118208003.0.0.39.19.7.11.182.3|67|1681103724
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.21.118208004.0.0.39.19.7.11.182.4|67|1884652147
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.21.118208010.0.0.39.20.7.11.182.10|67|968138094
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.21.118208010.0.0.39.21.7.11.182.10|67|1873599064
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.21.118208012.0.0.39.20.7.11.182.12|67|1355918687
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.21.118208012.0.0.39.21.7.11.182.12|67|1874051691
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.21.118208016.0.0.39.19.7.11.182.16|67|2270405613
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.22.118208001.0.0.39.18.7.11.182.1|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.22.118208001.0.0.39.19.7.11.182.1|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.22.118208002.0.0.39.19.7.11.182.2|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.22.118208003.0.0.39.19.7.11.182.3|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.22.118208004.0.0.39.19.7.11.182.4|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.22.118208010.0.0.39.20.7.11.182.10|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.22.118208010.0.0.39.21.7.11.182.10|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.22.118208012.0.0.39.20.7.11.182.12|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.22.118208012.0.0.39.21.7.11.182.12|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.22.118208016.0.0.39.19.7.11.182.16|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.23.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.23.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.23.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.23.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.23.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.23.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.23.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.23.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.23.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.23.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.24.118208001.0.0.39.18.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.24.118208001.0.0.39.19.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.24.118208002.0.0.39.19.7.11.182.2|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.24.118208003.0.0.39.19.7.11.182.3|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.24.118208004.0.0.39.19.7.11.182.4|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.24.118208010.0.0.39.20.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.24.118208010.0.0.39.21.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.24.118208012.0.0.39.20.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.24.118208012.0.0.39.21.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.24.118208016.0.0.39.19.7.11.182.16|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.25.118208001.0.0.39.18.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.25.118208001.0.0.39.19.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.25.118208002.0.0.39.19.7.11.182.2|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.25.118208003.0.0.39.19.7.11.182.3|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.25.118208004.0.0.39.19.7.11.182.4|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.25.118208010.0.0.39.20.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.25.118208010.0.0.39.21.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.25.118208012.0.0.39.20.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.25.118208012.0.0.39.21.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.25.118208016.0.0.39.19.7.11.182.16|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.26.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.26.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.26.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.26.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.26.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.26.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.26.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.26.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.26.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.26.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.27.118208001.0.0.39.18.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.27.118208001.0.0.39.19.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.27.118208002.0.0.39.19.7.11.182.2|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.27.118208003.0.0.39.19.7.11.182.3|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.27.118208004.0.0.39.19.7.11.182.4|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.27.118208010.0.0.39.20.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.27.118208010.0.0.39.21.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.27.118208012.0.0.39.20.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.27.118208012.0.0.39.21.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.27.118208016.0.0.39.19.7.11.182.16|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.28.118208001.0.0.39.18.7.11.182.1|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.28.118208001.0.0.39.19.7.11.182.1|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.28.118208002.0.0.39.19.7.11.182.2|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.28.118208003.0.0.39.19.7.11.182.3|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.28.118208004.0.0.39.19.7.11.182.4|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.28.118208010.0.0.39.20.7.11.182.10|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.28.118208010.0.0.39.21.7.11.182.10|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.28.118208012.0.0.39.20.7.11.182.12|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.28.118208012.0.0.39.21.7.11.182.12|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.28.118208016.0.0.39.19.7.11.182.16|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.29.118208001.0.0.39.18.7.11.182.1|4|60 1 2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.29.118208001.0.0.39.19.7.11.182.1|4|60 1 2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.29.118208002.0.0.39.19.7.11.182.2|4|60 1 2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.29.118208003.0.0.39.19.7.11.182.3|4|60 1 2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.29.118208004.0.0.39.19.7.11.182.4|4|60 1 2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.29.118208010.0.0.39.20.7.11.182.10|4|60 1 2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.29.118208010.0.0.39.21.7.11.182.10|4|60 1 2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.29.118208012.0.0.39.20.7.11.182.12|4|60 1 2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.29.118208012.0.0.39.21.7.11.182.12|4|60 1 2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.29.118208016.0.0.39.19.7.11.182.16|4|60 1 2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.30.118208001.0.0.39.18.7.11.182.1|4|40 1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.30.118208001.0.0.39.19.7.11.182.1|4|40 1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.30.118208002.0.0.39.19.7.11.182.2|4|40 1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.30.118208003.0.0.39.19.7.11.182.3|4|40 1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.30.118208004.0.0.39.19.7.11.182.4|4|40 1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.30.118208010.0.0.39.20.7.11.182.10|4|40 1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.30.118208010.0.0.39.21.7.11.182.10|4|40 1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.30.118208012.0.0.39.20.7.11.182.12|4|40 1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.30.118208012.0.0.39.21.7.11.182.12|4|40 1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.30.118208016.0.0.39.19.7.11.182.16|4|40 1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.31.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.31.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.31.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.31.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.31.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.31.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.31.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.31.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.31.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.31.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.32.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.32.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.32.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.32.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.32.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.32.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.32.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.32.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.32.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.32.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.33.118208001.0.0.39.18.7.11.182.1|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.33.118208001.0.0.39.19.7.11.182.1|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.33.118208002.0.0.39.19.7.11.182.2|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.33.118208003.0.0.39.19.7.11.182.3|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.33.118208004.0.0.39.19.7.11.182.4|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.33.118208010.0.0.39.20.7.11.182.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.33.118208010.0.0.39.21.7.11.182.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.33.118208012.0.0.39.20.7.11.182.12|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.33.118208012.0.0.39.21.7.11.182.12|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.33.118208016.0.0.39.19.7.11.182.16|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.34.118208001.0.0.39.18.7.11.182.1|66|4
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.34.118208001.0.0.39.19.7.11.182.1|66|4
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.34.118208002.0.0.39.19.7.11.182.2|66|4
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.34.118208003.0.0.39.19.7.11.182.3|66|4
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.34.118208004.0.0.39.19.7.11.182.4|66|4
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.34.118208010.0.0.39.20.7.11.182.10|66|4
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.34.118208010.0.0.39.21.7.11.182.10|66|4
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.34.118208012.0.0.39.20.7.11.182.12|66|4
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.34.118208012.0.0.39.21.7.11.182.12|66|4
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.34.118208016.0.0.39.19.7.11.182.16|66|4
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.35.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.35.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.35.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.35.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.35.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.35.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.35.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.35.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.35.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.35.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.36.118208001.0.0.39.18.7.11.182.1|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.36.118208001.0.0.39.19.7.11.182.1|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.36.118208002.0.0.39.19.7.11.182.2|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.36.118208003.0.0.39.19.7.11.182.3|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.36.118208004.0.0.39.19.7.11.182.4|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.36.118208010.0.0.39.20.7.11.182.10|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.36.118208010.0.0.39.21.7.11.182.10|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.36.118208012.0.0.39.20.7.11.182.12|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.36.118208012.0.0.39.21.7.11.182.12|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.36.118208016.0.0.39.19.7.11.182.16|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.37.118208001.0.0.39.18.7.11.182.1|4x|00000000
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.37.118208001.0.0.39.19.7.11.182.1|4x|00000000
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.37.118208002.0.0.39.19.7.11.182.2|4x|00000000
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.37.118208003.0.0.39.19.7.11.182.3|4x|00000000
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.37.118208004.0.0.39.19.7.11.182.4|4x|00000000
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.37.118208010.0.0.39.20.7.11.182.10|4x|00000000
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.37.118208010.0.0.39.21.7.11.182.10|4x|00000000
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.37.118208012.0.0.39.20.7.11.182.12|4x|00000000
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.37.118208012.0.0.39.21.7.11.182.12|4x|00000000
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.37.118208016.0.0.39.19.7.11.182.16|4x|00000000
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.38.118208001.0.0.39.18.7.11.182.1|2|3
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.38.118208001.0.0.39.19.7.11.182.1|2|3
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.38.118208002.0.0.39.19.7.11.182.2|2|3
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.38.118208003.0.0.39.19.7.11.182.3|2|3
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.38.118208004.0.0.39.19.7.11.182.4|2|3
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.38.118208010.0.0.39.20.7.11.182.10|2|3
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.38.118208010.0.0.39.21.7.11.182.10|2|3
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.38.118208012.0.0.39.20.7.11.182.12|2|3
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.38.118208012.0.0.39.21.7.11.182.12|2|3
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.38.118208016.0.0.39.19.7.11.182.16|2|3
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.39.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.39.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.39.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.39.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.39.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.39.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.39.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.39.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.39.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.39.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.40.118208001.0.0.39.18.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.40.118208001.0.0.39.19.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.40.118208002.0.0.39.19.7.11.182.2|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.40.118208003.0.0.39.19.7.11.182.3|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.40.118208004.0.0.39.19.7.11.182.4|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.40.118208010.0.0.39.20.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.40.118208010.0.0.39.21.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.40.118208012.0.0.39.20.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.40.118208012.0.0.39.21.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.40.118208016.0.0.39.19.7.11.182.16|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.41.118208001.0.0.39.18.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.41.118208001.0.0.39.19.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.41.118208002.0.0.39.19.7.11.182.2|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.41.118208003.0.0.39.19.7.11.182.3|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.41.118208004.0.0.39.19.7.11.182.4|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.41.118208010.0.0.39.20.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.41.118208010.0.0.39.21.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.41.118208012.0.0.39.20.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.41.118208012.0.0.39.21.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.41.118208016.0.0.39.19.7.11.182.16|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.42.118208001.0.0.39.18.7.11.182.1|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.42.118208001.0.0.39.19.7.11.182.1|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.42.118208002.0.0.39.19.7.11.182.2|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.42.118208003.0.0.39.19.7.11.182.3|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.42.118208004.0.0.39.19.7.11.182.4|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.42.118208010.0.0.39.20.7.11.182.10|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.42.118208010.0.0.39.21.7.11.182.10|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.42.118208012.0.0.39.20.7.11.182.12|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.42.118208012.0.0.39.21.7.11.182.12|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.42.118208016.0.0.39.19.7.11.182.16|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.43.118208001.0.0.39.18.7.11.182.1|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.43.118208001.0.0.39.19.7.11.182.1|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.43.118208002.0.0.39.19.7.11.182.2|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.43.118208003.0.0.39.19.7.11.182.3|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.43.118208004.0.0.39.19.7.11.182.4|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.43.118208010.0.0.39.20.7.11.182.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.43.118208010.0.0.39.21.7.11.182.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.43.118208012.0.0.39.20.7.11.182.12|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.43.118208012.0.0.39.21.7.11.182.12|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.43.118208016.0.0.39.19.7.11.182.16|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.44.118208001.0.0.39.18.7.11.182.1|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.44.118208001.0.0.39.19.7.11.182.1|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.44.118208002.0.0.39.19.7.11.182.2|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.44.118208003.0.0.39.19.7.11.182.3|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.44.118208004.0.0.39.19.7.11.182.4|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.44.118208010.0.0.39.20.7.11.182.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.44.118208010.0.0.39.21.7.11.182.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.44.118208012.0.0.39.20.7.11.182.12|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.44.118208012.0.0.39.21.7.11.182.12|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.44.118208016.0.0.39.19.7.11.182.16|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.45.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.45.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.45.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.45.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.45.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.45.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.45.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.45.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.45.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.45.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.47.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.47.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.47.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.47.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.47.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.47.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.47.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.47.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.47.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.47.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.48.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.48.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.48.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.48.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.48.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.48.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.48.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.48.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.48.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.48.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.49.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.49.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.49.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.49.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.49.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.49.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.49.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.49.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.49.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.49.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.50.118208001.0.0.39.18.7.11.182.1|66|255
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.50.118208001.0.0.39.19.7.11.182.1|66|255
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.50.118208002.0.0.39.19.7.11.182.2|66|255
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.50.118208003.0.0.39.19.7.11.182.3|66|255
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.50.118208004.0.0.39.19.7.11.182.4|66|255
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.50.118208010.0.0.39.20.7.11.182.10|66|255
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.50.118208010.0.0.39.21.7.11.182.10|66|255
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.50.118208012.0.0.39.20.7.11.182.12|66|255
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.50.118208012.0.0.39.21.7.11.182.12|66|255
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.50.118208016.0.0.39.19.7.11.182.16|66|255
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.51.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.51.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.51.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.51.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.51.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.51.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.51.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.51.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.51.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.51.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.52.118208001.0.0.39.18.7.11.182.1|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.52.118208001.0.0.39.19.7.11.182.1|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.52.118208002.0.0.39.19.7.11.182.2|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.52.118208003.0.0.39.19.7.11.182.3|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.52.118208004.0.0.39.19.7.11.182.4|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.52.118208010.0.0.39.20.7.11.182.10|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.52.118208010.0.0.39.21.7.11.182.10|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.52.118208012.0.0.39.20.7.11.182.12|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.52.118208012.0.0.39.21.7.11.182.12|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.52.118208016.0.0.39.19.7.11.182.16|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.54.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.54.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.54.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.54.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.54.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.54.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.54.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.54.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.54.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.54.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.55.118208001.0.0.39.18.7.11.182.1|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.55.118208001.0.0.39.19.7.11.182.1|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.55.118208002.0.0.39.19.7.11.182.2|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.55.118208003.0.0.39.19.7.11.182.3|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.55.118208004.0.0.39.19.7.11.182.4|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.55.118208010.0.0.39.20.7.11.182.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.55.118208010.0.0.39.21.7.11.182.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.55.118208012.0.0.39.20.7.11.182.12|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.55.118208012.0.0.39.21.7.11.182.12|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.55.118208016.0.0.39.19.7.11.182.16|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.56.118208001.0.0.39.18.7.11.182.1|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.56.118208001.0.0.39.19.7.11.182.1|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.56.118208002.0.0.39.19.7.11.182.2|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.56.118208003.0.0.39.19.7.11.182.3|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.56.118208004.0.0.39.19.7.11.182.4|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.56.118208010.0.0.39.20.7.11.182.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.56.118208010.0.0.39.21.7.11.182.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.56.118208012.0.0.39.20.7.11.182.12|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.56.118208012.0.0.39.21.7.11.182.12|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.56.118208016.0.0.39.19.7.11.182.16|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.57.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.57.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.57.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.57.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.57.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.57.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.57.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.57.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.57.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.57.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.61.118208001.0.0.39.18.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.61.118208001.0.0.39.19.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.61.118208002.0.0.39.19.7.11.182.2|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.61.118208003.0.0.39.19.7.11.182.3|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.61.118208004.0.0.39.19.7.11.182.4|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.61.118208010.0.0.39.20.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.61.118208010.0.0.39.21.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.61.118208012.0.0.39.20.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.61.118208012.0.0.39.21.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.61.118208016.0.0.39.19.7.11.182.16|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.63.118208001.0.0.39.18.7.11.182.1|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.63.118208001.0.0.39.19.7.11.182.1|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.63.118208002.0.0.39.19.7.11.182.2|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.63.118208003.0.0.39.19.7.11.182.3|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.63.118208004.0.0.39.19.7.11.182.4|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.63.118208010.0.0.39.20.7.11.182.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.63.118208010.0.0.39.21.7.11.182.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.63.118208012.0.0.39.20.7.11.182.12|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.63.118208012.0.0.39.21.7.11.182.12|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.63.118208016.0.0.39.19.7.11.182.16|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.65.118208001.0.0.39.18.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.65.118208001.0.0.39.19.7.11.182.1|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.65.118208002.0.0.39.19.7.11.182.2|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.65.118208003.0.0.39.19.7.11.182.3|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.65.118208004.0.0.39.19.7.11.182.4|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.65.118208010.0.0.39.20.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.65.118208010.0.0.39.21.7.11.182.10|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.65.118208012.0.0.39.20.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.65.118208012.0.0.39.21.7.11.182.12|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.65.118208016.0.0.39.19.7.11.182.16|66|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.67.118208001.0.0.39.18.7.11.182.1|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.67.118208001.0.0.39.19.7.11.182.1|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.67.118208002.0.0.39.19.7.11.182.2|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.67.118208003.0.0.39.19.7.11.182.3|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.67.118208004.0.0.39.19.7.11.182.4|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.67.118208010.0.0.39.20.7.11.182.10|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.67.118208010.0.0.39.21.7.11.182.10|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.67.118208012.0.0.39.20.7.11.182.12|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.67.118208012.0.0.39.21.7.11.182.12|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.67.118208016.0.0.39.19.7.11.182.16|4|00
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.68.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.68.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.68.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.68.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.68.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.68.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.68.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.68.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.68.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.68.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.69.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.69.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.69.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.69.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.69.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.69.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.69.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.69.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.69.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.69.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.70.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.70.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.70.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.70.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.70.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.70.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.70.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.70.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.70.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.70.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.73.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.73.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.73.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.73.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.73.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.73.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.73.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.73.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.73.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.73.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.74.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.74.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.74.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.74.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.74.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.74.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.74.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.74.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.74.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.74.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.76.118208001.0.0.39.18.7.11.182.1|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.76.118208001.0.0.39.19.7.11.182.1|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.76.118208002.0.0.39.19.7.11.182.2|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.76.118208003.0.0.39.19.7.11.182.3|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.76.118208004.0.0.39.19.7.11.182.4|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.76.118208010.0.0.39.20.7.11.182.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.76.118208010.0.0.39.21.7.11.182.10|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.76.118208012.0.0.39.20.7.11.182.12|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.76.118208012.0.0.39.21.7.11.182.12|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.76.118208016.0.0.39.19.7.11.182.16|4|
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.77.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.77.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.77.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.77.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.77.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.77.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.77.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.77.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.77.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.77.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.78.118208001.0.0.39.18.7.11.182.1|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.78.118208001.0.0.39.19.7.11.182.1|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.78.118208002.0.0.39.19.7.11.182.2|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.78.118208003.0.0.39.19.7.11.182.3|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.78.118208004.0.0.39.19.7.11.182.4|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.78.118208010.0.0.39.20.7.11.182.10|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.78.118208010.0.0.39.21.7.11.182.10|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.78.118208012.0.0.39.20.7.11.182.12|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.78.118208012.0.0.39.21.7.11.182.12|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.78.118208016.0.0.39.19.7.11.182.16|2|1
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.79.118208001.0.0.39.18.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.79.118208001.0.0.39.19.7.11.182.1|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.79.118208002.0.0.39.19.7.11.182.2|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.79.118208003.0.0.39.19.7.11.182.3|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.79.118208004.0.0.39.19.7.11.182.4|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.79.118208010.0.0.39.20.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.79.118208010.0.0.39.21.7.11.182.10|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.79.118208012.0.0.39.20.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.79.118208012.0.0.39.21.7.11.182.12|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.79.118208016.0.0.39.19.7.11.182.16|2|2
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.80.118208001.0.0.39.18.7.11.182.1|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.80.118208001.0.0.39.19.7.11.182.1|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.80.118208002.0.0.39.19.7.11.182.2|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.80.118208003.0.0.39.19.7.11.182.3|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.80.118208004.0.0.39.19.7.11.182.4|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.80.118208010.0.0.39.20.7.11.182.10|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.80.118208010.0.0.39.21.7.11.182.10|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.80.118208012.0.0.39.20.7.11.182.12|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.80.118208012.0.0.39.21.7.11.182.12|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.80.118208016.0.0.39.19.7.11.182.16|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.81.118208001.0.0.39.18.7.11.182.1|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.81.118208001.0.0.39.19.7.11.182.1|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.81.118208002.0.0.39.19.7.11.182.2|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.81.118208003.0.0.39.19.7.11.182.3|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.81.118208004.0.0.39.19.7.11.182.4|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.81.118208010.0.0.39.20.7.11.182.10|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.81.118208010.0.0.39.21.7.11.182.10|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.81.118208012.0.0.39.20.7.11.182.12|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.81.118208012.0.0.39.21.7.11.182.12|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.4.1.81.118208016.0.0.39.19.7.11.182.16|2|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.1.118208001.0.0.39.18.7.11.182.1|70|10921418
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.1.118208001.0.0.39.19.7.11.182.1|70|23440009
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.1.118208002.0.0.39.19.7.11.182.2|70|118738109
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.1.118208003.0.0.39.19.7.11.182.3|70|1260099
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.1.118208004.0.0.39.19.7.11.182.4|70|118360373
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.1.118208010.0.0.39.20.7.11.182.10|70|180681411423
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.1.118208010.0.0.39.21.7.11.182.10|70|157166550
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.1.118208012.0.0.39.20.7.11.182.12|70|60320060747
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.1.118208012.0.0.39.21.7.11.182.12|70|59278632
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.1.118208016.0.0.39.19.7.11.182.16|70|16217838992
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.2.118208001.0.0.39.18.7.11.182.1|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.2.118208001.0.0.39.19.7.11.182.1|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.2.118208002.0.0.39.19.7.11.182.2|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.2.118208003.0.0.39.19.7.11.182.3|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.2.118208004.0.0.39.19.7.11.182.4|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.2.118208010.0.0.39.20.7.11.182.10|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.2.118208010.0.0.39.21.7.11.182.10|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.2.118208012.0.0.39.20.7.11.182.12|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.2.118208012.0.0.39.21.7.11.182.12|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.2.118208016.0.0.39.19.7.11.182.16|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.3.118208001.0.0.39.18.7.11.182.1|70|25010173
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.3.118208001.0.0.39.19.7.11.182.1|70|43081574
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.3.118208002.0.0.39.19.7.11.182.2|70|94809135
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.3.118208003.0.0.39.19.7.11.182.3|70|904877
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.3.118208004.0.0.39.19.7.11.182.4|70|112611191
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.3.118208010.0.0.39.20.7.11.182.10|70|196610148816
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.3.118208010.0.0.39.21.7.11.182.10|70|140503814341
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.3.118208012.0.0.39.20.7.11.182.12|70|74070713278
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.3.118208012.0.0.39.21.7.11.182.12|70|126434894682
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.3.118208016.0.0.39.19.7.11.182.16|70|9377036331
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.4.118208001.0.0.39.18.7.11.182.1|70|3108152491
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.4.118208001.0.0.39.19.7.11.182.1|70|5375761401
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.4.118208002.0.0.39.19.7.11.182.2|70|11497030416
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.4.118208003.0.0.39.19.7.11.182.3|70|262962167
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.4.118208004.0.0.39.19.7.11.182.4|70|14268643820
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.4.118208010.0.0.39.20.7.11.182.10|70|205080634467432
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.4.118208010.0.0.39.21.7.11.182.10|70|153942622446859
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.4.118208012.0.0.39.20.7.11.182.12|70|74644018584588
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.4.118208012.0.0.39.21.7.11.182.12|70|122675287979227
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.4.118208016.0.0.39.19.7.11.182.16|70|1611865356827
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.5.118208001.0.0.39.18.7.11.182.1|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.5.118208001.0.0.39.19.7.11.182.1|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.5.118208002.0.0.39.19.7.11.182.2|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.5.118208003.0.0.39.19.7.11.182.3|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.5.118208004.0.0.39.19.7.11.182.4|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.5.118208010.0.0.39.20.7.11.182.10|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.5.118208010.0.0.39.21.7.11.182.10|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.5.118208012.0.0.39.20.7.11.182.12|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.5.118208012.0.0.39.21.7.11.182.12|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.5.118208016.0.0.39.19.7.11.182.16|66|1
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.6.118208001.0.0.39.18.7.11.182.1|70|2565706678
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.6.118208001.0.0.39.19.7.11.182.1|70|5652482196
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.6.118208002.0.0.39.19.7.11.182.2|70|27713461538
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.6.118208003.0.0.39.19.7.11.182.3|70|190952114
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.6.118208004.0.0.39.19.7.11.182.4|70|24567445373
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.6.118208010.0.0.39.20.7.11.182.10|70|172681948437626
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.6.118208010.0.0.39.21.7.11.182.10|70|22598886838
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.6.118208012.0.0.39.20.7.11.182.12|70|81978018332493
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.6.118208012.0.0.39.21.7.11.182.12|70|6624642623
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.6.118208016.0.0.39.19.7.11.182.16|70|21668561559516
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.7.118208001.0.0.39.18.7.11.182.1|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.7.118208001.0.0.39.19.7.11.182.1|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.7.118208002.0.0.39.19.7.11.182.2|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.7.118208003.0.0.39.19.7.11.182.3|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.7.118208004.0.0.39.19.7.11.182.4|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.7.118208010.0.0.39.20.7.11.182.10|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.7.118208010.0.0.39.21.7.11.182.10|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.7.118208012.0.0.39.20.7.11.182.12|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.7.118208012.0.0.39.21.7.11.182.12|70|0
+1.3.6.1.4.1.6527.3.1.2.4.4.5.1.7.118208016.0.0.39.19.7.11.182.16|70|0
1.3.6.1.4.1.6527.3.1.2.6.1.1.2.1.1|2|1
1.3.6.1.4.1.6527.3.1.2.6.1.1.2.1.2|2|1
1.3.6.1.4.1.6527.3.1.2.6.1.1.2.1.3|2|1
@@ -1993,11 +4554,11 @@
1.3.6.1.4.1.6527.3.1.2.6.1.1.3.1.6|67|934176865
1.3.6.1.4.1.6527.3.1.2.6.1.1.3.1.7|67|1192459707
1.3.6.1.4.1.6527.3.1.2.6.1.1.4.1.1|4|l-to_test
-1.3.6.1.4.1.6527.3.1.2.6.1.1.4.1.2|4|l-to_goe-0-nokia-sw-b
-1.3.6.1.4.1.6527.3.1.2.6.1.1.4.1.3|4|l-to_ber-0-nokia-sw-a
-1.3.6.1.4.1.6527.3.1.2.6.1.1.4.1.5|4|l-ks-0-nokia-sw-a
-1.3.6.1.4.1.6527.3.1.2.6.1.1.4.1.6|4|l-to_goe-0-bng-a
-1.3.6.1.4.1.6527.3.1.2.6.1.1.4.1.7|4|l-to_goe-0-bng-b
+1.3.6.1.4.1.6527.3.1.2.6.1.1.4.1.2|4|l-to_b
+1.3.6.1.4.1.6527.3.1.2.6.1.1.4.1.3|4|l-to_a
+1.3.6.1.4.1.6527.3.1.2.6.1.1.4.1.5|4|l-ks-a
+1.3.6.1.4.1.6527.3.1.2.6.1.1.4.1.6|4|l-to_c
+1.3.6.1.4.1.6527.3.1.2.6.1.1.4.1.7|4|l-to_d
1.3.6.1.4.1.6527.3.1.2.6.1.1.5.1.1|2|2
1.3.6.1.4.1.6527.3.1.2.6.1.1.5.1.2|2|2
1.3.6.1.4.1.6527.3.1.2.6.1.1.5.1.3|2|2