diff --git a/LibreNMS/OS/Teldat.php b/LibreNMS/OS/Teldat.php new file mode 100644 index 0000000000..8ea15b8417 --- /dev/null +++ b/LibreNMS/OS/Teldat.php @@ -0,0 +1,309 @@ +. + * + * @link https://www.librenms.org + * + * @copyright 2021 Antonio Pedro Santos + * @author Antonio Pedro Santos + */ + +namespace LibreNMS\OS; + +use Illuminate\Support\Str; +use LibreNMS\Device\WirelessSensor; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessCellDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessClientsDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessRsrpDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessRsrqDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessRssiDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessSinrDiscovery; +use LibreNMS\OS; + +class Teldat extends OS implements + WirelessCellDiscovery, + WirelessClientsDiscovery, + WirelessRssiDiscovery, + WirelessRsrqDiscovery, + WirelessRsrpDiscovery, + WirelessSinrDiscovery +{ + /** + * Return Cellular Short Interface Name. + * + * @param string $ifName + * @param int $ifIndex + * @return string with Short Interface Name + */ + public function shortIfName($ifName, $ifIndex) + { + $device = ($ifName == '' ? strval($ifIndex) : preg_replace('/cellular/', 'Ce', $ifName)); + + return $device; + } + + /** + * @return array Sensors + */ + public function discoverWirelessClients() + { + $sensors = []; + + // telProdNpMonInterfWlanBSSCurrent :: Count of current associated stations + $data = snmpwalk_cache_oid($this->getDeviceArray(), 'telProdNpMonInterfWlanBSSCurrent', [], 'TELDAT-MON-INTERF-WLAN-MIB'); + + if (! empty($data)) { + $ifNames = $this->getCacheByIndex('ifName', 'IF-MIB'); + $ifOperStatuses = $this->getCacheByIndex('ifOperStatus', 'IF-MIB'); + + foreach ($data as $index => $entry) { + if (Str::startsWith($ifNames[$index], 'wlan') && $ifOperStatuses[$index] == 'up') { + $sensors[] = new WirelessSensor( + 'clients', + $this->getDeviceId(), + ".1.3.6.1.4.1.2007.4.1.2.2.2.24.2.1.23.$index", + 'teldat', + $index, + $ifNames[$index], + $entry['telProdNpMonInterfWlanBSSCurrent'], + 1, + 1, + 'sum', + null, + null, + 40, + null, + 30, + $index, + null + ); + } + } + } + + return $sensors; + } + + /** + * teldatCellularStateMobileSignalQuality = .1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10 = "Cellular mobile reception signal quality (+CSQ)." + * + * Discover wireless RSSI (Received Signal Strength Indicator). This is in dBm. Type is rssi. + * Returns an array of LibreNMS\Device\Sensor objects that have been discovered + * + * @return array + */ + public function discoverWirelessRssi() + { + $sensors = []; + + $data = snmpwalk_cache_oid($this->getDeviceArray(), 'teldatCellularStateMobileSignalQuality', [], 'TELDAT-MON-INTERF-CELLULAR-MIB'); + + if (! empty($data)) { + $ifNames = $this->getCacheByIndex('ifName', 'IF-MIB'); + $ifOperStatuses = $this->getCacheByIndex('ifOperStatus', 'IF-MIB'); + + foreach ($data as $index => $entry) { + if (Str::startsWith($ifNames[$index], 'cellular') && $ifOperStatuses[$index] == 'up') { + $sensors[] = new WirelessSensor( + 'rssi', + $this->getDeviceId(), + '.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.' . $index, + 'teldat', + $index, + 'RSSI: ' . $this->shortIfName($ifNames[$index], $index), + $entry['teldatCellularStateMobileSignalQuality'] + ); + } + } + } + + return $sensors; + } + + /** + * teldatCellularStateMobileRxSINR = .1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24 = "Cellular mobile signal versus noise ratio (SINR)." + * + * Discover wireless SINR (Signal-to-Interference-plus-Noise Ratio). This is in dB. Type is sinr. + * Returns an array of LibreNMS\Device\Sensor objects that have been discovered + * + * @return array + */ + public function discoverWirelessSinr() + { + $sensors = []; + + $data = snmpwalk_cache_oid($this->getDeviceArray(), 'teldatCellularStateMobileRxSINR', [], 'TELDAT-MON-INTERF-CELLULAR-MIB'); + + if (! empty($data)) { + $ifNames = $this->getCacheByIndex('ifName', 'IF-MIB'); + $ifOperStatuses = $this->getCacheByIndex('ifOperStatus', 'IF-MIB'); + + foreach ($data as $index => $entry) { + if (Str::startsWith($ifNames[$index], 'cellular') && $ifOperStatuses[$index] == 'up') { + $sensors[] = new WirelessSensor( + 'sinr', + $this->getDeviceId(), + '.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.' . $index, + 'teldat', + $index, + 'SINR: ' . $this->shortIfName($ifNames[$index], $index), + $entry['teldatCellularStateMobileRxSINR'] + ); + } + } + } + + return $sensors; + } + + /** + * teldatCellularStateMobileRxRSRQ = .1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23 = "Cellular mobile reference signal received quality (RSRQ)." + * + * Discover wireless RSRQ (Reference Signal Received Quality). This is in dB. Type is rsrq. + * Returns an array of LibreNMS\Device\Sensor objects that have been discovered + * + * @return array + */ + public function discoverWirelessRsrq() + { + $sensors = []; + + $data = snmpwalk_cache_oid($this->getDeviceArray(), 'teldatCellularStateMobileRxRSRQ', [], 'TELDAT-MON-INTERF-CELLULAR-MIB'); + + if (! empty($data)) { + $ifNames = $this->getCacheByIndex('ifName', 'IF-MIB'); + $ifOperStatuses = $this->getCacheByIndex('ifOperStatus', 'IF-MIB'); + + foreach ($data as $index => $entry) { + if (Str::startsWith($ifNames[$index], 'cellular') && $ifOperStatuses[$index] == 'up') { + $sensors[] = new WirelessSensor( + 'rsrq', + $this->getDeviceId(), + '.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.' . $index, + 'teldat', + $index, + 'RSRQ: ' . $this->shortIfName($ifNames[$index], $index), + $entry['teldatCellularStateMobileRxRSRQ'] + ); + } + } + } + + return $sensors; + } + + /** + * teldatCellularStateMobileRxRSRP = .1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22 = "Cellular mobile reference symbol received power (RSRP)." + * + * Discover wireless RSRP (Reference Signals Received Power). This is in dBm. Type is rsrp. + * Returns an array of LibreNMS\Device\Sensor objects that have been discovered + * + * @return array + */ + public function discoverWirelessRsrp() + { + $sensors = []; + + $data = snmpwalk_cache_oid($this->getDeviceArray(), 'teldatCellularStateMobileRxRSRP', [], 'TELDAT-MON-INTERF-CELLULAR-MIB'); + + if (! empty($data)) { + $ifNames = $this->getCacheByIndex('ifName', 'IF-MIB'); + $ifOperStatuses = $this->getCacheByIndex('ifOperStatus', 'IF-MIB'); + + foreach ($data as $index => $entry) { + if (Str::startsWith($ifNames[$index], 'cellular') && $ifOperStatuses[$index] == 'up') { + $sensors[] = new WirelessSensor( + 'rsrp', + $this->getDeviceId(), + '.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.' . $index, + 'teldat', + $index, + 'RSRP: ' . $this->shortIfName($ifNames[$index], $index), + $entry['teldatCellularStateMobileRxRSRP'] + ); + } + } + } + + return $sensors; + } + + /** + * teldatCellularStateMobileCellId = .1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5 = "Cellular mobile used cell id (+CGREG)." + * teldatCellularStateMobileLTECellId = .1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25 = "Cellular mobile used LTE cell id." + * + * Discover wireless Cellular Cell Id. This is in cell number. Type is cellid. + * Returns an array of LibreNMS\Device\Sensor objects that have been discovered + * + * @return array + */ + public function discoverWirelessCell() + { + $sensors = []; + $ifNames = []; + $ifOperStatuses = []; + + $data = snmpwalk_cache_oid($this->getDeviceArray(), 'teldatCellularStateMobileCellId', [], 'TELDAT-MON-INTERF-CELLULAR-MIB'); + + if (! empty($data)) { + $ifNames = $this->getCacheByIndex('ifName', 'IF-MIB'); + $ifOperStatuses = $this->getCacheByIndex('ifOperStatus', 'IF-MIB'); + + foreach ($data as $index => $entry) { + if (Str::startsWith($ifNames[$index], 'cellular') && $ifOperStatuses[$index] == 'up') { + $sensors[] = new WirelessSensor( + 'cell', + $this->getDeviceId(), + '.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.' . $index, + 'teldat', + $index, + 'CellID: ' . $this->shortIfName($ifNames[$index], $index), + $entry['teldatCellularStateMobileCellId'] + ); + } + } + } + + $data = snmpwalk_cache_oid($this->getDeviceArray(), 'teldatCellularStateMobileLTECellId', [], 'TELDAT-MON-INTERF-CELLULAR-MIB'); + + if (! empty($data)) { + if (empty($ifNames)) { + $ifNames = $this->getCacheByIndex('ifName', 'IF-MIB'); + } + if (empty($ifOperStatuses)) { + $ifOperStatuses = $this->getCacheByIndex('ifOperStatus', 'IF-MIB'); + } + + foreach ($data as $index => $entry) { + if (Str::startsWith($ifNames[$index], 'cellular') && $ifOperStatuses[$index] == 'up') { + $sensors[] = new WirelessSensor( + 'cell', + $this->getDeviceId(), + '.1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.' . $index, + 'teldat', + (10 * count($sensors)) + $index, + 'LteCellID: ' . $this->shortIfName($ifNames[$index], $index), + $entry['teldatCellularStateMobileLTECellId'] + ); + } + } + } + + return $sensors; + } +} diff --git a/mibs/teldat/TELDAT-MON-INTERF-CELLULAR-MIB b/mibs/teldat/TELDAT-MON-INTERF-CELLULAR-MIB new file mode 100644 index 0000000000..f4e5196141 --- /dev/null +++ b/mibs/teldat/TELDAT-MON-INTERF-CELLULAR-MIB @@ -0,0 +1,790 @@ + + + -- Teldat, S.A. + + -- Parque Tecnol�gico de Madrid + + -- 28760, Tres Cantos (Madrid) + + -- Tlf: +34-918076565 + + -- Fax: +34-918076521 + + -- e-mail: id@teldat.com + + + -- MIB privada de Teldat + + -- Monitorizaci�n del interfaz CELLULAR + + + -- Historial: + -- 28-06-18 P. Alonso DR1042 eNB parameter as cellid when LTE. + -- 20-04-18 P. Alonso DR1042 New LTE eNB parameter. + -- 21-03-18 Benjamin G. DR1007 Dual-SIM IMSI information availability. + -- 22-01-18 P. Alonso ER#1254 New LTE cell ID parameter. + -- 01-02-17 fmiguel LTE SINR added to cellular MIB and monitoring + -- 27-07-16 P. Alonso XH 5175 cellular interface statistics for NIC. + -- 13-06-16 N. Moro DR 559. New SNMP tables: teldatCellularProfDialTable + -- and teldatCellularRecChangesTable + -- 25-02-16 J. Rodrigo DR-204. Sierra Wireless MC74xx support. + -- 07-02-14 M.A. Pastor XH 3523. Errors with HP Openview 9.20 + -- 1.6 11-01-13 E. Amorena XH 2610. MIBs compilation. + -- 1.5 28-06-12 Thales Compilation error solved + -- 1.4 10-02-12 FDMB Throughput included + -- 1.3 26-06-08 FDMB Incluido SIM ICC + -- 1.2 19-07-07 M.A. Berrojo Estado del interfaz es enumeracion + -- 1.1 18-07-07 M.A. Berrojo Se agregan estadisticos de nivel 3 + -- correspondientes a tr�fico intercambiado + -- por radio + -- 1.0 08-05-07 M.A. Berrojo Implementaci�n inicial +-------------------------------------------------------------------------------- + +TELDAT-MON-INTERF-CELLULAR-MIB + + DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE + FROM RFC-1212 + DisplayString + FROM RFC1213-MIB + telProdNpMonInterfRouter + FROM TELDAT-SW-STRUCTURE-MIB; + + +-- Monitorizaci�n privada del interfaz CELLULAR + +telProdNpMonInterfCellular OBJECT IDENTIFIER ::= { telProdNpMonInterfRouter 18 } + + +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +-- Global Cellular monitoring variables +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = + + +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +-- Global Info Cellular monitoring variables +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = + +teldatCellularInfoInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF TeldatCellularInfoInterfaceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of information available for Cellular interfaces. + Each row represents an interface" + ::= { telProdNpMonInterfCellular 1 } + +teldatCellularInfoInterfaceEntry OBJECT-TYPE + SYNTAX TeldatCellularInfoInterfaceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A base list of objects that are information about a Cellular interface. + The inex is the number of the interface" + INDEX { teldatCellularInfoInterfaceIndex } + ::= { teldatCellularInfoInterfaceTable 1 } + +TeldatCellularInfoInterfaceEntry ::= SEQUENCE +{ + teldatCellularInfoInterfaceIndex INTEGER, + teldatCellularInfoInterfaceModuleManufacturer DisplayString, + teldatCellularInfoInterfaceModuleModel DisplayString, + teldatCellularInfoInterfaceModuleFirmware DisplayString, + teldatCellularInfoInterfaceModuleIMEI DisplayString, + teldatCellularInfoInterfaceModuleIMSI DisplayString, + teldatCellularInfoInterfaceSIMId DisplayString, + teldatCellularInfoInterfaceSIMIcc DisplayString +} + +teldatCellularInfoInterfaceIndex OBJECT-TYPE + SYNTAX INTEGER(1 .. 255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Interface index" + ::= { teldatCellularInfoInterfaceEntry 1 } + +teldatCellularInfoInterfaceModuleManufacturer OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular module manufacturer." + ::={ teldatCellularInfoInterfaceEntry 2 } + +teldatCellularInfoInterfaceModuleModel OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular module model." + ::={ teldatCellularInfoInterfaceEntry 3 } + +teldatCellularInfoInterfaceModuleFirmware OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular module firmware release." + ::={ teldatCellularInfoInterfaceEntry 4 } + +teldatCellularInfoInterfaceModuleIMEI OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular module IMEI." + ::={ teldatCellularInfoInterfaceEntry 5 } + +teldatCellularInfoInterfaceModuleIMSI OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular module IMSI." + ::={ teldatCellularInfoInterfaceEntry 6 } + +teldatCellularInfoInterfaceSIMId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular active SIM ID." + ::={ teldatCellularInfoInterfaceEntry 7 } + +teldatCellularInfoInterfaceSIMIcc OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular active SIM ICC." + ::={ teldatCellularInfoInterfaceEntry 8 } + + +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +-- Global Stats group Cellular monitoring variables +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = + +teldatCellularStatObject OBJECT IDENTIFIER ::= { telProdNpMonInterfCellular 3 } + +-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +-- Cellular State Table, interface variables +-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +teldatCellularStateInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF TeldatCellularStateInterfaceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Cellular interface state information." + ::= { teldatCellularStatObject 1 } + +teldatCellularStateInterfaceEntry OBJECT-TYPE + SYNTAX TeldatCellularStateInterfaceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A base list of objects that are interface state information." + INDEX { teldatCellularStateInterfaceIndex} + ::= { teldatCellularStateInterfaceTable 1 } + +TeldatCellularStateInterfaceEntry ::= SEQUENCE +{ + teldatCellularStateInterfaceIndex INTEGER, + teldatCellularStateInterfaceState DisplayString, + teldatCellularStateInterfaceDropPing INTEGER, + teldatCellularStateInterfaceDropTrace INTEGER, + teldatCellularStateInterfaceDropTraffic INTEGER, + teldatCellularStateInterfaceTConnTime INTEGER, + teldatCellularStateInterfaceCConnTime INTEGER, + teldatCellularStateInterfaceCurDial DisplayString, + teldatCellularStateInterfaceNCall INTEGER, + teldatCellularStateInterfaceDestination DisplayString, + teldatCellularStateInterfaceTime2Sp INTEGER +} + +teldatCellularStateInterfaceIndex OBJECT-TYPE + SYNTAX INTEGER(1 .. 255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular Interface index." + ::={ teldatCellularStateInterfaceEntry 1 } + +teldatCellularStateInterfaceState OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Call state." + ::={ teldatCellularStateInterfaceEntry 2 } + +teldatCellularStateInterfaceDropPing OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of calls dropped due to ping supervision." + ::={ teldatCellularStateInterfaceEntry 3 } + +teldatCellularStateInterfaceDropTrace OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of calls dropped due to traceroute supervision." + ::={ teldatCellularStateInterfaceEntry 4 } + +teldatCellularStateInterfaceDropTraffic OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of calls dropped due to traffic supervision." + ::={ teldatCellularStateInterfaceEntry 5 } + +teldatCellularStateInterfaceTConnTime OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total connection time ." + ::={ teldatCellularStateInterfaceEntry 6 } + +teldatCellularStateInterfaceCConnTime OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Current connection time." + ::={ teldatCellularStateInterfaceEntry 7 } + +teldatCellularStateInterfaceCurDial OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Current dial-profile used." + ::={ teldatCellularStateInterfaceEntry 8 } + +teldatCellularStateInterfaceNCall OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of processed calls." + ::={ teldatCellularStateInterfaceEntry 9 } + +teldatCellularStateInterfaceDestination OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Connection destination." + ::={ teldatCellularStateInterfaceEntry 10 } + +teldatCellularStateInterfaceTime2Sp OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Time to establish the call." + ::={ teldatCellularStateInterfaceEntry 11 } + + +-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +-- Cellular State Table, Mobile variables +-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +teldatCellularStateMobileTable OBJECT-TYPE + SYNTAX SEQUENCE OF TeldatCellularStateMobileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Cellular mobile state information." + ::= { teldatCellularStatObject 2 } + +teldatCellularStateMobileEntry OBJECT-TYPE + SYNTAX TeldatCellularStateMobileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A base list of objects that are mobile state information." + INDEX { teldatCellularStateMobileIndex } + ::= { teldatCellularStateMobileTable 1 } + +TeldatCellularStateMobileEntry ::= SEQUENCE +{ + teldatCellularStateMobileIndex INTEGER, + teldatCellularStateMobileRegistrationState INTEGER, + teldatCellularStateMobilePublicLandMobileNtwCode INTEGER, + teldatCellularStateMobileCellLocationAreaCode INTEGER, + teldatCellularStateMobileCellId INTEGER, + teldatCellularStateMobileRadioTechnology DisplayString, + teldatCellularStateMobileRadioBand DisplayString, + teldatCellularStateMobileRxSignalCodePwr INTEGER, + teldatCellularStateMobileEnergyChipByPwrdnsty INTEGER, + teldatCellularStateMobileSignalQuality INTEGER, + teldatCellularStateMobileTemperature INTEGER, + teldatCellularStateMobileRxPackets INTEGER, + teldatCellularStateMobileRxBytes INTEGER, + teldatCellularStateMobileTxPackets INTEGER, + teldatCellularStateMobileTxBytes INTEGER, + teldatCellularStateMobileRxBpsLast1s INTEGER, + teldatCellularStateMobileTxBpsLast1s INTEGER, + teldatCellularStateMobileRxBpsLast1m INTEGER, + teldatCellularStateMobileTxBpsLast1m INTEGER, + teldatCellularStateMobileRxBpsLast5m INTEGER, + teldatCellularStateMobileTxBpsLast5m INTEGER, + teldatCellularStateMobileRxRSRP INTEGER, + teldatCellularStateMobileRxRSRQ INTEGER, + teldatCellularStateMobileRxSINR INTEGER, + teldatCellularStateMobileLTECellId INTEGER +} + +teldatCellularStateMobileIndex OBJECT-TYPE + SYNTAX INTEGER(1 .. 255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular mobile state index." + ::={ teldatCellularStateMobileEntry 1 } + +teldatCellularStateMobileRegistrationState OBJECT-TYPE + SYNTAX INTEGER { + searching(0), + home-network(1), + attaching(2), + denied(3), + unknown(4), + roaming(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular mobile registration state ()." + ::={ teldatCellularStateMobileEntry 2 } + +teldatCellularStateMobilePublicLandMobileNtwCode OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Public land mobile network used (+COPS)." + ::={ teldatCellularStateMobileEntry 3 } + + +teldatCellularStateMobileCellLocationAreaCode OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular mobile cell location area code (+CGREG)." + ::={ teldatCellularStateMobileEntry 4 } + +teldatCellularStateMobileCellId OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular mobile used cell id (+CGREG)." + ::={ teldatCellularStateMobileEntry 5 } + + +teldatCellularStateMobileRadioTechnology OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular mobile current radio access tecnology used (!GETRAT)." + ::={ teldatCellularStateMobileEntry 6 } + +teldatCellularStateMobileRadioBand OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular mobile current active band (!GETBAND)." + ::={ teldatCellularStateMobileEntry 7 } + + +teldatCellularStateMobileRxSignalCodePwr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular mobile received signal code power (RSCP)." + ::={ teldatCellularStateMobileEntry 8 } + +teldatCellularStateMobileEnergyChipByPwrdnsty OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular mobile total energy per chip per power density (EcNo)." + ::={ teldatCellularStateMobileEntry 9 } + +teldatCellularStateMobileSignalQuality OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular mobile reception signal quality (+CSQ)." + ::={ teldatCellularStateMobileEntry 10 } + + +teldatCellularStateMobileTemperature OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular mobile temperature (!PCTEMP)." + ::={ teldatCellularStateMobileEntry 11 } + +teldatCellularStateMobileRxPackets OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of data packtes received by the radio interface" + ::={ teldatCellularStateMobileEntry 12 } + +teldatCellularStateMobileRxBytes OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of data bytes received by the radio interface" + ::={ teldatCellularStateMobileEntry 13 } + +teldatCellularStateMobileTxPackets OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of data packtes sent by the radio interface" + ::={ teldatCellularStateMobileEntry 14 } + +teldatCellularStateMobileTxBytes OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of data packtes sent by the radio interface" + ::={ teldatCellularStateMobileEntry 15 } + +teldatCellularStateMobileRxBpsLast1s OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Rx througput measured in the last second in bps" + ::={ teldatCellularStateMobileEntry 16 } + +teldatCellularStateMobileTxBpsLast1s OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Tx througput measured in the last second in bps" + ::={ teldatCellularStateMobileEntry 17 } + +teldatCellularStateMobileRxBpsLast1m OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Rx througput measured in the last minute in bps" + ::={ teldatCellularStateMobileEntry 18 } + +teldatCellularStateMobileTxBpsLast1m OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Tx througput measured in the last minute in bps" + ::={ teldatCellularStateMobileEntry 19 } + +teldatCellularStateMobileRxBpsLast5m OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Rx througput measured in the last five minutes in bps" + ::={ teldatCellularStateMobileEntry 20 } + +teldatCellularStateMobileTxBpsLast5m OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Tx througput measured in the last five minutes in bps" + ::={ teldatCellularStateMobileEntry 21 } + + +teldatCellularStateMobileRxRSRP OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular mobile reference symbol received power (RSRP)." + ::={ teldatCellularStateMobileEntry 22 } + + +teldatCellularStateMobileRxRSRQ OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular mobile reference signal received quality (RSRQ)." + ::={ teldatCellularStateMobileEntry 23 } + +teldatCellularStateMobileRxSINR OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular mobile signal versus noise ratio (SINR)." + ::={ teldatCellularStateMobileEntry 24 } + +teldatCellularStateMobileLTECellId OBJECT-TYPE + SYNTAX Gauge32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular mobile used LTE cell id." + ::={ teldatCellularStateMobileEntry 25 } + + +-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +-- Cellular SIM Management Table, +-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +teldatCellularSIMMngTable OBJECT-TYPE + SYNTAX SEQUENCE OF TeldatCellularSIMMngEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Cellular SIM Management information." + ::= { teldatCellularStatObject 3 } + +teldatCellularSIMMngEntry OBJECT-TYPE + SYNTAX TeldatCellularSIMMngEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A base list of objects that are sim management information." + INDEX { teldatCellularSIMMngIndex } + ::= { teldatCellularSIMMngTable 1 } + +TeldatCellularSIMMngEntry ::= SEQUENCE +{ + teldatCellularSIMMngIndex INTEGER, + teldatCellularSIMMngCurrentSIMSocket INTEGER, + teldatCellularSIMMngMainSIMSocket INTEGER, + teldatCellularSIMMngSupervisionSIMSocket INTEGER, + teldatCellularSIMMngSIMImsiInfoSocket1 DisplayString, + teldatCellularSIMMngSIMIdInfoSocket1 DisplayString, + teldatCellularSIMMngSIMImsiInfoSocket2 DisplayString, + teldatCellularSIMMngSIMIdInfoSocket2 DisplayString +} + +teldatCellularSIMMngIndex OBJECT-TYPE + SYNTAX INTEGER(1 .. 255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cellular mobile state index." + ::={ teldatCellularSIMMngEntry 1 } + +teldatCellularSIMMngCurrentSIMSocket OBJECT-TYPE + SYNTAX INTEGER { + external-socket1(0), + internal-socket2(1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Current SIM Socket." + ::={ teldatCellularSIMMngEntry 2 } + +teldatCellularSIMMngMainSIMSocket OBJECT-TYPE + SYNTAX INTEGER { + external-socket1(0), + internal-socket2(1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Main SIM Socket." + ::={ teldatCellularSIMMngEntry 3 } + +teldatCellularSIMMngSupervisionSIMSocket OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Supervision SIM Socket state." + ::={ teldatCellularSIMMngEntry 4 } + +teldatCellularSIMMngSIMImsiInfoSocket1 OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IMSI of the SIM inserted in Socket1" + ::={ teldatCellularSIMMngEntry 5 } + +teldatCellularSIMMngSIMIdInfoSocket1 OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "SIM ID of the SIM inserted in Socket1" + ::={ teldatCellularSIMMngEntry 6 } + +teldatCellularSIMMngSIMImsiInfoSocket2 OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IMSI of the SIM inserted in Socket2" + ::={ teldatCellularSIMMngEntry 7 } + +teldatCellularSIMMngSIMIdInfoSocket2 OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "SIM ID of the SIM inserted in Socket2" + ::={ teldatCellularSIMMngEntry 8 } + + +-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +-- Cellular Profile Dial Table, +-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +teldatCellularProfDialTable OBJECT-TYPE + SYNTAX SEQUENCE OF TeldatCellularProfDialEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Cellular Dial Profile information." + ::= { teldatCellularStatObject 4 } + +teldatCellularProfDialEntry OBJECT-TYPE + SYNTAX TeldatCellularProfDialEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of objects that show Dial Profile information" + INDEX { teldatCellularProfDialIfcIndex } + ::= { teldatCellularProfDialTable 1 } + +TeldatCellularProfDialEntry ::= SEQUENCE +{ + teldatCellularProfDialIfcIndex INTEGER, + teldatCellularProfDialName1 DisplayString, + teldatCellularProfDialAPN1 DisplayString, + teldatCellularProfDialName2 DisplayString, + teldatCellularProfDialAPN2 DisplayString +} + +teldatCellularProfDialIfcIndex OBJECT-TYPE + SYNTAX INTEGER(1 .. 255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Interface index." + ::={ teldatCellularProfDialEntry 1 } + +teldatCellularProfDialName1 OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Dial Profile Name(1) associated to cellular interface." + ::={ teldatCellularProfDialEntry 2 } + +teldatCellularProfDialAPN1 OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Access Point Name(1) associated to cellular interface." + ::={ teldatCellularProfDialEntry 3 } + +teldatCellularProfDialName2 OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Dial Profile Name(2) associated to cellular interface." + ::={ teldatCellularProfDialEntry 4 } + +teldatCellularProfDialAPN2 OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Access Point Name(2) associated to cellular interface." + ::={ teldatCellularProfDialEntry 5 } + +-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +-- Cellular Record Changes Table, +-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + +teldatCellularRecChangesTable OBJECT-TYPE + SYNTAX SEQUENCE OF TeldatCellularRecChangesEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Cellular record-changes information." + ::= { teldatCellularStatObject 5 } + +teldatCellularRecChangesEntry OBJECT-TYPE + SYNTAX TeldatCellularRecChangesEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of objects that show information about cellular record-changes" + INDEX { teldatCellularRecChangesIfcIndex } + ::= { teldatCellularRecChangesTable 1 } + +TeldatCellularRecChangesEntry ::= SEQUENCE +{ + teldatCellularRecChangesIfcIndex INTEGER, + teldatCellularRecChangesPLMNTimeStamp DisplayString, + teldatCellularRecChangesPLMNCode DisplayString +} + +teldatCellularRecChangesIfcIndex OBJECT-TYPE + SYNTAX INTEGER(1 .. 255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Interface index." + ::={ teldatCellularRecChangesEntry 1 } + +teldatCellularRecChangesPLMNTimeStamp OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Display the timestamp of the latest change of Public Land Mobile Network (PLMN) code." + ::={ teldatCellularRecChangesEntry 2 } + +teldatCellularRecChangesPLMNCode OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Display the latest change of Public Land Mobile Network (PLMN) code." + ::={ teldatCellularRecChangesEntry 3 } + +END diff --git a/mibs/teldat/TELDAT-MON-INTERF-WLAN-MIB b/mibs/teldat/TELDAT-MON-INTERF-WLAN-MIB new file mode 100644 index 0000000000..3d7610b7dc --- /dev/null +++ b/mibs/teldat/TELDAT-MON-INTERF-WLAN-MIB @@ -0,0 +1,1147 @@ + + + -- Teldat, S.A. + + -- Parque Tecnológico de Madrid + + -- 28760, Tres Cantos (Madrid) + + -- Tlf: +34-918076565 + + -- Fax: +34-918076521 + + -- e-mail: id@teldat.com + + + -- Teldat private MIB + + -- WLAN interface monitoring + + + -- History: + -- 02-11-15 P. Nogueira Client table + -- 19/05/14 Fernando Hernández XH 3740. WLAN Monitoring MIB +-------------------------------------------------------------------------------- + +TELDAT-MON-INTERF-WLAN-MIB + + DEFINITIONS ::= BEGIN + +IMPORTS + OBJECT-TYPE + FROM RFC-1212 + MacAddress, DisplayString, TEXTUAL-CONVENTION + FROM SNMPv2-TC + telProdNpMonInterfRouter + FROM TELDAT-SW-STRUCTURE-MIB; + +-- ********************************************************************** +-- * Textual conventions +-- ********************************************************************** + WlanRSSI ::= TEXTUAL-CONVENTION + STATUS mandatory + DESCRIPTION + "This type is used to represent receiver input levels in dBm." + SYNTAX INTEGER (-110..0) + + WlanRate ::= TEXTUAL-CONVENTION + STATUS mandatory + DESCRIPTION + "This type is used to represent WLAN data rates in 500 Kbps units." + SYNTAX INTEGER (0..600) + +-- Private monitoring of WLAN interface + +telProdNpMonInterfWlan OBJECT IDENTIFIER ::= { telProdNpMonInterfRouter 24 } + + +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +-- Radio table +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = + +telProdNpMonInterfWlanRadioTable OBJECT-TYPE + SYNTAX SEQUENCE OF TelProdNpMonInterfWlanRadioEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The telProdNpMonInterfWlanRadioTable contains information relating to the + interfaces available on the system. Each entry corresponds to + an available WLAN interface. Entries cannot be added or + deleted by the user. + + Creating entries: Entries are created by the system + automatically when a new WLAN module is installed. + + Deleting entries: Entries are removed by the system + after the appropriate WLAN module is removed." + ::= { telProdNpMonInterfWlan 1 } + +telProdNpMonInterfWlanRadioEntry OBJECT-TYPE + SYNTAX TelProdNpMonInterfWlanRadioEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A base list of objects that are information about Wlan radio data. + The index is the number of the interface" + INDEX { telProdNpMonInterfWlanRadioIfIndex } + ::= { telProdNpMonInterfWlanRadioTable 1 } + +TelProdNpMonInterfWlanRadioEntry ::= SEQUENCE +{ + telProdNpMonInterfWlanRadioIfIndex INTEGER, + telProdNpMonInterfWlanRadioIfMode INTEGER, + telProdNpMonInterfWlanRadioIfSpeed INTEGER, + telProdNpMonInterfWlanRadioIfChannel INTEGER, + telProdNpMonInterfWlanRadioIfRtsThreshold INTEGER, + telProdNpMonInterfWlanRadioIfTxPower INTEGER, + telProdNpMonInterfWlanRadioIfBand INTEGER, + telProdNpMonInterfWlanRadioIfCountry DisplayString, + telProdNpMonInterfWlanRadioIfAddress MacAddress, + telProdNpMonInterfWlanRadioIfRealChannel INTEGER, + telProdNpMonInterfWlanRadioIfFragmentThreshold INTEGER +} + +telProdNpMonInterfWlanRadioIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Unique radio index." + ::= { telProdNpMonInterfWlanRadioEntry 1 } + +telProdNpMonInterfWlanRadioIfMode OBJECT-TYPE + SYNTAX INTEGER { + mode-11a(1), + mode-11b(2), + mode-11g(4), + mode-11b-11g(6), + mode-11n(8), + mode-11a-11n(9), + mode-11g-11n(12), + mode-11b-11g-11n(14), + mode-11a-11b-11g-11n(15) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Mixed and compatibility modes between various 802.11 substandards." + ::= { telProdNpMonInterfWlanRadioEntry 2 } + +telProdNpMonInterfWlanRadioIfSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value defines the bitrate or the coding scheme to use for data frames." + ::= { telProdNpMonInterfWlanRadioEntry 3 } + +telProdNpMonInterfWlanRadioIfChannel OBJECT-TYPE + SYNTAX INTEGER (-1..256) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The physical channel " + ::= { telProdNpMonInterfWlanRadioEntry 4 } + +telProdNpMonInterfWlanRadioIfRtsThreshold OBJECT-TYPE + SYNTAX INTEGER (-1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute shall indicate the number of octets in an + MPDU, below which an RTS/CTS handshake shall not be + performed, except as RTS/CTS is used as a cross modulation + protection mechanism. An RTS/CTS + handshake shall be performed at the beginning of any frame + exchange sequence where the MPDU is of type Data or + Management, the MPDU has an individual address in the + Address1 field, and the length of the MPDU is greater than + this threshold. Setting this attribute to be larger than the + maximum MSDU size shall have the effect of turning off the + RTS/CTS handshake for frames of Data or Management type + transmitted by this STA. Setting this attribute to one + shall have the effect of turning on the RTS/CTS handshake + for all frames of Data or Management type transmitted by + this STA." + ::= { telProdNpMonInterfWlanRadioEntry 5 } + +telProdNpMonInterfWlanRadioIfTxPower OBJECT-TYPE + SYNTAX INTEGER (0..63) + UNITS "dBm" + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Transmitter output power in dBm." + ::= { telProdNpMonInterfWlanRadioEntry 6 } + +telProdNpMonInterfWlanRadioIfBand OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Frequency band." + ::= { telProdNpMonInterfWlanRadioEntry 7 } + +telProdNpMonInterfWlanRadioIfCountry OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..3)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute identifies the country in which the station is operating. + The first two octets of this string is the two character country code as + described in document ISO/IEC 3166-1. The third octet shall be one of the + following: + 1. an ASCII space character, if the regulations under which the + station is operating encompass all environments in the country, + 2. an ASCII 'O' character, if the regulations under which the + station is operating are for an Outdoor environment only, or + 3. an ASCII 'I' character, if the regulations under which the + station is operating are for an Indoor environment only." + ::= { telProdNpMonInterfWlanRadioEntry 8 } + +telProdNpMonInterfWlanRadioIfAddress OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The MAC Address." + ::= { telProdNpMonInterfWlanRadioEntry 9 } + +telProdNpMonInterfWlanRadioIfRealChannel OBJECT-TYPE + SYNTAX INTEGER (0..256) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The actually selected channel for transmit and receive. + In most cases this is the same value as wlanIfChannel, + except if automatic channel selection is active. In this + case, this variable shows the channel in use." + ::= { telProdNpMonInterfWlanRadioEntry 10 } + +telProdNpMonInterfWlanRadioIfFragmentThreshold OBJECT-TYPE + SYNTAX INTEGER (256..8000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute shall specify the mandatory maximum size, in + octets, of the PSDU that may be delivered to the PHY. + This maximum size does not apply in the case of A-MPDU. An + MSDU, A-MSDU or MMPDU shall be broken into fragments if its + size exceeds the value of this attribute after adding MAC + headers and trailers. An MSDU, A-MSDU or MMPDU shall be + fragmented when the resulting frame has an individual address + in the Address1 field, and the length of the frame is larger + than this threshold. The default value for this attribute + shall be the lesser of 8000 or the aMPDUMaxLength or the + aPSDUMaxLength of the attached PHY and shall never exceed the + lesser of 8000 or the aMPDUMaxLength or the + aPSDUMaxLength of the attached PHY. The value of this + attribute shall never be less than 256." + ::= { telProdNpMonInterfWlanRadioEntry 11 } + + +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +-- BSS table +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = + +telProdNpMonInterfWlanBSSTable OBJECT-TYPE + SYNTAX SEQUENCE OF TelProdNpMonInterfWlanBSSEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + " Describes a WLAN VSS and the corresponding settings" + ::= { telProdNpMonInterfWlan 2 } + +telProdNpMonInterfWlanBSSEntry OBJECT-TYPE + SYNTAX TelProdNpMonInterfWlanBSSEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A base list of objects that are information about BSS data. + The index is the number of the interface" + INDEX { telProdNpMonInterfWlanBSSIfIndex } + ::= { telProdNpMonInterfWlanBSSTable 1 } + +TelProdNpMonInterfWlanBSSEntry ::= SEQUENCE +{ + telProdNpMonInterfWlanBSSIfIndex INTEGER, + telProdNpMonInterfWlanBSSId DisplayString, + telProdNpMonInterfWlanBSSPrivInvoked INTEGER, + telProdNpMonInterfWlanBSSRsn INTEGER, + telProdNpMonInterfWlanBSSAkm INTEGER, + telProdNpMonInterfWlanBSSCipher INTEGER, + telProdNpMonInterfWlanBSSDefaultKey INTEGER, + telProdNpMonInterfWlanBSSKey1 OCTET STRING, + telProdNpMonInterfWlanBSSKey2 OCTET STRING, + telProdNpMonInterfWlanBSSKey3 OCTET STRING, + telProdNpMonInterfWlanBSSKey4 OCTET STRING, + telProdNpMonInterfWlanBSSMaxAsoc INTEGER, + telProdNpMonInterfWlanBSSAcl INTEGER, + telProdNpMonInterfWlanBSSClientIsolation INTEGER, + telProdNpMonInterfWlanBSSHidden INTEGER, + telProdNpMonInterfWlanBSSBssId MacAddress, + telProdNpMonInterfWlanBSSBeaconPeriod INTEGER, + telProdNpMonInterfWlanBSSDTIMPeriod INTEGER, + telProdNpMonInterfWlanBSSMSDUTx Counter32, + telProdNpMonInterfWlanBSSMSDURx Counter32, + telProdNpMonInterfWlanBSSBytesTx Counter32, + telProdNpMonInterfWlanBSSBytesRx Counter32, + telProdNpMonInterfWlanBSSCurrent INTEGER, + telProdNpMonInterfWlanBSSOpMode INTEGER, + telProdNpMonInterfwlanBSSPassPhrase OCTET STRING +} + +telProdNpMonInterfWlanBSSIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Unique BSS index." + ::= { telProdNpMonInterfWlanBSSEntry 1 } + +telProdNpMonInterfWlanBSSId OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..32)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute reflects the SSID." + ::= { telProdNpMonInterfWlanBSSEntry 2 } + +telProdNpMonInterfWlanBSSPrivInvoked OBJECT-TYPE + SYNTAX INTEGER { none(1), enable(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Privacy invoked. If enabled, some level of security is invoked + when transmitting data frames." + ::= { telProdNpMonInterfWlanBSSEntry 3 } + +telProdNpMonInterfWlanBSSRsn OBJECT-TYPE + SYNTAX INTEGER { wpa(0), wpa2(1), none(2), wpa-wpa2(3) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Robust Security Network setting." + ::= { telProdNpMonInterfWlanBSSEntry 4 } + +telProdNpMonInterfWlanBSSAkm OBJECT-TYPE + SYNTAX INTEGER { dot1x(0), psk(1) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Authenticated Key Management setting." + ::= { telProdNpMonInterfWlanBSSEntry 5 } + +telProdNpMonInterfWlanBSSCipher OBJECT-TYPE + SYNTAX INTEGER { none(0), auto(1), wep(2), tkip(3), aes-ccm(4) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ciphers in use for WPA or WPA2. + auto(1) is used for TKIP and AES" + ::= { telProdNpMonInterfWlanBSSEntry 6 } + +telProdNpMonInterfWlanBSSDefaultKey OBJECT-TYPE + SYNTAX INTEGER { key1(1), key2(2), key3(3), key4(4) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Default key for WEP encryption. This is the key used + to transmit data frames if WEP is enabled" + ::= { telProdNpMonInterfWlanBSSEntry 7 } + +telProdNpMonInterfWlanBSSKey1 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Key string for WEP key number 1." + ::= { telProdNpMonInterfWlanBSSEntry 8 } + +telProdNpMonInterfWlanBSSKey2 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..33)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Key string for WEP key number 2." + ::= { telProdNpMonInterfWlanBSSEntry 9 } + +telProdNpMonInterfWlanBSSKey3 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..33)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Key string for WEP key number 3." + ::= { telProdNpMonInterfWlanBSSEntry 10 } + +telProdNpMonInterfWlanBSSKey4 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..33)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Key string for WEP key number 4." + ::= { telProdNpMonInterfWlanBSSEntry 11 } + +telProdNpMonInterfWlanBSSMaxAsoc OBJECT-TYPE + SYNTAX INTEGER (1..256) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of allowed clients of the requested BSS." + ::= { telProdNpMonInterfWlanBSSEntry 12 } + +telProdNpMonInterfWlanBSSAcl OBJECT-TYPE + SYNTAX INTEGER { disable(0), deny-entries(1), allow-entries(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "MAC Media Access Control via MAC Address." + ::= { telProdNpMonInterfWlanBSSEntry 13 } + +telProdNpMonInterfWlanBSSClientIsolation OBJECT-TYPE + SYNTAX INTEGER { disable(0), enable(1) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Client isolation setting." + ::= { telProdNpMonInterfWlanBSSEntry 14 } + +telProdNpMonInterfWlanBSSHidden OBJECT-TYPE + SYNTAX INTEGER { yes(2), no(1) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Define whether SSID is hidden (yes(2)) or not (no(1))." + ::= { telProdNpMonInterfWlanBSSEntry 15 } + +telProdNpMonInterfWlanBSSBssId OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object contains the actual current BSSID for the service set." + ::= { telProdNpMonInterfWlanBSSEntry 16 } + +telProdNpMonInterfWlanBSSBeaconPeriod OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute shall specify the number of TU that a + station shall use for scheduling Beacon transmissions. + This value is transmitted in Beacon and Probe Response + frames." + ::= { telProdNpMonInterfWlanBSSEntry 17 } + +telProdNpMonInterfWlanBSSDTIMPeriod OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute shall specify the number of beacon + intervals that shall elapse between transmission of + Beacons frames containing a TIM element whose DTIM + Count field is 0. This value is transmitted in + the DTIM Period field of Beacon frames." + ::= { telProdNpMonInterfWlanBSSEntry 18 } + +telProdNpMonInterfWlanBSSMSDUTx OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute counts the total number of + packets transmitted on this BSS." + ::= { telProdNpMonInterfWlanBSSEntry 19 } + +telProdNpMonInterfWlanBSSMSDURx OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute counts the total number of + packets received by this BSS." + ::= { telProdNpMonInterfWlanBSSEntry 20 } + +telProdNpMonInterfWlanBSSBytesTx OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Transmitted Bytes." + ::= { telProdNpMonInterfWlanBSSEntry 21 } + +telProdNpMonInterfWlanBSSBytesRx OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Received Bytes." + ::= { telProdNpMonInterfWlanBSSEntry 22 } + +telProdNpMonInterfWlanBSSCurrent OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of current associated stations" + ::= { telProdNpMonInterfWlanBSSEntry 23 } + +telProdNpMonInterfWlanBSSOpMode OBJECT-TYPE + SYNTAX INTEGER { access-point(0), station(1), wbr(2), repeater(3) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specify that the scan properties is used for AP, + client or wds." + ::= { telProdNpMonInterfWlanBSSEntry 24 } + +telProdNpMonInterfwlanBSSPassPhrase OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Passphrase string for WPA-PSK and WPA2-PSK." + ::= { telProdNpMonInterfWlanBSSEntry 25 } + + +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +-- Station table +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = + +telProdNpMonInterfWlanStationTable OBJECT-TYPE + SYNTAX SEQUENCE OF TelProdNpMonInterfWlanStationEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The telProdNpMonInterfWlanStation contains information relating to the + clients currently associated to our access points. + Each entry corresponds to + an associated client station (STA). + Entries cannot be added or deleted by the user. + + Creating entries: Entries are created by the system + automatically when a new STA ia associated. + + Deleting entries: Entries are removed by the system + whenever an associated STA is removed." + ::= { telProdNpMonInterfWlan 3 } + +telProdNpMonInterfWlanStationEntry OBJECT-TYPE + SYNTAX TelProdNpMonInterfWlanStationEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A base list of objects that are information about stations. + The index is the number of the interface and the MAC address of the station" + INDEX { telProdNpMonInterfWlanStationIfIndex, telProdNpMonInterfWlanStationAddress } + ::= { telProdNpMonInterfWlanStationTable 1 } + +TelProdNpMonInterfWlanStationEntry ::= SEQUENCE +{ + telProdNpMonInterfWlanStationIfIndex INTEGER, + telProdNpMonInterfWlanStationAddress MacAddress, + telProdNpMonInterfWlanStationState INTEGER, + telProdNpMonInterfWlanStationSecurity INTEGER, + telProdNpMonInterfWlanStationNode INTEGER, + telProdNpMonInterfWlanStationMSDUTx Counter32, + telProdNpMonInterfWlanStationMSDURx Counter32, + telProdNpMonInterfWlanStationBytesRx Counter32, + telProdNpMonInterfWlanStationBytesTx Counter32, + telProdNpMonInterfWlanStationRate WlanRate, + telProdNpMonInterfWlanStationSignal WlanRSSI, + telProdNpMonInterfWlanStationNoise WlanRSSI, + telProdNpMonInterfWlanStationConnectTime Counter32 +} + +telProdNpMonInterfWlanStationIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Interface number." + ::= { telProdNpMonInterfWlanStationEntry 1 } + +telProdNpMonInterfWlanStationAddress OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "MAC Address of the Assigned STA." + ::= { telProdNpMonInterfWlanStationEntry 2 } + +telProdNpMonInterfWlanStationState OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Station state." + ::= { telProdNpMonInterfWlanStationEntry 3 } + +telProdNpMonInterfWlanStationSecurity OBJECT-TYPE + SYNTAX INTEGER { + none(1), + wep40(2), + wep104(3), + wpa-psk(4), + wpa(5), + wpa2(6), + wpa2-psk(7) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Security Option of the Station." + ::= { telProdNpMonInterfWlanStationEntry 4 } + +telProdNpMonInterfWlanStationNode OBJECT-TYPE + SYNTAX INTEGER { unknown(1), access-point(2), client(3) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Node type of the Station." + ::= { telProdNpMonInterfWlanStationEntry 5 } + +telProdNpMonInterfWlanStationMSDUTx OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute counts the total number of + packets transmitted to this station." + ::= { telProdNpMonInterfWlanStationEntry 6 } + +telProdNpMonInterfWlanStationMSDURx OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute counts the total number of + packets received from this station." + ::= { telProdNpMonInterfWlanStationEntry 7 } + +telProdNpMonInterfWlanStationBytesTx OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute counts the total number of + octets transmitted to this station." + ::= { telProdNpMonInterfWlanStationEntry 8 } + +telProdNpMonInterfWlanStationBytesRx OBJECT-TYPE + SYNTAX Counter32 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute counts the total number of + octets received from this station." + ::= { telProdNpMonInterfWlanStationEntry 9 } + +telProdNpMonInterfWlanStationRate OBJECT-TYPE + SYNTAX WlanRate + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute reflects the data rate of the latest + packet received from this station, in 500 kbps units." + ::= { telProdNpMonInterfWlanStationEntry 10 } + +telProdNpMonInterfWlanStationSignal OBJECT-TYPE + SYNTAX WlanRSSI + UNITS "dBm" + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute shows the received signal strength in dBm." + ::= { telProdNpMonInterfWlanStationEntry 11 } + +telProdNpMonInterfWlanStationNoise OBJECT-TYPE + SYNTAX WlanRSSI + UNITS "dBm" + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute shows the measured noise level in dBm, or + 0 if no connection can be established." + ::= { telProdNpMonInterfWlanStationEntry 12 } + +telProdNpMonInterfWlanStationConnectTime OBJECT-TYPE + SYNTAX Counter32 + UNITS "s" + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute records the system uptime at the moment + the client successfully finished association." + ::= { telProdNpMonInterfWlanStationEntry 13 } + + +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +-- ACL table +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = + +telProdNpMonInterfWlanACLTable OBJECT-TYPE + SYNTAX SEQUENCE OF TelProdNpMonInterfWlanACLEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The WLAN Access List based on MAC Addresses" + ::= { telProdNpMonInterfWlan 4 } + +telProdNpMonInterfWlanACLEntry OBJECT-TYPE + SYNTAX TelProdNpMonInterfWlanACLEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The WLAN Access List based on MAC Addresses entry. + Index: telProdNpMonInterfWlanACLIfIndex telProdNpMonInterfWlanACLAddress." + INDEX { telProdNpMonInterfWlanACLIfIndex, telProdNpMonInterfWlanACLAddress } + ::= { telProdNpMonInterfWlanACLTable 1 } + +TelProdNpMonInterfWlanACLEntry ::= SEQUENCE +{ + telProdNpMonInterfWlanACLIfIndex INTEGER, + telProdNpMonInterfWlanACLAddress MacAddress +} + +telProdNpMonInterfWlanACLIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Interface the MAC Address belongs." + ::= { telProdNpMonInterfWlanACLEntry 1 } + +telProdNpMonInterfWlanACLAddress OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The MAC Address for the accepted client" + ::= { telProdNpMonInterfWlanACLEntry 2 } + + +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +-- Scan results table +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = + +telProdNpMonInterfWlanScanResultsTable OBJECT-TYPE + SYNTAX SEQUENCE OF TelProdNpMonInterfWlanScanResultsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the list of BSS entries found by foreground + or background scanning in client mode." + ::= { telProdNpMonInterfWlan 5 } + +telProdNpMonInterfWlanScanResultsEntry OBJECT-TYPE + SYNTAX TelProdNpMonInterfWlanScanResultsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A entry of the table. + Index: telProdNpMonInterfWlanScanResultsIfIndex, telProdNpMonInterfWlanScanResultsIndex" + INDEX { telProdNpMonInterfWlanScanResultsIfIndex, telProdNpMonInterfWlanScanResultsIndex } + ::= { telProdNpMonInterfWlanScanResultsTable 1 } + +TelProdNpMonInterfWlanScanResultsEntry ::= SEQUENCE +{ + telProdNpMonInterfWlanScanResultsIfIndex INTEGER, + telProdNpMonInterfWlanScanResultsIndex INTEGER, + telProdNpMonInterfWlanScanResultsBSSID MacAddress, + telProdNpMonInterfWlanScanResultsSSID DisplayString, + telProdNpMonInterfWlanScanResultsChannel INTEGER, + telProdNpMonInterfWlanScanResultsSignal WlanRSSI, + telProdNpMonInterfWlanScanResultsNoise WlanRSSI, + telProdNpMonInterfWlanScanResultsBeaconPeriod INTEGER, + telProdNpMonInterfWlanScanResultsRates DisplayString, + telProdNpMonInterfWlanScanResultsBasicRates DisplayString, + telProdNpMonInterfWlanScanResultsExtendedRates DisplayString +} + +telProdNpMonInterfWlanScanResultsIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "ifIndex of the WLAN Interface the scan results belong to." + ::= { telProdNpMonInterfWlanScanResultsEntry 1 } + +telProdNpMonInterfWlanScanResultsIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Auxiliary index for different BSS entries." + ::= { telProdNpMonInterfWlanScanResultsEntry 2 } + +telProdNpMonInterfWlanScanResultsBSSID OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "BSSID of this BSS." + ::= { telProdNpMonInterfWlanScanResultsEntry 3 } + +telProdNpMonInterfWlanScanResultsSSID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "SSID aka network name of this BSS. + If broadcasting of SSID is disabled on this + BSS, this string may be empty." + ::= { telProdNpMonInterfWlanScanResultsEntry 4 } + +telProdNpMonInterfWlanScanResultsChannel OBJECT-TYPE + SYNTAX INTEGER (1..256) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The channel this BSS was received on." + ::= { telProdNpMonInterfWlanScanResultsEntry 5 } + +telProdNpMonInterfWlanScanResultsSignal OBJECT-TYPE + SYNTAX WlanRSSI + UNITS "dBm" + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Receive signal strength of this BSS." + ::= { telProdNpMonInterfWlanScanResultsEntry 6 } + +telProdNpMonInterfWlanScanResultsNoise OBJECT-TYPE + SYNTAX WlanRSSI + UNITS "dBm" + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute shows the measured noise level in dBm, or + 0 when this value is not available. + It's the value measured during the last reception of data." + ::= { telProdNpMonInterfWlanScanResultsEntry 7 } + +telProdNpMonInterfWlanScanResultsBeaconPeriod OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute contains the number of TU that this + BSS uses for scheduling Beacon transmissions." + ::= { telProdNpMonInterfWlanScanResultsEntry 8 } + +telProdNpMonInterfWlanScanResultsRates OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute contains one octet for each + supported rate in this BSS, in Mbps units." + ::= { telProdNpMonInterfWlanScanResultsEntry 9 } + +telProdNpMonInterfWlanScanResultsBasicRates OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute contains one octet for each required + basic rate in this BSS, in Mbps units." + ::= { telProdNpMonInterfWlanScanResultsEntry 10 } + +telProdNpMonInterfWlanScanResultsExtendedRates OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute contains one octet for each supported + extended rate in this BSS, in Mbps units." + ::= { telProdNpMonInterfWlanScanResultsEntry 11 } + + + +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +-- WMM table +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = + +telProdNpMonInterfWlanWMMTable OBJECT-TYPE + SYNTAX SEQUENCE OF TelProdNpMonInterfWlanWMMEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Describes a WLAN WMM Access category settings" + ::= { telProdNpMonInterfWlan 6 } + +telProdNpMonInterfWlanWMMEntry OBJECT-TYPE + SYNTAX TelProdNpMonInterfWlanWMMEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A entry of the table. + Index: telProdNpMonInterfWlanWMMAccCat, telProdNpMonInterfWlanWMMwlanIf, telProdNpMonInterfWlanWMMType " + INDEX { telProdNpMonInterfWlanWMMAccCat, telProdNpMonInterfWlanWMMwlanIf, telProdNpMonInterfWlanWMMType } + ::= { telProdNpMonInterfWlanWMMTable 1 } + +TelProdNpMonInterfWlanWMMEntry ::= SEQUENCE +{ + telProdNpMonInterfWlanWMMAccCat INTEGER, + telProdNpMonInterfWlanWMMwlanIf INTEGER, + telProdNpMonInterfWlanWMMaCWmin INTEGER, + telProdNpMonInterfWlanWMMaCWmax INTEGER, + telProdNpMonInterfWlanWMMAifsn INTEGER, + telProdNpMonInterfWlanWMMTxopLimit INTEGER, + telProdNpMonInterfWlanWMMAckPolicy INTEGER, + telProdNpMonInterfWlanWMMACM INTEGER, + telProdNpMonInterfWlanWMMType INTEGER +} + +telProdNpMonInterfWlanWMMwlanIf OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Radio index the AC belongs to." + ::= { telProdNpMonInterfWlanWMMEntry 1 } + +telProdNpMonInterfWlanWMMAccCat OBJECT-TYPE + SYNTAX INTEGER { besteffort(1), background(2), video(3), voice(4) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Access category type, each category is mandatory for a wlanIf. + + An access category (AC) is a label for the common set of enhanced + distributed channel access (EDCA) parameters that are used by a + quality of service (QoS) station (QSTA) to contend for the channel + in order to transmit medium access control (MAC) service data + units (MSDUs) with certain priorities. + + (More info in '802.11E / 3.123 access category (AC)'). + + besteffort(1): standard/default priority + background(2): low priority + video(3): medium priority (higher than 'besteffort') + voice(4): high priority" + ::= { telProdNpMonInterfWlanWMMEntry 2 } + +telProdNpMonInterfWlanWMMType OBJECT-TYPE + SYNTAX INTEGER { access-point(1), station(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Type to which this telProdNpMonInterfWlanWMMEntry corresponds. + Type access-point means the own parameters for WMM are changed. + The entries with type station will be provided to the connected + stations via WMM-IE." + ::= { telProdNpMonInterfWlanWMMEntry 3 } + +telProdNpMonInterfWlanWMMaCWmin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Minimum size of contention window. + for AC_BK and AC_BE telProdNpMonInterfWlanWMMaCWmin = telProdNpMonInterfWlanIfCWmin, + for AC_VI telProdNpMonInterfWlanWMMaCWmin = (telProdNpMonInterfWlanIfCWmin-1)/2, + for AC_VO telProdNpMonInterfWlanWMMaCWmin = (telProdNpMonInterfWlanIfCWmin-3)/4." + ::= { telProdNpMonInterfWlanWMMEntry 4 } + +telProdNpMonInterfWlanWMMaCWmax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Maximum size of contention window. + for AC_BK telProdNpMonInterfWlanWMMaCWmax = telProdNpMonInterfWlanIfCWmax, + for AC_BE telProdNpMonInterfWlanWMMaCWmax = 4*telProdNpMonInterfWlanIfCWmin + 3, + for AC_VI telProdNpMonInterfWlanWMMaCWmax = telProdNpMonInterfWlanIfCWmin, + for AC_VO telProdNpMonInterfWlanWMMaCWmax = (telProdNpMonInterfWlanIfCWmin-1)/2." + ::= { telProdNpMonInterfWlanWMMEntry 5 } + +telProdNpMonInterfWlanWMMAifsn OBJECT-TYPE + SYNTAX INTEGER (0..99) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Arbitration Inter-Frame Space Number (AIFSN) + for this Access category." + ::= { telProdNpMonInterfWlanWMMEntry 6 } + +telProdNpMonInterfWlanWMMTxopLimit OBJECT-TYPE + SYNTAX INTEGER (0..9999) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "802.11 mode Transmit Opportunity Limit. The TxopLimit + value is given in units of 32 microseconds." + ::= { telProdNpMonInterfWlanWMMEntry 7 } + +telProdNpMonInterfWlanWMMAckPolicy OBJECT-TYPE + SYNTAX INTEGER { ack(1), noAck(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Ack policy for this Access category (default value is 'ack(1)')." + ::= { telProdNpMonInterfWlanWMMEntry 8 } + +telProdNpMonInterfWlanWMMACM OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "ACM (admission control) policy for this Access category i + (default value is 'disabled(2)')." + ::= { telProdNpMonInterfWlanWMMEntry 9 } + + +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +-- Client table +-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = +telProdNpMonInterfWlanClientTable OBJECT-TYPE + SYNTAX SEQUENCE OF TelProdNpMonInterfWlanClientEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + " Describes a WLAN Client and the corresponding + settings" + ::= { telProdNpMonInterfWlan 7 } + +telProdNpMonInterfwlanClientEntry OBJECT-TYPE + SYNTAX TelProdNpMonInterfWlanClientEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A base list of objects with information about the networks the + WLAN can connect to when acting as a client. + The indexes are the number of the WLAN interface and the network + index" + INDEX { telProdNpMonInterfWlanClientIfIndex, telProdNpMonInterfWlanClientSSID} + ::= { telProdNpMonInterfWlanClientTable 1 } + +TelProdNpMonInterfWlanClientEntry ::= SEQUENCE +{ + telProdNpMonInterfWlanClientIfIndex INTEGER, + telProdNpMonInterfWlanClientSSID DisplayString, + telProdNpMonInterfWlanClientPriority INTEGER, + telProdNpMonInterfWlanClientPrivInvoked INTEGER, + telProdNpMonInterfWlanClientRsn INTEGER, + telProdNpMonInterfWlanClientAkm INTEGER, + telProdNpMonInterfWlanClientCipher INTEGER, + telProdNpMonInterfWlanClientDefaultKey INTEGER, + telProdNpMonInterfWlanClientKey1 OCTET STRING, + telProdNpMonInterfWlanClientKey2 OCTET STRING, + telProdNpMonInterfWlanClientKey3 OCTET STRING, + telProdNpMonInterfWlanClientKey4 OCTET STRING, + telProdNpMonInterfwlanClientPassPhrase OCTET STRING +} + +telProdNpMonInterfWlanClientIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "WLAN interface index." + DEFVAL { 0 } + ::= { telProdNpMonInterfwlanClientEntry 1 } + +telProdNpMonInterfWlanClientSSID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Service Set Name" + ::= { telProdNpMonInterfwlanClientEntry 2 } + +telProdNpMonInterfWlanClientPriority OBJECT-TYPE + SYNTAX INTEGER { none(1), enable(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Priority of the network. The higher the priority, + the sooner the client tries to associate with it." + ::= { telProdNpMonInterfwlanClientEntry 3 } + +telProdNpMonInterfWlanClientPrivInvoked OBJECT-TYPE + SYNTAX INTEGER { none(1), enable(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Privacy invoked. If enabled, some level of security is invoked + when transmitting data frames." + ::= { telProdNpMonInterfwlanClientEntry 4 } + +telProdNpMonInterfWlanClientRsn OBJECT-TYPE + SYNTAX INTEGER { wpa(0), wpa2(1), none(2), wpa-wpa2(3) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Robust Security Network settings." + ::= { telProdNpMonInterfwlanClientEntry 5 } + +telProdNpMonInterfWlanClientAkm OBJECT-TYPE + SYNTAX INTEGER { dot1x(0), psk(1) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Authenticated Key Management setting." + ::= { telProdNpMonInterfwlanClientEntry 6 } + +telProdNpMonInterfWlanClientCipher OBJECT-TYPE + SYNTAX INTEGER { none(0), auto(1), wep(2), tkip(3), aes-ccm(4) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ciphers in use for WPA or WPA2. + auto(1) is used for TKIP and AES" + ::= { telProdNpMonInterfwlanClientEntry 7 } + +telProdNpMonInterfWlanClientDefaultKey OBJECT-TYPE + SYNTAX INTEGER { key1(1), key2(2), key3(3), key4(4) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Default key for WEP encryption. This is the key used + to transmit data frames if WEP is enabled" + ::= { telProdNpMonInterfwlanClientEntry 8 } + +telProdNpMonInterfWlanClientKey1 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..33)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Key string for WEP key number 1." + ::= { telProdNpMonInterfwlanClientEntry 9 } + +telProdNpMonInterfWlanClientKey2 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..33)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Key string for WEP key number 2." + ::= { telProdNpMonInterfwlanClientEntry 10 } + +telProdNpMonInterfWlanClientKey3 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..33)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Key string for WEP key number 3." + ::= { telProdNpMonInterfwlanClientEntry 11 } + +telProdNpMonInterfWlanClientKey4 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..33)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Key string for WEP key number 4." + ::= { telProdNpMonInterfwlanClientEntry 12 } + +telProdNpMonInterfwlanClientPassPhrase OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Passphrase string for WPA-PSK and WPA2-PSK." + ::= { telProdNpMonInterfwlanClientEntry 13 } + +END diff --git a/tests/data/teldat_rs123w-4g.json b/tests/data/teldat_rs123w-4g.json new file mode 100644 index 0000000000..d825397da5 --- /dev/null +++ b/tests/data/teldat_rs123w-4g.json @@ -0,0 +1,6196 @@ +{ + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "iso88023Csmacd", + "ifAlias": "ethernet0/0", + "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": "ethernet0/1", + "ifName": "ethernet0/1", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "iso88023Csmacd", + "ifAlias": "ethernet0/1", + "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": "cellular0/0", + "ifName": "cellular0/0", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "wwanPP", + "ifAlias": "cellular0/0", + "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": "cellular0/1", + "ifName": "cellular0/1", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ipForward", + "ifAlias": "cellular0/1", + "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": "cellular0/2", + "ifName": "cellular0/2", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ipForward", + "ifAlias": "cellular0/2", + "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": "cellular1/0", + "ifName": "cellular1/0", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "wwanPP", + "ifAlias": "cellular1/0", + "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": "cellular1/1", + "ifName": "cellular1/1", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ipForward", + "ifAlias": "cellular1/1", + "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": "cellular1/2", + "ifName": "cellular1/2", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ipForward", + "ifAlias": "cellular1/2", + "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": "wlan0/0", + "ifName": "wlan0/0", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ieee80211", + "ifAlias": "wlan0/0", + "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": "ppp30", + "ifName": "ppp30", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ppp", + "ifAlias": "ppp30", + "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": "ppp40", + "ifName": "ppp40", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ppp", + "ifAlias": "ppp40", + "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": "direct-ip1", + "ifName": "direct-ip1", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propPointToPointSerial", + "ifAlias": "direct-ip1", + "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": "ethernet0/1.21", + "ifName": "ethernet0/1.21", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "ethernet0/1.21", + "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": "ethernet0/0.300", + "ifName": "ethernet0/0.300", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "== LAN: UTILIZADORES ==", + "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": "l2tp30", + "ifName": "l2tp30", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "l2tp30", + "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": "l2tp40", + "ifName": "l2tp40", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "l2tp40", + "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": "ethernet0/0.301", + "ifName": "ethernet0/0.301", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "== LAN: IMPRESSORAS ==", + "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": "ethernet0/0.302", + "ifName": "ethernet0/0.302", + "portName": null, + "ifIndex": 18, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "== LAN: TELEFONES ==", + "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": "ethernet0/0.303", + "ifName": "ethernet0/0.303", + "portName": null, + "ifIndex": 19, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "== LAN: EQUIPAMENTOS VAS ==", + "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": "ethernet0/0.9", + "ifName": "ethernet0/0.9", + "portName": null, + "ifIndex": 20, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "== LAN: APP ==", + "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": "l2tp30", + "ifName": "l2tp30", + "portName": null, + "ifIndex": 21, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "l2tp30", + "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": "l2tp40", + "ifName": "l2tp40", + "portName": null, + "ifIndex": 22, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "propVirtual", + "ifAlias": "l2tp40", + "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": "Loopback interface", + "ifName": "Loopback Interface", + "portName": null, + "ifIndex": 64536, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "Loopback 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": "Switch Port interface: Group 1, Port 1; Associated interface: ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 64537, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "iso88023Csmacd", + "ifAlias": "Switch Port interface: Group 1, Port 1; Associated interface: ethernet0/0", + "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": "Switch Port interface: Group 1, Port 2; Associated interface: ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 64538, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "iso88023Csmacd", + "ifAlias": "Switch Port interface: Group 1, Port 2; Associated interface: ethernet0/0", + "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": "Switch Port interface: Group 1, Port 3; Associated interface: ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 64539, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "iso88023Csmacd", + "ifAlias": "Switch Port interface: Group 1, Port 3; Associated interface: ethernet0/0", + "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": "Switch Port interface: Group 1, Port 4; Associated interface: ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 64540, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "iso88023Csmacd", + "ifAlias": "Switch Port interface: Group 1, Port 4; Associated interface: ethernet0/0", + "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 + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 1, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "iso88023Csmacd", + "ifAlias": "ethernet0/0", + "ifPhysAddress": "00a0f96924fe", + "ifHardType": null, + "ifLastChange": 560, + "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": 5969961, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 6613778, + "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": 2186535162, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 5182480647, + "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": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 1304970, + "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": "ethernet0/1", + "ifName": "ethernet0/1", + "portName": null, + "ifIndex": 2, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "iso88023Csmacd", + "ifAlias": "ethernet0/1", + "ifPhysAddress": "00a0f96924ff", + "ifHardType": null, + "ifLastChange": 166949, + "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": 8586022, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 9036279, + "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": 5394281116, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 2500185570, + "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": 3, + "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": "cellular0/0", + "ifName": "cellular0/0", + "portName": null, + "ifIndex": 3, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2048, + "ifType": "wwanPP", + "ifAlias": "cellular0/0", + "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": 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": "cellular0/1", + "ifName": "cellular0/1", + "portName": null, + "ifIndex": 4, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2048, + "ifType": "ipForward", + "ifAlias": "cellular0/1", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": 406, + "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": "cellular0/2", + "ifName": "cellular0/2", + "portName": null, + "ifIndex": 5, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2048, + "ifType": "ipForward", + "ifAlias": "cellular0/2", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": 406, + "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": "cellular1/0", + "ifName": "cellular1/0", + "portName": null, + "ifIndex": 6, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2048, + "ifType": "wwanPP", + "ifAlias": "cellular1/0", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 3914, + "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": 327707, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 163661, + "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": 22922485, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 6382266, + "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": "cellular1/1", + "ifName": "cellular1/1", + "portName": null, + "ifIndex": 7, + "ifSpeed": 1000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2048, + "ifType": "ipForward", + "ifAlias": "cellular1/1", + "ifPhysAddress": "be5e200b0104", + "ifHardType": null, + "ifLastChange": 4006, + "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": 108084, + "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": 13906586, + "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": "cellular1/2", + "ifName": "cellular1/2", + "portName": null, + "ifIndex": 8, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2048, + "ifType": "ipForward", + "ifAlias": "cellular1/2", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": 406, + "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": "wlan0/0", + "ifName": "wlan0/0", + "portName": null, + "ifIndex": 9, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1508, + "ifType": "ieee80211", + "ifAlias": "wlan0/0", + "ifPhysAddress": "00a0f9692500", + "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": 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": "ppp30", + "ifName": "ppp30", + "portName": null, + "ifIndex": 10, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2048, + "ifType": "ppp", + "ifAlias": "ppp30", + "ifPhysAddress": "000000000000", + "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": 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": "ppp40", + "ifName": "ppp40", + "portName": null, + "ifIndex": 11, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2048, + "ifType": "ppp", + "ifAlias": "ppp40", + "ifPhysAddress": "000000000000", + "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": 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": "direct-ip1", + "ifName": "direct-ip1", + "portName": null, + "ifIndex": 12, + "ifSpeed": 1000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2048, + "ifType": "propPointToPointSerial", + "ifAlias": "direct-ip1", + "ifPhysAddress": "be5e200b0104", + "ifHardType": null, + "ifLastChange": 4906, + "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": 108071, + "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": 12392561, + "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": "ethernet0/1.21", + "ifName": "ethernet0/1.21", + "portName": null, + "ifIndex": 13, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "ethernet0/1.21", + "ifPhysAddress": "00a0f96924ff", + "ifHardType": null, + "ifLastChange": 167009, + "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": 8586013, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 9036286, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 0, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 2, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 5467303451, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 2464041292, + "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": 3, + "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": "== lan", + "port_descr_descr": "UTILIZADORES ==", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ethernet0/0.300", + "ifName": "ethernet0/0.300", + "portName": null, + "ifIndex": 14, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "== LAN: UTILIZADORES ==", + "ifPhysAddress": "00a0f96924fe", + "ifHardType": null, + "ifLastChange": 611, + "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": 5969961, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 6613778, + "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": 2232569748, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 5182480647, + "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": 1, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 1304969, + "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": "l2tp30", + "ifName": "l2tp30", + "portName": null, + "ifIndex": 15, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2048, + "ifType": "propVirtual", + "ifAlias": "l2tp30", + "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": 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": "l2tp40", + "ifName": "l2tp40", + "portName": null, + "ifIndex": 16, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2048, + "ifType": "propVirtual", + "ifAlias": "l2tp40", + "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": 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": "== lan", + "port_descr_descr": "IMPRESSORAS ==", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ethernet0/0.301", + "ifName": "ethernet0/0.301", + "portName": null, + "ifIndex": 17, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "== LAN: IMPRESSORAS ==", + "ifPhysAddress": "00a0f969280a", + "ifHardType": null, + "ifLastChange": 609, + "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": 1973485, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2841890, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 8, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 705421909, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 2402290473, + "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": 216087, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 156691, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 266312, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": "== lan", + "port_descr_descr": "TELEFONES ==", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ethernet0/0.302", + "ifName": "ethernet0/0.302", + "portName": null, + "ifIndex": 18, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "== LAN: TELEFONES ==", + "ifPhysAddress": "00a0f969280a", + "ifHardType": null, + "ifLastChange": 609, + "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": 5926849, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 5124477, + "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": 1079074857, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 1373959023, + "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": 164169, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 18, + "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": "== lan", + "port_descr_descr": "EQUIPAMENTOS VAS ==", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ethernet0/0.303", + "ifName": "ethernet0/0.303", + "portName": null, + "ifIndex": 19, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "== LAN: EQUIPAMENTOS VAS ==", + "ifPhysAddress": "00a0f969280a", + "ifHardType": null, + "ifLastChange": 609, + "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": 13562815, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 41725176, + "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": 3843930696, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 57165143424, + "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": 55641, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 9941, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 405089, + "ifInMulticastPkts_prev": 0, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": 0, + "ifOutMulticastPkts_prev": 0, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": "== lan", + "port_descr_descr": "APP ==", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ethernet0/0.9", + "ifName": "ethernet0/0.9", + "portName": null, + "ifIndex": 20, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "== LAN: APP ==", + "ifPhysAddress": "00a0f969280a", + "ifHardType": null, + "ifLastChange": 609, + "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": "l2tp30", + "ifName": "l2tp30", + "portName": null, + "ifIndex": 21, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2048, + "ifType": "propVirtual", + "ifAlias": "l2tp30", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 11630, + "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": 388, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1141, + "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": 225111, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 247651, + "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": "l2tp40", + "ifName": "l2tp40", + "portName": null, + "ifIndex": 22, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2048, + "ifType": "propVirtual", + "ifAlias": "l2tp40", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 6507, + "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": 51, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 10, + "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": 16788, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 149, + "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": "Loopback interface", + "ifName": "Loopback Interface", + "portName": null, + "ifIndex": 64536, + "ifSpeed": 10000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "Loopback 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": 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": "switch port interface", + "port_descr_descr": "Group 1, Port 1; Associated interface", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Switch Port interface: Group 1, Port 1; Associated interface: ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 64537, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "iso88023Csmacd", + "ifAlias": "Switch Port interface: Group 1, Port 1; Associated interface: ethernet0/0", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": 500, + "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": "switch port interface", + "port_descr_descr": "Group 1, Port 2; Associated interface", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Switch Port interface: Group 1, Port 2; Associated interface: ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 64538, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "iso88023Csmacd", + "ifAlias": "Switch Port interface: Group 1, Port 2; Associated interface: ethernet0/0", + "ifPhysAddress": "000000000000", + "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": 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": "switch port interface", + "port_descr_descr": "Group 1, Port 3; Associated interface", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Switch Port interface: Group 1, Port 3; Associated interface: ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 64539, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "iso88023Csmacd", + "ifAlias": "Switch Port interface: Group 1, Port 3; Associated interface: ethernet0/0", + "ifPhysAddress": "000000000000", + "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": 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": "switch port interface", + "port_descr_descr": "Group 1, Port 4; Associated interface", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Switch Port interface: Group 1, Port 4; Associated interface: ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 64540, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "iso88023Csmacd", + "ifAlias": "Switch Port interface: Group 1, Port 4; Associated interface: ethernet0/0", + "ifPhysAddress": "000000000000", + "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": 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 + } + ] + } + }, + "wireless": { + "discovery": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "sinr", + "sensor_index": "6", + "sensor_type": "teldat", + "sensor_descr": "SINR: Ce1/0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 20, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.6\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "sinr", + "sensor_index": "7", + "sensor_type": "teldat", + "sensor_descr": "SINR: Ce1/1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 20, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.7\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rsrp", + "sensor_index": "6", + "sensor_type": "teldat", + "sensor_descr": "RSRP: Ce1/0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -85, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.6\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rsrp", + "sensor_index": "7", + "sensor_type": "teldat", + "sensor_descr": "RSRP: Ce1/1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -85, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.7\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rsrq", + "sensor_index": "6", + "sensor_type": "teldat", + "sensor_descr": "RSRQ: Ce1/0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -8, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.6\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rsrq", + "sensor_index": "7", + "sensor_type": "teldat", + "sensor_descr": "RSRQ: Ce1/1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -8, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.7\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rssi", + "sensor_index": "6", + "sensor_type": "teldat", + "sensor_descr": "RSSI: Ce1/0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -57, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.6\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rssi", + "sensor_index": "7", + "sensor_type": "teldat", + "sensor_descr": "RSSI: Ce1/1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -57, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.7\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "cell", + "sensor_index": "6", + "sensor_type": "teldat", + "sensor_descr": "CellID: Ce1/0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 1828, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.6\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "cell", + "sensor_index": "7", + "sensor_type": "teldat", + "sensor_descr": "CellID: Ce1/1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 1828, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.7\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "cell", + "sensor_index": "26", + "sensor_type": "teldat", + "sensor_descr": "LteCellID: Ce1/0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 139, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.6\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "cell", + "sensor_index": "37", + "sensor_type": "teldat", + "sensor_descr": "LteCellID: Ce1/1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 139, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.7\"]" + } + ] + }, + "poller": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "sinr", + "sensor_index": "6", + "sensor_type": "teldat", + "sensor_descr": "SINR: Ce1/0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 20, + "sensor_prev": 20, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.6\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "sinr", + "sensor_index": "7", + "sensor_type": "teldat", + "sensor_descr": "SINR: Ce1/1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 20, + "sensor_prev": 20, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.7\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rsrp", + "sensor_index": "6", + "sensor_type": "teldat", + "sensor_descr": "RSRP: Ce1/0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -85, + "sensor_prev": -85, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.6\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rsrp", + "sensor_index": "7", + "sensor_type": "teldat", + "sensor_descr": "RSRP: Ce1/1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -85, + "sensor_prev": -85, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.7\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rsrq", + "sensor_index": "6", + "sensor_type": "teldat", + "sensor_descr": "RSRQ: Ce1/0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -8, + "sensor_prev": -8, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.6\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rsrq", + "sensor_index": "7", + "sensor_type": "teldat", + "sensor_descr": "RSRQ: Ce1/1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -8, + "sensor_prev": -8, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.7\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rssi", + "sensor_index": "6", + "sensor_type": "teldat", + "sensor_descr": "RSSI: Ce1/0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -57, + "sensor_prev": -57, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.6\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rssi", + "sensor_index": "7", + "sensor_type": "teldat", + "sensor_descr": "RSSI: Ce1/1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -57, + "sensor_prev": -57, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.7\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "cell", + "sensor_index": "6", + "sensor_type": "teldat", + "sensor_descr": "CellID: Ce1/0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 1828, + "sensor_prev": 1828, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.6\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "cell", + "sensor_index": "7", + "sensor_type": "teldat", + "sensor_descr": "CellID: Ce1/1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 1828, + "sensor_prev": 1828, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.7\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "cell", + "sensor_index": "26", + "sensor_type": "teldat", + "sensor_descr": "LteCellID: Ce1/0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 139, + "sensor_prev": 139, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.6\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "cell", + "sensor_index": "37", + "sensor_type": "teldat", + "sensor_descr": "LteCellID: Ce1/1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 139, + "sensor_prev": 139, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.7\"]" + } + ] + } + } +} diff --git a/tests/data/teldat_tv-base-vdsl2-adsl.json b/tests/data/teldat_tv-base-vdsl2-adsl.json new file mode 100644 index 0000000000..7e44c9a385 --- /dev/null +++ b/tests/data/teldat_tv-base-vdsl2-adsl.json @@ -0,0 +1,3634 @@ +{ + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "iso88023Csmacd", + "ifAlias": "==GPON:IXS.18.66366-1702047363==", + "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": "ethernet0/2", + "ifName": "ethernet0/2", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "iso88023Csmacd", + "ifAlias": "ethernet0/2", + "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": "wlan0/0", + "ifName": "wlan0/0", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ieee80211", + "ifAlias": "wlan0/0", + "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": "atm0/0", + "ifName": "atm0/0", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "atm", + "ifAlias": "atm0/0", + "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": "cellular1/0", + "ifName": "cellular1/0", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "wwanPP", + "ifAlias": "cellular1/0", + "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": "cellular1/1", + "ifName": "cellular1/1", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "wwanPP", + "ifAlias": "cellular1/1", + "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": "bvi0", + "ifName": "bvi0", + "portName": null, + "ifIndex": 7, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "bvi0", + "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": "ethernet0/0.20", + "ifName": "ethernet0/0.20", + "portName": null, + "ifIndex": 8, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "==IXS.18.66365-Fibra@BizVPN==", + "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": "ethernet0/0.9", + "ifName": "ethernet0/0.9", + "portName": null, + "ifIndex": 9, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "l2vlan", + "ifAlias": "== LAN: Dados ==", + "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": "Loopback interface", + "ifName": "Loopback Interface", + "portName": null, + "ifIndex": 10, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "Loopback 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": "ADSL Physical/0 Hardware: SOFTDSL_V2A2P", + "ifName": "atm0/0", + "portName": null, + "ifIndex": 11, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "adsl", + "ifAlias": "ADSL Physical/0 Hardware: SOFTDSL_V2A2P", + "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": "ADSL Fast Channel/0 Hardware: SOFTDSL_V2A2P", + "ifName": "atm0/0", + "portName": null, + "ifIndex": 12, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "fast", + "ifAlias": "ADSL Fast Channel/0 Hardware: SOFTDSL_V2A2P", + "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": "ADSL Interleave Channel/0 Hardware: SOFTDSL_V2A2P", + "ifName": "atm0/0", + "portName": null, + "ifIndex": 13, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "interleave", + "ifAlias": "ADSL Interleave Channel/0 Hardware: SOFTDSL_V2A2P", + "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": "Switch Port interface: Group 1, Port 1; Associated interface: ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 14, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "iso88023Csmacd", + "ifAlias": "Switch Port interface: Group 1, Port 1; Associated interface: ethernet0/0", + "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": "Switch Port interface: Group 1, Port 2; Associated interface: ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 15, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "iso88023Csmacd", + "ifAlias": "Switch Port interface: Group 1, Port 2; Associated interface: ethernet0/0", + "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": "Switch Port interface: Group 1, Port 3; Associated interface: ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 16, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "iso88023Csmacd", + "ifAlias": "Switch Port interface: Group 1, Port 3; Associated interface: ethernet0/0", + "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": "Switch Port interface: Group 1, Port 4; Associated interface: ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 17, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "iso88023Csmacd", + "ifAlias": "Switch Port interface: Group 1, Port 4; Associated interface: ethernet0/0", + "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 + } + ] + }, + "poller": { + "ports": [ + { + "port_descr_type": "==gpon", + "port_descr_descr": "IXS.18.66366-1702047363==", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 1, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1500, + "ifType": "iso88023Csmacd", + "ifAlias": "==GPON:IXS.18.66366-1702047363==", + "ifPhysAddress": "00a0266c9488", + "ifHardType": null, + "ifLastChange": 1635, + "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": 405020650, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 184983500, + "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": 3219263545, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 2219353632, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 174240, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 4750901, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 3624018, + "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": "ethernet0/2", + "ifName": "ethernet0/2", + "portName": null, + "ifIndex": 2, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1500, + "ifType": "iso88023Csmacd", + "ifAlias": "ethernet0/2", + "ifPhysAddress": "00a0266c9489", + "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": 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": "wlan0/0", + "ifName": "wlan0/0", + "portName": null, + "ifIndex": 3, + "ifSpeed": 54000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1508, + "ifType": "ieee80211", + "ifAlias": "wlan0/0", + "ifPhysAddress": "00a0266c948a", + "ifHardType": null, + "ifLastChange": 2235, + "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": 146873808, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 367387242, + "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": 1080101778, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 3215339762, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 376166, + "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": 3624018, + "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": "atm0/0", + "ifName": "atm0/0", + "portName": null, + "ifIndex": 4, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1536, + "ifType": "atm", + "ifAlias": "atm0/0", + "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": 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": "cellular1/0", + "ifName": "cellular1/0", + "portName": null, + "ifIndex": 5, + "ifSpeed": 460800, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2048, + "ifType": "wwanPP", + "ifAlias": "cellular1/0", + "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": 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": "cellular1/1", + "ifName": "cellular1/1", + "portName": null, + "ifIndex": 6, + "ifSpeed": 460800, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 2048, + "ifType": "wwanPP", + "ifAlias": "cellular1/1", + "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": 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": "bvi0", + "ifName": "bvi0", + "portName": null, + "ifIndex": 7, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "bvi0", + "ifPhysAddress": "00a0266c9488", + "ifHardType": null, + "ifLastChange": 1135, + "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": 165712608, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 385849837, + "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": 92388182, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 2631348942, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 100502, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 149970, + "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": "ethernet0/0.20", + "ifName": "ethernet0/0.20", + "portName": null, + "ifIndex": 8, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "==IXS.18.66365-Fibra@BizVPN==", + "ifPhysAddress": "00a0266c9488", + "ifHardType": null, + "ifLastChange": 1059169, + "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": 385971014, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 165374025, + "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": 1452583851, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 2682119362, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 2, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 4, + "ifOutNUcastPkts_prev": 0, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": 0, + "ifInDiscards_prev": 0, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": 312172, + "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": "== lan", + "port_descr_descr": "Dados ==", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ethernet0/0.9", + "ifName": "ethernet0/0.9", + "portName": null, + "ifIndex": 9, + "ifSpeed": 1000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "l2vlan", + "ifAlias": "== LAN: Dados ==", + "ifPhysAddress": "00a0266c9488", + "ifHardType": null, + "ifLastChange": 1635, + "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": 19049636, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 19609475, + "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": 1766498378, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 3832201827, + "ifOutOctets_prev": 0, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": 171406, + "ifInNUcastPkts_prev": 0, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": 4750897, + "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": "Loopback interface", + "ifName": "Loopback Interface", + "portName": null, + "ifIndex": 10, + "ifSpeed": 10000000, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "Loopback 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": 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": "adsl physical/0 hardware", + "port_descr_descr": "SOFTDSL_V2A2P", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ADSL Physical/0 Hardware: SOFTDSL_V2A2P", + "ifName": "atm0/0", + "portName": null, + "ifIndex": 11, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "adsl", + "ifAlias": "ADSL Physical/0 Hardware: SOFTDSL_V2A2P", + "ifPhysAddress": "000000000000", + "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": 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": "adsl fast channel/0 hardware", + "port_descr_descr": "SOFTDSL_V2A2P", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ADSL Fast Channel/0 Hardware: SOFTDSL_V2A2P", + "ifName": "atm0/0", + "portName": null, + "ifIndex": 12, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "fast", + "ifAlias": "ADSL Fast Channel/0 Hardware: SOFTDSL_V2A2P", + "ifPhysAddress": "000000000000", + "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": 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": "adsl interleave channel/0 hardware", + "port_descr_descr": "SOFTDSL_V2A2P", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "ADSL Interleave Channel/0 Hardware: SOFTDSL_V2A2P", + "ifName": "atm0/0", + "portName": null, + "ifIndex": 13, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "lowerLayerDown", + "ifOperStatus_prev": "lowerLayerDown", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "interleave", + "ifAlias": "ADSL Interleave Channel/0 Hardware: SOFTDSL_V2A2P", + "ifPhysAddress": "000000000000", + "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": 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": "switch port interface", + "port_descr_descr": "Group 1, Port 1; Associated interface", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Switch Port interface: Group 1, Port 1; Associated interface: ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 14, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "iso88023Csmacd", + "ifAlias": "Switch Port interface: Group 1, Port 1; Associated interface: ethernet0/0", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": 414565400, + "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": "switch port interface", + "port_descr_descr": "Group 1, Port 2; Associated interface", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Switch Port interface: Group 1, Port 2; Associated interface: ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 15, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "iso88023Csmacd", + "ifAlias": "Switch Port interface: Group 1, Port 2; Associated interface: ethernet0/0", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": 373321000, + "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": "switch port interface", + "port_descr_descr": "Group 1, Port 3; Associated interface", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Switch Port interface: Group 1, Port 3; Associated interface: ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 16, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "iso88023Csmacd", + "ifAlias": "Switch Port interface: Group 1, Port 3; Associated interface: ethernet0/0", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": 1700, + "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": "switch port interface", + "port_descr_descr": "Group 1, Port 4; Associated interface", + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "Switch Port interface: Group 1, Port 4; Associated interface: ethernet0/0", + "ifName": "ethernet0/0", + "portName": null, + "ifIndex": 17, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "iso88023Csmacd", + "ifAlias": "Switch Port interface: Group 1, Port 4; Associated interface: ethernet0/0", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": 374721300, + "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 + } + ] + } + }, + "wireless": { + "discovery": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "3", + "sensor_type": "teldat", + "sensor_descr": "wlan0/0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 4, + "sensor_prev": null, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": 40, + "sensor_limit_low_warn": 30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3", + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.24.2.1.23.3\"]" + } + ] + }, + "poller": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "clients", + "sensor_index": "3", + "sensor_type": "teldat", + "sensor_descr": "wlan0/0", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 4, + "sensor_prev": 4, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": 40, + "sensor_limit_low_warn": 30, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": "3", + "entPhysicalIndex_measured": null, + "sensor_oids": "[\".1.3.6.1.4.1.2007.4.1.2.2.2.24.2.1.23.3\"]" + } + ] + } + } +} diff --git a/tests/snmpsim/teldat_rs123w-4g.snmprec b/tests/snmpsim/teldat_rs123w-4g.snmprec new file mode 100644 index 0000000000..56d8eb3ddd --- /dev/null +++ b/tests/snmpsim/teldat_rs123w-4g.snmprec @@ -0,0 +1,778 @@ +1.3.6.1.2.1.1.1.0|4|Router model RS123w-4G S/N: RNPFDK019380272 SWL: BASE Teldat (c)1996 - 2019 +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2007.1.1.236 +1.3.6.1.2.1.1.3.0|67|244698300 +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.2.2.1.2.1|4|ethernet0/0 +1.3.6.1.2.1.2.2.1.2.2|4|ethernet0/1 +1.3.6.1.2.1.2.2.1.2.3|4|cellular0/0 +1.3.6.1.2.1.2.2.1.2.4|4|cellular0/1 +1.3.6.1.2.1.2.2.1.2.5|4|cellular0/2 +1.3.6.1.2.1.2.2.1.2.6|4|cellular1/0 +1.3.6.1.2.1.2.2.1.2.7|4|cellular1/1 +1.3.6.1.2.1.2.2.1.2.8|4|cellular1/2 +1.3.6.1.2.1.2.2.1.2.9|4|wlan0/0 +1.3.6.1.2.1.2.2.1.2.10|4|ppp30 +1.3.6.1.2.1.2.2.1.2.11|4|ppp40 +1.3.6.1.2.1.2.2.1.2.12|4|direct-ip1 +1.3.6.1.2.1.2.2.1.2.13|4|ethernet0/1.21 +1.3.6.1.2.1.2.2.1.2.14|4|ethernet0/0.300 +1.3.6.1.2.1.2.2.1.2.15|4|l2tp30 +1.3.6.1.2.1.2.2.1.2.16|4|l2tp40 +1.3.6.1.2.1.2.2.1.2.17|4|ethernet0/0.301 +1.3.6.1.2.1.2.2.1.2.18|4|ethernet0/0.302 +1.3.6.1.2.1.2.2.1.2.19|4|ethernet0/0.303 +1.3.6.1.2.1.2.2.1.2.20|4|ethernet0/0.9 +1.3.6.1.2.1.2.2.1.2.21|4|l2tp30 +1.3.6.1.2.1.2.2.1.2.22|4|l2tp40 +1.3.6.1.2.1.2.2.1.2.64536|4|Loopback interface +1.3.6.1.2.1.2.2.1.2.64537|4|Switch Port interface: Group 1, Port 1; Associated interface: ethernet0/0 +1.3.6.1.2.1.2.2.1.2.64538|4|Switch Port interface: Group 1, Port 2; Associated interface: ethernet0/0 +1.3.6.1.2.1.2.2.1.2.64539|4|Switch Port interface: Group 1, Port 3; Associated interface: ethernet0/0 +1.3.6.1.2.1.2.2.1.2.64540|4|Switch Port interface: Group 1, Port 4; Associated interface: ethernet0/0 +1.3.6.1.2.1.2.2.1.3.1|2|7 +1.3.6.1.2.1.2.2.1.3.2|2|7 +1.3.6.1.2.1.2.2.1.3.3|2|243 +1.3.6.1.2.1.2.2.1.3.4|2|142 +1.3.6.1.2.1.2.2.1.3.5|2|142 +1.3.6.1.2.1.2.2.1.3.6|2|243 +1.3.6.1.2.1.2.2.1.3.7|2|142 +1.3.6.1.2.1.2.2.1.3.8|2|142 +1.3.6.1.2.1.2.2.1.3.9|2|71 +1.3.6.1.2.1.2.2.1.3.10|2|23 +1.3.6.1.2.1.2.2.1.3.11|2|23 +1.3.6.1.2.1.2.2.1.3.12|2|22 +1.3.6.1.2.1.2.2.1.3.13|2|135 +1.3.6.1.2.1.2.2.1.3.14|2|135 +1.3.6.1.2.1.2.2.1.3.15|2|53 +1.3.6.1.2.1.2.2.1.3.16|2|53 +1.3.6.1.2.1.2.2.1.3.17|2|135 +1.3.6.1.2.1.2.2.1.3.18|2|135 +1.3.6.1.2.1.2.2.1.3.19|2|135 +1.3.6.1.2.1.2.2.1.3.20|2|135 +1.3.6.1.2.1.2.2.1.3.21|2|53 +1.3.6.1.2.1.2.2.1.3.22|2|53 +1.3.6.1.2.1.2.2.1.3.64536|2|24 +1.3.6.1.2.1.2.2.1.3.64537|2|7 +1.3.6.1.2.1.2.2.1.3.64538|2|7 +1.3.6.1.2.1.2.2.1.3.64539|2|7 +1.3.6.1.2.1.2.2.1.3.64540|2|7 +1.3.6.1.2.1.2.2.1.4.1|2|1500 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.4.3|2|2048 +1.3.6.1.2.1.2.2.1.4.4|2|2048 +1.3.6.1.2.1.2.2.1.4.5|2|2048 +1.3.6.1.2.1.2.2.1.4.6|2|2048 +1.3.6.1.2.1.2.2.1.4.7|2|2048 +1.3.6.1.2.1.2.2.1.4.8|2|2048 +1.3.6.1.2.1.2.2.1.4.9|2|1508 +1.3.6.1.2.1.2.2.1.4.10|2|2048 +1.3.6.1.2.1.2.2.1.4.11|2|2048 +1.3.6.1.2.1.2.2.1.4.12|2|2048 +1.3.6.1.2.1.2.2.1.4.13|2|1500 +1.3.6.1.2.1.2.2.1.4.14|2|1500 +1.3.6.1.2.1.2.2.1.4.15|2|2048 +1.3.6.1.2.1.2.2.1.4.16|2|2048 +1.3.6.1.2.1.2.2.1.4.17|2|1500 +1.3.6.1.2.1.2.2.1.4.18|2|1500 +1.3.6.1.2.1.2.2.1.4.19|2|1500 +1.3.6.1.2.1.2.2.1.4.20|2|1500 +1.3.6.1.2.1.2.2.1.4.21|2|2048 +1.3.6.1.2.1.2.2.1.4.22|2|2048 +1.3.6.1.2.1.2.2.1.4.64536|2|1500 +1.3.6.1.2.1.2.2.1.4.64537|2|0 +1.3.6.1.2.1.2.2.1.4.64538|2|0 +1.3.6.1.2.1.2.2.1.4.64539|2|0 +1.3.6.1.2.1.2.2.1.4.64540|2|0 +1.3.6.1.2.1.2.2.1.6.1|4x|00A0F96924FE +1.3.6.1.2.1.2.2.1.6.2|4x|00A0F96924FF +1.3.6.1.2.1.2.2.1.6.3|4| +1.3.6.1.2.1.2.2.1.6.4|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.5|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.6|4| +1.3.6.1.2.1.2.2.1.6.7|4x|BE5E200B0104 +1.3.6.1.2.1.2.2.1.6.8|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.9|4x|00A0F9692500 +1.3.6.1.2.1.2.2.1.6.10|4x|00000000000000000000000000000000 +1.3.6.1.2.1.2.2.1.6.11|4x|00000000000000000000000000000000 +1.3.6.1.2.1.2.2.1.6.12|4x|BE5E200B0104 +1.3.6.1.2.1.2.2.1.6.13|4x|00A0F96924FF +1.3.6.1.2.1.2.2.1.6.14|4x|00A0F96924FE +1.3.6.1.2.1.2.2.1.6.15|4| +1.3.6.1.2.1.2.2.1.6.16|4| +1.3.6.1.2.1.2.2.1.6.17|4x|00A0F969280A +1.3.6.1.2.1.2.2.1.6.18|4x|00A0F969280A +1.3.6.1.2.1.2.2.1.6.19|4x|00A0F969280A +1.3.6.1.2.1.2.2.1.6.20|4x|00A0F969280A +1.3.6.1.2.1.2.2.1.6.21|4| +1.3.6.1.2.1.2.2.1.6.22|4| +1.3.6.1.2.1.2.2.1.6.64536|4| +1.3.6.1.2.1.2.2.1.6.64537|4x|00000000000000000000000000000000 +1.3.6.1.2.1.2.2.1.6.64538|4x|00000000000000000000000000000000 +1.3.6.1.2.1.2.2.1.6.64539|4x|00000000000000000000000000000000 +1.3.6.1.2.1.2.2.1.6.64540|4x|00000000000000000000000000000000 +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.2|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.5|2|1 +1.3.6.1.2.1.2.2.1.7.6|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.8|2|1 +1.3.6.1.2.1.2.2.1.7.9|2|2 +1.3.6.1.2.1.2.2.1.7.10|2|1 +1.3.6.1.2.1.2.2.1.7.11|2|1 +1.3.6.1.2.1.2.2.1.7.12|2|1 +1.3.6.1.2.1.2.2.1.7.13|2|1 +1.3.6.1.2.1.2.2.1.7.14|2|1 +1.3.6.1.2.1.2.2.1.7.15|2|1 +1.3.6.1.2.1.2.2.1.7.16|2|1 +1.3.6.1.2.1.2.2.1.7.17|2|1 +1.3.6.1.2.1.2.2.1.7.18|2|1 +1.3.6.1.2.1.2.2.1.7.19|2|1 +1.3.6.1.2.1.2.2.1.7.20|2|1 +1.3.6.1.2.1.2.2.1.7.21|2|1 +1.3.6.1.2.1.2.2.1.7.22|2|1 +1.3.6.1.2.1.2.2.1.7.64536|2|1 +1.3.6.1.2.1.2.2.1.7.64537|2|1 +1.3.6.1.2.1.2.2.1.7.64538|2|1 +1.3.6.1.2.1.2.2.1.7.64539|2|1 +1.3.6.1.2.1.2.2.1.7.64540|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.2|2|1 +1.3.6.1.2.1.2.2.1.8.3|2|2 +1.3.6.1.2.1.2.2.1.8.4|2|2 +1.3.6.1.2.1.2.2.1.8.5|2|2 +1.3.6.1.2.1.2.2.1.8.6|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.8|2|2 +1.3.6.1.2.1.2.2.1.8.9|2|2 +1.3.6.1.2.1.2.2.1.8.10|2|7 +1.3.6.1.2.1.2.2.1.8.11|2|7 +1.3.6.1.2.1.2.2.1.8.12|2|1 +1.3.6.1.2.1.2.2.1.8.13|2|1 +1.3.6.1.2.1.2.2.1.8.14|2|1 +1.3.6.1.2.1.2.2.1.8.15|2|2 +1.3.6.1.2.1.2.2.1.8.16|2|2 +1.3.6.1.2.1.2.2.1.8.17|2|1 +1.3.6.1.2.1.2.2.1.8.18|2|1 +1.3.6.1.2.1.2.2.1.8.19|2|1 +1.3.6.1.2.1.2.2.1.8.20|2|1 +1.3.6.1.2.1.2.2.1.8.21|2|2 +1.3.6.1.2.1.2.2.1.8.22|2|2 +1.3.6.1.2.1.2.2.1.8.64536|2|1 +1.3.6.1.2.1.2.2.1.8.64537|2|1 +1.3.6.1.2.1.2.2.1.8.64538|2|2 +1.3.6.1.2.1.2.2.1.8.64539|2|2 +1.3.6.1.2.1.2.2.1.8.64540|2|2 +1.3.6.1.2.1.2.2.1.9.1|67|560 +1.3.6.1.2.1.2.2.1.9.2|67|166949 +1.3.6.1.2.1.2.2.1.9.3|67|0 +1.3.6.1.2.1.2.2.1.9.4|67|406 +1.3.6.1.2.1.2.2.1.9.5|67|406 +1.3.6.1.2.1.2.2.1.9.6|67|3914 +1.3.6.1.2.1.2.2.1.9.7|67|4006 +1.3.6.1.2.1.2.2.1.9.8|67|406 +1.3.6.1.2.1.2.2.1.9.9|67|0 +1.3.6.1.2.1.2.2.1.9.10|67|0 +1.3.6.1.2.1.2.2.1.9.11|67|0 +1.3.6.1.2.1.2.2.1.9.12|67|4906 +1.3.6.1.2.1.2.2.1.9.13|67|167009 +1.3.6.1.2.1.2.2.1.9.14|67|611 +1.3.6.1.2.1.2.2.1.9.15|67|0 +1.3.6.1.2.1.2.2.1.9.16|67|0 +1.3.6.1.2.1.2.2.1.9.17|67|609 +1.3.6.1.2.1.2.2.1.9.18|67|609 +1.3.6.1.2.1.2.2.1.9.19|67|609 +1.3.6.1.2.1.2.2.1.9.20|67|609 +1.3.6.1.2.1.2.2.1.9.21|67|11630 +1.3.6.1.2.1.2.2.1.9.22|67|6507 +1.3.6.1.2.1.2.2.1.9.64536|67|0 +1.3.6.1.2.1.2.2.1.9.64537|67|500 +1.3.6.1.2.1.2.2.1.9.64538|67|0 +1.3.6.1.2.1.2.2.1.9.64539|67|0 +1.3.6.1.2.1.2.2.1.9.64540|67|0 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|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.5|65|0 +1.3.6.1.2.1.2.2.1.13.6|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.8|65|0 +1.3.6.1.2.1.2.2.1.13.9|65|0 +1.3.6.1.2.1.2.2.1.13.10|65|0 +1.3.6.1.2.1.2.2.1.13.11|65|0 +1.3.6.1.2.1.2.2.1.13.12|65|0 +1.3.6.1.2.1.2.2.1.13.13|65|0 +1.3.6.1.2.1.2.2.1.13.14|65|0 +1.3.6.1.2.1.2.2.1.13.15|65|0 +1.3.6.1.2.1.2.2.1.13.16|65|0 +1.3.6.1.2.1.2.2.1.13.17|65|0 +1.3.6.1.2.1.2.2.1.13.18|65|0 +1.3.6.1.2.1.2.2.1.13.19|65|0 +1.3.6.1.2.1.2.2.1.13.20|65|0 +1.3.6.1.2.1.2.2.1.13.21|65|0 +1.3.6.1.2.1.2.2.1.13.22|65|0 +1.3.6.1.2.1.2.2.1.13.64536|65|0 +1.3.6.1.2.1.2.2.1.13.64537|65|0 +1.3.6.1.2.1.2.2.1.13.64538|65|0 +1.3.6.1.2.1.2.2.1.13.64539|65|0 +1.3.6.1.2.1.2.2.1.13.64540|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.2|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.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|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.8|65|0 +1.3.6.1.2.1.2.2.1.14.9|65|0 +1.3.6.1.2.1.2.2.1.14.10|65|0 +1.3.6.1.2.1.2.2.1.14.11|65|0 +1.3.6.1.2.1.2.2.1.14.12|65|0 +1.3.6.1.2.1.2.2.1.14.13|65|0 +1.3.6.1.2.1.2.2.1.14.14|65|0 +1.3.6.1.2.1.2.2.1.14.15|65|0 +1.3.6.1.2.1.2.2.1.14.16|65|0 +1.3.6.1.2.1.2.2.1.14.17|65|8 +1.3.6.1.2.1.2.2.1.14.18|65|0 +1.3.6.1.2.1.2.2.1.14.19|65|0 +1.3.6.1.2.1.2.2.1.14.20|65|0 +1.3.6.1.2.1.2.2.1.14.21|65|0 +1.3.6.1.2.1.2.2.1.14.22|65|0 +1.3.6.1.2.1.2.2.1.14.64536|65|0 +1.3.6.1.2.1.2.2.1.14.64537|65|0 +1.3.6.1.2.1.2.2.1.14.64538|65|0 +1.3.6.1.2.1.2.2.1.14.64539|65|0 +1.3.6.1.2.1.2.2.1.14.64540|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.2|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.5|65|0 +1.3.6.1.2.1.2.2.1.19.6|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.8|65|0 +1.3.6.1.2.1.2.2.1.19.9|65|0 +1.3.6.1.2.1.2.2.1.19.10|65|0 +1.3.6.1.2.1.2.2.1.19.11|65|0 +1.3.6.1.2.1.2.2.1.19.12|65|0 +1.3.6.1.2.1.2.2.1.19.13|65|0 +1.3.6.1.2.1.2.2.1.19.14|65|0 +1.3.6.1.2.1.2.2.1.19.15|65|0 +1.3.6.1.2.1.2.2.1.19.16|65|0 +1.3.6.1.2.1.2.2.1.19.17|65|0 +1.3.6.1.2.1.2.2.1.19.18|65|0 +1.3.6.1.2.1.2.2.1.19.19|65|0 +1.3.6.1.2.1.2.2.1.19.20|65|0 +1.3.6.1.2.1.2.2.1.19.21|65|0 +1.3.6.1.2.1.2.2.1.19.22|65|0 +1.3.6.1.2.1.2.2.1.19.64536|65|0 +1.3.6.1.2.1.2.2.1.19.64537|65|0 +1.3.6.1.2.1.2.2.1.19.64538|65|0 +1.3.6.1.2.1.2.2.1.19.64539|65|0 +1.3.6.1.2.1.2.2.1.19.64540|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.2|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.5|65|0 +1.3.6.1.2.1.2.2.1.20.6|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.8|65|0 +1.3.6.1.2.1.2.2.1.20.9|65|0 +1.3.6.1.2.1.2.2.1.20.10|65|0 +1.3.6.1.2.1.2.2.1.20.11|65|0 +1.3.6.1.2.1.2.2.1.20.12|65|0 +1.3.6.1.2.1.2.2.1.20.13|65|2 +1.3.6.1.2.1.2.2.1.20.14|65|0 +1.3.6.1.2.1.2.2.1.20.15|65|0 +1.3.6.1.2.1.2.2.1.20.16|65|0 +1.3.6.1.2.1.2.2.1.20.17|65|0 +1.3.6.1.2.1.2.2.1.20.18|65|0 +1.3.6.1.2.1.2.2.1.20.19|65|0 +1.3.6.1.2.1.2.2.1.20.20|65|0 +1.3.6.1.2.1.2.2.1.20.21|65|0 +1.3.6.1.2.1.2.2.1.20.22|65|0 +1.3.6.1.2.1.2.2.1.20.64536|65|0 +1.3.6.1.2.1.2.2.1.20.64537|65|0 +1.3.6.1.2.1.2.2.1.20.64538|65|0 +1.3.6.1.2.1.2.2.1.20.64539|65|0 +1.3.6.1.2.1.2.2.1.20.64540|65|0 +1.3.6.1.2.1.10.7.2.1.19.1|2|3 +1.3.6.1.2.1.10.7.2.1.19.2|2|3 +1.3.6.1.2.1.31.1.1.1.1.1|4|ethernet0/0 +1.3.6.1.2.1.31.1.1.1.1.2|4|ethernet0/1 +1.3.6.1.2.1.31.1.1.1.1.3|4|cellular0/0 +1.3.6.1.2.1.31.1.1.1.1.4|4|cellular0/1 +1.3.6.1.2.1.31.1.1.1.1.5|4|cellular0/2 +1.3.6.1.2.1.31.1.1.1.1.6|4|cellular1/0 +1.3.6.1.2.1.31.1.1.1.1.7|4|cellular1/1 +1.3.6.1.2.1.31.1.1.1.1.8|4|cellular1/2 +1.3.6.1.2.1.31.1.1.1.1.9|4|wlan0/0 +1.3.6.1.2.1.31.1.1.1.1.10|4|ppp30 +1.3.6.1.2.1.31.1.1.1.1.11|4|ppp40 +1.3.6.1.2.1.31.1.1.1.1.12|4|direct-ip1 +1.3.6.1.2.1.31.1.1.1.1.13|4|ethernet0/1.21 +1.3.6.1.2.1.31.1.1.1.1.14|4|ethernet0/0.300 +1.3.6.1.2.1.31.1.1.1.1.15|4|l2tp30 +1.3.6.1.2.1.31.1.1.1.1.16|4|l2tp40 +1.3.6.1.2.1.31.1.1.1.1.17|4|ethernet0/0.301 +1.3.6.1.2.1.31.1.1.1.1.18|4|ethernet0/0.302 +1.3.6.1.2.1.31.1.1.1.1.19|4|ethernet0/0.303 +1.3.6.1.2.1.31.1.1.1.1.20|4|ethernet0/0.9 +1.3.6.1.2.1.31.1.1.1.1.21|4|l2tp30 +1.3.6.1.2.1.31.1.1.1.1.22|4|l2tp40 +1.3.6.1.2.1.31.1.1.1.1.64536|4|Loopback Interface +1.3.6.1.2.1.31.1.1.1.1.64537|4|ethernet0/0 +1.3.6.1.2.1.31.1.1.1.1.64538|4|ethernet0/0 +1.3.6.1.2.1.31.1.1.1.1.64539|4|ethernet0/0 +1.3.6.1.2.1.31.1.1.1.1.64540|4|ethernet0/0 +1.3.6.1.2.1.31.1.1.1.2.1|65|1304970 +1.3.6.1.2.1.31.1.1.1.2.2|65|0 +1.3.6.1.2.1.31.1.1.1.2.3|65|0 +1.3.6.1.2.1.31.1.1.1.2.4|65|0 +1.3.6.1.2.1.31.1.1.1.2.5|65|0 +1.3.6.1.2.1.31.1.1.1.2.6|65|0 +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.8|65|0 +1.3.6.1.2.1.31.1.1.1.2.9|65|0 +1.3.6.1.2.1.31.1.1.1.2.10|65|0 +1.3.6.1.2.1.31.1.1.1.2.11|65|0 +1.3.6.1.2.1.31.1.1.1.2.12|65|0 +1.3.6.1.2.1.31.1.1.1.2.13|65|0 +1.3.6.1.2.1.31.1.1.1.2.14|65|1304969 +1.3.6.1.2.1.31.1.1.1.2.15|65|0 +1.3.6.1.2.1.31.1.1.1.2.16|65|0 +1.3.6.1.2.1.31.1.1.1.2.17|65|266312 +1.3.6.1.2.1.31.1.1.1.2.18|65|0 +1.3.6.1.2.1.31.1.1.1.2.19|65|405089 +1.3.6.1.2.1.31.1.1.1.2.20|65|0 +1.3.6.1.2.1.31.1.1.1.2.21|65|0 +1.3.6.1.2.1.31.1.1.1.2.22|65|0 +1.3.6.1.2.1.31.1.1.1.2.64536|65|0 +1.3.6.1.2.1.31.1.1.1.2.64537|65|0 +1.3.6.1.2.1.31.1.1.1.2.64538|65|0 +1.3.6.1.2.1.31.1.1.1.2.64539|65|0 +1.3.6.1.2.1.31.1.1.1.2.64540|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.2|65|0 +1.3.6.1.2.1.31.1.1.1.3.3|65|0 +1.3.6.1.2.1.31.1.1.1.3.4|65|0 +1.3.6.1.2.1.31.1.1.1.3.5|65|0 +1.3.6.1.2.1.31.1.1.1.3.6|65|0 +1.3.6.1.2.1.31.1.1.1.3.7|65|0 +1.3.6.1.2.1.31.1.1.1.3.8|65|0 +1.3.6.1.2.1.31.1.1.1.3.9|65|0 +1.3.6.1.2.1.31.1.1.1.3.10|65|0 +1.3.6.1.2.1.31.1.1.1.3.11|65|0 +1.3.6.1.2.1.31.1.1.1.3.12|65|0 +1.3.6.1.2.1.31.1.1.1.3.13|65|0 +1.3.6.1.2.1.31.1.1.1.3.14|65|0 +1.3.6.1.2.1.31.1.1.1.3.15|65|0 +1.3.6.1.2.1.31.1.1.1.3.16|65|0 +1.3.6.1.2.1.31.1.1.1.3.17|65|216087 +1.3.6.1.2.1.31.1.1.1.3.18|65|164169 +1.3.6.1.2.1.31.1.1.1.3.19|65|55641 +1.3.6.1.2.1.31.1.1.1.3.20|65|0 +1.3.6.1.2.1.31.1.1.1.3.21|65|0 +1.3.6.1.2.1.31.1.1.1.3.22|65|0 +1.3.6.1.2.1.31.1.1.1.3.64536|65|0 +1.3.6.1.2.1.31.1.1.1.3.64537|65|0 +1.3.6.1.2.1.31.1.1.1.3.64538|65|0 +1.3.6.1.2.1.31.1.1.1.3.64539|65|0 +1.3.6.1.2.1.31.1.1.1.3.64540|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.2|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.5|65|0 +1.3.6.1.2.1.31.1.1.1.4.6|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.8|65|0 +1.3.6.1.2.1.31.1.1.1.4.9|65|0 +1.3.6.1.2.1.31.1.1.1.4.10|65|0 +1.3.6.1.2.1.31.1.1.1.4.11|65|0 +1.3.6.1.2.1.31.1.1.1.4.12|65|0 +1.3.6.1.2.1.31.1.1.1.4.13|65|0 +1.3.6.1.2.1.31.1.1.1.4.14|65|0 +1.3.6.1.2.1.31.1.1.1.4.15|65|0 +1.3.6.1.2.1.31.1.1.1.4.16|65|0 +1.3.6.1.2.1.31.1.1.1.4.17|65|0 +1.3.6.1.2.1.31.1.1.1.4.18|65|0 +1.3.6.1.2.1.31.1.1.1.4.19|65|0 +1.3.6.1.2.1.31.1.1.1.4.20|65|0 +1.3.6.1.2.1.31.1.1.1.4.21|65|0 +1.3.6.1.2.1.31.1.1.1.4.22|65|0 +1.3.6.1.2.1.31.1.1.1.4.64536|65|0 +1.3.6.1.2.1.31.1.1.1.4.64537|65|0 +1.3.6.1.2.1.31.1.1.1.4.64538|65|0 +1.3.6.1.2.1.31.1.1.1.4.64539|65|0 +1.3.6.1.2.1.31.1.1.1.4.64540|65|0 +1.3.6.1.2.1.31.1.1.1.5.1|65|1 +1.3.6.1.2.1.31.1.1.1.5.2|65|3 +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.5|65|0 +1.3.6.1.2.1.31.1.1.1.5.6|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.8|65|0 +1.3.6.1.2.1.31.1.1.1.5.9|65|0 +1.3.6.1.2.1.31.1.1.1.5.10|65|0 +1.3.6.1.2.1.31.1.1.1.5.11|65|0 +1.3.6.1.2.1.31.1.1.1.5.12|65|0 +1.3.6.1.2.1.31.1.1.1.5.13|65|3 +1.3.6.1.2.1.31.1.1.1.5.14|65|1 +1.3.6.1.2.1.31.1.1.1.5.15|65|0 +1.3.6.1.2.1.31.1.1.1.5.16|65|0 +1.3.6.1.2.1.31.1.1.1.5.17|65|156691 +1.3.6.1.2.1.31.1.1.1.5.18|65|18 +1.3.6.1.2.1.31.1.1.1.5.19|65|9941 +1.3.6.1.2.1.31.1.1.1.5.20|65|0 +1.3.6.1.2.1.31.1.1.1.5.21|65|0 +1.3.6.1.2.1.31.1.1.1.5.22|65|0 +1.3.6.1.2.1.31.1.1.1.5.64536|65|0 +1.3.6.1.2.1.31.1.1.1.5.64537|65|0 +1.3.6.1.2.1.31.1.1.1.5.64538|65|0 +1.3.6.1.2.1.31.1.1.1.5.64539|65|0 +1.3.6.1.2.1.31.1.1.1.5.64540|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|2186535162 +1.3.6.1.2.1.31.1.1.1.6.2|70|5394281116 +1.3.6.1.2.1.31.1.1.1.6.3|70|0 +1.3.6.1.2.1.31.1.1.1.6.4|70|0 +1.3.6.1.2.1.31.1.1.1.6.5|70|0 +1.3.6.1.2.1.31.1.1.1.6.6|70|22922485 +1.3.6.1.2.1.31.1.1.1.6.7|70|13906586 +1.3.6.1.2.1.31.1.1.1.6.8|70|0 +1.3.6.1.2.1.31.1.1.1.6.9|70|0 +1.3.6.1.2.1.31.1.1.1.6.10|70|0 +1.3.6.1.2.1.31.1.1.1.6.11|70|0 +1.3.6.1.2.1.31.1.1.1.6.12|70|12392561 +1.3.6.1.2.1.31.1.1.1.6.13|70|5467303451 +1.3.6.1.2.1.31.1.1.1.6.14|70|2232569748 +1.3.6.1.2.1.31.1.1.1.6.15|70|0 +1.3.6.1.2.1.31.1.1.1.6.16|70|0 +1.3.6.1.2.1.31.1.1.1.6.17|70|705421909 +1.3.6.1.2.1.31.1.1.1.6.18|70|1079074857 +1.3.6.1.2.1.31.1.1.1.6.19|70|3843930696 +1.3.6.1.2.1.31.1.1.1.6.20|70|0 +1.3.6.1.2.1.31.1.1.1.6.21|70|225111 +1.3.6.1.2.1.31.1.1.1.6.22|70|16788 +1.3.6.1.2.1.31.1.1.1.6.64536|70|0 +1.3.6.1.2.1.31.1.1.1.6.64537|70|0 +1.3.6.1.2.1.31.1.1.1.6.64538|70|0 +1.3.6.1.2.1.31.1.1.1.6.64539|70|0 +1.3.6.1.2.1.31.1.1.1.6.64540|70|0 +1.3.6.1.2.1.31.1.1.1.7.1|70|5969961 +1.3.6.1.2.1.31.1.1.1.7.2|70|8586022 +1.3.6.1.2.1.31.1.1.1.7.3|70|0 +1.3.6.1.2.1.31.1.1.1.7.4|70|0 +1.3.6.1.2.1.31.1.1.1.7.5|70|0 +1.3.6.1.2.1.31.1.1.1.7.6|70|327707 +1.3.6.1.2.1.31.1.1.1.7.7|70|108084 +1.3.6.1.2.1.31.1.1.1.7.8|70|0 +1.3.6.1.2.1.31.1.1.1.7.9|70|0 +1.3.6.1.2.1.31.1.1.1.7.10|70|0 +1.3.6.1.2.1.31.1.1.1.7.11|70|0 +1.3.6.1.2.1.31.1.1.1.7.12|70|108071 +1.3.6.1.2.1.31.1.1.1.7.13|70|8586013 +1.3.6.1.2.1.31.1.1.1.7.14|70|5969961 +1.3.6.1.2.1.31.1.1.1.7.15|70|0 +1.3.6.1.2.1.31.1.1.1.7.16|70|0 +1.3.6.1.2.1.31.1.1.1.7.17|70|1973485 +1.3.6.1.2.1.31.1.1.1.7.18|70|5926849 +1.3.6.1.2.1.31.1.1.1.7.19|70|13562815 +1.3.6.1.2.1.31.1.1.1.7.20|70|0 +1.3.6.1.2.1.31.1.1.1.7.21|70|388 +1.3.6.1.2.1.31.1.1.1.7.22|70|51 +1.3.6.1.2.1.31.1.1.1.7.64536|70|0 +1.3.6.1.2.1.31.1.1.1.7.64537|70|0 +1.3.6.1.2.1.31.1.1.1.7.64538|70|0 +1.3.6.1.2.1.31.1.1.1.7.64539|70|0 +1.3.6.1.2.1.31.1.1.1.7.64540|70|0 +1.3.6.1.2.1.31.1.1.1.8.1|70|1304970 +1.3.6.1.2.1.31.1.1.1.8.2|70|0 +1.3.6.1.2.1.31.1.1.1.8.3|70|0 +1.3.6.1.2.1.31.1.1.1.8.4|70|0 +1.3.6.1.2.1.31.1.1.1.8.5|70|0 +1.3.6.1.2.1.31.1.1.1.8.6|70|0 +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.8|70|0 +1.3.6.1.2.1.31.1.1.1.8.9|70|0 +1.3.6.1.2.1.31.1.1.1.8.10|70|0 +1.3.6.1.2.1.31.1.1.1.8.11|70|0 +1.3.6.1.2.1.31.1.1.1.8.12|70|0 +1.3.6.1.2.1.31.1.1.1.8.13|70|0 +1.3.6.1.2.1.31.1.1.1.8.14|70|1304969 +1.3.6.1.2.1.31.1.1.1.8.15|70|0 +1.3.6.1.2.1.31.1.1.1.8.16|70|0 +1.3.6.1.2.1.31.1.1.1.8.17|70|266312 +1.3.6.1.2.1.31.1.1.1.8.18|70|0 +1.3.6.1.2.1.31.1.1.1.8.19|70|405089 +1.3.6.1.2.1.31.1.1.1.8.20|70|0 +1.3.6.1.2.1.31.1.1.1.8.21|70|0 +1.3.6.1.2.1.31.1.1.1.8.22|70|0 +1.3.6.1.2.1.31.1.1.1.8.64536|70|0 +1.3.6.1.2.1.31.1.1.1.8.64537|70|0 +1.3.6.1.2.1.31.1.1.1.8.64538|70|0 +1.3.6.1.2.1.31.1.1.1.8.64539|70|0 +1.3.6.1.2.1.31.1.1.1.8.64540|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.2|70|0 +1.3.6.1.2.1.31.1.1.1.9.3|70|0 +1.3.6.1.2.1.31.1.1.1.9.4|70|0 +1.3.6.1.2.1.31.1.1.1.9.5|70|0 +1.3.6.1.2.1.31.1.1.1.9.6|70|0 +1.3.6.1.2.1.31.1.1.1.9.7|70|0 +1.3.6.1.2.1.31.1.1.1.9.8|70|0 +1.3.6.1.2.1.31.1.1.1.9.9|70|0 +1.3.6.1.2.1.31.1.1.1.9.10|70|0 +1.3.6.1.2.1.31.1.1.1.9.11|70|0 +1.3.6.1.2.1.31.1.1.1.9.12|70|0 +1.3.6.1.2.1.31.1.1.1.9.13|70|0 +1.3.6.1.2.1.31.1.1.1.9.14|70|0 +1.3.6.1.2.1.31.1.1.1.9.15|70|0 +1.3.6.1.2.1.31.1.1.1.9.16|70|0 +1.3.6.1.2.1.31.1.1.1.9.17|70|216087 +1.3.6.1.2.1.31.1.1.1.9.18|70|164169 +1.3.6.1.2.1.31.1.1.1.9.19|70|55641 +1.3.6.1.2.1.31.1.1.1.9.20|70|0 +1.3.6.1.2.1.31.1.1.1.9.21|70|0 +1.3.6.1.2.1.31.1.1.1.9.22|70|0 +1.3.6.1.2.1.31.1.1.1.9.64536|70|0 +1.3.6.1.2.1.31.1.1.1.9.64537|70|0 +1.3.6.1.2.1.31.1.1.1.9.64538|70|0 +1.3.6.1.2.1.31.1.1.1.9.64539|70|0 +1.3.6.1.2.1.31.1.1.1.9.64540|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|5182480647 +1.3.6.1.2.1.31.1.1.1.10.2|70|2500185570 +1.3.6.1.2.1.31.1.1.1.10.3|70|0 +1.3.6.1.2.1.31.1.1.1.10.4|70|0 +1.3.6.1.2.1.31.1.1.1.10.5|70|0 +1.3.6.1.2.1.31.1.1.1.10.6|70|6382266 +1.3.6.1.2.1.31.1.1.1.10.7|70|0 +1.3.6.1.2.1.31.1.1.1.10.8|70|0 +1.3.6.1.2.1.31.1.1.1.10.9|70|0 +1.3.6.1.2.1.31.1.1.1.10.10|70|0 +1.3.6.1.2.1.31.1.1.1.10.11|70|0 +1.3.6.1.2.1.31.1.1.1.10.12|70|0 +1.3.6.1.2.1.31.1.1.1.10.13|70|2464041292 +1.3.6.1.2.1.31.1.1.1.10.14|70|5182480647 +1.3.6.1.2.1.31.1.1.1.10.15|70|0 +1.3.6.1.2.1.31.1.1.1.10.16|70|0 +1.3.6.1.2.1.31.1.1.1.10.17|70|2402290473 +1.3.6.1.2.1.31.1.1.1.10.18|70|1373959023 +1.3.6.1.2.1.31.1.1.1.10.19|70|57165143424 +1.3.6.1.2.1.31.1.1.1.10.20|70|0 +1.3.6.1.2.1.31.1.1.1.10.21|70|247651 +1.3.6.1.2.1.31.1.1.1.10.22|70|149 +1.3.6.1.2.1.31.1.1.1.10.64536|70|0 +1.3.6.1.2.1.31.1.1.1.10.64537|70|0 +1.3.6.1.2.1.31.1.1.1.10.64538|70|0 +1.3.6.1.2.1.31.1.1.1.10.64539|70|0 +1.3.6.1.2.1.31.1.1.1.10.64540|70|0 +1.3.6.1.2.1.31.1.1.1.11.1|70|6613778 +1.3.6.1.2.1.31.1.1.1.11.2|70|9036279 +1.3.6.1.2.1.31.1.1.1.11.3|70|0 +1.3.6.1.2.1.31.1.1.1.11.4|70|0 +1.3.6.1.2.1.31.1.1.1.11.5|70|0 +1.3.6.1.2.1.31.1.1.1.11.6|70|163661 +1.3.6.1.2.1.31.1.1.1.11.7|70|0 +1.3.6.1.2.1.31.1.1.1.11.8|70|0 +1.3.6.1.2.1.31.1.1.1.11.9|70|0 +1.3.6.1.2.1.31.1.1.1.11.10|70|0 +1.3.6.1.2.1.31.1.1.1.11.11|70|0 +1.3.6.1.2.1.31.1.1.1.11.12|70|0 +1.3.6.1.2.1.31.1.1.1.11.13|70|9036286 +1.3.6.1.2.1.31.1.1.1.11.14|70|6613778 +1.3.6.1.2.1.31.1.1.1.11.15|70|0 +1.3.6.1.2.1.31.1.1.1.11.16|70|0 +1.3.6.1.2.1.31.1.1.1.11.17|70|2841890 +1.3.6.1.2.1.31.1.1.1.11.18|70|5124477 +1.3.6.1.2.1.31.1.1.1.11.19|70|41725176 +1.3.6.1.2.1.31.1.1.1.11.20|70|0 +1.3.6.1.2.1.31.1.1.1.11.21|70|1141 +1.3.6.1.2.1.31.1.1.1.11.22|70|10 +1.3.6.1.2.1.31.1.1.1.11.64536|70|0 +1.3.6.1.2.1.31.1.1.1.11.64537|70|0 +1.3.6.1.2.1.31.1.1.1.11.64538|70|0 +1.3.6.1.2.1.31.1.1.1.11.64539|70|0 +1.3.6.1.2.1.31.1.1.1.11.64540|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.2|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.5|70|0 +1.3.6.1.2.1.31.1.1.1.12.6|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.8|70|0 +1.3.6.1.2.1.31.1.1.1.12.9|70|0 +1.3.6.1.2.1.31.1.1.1.12.10|70|0 +1.3.6.1.2.1.31.1.1.1.12.11|70|0 +1.3.6.1.2.1.31.1.1.1.12.12|70|0 +1.3.6.1.2.1.31.1.1.1.12.13|70|0 +1.3.6.1.2.1.31.1.1.1.12.14|70|0 +1.3.6.1.2.1.31.1.1.1.12.15|70|0 +1.3.6.1.2.1.31.1.1.1.12.16|70|0 +1.3.6.1.2.1.31.1.1.1.12.17|70|0 +1.3.6.1.2.1.31.1.1.1.12.18|70|0 +1.3.6.1.2.1.31.1.1.1.12.19|70|0 +1.3.6.1.2.1.31.1.1.1.12.20|70|0 +1.3.6.1.2.1.31.1.1.1.12.21|70|0 +1.3.6.1.2.1.31.1.1.1.12.22|70|0 +1.3.6.1.2.1.31.1.1.1.12.64536|70|0 +1.3.6.1.2.1.31.1.1.1.12.64537|70|0 +1.3.6.1.2.1.31.1.1.1.12.64538|70|0 +1.3.6.1.2.1.31.1.1.1.12.64539|70|0 +1.3.6.1.2.1.31.1.1.1.12.64540|70|0 +1.3.6.1.2.1.31.1.1.1.13.1|70|1 +1.3.6.1.2.1.31.1.1.1.13.2|70|3 +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.5|70|0 +1.3.6.1.2.1.31.1.1.1.13.6|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.8|70|0 +1.3.6.1.2.1.31.1.1.1.13.9|70|0 +1.3.6.1.2.1.31.1.1.1.13.10|70|0 +1.3.6.1.2.1.31.1.1.1.13.11|70|0 +1.3.6.1.2.1.31.1.1.1.13.12|70|0 +1.3.6.1.2.1.31.1.1.1.13.13|70|3 +1.3.6.1.2.1.31.1.1.1.13.14|70|1 +1.3.6.1.2.1.31.1.1.1.13.15|70|0 +1.3.6.1.2.1.31.1.1.1.13.16|70|0 +1.3.6.1.2.1.31.1.1.1.13.17|70|156691 +1.3.6.1.2.1.31.1.1.1.13.18|70|18 +1.3.6.1.2.1.31.1.1.1.13.19|70|9941 +1.3.6.1.2.1.31.1.1.1.13.20|70|0 +1.3.6.1.2.1.31.1.1.1.13.21|70|0 +1.3.6.1.2.1.31.1.1.1.13.22|70|0 +1.3.6.1.2.1.31.1.1.1.13.64536|70|0 +1.3.6.1.2.1.31.1.1.1.13.64537|70|0 +1.3.6.1.2.1.31.1.1.1.13.64538|70|0 +1.3.6.1.2.1.31.1.1.1.13.64539|70|0 +1.3.6.1.2.1.31.1.1.1.13.64540|70|0 +1.3.6.1.2.1.31.1.1.1.15.1|66|1000 +1.3.6.1.2.1.31.1.1.1.15.2|66|1000 +1.3.6.1.2.1.31.1.1.1.15.3|66|0 +1.3.6.1.2.1.31.1.1.1.15.4|66|0 +1.3.6.1.2.1.31.1.1.1.15.5|66|0 +1.3.6.1.2.1.31.1.1.1.15.6|66|0 +1.3.6.1.2.1.31.1.1.1.15.7|66|1 +1.3.6.1.2.1.31.1.1.1.15.8|66|0 +1.3.6.1.2.1.31.1.1.1.15.9|66|0 +1.3.6.1.2.1.31.1.1.1.15.10|66|0 +1.3.6.1.2.1.31.1.1.1.15.11|66|0 +1.3.6.1.2.1.31.1.1.1.15.12|66|1 +1.3.6.1.2.1.31.1.1.1.15.13|66|1000 +1.3.6.1.2.1.31.1.1.1.15.14|66|1000 +1.3.6.1.2.1.31.1.1.1.15.15|66|0 +1.3.6.1.2.1.31.1.1.1.15.16|66|0 +1.3.6.1.2.1.31.1.1.1.15.17|66|1000 +1.3.6.1.2.1.31.1.1.1.15.18|66|1000 +1.3.6.1.2.1.31.1.1.1.15.19|66|1000 +1.3.6.1.2.1.31.1.1.1.15.20|66|1000 +1.3.6.1.2.1.31.1.1.1.15.21|66|0 +1.3.6.1.2.1.31.1.1.1.15.22|66|0 +1.3.6.1.2.1.31.1.1.1.15.64536|66|10 +1.3.6.1.2.1.31.1.1.1.15.64537|66|0 +1.3.6.1.2.1.31.1.1.1.15.64538|66|0 +1.3.6.1.2.1.31.1.1.1.15.64539|66|0 +1.3.6.1.2.1.31.1.1.1.15.64540|66|0 +1.3.6.1.2.1.31.1.1.1.18.1|4| +1.3.6.1.2.1.31.1.1.1.18.2|4| +1.3.6.1.2.1.31.1.1.1.18.3|4| +1.3.6.1.2.1.31.1.1.1.18.4|4| +1.3.6.1.2.1.31.1.1.1.18.5|4| +1.3.6.1.2.1.31.1.1.1.18.6|4| +1.3.6.1.2.1.31.1.1.1.18.7|4| +1.3.6.1.2.1.31.1.1.1.18.8|4| +1.3.6.1.2.1.31.1.1.1.18.9|4| +1.3.6.1.2.1.31.1.1.1.18.10|4| +1.3.6.1.2.1.31.1.1.1.18.11|4| +1.3.6.1.2.1.31.1.1.1.18.12|4| +1.3.6.1.2.1.31.1.1.1.18.13|4| +1.3.6.1.2.1.31.1.1.1.18.14|4|== LAN: UTILIZADORES == +1.3.6.1.2.1.31.1.1.1.18.15|4| +1.3.6.1.2.1.31.1.1.1.18.16|4| +1.3.6.1.2.1.31.1.1.1.18.17|4|== LAN: IMPRESSORAS == +1.3.6.1.2.1.31.1.1.1.18.18|4|== LAN: TELEFONES == +1.3.6.1.2.1.31.1.1.1.18.19|4|== LAN: EQUIPAMENTOS VAS == +1.3.6.1.2.1.31.1.1.1.18.20|4|== LAN: APP == +1.3.6.1.2.1.31.1.1.1.18.21|4| +1.3.6.1.2.1.31.1.1.1.18.22|4| +1.3.6.1.2.1.31.1.1.1.18.64536|4| +1.3.6.1.2.1.31.1.1.1.18.64537|4| +1.3.6.1.2.1.31.1.1.1.18.64538|4| +1.3.6.1.2.1.31.1.1.1.18.64539|4| +1.3.6.1.2.1.31.1.1.1.18.64540|4| +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.2|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.5|67|0 +1.3.6.1.2.1.31.1.1.1.19.6|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.8|67|0 +1.3.6.1.2.1.31.1.1.1.19.9|67|0 +1.3.6.1.2.1.31.1.1.1.19.10|67|0 +1.3.6.1.2.1.31.1.1.1.19.11|67|0 +1.3.6.1.2.1.31.1.1.1.19.12|67|0 +1.3.6.1.2.1.31.1.1.1.19.13|67|0 +1.3.6.1.2.1.31.1.1.1.19.14|67|0 +1.3.6.1.2.1.31.1.1.1.19.15|67|0 +1.3.6.1.2.1.31.1.1.1.19.16|67|0 +1.3.6.1.2.1.31.1.1.1.19.17|67|0 +1.3.6.1.2.1.31.1.1.1.19.18|67|0 +1.3.6.1.2.1.31.1.1.1.19.19|67|0 +1.3.6.1.2.1.31.1.1.1.19.20|67|0 +1.3.6.1.2.1.31.1.1.1.19.21|67|0 +1.3.6.1.2.1.31.1.1.1.19.22|67|0 +1.3.6.1.2.1.31.1.1.1.19.64536|67|0 +1.3.6.1.2.1.31.1.1.1.19.64537|67|0 +1.3.6.1.2.1.31.1.1.1.19.64538|67|0 +1.3.6.1.2.1.31.1.1.1.19.64539|67|0 +1.3.6.1.2.1.31.1.1.1.19.64540|67|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.3|66|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.4|66|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.5|66|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.6|66|1828 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.7|66|1828 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.8|66|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.3|2|-113 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.4|2|-113 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.5|2|-113 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.6|2|-57 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.7|2|-57 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.8|2|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.3|2|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.4|2|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.5|2|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.6|2|-85 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.7|2|-85 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.22.8|2|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.3|2|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.4|2|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.5|2|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.6|2|-8 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.7|2|-8 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.23.8|2|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.3|2|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.4|2|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.5|2|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.6|2|20 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.7|2|20 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.24.8|2|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.3|66|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.4|66|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.5|66|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.6|66|139 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.7|66|139 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.25.8|66|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.3|4|--- +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.4|4|--- +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.5|4|--- +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.6|4|--- +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.7|4|backup.tmn.pt +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.4.1.3.8|4|--- +1.3.6.1.6.3.10.2.1.3.0|2|2446980 diff --git a/tests/snmpsim/teldat_tv-base-vdsl2-adsl.snmprec b/tests/snmpsim/teldat_tv-base-vdsl2-adsl.snmprec new file mode 100644 index 0000000000..3acb08f0c3 --- /dev/null +++ b/tests/snmpsim/teldat_tv-base-vdsl2-adsl.snmprec @@ -0,0 +1,4239 @@ +1.3.6.1.2.1.1.1.0|4|Router model TV BASE VDSL2/ADSL WLAN 30 10 CPU MIPS32 S/N: 792/09606 Teldat (c)1996 - 2017 +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2007.1.1.191 +1.3.6.1.2.1.1.3.0|67|844340600 +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.2.2.1.1.1|2|1 +1.3.6.1.2.1.2.2.1.1.2|2|2 +1.3.6.1.2.1.2.2.1.1.3|2|3 +1.3.6.1.2.1.2.2.1.1.4|2|4 +1.3.6.1.2.1.2.2.1.1.5|2|5 +1.3.6.1.2.1.2.2.1.1.6|2|6 +1.3.6.1.2.1.2.2.1.1.7|2|7 +1.3.6.1.2.1.2.2.1.1.8|2|8 +1.3.6.1.2.1.2.2.1.1.9|2|9 +1.3.6.1.2.1.2.2.1.1.10|2|10 +1.3.6.1.2.1.2.2.1.1.11|2|11 +1.3.6.1.2.1.2.2.1.1.12|2|12 +1.3.6.1.2.1.2.2.1.1.13|2|13 +1.3.6.1.2.1.2.2.1.1.14|2|14 +1.3.6.1.2.1.2.2.1.1.15|2|15 +1.3.6.1.2.1.2.2.1.1.16|2|16 +1.3.6.1.2.1.2.2.1.1.17|2|17 +1.3.6.1.2.1.2.2.1.2.1|4|ethernet0/0 +1.3.6.1.2.1.2.2.1.2.2|4|ethernet0/2 +1.3.6.1.2.1.2.2.1.2.3|4|wlan0/0 +1.3.6.1.2.1.2.2.1.2.4|4|atm0/0 +1.3.6.1.2.1.2.2.1.2.5|4|cellular1/0 +1.3.6.1.2.1.2.2.1.2.6|4|cellular1/1 +1.3.6.1.2.1.2.2.1.2.7|4|bvi0 +1.3.6.1.2.1.2.2.1.2.8|4|ethernet0/0.20 +1.3.6.1.2.1.2.2.1.2.9|4|ethernet0/0.9 +1.3.6.1.2.1.2.2.1.2.10|4|Loopback interface +1.3.6.1.2.1.2.2.1.2.11|4|ADSL Physical/0 Hardware: SOFTDSL_V2A2P +1.3.6.1.2.1.2.2.1.2.12|4|ADSL Fast Channel/0 Hardware: SOFTDSL_V2A2P +1.3.6.1.2.1.2.2.1.2.13|4|ADSL Interleave Channel/0 Hardware: SOFTDSL_V2A2P +1.3.6.1.2.1.2.2.1.2.14|4|Switch Port interface: Group 1, Port 1; Associated interface: ethernet0/0 +1.3.6.1.2.1.2.2.1.2.15|4|Switch Port interface: Group 1, Port 2; Associated interface: ethernet0/0 +1.3.6.1.2.1.2.2.1.2.16|4|Switch Port interface: Group 1, Port 3; Associated interface: ethernet0/0 +1.3.6.1.2.1.2.2.1.2.17|4|Switch Port interface: Group 1, Port 4; Associated interface: ethernet0/0 +1.3.6.1.2.1.2.2.1.3.1|2|7 +1.3.6.1.2.1.2.2.1.3.2|2|7 +1.3.6.1.2.1.2.2.1.3.3|2|71 +1.3.6.1.2.1.2.2.1.3.4|2|37 +1.3.6.1.2.1.2.2.1.3.5|2|243 +1.3.6.1.2.1.2.2.1.3.6|2|243 +1.3.6.1.2.1.2.2.1.3.7|2|6 +1.3.6.1.2.1.2.2.1.3.8|2|135 +1.3.6.1.2.1.2.2.1.3.9|2|135 +1.3.6.1.2.1.2.2.1.3.10|2|24 +1.3.6.1.2.1.2.2.1.3.11|2|94 +1.3.6.1.2.1.2.2.1.3.12|2|125 +1.3.6.1.2.1.2.2.1.3.13|2|124 +1.3.6.1.2.1.2.2.1.3.14|2|7 +1.3.6.1.2.1.2.2.1.3.15|2|7 +1.3.6.1.2.1.2.2.1.3.16|2|7 +1.3.6.1.2.1.2.2.1.3.17|2|7 +1.3.6.1.2.1.2.2.1.4.1|2|1500 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.4.3|2|1508 +1.3.6.1.2.1.2.2.1.4.4|2|1536 +1.3.6.1.2.1.2.2.1.4.5|2|2048 +1.3.6.1.2.1.2.2.1.4.6|2|2048 +1.3.6.1.2.1.2.2.1.4.7|2|1500 +1.3.6.1.2.1.2.2.1.4.8|2|1500 +1.3.6.1.2.1.2.2.1.4.9|2|1500 +1.3.6.1.2.1.2.2.1.4.10|2|1500 +1.3.6.1.2.1.2.2.1.4.11|2|0 +1.3.6.1.2.1.2.2.1.4.12|2|0 +1.3.6.1.2.1.2.2.1.4.13|2|0 +1.3.6.1.2.1.2.2.1.4.14|2|0 +1.3.6.1.2.1.2.2.1.4.15|2|0 +1.3.6.1.2.1.2.2.1.4.16|2|0 +1.3.6.1.2.1.2.2.1.4.17|2|0 +1.3.6.1.2.1.2.2.1.5.1|66|1000000000 +1.3.6.1.2.1.2.2.1.5.2|66|0 +1.3.6.1.2.1.2.2.1.5.3|66|54000000 +1.3.6.1.2.1.2.2.1.5.4|66|0 +1.3.6.1.2.1.2.2.1.5.5|66|460800 +1.3.6.1.2.1.2.2.1.5.6|66|460800 +1.3.6.1.2.1.2.2.1.5.7|66|0 +1.3.6.1.2.1.2.2.1.5.8|66|1000000000 +1.3.6.1.2.1.2.2.1.5.9|66|1000000000 +1.3.6.1.2.1.2.2.1.5.10|66|10000000 +1.3.6.1.2.1.2.2.1.5.11|66|0 +1.3.6.1.2.1.2.2.1.5.12|66|0 +1.3.6.1.2.1.2.2.1.5.13|66|0 +1.3.6.1.2.1.2.2.1.5.14|66|0 +1.3.6.1.2.1.2.2.1.5.15|66|0 +1.3.6.1.2.1.2.2.1.5.16|66|0 +1.3.6.1.2.1.2.2.1.5.17|66|0 +1.3.6.1.2.1.2.2.1.6.1|4x|00A0266C9488 +1.3.6.1.2.1.2.2.1.6.2|4x|00A0266C9489 +1.3.6.1.2.1.2.2.1.6.3|4x|00A0266C948A +1.3.6.1.2.1.2.2.1.6.4|4| +1.3.6.1.2.1.2.2.1.6.5|4| +1.3.6.1.2.1.2.2.1.6.6|4| +1.3.6.1.2.1.2.2.1.6.7|4x|00A0266C9488 +1.3.6.1.2.1.2.2.1.6.8|4x|00A0266C9488 +1.3.6.1.2.1.2.2.1.6.9|4x|00A0266C9488 +1.3.6.1.2.1.2.2.1.6.10|4| +1.3.6.1.2.1.2.2.1.6.11|4x|00000000000000000000000000000000 +1.3.6.1.2.1.2.2.1.6.12|4x|00000000000000000000000000000000 +1.3.6.1.2.1.2.2.1.6.13|4x|00000000000000000000000000000000 +1.3.6.1.2.1.2.2.1.6.14|4x|00000000000000000000000000000000 +1.3.6.1.2.1.2.2.1.6.15|4x|00000000000000000000000000000000 +1.3.6.1.2.1.2.2.1.6.16|4x|00000000000000000000000000000000 +1.3.6.1.2.1.2.2.1.6.17|4x|00000000000000000000000000000000 +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.2|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.5|2|1 +1.3.6.1.2.1.2.2.1.7.6|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.8|2|1 +1.3.6.1.2.1.2.2.1.7.9|2|1 +1.3.6.1.2.1.2.2.1.7.10|2|1 +1.3.6.1.2.1.2.2.1.7.11|2|1 +1.3.6.1.2.1.2.2.1.7.12|2|1 +1.3.6.1.2.1.2.2.1.7.13|2|1 +1.3.6.1.2.1.2.2.1.7.14|2|1 +1.3.6.1.2.1.2.2.1.7.15|2|1 +1.3.6.1.2.1.2.2.1.7.16|2|1 +1.3.6.1.2.1.2.2.1.7.17|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.2|2|2 +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|2 +1.3.6.1.2.1.2.2.1.8.5|2|2 +1.3.6.1.2.1.2.2.1.8.6|2|2 +1.3.6.1.2.1.2.2.1.8.7|2|1 +1.3.6.1.2.1.2.2.1.8.8|2|1 +1.3.6.1.2.1.2.2.1.8.9|2|1 +1.3.6.1.2.1.2.2.1.8.10|2|1 +1.3.6.1.2.1.2.2.1.8.11|2|2 +1.3.6.1.2.1.2.2.1.8.12|2|7 +1.3.6.1.2.1.2.2.1.8.13|2|7 +1.3.6.1.2.1.2.2.1.8.14|2|1 +1.3.6.1.2.1.2.2.1.8.15|2|1 +1.3.6.1.2.1.2.2.1.8.16|2|1 +1.3.6.1.2.1.2.2.1.8.17|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|1635 +1.3.6.1.2.1.2.2.1.9.2|67|0 +1.3.6.1.2.1.2.2.1.9.3|67|2235 +1.3.6.1.2.1.2.2.1.9.4|67|0 +1.3.6.1.2.1.2.2.1.9.5|67|0 +1.3.6.1.2.1.2.2.1.9.6|67|0 +1.3.6.1.2.1.2.2.1.9.7|67|1135 +1.3.6.1.2.1.2.2.1.9.8|67|1059169 +1.3.6.1.2.1.2.2.1.9.9|67|1635 +1.3.6.1.2.1.2.2.1.9.10|67|0 +1.3.6.1.2.1.2.2.1.9.11|67|0 +1.3.6.1.2.1.2.2.1.9.12|67|0 +1.3.6.1.2.1.2.2.1.9.13|67|0 +1.3.6.1.2.1.2.2.1.9.14|67|414565400 +1.3.6.1.2.1.2.2.1.9.15|67|373321000 +1.3.6.1.2.1.2.2.1.9.16|67|1700 +1.3.6.1.2.1.2.2.1.9.17|67|374721300 +1.3.6.1.2.1.2.2.1.10.1|65|3219263545 +1.3.6.1.2.1.2.2.1.10.2|65|0 +1.3.6.1.2.1.2.2.1.10.3|65|1080101778 +1.3.6.1.2.1.2.2.1.10.4|65|0 +1.3.6.1.2.1.2.2.1.10.5|65|0 +1.3.6.1.2.1.2.2.1.10.6|65|0 +1.3.6.1.2.1.2.2.1.10.7|65|92388182 +1.3.6.1.2.1.2.2.1.10.8|65|1452583851 +1.3.6.1.2.1.2.2.1.10.9|65|1766498378 +1.3.6.1.2.1.2.2.1.10.10|65|0 +1.3.6.1.2.1.2.2.1.10.11|65|0 +1.3.6.1.2.1.2.2.1.10.12|65|0 +1.3.6.1.2.1.2.2.1.10.13|65|0 +1.3.6.1.2.1.2.2.1.10.14|65|0 +1.3.6.1.2.1.2.2.1.10.15|65|0 +1.3.6.1.2.1.2.2.1.10.16|65|0 +1.3.6.1.2.1.2.2.1.10.17|65|0 +1.3.6.1.2.1.2.2.1.11.1|65|405020650 +1.3.6.1.2.1.2.2.1.11.2|65|0 +1.3.6.1.2.1.2.2.1.11.3|65|146873808 +1.3.6.1.2.1.2.2.1.11.4|65|0 +1.3.6.1.2.1.2.2.1.11.5|65|0 +1.3.6.1.2.1.2.2.1.11.6|65|0 +1.3.6.1.2.1.2.2.1.11.7|65|165712608 +1.3.6.1.2.1.2.2.1.11.8|65|385971014 +1.3.6.1.2.1.2.2.1.11.9|65|19049636 +1.3.6.1.2.1.2.2.1.11.10|65|0 +1.3.6.1.2.1.2.2.1.11.11|65|0 +1.3.6.1.2.1.2.2.1.11.12|65|0 +1.3.6.1.2.1.2.2.1.11.13|65|0 +1.3.6.1.2.1.2.2.1.11.14|65|0 +1.3.6.1.2.1.2.2.1.11.15|65|0 +1.3.6.1.2.1.2.2.1.11.16|65|0 +1.3.6.1.2.1.2.2.1.11.17|65|0 +1.3.6.1.2.1.2.2.1.12.1|65|174240 +1.3.6.1.2.1.2.2.1.12.2|65|0 +1.3.6.1.2.1.2.2.1.12.3|65|376166 +1.3.6.1.2.1.2.2.1.12.4|65|0 +1.3.6.1.2.1.2.2.1.12.5|65|0 +1.3.6.1.2.1.2.2.1.12.6|65|0 +1.3.6.1.2.1.2.2.1.12.7|65|100502 +1.3.6.1.2.1.2.2.1.12.8|65|2 +1.3.6.1.2.1.2.2.1.12.9|65|171406 +1.3.6.1.2.1.2.2.1.12.10|65|0 +1.3.6.1.2.1.2.2.1.12.11|65|0 +1.3.6.1.2.1.2.2.1.12.12|65|0 +1.3.6.1.2.1.2.2.1.12.13|65|0 +1.3.6.1.2.1.2.2.1.12.14|65|0 +1.3.6.1.2.1.2.2.1.12.15|65|0 +1.3.6.1.2.1.2.2.1.12.16|65|0 +1.3.6.1.2.1.2.2.1.12.17|65|0 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|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.5|65|0 +1.3.6.1.2.1.2.2.1.13.6|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.8|65|0 +1.3.6.1.2.1.2.2.1.13.9|65|0 +1.3.6.1.2.1.2.2.1.13.10|65|0 +1.3.6.1.2.1.2.2.1.13.11|65|0 +1.3.6.1.2.1.2.2.1.13.12|65|0 +1.3.6.1.2.1.2.2.1.13.13|65|0 +1.3.6.1.2.1.2.2.1.13.14|65|0 +1.3.6.1.2.1.2.2.1.13.15|65|0 +1.3.6.1.2.1.2.2.1.13.16|65|0 +1.3.6.1.2.1.2.2.1.13.17|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.2|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.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|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.8|65|0 +1.3.6.1.2.1.2.2.1.14.9|65|0 +1.3.6.1.2.1.2.2.1.14.10|65|0 +1.3.6.1.2.1.2.2.1.14.11|65|0 +1.3.6.1.2.1.2.2.1.14.12|65|0 +1.3.6.1.2.1.2.2.1.14.13|65|0 +1.3.6.1.2.1.2.2.1.14.14|65|0 +1.3.6.1.2.1.2.2.1.14.15|65|0 +1.3.6.1.2.1.2.2.1.14.16|65|0 +1.3.6.1.2.1.2.2.1.14.17|65|0 +1.3.6.1.2.1.2.2.1.15.1|65|0 +1.3.6.1.2.1.2.2.1.15.2|65|0 +1.3.6.1.2.1.2.2.1.15.3|65|0 +1.3.6.1.2.1.2.2.1.15.4|65|0 +1.3.6.1.2.1.2.2.1.15.5|65|0 +1.3.6.1.2.1.2.2.1.15.6|65|0 +1.3.6.1.2.1.2.2.1.15.7|65|0 +1.3.6.1.2.1.2.2.1.15.8|65|0 +1.3.6.1.2.1.2.2.1.15.9|65|0 +1.3.6.1.2.1.2.2.1.15.10|65|0 +1.3.6.1.2.1.2.2.1.15.11|65|0 +1.3.6.1.2.1.2.2.1.15.12|65|0 +1.3.6.1.2.1.2.2.1.15.13|65|0 +1.3.6.1.2.1.2.2.1.15.14|65|0 +1.3.6.1.2.1.2.2.1.15.15|65|0 +1.3.6.1.2.1.2.2.1.15.16|65|0 +1.3.6.1.2.1.2.2.1.15.17|65|0 +1.3.6.1.2.1.2.2.1.16.1|65|2219353632 +1.3.6.1.2.1.2.2.1.16.2|65|0 +1.3.6.1.2.1.2.2.1.16.3|65|3215339762 +1.3.6.1.2.1.2.2.1.16.4|65|0 +1.3.6.1.2.1.2.2.1.16.5|65|0 +1.3.6.1.2.1.2.2.1.16.6|65|0 +1.3.6.1.2.1.2.2.1.16.7|65|2631348942 +1.3.6.1.2.1.2.2.1.16.8|65|2682119362 +1.3.6.1.2.1.2.2.1.16.9|65|3832201827 +1.3.6.1.2.1.2.2.1.16.10|65|0 +1.3.6.1.2.1.2.2.1.16.11|65|0 +1.3.6.1.2.1.2.2.1.16.12|65|0 +1.3.6.1.2.1.2.2.1.16.13|65|0 +1.3.6.1.2.1.2.2.1.16.14|65|0 +1.3.6.1.2.1.2.2.1.16.15|65|0 +1.3.6.1.2.1.2.2.1.16.16|65|0 +1.3.6.1.2.1.2.2.1.16.17|65|0 +1.3.6.1.2.1.2.2.1.17.1|65|184983500 +1.3.6.1.2.1.2.2.1.17.2|65|0 +1.3.6.1.2.1.2.2.1.17.3|65|367387242 +1.3.6.1.2.1.2.2.1.17.4|65|0 +1.3.6.1.2.1.2.2.1.17.5|65|0 +1.3.6.1.2.1.2.2.1.17.6|65|0 +1.3.6.1.2.1.2.2.1.17.7|65|385849837 +1.3.6.1.2.1.2.2.1.17.8|65|165374025 +1.3.6.1.2.1.2.2.1.17.9|65|19609475 +1.3.6.1.2.1.2.2.1.17.10|65|0 +1.3.6.1.2.1.2.2.1.17.11|65|0 +1.3.6.1.2.1.2.2.1.17.12|65|0 +1.3.6.1.2.1.2.2.1.17.13|65|0 +1.3.6.1.2.1.2.2.1.17.14|65|0 +1.3.6.1.2.1.2.2.1.17.15|65|0 +1.3.6.1.2.1.2.2.1.17.16|65|0 +1.3.6.1.2.1.2.2.1.17.17|65|0 +1.3.6.1.2.1.2.2.1.18.1|65|4750901 +1.3.6.1.2.1.2.2.1.18.2|65|0 +1.3.6.1.2.1.2.2.1.18.3|65|0 +1.3.6.1.2.1.2.2.1.18.4|65|0 +1.3.6.1.2.1.2.2.1.18.5|65|0 +1.3.6.1.2.1.2.2.1.18.6|65|0 +1.3.6.1.2.1.2.2.1.18.7|65|149970 +1.3.6.1.2.1.2.2.1.18.8|65|4 +1.3.6.1.2.1.2.2.1.18.9|65|4750897 +1.3.6.1.2.1.2.2.1.18.10|65|0 +1.3.6.1.2.1.2.2.1.18.11|65|0 +1.3.6.1.2.1.2.2.1.18.12|65|0 +1.3.6.1.2.1.2.2.1.18.13|65|0 +1.3.6.1.2.1.2.2.1.18.14|65|0 +1.3.6.1.2.1.2.2.1.18.15|65|0 +1.3.6.1.2.1.2.2.1.18.16|65|0 +1.3.6.1.2.1.2.2.1.18.17|65|0 +1.3.6.1.2.1.2.2.1.19.1|65|3624018 +1.3.6.1.2.1.2.2.1.19.2|65|0 +1.3.6.1.2.1.2.2.1.19.3|65|3624018 +1.3.6.1.2.1.2.2.1.19.4|65|0 +1.3.6.1.2.1.2.2.1.19.5|65|0 +1.3.6.1.2.1.2.2.1.19.6|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.8|65|312172 +1.3.6.1.2.1.2.2.1.19.9|65|0 +1.3.6.1.2.1.2.2.1.19.10|65|0 +1.3.6.1.2.1.2.2.1.19.11|65|0 +1.3.6.1.2.1.2.2.1.19.12|65|0 +1.3.6.1.2.1.2.2.1.19.13|65|0 +1.3.6.1.2.1.2.2.1.19.14|65|0 +1.3.6.1.2.1.2.2.1.19.15|65|0 +1.3.6.1.2.1.2.2.1.19.16|65|0 +1.3.6.1.2.1.2.2.1.19.17|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.2|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.5|65|0 +1.3.6.1.2.1.2.2.1.20.6|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.8|65|0 +1.3.6.1.2.1.2.2.1.20.9|65|0 +1.3.6.1.2.1.2.2.1.20.10|65|0 +1.3.6.1.2.1.2.2.1.20.11|65|0 +1.3.6.1.2.1.2.2.1.20.12|65|0 +1.3.6.1.2.1.2.2.1.20.13|65|0 +1.3.6.1.2.1.2.2.1.20.14|65|0 +1.3.6.1.2.1.2.2.1.20.15|65|0 +1.3.6.1.2.1.2.2.1.20.16|65|0 +1.3.6.1.2.1.2.2.1.20.17|65|0 +1.3.6.1.2.1.2.2.1.21.1|66|246 +1.3.6.1.2.1.2.2.1.21.2|66|246 +1.3.6.1.2.1.2.2.1.21.3|66|123 +1.3.6.1.2.1.2.2.1.21.4|66|4294967295 +1.3.6.1.2.1.2.2.1.21.5|66|32 +1.3.6.1.2.1.2.2.1.21.6|66|32 +1.3.6.1.2.1.2.2.1.21.7|66|0 +1.3.6.1.2.1.2.2.1.21.8|66|0 +1.3.6.1.2.1.2.2.1.21.9|66|0 +1.3.6.1.2.1.2.2.1.21.10|66|0 +1.3.6.1.2.1.2.2.1.21.11|66|0 +1.3.6.1.2.1.2.2.1.21.12|66|0 +1.3.6.1.2.1.2.2.1.21.13|66|0 +1.3.6.1.2.1.2.2.1.21.14|66|0 +1.3.6.1.2.1.2.2.1.21.15|66|0 +1.3.6.1.2.1.2.2.1.21.16|66|0 +1.3.6.1.2.1.2.2.1.21.17|66|0 +1.3.6.1.2.1.2.2.1.22.1|6|1.3.6.1.2.1.10.7 +1.3.6.1.2.1.2.2.1.22.2|6|1.3.6.1.2.1.10.7 +1.3.6.1.2.1.2.2.1.22.3|6|0.0 +1.3.6.1.2.1.2.2.1.22.4|6|0.0 +1.3.6.1.2.1.2.2.1.22.5|6|0.0 +1.3.6.1.2.1.2.2.1.22.6|6|0.0 +1.3.6.1.2.1.2.2.1.22.7|6|0.0 +1.3.6.1.2.1.2.2.1.22.8|6|0.0 +1.3.6.1.2.1.2.2.1.22.9|6|0.0 +1.3.6.1.2.1.2.2.1.22.10|6|0.0 +1.3.6.1.2.1.2.2.1.22.11|6|0.0 +1.3.6.1.2.1.2.2.1.22.12|6|0.0 +1.3.6.1.2.1.2.2.1.22.13|6|0.0 +1.3.6.1.2.1.2.2.1.22.14|6|0.0 +1.3.6.1.2.1.2.2.1.22.15|6|0.0 +1.3.6.1.2.1.2.2.1.22.16|6|0.0 +1.3.6.1.2.1.2.2.1.22.17|6|0.0 +1.3.6.1.2.1.10.7.2.1.19.1|2|3 +1.3.6.1.2.1.10.7.2.1.19.2|2|1 +1.3.6.1.2.1.10.94.1.1.1.1.1.11|2|2 +1.3.6.1.2.1.10.94.1.1.1.1.2.11|2|0 +1.3.6.1.2.1.10.94.1.1.1.1.3.11|6|0.2 +1.3.6.1.2.1.10.94.1.1.1.1.4.11|4| +1.3.6.1.2.1.10.94.1.1.1.1.5.11|4| +1.3.6.1.2.1.10.94.1.1.2.1.1.11|4| +1.3.6.1.2.1.10.94.1.1.2.1.2.11|4| +1.3.6.1.2.1.10.94.1.1.2.1.3.11|4| +1.3.6.1.2.1.10.94.1.1.2.1.4.11|2|0 +1.3.6.1.2.1.10.94.1.1.2.1.5.11|66|0 +1.3.6.1.2.1.10.94.1.1.2.1.6.11|4|00 00 00 00 +1.3.6.1.2.1.10.94.1.1.2.1.7.11|2|0 +1.3.6.1.2.1.10.94.1.1.2.1.8.11|66|0 +1.3.6.1.2.1.10.94.1.1.3.1.1.11|4|792/09606 +1.3.6.1.2.1.10.94.1.1.3.1.2.11|4| +1.3.6.1.2.1.10.94.1.1.3.1.3.11|4| +1.3.6.1.2.1.10.94.1.1.3.1.4.11|2|0 +1.3.6.1.2.1.10.94.1.1.3.1.5.11|66|0 +1.3.6.1.2.1.10.94.1.1.3.1.6.11|4|00 00 00 00 +1.3.6.1.2.1.10.94.1.1.3.1.7.11|2|130 +1.3.6.1.2.1.10.94.1.1.3.1.8.11|66|0 +1.3.6.1.2.1.10.94.1.1.4.1.1.12|66|0 +1.3.6.1.2.1.10.94.1.1.4.1.1.13|66|4294967295 +1.3.6.1.2.1.10.94.1.1.4.1.2.12|66|0 +1.3.6.1.2.1.10.94.1.1.4.1.2.13|66|0 +1.3.6.1.2.1.10.94.1.1.4.1.3.12|66|0 +1.3.6.1.2.1.10.94.1.1.4.1.3.13|66|0 +1.3.6.1.2.1.10.94.1.1.4.1.4.12|66|0 +1.3.6.1.2.1.10.94.1.1.4.1.4.13|66|0 +1.3.6.1.2.1.10.94.1.1.5.1.1.12|66|0 +1.3.6.1.2.1.10.94.1.1.5.1.1.13|66|4294967295 +1.3.6.1.2.1.10.94.1.1.5.1.2.12|66|0 +1.3.6.1.2.1.10.94.1.1.5.1.2.13|66|0 +1.3.6.1.2.1.10.94.1.1.5.1.3.12|66|0 +1.3.6.1.2.1.10.94.1.1.5.1.3.13|66|0 +1.3.6.1.2.1.10.94.1.1.5.1.4.12|66|0 +1.3.6.1.2.1.10.94.1.1.5.1.4.13|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.1.11|65|0 +1.3.6.1.2.1.10.94.1.1.6.1.2.11|65|0 +1.3.6.1.2.1.10.94.1.1.6.1.3.11|65|0 +1.3.6.1.2.1.10.94.1.1.6.1.4.11|65|0 +1.3.6.1.2.1.10.94.1.1.6.1.5.11|65|0 +1.3.6.1.2.1.10.94.1.1.6.1.6.11|65|0 +1.3.6.1.2.1.10.94.1.1.6.1.7.11|2|0 +1.3.6.1.2.1.10.94.1.1.6.1.8.11|2|0 +1.3.6.1.2.1.10.94.1.1.6.1.9.11|66|8449563 +1.3.6.1.2.1.10.94.1.1.6.1.10.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.11.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.12.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.13.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.14.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.15.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.16.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.17.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.18.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.19.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.20.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.21.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.22.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.23.11|2|0 +1.3.6.1.2.1.10.94.1.1.6.1.24.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.25.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.26.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.27.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.28.11|66|0 +1.3.6.1.2.1.10.94.1.1.6.1.29.11|66|0 +1.3.6.1.2.1.10.94.1.1.7.1.1.11|65|0 +1.3.6.1.2.1.10.94.1.1.7.1.2.11|65|0 +1.3.6.1.2.1.10.94.1.1.7.1.3.11|65|0 +1.3.6.1.2.1.10.94.1.1.7.1.4.11|65|0 +1.3.6.1.2.1.10.94.1.1.7.1.5.11|2|0 +1.3.6.1.2.1.10.94.1.1.7.1.6.11|2|0 +1.3.6.1.2.1.10.94.1.1.7.1.7.11|66|8449563 +1.3.6.1.2.1.10.94.1.1.7.1.8.11|66|0 +1.3.6.1.2.1.10.94.1.1.7.1.9.11|66|0 +1.3.6.1.2.1.10.94.1.1.7.1.10.11|66|0 +1.3.6.1.2.1.10.94.1.1.7.1.11.11|66|0 +1.3.6.1.2.1.10.94.1.1.7.1.12.11|66|0 +1.3.6.1.2.1.10.94.1.1.7.1.13.11|66|0 +1.3.6.1.2.1.10.94.1.1.7.1.14.11|66|0 +1.3.6.1.2.1.10.94.1.1.7.1.15.11|66|0 +1.3.6.1.2.1.10.94.1.1.7.1.16.11|66|0 +1.3.6.1.2.1.10.94.1.1.7.1.17.11|2|0 +1.3.6.1.2.1.10.94.1.1.7.1.18.11|66|0 +1.3.6.1.2.1.10.94.1.1.7.1.19.11|66|0 +1.3.6.1.2.1.10.94.1.1.7.1.20.11|66|0 +1.3.6.1.2.1.10.94.1.1.7.1.21.11|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.1|2|1 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.2|2|2 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.3|2|3 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.4|2|4 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.5|2|5 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.6|2|6 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.7|2|7 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.8|2|8 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.9|2|9 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.10|2|10 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.11|2|11 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.12|2|12 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.13|2|13 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.14|2|14 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.15|2|15 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.16|2|16 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.17|2|17 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.18|2|18 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.19|2|19 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.20|2|20 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.21|2|21 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.22|2|22 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.23|2|23 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.24|2|24 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.25|2|25 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.26|2|26 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.27|2|27 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.28|2|28 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.29|2|29 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.30|2|30 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.31|2|31 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.32|2|32 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.33|2|33 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.34|2|34 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.35|2|35 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.36|2|36 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.37|2|37 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.38|2|38 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.39|2|39 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.40|2|40 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.41|2|41 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.42|2|42 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.43|2|43 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.44|2|44 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.45|2|45 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.46|2|46 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.47|2|47 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.48|2|48 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.49|2|49 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.50|2|50 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.51|2|51 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.52|2|52 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.53|2|53 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.54|2|54 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.55|2|55 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.56|2|56 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.57|2|57 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.58|2|58 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.59|2|59 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.60|2|60 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.61|2|61 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.62|2|62 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.63|2|63 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.64|2|64 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.65|2|65 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.66|2|66 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.67|2|67 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.68|2|68 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.69|2|69 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.70|2|70 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.71|2|71 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.72|2|72 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.73|2|73 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.74|2|74 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.75|2|75 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.76|2|76 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.77|2|77 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.78|2|78 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.79|2|79 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.80|2|80 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.81|2|81 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.82|2|82 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.83|2|83 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.84|2|84 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.85|2|85 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.86|2|86 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.87|2|87 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.88|2|88 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.89|2|89 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.90|2|90 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.91|2|91 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.92|2|92 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.93|2|93 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.94|2|94 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.95|2|95 +1.3.6.1.2.1.10.94.1.1.8.1.1.11.96|2|96 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.1|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.2|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.3|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.4|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.5|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.6|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.7|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.8|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.9|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.10|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.11|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.12|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.13|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.14|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.15|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.16|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.17|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.18|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.19|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.20|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.21|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.22|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.23|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.24|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.25|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.26|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.27|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.28|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.29|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.30|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.31|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.32|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.33|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.34|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.35|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.36|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.37|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.38|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.39|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.40|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.41|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.42|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.43|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.44|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.45|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.46|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.47|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.48|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.49|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.50|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.51|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.52|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.53|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.54|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.55|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.56|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.57|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.58|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.59|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.60|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.61|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.62|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.63|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.64|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.65|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.66|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.67|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.68|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.69|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.70|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.71|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.72|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.73|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.74|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.75|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.76|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.77|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.78|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.79|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.80|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.81|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.82|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.83|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.84|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.85|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.86|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.87|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.88|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.89|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.90|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.91|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.92|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.93|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.94|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.95|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.2.11.96|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.1|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.2|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.3|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.4|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.5|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.6|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.7|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.8|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.9|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.10|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.11|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.12|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.13|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.14|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.15|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.16|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.17|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.18|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.19|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.20|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.21|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.22|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.23|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.24|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.25|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.26|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.27|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.28|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.29|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.30|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.31|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.32|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.33|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.34|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.35|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.36|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.37|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.38|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.39|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.40|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.41|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.42|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.43|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.44|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.45|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.46|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.47|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.48|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.49|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.50|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.51|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.52|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.53|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.54|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.55|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.56|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.57|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.58|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.59|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.60|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.61|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.62|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.63|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.64|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.65|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.66|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.67|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.68|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.69|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.70|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.71|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.72|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.73|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.74|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.75|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.76|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.77|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.78|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.79|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.80|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.81|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.82|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.83|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.84|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.85|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.86|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.87|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.88|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.89|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.90|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.91|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.92|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.93|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.94|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.95|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.3.11.96|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.1|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.2|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.3|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.4|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.5|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.6|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.7|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.8|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.9|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.10|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.11|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.12|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.13|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.14|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.15|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.16|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.17|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.18|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.19|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.20|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.21|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.22|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.23|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.24|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.25|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.26|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.27|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.28|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.29|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.30|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.31|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.32|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.33|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.34|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.35|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.36|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.37|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.38|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.39|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.40|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.41|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.42|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.43|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.44|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.45|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.46|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.47|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.48|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.49|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.50|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.51|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.52|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.53|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.54|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.55|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.56|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.57|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.58|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.59|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.60|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.61|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.62|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.63|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.64|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.65|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.66|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.67|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.68|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.69|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.70|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.71|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.72|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.73|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.74|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.75|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.76|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.77|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.78|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.79|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.80|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.81|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.82|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.83|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.84|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.85|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.86|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.87|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.88|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.89|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.90|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.91|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.92|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.93|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.94|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.95|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.4.11.96|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.1|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.2|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.3|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.4|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.5|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.6|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.7|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.8|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.9|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.10|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.11|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.12|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.13|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.14|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.15|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.16|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.17|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.18|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.19|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.20|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.21|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.22|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.23|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.24|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.25|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.26|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.27|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.28|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.29|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.30|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.31|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.32|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.33|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.34|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.35|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.36|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.37|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.38|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.39|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.40|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.41|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.42|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.43|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.44|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.45|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.46|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.47|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.48|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.49|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.50|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.51|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.52|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.53|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.54|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.55|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.56|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.57|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.58|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.59|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.60|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.61|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.62|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.63|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.64|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.65|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.66|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.67|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.68|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.69|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.70|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.71|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.72|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.73|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.74|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.75|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.76|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.77|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.78|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.79|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.80|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.81|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.82|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.83|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.84|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.85|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.86|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.87|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.88|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.89|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.90|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.91|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.92|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.93|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.94|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.95|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.5.11.96|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.1|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.2|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.3|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.4|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.5|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.6|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.7|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.8|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.9|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.10|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.11|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.12|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.13|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.14|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.15|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.16|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.17|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.18|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.19|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.20|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.21|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.22|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.23|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.24|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.25|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.26|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.27|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.28|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.29|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.30|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.31|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.32|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.33|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.34|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.35|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.36|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.37|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.38|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.39|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.40|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.41|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.42|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.43|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.44|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.45|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.46|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.47|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.48|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.49|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.50|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.51|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.52|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.53|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.54|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.55|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.56|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.57|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.58|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.59|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.60|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.61|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.62|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.63|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.64|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.65|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.66|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.67|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.68|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.69|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.70|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.71|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.72|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.73|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.74|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.75|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.76|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.77|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.78|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.79|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.80|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.81|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.82|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.83|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.84|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.85|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.86|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.87|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.88|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.89|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.90|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.91|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.92|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.93|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.94|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.95|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.6.11.96|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.1|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.2|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.3|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.4|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.5|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.6|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.7|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.8|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.9|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.10|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.11|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.12|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.13|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.14|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.15|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.16|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.17|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.18|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.19|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.20|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.21|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.22|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.23|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.24|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.25|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.26|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.27|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.28|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.29|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.30|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.31|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.32|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.33|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.34|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.35|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.36|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.37|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.38|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.39|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.40|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.41|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.42|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.43|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.44|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.45|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.46|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.47|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.48|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.49|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.50|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.51|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.52|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.53|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.54|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.55|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.56|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.57|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.58|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.59|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.60|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.61|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.62|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.63|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.64|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.65|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.66|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.67|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.68|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.69|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.70|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.71|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.72|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.73|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.74|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.75|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.76|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.77|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.78|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.79|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.80|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.81|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.82|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.83|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.84|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.85|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.86|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.87|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.88|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.89|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.90|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.91|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.92|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.93|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.94|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.95|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.7.11.96|66|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.1|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.2|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.3|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.4|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.5|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.6|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.7|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.8|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.9|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.10|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.11|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.12|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.13|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.14|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.15|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.16|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.17|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.18|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.19|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.20|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.21|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.22|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.23|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.24|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.25|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.26|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.27|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.28|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.29|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.30|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.31|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.32|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.33|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.34|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.35|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.36|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.37|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.38|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.39|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.40|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.41|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.42|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.43|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.44|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.45|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.46|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.47|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.48|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.49|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.50|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.51|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.52|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.53|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.54|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.55|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.56|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.57|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.58|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.59|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.60|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.61|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.62|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.63|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.64|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.65|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.66|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.67|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.68|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.69|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.70|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.71|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.72|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.73|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.74|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.75|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.76|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.77|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.78|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.79|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.80|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.81|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.82|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.83|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.84|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.85|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.86|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.87|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.88|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.89|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.90|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.91|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.92|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.93|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.94|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.95|2|0 +1.3.6.1.2.1.10.94.1.1.8.1.8.11.96|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.1|2|1 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.2|2|2 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.3|2|3 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.4|2|4 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.5|2|5 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.6|2|6 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.7|2|7 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.8|2|8 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.9|2|9 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.10|2|10 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.11|2|11 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.12|2|12 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.13|2|13 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.14|2|14 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.15|2|15 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.16|2|16 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.17|2|17 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.18|2|18 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.19|2|19 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.20|2|20 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.21|2|21 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.22|2|22 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.23|2|23 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.24|2|24 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.25|2|25 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.26|2|26 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.27|2|27 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.28|2|28 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.29|2|29 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.30|2|30 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.31|2|31 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.32|2|32 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.33|2|33 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.34|2|34 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.35|2|35 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.36|2|36 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.37|2|37 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.38|2|38 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.39|2|39 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.40|2|40 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.41|2|41 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.42|2|42 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.43|2|43 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.44|2|44 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.45|2|45 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.46|2|46 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.47|2|47 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.48|2|48 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.49|2|49 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.50|2|50 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.51|2|51 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.52|2|52 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.53|2|53 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.54|2|54 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.55|2|55 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.56|2|56 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.57|2|57 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.58|2|58 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.59|2|59 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.60|2|60 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.61|2|61 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.62|2|62 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.63|2|63 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.64|2|64 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.65|2|65 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.66|2|66 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.67|2|67 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.68|2|68 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.69|2|69 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.70|2|70 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.71|2|71 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.72|2|72 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.73|2|73 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.74|2|74 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.75|2|75 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.76|2|76 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.77|2|77 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.78|2|78 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.79|2|79 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.80|2|80 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.81|2|81 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.82|2|82 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.83|2|83 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.84|2|84 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.85|2|85 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.86|2|86 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.87|2|87 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.88|2|88 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.89|2|89 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.90|2|90 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.91|2|91 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.92|2|92 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.93|2|93 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.94|2|94 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.95|2|95 +1.3.6.1.2.1.10.94.1.1.9.1.1.11.96|2|96 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.1|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.2|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.3|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.4|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.5|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.6|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.7|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.8|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.9|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.10|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.11|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.12|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.13|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.14|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.15|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.16|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.17|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.18|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.19|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.20|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.21|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.22|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.23|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.24|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.25|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.26|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.27|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.28|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.29|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.30|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.31|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.32|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.33|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.34|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.35|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.36|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.37|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.38|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.39|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.40|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.41|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.42|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.43|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.44|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.45|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.46|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.47|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.48|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.49|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.50|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.51|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.52|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.53|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.54|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.55|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.56|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.57|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.58|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.59|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.60|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.61|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.62|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.63|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.64|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.65|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.66|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.67|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.68|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.69|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.70|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.71|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.72|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.73|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.74|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.75|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.76|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.77|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.78|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.79|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.80|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.81|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.82|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.83|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.84|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.85|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.86|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.87|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.88|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.89|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.90|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.91|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.92|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.93|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.94|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.95|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.2.11.96|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.1|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.2|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.3|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.4|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.5|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.6|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.7|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.8|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.9|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.10|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.11|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.12|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.13|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.14|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.15|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.16|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.17|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.18|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.19|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.20|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.21|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.22|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.23|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.24|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.25|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.26|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.27|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.28|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.29|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.30|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.31|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.32|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.33|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.34|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.35|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.36|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.37|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.38|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.39|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.40|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.41|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.42|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.43|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.44|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.45|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.46|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.47|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.48|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.49|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.50|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.51|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.52|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.53|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.54|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.55|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.56|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.57|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.58|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.59|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.60|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.61|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.62|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.63|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.64|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.65|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.66|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.67|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.68|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.69|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.70|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.71|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.72|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.73|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.74|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.75|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.76|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.77|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.78|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.79|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.80|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.81|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.82|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.83|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.84|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.85|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.86|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.87|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.88|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.89|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.90|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.91|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.92|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.93|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.94|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.95|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.3.11.96|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.1|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.2|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.3|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.4|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.5|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.6|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.7|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.8|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.9|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.10|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.11|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.12|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.13|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.14|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.15|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.16|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.17|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.18|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.19|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.20|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.21|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.22|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.23|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.24|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.25|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.26|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.27|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.28|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.29|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.30|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.31|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.32|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.33|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.34|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.35|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.36|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.37|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.38|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.39|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.40|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.41|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.42|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.43|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.44|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.45|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.46|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.47|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.48|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.49|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.50|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.51|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.52|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.53|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.54|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.55|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.56|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.57|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.58|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.59|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.60|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.61|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.62|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.63|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.64|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.65|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.66|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.67|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.68|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.69|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.70|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.71|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.72|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.73|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.74|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.75|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.76|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.77|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.78|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.79|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.80|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.81|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.82|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.83|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.84|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.85|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.86|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.87|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.88|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.89|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.90|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.91|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.92|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.93|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.94|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.95|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.4.11.96|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.1|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.2|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.3|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.4|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.5|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.6|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.7|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.8|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.9|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.10|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.11|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.12|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.13|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.14|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.15|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.16|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.17|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.18|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.19|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.20|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.21|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.22|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.23|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.24|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.25|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.26|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.27|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.28|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.29|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.30|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.31|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.32|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.33|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.34|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.35|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.36|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.37|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.38|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.39|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.40|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.41|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.42|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.43|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.44|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.45|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.46|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.47|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.48|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.49|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.50|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.51|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.52|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.53|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.54|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.55|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.56|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.57|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.58|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.59|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.60|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.61|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.62|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.63|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.64|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.65|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.66|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.67|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.68|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.69|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.70|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.71|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.72|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.73|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.74|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.75|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.76|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.77|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.78|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.79|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.80|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.81|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.82|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.83|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.84|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.85|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.86|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.87|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.88|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.89|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.90|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.91|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.92|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.93|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.94|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.95|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.5.11.96|66|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.1|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.2|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.3|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.4|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.5|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.6|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.7|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.8|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.9|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.10|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.11|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.12|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.13|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.14|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.15|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.16|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.17|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.18|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.19|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.20|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.21|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.22|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.23|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.24|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.25|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.26|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.27|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.28|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.29|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.30|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.31|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.32|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.33|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.34|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.35|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.36|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.37|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.38|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.39|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.40|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.41|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.42|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.43|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.44|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.45|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.46|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.47|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.48|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.49|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.50|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.51|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.52|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.53|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.54|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.55|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.56|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.57|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.58|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.59|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.60|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.61|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.62|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.63|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.64|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.65|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.66|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.67|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.68|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.69|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.70|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.71|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.72|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.73|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.74|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.75|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.76|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.77|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.78|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.79|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.80|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.81|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.82|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.83|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.84|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.85|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.86|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.87|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.88|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.89|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.90|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.91|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.92|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.93|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.94|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.95|2|0 +1.3.6.1.2.1.10.94.1.1.9.1.6.11.96|2|0 +1.3.6.1.2.1.10.94.1.1.10.1.1.12|65|0 +1.3.6.1.2.1.10.94.1.1.10.1.1.13|65|0 +1.3.6.1.2.1.10.94.1.1.10.1.2.12|65|0 +1.3.6.1.2.1.10.94.1.1.10.1.2.13|65|0 +1.3.6.1.2.1.10.94.1.1.10.1.3.12|65|0 +1.3.6.1.2.1.10.94.1.1.10.1.3.13|65|0 +1.3.6.1.2.1.10.94.1.1.10.1.4.12|65|0 +1.3.6.1.2.1.10.94.1.1.10.1.4.13|65|0 +1.3.6.1.2.1.10.94.1.1.10.1.5.12|2|0 +1.3.6.1.2.1.10.94.1.1.10.1.5.13|2|0 +1.3.6.1.2.1.10.94.1.1.10.1.6.12|2|0 +1.3.6.1.2.1.10.94.1.1.10.1.6.13|2|0 +1.3.6.1.2.1.10.94.1.1.10.1.7.12|66|8449569 +1.3.6.1.2.1.10.94.1.1.10.1.7.13|66|8449569 +1.3.6.1.2.1.10.94.1.1.10.1.8.12|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.8.13|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.9.12|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.9.13|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.10.12|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.10.13|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.11.12|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.11.13|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.12.12|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.12.13|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.13.12|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.13.13|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.14.12|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.14.13|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.15.12|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.15.13|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.16.12|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.16.13|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.17.12|2|0 +1.3.6.1.2.1.10.94.1.1.10.1.17.13|2|0 +1.3.6.1.2.1.10.94.1.1.10.1.18.12|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.18.13|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.19.12|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.19.13|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.20.12|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.20.13|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.21.12|66|0 +1.3.6.1.2.1.10.94.1.1.10.1.21.13|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.1.12|65|0 +1.3.6.1.2.1.10.94.1.1.11.1.1.13|65|0 +1.3.6.1.2.1.10.94.1.1.11.1.2.12|65|0 +1.3.6.1.2.1.10.94.1.1.11.1.2.13|65|0 +1.3.6.1.2.1.10.94.1.1.11.1.3.12|65|0 +1.3.6.1.2.1.10.94.1.1.11.1.3.13|65|0 +1.3.6.1.2.1.10.94.1.1.11.1.4.12|65|0 +1.3.6.1.2.1.10.94.1.1.11.1.4.13|65|0 +1.3.6.1.2.1.10.94.1.1.11.1.5.12|2|0 +1.3.6.1.2.1.10.94.1.1.11.1.5.13|2|0 +1.3.6.1.2.1.10.94.1.1.11.1.6.12|2|0 +1.3.6.1.2.1.10.94.1.1.11.1.6.13|2|0 +1.3.6.1.2.1.10.94.1.1.11.1.7.12|66|8449569 +1.3.6.1.2.1.10.94.1.1.11.1.7.13|66|8449569 +1.3.6.1.2.1.10.94.1.1.11.1.8.12|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.8.13|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.9.12|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.9.13|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.10.12|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.10.13|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.11.12|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.11.13|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.12.12|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.12.13|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.13.12|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.13.13|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.14.12|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.14.13|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.15.12|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.15.13|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.16.12|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.16.13|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.17.12|2|0 +1.3.6.1.2.1.10.94.1.1.11.1.17.13|2|0 +1.3.6.1.2.1.10.94.1.1.11.1.18.12|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.18.13|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.19.12|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.19.13|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.20.12|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.20.13|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.21.12|66|0 +1.3.6.1.2.1.10.94.1.1.11.1.21.13|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.1|2|1 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.2|2|2 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.3|2|3 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.4|2|4 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.5|2|5 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.6|2|6 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.7|2|7 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.8|2|8 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.9|2|9 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.10|2|10 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.11|2|11 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.12|2|12 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.13|2|13 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.14|2|14 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.15|2|15 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.16|2|16 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.17|2|17 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.18|2|18 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.19|2|19 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.20|2|20 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.21|2|21 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.22|2|22 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.23|2|23 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.24|2|24 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.25|2|25 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.26|2|26 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.27|2|27 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.28|2|28 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.29|2|29 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.30|2|30 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.31|2|31 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.32|2|32 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.33|2|33 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.34|2|34 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.35|2|35 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.36|2|36 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.37|2|37 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.38|2|38 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.39|2|39 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.40|2|40 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.41|2|41 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.42|2|42 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.43|2|43 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.44|2|44 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.45|2|45 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.46|2|46 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.47|2|47 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.48|2|48 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.49|2|49 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.50|2|50 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.51|2|51 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.52|2|52 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.53|2|53 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.54|2|54 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.55|2|55 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.56|2|56 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.57|2|57 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.58|2|58 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.59|2|59 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.60|2|60 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.61|2|61 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.62|2|62 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.63|2|63 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.64|2|64 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.65|2|65 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.66|2|66 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.67|2|67 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.68|2|68 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.69|2|69 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.70|2|70 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.71|2|71 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.72|2|72 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.73|2|73 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.74|2|74 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.75|2|75 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.76|2|76 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.77|2|77 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.78|2|78 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.79|2|79 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.80|2|80 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.81|2|81 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.82|2|82 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.83|2|83 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.84|2|84 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.85|2|85 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.86|2|86 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.87|2|87 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.88|2|88 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.89|2|89 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.90|2|90 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.91|2|91 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.92|2|92 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.93|2|93 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.94|2|94 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.95|2|95 +1.3.6.1.2.1.10.94.1.1.12.1.1.12.96|2|96 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.1|2|1 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.2|2|2 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.3|2|3 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.4|2|4 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.5|2|5 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.6|2|6 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.7|2|7 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.8|2|8 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.9|2|9 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.10|2|10 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.11|2|11 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.12|2|12 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.13|2|13 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.14|2|14 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.15|2|15 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.16|2|16 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.17|2|17 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.18|2|18 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.19|2|19 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.20|2|20 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.21|2|21 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.22|2|22 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.23|2|23 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.24|2|24 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.25|2|25 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.26|2|26 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.27|2|27 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.28|2|28 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.29|2|29 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.30|2|30 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.31|2|31 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.32|2|32 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.33|2|33 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.34|2|34 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.35|2|35 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.36|2|36 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.37|2|37 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.38|2|38 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.39|2|39 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.40|2|40 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.41|2|41 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.42|2|42 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.43|2|43 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.44|2|44 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.45|2|45 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.46|2|46 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.47|2|47 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.48|2|48 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.49|2|49 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.50|2|50 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.51|2|51 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.52|2|52 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.53|2|53 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.54|2|54 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.55|2|55 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.56|2|56 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.57|2|57 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.58|2|58 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.59|2|59 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.60|2|60 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.61|2|61 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.62|2|62 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.63|2|63 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.64|2|64 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.65|2|65 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.66|2|66 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.67|2|67 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.68|2|68 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.69|2|69 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.70|2|70 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.71|2|71 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.72|2|72 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.73|2|73 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.74|2|74 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.75|2|75 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.76|2|76 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.77|2|77 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.78|2|78 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.79|2|79 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.80|2|80 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.81|2|81 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.82|2|82 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.83|2|83 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.84|2|84 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.85|2|85 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.86|2|86 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.87|2|87 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.88|2|88 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.89|2|89 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.90|2|90 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.91|2|91 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.92|2|92 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.93|2|93 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.94|2|94 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.95|2|95 +1.3.6.1.2.1.10.94.1.1.12.1.1.13.96|2|96 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.1|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.2|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.3|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.4|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.5|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.6|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.7|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.8|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.9|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.10|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.11|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.12|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.13|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.14|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.15|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.16|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.17|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.18|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.19|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.20|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.21|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.22|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.23|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.24|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.25|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.26|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.27|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.28|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.29|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.30|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.31|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.32|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.33|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.34|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.35|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.36|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.37|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.38|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.39|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.40|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.41|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.42|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.43|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.44|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.45|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.46|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.47|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.48|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.49|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.50|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.51|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.52|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.53|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.54|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.55|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.56|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.57|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.58|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.59|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.60|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.61|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.62|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.63|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.64|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.65|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.66|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.67|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.68|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.69|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.70|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.71|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.72|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.73|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.74|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.75|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.76|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.77|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.78|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.79|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.80|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.81|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.82|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.83|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.84|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.85|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.86|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.87|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.88|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.89|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.90|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.91|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.92|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.93|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.94|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.95|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.12.96|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.1|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.2|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.3|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.4|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.5|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.6|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.7|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.8|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.9|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.10|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.11|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.12|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.13|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.14|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.15|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.16|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.17|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.18|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.19|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.20|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.21|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.22|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.23|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.24|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.25|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.26|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.27|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.28|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.29|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.30|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.31|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.32|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.33|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.34|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.35|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.36|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.37|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.38|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.39|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.40|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.41|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.42|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.43|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.44|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.45|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.46|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.47|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.48|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.49|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.50|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.51|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.52|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.53|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.54|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.55|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.56|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.57|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.58|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.59|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.60|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.61|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.62|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.63|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.64|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.65|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.66|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.67|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.68|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.69|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.70|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.71|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.72|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.73|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.74|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.75|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.76|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.77|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.78|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.79|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.80|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.81|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.82|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.83|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.84|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.85|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.86|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.87|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.88|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.89|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.90|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.91|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.92|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.93|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.94|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.95|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.2.13.96|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.1|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.2|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.3|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.4|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.5|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.6|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.7|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.8|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.9|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.10|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.11|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.12|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.13|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.14|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.15|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.16|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.17|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.18|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.19|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.20|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.21|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.22|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.23|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.24|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.25|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.26|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.27|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.28|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.29|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.30|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.31|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.32|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.33|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.34|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.35|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.36|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.37|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.38|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.39|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.40|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.41|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.42|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.43|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.44|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.45|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.46|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.47|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.48|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.49|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.50|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.51|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.52|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.53|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.54|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.55|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.56|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.57|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.58|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.59|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.60|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.61|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.62|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.63|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.64|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.65|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.66|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.67|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.68|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.69|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.70|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.71|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.72|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.73|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.74|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.75|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.76|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.77|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.78|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.79|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.80|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.81|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.82|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.83|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.84|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.85|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.86|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.87|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.88|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.89|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.90|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.91|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.92|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.93|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.94|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.95|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.12.96|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.1|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.2|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.3|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.4|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.5|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.6|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.7|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.8|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.9|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.10|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.11|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.12|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.13|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.14|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.15|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.16|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.17|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.18|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.19|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.20|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.21|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.22|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.23|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.24|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.25|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.26|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.27|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.28|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.29|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.30|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.31|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.32|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.33|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.34|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.35|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.36|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.37|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.38|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.39|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.40|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.41|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.42|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.43|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.44|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.45|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.46|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.47|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.48|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.49|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.50|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.51|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.52|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.53|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.54|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.55|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.56|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.57|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.58|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.59|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.60|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.61|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.62|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.63|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.64|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.65|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.66|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.67|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.68|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.69|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.70|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.71|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.72|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.73|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.74|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.75|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.76|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.77|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.78|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.79|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.80|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.81|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.82|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.83|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.84|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.85|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.86|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.87|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.88|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.89|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.90|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.91|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.92|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.93|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.94|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.95|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.3.13.96|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.1|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.2|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.3|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.4|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.5|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.6|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.7|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.8|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.9|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.10|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.11|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.12|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.13|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.14|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.15|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.16|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.17|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.18|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.19|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.20|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.21|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.22|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.23|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.24|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.25|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.26|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.27|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.28|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.29|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.30|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.31|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.32|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.33|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.34|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.35|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.36|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.37|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.38|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.39|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.40|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.41|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.42|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.43|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.44|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.45|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.46|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.47|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.48|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.49|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.50|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.51|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.52|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.53|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.54|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.55|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.56|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.57|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.58|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.59|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.60|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.61|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.62|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.63|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.64|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.65|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.66|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.67|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.68|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.69|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.70|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.71|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.72|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.73|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.74|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.75|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.76|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.77|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.78|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.79|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.80|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.81|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.82|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.83|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.84|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.85|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.86|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.87|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.88|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.89|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.90|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.91|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.92|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.93|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.94|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.95|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.12.96|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.1|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.2|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.3|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.4|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.5|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.6|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.7|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.8|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.9|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.10|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.11|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.12|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.13|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.14|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.15|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.16|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.17|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.18|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.19|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.20|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.21|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.22|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.23|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.24|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.25|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.26|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.27|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.28|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.29|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.30|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.31|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.32|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.33|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.34|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.35|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.36|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.37|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.38|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.39|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.40|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.41|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.42|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.43|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.44|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.45|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.46|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.47|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.48|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.49|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.50|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.51|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.52|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.53|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.54|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.55|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.56|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.57|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.58|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.59|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.60|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.61|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.62|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.63|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.64|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.65|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.66|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.67|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.68|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.69|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.70|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.71|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.72|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.73|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.74|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.75|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.76|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.77|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.78|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.79|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.80|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.81|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.82|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.83|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.84|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.85|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.86|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.87|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.88|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.89|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.90|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.91|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.92|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.93|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.94|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.95|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.4.13.96|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.1|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.2|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.3|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.4|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.5|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.6|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.7|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.8|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.9|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.10|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.11|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.12|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.13|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.14|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.15|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.16|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.17|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.18|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.19|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.20|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.21|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.22|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.23|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.24|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.25|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.26|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.27|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.28|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.29|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.30|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.31|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.32|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.33|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.34|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.35|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.36|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.37|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.38|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.39|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.40|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.41|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.42|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.43|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.44|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.45|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.46|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.47|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.48|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.49|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.50|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.51|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.52|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.53|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.54|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.55|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.56|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.57|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.58|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.59|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.60|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.61|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.62|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.63|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.64|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.65|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.66|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.67|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.68|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.69|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.70|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.71|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.72|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.73|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.74|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.75|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.76|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.77|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.78|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.79|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.80|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.81|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.82|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.83|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.84|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.85|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.86|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.87|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.88|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.89|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.90|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.91|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.92|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.93|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.94|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.95|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.12.96|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.1|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.2|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.3|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.4|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.5|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.6|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.7|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.8|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.9|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.10|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.11|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.12|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.13|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.14|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.15|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.16|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.17|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.18|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.19|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.20|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.21|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.22|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.23|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.24|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.25|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.26|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.27|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.28|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.29|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.30|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.31|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.32|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.33|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.34|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.35|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.36|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.37|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.38|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.39|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.40|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.41|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.42|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.43|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.44|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.45|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.46|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.47|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.48|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.49|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.50|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.51|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.52|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.53|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.54|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.55|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.56|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.57|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.58|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.59|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.60|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.61|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.62|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.63|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.64|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.65|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.66|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.67|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.68|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.69|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.70|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.71|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.72|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.73|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.74|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.75|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.76|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.77|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.78|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.79|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.80|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.81|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.82|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.83|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.84|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.85|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.86|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.87|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.88|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.89|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.90|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.91|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.92|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.93|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.94|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.95|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.5.13.96|66|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.1|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.2|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.3|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.4|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.5|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.6|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.7|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.8|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.9|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.10|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.11|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.12|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.13|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.14|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.15|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.16|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.17|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.18|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.19|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.20|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.21|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.22|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.23|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.24|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.25|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.26|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.27|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.28|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.29|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.30|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.31|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.32|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.33|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.34|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.35|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.36|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.37|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.38|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.39|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.40|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.41|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.42|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.43|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.44|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.45|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.46|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.47|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.48|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.49|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.50|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.51|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.52|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.53|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.54|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.55|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.56|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.57|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.58|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.59|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.60|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.61|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.62|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.63|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.64|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.65|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.66|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.67|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.68|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.69|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.70|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.71|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.72|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.73|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.74|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.75|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.76|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.77|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.78|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.79|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.80|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.81|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.82|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.83|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.84|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.85|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.86|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.87|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.88|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.89|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.90|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.91|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.92|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.93|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.94|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.95|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.12.96|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.1|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.2|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.3|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.4|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.5|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.6|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.7|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.8|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.9|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.10|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.11|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.12|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.13|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.14|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.15|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.16|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.17|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.18|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.19|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.20|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.21|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.22|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.23|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.24|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.25|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.26|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.27|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.28|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.29|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.30|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.31|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.32|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.33|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.34|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.35|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.36|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.37|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.38|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.39|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.40|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.41|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.42|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.43|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.44|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.45|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.46|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.47|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.48|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.49|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.50|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.51|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.52|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.53|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.54|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.55|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.56|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.57|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.58|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.59|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.60|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.61|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.62|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.63|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.64|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.65|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.66|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.67|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.68|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.69|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.70|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.71|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.72|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.73|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.74|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.75|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.76|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.77|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.78|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.79|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.80|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.81|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.82|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.83|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.84|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.85|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.86|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.87|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.88|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.89|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.90|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.91|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.92|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.93|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.94|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.95|2|0 +1.3.6.1.2.1.10.94.1.1.12.1.6.13.96|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.1|2|1 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.2|2|2 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.3|2|3 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.4|2|4 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.5|2|5 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.6|2|6 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.7|2|7 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.8|2|8 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.9|2|9 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.10|2|10 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.11|2|11 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.12|2|12 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.13|2|13 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.14|2|14 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.15|2|15 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.16|2|16 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.17|2|17 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.18|2|18 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.19|2|19 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.20|2|20 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.21|2|21 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.22|2|22 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.23|2|23 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.24|2|24 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.25|2|25 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.26|2|26 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.27|2|27 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.28|2|28 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.29|2|29 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.30|2|30 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.31|2|31 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.32|2|32 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.33|2|33 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.34|2|34 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.35|2|35 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.36|2|36 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.37|2|37 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.38|2|38 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.39|2|39 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.40|2|40 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.41|2|41 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.42|2|42 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.43|2|43 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.44|2|44 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.45|2|45 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.46|2|46 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.47|2|47 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.48|2|48 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.49|2|49 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.50|2|50 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.51|2|51 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.52|2|52 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.53|2|53 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.54|2|54 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.55|2|55 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.56|2|56 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.57|2|57 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.58|2|58 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.59|2|59 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.60|2|60 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.61|2|61 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.62|2|62 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.63|2|63 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.64|2|64 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.65|2|65 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.66|2|66 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.67|2|67 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.68|2|68 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.69|2|69 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.70|2|70 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.71|2|71 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.72|2|72 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.73|2|73 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.74|2|74 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.75|2|75 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.76|2|76 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.77|2|77 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.78|2|78 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.79|2|79 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.80|2|80 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.81|2|81 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.82|2|82 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.83|2|83 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.84|2|84 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.85|2|85 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.86|2|86 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.87|2|87 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.88|2|88 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.89|2|89 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.90|2|90 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.91|2|91 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.92|2|92 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.93|2|93 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.94|2|94 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.95|2|95 +1.3.6.1.2.1.10.94.1.1.13.1.1.12.96|2|96 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.1|2|1 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.2|2|2 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.3|2|3 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.4|2|4 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.5|2|5 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.6|2|6 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.7|2|7 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.8|2|8 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.9|2|9 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.10|2|10 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.11|2|11 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.12|2|12 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.13|2|13 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.14|2|14 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.15|2|15 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.16|2|16 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.17|2|17 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.18|2|18 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.19|2|19 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.20|2|20 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.21|2|21 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.22|2|22 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.23|2|23 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.24|2|24 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.25|2|25 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.26|2|26 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.27|2|27 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.28|2|28 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.29|2|29 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.30|2|30 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.31|2|31 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.32|2|32 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.33|2|33 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.34|2|34 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.35|2|35 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.36|2|36 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.37|2|37 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.38|2|38 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.39|2|39 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.40|2|40 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.41|2|41 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.42|2|42 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.43|2|43 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.44|2|44 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.45|2|45 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.46|2|46 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.47|2|47 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.48|2|48 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.49|2|49 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.50|2|50 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.51|2|51 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.52|2|52 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.53|2|53 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.54|2|54 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.55|2|55 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.56|2|56 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.57|2|57 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.58|2|58 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.59|2|59 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.60|2|60 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.61|2|61 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.62|2|62 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.63|2|63 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.64|2|64 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.65|2|65 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.66|2|66 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.67|2|67 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.68|2|68 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.69|2|69 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.70|2|70 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.71|2|71 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.72|2|72 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.73|2|73 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.74|2|74 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.75|2|75 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.76|2|76 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.77|2|77 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.78|2|78 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.79|2|79 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.80|2|80 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.81|2|81 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.82|2|82 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.83|2|83 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.84|2|84 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.85|2|85 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.86|2|86 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.87|2|87 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.88|2|88 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.89|2|89 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.90|2|90 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.91|2|91 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.92|2|92 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.93|2|93 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.94|2|94 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.95|2|95 +1.3.6.1.2.1.10.94.1.1.13.1.1.13.96|2|96 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.1|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.2|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.3|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.4|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.5|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.6|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.7|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.8|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.9|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.10|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.11|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.12|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.13|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.14|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.15|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.16|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.17|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.18|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.19|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.20|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.21|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.22|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.23|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.24|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.25|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.26|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.27|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.28|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.29|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.30|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.31|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.32|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.33|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.34|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.35|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.36|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.37|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.38|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.39|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.40|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.41|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.42|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.43|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.44|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.45|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.46|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.47|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.48|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.49|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.50|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.51|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.52|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.53|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.54|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.55|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.56|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.57|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.58|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.59|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.60|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.61|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.62|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.63|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.64|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.65|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.66|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.67|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.68|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.69|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.70|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.71|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.72|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.73|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.74|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.75|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.76|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.77|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.78|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.79|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.80|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.81|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.82|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.83|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.84|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.85|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.86|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.87|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.88|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.89|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.90|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.91|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.92|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.93|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.94|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.95|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.12.96|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.1|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.2|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.3|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.4|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.5|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.6|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.7|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.8|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.9|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.10|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.11|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.12|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.13|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.14|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.15|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.16|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.17|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.18|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.19|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.20|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.21|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.22|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.23|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.24|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.25|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.26|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.27|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.28|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.29|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.30|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.31|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.32|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.33|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.34|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.35|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.36|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.37|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.38|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.39|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.40|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.41|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.42|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.43|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.44|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.45|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.46|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.47|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.48|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.49|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.50|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.51|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.52|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.53|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.54|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.55|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.56|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.57|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.58|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.59|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.60|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.61|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.62|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.63|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.64|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.65|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.66|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.67|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.68|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.69|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.70|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.71|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.72|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.73|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.74|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.75|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.76|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.77|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.78|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.79|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.80|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.81|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.82|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.83|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.84|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.85|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.86|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.87|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.88|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.89|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.90|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.91|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.92|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.93|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.94|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.95|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.2.13.96|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.1|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.2|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.3|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.4|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.5|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.6|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.7|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.8|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.9|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.10|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.11|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.12|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.13|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.14|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.15|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.16|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.17|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.18|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.19|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.20|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.21|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.22|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.23|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.24|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.25|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.26|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.27|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.28|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.29|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.30|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.31|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.32|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.33|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.34|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.35|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.36|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.37|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.38|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.39|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.40|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.41|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.42|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.43|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.44|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.45|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.46|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.47|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.48|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.49|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.50|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.51|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.52|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.53|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.54|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.55|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.56|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.57|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.58|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.59|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.60|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.61|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.62|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.63|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.64|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.65|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.66|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.67|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.68|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.69|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.70|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.71|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.72|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.73|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.74|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.75|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.76|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.77|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.78|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.79|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.80|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.81|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.82|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.83|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.84|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.85|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.86|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.87|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.88|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.89|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.90|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.91|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.92|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.93|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.94|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.95|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.12.96|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.1|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.2|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.3|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.4|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.5|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.6|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.7|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.8|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.9|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.10|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.11|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.12|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.13|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.14|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.15|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.16|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.17|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.18|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.19|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.20|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.21|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.22|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.23|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.24|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.25|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.26|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.27|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.28|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.29|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.30|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.31|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.32|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.33|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.34|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.35|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.36|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.37|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.38|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.39|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.40|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.41|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.42|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.43|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.44|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.45|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.46|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.47|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.48|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.49|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.50|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.51|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.52|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.53|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.54|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.55|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.56|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.57|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.58|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.59|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.60|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.61|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.62|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.63|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.64|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.65|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.66|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.67|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.68|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.69|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.70|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.71|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.72|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.73|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.74|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.75|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.76|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.77|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.78|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.79|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.80|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.81|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.82|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.83|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.84|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.85|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.86|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.87|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.88|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.89|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.90|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.91|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.92|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.93|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.94|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.95|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.3.13.96|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.1|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.2|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.3|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.4|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.5|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.6|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.7|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.8|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.9|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.10|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.11|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.12|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.13|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.14|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.15|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.16|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.17|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.18|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.19|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.20|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.21|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.22|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.23|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.24|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.25|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.26|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.27|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.28|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.29|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.30|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.31|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.32|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.33|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.34|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.35|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.36|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.37|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.38|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.39|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.40|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.41|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.42|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.43|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.44|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.45|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.46|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.47|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.48|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.49|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.50|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.51|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.52|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.53|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.54|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.55|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.56|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.57|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.58|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.59|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.60|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.61|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.62|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.63|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.64|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.65|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.66|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.67|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.68|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.69|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.70|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.71|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.72|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.73|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.74|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.75|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.76|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.77|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.78|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.79|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.80|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.81|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.82|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.83|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.84|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.85|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.86|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.87|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.88|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.89|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.90|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.91|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.92|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.93|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.94|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.95|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.12.96|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.1|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.2|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.3|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.4|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.5|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.6|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.7|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.8|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.9|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.10|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.11|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.12|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.13|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.14|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.15|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.16|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.17|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.18|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.19|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.20|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.21|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.22|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.23|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.24|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.25|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.26|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.27|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.28|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.29|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.30|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.31|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.32|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.33|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.34|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.35|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.36|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.37|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.38|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.39|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.40|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.41|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.42|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.43|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.44|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.45|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.46|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.47|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.48|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.49|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.50|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.51|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.52|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.53|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.54|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.55|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.56|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.57|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.58|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.59|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.60|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.61|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.62|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.63|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.64|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.65|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.66|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.67|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.68|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.69|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.70|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.71|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.72|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.73|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.74|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.75|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.76|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.77|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.78|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.79|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.80|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.81|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.82|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.83|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.84|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.85|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.86|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.87|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.88|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.89|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.90|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.91|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.92|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.93|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.94|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.95|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.4.13.96|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.1|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.2|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.3|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.4|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.5|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.6|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.7|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.8|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.9|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.10|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.11|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.12|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.13|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.14|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.15|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.16|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.17|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.18|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.19|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.20|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.21|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.22|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.23|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.24|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.25|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.26|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.27|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.28|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.29|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.30|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.31|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.32|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.33|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.34|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.35|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.36|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.37|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.38|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.39|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.40|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.41|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.42|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.43|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.44|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.45|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.46|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.47|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.48|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.49|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.50|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.51|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.52|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.53|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.54|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.55|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.56|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.57|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.58|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.59|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.60|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.61|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.62|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.63|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.64|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.65|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.66|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.67|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.68|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.69|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.70|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.71|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.72|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.73|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.74|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.75|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.76|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.77|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.78|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.79|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.80|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.81|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.82|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.83|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.84|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.85|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.86|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.87|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.88|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.89|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.90|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.91|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.92|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.93|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.94|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.95|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.12.96|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.1|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.2|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.3|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.4|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.5|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.6|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.7|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.8|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.9|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.10|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.11|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.12|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.13|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.14|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.15|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.16|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.17|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.18|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.19|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.20|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.21|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.22|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.23|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.24|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.25|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.26|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.27|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.28|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.29|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.30|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.31|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.32|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.33|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.34|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.35|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.36|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.37|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.38|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.39|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.40|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.41|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.42|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.43|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.44|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.45|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.46|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.47|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.48|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.49|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.50|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.51|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.52|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.53|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.54|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.55|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.56|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.57|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.58|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.59|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.60|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.61|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.62|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.63|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.64|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.65|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.66|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.67|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.68|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.69|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.70|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.71|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.72|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.73|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.74|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.75|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.76|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.77|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.78|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.79|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.80|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.81|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.82|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.83|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.84|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.85|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.86|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.87|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.88|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.89|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.90|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.91|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.92|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.93|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.94|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.95|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.5.13.96|66|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.1|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.2|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.3|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.4|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.5|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.6|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.7|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.8|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.9|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.10|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.11|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.12|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.13|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.14|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.15|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.16|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.17|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.18|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.19|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.20|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.21|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.22|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.23|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.24|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.25|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.26|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.27|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.28|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.29|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.30|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.31|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.32|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.33|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.34|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.35|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.36|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.37|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.38|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.39|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.40|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.41|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.42|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.43|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.44|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.45|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.46|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.47|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.48|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.49|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.50|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.51|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.52|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.53|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.54|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.55|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.56|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.57|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.58|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.59|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.60|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.61|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.62|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.63|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.64|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.65|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.66|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.67|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.68|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.69|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.70|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.71|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.72|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.73|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.74|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.75|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.76|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.77|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.78|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.79|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.80|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.81|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.82|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.83|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.84|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.85|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.86|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.87|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.88|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.89|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.90|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.91|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.92|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.93|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.94|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.95|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.12.96|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.1|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.2|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.3|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.4|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.5|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.6|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.7|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.8|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.9|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.10|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.11|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.12|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.13|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.14|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.15|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.16|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.17|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.18|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.19|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.20|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.21|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.22|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.23|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.24|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.25|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.26|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.27|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.28|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.29|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.30|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.31|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.32|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.33|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.34|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.35|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.36|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.37|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.38|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.39|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.40|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.41|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.42|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.43|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.44|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.45|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.46|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.47|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.48|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.49|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.50|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.51|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.52|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.53|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.54|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.55|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.56|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.57|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.58|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.59|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.60|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.61|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.62|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.63|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.64|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.65|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.66|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.67|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.68|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.69|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.70|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.71|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.72|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.73|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.74|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.75|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.76|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.77|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.78|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.79|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.80|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.81|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.82|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.83|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.84|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.85|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.86|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.87|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.88|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.89|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.90|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.91|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.92|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.93|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.94|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.95|2|0 +1.3.6.1.2.1.10.94.1.1.13.1.6.13.96|2|0 +1.3.6.1.2.1.31.1.1.1.1.1|4|ethernet0/0 +1.3.6.1.2.1.31.1.1.1.1.2|4|ethernet0/2 +1.3.6.1.2.1.31.1.1.1.1.3|4|wlan0/0 +1.3.6.1.2.1.31.1.1.1.1.4|4|atm0/0 +1.3.6.1.2.1.31.1.1.1.1.5|4|cellular1/0 +1.3.6.1.2.1.31.1.1.1.1.6|4|cellular1/1 +1.3.6.1.2.1.31.1.1.1.1.7|4|bvi0 +1.3.6.1.2.1.31.1.1.1.1.8|4|ethernet0/0.20 +1.3.6.1.2.1.31.1.1.1.1.9|4|ethernet0/0.9 +1.3.6.1.2.1.31.1.1.1.1.10|4|Loopback Interface +1.3.6.1.2.1.31.1.1.1.1.11|4|atm0/0 +1.3.6.1.2.1.31.1.1.1.1.12|4|atm0/0 +1.3.6.1.2.1.31.1.1.1.1.13|4|atm0/0 +1.3.6.1.2.1.31.1.1.1.1.14|4|ethernet0/0 +1.3.6.1.2.1.31.1.1.1.1.15|4|ethernet0/0 +1.3.6.1.2.1.31.1.1.1.1.16|4|ethernet0/0 +1.3.6.1.2.1.31.1.1.1.1.17|4|ethernet0/0 +1.3.6.1.2.1.31.1.1.1.18.1|4|==GPON:IXS.18.66366-1702047363== +1.3.6.1.2.1.31.1.1.1.18.2|4| +1.3.6.1.2.1.31.1.1.1.18.3|4| +1.3.6.1.2.1.31.1.1.1.18.4|4| +1.3.6.1.2.1.31.1.1.1.18.5|4| +1.3.6.1.2.1.31.1.1.1.18.6|4| +1.3.6.1.2.1.31.1.1.1.18.7|4| +1.3.6.1.2.1.31.1.1.1.18.8|4|==IXS.18.66365-Fibra@BizVPN== +1.3.6.1.2.1.31.1.1.1.18.9|4|== LAN: Dados == +1.3.6.1.2.1.31.1.1.1.18.10|4| +1.3.6.1.2.1.31.1.1.1.18.11|4| +1.3.6.1.2.1.31.1.1.1.18.12|4| +1.3.6.1.2.1.31.1.1.1.18.13|4| +1.3.6.1.2.1.31.1.1.1.18.14|4| +1.3.6.1.2.1.31.1.1.1.18.15|4| +1.3.6.1.2.1.31.1.1.1.18.16|4| +1.3.6.1.2.1.31.1.1.1.18.17|4| +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.5|66|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.5.6|66|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.5|2|0 +1.3.6.1.4.1.2007.4.1.2.2.2.18.3.2.1.10.6|2|0 +1.3.6.1.4.1.2007.4.1.2.2.2.24.2.1.23.3|2|4 +1.3.6.1.6.3.10.2.1.3.0|2|8443396