From f1e768a4ae98f62ef5f58fd229afc6d76144ad16 Mon Sep 17 00:00:00 2001 From: Maikel de Boer Date: Fri, 12 Nov 2021 14:18:56 +0100 Subject: [PATCH] Nokia SAR HMC (#13503) * Added wireless MSE * Add SAR HMC support * add test data * cleanup * fixed style --- LibreNMS/OS/Timos.php | 121 +- includes/definitions/discovery/timos.yaml | 74 +- mibs/nokia/TIMETRA-CELLULAR-MIB | 2544 ++++++ tests/data/timos_hc.json | 8855 +++++++++++++++++++++ tests/snmpsim/timos_hc.snmprec | 8491 ++++++++++++++++++++ 5 files changed, 20082 insertions(+), 3 deletions(-) create mode 100644 mibs/nokia/TIMETRA-CELLULAR-MIB create mode 100644 tests/data/timos_hc.json create mode 100644 tests/snmpsim/timos_hc.snmprec diff --git a/LibreNMS/OS/Timos.php b/LibreNMS/OS/Timos.php index b11b3ac46e..e0b6aa9e61 100644 --- a/LibreNMS/OS/Timos.php +++ b/LibreNMS/OS/Timos.php @@ -39,12 +39,17 @@ use App\Models\MplsTunnelCHop; use Illuminate\Support\Collection; use LibreNMS\Device\WirelessSensor; use LibreNMS\Interfaces\Discovery\MplsDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessChannelDiscovery; use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessRsrpDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessRsrqDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessRssiDiscovery; +use LibreNMS\Interfaces\Discovery\Sensors\WirelessSnrDiscovery; use LibreNMS\Interfaces\Polling\MplsPolling; use LibreNMS\OS; use LibreNMS\RRD\RrdDefinition; -class Timos extends OS implements MplsDiscovery, MplsPolling, WirelessPowerDiscovery +class Timos extends OS implements MplsDiscovery, MplsPolling, WirelessPowerDiscovery, WirelessSnrDiscovery, WirelessRsrqDiscovery, WirelessRssiDiscovery, WirelessRsrpDiscovery, WirelessChannelDiscovery { public function discoverOS(Device $device): void { @@ -823,5 +828,119 @@ class Timos extends OS implements MplsDiscovery, MplsPolling, WirelessPowerDisco return $chops; } + public function discoverWirelessSnr() + { + $sensors = []; + + $data = snmpwalk_cache_oid($this->getDeviceArray(), 'tmnxCellPortSinr', [], 'TIMETRA-CELLULAR-MIB'); + $carrier = $this->getCacheTable('ifName', 'IF-MIB'); + foreach ($data as $index => $entry) { + $sensors[] = new WirelessSensor( + 'snr', + $this->getDeviceId(), + '.1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.12.' . $index, + 'timos', + $index, + 'SNR: ' . $carrier[$index]['ifName'], + null, + 1, + 10 + ); + } + + return $sensors; + } + + public function discoverWirelessRsrq() + { + $sensors = []; + + $data = snmpwalk_cache_oid($this->getDeviceArray(), 'tmnxCellPortRsrq', [], 'TIMETRA-CELLULAR-MIB'); + $carrier = $this->getCacheTable('ifName', 'IF-MIB'); + foreach ($data as $index => $entry) { + $sensors[] = new WirelessSensor( + 'rsrq', + $this->getDeviceId(), + '.1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.11.' . $index, + 'timos', + $index, + 'RSRQ: ' . $carrier[$index]['ifName'], + null, + 1, + 1 + ); + } + + return $sensors; + } + + public function discoverWirelessRssi() + { + $sensors = []; + + $data = snmpwalk_cache_oid($this->getDeviceArray(), 'tmnxCellPortRssi', [], 'TIMETRA-CELLULAR-MIB'); + $carrier = $this->getCacheTable('ifName', 'IF-MIB'); + foreach ($data as $index => $entry) { + $sensors[] = new WirelessSensor( + 'rssi', + $this->getDeviceId(), + '.1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.8.' . $index, + 'timos', + $index, + 'RSSI: ' . $carrier[$index]['ifName'], + null, + 1, + 10 + ); + } + + return $sensors; + } + + public function discoverWirelessRsrp() + { + $sensors = []; + + $data = snmpwalk_cache_oid($this->getDeviceArray(), 'tmnxCellPortRsrp', [], 'TIMETRA-CELLULAR-MIB'); + $carrier = $this->getCacheTable('ifName', 'IF-MIB'); + foreach ($data as $index => $entry) { + $sensors[] = new WirelessSensor( + 'rsrp', + $this->getDeviceId(), + '.1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.9.' . $index, + 'timos', + $index, + 'RSRP: ' . $carrier[$index]['ifName'], + null, + 1, + 10 + ); + } + + return $sensors; + } + + public function discoverWirelessChannel() + { + $sensors = []; + + $data = snmpwalk_cache_oid($this->getDeviceArray(), 'tmnxCellPortChannelNumber', [], 'TIMETRA-CELLULAR-MIB'); + $carrier = $this->getCacheTable('ifName', 'IF-MIB'); + foreach ($data as $index => $entry) { + $sensors[] = new WirelessSensor( + 'channel', + $this->getDeviceId(), + '.1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.5.' . $index, + 'timos', + $index, + 'CHANNEL: ' . $carrier[$index]['ifName'], + null, + 1, + 1 + ); + } + + return $sensors; + } // End Class Timos } diff --git a/includes/definitions/discovery/timos.yaml b/includes/definitions/discovery/timos.yaml index 51259f4874..73944478e3 100644 --- a/includes/definitions/discovery/timos.yaml +++ b/includes/definitions/discovery/timos.yaml @@ -1,4 +1,4 @@ -mib: TIMETRA-SYSTEM-MIB:TIMETRA-CHASSIS-MIB:TIMETRA-SUBSCRIBER-MGMT-MIB +mib: TIMETRA-SYSTEM-MIB:TIMETRA-CHASSIS-MIB:TIMETRA-SUBSCRIBER-MGMT-MIB:TIMETRA-CELLULAR-MIB:IF-MIB modules: mempools: data: @@ -19,6 +19,12 @@ modules: num_oid: '.1.3.6.1.4.1.6527.3.1.2.1.1.1.{{ $index }}' sensors: + pre-cache: + data: + - + oid: + - ifName + - tmnxCellPdnApn state: data: - @@ -96,7 +102,58 @@ modules: states: - { value: 1, generic: 0, graph: 0, descr: Ok } - { value: 2, generic: 2, graph: 0, descr: OverTemp } - + - + oid: tmnxCellPortRegistrationStatus + num_oid: '.1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.2.{{ $index }}' + descr: 'Registration state {{ $ifName }}' + index: 'tmnxCellPortRegistrationStatus.{{ $index }}' + state_name: tmnxCellPortRegistrationStatus + states: + - { value: 0, generic: 0, graph: 0, descr: Not-registered } + - { value: 1, generic: 0, graph: 0, descr: Registered-home } + - { value: 2, generic: 0, graph: 0, descr: Searching } + - { value: 3, generic: 0, graph: 0, descr: Denied } + - { value: 4, generic: 0, graph: 0, descr: No-network } + - { value: 5, generic: 0, graph: 0, descr: Registered-roaming } + - { value: 6, generic: 0, graph: 0, descr: Sms-only-home } + - { value: 7, generic: 0, graph: 0, descr: Sms-only-roaming } + - { value: 8, generic: 0, graph: 0, descr: Emergency-only } + - { value: 9, generic: 0, graph: 0, descr: Csfb-not-preferred-home } + - { value: 10, generic: 0, graph: 0, descr: Csfb-not-preferred-roaming } + group: 'Cellular status' + - + oid: tmnxCellPortWirelessTechnology + num_oid: '.1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.3.{{ $index }}' + descr: 'Wireless technology {{ $ifName }}' + index: 'tmnxCellPortWirelessTechnology.{{ $index }}' + state_name: tmnxCellPortWirelessTechnology + states: + - { value: 0, generic: 0, graph: 0, descr: None } + - { value: 1, generic: 0, graph: 0, descr: Lte } + - { value: 2, generic: 0, graph: 0, descr: Wcdma } + - { value: 3, generic: 0, graph: 0, descr: Gsm } + group: 'Cellular status' + - + oid: tmnxCellSimCardEquipped + num_oid: '.1.3.6.1.4.1.6527.3.1.2.109.3.1.3.1.1.{{ $index }}' + descr: 'Simcard {{ $ifName }}' + index: 'tmnxCellSimCardEquipped.{{ $index }}' + state_name: tmnxCellSimCardEquipped + states: + - { value: 1, generic: 0, graph: 0, descr: Installed } + - { value: 2, generic: 0, graph: 0, descr: Not installed } + group: 'Cellular status' + - + + oid: tmnxCellPdnConnectionState + num_oid: '.1.3.6.1.4.1.6527.3.1.2.109.3.1.4.1.1.{{ $index }}' + descr: 'Pdn state {{ $ifName }} {{ $tmnxCellPdnApn }}' + index: 'tmnxCellPdnConnectionState.{{ $index }}' + state_name: tmnxCellPdnConnectionState + states: + - { value: 0, generic: 0, graph: 0, descr: Not connected } + - { value: 1, generic: 0, graph: 0, descr: Connected } + group: 'Cellular status' temperature: data: - @@ -149,3 +206,16 @@ modules: descr: 'Total hosts on this system' index: 'tmnxSubMgmtSystSTotal.{{ $index }}' group: 'Subscribers' + - + oid: tmnxCellPortFrequencyBand + num_oid: '.1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.4.{{ $index }}' + descr: 'Interface {{ $ifName }}' + index: 'tmnxCellPortFrequencyBand.{{ $index }}' + group: 'Frequency band' + - + oid: tmnxCellularPortBearerTable + value: tmnxCellPortBearerQci + num_oid: '.1.3.6.1.4.1.6527.3.1.2.109.3.1.5.1.3.{{ $index }}' + descr: 'Interface {{ $ifName }}' + index: 'tmnxCellularPortBearerTable.{{ $index }}' + group: 'QoS Class Identifier' diff --git a/mibs/nokia/TIMETRA-CELLULAR-MIB b/mibs/nokia/TIMETRA-CELLULAR-MIB new file mode 100644 index 0000000000..8342269fd0 --- /dev/null +++ b/mibs/nokia/TIMETRA-CELLULAR-MIB @@ -0,0 +1,2544 @@ +TIMETRA-CELLULAR-MIB DEFINITIONS ::= BEGIN + +IMPORTS + InetAddress, InetAddressType + FROM INET-ADDRESS-MIB + MODULE-COMPLIANCE, NOTIFICATION-GROUP, + OBJECT-GROUP + FROM SNMPv2-CONF + Integer32, MODULE-IDENTITY, + NOTIFICATION-TYPE, OBJECT-TYPE, + Unsigned32 + FROM SNMPv2-SMI + DateAndTime, DisplayString, RowStatus, + TEXTUAL-CONVENTION, TimeStamp, + TruthValue + FROM SNMPv2-TC + tmnxCardSlotNum, tmnxMDASlotNum + FROM TIMETRA-CHASSIS-MIB + timetraSRMIBModules, tmnxSRConfs, + tmnxSRNotifyPrefix, tmnxSRObjs + FROM TIMETRA-GLOBAL-MIB + tmnxPortNotifyPortId, tmnxPortPortID + FROM TIMETRA-PORT-MIB + TItemDescription, TNamedItemOrEmpty, + TmnxAuthPassword, TmnxEnabledDisabled, + TmnxEnabledDisabledAdminState + FROM TIMETRA-TC-MIB + ; + +timetraCellularMIBModule MODULE-IDENTITY + LAST-UPDATED "201607180000Z" + ORGANIZATION "Nokia" + CONTACT-INFO + "Nokia SROS Support + Web: http://www.nokia.com" + DESCRIPTION + "This document is the SNMP MIB module for the Nokia SROS implementation + of cellular ports. + + Copyright 2016-2018 Nokia. All rights reserved. Reproduction of this + document is authorized on the condition that the foregoing copyright + notice is included. + + This SNMP MIB module (Specification) embodies Nokia's + proprietary intellectual property. Nokia retains all + title and ownership in the Specification, including any + revisions. + + Nokia grants all interested parties a non-exclusive license to use and + distribute an unmodified copy of this Specification in connection with + management of Nokia products, and without fee, provided this copyright + notice and license appear on all copies. + + This Specification is supplied `as is', and Nokia makes no warranty, + either express or implied, as to the use, operation, condition, or + performance of the Specification." + + REVISION "201607180000Z" + DESCRIPTION + "Rev 1.0 18 Jul 2016 00:00 + Initial version of the TIMETRA-PORT-CELLULAR-MIB." + + ::= { timetraSRMIBModules 109 } + +TmnxCellularPdnProfileId ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "TmnxCellularPdnProfileId identifies a specific Packet Data Network + profile in the system." + SYNTAX Unsigned32 (0..15) + +TmnxCellularAccessPointName ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The data type TmnxCellularAccessPointName represents a cellular Access + Point Name (APN)." + REFERENCE + "3GPP TS 23.003 version 14.0.0 Release 14, '3rd Generation + Partnership Project; Technical Specification Group Core Network + and Terminals; Numbering, addressing and identification', + 3GPP, June 2016, Section 9, 'Definition of Access Point Name'" + SYNTAX DisplayString (SIZE (0..100)) + +TmnxCellularImei ::= TEXTUAL-CONVENTION + DISPLAY-HINT "2a-6a-6a-2a" + STATUS current + DESCRIPTION + "The data type TmnxCellularImei represents an International Mobile + Station Equipment Identity (IMEI) number." + REFERENCE + "3GPP TS 23.003 version 14.0.0 Release 14, '3rd Generation + Partnership Project; Technical Specification Group Core Network + and Terminals; Numbering, addressing and identification', + 3GPP, June 2016, Section 6, 'International Mobile Station + Equipment Identity and Software Version Number'" + SYNTAX DisplayString (SIZE (0|15..16)) + +TmnxCellularSimCardNumber ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "TmnxCellularSimCardNumber identifies a specific cellular Subscriber + Identity Module (SIM) card in a system." + SYNTAX Unsigned32 (1..2) + +TmnxCellularSimCardIccid ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The data type TmnxCellularSimCardIccid represents an Integrated + Circuit Card Identifier (ICCID). Each SIM card has a unique + ICCID." + REFERENCE + "ITU-T E.118, 'The international telecommunication charge card', + ITU-T, May 2006, Section 4, 'Numbering system'" + SYNTAX DisplayString (SIZE (0..20)) + +TmnxCellularImsi ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The data type TmnxCellularImsi represents an International + Mobile Subscriber Identity. An IMSI uniquely identifies a + mobile subscriber." + REFERENCE + "3GPP TS 23.003 version 14.0.0 Release 14, '3rd Generation + Partnership Project; Technical Specification Group Core Network + and Terminals; Numbering, addressing and identification', + 3GPP, June 2016, Section 2, 'Identification of mobile subscribers'" + SYNTAX DisplayString (SIZE (0..15)) + +TmnxCellularPdnId ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "TmnxCellularPdnId identifies a specific Packet Data Network (PDN) on a + cellular port." + SYNTAX Unsigned32 (1) + +TmnxCellularChannelNumber ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "TmnxCellularChannelNumber identifies an channel number. For LTE, + this is an E-UTRA Absolute Radio Frequency Channel Number (EARFCN), + as described in 3GPP TS 36.101." + REFERENCE + "3GPP TS 36.101 version 14.1.0 Release 14, '3rd Generation + Partnership Project; Technical Specification Group Radio Access + Network; Evolved Universal Terrestrial Radio Access (E-UTRA); + User Equipment (UE) radio transmission and reception (Release 14), + 3GPP, September 2016, Table 5.7.3-1, 'E-UTRA channel numbers" + SYNTAX Unsigned32 (0..262143) + +TmnxCellularBearerRate ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "TmnxCellularBearerRate identifies a bit rate of a bearer on a cellular + interface, in kbit/s." + SYNTAX Unsigned32 (0..100000) + +tmnxCellularObjs OBJECT IDENTIFIER ::= { tmnxSRObjs 109 } + +tmnxCellularConfigObjs OBJECT IDENTIFIER ::= { tmnxCellularObjs 2 } + +tmnxCellularConfigTimestamps OBJECT IDENTIFIER ::= { tmnxCellularConfigObjs 1 } + +tmnxCellPdnProfileTblLastChanged OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPdnProfileTblLastChanged indicates the sysUpTime + at the time of the most recent management-initiated change to the + table tmnxCellularPdnProfileTable." + ::= { tmnxCellularConfigTimestamps 1 } + +tmnxCellSimCardTableLastChanged OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellSimCardTableLastChanged indicates the sysUpTime + at the time of the most recent management-initiated change to the + table tmnxCellularSimCardTable." + ::= { tmnxCellularConfigTimestamps 2 } + +tmnxCellPdnTblLastChanged OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPdnTblLastChanged indicates the sysUpTime at the + time of the most recent management-initiated change to the table + tmnxCellularPdnTable." + ::= { tmnxCellularConfigTimestamps 3 } + +tmnxCellPortTblLastChanged OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortTblLastChanged indicates the sysUpTime at the + time of the most recent management-initiated change to the table + tmnxCellularPortTable." + ::= { tmnxCellularConfigTimestamps 4 } + +tmnxCellPortCbsdAuthCfgTblLstChg OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthCfgTblLstChg indicates the sysUpTime + at the time of the most recent management-initiated change to the + table tmnxCellPortCbsdAuthCfgTable." + ::= { tmnxCellularConfigTimestamps 5 } + +tmnxCellularSystemConfigObjs OBJECT IDENTIFIER ::= { tmnxCellularConfigObjs 2 } + +tmnxCellularPdnProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF TmnxCellPdnProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The tmnxCellularPdnProfileTable has a series of configurations, + applicable to cellular Packet Data Networks, which are indexed by a + PDN profile number." + ::= { tmnxCellularSystemConfigObjs 1 } + +tmnxCellPdnProfileEntry OBJECT-TYPE + SYNTAX TmnxCellPdnProfileEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each row entry represents a specific PDN profile. + + The system automatically creates one entry, at index 0, to represent + the default PDN profile. The user cannot modify the configuration + of this default profile. + + Other entries can be created and deleted via SNMP SET operations, and + the user can modify the configuration of those entries." + INDEX { tmnxCellPdnProfileId } + ::= { tmnxCellularPdnProfileTable 1 } + +TmnxCellPdnProfileEntry ::= SEQUENCE +{ + tmnxCellPdnProfileId TmnxCellularPdnProfileId, + tmnxCellPdnProfRowStatus RowStatus, + tmnxCellPdnProfLastChanged TimeStamp, + tmnxCellPdnProfDescription TItemDescription, + tmnxCellPdnProfApn TmnxCellularAccessPointName, + tmnxCellPdnProfAuthType INTEGER, + tmnxCellPdnProfUsername DisplayString, + tmnxCellPdnProfPassword TmnxAuthPassword, + tmnxCellPdnProfProtocol INTEGER +} + +tmnxCellPdnProfileId OBJECT-TYPE + SYNTAX TmnxCellularPdnProfileId + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of tmnxCellPdnProfileId specifies the number of a specific + PDN profile configured in the system. + + The value 0 is reserved for a default profile, which is automatically + created by the system, and cannot be modified or deleted by the user." + ::= { tmnxCellPdnProfileEntry 1 } + +tmnxCellPdnProfRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of tmnxCellPdnProfRowStatus specifies the row status of the + PDN profile entry. It is used to control the creation and deletion of + PDN profiles. + + The user cannot delete the PDN profile whose tmnxCellPdnProfileId has + a value of 0." + ::= { tmnxCellPdnProfileEntry 2 } + +tmnxCellPdnProfLastChanged OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPdnProfLastChanged indicates the sysUpTime at the + time of the most recent management-initiated change to this table row. + + For the default PDN profile, tmnxCellPdnProfLastChanged has a value of + 0" + ::= { tmnxCellPdnProfileEntry 3 } + +tmnxCellPdnProfDescription OBJECT-TYPE + SYNTAX TItemDescription + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of tmnxCellPdnProfDescription specifies a user provided + description for this PDN profile. + + For the default PDN profile, tmnxCellPdnProfDescription has a value of + 'default profile'" + DEFVAL { ''H } + ::= { tmnxCellPdnProfileEntry 4 } + +tmnxCellPdnProfApn OBJECT-TYPE + SYNTAX TmnxCellularAccessPointName + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of tmnxCellPdnProfApn specifies the APN for this PDN. + + The cellular service provider may require the user to program the APN + value in order to use the service. + + For the default PDN profile, tmnxCellPdnProfApn has a value of the + empty string" + DEFVAL { ''H } + ::= { tmnxCellPdnProfileEntry 5 } + +tmnxCellPdnProfAuthType OBJECT-TYPE + SYNTAX INTEGER { + none (0), + pap (1), + chap (2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of tmnxCellPdnProfAuthType specifies the method of + authentication used on the PDN. + + For the default PDN profile, tmnxCellPdnProfAuthType has a value of + 'none (0)'." + DEFVAL { none } + ::= { tmnxCellPdnProfileEntry 6 } + +tmnxCellPdnProfUsername OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of tmnxCellPdnProfUsername specifies the username when + authenticating the PDN. + + For the default PDN profile, tmnxCellPdnProfUsername has a value of + the empty string." + DEFVAL { ''H } + ::= { tmnxCellPdnProfileEntry 7 } + +tmnxCellPdnProfPassword OBJECT-TYPE + SYNTAX TmnxAuthPassword + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of tmnxCellPdnProfPassword specifies the password when + authenticating the PDN. + + A get request on this object always returns an empty string. + + For the default PDN profile, tmnxCellPdnProfPassword has a value of + the empty string." + DEFVAL { ''H } + ::= { tmnxCellPdnProfileEntry 8 } + +tmnxCellPdnProfProtocol OBJECT-TYPE + SYNTAX INTEGER { + ipv4 (1), + ipv6 (2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of tmnxCellPdnProfProtocol specifies whether the PDN shall + use IPv4 or IPv6 addresses. + + For the default PDN profile, tmnxCellPdnProfProtocol has a value of + ipv4." + DEFVAL { ipv4 } + ::= { tmnxCellPdnProfileEntry 9 } + +tmnxCellularPortConfigObjs OBJECT IDENTIFIER ::= { tmnxCellularConfigObjs 3 } + +tmnxCellularSimCardTable OBJECT-TYPE + SYNTAX SEQUENCE OF TmnxCellularSimCardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The tmnxCellularSimCardTable has an entry for each SIM card in the + system." + ::= { tmnxCellularPortConfigObjs 1 } + +tmnxCellularSimCardEntry OBJECT-TYPE + SYNTAX TmnxCellularSimCardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each row entry represents a SIM card for a cellular port in the + system. Entries are automatically created by the system, and cannot be + created or deleted via SNMP SET operations. + + The system creates an entry for each possible SIM card that can + be installed into the system. Each SIM card is associated with a + specific cellular port in the system." + INDEX { + tmnxPortPortID, + tmnxCellSimCardId + } + ::= { tmnxCellularSimCardTable 1 } + +TmnxCellularSimCardEntry ::= SEQUENCE +{ + tmnxCellSimCardId TmnxCellularSimCardNumber, + tmnxCellSimCardLastChanged TimeStamp, + tmnxCellSimCardDescription TItemDescription, + tmnxCellSimCardPin OCTET STRING, + tmnxCellSimCardFailureDuration Unsigned32, + tmnxCellSimCardPortStateSwitch TruthValue, + tmnxCellSimCardBgpStateSwitch TruthValue +} + +tmnxCellSimCardId OBJECT-TYPE + SYNTAX TmnxCellularSimCardNumber + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of tmnxCellSimCardId specifies a SIM card on a cellular + port." + ::= { tmnxCellularSimCardEntry 1 } + +tmnxCellSimCardLastChanged OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellSimCardLastChanged indicates the sysUpTime at the + time of the most recent management-initiated change to this table row." + ::= { tmnxCellularSimCardEntry 2 } + +tmnxCellSimCardDescription OBJECT-TYPE + SYNTAX TItemDescription + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellSimCardDescription specifies a user provided + description for this SIM card." + DEFVAL { ''H } + ::= { tmnxCellularSimCardEntry 3 } + +tmnxCellSimCardPin OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0|4..8)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellSimCardPin specifies the Personal + Identification Number of the SIM card. This is required + in order to access a locked SIM card. + + A get request on this object always returns an empty string." + DEFVAL { ''H } + ::= { tmnxCellularSimCardEntry 4 } + +tmnxCellSimCardFailureDuration OBJECT-TYPE + SYNTAX Unsigned32 (1..60) + UNITS "minutes" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellSimCardFailureDuration specifies the amount or + time that the system will wait before switching SIM cards. + + The system will only automatically switch SIM cards if + tmnxCellMdaAdminActiveSim is set to 'automatic', and + if the failover criteria is met. The value of + tmnxCellSimCardPortStateSwitch and tmnxCellSimCardBgpStateSwitch + control the failover criteria." + DEFVAL { 5 } + ::= { tmnxCellularSimCardEntry 5 } + +tmnxCellSimCardPortStateSwitch OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellSimCardPortStateSwitch specifies whether or not + the system will automatically switch to the other SIM card if the port + corresponding to this SIM card remains operationally down for the + duration specified by tmnxCellSimCardFailureDuration. + + The system will only automatically switch SIM cards if + tmnxCellMdaAdminActiveSim is set to 'automatic'. + + At least one of the SIM switch criteria tmnxCellSimCardPortStateSwitch + or tmnxCellSimCardBgpStateSwitch must be enabled for a given SIM card." + DEFVAL { true } + ::= { tmnxCellularSimCardEntry 6 } + +tmnxCellSimCardBgpStateSwitch OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellSimCardBgpStateSwitch specifies whether or not + the system will automatically switch to the other SIM card if all BGP + sessions corresponding to this SIM card are not established for the + duration specified by tmnxCellSimCardFailureDuration. + + The system will only automatically switch SIM cards if + tmnxCellMdaAdminActiveSim is set to 'automatic'. + + At least one of the SIM switch criteria tmnxCellSimCardPortStateSwitch + or tmnxCellSimCardBgpStateSwitch must be enabled for a given SIM card." + DEFVAL { false } + ::= { tmnxCellularSimCardEntry 7 } + +tmnxCellularPdnTable OBJECT-TYPE + SYNTAX SEQUENCE OF TmnxCellularPdnEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The tmnxCellularPdnTable has a series of configurations for Packet + Data Networks (PDNs), which are configured against a cellular port and + associated with a specific SIM card." + ::= { tmnxCellularPortConfigObjs 2 } + +tmnxCellularPdnEntry OBJECT-TYPE + SYNTAX TmnxCellularPdnEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each row entry represents a specific Packet Data Network. + + A Packet Data Network is associated with a specific cellular port and + SIM card. + + Entries can be created and deleted via SNMP SET operations." + INDEX { + tmnxPortPortID, + tmnxCellPdnId + } + ::= { tmnxCellularPdnTable 1 } + +TmnxCellularPdnEntry ::= SEQUENCE +{ + tmnxCellPdnId TmnxCellularPdnId, + tmnxCellPdnRowStatus RowStatus, + tmnxCellPdnLastChanged TimeStamp, + tmnxCellPdnProfile TmnxCellularPdnProfileId +} + +tmnxCellPdnId OBJECT-TYPE + SYNTAX TmnxCellularPdnId + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of tmnxCellPdnId specifies a Packet Data Network on a + cellular port." + ::= { tmnxCellularPdnEntry 1 } + +tmnxCellPdnRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of tmnxCellPdnRowStatus specifies the row status of the PDN + entry. It is used to control the creation and deletion of Packet Data + Networks on a cellular port." + ::= { tmnxCellularPdnEntry 2 } + +tmnxCellPdnLastChanged OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPdnLastChanged indicates the sysUpTime at the + time of the most recent management-initiated change to this table row." + ::= { tmnxCellularPdnEntry 3 } + +tmnxCellPdnProfile OBJECT-TYPE + SYNTAX TmnxCellularPdnProfileId + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of tmnxCellPdnProfile specifies the PDN profile that + is associated with this Packet Data Network. The configuration of a + PDN is contained corresponding table row of + tmnxCellularPdnProfileTable." + DEFVAL { 0 } + ::= { tmnxCellularPdnEntry 4 } + +tmnxCellularPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF TmnxCellularPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The tmnxCellularPortTable has an entry for each cellular port in the + system." + ::= { tmnxCellularPortConfigObjs 3 } + +tmnxCellularPortEntry OBJECT-TYPE + SYNTAX TmnxCellularPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each row entry represents a cellular port in the system. Entries are + automatically created by the system, and cannot be created or deleted + via SNMP SET operations." + INDEX { tmnxPortPortID } + ::= { tmnxCellularPortTable 1 } + +TmnxCellularPortEntry ::= SEQUENCE +{ + tmnxCellPortLastChanged TimeStamp, + tmnxCellPortBand125MaxPowerLevel Unsigned32, + tmnxCellPortSyncSysTime TruthValue +} + +tmnxCellPortLastChanged OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortLastChanged indicates the sysUpTime at the + time of the most recent management-initiated change to this table row." + ::= { tmnxCellularPortEntry 1 } + +tmnxCellPortBand125MaxPowerLevel OBJECT-TYPE + SYNTAX Unsigned32 (1..20) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellPortBand125MaxPowerLevel specifies the maximum + power level that may be transmitted by the band 125 LTE radio on some + variants of the SAR-Hm. + + A value of 1 specifies that the radio may transmit at its maximum + power level. Higher values reduce the maximum transmitted power + level of the band 125 radio, with a value of 20 specifying the lowest + maximum power level." + REFERENCE + "7705 SAR-Hm, Release 15.0.R4, 'SAR-Hm Chassis Installation Guide', + Nokia, October 2017, Section 4.9 'Site Preparation and Engineering + Guidelines for 7705 SAR-Hm B125 Antennas'" + DEFVAL { 1 } + ::= { tmnxCellularPortEntry 2 } + +tmnxCellPortSyncSysTime OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellPortSyncSysTime specifies whether the system time + is synchronized on the cellular port." + DEFVAL { false } + ::= { tmnxCellularPortEntry 3 } + +tmnxCellularMdaTable OBJECT-TYPE + SYNTAX SEQUENCE OF TmnxCellularMdaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The tmnxCellularMdaTable has an entry for each cellular MDA in the + system." + ::= { tmnxCellularPortConfigObjs 4 } + +tmnxCellularMdaEntry OBJECT-TYPE + SYNTAX TmnxCellularMdaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each row entry represents a cellular MDA in the system. Entries are + automatically created by the system, and cannot be created or deleted + via SNMP SET operations." + INDEX { + tmnxCardSlotNum, + tmnxMDASlotNum + } + ::= { tmnxCellularMdaTable 1 } + +TmnxCellularMdaEntry ::= SEQUENCE +{ + tmnxCellMdaLastChanged TimeStamp, + tmnxCellMdaAdminActiveSim INTEGER, + tmnxCellMdaDownResetInterval Unsigned32, + tmnxCellMdaDownResetCriteria BITS, + tmnxCellMdaDownResetPending TruthValue, + tmnxCellMdaDownResetTime Unsigned32, + tmnxCellMdaPreferredSim TmnxCellularSimCardNumber, + tmnxCellMdaOperActiveSim TmnxCellularSimCardNumber, + tmnxCellMdaSimCardSwitchPending TruthValue, + tmnxCellMdaSimCardSwitchTime Unsigned32, + tmnxCellMdaSimCardLastSwitchTime TimeStamp, + tmnxCellMdaSimLastSwitchReason INTEGER, + tmnxCellMdaSpecFirmwareVersion DisplayString, + tmnxCellMdaMaxTxPower Integer32 +} + +tmnxCellMdaLastChanged OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellMdaLastChanged indicates the sysUpTime at the + time of the most recent management-initiated change to this table row." + ::= { tmnxCellularMdaEntry 1 } + +tmnxCellMdaAdminActiveSim OBJECT-TYPE + SYNTAX INTEGER { + sim-1 (1), + sim-2 (2), + automatic (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellMdaAdminActiveSim specifies which SIM card shall + be active on the MDA. + + A value of 'sim-1' or 'sim-2' specifies that the system will use the SIM card + in that slot as the active SIM card. If there is no SIM card in that + slot, or if the system cannot establish service using that SIM card, the + system will continue to use that SIM card, regardless of the contents of + the other SIM card slot. + + A value of 'automatic' specifies that the system will automatically + switch between SIM cards if it cannot establish service." + DEFVAL { sim-1 } + ::= { tmnxCellularMdaEntry 2 } + +tmnxCellMdaDownResetInterval OBJECT-TYPE + SYNTAX Unsigned32 (0..240) + UNITS "minutes" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellMdaDownResetInterval specifies the interval, in + minutes, after which the system will reset if it cannot establish + service over the cellular interface. + + A value of 0 specifies that the system will not reset if it cannot + establish service over the cellular interface." + DEFVAL { 0 } + ::= { tmnxCellularMdaEntry 3 } + +tmnxCellMdaDownResetCriteria OBJECT-TYPE + SYNTAX BITS { + port (0), + bgp (1) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellMdaDownResetCriteria specifies the criteria to + decide whether or not service is operational over the cellular + interface. + + If the 'port' bit is set, cellular service is deemed inoperational if + no cellular port is operationally up. + + If the 'bgp' bit is set, cellular service is deemed inoperational if + there is no BGP peer established with a configured local address + corresponding to a cellular interface. + + Multiple bits may be set simultaneously. If so, the system evaluates + each criterion independently." + DEFVAL { { port } } + ::= { tmnxCellularMdaEntry 4 } + +tmnxCellMdaDownResetPending OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellMdaDownResetPending indicates if the current + state of the system will cause the system to reset, due to the + criteria configured by tmnxCellMdaDownResetCriteria. + + If the system remains in this state for the duration indicated by + tmnxCellMdaDownResetInterval, it will automatically reset. + + This value will only be true if tmnxCellMdaDownResetInterval is + configured to a non-zero value." + ::= { tmnxCellularMdaEntry 5 } + +tmnxCellMdaDownResetTime OBJECT-TYPE + SYNTAX Unsigned32 (0..14400) + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellMdaDownResetTime indicates the amount of time + remaining before the system will reset, due to the criteria specified + by tmnxCellMdaDownResetCriteria. + + If tmnxCellMdaDownResetPending is false, tmnxCellMdaDownResetTime will + have a value of 0." + ::= { tmnxCellularMdaEntry 6 } + +tmnxCellMdaPreferredSim OBJECT-TYPE + SYNTAX TmnxCellularSimCardNumber + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellMdaPreferredSim specifies which SIM card shall be + used as the active SIM upon system initialization when + tmnxCellMdaAdminActiveSim is set to 'automatic'." + DEFVAL { 1 } + ::= { tmnxCellularMdaEntry 7 } + +tmnxCellMdaOperActiveSim OBJECT-TYPE + SYNTAX TmnxCellularSimCardNumber + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellMdaOperActiveSim indicates which SIM card is + active on the MDA." + ::= { tmnxCellularMdaEntry 8 } + +tmnxCellMdaSimCardSwitchPending OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellMdaSimCardSwitchPending indicates if the current + state of the system will cause a SIM switch. + + If the system remains in this state for the duration indicated by + tmnxCellMdaSimCardSwitchTime, it will automatically switch the MDA to + use the other SIM card. + + This value will only be true if tmnxCellMdaAdminActiveSim is set to + 'automatic'." + ::= { tmnxCellularMdaEntry 9 } + +tmnxCellMdaSimCardSwitchTime OBJECT-TYPE + SYNTAX Unsigned32 (0..3600) + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellMdaSimCardSwitchTime indicates the amount of time + remaining before the system will automatically switch SIM cards if the + system remains in its current state. + + If tmnxCellMdaSimCardSwitchPending is false, + tmnxCellMdaSimCardSwitchTime will have a value of 0." + ::= { tmnxCellularMdaEntry 10 } + +tmnxCellMdaSimCardLastSwitchTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellMdaSimCardLastSwitchTime indicates the value of + sysUpTime the last time that the system switched the operationally + active SIM card on the cellular MDA. + + If the system has not switched the active SIM card, + tmnxCellMdaSimCardLastSwitchTime will have a value of 0." + ::= { tmnxCellularMdaEntry 11 } + +tmnxCellMdaSimLastSwitchReason OBJECT-TYPE + SYNTAX INTEGER { + none (0), + manual-configuration (1), + forced-switch (2), + cellular-port-down (3), + no-bgp-neighbor (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellMdaSimLastSwitchReason indicates the reason why + the system last switched the operationally active SIM card on the + cellular MDA. + + If the system has not switched the active SIM card, + tmnxCellMdaSimLastSwitchReason will have a value of 'none'." + ::= { tmnxCellularMdaEntry 12 } + +tmnxCellMdaSpecFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellMdaSpecFirmwareVersion indicates the firmware + version that the system is configured to use on the cellular modem. + + An empty string indicates that the user has not specified that the + system should use different modem firmware than the version that is + bundled within SROS." + ::= { tmnxCellularMdaEntry 13 } + +tmnxCellMdaMaxTxPower OBJECT-TYPE + SYNTAX Integer32 (1..23) + UNITS "decibel-milliwatts" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellMdaMaxTxPower specifies the maximum transmit + power of the cellular interface on the MDA. This object only applies + to platforms with cellular interfaces that support Citizen's Broadband + Radio Service (CBRS) frequency bands. On those platforms, this value + specifies the maximum transmit power regardless of the frequency band. + On platforms that do not support CBRS frequency bands, the value of + tmnxCellMdaMaxTxPower has no effect." + DEFVAL { 23 } + ::= { tmnxCellularMdaEntry 14 } + +tmnxCellPortCbsdAuthCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF TmnxCellPortCbsdAuthCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The tmnxCellPortCbsdAuthCfgTable has an entry for each cellular port + in the system pertaining to CBSD authorization configuration." + ::= { tmnxCellularPortConfigObjs 5 } + +tmnxCellPortCbsdAuthCfgEntry OBJECT-TYPE + SYNTAX TmnxCellPortCbsdAuthCfgEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each row entry represents the CBSD authorization configuration for a + cellular port in the system. Entries are automatically created by the + system, and cannot be created or deleted via SNMP SET operations." + AUGMENTS { tmnxCellularPortEntry } + ::= { tmnxCellPortCbsdAuthCfgTable 1 } + +TmnxCellPortCbsdAuthCfgEntry ::= SEQUENCE +{ + tmnxCellPortCbsdAuthCfgLstChange TimeStamp, + tmnxCellPortCbsdAuthAdminState TmnxEnabledDisabledAdminState, + tmnxCellPortCbsdAuthUserId DisplayString, + tmnxCellPortCbsdAuthAntennaGain Unsigned32, + tmnxCellPortCbsdAuthClntTlsProf TNamedItemOrEmpty, + tmnxCellPortCbsdAuthPriSasSvrUrl DisplayString, + tmnxCellPortCbsdAuthSecSasSvrUrl DisplayString, + tmnxCellPortCbsdAuthCategory INTEGER +} + +tmnxCellPortCbsdAuthCfgLstChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthCfgLstChange indicates the sysUpTime + at the time of the most recent management-initiated change to this + table row." + ::= { tmnxCellPortCbsdAuthCfgEntry 1 } + +tmnxCellPortCbsdAuthAdminState OBJECT-TYPE + SYNTAX TmnxEnabledDisabledAdminState + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthAdminState specifies the + administrative state of the CBSD authorization for the cellular port." + DEFVAL { disabled } + ::= { tmnxCellPortCbsdAuthCfgEntry 2 } + +tmnxCellPortCbsdAuthUserId OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..253)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthUserId specifies the CBSD + authorization user ID for the cellular port." + DEFVAL { "" } + ::= { tmnxCellPortCbsdAuthCfgEntry 3 } + +tmnxCellPortCbsdAuthAntennaGain OBJECT-TYPE + SYNTAX Unsigned32 (0..14) + UNITS "decibel-milliwatts" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthAntennaGain specifies the CBSD + authorization antenna gain for the cellular port." + DEFVAL { 0 } + ::= { tmnxCellPortCbsdAuthCfgEntry 4 } + +tmnxCellPortCbsdAuthClntTlsProf OBJECT-TYPE + SYNTAX TNamedItemOrEmpty + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthClntTlsProf specifies the CBSD + authorization client TLS profile name for the cellular port." + DEFVAL { "" } + ::= { tmnxCellPortCbsdAuthCfgEntry 5 } + +tmnxCellPortCbsdAuthPriSasSvrUrl OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthPriSasSvrUrl specifies the CBSD + authorization primary SAS server for the cellular port." + DEFVAL { "" } + ::= { tmnxCellPortCbsdAuthCfgEntry 6 } + +tmnxCellPortCbsdAuthSecSasSvrUrl OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthSecSasSvrUrl specifies the CBSD + authorization secondary SAS server for the cellular port." + DEFVAL { "" } + ::= { tmnxCellPortCbsdAuthCfgEntry 7 } + +tmnxCellPortCbsdAuthCategory OBJECT-TYPE + SYNTAX INTEGER { + a (1), + b (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthCategory specifies the CBSD + authorization category." + DEFVAL { a } + ::= { tmnxCellPortCbsdAuthCfgEntry 8 } + +tmnxCellularStatusObjs OBJECT IDENTIFIER ::= { tmnxCellularObjs 3 } + +tmnxCellularPortStatusObjs OBJECT IDENTIFIER ::= { tmnxCellularStatusObjs 1 } + +tmnxCellularPortStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF TmnxCellularPortStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The tmnxCellularPortStatusTable has an entry for each cellular port in + the system." + ::= { tmnxCellularPortStatusObjs 1 } + +tmnxCellularPortStatusEntry OBJECT-TYPE + SYNTAX TmnxCellularPortStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each row entry represents a cellular port in the system. Entries + are automatically created by the system, and cannot be created or + deleted via SNMP SET operations. + + The tmnxCellularPortStatusEntry contains attributes that are unique to + the Cellular TmnxPortType." + INDEX { tmnxPortPortID } + ::= { tmnxCellularPortStatusTable 1 } + +TmnxCellularPortStatusEntry ::= SEQUENCE +{ + tmnxCellPortImei TmnxCellularImei, + tmnxCellPortRegistrationStatus INTEGER, + tmnxCellPortWirelessTechnology INTEGER, + tmnxCellPortFrequencyBand Unsigned32, + tmnxCellPortChannelNumber TmnxCellularChannelNumber, + tmnxCellPortAreaCode DisplayString, + tmnxCellPortCellIdentity DisplayString, + tmnxCellPortRssi Integer32, + tmnxCellPortRsrp Integer32, + tmnxCellPortRscp Integer32, + tmnxCellPortRsrq Integer32, + tmnxCellPortSinr Integer32 +} + +tmnxCellPortImei OBJECT-TYPE + SYNTAX TmnxCellularImei + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortImei indicates the International Mobile + Station Equipment Identity number assigned to this cellular port." + ::= { tmnxCellularPortStatusEntry 1 } + +tmnxCellPortRegistrationStatus OBJECT-TYPE + SYNTAX INTEGER { + not-registered (0), + registered-home (1), + searching (2), + denied (3), + no-network (4), + registered-roaming (5), + sms-only-home (6), + sms-only-roaming (7), + emergency-only (8), + csfb-not-preferred-home (9), + csfb-not-preferred-roaming (10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortRegistrationStatus indicates the Evolved + Packet System (EPS) network registration status of the cellular port." + REFERENCE + "3GPP TS 27.007 version 14.0.0 Release 14, '3rd Generation Partnership Project; + Technical Specification Group Core Network and Terminals; AT command + set for User Equipment (UE)', 3GPP, December 2016, Section 10.1.22, + 'EPS network registration status +CEREG'" + ::= { tmnxCellularPortStatusEntry 2 } + +tmnxCellPortWirelessTechnology OBJECT-TYPE + SYNTAX INTEGER { + none (0), + lte (1), + wcdma (2), + gsm (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortWirelessTechnology indicates the wireless + technology currently in use on the cellular port." + ::= { tmnxCellularPortStatusEntry 3 } + +tmnxCellPortFrequencyBand OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortFrequencyBand indicates the frequency band + currently in use by the cellular port. + + For LTE, this is an E-UTRA Operating Band, as listed in Table 5.5-1 of + 3GPP TS 36.101." + REFERENCE + "3GPP TS 36.101 version 14.1.0 (2016-09), '3rd Generation + Partnership Project; Technical Specification Group Radio Access + Network; Evolved Universal Terrestrial Radio Access (E-UTRA); + User Equipment (UE) radio transmission and reception, + 3GPP, September 2016, Table 5.5-1, 'E-UTRA operating bands'" + ::= { tmnxCellularPortStatusEntry 4 } + +tmnxCellPortChannelNumber OBJECT-TYPE + SYNTAX TmnxCellularChannelNumber + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortChannelNumber indicates the channel number + currently in use." + ::= { tmnxCellularPortStatusEntry 5 } + +tmnxCellPortAreaCode OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..4)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortAreaCode indicates the tracking area code or + location area code currently in use." + REFERENCE + "3GPP TS 23.003 version 14.0.0 Release 14, '3rd Generation + Partnership Project; Technical Specification Group Core Network + and Terminals; Numbering, addressing and identification', + 3GPP, June 2016, Section 19.4.2.3 'Tracking Area Identity (TAI)'; + Section 4.1, 'Composition of the Location Area Identification (LAI)'" + ::= { tmnxCellularPortStatusEntry 6 } + +tmnxCellPortCellIdentity OBJECT-TYPE + SYNTAX DisplayString (SIZE (8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCellIdentity indicates the + GERAN/UTRAN/E-UTRAN cell identity of the cell currently in use." + REFERENCE + "3GPP TS 23.003 version 14.0.0 Release 14, '3rd Generation + Partnership Project; Technical Specification Group Core Network + and Terminals; Numbering, addressing and identification', + 3GPP, June 2016, Section 4.3.1 'Cell Identity (CI) and Cell Global + Identification (CGI)'" + ::= { tmnxCellularPortStatusEntry 7 } + +tmnxCellPortRssi OBJECT-TYPE + SYNTAX Integer32 (-113..-51 | 0) + UNITS "decibel-milliwatts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortRssi indicates the received signal strength, + in decibel-milliwatts. + + A value of -113 indicates that the signal strength is -113 dBm or + less, while a value of -51 indicates that the signal strength is -51 + dBm or greater. + + A value of 0 indicates that the signal strength is not known or not + detectable." + ::= { tmnxCellularPortStatusEntry 8 } + +tmnxCellPortRsrp OBJECT-TYPE + SYNTAX Integer32 (-140..-44 | 0) + UNITS "decibel-milliwatts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortRsrp indicates the reference signal received + power, in decibel-milliwatts. + + A value of -140 indicates that the received power is -140 dBm or less, + while a value of -44 indicates that the received power is -44 dBm or + greater. + + A value of 0 indicates that the reference signal received power has + not been measured." + REFERENCE + "3GPP TS 36.133 version 14.3.0 Release 14, '3rd Generation + Partnership Project; Technical Specification Group Radio + Access Network; Evolved Universal Terrestrial Radio Access + (E-UTRA); Requirements for support of radio resource management', + 3GPP, March 2017, Section 9.1.4 'RSRP Measurement Report Mapping'" + ::= { tmnxCellularPortStatusEntry 9 } + +tmnxCellPortRscp OBJECT-TYPE + SYNTAX Integer32 (-120..-25 | 0) + UNITS "decibel-milliwatts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortRscp indicates the received signal code + power, in decibel-milliwatts. + + A value of -120 indicates that the received power is -120 dBm or less, + while a value of -25 indicates that the received power is -25 dBm or + greater. + + A value of 0 indicates that the received signal code power is not + known or not detectable." + REFERENCE + "3GPP TS 27.007 version 14.0.0 Release 14, '3rd Generation Partnership Project; + Technical Specification Group Core Network and Terminals; AT command + set for User Equipment (UE)', 3GPP, December 2016, Section 8.69, + 'Extended signal quality +CESQ'" + ::= { tmnxCellularPortStatusEntry 10 } + +tmnxCellPortRsrq OBJECT-TYPE + SYNTAX Integer32 (-20..-3 | 0) + UNITS "decibel" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortRsrq indicates the reference signal received + quality, in decibel. + + A value of -20 indicates that the received signal quality is + -20 dBm or less, while a value of -3 indicates that the + received signal quality is -3 dBm or greater. + + A value of 0 indicates that the reference signal received quality has + not been measured." + REFERENCE + "3GPP TS 36.133 version 14.3.0 Release 14, '3rd Generation + Partnership Project; Technical Specification Group Radio + Access Network; Evolved Universal Terrestrial Radio Access + (E-UTRA); Requirements for support of radio resource management', + 3GPP, March 2017, Section 9.1.7 'RSRQ Measurement Report Mapping'" + ::= { tmnxCellularPortStatusEntry 11 } + +tmnxCellPortSinr OBJECT-TYPE + SYNTAX Integer32 (-200..400) + UNITS "0.1 decibel" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortSinr indicates the signal to interface and + noise ratio, in tenths of decibel. + + A value of -200 indicates that the signal to noise and interface + ratio is -20 dBm or less, while a value of 400 indicates that the + signal to noise and interface ratio is 40 dBm or greater." + ::= { tmnxCellularPortStatusEntry 12 } + +tmnxCellularSimCardStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF TmnxCellularSimCardStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The tmnxCellularSimCardStatusTable has an entry for each SIM card in + the system." + ::= { tmnxCellularPortStatusObjs 3 } + +tmnxCellularSimCardStatusEntry OBJECT-TYPE + SYNTAX TmnxCellularSimCardStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each row entry represents a SIM card in the system. Entries + are automatically created by the system, and cannot be created or + deleted via SNMP SET operations." + AUGMENTS { tmnxCellularSimCardEntry } + ::= { tmnxCellularSimCardStatusTable 1 } + +TmnxCellularSimCardStatusEntry ::= SEQUENCE +{ + tmnxCellSimCardEquipped TruthValue, + tmnxCellSimCardIccid TmnxCellularSimCardIccid, + tmnxCellSimCardImsi TmnxCellularImsi, + tmnxCellSimCardLocked TruthValue, + tmnxCellSimCardPinStatus INTEGER, + tmnxCellSimCardPinRetries Unsigned32, + tmnxCellSimCardPukRetries Unsigned32, + tmnxCellSimCardFirmwareVersion DisplayString +} + +tmnxCellSimCardEquipped OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellSimCardEquipped indicates whether or not the SIM + card is installed in the system." + ::= { tmnxCellularSimCardStatusEntry 1 } + +tmnxCellSimCardIccid OBJECT-TYPE + SYNTAX TmnxCellularSimCardIccid + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellSimCardIccid indicates the International + Integrated Circuit Card Identifier assigned to this SIM card by the + manufacturer." + ::= { tmnxCellularSimCardStatusEntry 2 } + +tmnxCellSimCardImsi OBJECT-TYPE + SYNTAX TmnxCellularImsi + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellSimCardImsi indicates the International Mobile + Subscriber Identity (IMSI) assigned to the SIM card." + ::= { tmnxCellularSimCardStatusEntry 3 } + +tmnxCellSimCardLocked OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellSimCardLocked indicates whether the SIM card is + locked and requires a PIN." + ::= { tmnxCellularSimCardStatusEntry 4 } + +tmnxCellSimCardPinStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown (0), + waiting-for-pin (1), + waiting-for-puk (2), + ready (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellSimCardPinStatus indicates whether the SIM card + is waiting for a password, which could be either the PIN or the PIN + Unlock Key (PUK)." + REFERENCE + "3GPP TS 27.007 version 14.0.0 Release 14, '3rd Generation Partnership Project; + Technical Specification Group Core Network and Terminals; AT command + set for User Equipment (UE)', 3GPP, December 2016, Section 8.3, + 'Enter PIN +CPIN'" + ::= { tmnxCellularSimCardStatusEntry 5 } + +tmnxCellSimCardPinRetries OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellSimCardPinRetries indicates the number of + remaining times the PIN can be attempted before the SIM card will be + locked and require a PIN Unlock Key (PUK) to unlock." + ::= { tmnxCellularSimCardStatusEntry 6 } + +tmnxCellSimCardPukRetries OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellSimCardPukRetries indicates the number of + remaining times the PIN Unlock Key (PUK) can be attempted before the + SIM card is rendered inoperational." + ::= { tmnxCellularSimCardStatusEntry 7 } + +tmnxCellSimCardFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellSimCardFirmwareVersion indicates the firmware + version that the system will use on the cellular modem when this SIM + card is the active sim card. + + If the user has not specified a version of firmware to use with a SIM + card, tmnxCellSimCardFirmwareVersion has a value of an empty string." + ::= { tmnxCellularSimCardStatusEntry 8 } + +tmnxCellularPdnStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF TmnxCellularPdnStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The tmnxCellularPdnStatusTable has an entry for each cellular Packet + Data Network in the system." + ::= { tmnxCellularPortStatusObjs 4 } + +tmnxCellularPdnStatusEntry OBJECT-TYPE + SYNTAX TmnxCellularPdnStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each row entry represents a cellular PDN in the system. Entries + are automatically created by the system, and cannot be created or + deleted via SNMP SET operations." + AUGMENTS { tmnxCellularPdnEntry } + ::= { tmnxCellularPdnStatusTable 1 } + +TmnxCellularPdnStatusEntry ::= SEQUENCE +{ + tmnxCellPdnConnectionState INTEGER, + tmnxCellPdnIpAddrType InetAddressType, + tmnxCellPdnIpAddress InetAddress, + tmnxCellPdnPrimaryDnsAddrType InetAddressType, + tmnxCellPdnPrimaryDnsAddress InetAddress, + tmnxCellPdnSecondaryDnsAddrType InetAddressType, + tmnxCellPdnSecondaryDnsAddress InetAddress, + tmnxCellPdnApn TmnxCellularAccessPointName, + tmnxCellPdnMtu Unsigned32 +} + +tmnxCellPdnConnectionState OBJECT-TYPE + SYNTAX INTEGER { + notConnected (0), + connected (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPdnConnectionState indicates whether or not the + packet data network connection has been successfully established." + ::= { tmnxCellularPdnStatusEntry 1 } + +tmnxCellPdnIpAddrType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPdnIpAddrType indicates, along with + tmnxCellPdnIpAddress, the IP address assigned to the PDN by the + cellular network." + ::= { tmnxCellularPdnStatusEntry 2 } + +tmnxCellPdnIpAddress OBJECT-TYPE + SYNTAX InetAddress (SIZE (0|4|16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPdnIpAddress indicates, along with + tmnxCellPdnIpAddrType, the IP address assigned to the PDN by the + cellular network." + ::= { tmnxCellularPdnStatusEntry 3 } + +tmnxCellPdnPrimaryDnsAddrType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPdnPrimaryDnsAddrType indicates, along with + tmnxCellPdnPrimaryDnsAddress, the IP address assigned of the primary + DNS server in the PDN." + ::= { tmnxCellularPdnStatusEntry 4 } + +tmnxCellPdnPrimaryDnsAddress OBJECT-TYPE + SYNTAX InetAddress (SIZE (0|4|16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPdnPrimaryDnsAddress indicates, along with + tmnxCellPdnPrimaryDnsAddrType, the IP address assigned of the primary + DNS server in the PDN." + ::= { tmnxCellularPdnStatusEntry 5 } + +tmnxCellPdnSecondaryDnsAddrType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPdnSecondaryDnsAddrType indicates, along with + tmnxCellPdnSecondaryDnsAddress, the IP address assigned of the + secondary DNS server in the PDN." + ::= { tmnxCellularPdnStatusEntry 6 } + +tmnxCellPdnSecondaryDnsAddress OBJECT-TYPE + SYNTAX InetAddress (SIZE (0|4|16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPdnSecondaryDnsAddress indicates, along with + tmnxCellPdnSecondaryDnsAddrType, the IP address assigned of the + secondary DNS server in the PDN." + ::= { tmnxCellularPdnStatusEntry 7 } + +tmnxCellPdnApn OBJECT-TYPE + SYNTAX TmnxCellularAccessPointName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPdnApn indicates the APN in use by the PDN." + ::= { tmnxCellularPdnStatusEntry 8 } + +tmnxCellPdnMtu OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPdnMtu indicates the operational value of the IP + MTU on this PDN." + ::= { tmnxCellularPdnStatusEntry 9 } + +tmnxCellularPortBearerTable OBJECT-TYPE + SYNTAX SEQUENCE OF TmnxCellularPortBearerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The tmnxCellularPortBearerTable has an entry for each bearer created + on a cellular port in the system." + ::= { tmnxCellularPortStatusObjs 5 } + +tmnxCellularPortBearerEntry OBJECT-TYPE + SYNTAX TmnxCellularPortBearerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each row entry represents a bearer created on a cellular port in the system. + Entries are automatically created and deleted by the system as the cellular + network creates and deletes bearers on the cellular port. Entries cannot be + created or deleted via SNMP SET operations." + INDEX { + tmnxPortPortID, + tmnxCellPortBearerId + } + ::= { tmnxCellularPortBearerTable 1 } + +TmnxCellularPortBearerEntry ::= SEQUENCE +{ + tmnxCellPortBearerId Unsigned32, + tmnxCellPortBearerType INTEGER, + tmnxCellPortBearerQci Unsigned32, + tmnxCellPortBearerUlGbr TmnxCellularBearerRate, + tmnxCellPortBearerUlMbr TmnxCellularBearerRate, + tmnxCellPortBearerDlGbr TmnxCellularBearerRate, + tmnxCellPortBearerDlMbr TmnxCellularBearerRate +} + +tmnxCellPortBearerId OBJECT-TYPE + SYNTAX Unsigned32 (1..15) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortBearerId indicates the Evolved Packet System + (EPS) Bearer Id of this bearer." + REFERENCE + "3GPP TS 23.401 version 11.11.0 Release 11, '3rd Generation Partnership Project; + Technical Specification Group Core Services and System Aspects; + General Packet Radio Service (GPRS) enhancements for Evolved Universal + Terrestrial Radio Access Network (E-UTRAN) access', 3GPP, December 2014, + Section 5.2.1, 'EPS bearer identity'" + ::= { tmnxCellularPortBearerEntry 1 } + +tmnxCellPortBearerType OBJECT-TYPE + SYNTAX INTEGER { + default (1), + dedicated (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortBearerType indicates the type of this bearer." + ::= { tmnxCellularPortBearerEntry 2 } + +tmnxCellPortBearerQci OBJECT-TYPE + SYNTAX Unsigned32 (1..254) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortBearerQci indicates the Quality of Service + (QoS) Class Identifier of this bearer." + REFERENCE + "3GPP TS 23.401 version 11.11.0 Release 11, '3rd Generation Partnership Project; + Technical Specification Group Core Services and System Aspects; + General Packet Radio Service (GPRS) enhancements for Evolved Universal + Terrestrial Radio Access Network (E-UTRAN) access', 3GPP, December 2014, + Section 4.7.3, 'Bearer level QoS parameters'" + ::= { tmnxCellularPortBearerEntry 3 } + +tmnxCellPortBearerUlGbr OBJECT-TYPE + SYNTAX TmnxCellularBearerRate + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortBearerUlGbr indicates the Guaranteed Bit Rate + of the uplink for this bearer. For a non-GBR bearer, + tmnxCellPortBearerUlGbr has a value of zero." + ::= { tmnxCellularPortBearerEntry 4 } + +tmnxCellPortBearerUlMbr OBJECT-TYPE + SYNTAX TmnxCellularBearerRate + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortBearerUlMbr indicates the Maximum Bit Rate + of the uplink for this bearer. For a non-GBR bearer, + tmnxCellPortBearerUlMbr has a value of zero." + ::= { tmnxCellularPortBearerEntry 5 } + +tmnxCellPortBearerDlGbr OBJECT-TYPE + SYNTAX TmnxCellularBearerRate + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortBearerDlGbr indicates the Guaranteed Bit Rate + of the downlink for this bearer. For a non-GBR bearer, + tmnxCellPortBearerDlGbr has a value of zero." + ::= { tmnxCellularPortBearerEntry 6 } + +tmnxCellPortBearerDlMbr OBJECT-TYPE + SYNTAX TmnxCellularBearerRate + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortBearerDlMbr indicates the Maximum Bit Rate + of the downlink for this bearer. For a non-GBR bearer, + tmnxCellPortBearerDlMbr has a value of zero." + ::= { tmnxCellularPortBearerEntry 7 } + +tmnxCellularPortTftTable OBJECT-TYPE + SYNTAX SEQUENCE OF TmnxCellularPortTftEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The tmnxCellularPortTftTable contains information about the traffic + flow templates (TFTs) created on the cellular port." + ::= { tmnxCellularPortStatusObjs 6 } + +tmnxCellularPortTftEntry OBJECT-TYPE + SYNTAX TmnxCellularPortTftEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each row entry represents a packet filter created on a specific bearer. + Entries are automatically created and deleted by the system as the cellular + network creates and deletes bearers on the cellular port. Entries cannot be + created or deleted via SNMP SET operations." + INDEX { + tmnxPortPortID, + tmnxCellPortBearerId, + tmnxCellPortTftPacketFilterId + } + ::= { tmnxCellularPortTftTable 1 } + +TmnxCellularPortTftEntry ::= SEQUENCE +{ + tmnxCellPortTftPacketFilterId Unsigned32, + tmnxCellPortTftEvalPrecedence Unsigned32, + tmnxCellPortTftDirection INTEGER, + tmnxCellPortTftTos Unsigned32, + tmnxCellPortTftTosMask Unsigned32 +} + +tmnxCellPortTftPacketFilterId OBJECT-TYPE + SYNTAX Unsigned32 (0..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortTftPacketFilterId identifies a packet filter + on a particular bearer." + REFERENCE + "3GPP TS 27.007 version 11.8.0 Release 11, '3rd Generation Partnership Project; + Technical Specification Group Core Network and Terminals; AT command + set for User Equipment (UE)', 3GPP, September 2013, Section 10.1.25, + 'Traffic flow template read dynamic parameters +CGTFTRDP' + + 3GPP TS 24.008 version 11.17.1 Release 11, '3rd Generation Partnership Project; + Technical Specification Group Core Network and Terminals; + Mobile radio interface Layer 3 specification; + Core network protocols; Stage 3', 3GPP, January 2018, + Section 10.5.6.12, 'Traffic Flow Template'" + ::= { tmnxCellularPortTftEntry 1 } + +tmnxCellPortTftEvalPrecedence OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortTftEvalPrecedence indicates the evaluation + precedence index of the packet filter." + REFERENCE + "3GPP TS 27.007 version 11.8.0 Release 11, '3rd Generation Partnership Project; + Technical Specification Group Core Network and Terminals; AT command + set for User Equipment (UE)', 3GPP, September 2013, Section 10.1.25, + 'Traffic flow template read dynamic parameters +CGTFTRDP' + + 3GPP TS 23.060 version 11.12.0 Release 11, '3rd Generation Partnership Project; + Technical Specification Group Services and System Aspects; General + Packet Radio Service (GPRS); Service description; Stage 2', 3GPP, December 2014, + Section 9.3, 'Packet Routeing and Transfer Function'" + ::= { tmnxCellularPortTftEntry 2 } + +tmnxCellPortTftDirection OBJECT-TYPE + SYNTAX INTEGER { + pre-release-7 (0), + uplink (1), + downlink (2), + bidirectional (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortTftDirection indicates the direction to apply + this packet filter." + REFERENCE + "3GPP TS 27.007 version 11.8.0 Release 11, '3rd Generation Partnership Project; + Technical Specification Group Core Network and Terminals; AT command + set for User Equipment (UE)', 3GPP, September 2013, Section 10.1.25, + 'Traffic flow template read dynamic parameters +CGTFTRDP'" + ::= { tmnxCellularPortTftEntry 3 } + +tmnxCellPortTftTos OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortTftTos indicates, along with + tmnxCellPortTftTosMask, the values of the IPv4 Type of Service (ToS) + that match this packet filter." + ::= { tmnxCellularPortTftEntry 4 } + +tmnxCellPortTftTosMask OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortTftTosMask indicates, along with + tmnxCellPortTftTos, the values of the IPv4 Type of Service (ToS) that + match this packet filter." + ::= { tmnxCellularPortTftEntry 5 } + +tmnxCellPortCbsdAuthStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF TmnxCellPortCbsdAuthStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The tmnxCellPortCbsdAuthStatsTable has an entry for each cellular port + in the system and pertains to CBSD authorization status and statistic + information." + ::= { tmnxCellularPortStatusObjs 7 } + +tmnxCellPortCbsdAuthStatsEntry OBJECT-TYPE + SYNTAX TmnxCellPortCbsdAuthStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each row entry represents the CBSD authorization status and statistics + information for a cellular port in the system. Entries are + automatically created by the system, and cannot be created or deleted + via SNMP SET operations." + AUGMENTS { tmnxCellPortCbsdAuthCfgEntry } + ::= { tmnxCellPortCbsdAuthStatsTable 1 } + +TmnxCellPortCbsdAuthStatsEntry ::= SEQUENCE +{ + tmnxCellPortCbsdAuthOperState TmnxEnabledDisabled, + tmnxCellPortCbsdAuthId DisplayString, + tmnxCellPortCbsdAuthGrantId DisplayString, + tmnxCellPortCbsdAuthFccId DisplayString, + tmnxCellPortCbsdAuthRegState INTEGER, + tmnxCellPortCbsdAuthGrantState INTEGER, + tmnxCellPortCbsdAuthGrantExpTime DateAndTime, + tmnxCellPortCbsdAuthTxExpTime DateAndTime, + tmnxCellPortCbsdAuthHeartbeatInt Unsigned32, + tmnxCellPortCbsdAuthChanType INTEGER, + tmnxCellPortCbsdAuthCurSasSvr INTEGER, + tmnxCellPortCbsdAuthCurSasSvrIpT InetAddressType, + tmnxCellPortCbsdAuthCurSasSvrIp InetAddress, + tmnxCellPortCbsdAuthRegRequest Unsigned32, + tmnxCellPortCbsdAuthRegRspSuc Unsigned32, + tmnxCellPortCbsdAuthRegRspFail Unsigned32, + tmnxCellPortCbsdAuthGrantRequest Unsigned32, + tmnxCellPortCbsdAuthGrantRspSuc Unsigned32, + tmnxCellPortCbsdAuthGrantRspFail Unsigned32, + tmnxCellPortCbsdAuthHrtbtRequest Unsigned32, + tmnxCellPortCbsdAuthHrtbtRspSuc Unsigned32, + tmnxCellPortCbsdAuthHrtbtRspFail Unsigned32 +} + +tmnxCellPortCbsdAuthOperState OBJECT-TYPE + SYNTAX TmnxEnabledDisabled + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthOperState indicates the operational + state of the CBSD authorization for the cellular port." + ::= { tmnxCellPortCbsdAuthStatsEntry 1 } + +tmnxCellPortCbsdAuthId OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthId indicates the CBSD authorization + identifier." + ::= { tmnxCellPortCbsdAuthStatsEntry 2 } + +tmnxCellPortCbsdAuthGrantId OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthGrantId indicates the CBSD + authorization grant identifier." + ::= { tmnxCellPortCbsdAuthStatsEntry 3 } + +tmnxCellPortCbsdAuthFccId OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthFccId indicates the CBSD + authorization Federal Communications Commission identifier." + ::= { tmnxCellPortCbsdAuthStatsEntry 4 } + +tmnxCellPortCbsdAuthRegState OBJECT-TYPE + SYNTAX INTEGER { + unregistered (0), + registered (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthRegState indicates the CBSD + authorization registration state." + ::= { tmnxCellPortCbsdAuthStatsEntry 5 } + +tmnxCellPortCbsdAuthGrantState OBJECT-TYPE + SYNTAX INTEGER { + idle (1), + granted (2), + authorized (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthGrantState indicates the CBSD + authorization grant state." + ::= { tmnxCellPortCbsdAuthStatsEntry 6 } + +tmnxCellPortCbsdAuthGrantExpTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthGrantExpTime indicates the CBSD + authorization time the grant will expire." + ::= { tmnxCellPortCbsdAuthStatsEntry 7 } + +tmnxCellPortCbsdAuthTxExpTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthTxExpTime indicates the CBSD + authorization time the transmission will expire." + ::= { tmnxCellPortCbsdAuthStatsEntry 8 } + +tmnxCellPortCbsdAuthHeartbeatInt OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthHeartbeatInt indicates the CBSD + authorization heartbeat interval." + ::= { tmnxCellPortCbsdAuthStatsEntry 9 } + +tmnxCellPortCbsdAuthChanType OBJECT-TYPE + SYNTAX INTEGER { + gaa (1), + pal (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthChanType indicates the CBSD + authorization channel type." + ::= { tmnxCellPortCbsdAuthStatsEntry 10 } + +tmnxCellPortCbsdAuthCurSasSvr OBJECT-TYPE + SYNTAX INTEGER { + none (0), + primary (1), + secondary (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthCurSasSvr indicates the CBSD + authorization SAS server that is currently being used." + ::= { tmnxCellPortCbsdAuthStatsEntry 11 } + +tmnxCellPortCbsdAuthCurSasSvrIpT OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthCurSasSvrIpT indicates the IP address + type of the current SAS server being used in CBSD authorization ." + ::= { tmnxCellPortCbsdAuthStatsEntry 12 } + +tmnxCellPortCbsdAuthCurSasSvrIp OBJECT-TYPE + SYNTAX InetAddress (SIZE (0|4|16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthCurSasSvrIp indicates the IP address + of the current SAS server being used in CBSD authorization ." + ::= { tmnxCellPortCbsdAuthStatsEntry 13 } + +tmnxCellPortCbsdAuthRegRequest OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthRegRequest indicates the number of + CBSD authorization registration requests attempted." + ::= { tmnxCellPortCbsdAuthStatsEntry 14 } + +tmnxCellPortCbsdAuthRegRspSuc OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthRegRspSuc indicates the number of + successful CBSD authorization registration responses." + ::= { tmnxCellPortCbsdAuthStatsEntry 15 } + +tmnxCellPortCbsdAuthRegRspFail OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthRegRspFail indicates the number of + failed CBSD authorization registration responses." + ::= { tmnxCellPortCbsdAuthStatsEntry 16 } + +tmnxCellPortCbsdAuthGrantRequest OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthGrantRequest indicates the number of + CBSD authorization grant requests attempted." + ::= { tmnxCellPortCbsdAuthStatsEntry 17 } + +tmnxCellPortCbsdAuthGrantRspSuc OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthGrantRspSuc indicates the number of + successful CBSD authorization grant responses." + ::= { tmnxCellPortCbsdAuthStatsEntry 18 } + +tmnxCellPortCbsdAuthGrantRspFail OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthGrantRspFail indicates the number of + failed CBSD authorization grant responses." + ::= { tmnxCellPortCbsdAuthStatsEntry 19 } + +tmnxCellPortCbsdAuthHrtbtRequest OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthHrtbtRequest indicates the number of + CBSD authorization heartbeat requests." + ::= { tmnxCellPortCbsdAuthStatsEntry 20 } + +tmnxCellPortCbsdAuthHrtbtRspSuc OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthHrtbtRspSuc indicates the number of + successful CBSD authorization heartbeat responses." + ::= { tmnxCellPortCbsdAuthStatsEntry 21 } + +tmnxCellPortCbsdAuthHrtbtRspFail OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of tmnxCellPortCbsdAuthHrtbtRspFail indicates the number of + failed CBSD authorization heartbeat responses." + ::= { tmnxCellPortCbsdAuthStatsEntry 22 } + +tmnxCellularNotifyObjects OBJECT IDENTIFIER ::= { tmnxCellularObjs 4 } + +tmnxCellularNotifyPdnId OBJECT-TYPE + SYNTAX TmnxCellularPdnId + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The value of tmnxCellularNotifyPdnId indicates the PDN for the + notification." + ::= { tmnxCellularNotifyObjects 1 } + +tmnxCellMdaNoServiceResetReason OBJECT-TYPE + SYNTAX INTEGER { + cellular-port-down (1), + no-bgp-neighbor (2) + } + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The value of tmnxCellMdaNoServiceResetReason indicates the specific + reason why the system reset due to failure to establish service over + the cellular interface." + ::= { tmnxCellularNotifyObjects 2 } + +tmnxCellCbsdAuthFailReason OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..100)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The value of tmnxCellCbsdAuthFailReason indicates the specific reason + why CBSD authorization request failed." + ::= { tmnxCellularNotifyObjects 3 } + +tmnxCellCbsdAuthRespCode OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..100)) + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The value of tmnxCellCbsdAuthRespCode indicates the CBSD authorization + response code." + ::= { tmnxCellularNotifyObjects 4 } + +tmnxCellCbsdAuthPrevTransState OBJECT-TYPE + SYNTAX INTEGER { + idle (1), + authorized (2), + granted (3) + } + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The value of tmnxCellCbsdAuthPrevTransState indicates the previous + state when transitioning states during the CBSD authorization process." + ::= { tmnxCellularNotifyObjects 5 } + +tmnxCellCbsdAuthNewTransState OBJECT-TYPE + SYNTAX INTEGER { + idle (1), + authorized (2), + granted (3) + } + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The value of tmnxCellCbsdAuthNewTransState indicates the new state + when transitioning states during the CBSD authorization process." + ::= { tmnxCellularNotifyObjects 6 } + +tmnxCellularConformance OBJECT IDENTIFIER ::= { tmnxSRConfs 109 } + +tmnxCellularCompliances OBJECT IDENTIFIER ::= { tmnxCellularConformance 1 } + +tmnxCellularCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for the management of the cellular + feature-set for Release 15.0 on Nokia SROS series systems." + MODULE + MANDATORY-GROUPS { + tmnxCellularConfigGroup, + tmnxCellularStatusGroup + } + ::= { tmnxCellularCompliances 1 } + +tmnxCellularComplianceV16v0 MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for the management of the cellular + feature-set for Release 16.0 on Nokia SROS series systems." + MODULE + MANDATORY-GROUPS { + tmnxCellularV16v0ConfigGroup, + tmnxCellularV16v0StatusGroup, + tmnxCellNotificationV16v0Group + } + ::= { tmnxCellularCompliances 2 } + +tmnxCellularComplianceV19 MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for the management of the cellular + feature-set for Release 19 on Nokia SROS series systems." + MODULE + MANDATORY-GROUPS { + tmnxCellularV19ConfigGroup + } + ::= { tmnxCellularCompliances 3 } + +tmnxCellularComplianceV20 MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for the management of the cellular + feature-set for Release 20 on Nokia SROS series systems." + MODULE + MANDATORY-GROUPS { + tmnxCellularV20ConfigGroup + } + ::= { tmnxCellularCompliances 4 } + +tmnxCellularComplianceV21 MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for the management of the cellular + feature-set for Release 21 on Nokia SROS series systems." + MODULE + MANDATORY-GROUPS { + tmnxCellPortCbsdAuthGroupV21, + tmnxCellularNotifyObjsGroupV21, + tmnxCellNotificationGroupV21, + tmnxCellularStatusGroupV21, + tmnxCellularConfigGroupV21 + } + ::= { tmnxCellularCompliances 5 } + +tmnxCellularGroups OBJECT IDENTIFIER ::= { tmnxCellularConformance 2 } + +tmnxCellularV15v0Groups OBJECT IDENTIFIER ::= { tmnxCellularGroups 1 } + +tmnxCellularConfigGroup OBJECT-GROUP + OBJECTS { + tmnxCellPdnProfileTblLastChanged, + tmnxCellPdnProfRowStatus, + tmnxCellPdnProfLastChanged, + tmnxCellPdnProfDescription, + tmnxCellPdnProfApn, + tmnxCellPdnProfAuthType, + tmnxCellPdnProfUsername, + tmnxCellPdnProfPassword, + tmnxCellSimCardTableLastChanged, + tmnxCellSimCardLastChanged, + tmnxCellSimCardDescription, + tmnxCellSimCardPin, + tmnxCellPdnTblLastChanged, + tmnxCellPdnRowStatus, + tmnxCellPdnLastChanged, + tmnxCellPdnProfile, + tmnxCellPortTblLastChanged, + tmnxCellPortLastChanged, + tmnxCellPortBand125MaxPowerLevel + } + STATUS current + DESCRIPTION + "The group of objects maintaining cellular port configuration on Nokia + SROS series systems. This group was introduced in Release 15.0." + ::= { tmnxCellularV15v0Groups 1 } + +tmnxCellularStatusGroup OBJECT-GROUP + OBJECTS { + tmnxCellPortImei, + tmnxCellPortRegistrationStatus, + tmnxCellPortWirelessTechnology, + tmnxCellPortFrequencyBand, + tmnxCellPortChannelNumber, + tmnxCellPortAreaCode, + tmnxCellPortCellIdentity, + tmnxCellPortRssi, + tmnxCellPortRsrp, + tmnxCellPortRscp, + tmnxCellSimCardEquipped, + tmnxCellSimCardIccid, + tmnxCellSimCardImsi, + tmnxCellSimCardLocked, + tmnxCellSimCardPinStatus, + tmnxCellSimCardPinRetries, + tmnxCellSimCardPukRetries, + tmnxCellPdnConnectionState, + tmnxCellPdnIpAddrType, + tmnxCellPdnIpAddress, + tmnxCellPdnPrimaryDnsAddrType, + tmnxCellPdnPrimaryDnsAddress, + tmnxCellPdnSecondaryDnsAddrType, + tmnxCellPdnSecondaryDnsAddress, + tmnxCellPdnApn, + tmnxCellPdnMtu + } + STATUS current + DESCRIPTION + "The group of objects maintaining cellular port status on Nokia + SROS series systems. This group was introduced in Release 15.0." + ::= { tmnxCellularV15v0Groups 2 } + +tmnxCellularV16v0Groups OBJECT IDENTIFIER ::= { tmnxCellularGroups 2 } + +tmnxCellularV16v0ConfigGroup OBJECT-GROUP + OBJECTS { + tmnxCellMdaLastChanged, + tmnxCellMdaAdminActiveSim, + tmnxCellMdaDownResetInterval, + tmnxCellMdaDownResetCriteria, + tmnxCellMdaDownResetPending, + tmnxCellMdaDownResetTime, + tmnxCellSimCardFailureDuration, + tmnxCellSimCardPortStateSwitch, + tmnxCellSimCardBgpStateSwitch + } + STATUS current + DESCRIPTION + "The group of objects maintaining cellular port configuration on Nokia + SROS series systems, introduced in Release 16.0." + ::= { tmnxCellularV16v0Groups 1 } + +tmnxCellularV16v0StatusGroup OBJECT-GROUP + OBJECTS { + tmnxCellPortBearerId, + tmnxCellPortBearerType, + tmnxCellPortBearerQci, + tmnxCellPortBearerUlGbr, + tmnxCellPortBearerUlMbr, + tmnxCellPortBearerDlGbr, + tmnxCellPortBearerDlMbr, + tmnxCellPortTftPacketFilterId, + tmnxCellPortTftEvalPrecedence, + tmnxCellPortTftDirection, + tmnxCellPortTftTos, + tmnxCellPortTftTosMask, + tmnxCellSimCardFirmwareVersion, + tmnxCellMdaPreferredSim, + tmnxCellMdaOperActiveSim, + tmnxCellMdaSimCardSwitchPending, + tmnxCellMdaSimCardSwitchTime, + tmnxCellMdaSimCardLastSwitchTime, + tmnxCellMdaSimLastSwitchReason + } + STATUS current + DESCRIPTION + "The group of objects maintaining status of cellular ports on Nokia + SROS series systems, introduced in Release 16.0." + ::= { tmnxCellularV16v0Groups 2 } + +tmnxCellularNotifyObjsGroup OBJECT-GROUP + OBJECTS { + tmnxCellularNotifyPdnId, + tmnxCellMdaNoServiceResetReason + } + STATUS current + DESCRIPTION + "The group of objects used in notifications generated on cellular ports + on Nokia SROS series systems. This group was introduced in Release 16.0." + ::= { tmnxCellularV16v0Groups 3 } + +tmnxCellNotificationV16v0Group NOTIFICATION-GROUP + NOTIFICATIONS { + tmnxCellularBearerCreated, + tmnxCellularBearerDeleted, + tmnxCellularBearerModified, + tmnxCellularNoServiceReset, + tmnxCellularActiveSimChange + } + STATUS current + DESCRIPTION + "The group of notifications for cellular ports on Nokia SROS series + systems, introduced in Release 16.0." + ::= { tmnxCellularV16v0Groups 4 } + +tmnxCellularV19Groups OBJECT IDENTIFIER ::= { tmnxCellularGroups 3 } + +tmnxCellularV19ConfigGroup OBJECT-GROUP + OBJECTS { + tmnxCellPdnProfProtocol + } + STATUS current + DESCRIPTION + "The group of objects maintaining cellular port configuration on Nokia + SROS series systems, introduced in Release 19." + ::= { tmnxCellularV19Groups 1 } + +tmnxCellularV20Groups OBJECT IDENTIFIER ::= { tmnxCellularGroups 4 } + +tmnxCellularV20ConfigGroup OBJECT-GROUP + OBJECTS { + tmnxCellMdaSpecFirmwareVersion, + tmnxCellMdaMaxTxPower + } + STATUS current + DESCRIPTION + "The group of objects maintaining cellular port configuration and + status on Nokia SROS series systems, introduced in Release 20." + ::= { tmnxCellularV20Groups 1 } + +tmnxCellularV21Groups OBJECT IDENTIFIER ::= { tmnxCellularGroups 5 } + +tmnxCellPortCbsdAuthGroupV21 OBJECT-GROUP + OBJECTS { + tmnxCellPortCbsdAuthCfgTblLstChg, + tmnxCellPortCbsdAuthCfgLstChange, + tmnxCellPortCbsdAuthAdminState, + tmnxCellPortCbsdAuthUserId, + tmnxCellPortCbsdAuthAntennaGain, + tmnxCellPortCbsdAuthClntTlsProf, + tmnxCellPortCbsdAuthPriSasSvrUrl, + tmnxCellPortCbsdAuthSecSasSvrUrl, + tmnxCellPortCbsdAuthOperState, + tmnxCellPortCbsdAuthCategory, + tmnxCellPortCbsdAuthId, + tmnxCellPortCbsdAuthGrantId, + tmnxCellPortCbsdAuthFccId, + tmnxCellPortCbsdAuthRegState, + tmnxCellPortCbsdAuthGrantState, + tmnxCellPortCbsdAuthGrantExpTime, + tmnxCellPortCbsdAuthTxExpTime, + tmnxCellPortCbsdAuthHeartbeatInt, + tmnxCellPortCbsdAuthChanType, + tmnxCellPortCbsdAuthCurSasSvr, + tmnxCellPortCbsdAuthCurSasSvrIp, + tmnxCellPortCbsdAuthCurSasSvrIpT, + tmnxCellPortCbsdAuthRegRequest, + tmnxCellPortCbsdAuthRegRspSuc, + tmnxCellPortCbsdAuthRegRspFail, + tmnxCellPortCbsdAuthGrantRequest, + tmnxCellPortCbsdAuthGrantRspSuc, + tmnxCellPortCbsdAuthGrantRspFail, + tmnxCellPortCbsdAuthHrtbtRequest, + tmnxCellPortCbsdAuthHrtbtRspSuc, + tmnxCellPortCbsdAuthHrtbtRspFail + } + STATUS current + DESCRIPTION + "The group of objects maintaining cellular port CBSD authorization + capabilities on Nokia SROS series systems, introduced in release 21." + ::= { tmnxCellularV21Groups 1 } + +tmnxCellularNotifyObjsGroupV21 OBJECT-GROUP + OBJECTS { + tmnxCellCbsdAuthFailReason, + tmnxCellCbsdAuthRespCode, + tmnxCellCbsdAuthPrevTransState, + tmnxCellCbsdAuthNewTransState + } + STATUS current + DESCRIPTION + "The group of objects used in notifications generated on cellular ports + Nokia SROS series systems, introduced in release 21." + ::= { tmnxCellularV21Groups 2 } + +tmnxCellNotificationGroupV21 NOTIFICATION-GROUP + NOTIFICATIONS { + tmnxCellPortCbsdRegistered, + tmnxCellPortCbsdUnregistered, + tmnxCellPortCbsdGranted, + tmnxCellPortCbsdAuthorized, + tmnxCellPortCbsdTransDown + } + STATUS current + DESCRIPTION + "The group of notifications for cellular ports on Nokia SROS series + systems, introduced in release 21." + ::= { tmnxCellularV21Groups 3 } + +tmnxCellularStatusGroupV21 OBJECT-GROUP + OBJECTS { + tmnxCellPortRsrq, + tmnxCellPortSinr + } + STATUS current + DESCRIPTION + "The group of objects maintaining cellular port status on Nokia SROS + series systems, introduced in release 21." + ::= { tmnxCellularV21Groups 4 } + +tmnxCellularConfigGroupV21 OBJECT-GROUP + OBJECTS { + tmnxCellPortSyncSysTime + } + STATUS current + DESCRIPTION + "The group of objects maintaining cellular port configuration on Nokia + SROS series systems, introduced in release 21." + ::= { tmnxCellularV21Groups 5 } + +tmnxCellularNotifyPrefix OBJECT IDENTIFIER ::= { tmnxSRNotifyPrefix 109 } + +tmnxCellularNotifications OBJECT IDENTIFIER ::= { tmnxCellularNotifyPrefix 0 } + +tmnxCellularBearerCreated NOTIFICATION-TYPE + OBJECTS { + tmnxCellularNotifyPdnId, + tmnxCellPortBearerId + } + STATUS current + DESCRIPTION + "The tmnxCellularBearerCreated notification is generated when the + network creates a dedicated bearer on a cellular port." + ::= { tmnxCellularNotifications 1 } + +tmnxCellularBearerDeleted NOTIFICATION-TYPE + OBJECTS { + tmnxCellularNotifyPdnId, + tmnxCellPortBearerId + } + STATUS current + DESCRIPTION + "The tmnxCellularBearerDeleted notification is generated when the + network removes a dedicated bearer on a cellular port." + ::= { tmnxCellularNotifications 2 } + +tmnxCellularBearerModified NOTIFICATION-TYPE + OBJECTS { + tmnxCellularNotifyPdnId, + tmnxCellPortBearerId + } + STATUS current + DESCRIPTION + "The tmnxCellularBearerModified notification is generated when the + network modifies a bearer on a cellular port." + ::= { tmnxCellularNotifications 3 } + +tmnxCellularNoServiceReset NOTIFICATION-TYPE + OBJECTS { + tmnxPortNotifyPortId, + tmnxCellMdaNoServiceResetReason + } + STATUS current + DESCRIPTION + "The tmnxCellularNoServiceReset notification is generated before the + system resets because it could not establish service over the cellular + interface." + ::= { tmnxCellularNotifications 4 } + +tmnxCellularActiveSimChange NOTIFICATION-TYPE + OBJECTS { + tmnxCellMdaAdminActiveSim, + tmnxCellMdaOperActiveSim, + tmnxCellMdaSimLastSwitchReason + } + STATUS current + DESCRIPTION + "The tmnxCellularActiveSimChange notification is generated when the + active SIM card on the cellular MDA changes." + ::= { tmnxCellularNotifications 5 } + +tmnxCellPortCbsdRegistered NOTIFICATION-TYPE + OBJECTS { + tmnxCellPortCbsdAuthId, + tmnxCellPortCbsdAuthCurSasSvrIp, + tmnxCellPortCbsdAuthCurSasSvrIpT + } + STATUS current + DESCRIPTION + "[CAUSE] The tmnxCellPortCbsdRegistered notification is generated when + the CBSD successfully registers with the SAS. + + [EFFECT] After this notification is generated the CBSD continues the + CBSD authorization procedures. + + [RECOVERY] Not applicable." + ::= { tmnxCellularNotifications 6 } + +tmnxCellPortCbsdUnregistered NOTIFICATION-TYPE + OBJECTS { + tmnxCellPortCbsdAuthId, + tmnxCellCbsdAuthFailReason, + tmnxCellCbsdAuthRespCode + } + STATUS current + DESCRIPTION + "[CAUSE] The tmnxCellPortCbsdUnregistered notification is generated + when the CBSD is declared unregistered with the SAS. + + [EFFECT] The CBSD restarts the registration procedures with the SAS. + + [RECOVERY] Not applicable." + ::= { tmnxCellularNotifications 7 } + +tmnxCellPortCbsdGranted NOTIFICATION-TYPE + OBJECTS { + tmnxCellPortCbsdAuthId, + tmnxCellPortCbsdAuthGrantId, + tmnxCellPortCbsdAuthGrantExpTime, + tmnxCellPortCbsdAuthHeartbeatInt + } + STATUS current + DESCRIPTION + "[CAUSE] The tmnxCellPortCbsdGranted notification is generated when the + CBSD has received a grant Id from the SAS. The CBSD is not authorized + until after the authorized notification is generated. + + [EFFECT] The CBSD is awaiting authorization from the SAS. + + [RECOVERY] Not applicable." + ::= { tmnxCellularNotifications 8 } + +tmnxCellPortCbsdAuthorized NOTIFICATION-TYPE + OBJECTS { + tmnxCellPortCbsdAuthId, + tmnxCellPortCbsdAuthGrantId, + tmnxCellPortCbsdAuthGrantExpTime, + tmnxCellPortCbsdAuthHeartbeatInt + } + STATUS current + DESCRIPTION + "[CAUSE] The tmnxCellPortCbsdAuthorized notification is generated when + the CBSD is authorized by the SAS. + + [EFFECT] The CBSD enables SR-OS on the cellular interface. + + [RECOVERY] Not applicable." + ::= { tmnxCellularNotifications 9 } + +tmnxCellPortCbsdTransDown NOTIFICATION-TYPE + OBJECTS { + tmnxCellPortCbsdAuthId, + tmnxCellPortCbsdAuthGrantId, + tmnxCellCbsdAuthPrevTransState, + tmnxCellCbsdAuthNewTransState, + tmnxCellCbsdAuthFailReason, + tmnxCellCbsdAuthRespCode + } + STATUS current + DESCRIPTION + "[CAUSE] The tmnxCellPortCbsdTransDown notification is generated when + the CBSD is transitioning to a lower state. + + [EFFECT] The CBSD proceeds to complete authorization with the SAS from + the state the CBSD has transitioned to. + + [RECOVERY] Not applicable." + ::= { tmnxCellularNotifications 10 } + +END diff --git a/tests/data/timos_hc.json b/tests/data/timos_hc.json new file mode 100644 index 0000000000..4ab895ac80 --- /dev/null +++ b/tests/data/timos_hc.json @@ -0,0 +1,8855 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.6527.1.3.14", + "sysDescr": "TiMOS-B-21.10.R1 both/sar Nokia 7705 SAR Copyright (c) 2000-2021 Nokia.\nAll rights reserved. All use subject to applicable license agreements.\r\nBuilt on Thu Nov 4 20:20:37 PDT 2021 by builder in /builds/c/2110B/R1/panos/main/sros", + "sysContact": "", + "version": "21.10.R1", + "hardware": "7705 SAR-Hm", + "features": null, + "os": "timos", + "type": "network", + "serial": "NS173160469", + "icon": "nokia.svg", + "location": "" + } + ] + }, + "poller": "matches discovery" + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "system, Loopback IP interface", + "ifName": "system", + "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": "softwareLoopback", + "ifAlias": "Loopback IP interface", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "LTE, IP interface", + "ifName": "LTE", + "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": "ipForward", + "ifAlias": "IP interface", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "PRODLAB_SAR_01, IP interface", + "ifName": "PRODLAB_SAR_01", + "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": "ipForward", + "ifAlias": "IP interface", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "_tmnx_nat-network_1/6, IP interface", + "ifName": "_tmnx_nat-network_1/6", + "portName": null, + "ifIndex": 131073, + "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": "IP interface", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "_tmnx_reassembly-network_1/6, IP interface", + "ifName": "_tmnx_reassembly-network_1/6", + "portName": null, + "ifIndex": 131074, + "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": "IP interface", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "_tmnx_reassembly-inside, IP interface", + "ifName": "_tmnx_reassembly-inside", + "portName": null, + "ifIndex": 131075, + "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": "IP interface", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "1/1/1, Cellular", + "ifName": "1/1/1", + "portName": null, + "ifIndex": 35684352, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "modem", + "ifAlias": "Cellular", + "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": "1/1/2, Cellular", + "ifName": "1/1/2", + "portName": null, + "ifIndex": 35717120, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "modem", + "ifAlias": "Cellular", + "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": "1/2/1, 10/100 Ethernet TX, \\\\LAB_SARH_01", + "ifName": "1/2/1", + "portName": null, + "ifIndex": 37781504, + "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": "LAB_SARH_01", + "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": "1/2/2, 10/100 Ethernet TX", + "ifName": "1/2/2", + "portName": null, + "ifIndex": 37814272, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "10/100 Ethernet TX", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "1/2/3, 10/100 Ethernet TX", + "ifName": "1/2/3", + "portName": null, + "ifIndex": 37847040, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "10/100 Ethernet TX", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "1/2/4, 10/100 Ethernet TX", + "ifName": "1/2/4", + "portName": null, + "ifIndex": 37879808, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "10/100 Ethernet TX", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "1/2/5, 10/100 Ethernet TX", + "ifName": "1/2/5", + "portName": null, + "ifIndex": 37912576, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "10/100 Ethernet TX", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "1/2/6, 10/100 Ethernet TX", + "ifName": "1/2/6", + "portName": null, + "ifIndex": 37945344, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "10/100 Ethernet TX", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "1/3/1, RS-232 Serial", + "ifName": "1/3/1", + "portName": null, + "ifIndex": 39878656, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "rs232", + "ifAlias": "RS-232 Serial", + "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": "1/3/2, RS-232 Serial", + "ifName": "1/3/2", + "portName": null, + "ifIndex": 39911424, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "rs232", + "ifAlias": "RS-232 Serial", + "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": "1/4/1, IP interface, \\\\Wireless LAN", + "ifName": "1/4/1", + "portName": null, + "ifIndex": 41975808, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Wireless LAN", + "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": "1/4/2, IP interface, \\\\Wireless LAN", + "ifName": "1/4/2", + "portName": null, + "ifIndex": 42008576, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Wireless LAN", + "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": "1/4/3, IP interface, \\\\Wireless LAN", + "ifName": "1/4/3", + "portName": null, + "ifIndex": 42041344, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Wireless LAN", + "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": "1/4/4, IP interface, \\\\Wireless LAN", + "ifName": "1/4/4", + "portName": null, + "ifIndex": 42074112, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Wireless LAN", + "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": "1/5/1, IP interface, \\\\IPsec", + "ifName": "1/5/1", + "portName": null, + "ifIndex": 44072960, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "IPsec", + "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": "1/5/2, IP interface, \\\\IPsec", + "ifName": "1/5/2", + "portName": null, + "ifIndex": 44105728, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "IPsec", + "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": "1/6/nat-in-ip, IP interface, \\\\Broadband", + "ifName": "1/6/nat-in-ip", + "portName": null, + "ifIndex": 46170112, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Broadband", + "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": "1/6/nat-out-ip, IP interface, \\\\Broadband", + "ifName": "1/6/nat-out-ip", + "portName": null, + "ifIndex": 46202880, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Broadband", + "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": "1/6/nat-in-l2, IP interface, \\\\Broadband", + "ifName": "1/6/nat-in-l2", + "portName": null, + "ifIndex": 46235648, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Broadband", + "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": "1/6/lns-net, IP interface, \\\\Broadband", + "ifName": "1/6/lns-net", + "portName": null, + "ifIndex": 46268416, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Broadband", + "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": "1/6/lns-esm, IP interface, \\\\Broadband", + "ifName": "1/6/lns-esm", + "portName": null, + "ifIndex": 46301184, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Broadband", + "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": "1/6/nat-in-ds, IP interface, \\\\Broadband", + "ifName": "1/6/nat-in-ds", + "portName": null, + "ifIndex": 46333952, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Broadband", + "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": "1/6/lo-gre, IP interface, \\\\Broadband", + "ifName": "1/6/lo-gre", + "portName": null, + "ifIndex": 46366720, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Broadband", + "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": "A/1, 10/100 Ethernet TX", + "ifName": "A/1", + "portName": null, + "ifIndex": 67141632, + "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": "10/100 Ethernet TX", + "ifPhysAddress": null, + "ifHardType": null, + "ifLastChange": 0, + "ifVlan": "", + "ifTrunk": null, + "counter_in": null, + "counter_out": null, + "ignore": 0, + "disabled": 0, + "detailed": 0, + "deleted": 0, + "pagpOperationMode": null, + "pagpPortState": null, + "pagpPartnerDeviceId": null, + "pagpPartnerLearnMethod": null, + "pagpPartnerIfIndex": null, + "pagpPartnerGroupIfIndex": null, + "pagpPartnerDeviceName": null, + "pagpEthcOperationMode": null, + "pagpDeviceId": null, + "pagpGroupIfIndex": null, + "ifInUcastPkts": null, + "ifInUcastPkts_prev": null, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": null, + "ifOutUcastPkts_prev": null, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": null, + "ifInErrors_prev": null, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": null, + "ifOutErrors_prev": null, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": null, + "ifInOctets_prev": null, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": null, + "ifOutOctets_prev": null, + "ifOutOctets_delta": null, + "ifOutOctets_rate": null, + "poll_prev": null, + "ifInNUcastPkts": null, + "ifInNUcastPkts_prev": null, + "ifInNUcastPkts_delta": null, + "ifInNUcastPkts_rate": null, + "ifOutNUcastPkts": null, + "ifOutNUcastPkts_prev": null, + "ifOutNUcastPkts_delta": null, + "ifOutNUcastPkts_rate": null, + "ifInDiscards": null, + "ifInDiscards_prev": null, + "ifInDiscards_delta": null, + "ifInDiscards_rate": null, + "ifOutDiscards": null, + "ifOutDiscards_prev": null, + "ifOutDiscards_delta": null, + "ifOutDiscards_rate": null, + "ifInUnknownProtos": null, + "ifInUnknownProtos_prev": null, + "ifInUnknownProtos_delta": null, + "ifInUnknownProtos_rate": null, + "ifInBroadcastPkts": null, + "ifInBroadcastPkts_prev": null, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": null, + "ifOutBroadcastPkts_prev": null, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": null, + "ifInMulticastPkts_prev": null, + "ifInMulticastPkts_delta": null, + "ifInMulticastPkts_rate": null, + "ifOutMulticastPkts": null, + "ifOutMulticastPkts_prev": null, + "ifOutMulticastPkts_delta": null, + "ifOutMulticastPkts_rate": null + }, + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "bbg-1.nat-out-ip, IP interface, \\\\Broadband", + "ifName": "bbg-1.nat-out-ip", + "portName": null, + "ifIndex": 1493172258, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Broadband", + "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": "bbg-1.nat-in-ip, IP interface, \\\\Broadband", + "ifName": "bbg-1.nat-in-ip", + "portName": null, + "ifIndex": 1509949473, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Broadband", + "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": "bbg-1.nat-in-ds, IP interface, \\\\Broadband", + "ifName": "bbg-1.nat-in-ds", + "portName": null, + "ifIndex": 1509949478, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "Broadband", + "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": "system, Loopback IP interface", + "ifName": "system", + "portName": null, + "ifIndex": 1, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "softwareLoopback", + "ifAlias": "Loopback IP interface", + "ifPhysAddress": "cc66b20a6e45", + "ifHardType": null, + "ifLastChange": 368, + "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": "LTE, IP interface", + "ifName": "LTE", + "portName": null, + "ifIndex": 2, + "ifSpeed": 150000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ipForward", + "ifAlias": "IP interface", + "ifPhysAddress": "cc66b20a6e47", + "ifHardType": null, + "ifLastChange": 6815, + "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": 313969, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 423582, + "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": 30631178, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 132325456, + "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": 1, + "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": "PRODLAB_SAR_01, IP interface", + "ifName": "PRODLAB_SAR_01", + "portName": null, + "ifIndex": 3, + "ifSpeed": 100000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1604, + "ifType": "ipForward", + "ifAlias": "IP interface", + "ifPhysAddress": "cc66b20a6e49", + "ifHardType": null, + "ifLastChange": 520344, + "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": 4, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 3, + "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": 370, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 318, + "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": "management", + "ifName": "management", + "portName": null, + "ifIndex": 1280, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "network", + "ifAlias": "management", + "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": "vmhost-management", + "ifName": "vmhost-management", + "portName": null, + "ifIndex": 1281, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifOperStatus": null, + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 0, + "ifType": "network", + "ifAlias": "vmhost-management", + "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": "_tmnx_nat-network_1/6, IP interface", + "ifName": "_tmnx_nat-network_1/6", + "portName": null, + "ifIndex": 131073, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 8918, + "ifType": "ipForward", + "ifAlias": "IP interface", + "ifPhysAddress": "000000010101", + "ifHardType": null, + "ifLastChange": 1588, + "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": "_tmnx_reassembly-network_1/6, IP interface", + "ifName": "_tmnx_reassembly-network_1/6", + "portName": null, + "ifIndex": 131074, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 8918, + "ifType": "ipForward", + "ifAlias": "IP interface", + "ifPhysAddress": "000000010101", + "ifHardType": null, + "ifLastChange": 1588, + "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": "_tmnx_reassembly-inside, IP interface", + "ifName": "_tmnx_reassembly-inside", + "portName": null, + "ifIndex": 131075, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 8914, + "ifType": "ipForward", + "ifAlias": "IP interface", + "ifPhysAddress": "000000010101", + "ifHardType": null, + "ifLastChange": 1633, + "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": "1/1/1, Cellular", + "ifName": "1/1/1", + "portName": null, + "ifIndex": 35684352, + "ifSpeed": 150000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1514, + "ifType": "modem", + "ifAlias": "Cellular", + "ifPhysAddress": "cc66b20a6e47", + "ifHardType": null, + "ifLastChange": 6815, + "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": 319737, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 423755, + "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": 26784620, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 124712933, + "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": "1/1/2, Cellular", + "ifName": "1/1/2", + "portName": null, + "ifIndex": 35717120, + "ifSpeed": 150000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1514, + "ifType": "modem", + "ifAlias": "Cellular", + "ifPhysAddress": "cc66b20a6e48", + "ifHardType": null, + "ifLastChange": 69, + "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": "1/2/1, 10/100 Ethernet TX, \\\\LAB_SARH_01", + "ifName": "1/2/1", + "portName": null, + "ifIndex": 37781504, + "ifSpeed": 100000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1622, + "ifType": "ethernetCsmacd", + "ifAlias": "LAB_SARH_01", + "ifPhysAddress": "cc66b20a6e49", + "ifHardType": null, + "ifLastChange": 459914, + "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": 5, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 3, + "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": 6129787, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 590, + "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": 503, + "ifInBroadcastPkts_prev": 0, + "ifInBroadcastPkts_delta": null, + "ifInBroadcastPkts_rate": null, + "ifOutBroadcastPkts": 4, + "ifOutBroadcastPkts_prev": 0, + "ifOutBroadcastPkts_delta": null, + "ifOutBroadcastPkts_rate": null, + "ifInMulticastPkts": 7252, + "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": "1/2/2, 10/100 Ethernet TX", + "ifName": "1/2/2", + "portName": null, + "ifIndex": 37814272, + "ifSpeed": 100000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1622, + "ifType": "ethernetCsmacd", + "ifAlias": "10/100 Ethernet TX", + "ifPhysAddress": "cc66b20a6e4a", + "ifHardType": null, + "ifLastChange": 1676, + "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": "1/2/3, 10/100 Ethernet TX", + "ifName": "1/2/3", + "portName": null, + "ifIndex": 37847040, + "ifSpeed": 100000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "10/100 Ethernet TX", + "ifPhysAddress": "cc66b20a6e4b", + "ifHardType": null, + "ifLastChange": 1676, + "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": "1/2/4, 10/100 Ethernet TX", + "ifName": "1/2/4", + "portName": null, + "ifIndex": 37879808, + "ifSpeed": 100000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "10/100 Ethernet TX", + "ifPhysAddress": "cc66b20a6e4c", + "ifHardType": null, + "ifLastChange": 1676, + "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": "1/2/5, 10/100 Ethernet TX", + "ifName": "1/2/5", + "portName": null, + "ifIndex": 37912576, + "ifSpeed": 100000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "10/100 Ethernet TX", + "ifPhysAddress": "cc66b20a6e4d", + "ifHardType": null, + "ifLastChange": 191311, + "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": "1/2/6, 10/100 Ethernet TX", + "ifName": "1/2/6", + "portName": null, + "ifIndex": 37945344, + "ifSpeed": 100000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "unknown", + "ifMtu": 1622, + "ifType": "ethernetCsmacd", + "ifAlias": "10/100 Ethernet TX", + "ifPhysAddress": "cc66b20a6e4e", + "ifHardType": null, + "ifLastChange": 1676, + "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": "1/3/1, RS-232 Serial", + "ifName": "1/3/1", + "portName": null, + "ifIndex": 39878656, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "rs232", + "ifAlias": "RS-232 Serial", + "ifPhysAddress": "cc66b20a6e4f", + "ifHardType": null, + "ifLastChange": 69, + "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": "1/3/2, RS-232 Serial", + "ifName": "1/3/2", + "portName": null, + "ifIndex": 39911424, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "rs232", + "ifAlias": "RS-232 Serial", + "ifPhysAddress": "cc66b20a6e50", + "ifHardType": null, + "ifLastChange": 69, + "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": "1/4/1, IP interface, \\\\Wireless LAN", + "ifName": "1/4/1", + "portName": null, + "ifIndex": 41975808, + "ifSpeed": 150000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1514, + "ifType": "other", + "ifAlias": "Wireless LAN", + "ifPhysAddress": "cc66b20a6e51", + "ifHardType": null, + "ifLastChange": 69, + "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": "1/4/2, IP interface, \\\\Wireless LAN", + "ifName": "1/4/2", + "portName": null, + "ifIndex": 42008576, + "ifSpeed": 150000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1514, + "ifType": "other", + "ifAlias": "Wireless LAN", + "ifPhysAddress": "cc66b20a6e52", + "ifHardType": null, + "ifLastChange": 69, + "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": "1/4/3, IP interface, \\\\Wireless LAN", + "ifName": "1/4/3", + "portName": null, + "ifIndex": 42041344, + "ifSpeed": 150000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1514, + "ifType": "other", + "ifAlias": "Wireless LAN", + "ifPhysAddress": "cc66b20a6e53", + "ifHardType": null, + "ifLastChange": 69, + "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": "1/4/4, IP interface, \\\\Wireless LAN", + "ifName": "1/4/4", + "portName": null, + "ifIndex": 42074112, + "ifSpeed": 150000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1514, + "ifType": "other", + "ifAlias": "Wireless LAN", + "ifPhysAddress": "cc66b20a6e54", + "ifHardType": null, + "ifLastChange": 69, + "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": "1/5/1, IP interface, \\\\IPsec", + "ifName": "1/5/1", + "portName": null, + "ifIndex": 44072960, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 8936, + "ifType": "other", + "ifAlias": "IPsec", + "ifPhysAddress": "cc66b20a6e55", + "ifHardType": null, + "ifLastChange": 1565, + "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": "1/5/2, IP interface, \\\\IPsec", + "ifName": "1/5/2", + "portName": null, + "ifIndex": 44105728, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 8936, + "ifType": "other", + "ifAlias": "IPsec", + "ifPhysAddress": "cc66b20a6e56", + "ifHardType": null, + "ifLastChange": 1565, + "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": "1/6/nat-in-ip, IP interface, \\\\Broadband", + "ifName": "1/6/nat-in-ip", + "portName": null, + "ifIndex": 46170112, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 8936, + "ifType": "other", + "ifAlias": "Broadband", + "ifPhysAddress": "cc66b20a6e57", + "ifHardType": null, + "ifLastChange": 1577, + "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": "1/6/nat-out-ip, IP interface, \\\\Broadband", + "ifName": "1/6/nat-out-ip", + "portName": null, + "ifIndex": 46202880, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 8936, + "ifType": "other", + "ifAlias": "Broadband", + "ifPhysAddress": "000000020202", + "ifHardType": null, + "ifLastChange": 1585, + "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": "1/6/nat-in-l2, IP interface, \\\\Broadband", + "ifName": "1/6/nat-in-l2", + "portName": null, + "ifIndex": 46235648, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 8936, + "ifType": "other", + "ifAlias": "Broadband", + "ifPhysAddress": "000000010101", + "ifHardType": null, + "ifLastChange": 1588, + "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": "1/6/lns-net, IP interface, \\\\Broadband", + "ifName": "1/6/lns-net", + "portName": null, + "ifIndex": 46268416, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 8936, + "ifType": "other", + "ifAlias": "Broadband", + "ifPhysAddress": "cc66b20a6e5a", + "ifHardType": null, + "ifLastChange": 1592, + "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": "1/6/lns-esm, IP interface, \\\\Broadband", + "ifName": "1/6/lns-esm", + "portName": null, + "ifIndex": 46301184, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 8936, + "ifType": "other", + "ifAlias": "Broadband", + "ifPhysAddress": "cc66b20a6e5b", + "ifHardType": null, + "ifLastChange": 1595, + "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": "1/6/nat-in-ds, IP interface, \\\\Broadband", + "ifName": "1/6/nat-in-ds", + "portName": null, + "ifIndex": 46333952, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 8936, + "ifType": "other", + "ifAlias": "Broadband", + "ifPhysAddress": "cc66b20a6e5c", + "ifHardType": null, + "ifLastChange": 1611, + "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": "1/6/lo-gre, IP interface, \\\\Broadband", + "ifName": "1/6/lo-gre", + "portName": null, + "ifIndex": 46366720, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 8936, + "ifType": "other", + "ifAlias": "Broadband", + "ifPhysAddress": "cc66b20a6e5d", + "ifHardType": null, + "ifLastChange": 1631, + "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": "A/1, 10/100 Ethernet TX", + "ifName": "A/1", + "portName": null, + "ifIndex": 67141632, + "ifSpeed": 100000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": "fullDuplex", + "ifMtu": 1514, + "ifType": "ethernetCsmacd", + "ifAlias": "10/100 Ethernet TX", + "ifPhysAddress": "000000000000", + "ifHardType": null, + "ifLastChange": 103, + "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": "bbg-1.nat-out-ip, IP interface, \\\\Broadband", + "ifName": "bbg-1.nat-out-ip", + "portName": null, + "ifIndex": 1493172258, + "ifSpeed": 0, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 8936, + "ifType": "other", + "ifAlias": "Broadband", + "ifPhysAddress": "000000020202", + "ifHardType": null, + "ifLastChange": 1621, + "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": "bbg-1.nat-in-ip, IP interface, \\\\Broadband", + "ifName": "bbg-1.nat-in-ip", + "portName": null, + "ifIndex": 1509949473, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 8936, + "ifType": "other", + "ifAlias": "Broadband", + "ifPhysAddress": "000000010101", + "ifHardType": null, + "ifLastChange": 1631, + "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": "bbg-1.nat-in-ds, IP interface, \\\\Broadband", + "ifName": "bbg-1.nat-in-ds", + "portName": null, + "ifIndex": 1509949478, + "ifSpeed": 40000000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 8936, + "ifType": "other", + "ifAlias": "Broadband", + "ifPhysAddress": "000000010101", + "ifHardType": null, + "ifLastChange": 1631, + "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 + } + ] + } + }, + "processors": { + "discovery": { + "processors": [ + { + "entPhysicalIndex": 0, + "hrDeviceIndex": 0, + "processor_oid": ".1.3.6.1.4.1.6527.3.1.2.1.1.1.0", + "processor_index": "0", + "processor_type": "timos", + "processor_usage": 12, + "processor_descr": "Processor", + "processor_precision": 1, + "processor_perc_warn": 75 + } + ] + }, + "poller": "matches discovery" + }, + "mempools": { + "discovery": { + "mempools": [ + { + "mempool_index": "0", + "entPhysicalIndex": null, + "mempool_type": "timos", + "mempool_class": "system", + "mempool_precision": 1000, + "mempool_descr": "Memory", + "mempool_perc": 79, + "mempool_perc_oid": null, + "mempool_used": 916814000, + "mempool_used_oid": ".1.3.6.1.4.1.6527.3.1.2.1.1.11.0", + "mempool_free": 239812000, + "mempool_free_oid": ".1.3.6.1.4.1.6527.3.1.2.1.1.10.0", + "mempool_total": 1156626000, + "mempool_total_oid": null, + "mempool_largestfree": null, + "mempool_lowestfree": null, + "mempool_deleted": 0, + "mempool_perc_warn": 90 + } + ] + }, + "poller": "matches discovery" + }, + "vrf": { + "discovery": { + "vrfs": [ + { + "vrf_oid": "1", + "vrf_name": "Base", + "bgpLocalAs": 0, + "mplsVpnVrfRouteDistinguisher": null, + "mplsVpnVrfDescription": "", + "ifIndices": "1,2,3,131073,131074,131075" + }, + { + "vrf_oid": "4093", + "vrf_name": "vmhost-management", + "bgpLocalAs": 0, + "mplsVpnVrfRouteDistinguisher": null, + "mplsVpnVrfDescription": "", + "ifIndices": null + }, + { + "vrf_oid": "4094", + "vrf_name": "vpls-management", + "bgpLocalAs": 0, + "mplsVpnVrfRouteDistinguisher": null, + "mplsVpnVrfDescription": "", + "ifIndices": null + }, + { + "vrf_oid": "4095", + "vrf_name": "management", + "bgpLocalAs": 0, + "mplsVpnVrfRouteDistinguisher": null, + "mplsVpnVrfDescription": "", + "ifIndices": null + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.4.35684352", + "sensor_index": "tmnxCellPortFrequencyBand.35684352", + "sensor_type": "timos", + "sensor_descr": "Interface 1/1/1", + "group": "Frequency band", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 3, + "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_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.4.35717120", + "sensor_index": "tmnxCellPortFrequencyBand.35717120", + "sensor_type": "timos", + "sensor_descr": "Interface 1/1/2", + "group": "Frequency band", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.109.3.1.5.1.3.35684352.5", + "sensor_index": "tmnxCellularPortBearerTable.35684352.5", + "sensor_type": "timos", + "sensor_descr": "Interface 1/1/1", + "group": "QoS Class Identifier", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 9, + "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_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.33.1.107.1.65.1", + "sensor_index": "tmnxSubMgmtSystSSubscribers.1", + "sensor_type": "timos", + "sensor_descr": "Active subscribers on this system", + "group": "Subscribers", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.33.1.107.1.33.1", + "sensor_index": "tmnxSubMgmtSystSTotal.1", + "sensor_type": "timos", + "sensor_descr": "Total hosts on this system", + "group": "Subscribers", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.33.1.107.1.25.1", + "sensor_index": "tmnxSubMgmtSystSV4.1", + "sensor_type": "timos", + "sensor_descr": "V4 hosts on this system", + "group": "Subscribers", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "count", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.33.1.107.1.27.1", + "sensor_index": "tmnxSubMgmtSystSV6.1", + "sensor_type": "timos", + "sensor_descr": "V6 hosts on this system", + "group": "Subscribers", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.109.3.1.4.1.1.35684352.1", + "sensor_index": "tmnxCellPdnConnectionState.35684352.1", + "sensor_type": "tmnxCellPdnConnectionState", + "sensor_descr": "Pdn state 1/1/1 mpls.tampnet", + "group": "Cellular status", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "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_prev": null, + "user_func": null, + "state_name": "tmnxCellPdnConnectionState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.109.3.1.4.1.1.35717120.1", + "sensor_index": "tmnxCellPdnConnectionState.35717120.1", + "sensor_type": "tmnxCellPdnConnectionState", + "sensor_descr": "Pdn state 1/1/2 ", + "group": "Cellular status", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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_prev": null, + "user_func": null, + "state_name": "tmnxCellPdnConnectionState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.2.35684352", + "sensor_index": "tmnxCellPortRegistrationStatus.35684352", + "sensor_type": "tmnxCellPortRegistrationStatus", + "sensor_descr": "Registration state 1/1/1", + "group": "Cellular status", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 5, + "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_prev": null, + "user_func": null, + "state_name": "tmnxCellPortRegistrationStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.2.35717120", + "sensor_index": "tmnxCellPortRegistrationStatus.35717120", + "sensor_type": "tmnxCellPortRegistrationStatus", + "sensor_descr": "Registration state 1/1/2", + "group": "Cellular status", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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_prev": null, + "user_func": null, + "state_name": "tmnxCellPortRegistrationStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.3.35684352", + "sensor_index": "tmnxCellPortWirelessTechnology.35684352", + "sensor_type": "tmnxCellPortWirelessTechnology", + "sensor_descr": "Wireless technology 1/1/1", + "group": "Cellular status", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "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_prev": null, + "user_func": null, + "state_name": "tmnxCellPortWirelessTechnology" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.3.35717120", + "sensor_index": "tmnxCellPortWirelessTechnology.35717120", + "sensor_type": "tmnxCellPortWirelessTechnology", + "sensor_descr": "Wireless technology 1/1/2", + "group": "Cellular status", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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_prev": null, + "user_func": null, + "state_name": "tmnxCellPortWirelessTechnology" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.109.3.1.3.1.1.35684352.1", + "sensor_index": "tmnxCellSimCardEquipped.35684352.1", + "sensor_type": "tmnxCellSimCardEquipped", + "sensor_descr": "Simcard 1/1/1", + "group": "Cellular status", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "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_prev": null, + "user_func": null, + "state_name": "tmnxCellSimCardEquipped" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.109.3.1.3.1.1.35717120.2", + "sensor_index": "tmnxCellSimCardEquipped.35717120.2", + "sensor_type": "tmnxCellSimCardEquipped", + "sensor_descr": "Simcard 1/1/2", + "group": "Cellular status", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "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_prev": null, + "user_func": null, + "state_name": "tmnxCellSimCardEquipped" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.3.1.24.1", + "sensor_index": "tmnxChassisOverTempState.1", + "sensor_type": "tmnxChassisOverTempState", + "sensor_descr": "Chassis Over Temp", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1, + "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_prev": null, + "user_func": null, + "state_name": "tmnxChassisOverTempState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.134217729", + "sensor_index": "tmnxHwID.1.134217729", + "sensor_type": "tmnxHwAlarmState", + "sensor_descr": "Slot 1 NS173160469 ", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "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_prev": null, + "user_func": null, + "state_name": "tmnxHwAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.150994977", + "sensor_index": "tmnxHwID.1.150994977", + "sensor_type": "tmnxHwAlarmState", + "sensor_descr": "Slot A NS173160469 ", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "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_prev": null, + "user_func": null, + "state_name": "tmnxHwAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.167772162", + "sensor_index": "tmnxHwID.1.167772162", + "sensor_type": "tmnxHwAlarmState", + "sensor_descr": "Slot A ", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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_prev": null, + "user_func": null, + "state_name": "tmnxHwAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.184549633", + "sensor_index": "tmnxHwID.1.184549633", + "sensor_type": "tmnxHwAlarmState", + "sensor_descr": "MDA 1/1 NS173160469 ", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "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_prev": null, + "user_func": null, + "state_name": "tmnxHwAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.184549634", + "sensor_index": "tmnxHwID.1.184549634", + "sensor_type": "tmnxHwAlarmState", + "sensor_descr": "MDA 1/2 NS173160469 ", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "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_prev": null, + "user_func": null, + "state_name": "tmnxHwAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.184549635", + "sensor_index": "tmnxHwID.1.184549635", + "sensor_type": "tmnxHwAlarmState", + "sensor_descr": "MDA 1/3 NS173160469 ", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "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_prev": null, + "user_func": null, + "state_name": "tmnxHwAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.184549636", + "sensor_index": "tmnxHwID.1.184549636", + "sensor_type": "tmnxHwAlarmState", + "sensor_descr": "MDA 1/4 NS173160469 ", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "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_prev": null, + "user_func": null, + "state_name": "tmnxHwAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.184549637", + "sensor_index": "tmnxHwID.1.184549637", + "sensor_type": "tmnxHwAlarmState", + "sensor_descr": "MDA 1/5 NS173160469 ", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "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_prev": null, + "user_func": null, + "state_name": "tmnxHwAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.184549638", + "sensor_index": "tmnxHwID.1.184549638", + "sensor_type": "tmnxHwAlarmState", + "sensor_descr": "MDA 1/6 NS173160469 ", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "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_prev": null, + "user_func": null, + "state_name": "tmnxHwAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.201327107", + "sensor_index": "tmnxHwID.1.201327107", + "sensor_type": "tmnxHwAlarmState", + "sensor_descr": "cf3: ", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "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_prev": null, + "user_func": null, + "state_name": "tmnxHwAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.50331649", + "sensor_index": "tmnxHwID.1.50331649", + "sensor_type": "tmnxHwAlarmState", + "sensor_descr": "Chassis 1 NS173160469 ", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2, + "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_prev": null, + "user_func": null, + "state_name": "tmnxHwAlarmState" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.134217729", + "sensor_index": "tmnxHwID.1.134217729", + "sensor_type": "timos", + "sensor_descr": "Slot 1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 32, + "sensor_limit": 75, + "sensor_limit_warn": null, + "sensor_limit_low": 22, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.150994977", + "sensor_index": "tmnxHwID.1.150994977", + "sensor_type": "timos", + "sensor_descr": "Slot A", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 32, + "sensor_limit": 75, + "sensor_limit_warn": null, + "sensor_limit_low": 22, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.184549633", + "sensor_index": "tmnxHwID.1.184549633", + "sensor_type": "timos", + "sensor_descr": "MDA 1/1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 32, + "sensor_limit": 75, + "sensor_limit_warn": null, + "sensor_limit_low": 22, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.184549634", + "sensor_index": "tmnxHwID.1.184549634", + "sensor_type": "timos", + "sensor_descr": "MDA 1/2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 32, + "sensor_limit": 75, + "sensor_limit_warn": null, + "sensor_limit_low": 22, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.184549635", + "sensor_index": "tmnxHwID.1.184549635", + "sensor_type": "timos", + "sensor_descr": "MDA 1/3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 32, + "sensor_limit": 75, + "sensor_limit_warn": null, + "sensor_limit_low": 22, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.184549636", + "sensor_index": "tmnxHwID.1.184549636", + "sensor_type": "timos", + "sensor_descr": "MDA 1/4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 32, + "sensor_limit": 75, + "sensor_limit_warn": null, + "sensor_limit_low": 22, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.184549637", + "sensor_index": "tmnxHwID.1.184549637", + "sensor_type": "timos", + "sensor_descr": "MDA 1/5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 32, + "sensor_limit": 75, + "sensor_limit_warn": null, + "sensor_limit_low": 22, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.184549638", + "sensor_index": "tmnxHwID.1.184549638", + "sensor_type": "timos", + "sensor_descr": "MDA 1/6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 32, + "sensor_limit": 75, + "sensor_limit_warn": null, + "sensor_limit_low": 22, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "state_name": "tmnxCellPdnConnectionState", + "state_descr": "Not connected", + "state_draw_graph": 0, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellPdnConnectionState", + "state_descr": "Connected", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellPortRegistrationStatus", + "state_descr": "Not-registered", + "state_draw_graph": 0, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellPortRegistrationStatus", + "state_descr": "Registered-home", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellPortRegistrationStatus", + "state_descr": "Searching", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellPortRegistrationStatus", + "state_descr": "Denied", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellPortRegistrationStatus", + "state_descr": "No-network", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellPortRegistrationStatus", + "state_descr": "Registered-roaming", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellPortRegistrationStatus", + "state_descr": "Sms-only-home", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellPortRegistrationStatus", + "state_descr": "Sms-only-roaming", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellPortRegistrationStatus", + "state_descr": "Emergency-only", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellPortRegistrationStatus", + "state_descr": "Csfb-not-preferred-home", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellPortRegistrationStatus", + "state_descr": "Csfb-not-preferred-roaming", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellPortWirelessTechnology", + "state_descr": "None", + "state_draw_graph": 0, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellPortWirelessTechnology", + "state_descr": "Lte", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellPortWirelessTechnology", + "state_descr": "Wcdma", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellPortWirelessTechnology", + "state_descr": "Gsm", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellSimCardEquipped", + "state_descr": "Installed", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "tmnxCellSimCardEquipped", + "state_descr": "Not installed", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + }, + { + "state_name": "tmnxChassisOverTempState", + "state_descr": "Ok", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "tmnxChassisOverTempState", + "state_descr": "OverTemp", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "tmnxHwAlarmState", + "state_descr": "unknown", + "state_draw_graph": 0, + "state_value": 0, + "state_generic_value": 3 + }, + { + "state_name": "tmnxHwAlarmState", + "state_descr": "alarmActive", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 2 + }, + { + "state_name": "tmnxHwAlarmState", + "state_descr": "alarmCleared", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 0 + } + ] + }, + "poller": "matches discovery" + }, + "wireless": { + "discovery": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "35684352", + "sensor_type": "timos", + "sensor_descr": "SNR: 1/1/1", + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 26.4, + "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.6527.3.1.2.109.3.1.1.1.12.35684352\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "35717120", + "sensor_type": "timos", + "sensor_descr": "SNR: 1/1/2", + "sensor_divisor": 10, + "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.6527.3.1.2.109.3.1.1.1.12.35717120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rsrp", + "sensor_index": "35684352", + "sensor_type": "timos", + "sensor_descr": "RSRP: 1/1/1", + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -7, + "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.6527.3.1.2.109.3.1.1.1.9.35684352\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rsrp", + "sensor_index": "35717120", + "sensor_type": "timos", + "sensor_descr": "RSRP: 1/1/2", + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "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.6527.3.1.2.109.3.1.1.1.9.35717120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rsrq", + "sensor_index": "35684352", + "sensor_type": "timos", + "sensor_descr": "RSRQ: 1/1/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.6527.3.1.2.109.3.1.1.1.11.35684352\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rsrq", + "sensor_index": "35717120", + "sensor_type": "timos", + "sensor_descr": "RSRQ: 1/1/2", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "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.6527.3.1.2.109.3.1.1.1.11.35717120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rssi", + "sensor_index": "35684352", + "sensor_type": "timos", + "sensor_descr": "RSSI: 1/1/1", + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -5.1, + "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.6527.3.1.2.109.3.1.1.1.8.35684352\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rssi", + "sensor_index": "35717120", + "sensor_type": "timos", + "sensor_descr": "RSSI: 1/1/2", + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "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.6527.3.1.2.109.3.1.1.1.8.35717120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "channel", + "sensor_index": "35684352", + "sensor_type": "timos", + "sensor_descr": "CHANNEL: 1/1/1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 1275, + "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.6527.3.1.2.109.3.1.1.1.5.35684352\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "channel", + "sensor_index": "35717120", + "sensor_type": "timos", + "sensor_descr": "CHANNEL: 1/1/2", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "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.6527.3.1.2.109.3.1.1.1.5.35717120\"]" + } + ] + }, + "poller": { + "wireless_sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "35684352", + "sensor_type": "timos", + "sensor_descr": "SNR: 1/1/1", + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 26.4, + "sensor_prev": 26.4, + "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.6527.3.1.2.109.3.1.1.1.12.35684352\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "snr", + "sensor_index": "35717120", + "sensor_type": "timos", + "sensor_descr": "SNR: 1/1/2", + "sensor_divisor": 10, + "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.6527.3.1.2.109.3.1.1.1.12.35717120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rsrp", + "sensor_index": "35684352", + "sensor_type": "timos", + "sensor_descr": "RSRP: 1/1/1", + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -7, + "sensor_prev": -7, + "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.6527.3.1.2.109.3.1.1.1.9.35684352\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rsrp", + "sensor_index": "35717120", + "sensor_type": "timos", + "sensor_descr": "RSRP: 1/1/2", + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "sensor_prev": 0, + "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.6527.3.1.2.109.3.1.1.1.9.35717120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rsrq", + "sensor_index": "35684352", + "sensor_type": "timos", + "sensor_descr": "RSRQ: 1/1/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.6527.3.1.2.109.3.1.1.1.11.35684352\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rsrq", + "sensor_index": "35717120", + "sensor_type": "timos", + "sensor_descr": "RSRQ: 1/1/2", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "sensor_prev": 0, + "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.6527.3.1.2.109.3.1.1.1.11.35717120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rssi", + "sensor_index": "35684352", + "sensor_type": "timos", + "sensor_descr": "RSSI: 1/1/1", + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": -5.1, + "sensor_prev": -5.1, + "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.6527.3.1.2.109.3.1.1.1.8.35684352\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "rssi", + "sensor_index": "35717120", + "sensor_type": "timos", + "sensor_descr": "RSSI: 1/1/2", + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "sensor_prev": 0, + "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.6527.3.1.2.109.3.1.1.1.8.35717120\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "channel", + "sensor_index": "35684352", + "sensor_type": "timos", + "sensor_descr": "CHANNEL: 1/1/1", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 1275, + "sensor_prev": 1275, + "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.6527.3.1.2.109.3.1.1.1.5.35684352\"]" + }, + { + "sensor_deleted": 0, + "sensor_class": "channel", + "sensor_index": "35717120", + "sensor_type": "timos", + "sensor_descr": "CHANNEL: 1/1/2", + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_aggregator": "sum", + "sensor_current": 0, + "sensor_prev": 0, + "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.6527.3.1.2.109.3.1.1.1.5.35717120\"]" + } + ] + } + }, + "mpls": { + "discovery": { + "mpls_lsps": [], + "mpls_lsp_paths": [], + "mpls_sdps": [ + { + "sdp_oid": 1971, + "sdpRowStatus": "active", + "sdpDelivery": "gre", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "down", + "sdpAdminPathMtu": 1770, + "sdpOperPathMtu": 1770, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 0, + "sdpActiveLspType": "not-applicable", + "sdpFarEndInetAddressType": "ipv4", + "sdpFarEndInetAddress": "10.1.97.30" + } + ], + "mpls_sdp_binds": [ + { + "sdp_oid": 1971, + "svc_oid": 112, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "down", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 0, + "sdpBindType": "spoke", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 0, + "sdpBindBaseStatsIngFwdOctets": 0, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + } + ], + "mpls_services": [ + { + "svc_oid": 112, + "svcRowStatus": "active", + "svcType": "epipe", + "svcCustId": 1, + "svcAdminStatus": "up", + "svcOperStatus": "down", + "svcDescription": "", + "svcMtu": 1600, + "svcNumSaps": 1, + "svcNumSdps": 1, + "svcLastMgmtChange": 4, + "svcLastStatusChange": 0, + "svcVRouterId": 0, + "svcTlsMacLearning": null, + "svcTlsStpAdminStatus": null, + "svcTlsStpOperStatus": null, + "svcTlsFdbTableSize": null, + "svcTlsFdbNumEntries": null + } + ], + "mpls_saps": [ + { + "svc_oid": 112, + "sapPortId": 37945344, + "ifName": null, + "sapEncapValue": "0", + "sapRowStatus": "active", + "sapType": "epipe", + "sapDescription": "", + "sapAdminStatus": "up", + "sapOperStatus": "down", + "sapLastMgmtChange": 4, + "sapLastStatusChange": 0 + } + ] + }, + "poller": { + "mpls_lsps": [], + "mpls_lsp_paths": [], + "mpls_sdps": [ + { + "sdp_oid": 1971, + "sdpRowStatus": "active", + "sdpDelivery": "gre", + "sdpDescription": "", + "sdpAdminStatus": "up", + "sdpOperStatus": "down", + "sdpAdminPathMtu": 1770, + "sdpOperPathMtu": 1770, + "sdpLastMgmtChange": 4, + "sdpLastStatusChange": 0, + "sdpActiveLspType": "not-applicable", + "sdpFarEndInetAddressType": "ipv4", + "sdpFarEndInetAddress": "10.1.97.30" + } + ], + "mpls_sdp_binds": [ + { + "sdp_oid": 1971, + "svc_oid": 112, + "sdpBindRowStatus": "active", + "sdpBindAdminStatus": "up", + "sdpBindOperStatus": "down", + "sdpBindLastMgmtChange": 4, + "sdpBindLastStatusChange": 0, + "sdpBindType": "spoke", + "sdpBindVcType": "ether", + "sdpBindBaseStatsIngFwdPackets": 0, + "sdpBindBaseStatsIngFwdOctets": 0, + "sdpBindBaseStatsEgrFwdPackets": 0, + "sdpBindBaseStatsEgrFwdOctets": 0 + } + ], + "mpls_services": [ + { + "svc_oid": 112, + "svcRowStatus": "active", + "svcType": "epipe", + "svcCustId": 1, + "svcAdminStatus": "up", + "svcOperStatus": "down", + "svcDescription": "", + "svcMtu": 1600, + "svcNumSaps": 1, + "svcNumSdps": 1, + "svcLastMgmtChange": 4, + "svcLastStatusChange": 0, + "svcVRouterId": 0, + "svcTlsMacLearning": null, + "svcTlsStpAdminStatus": null, + "svcTlsStpOperStatus": null, + "svcTlsFdbTableSize": null, + "svcTlsFdbNumEntries": null + } + ], + "mpls_saps": [ + { + "svc_oid": 112, + "sapPortId": 37945344, + "ifName": "1/2/6", + "sapEncapValue": "0", + "sapRowStatus": "active", + "sapType": "epipe", + "sapDescription": "", + "sapAdminStatus": "up", + "sapOperStatus": "down", + "sapLastMgmtChange": 4, + "sapLastStatusChange": 0 + } + ] + } + } +} diff --git a/tests/snmpsim/timos_hc.snmprec b/tests/snmpsim/timos_hc.snmprec new file mode 100644 index 0000000000..5a923f4d51 --- /dev/null +++ b/tests/snmpsim/timos_hc.snmprec @@ -0,0 +1,8491 @@ +1.3.6.1.2.1.1.1.0|4x|54694d4f532d422d32312e31302e523120626f74682f736172204e6f6b696120373730352053415220436f707972696768742028632920323030302d32303231204e6f6b69612e0a416c6c207269676874732072657365727665642e20416c6c20757365207375626a65637420746f206170706c696361626c65206c6963656e73652061677265656d656e74732e0d0a4275696c74206f6e20546875204e6f7620342032303a32303a3337205044542032303231206279206275696c64657220696e202f6275696c64732f632f32313130422f52312f70616e6f732f6d61696e2f73726f73 +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.6527.1.3.14 +1.3.6.1.2.1.1.3.0|67|26413659 +1.3.6.1.2.1.1.4.0|4| +1.3.6.1.2.1.1.5.0|4| +1.3.6.1.2.1.1.6.0|4| +1.3.6.1.2.1.2.2.1.2.1|4|system, Loopback IP interface +1.3.6.1.2.1.2.2.1.2.2|4|LTE, IP interface +1.3.6.1.2.1.2.2.1.2.3|4|PRODLAB_SAR_01, IP interface +1.3.6.1.2.1.2.2.1.2.131073|4|_tmnx_nat-network_1/6, IP interface +1.3.6.1.2.1.2.2.1.2.131074|4|_tmnx_reassembly-network_1/6, IP interface +1.3.6.1.2.1.2.2.1.2.131075|4|_tmnx_reassembly-inside, IP interface +1.3.6.1.2.1.2.2.1.2.35684352|4|1/1/1, Cellular +1.3.6.1.2.1.2.2.1.2.35717120|4|1/1/2, Cellular +1.3.6.1.2.1.2.2.1.2.37781504|4|1/2/1, 10/100 Ethernet TX, \LAB_SARH_01\ +1.3.6.1.2.1.2.2.1.2.37814272|4|1/2/2, 10/100 Ethernet TX +1.3.6.1.2.1.2.2.1.2.37847040|4|1/2/3, 10/100 Ethernet TX +1.3.6.1.2.1.2.2.1.2.37879808|4|1/2/4, 10/100 Ethernet TX +1.3.6.1.2.1.2.2.1.2.37912576|4|1/2/5, 10/100 Ethernet TX +1.3.6.1.2.1.2.2.1.2.37945344|4|1/2/6, 10/100 Ethernet TX +1.3.6.1.2.1.2.2.1.2.39878656|4|1/3/1, RS-232 Serial +1.3.6.1.2.1.2.2.1.2.39911424|4|1/3/2, RS-232 Serial +1.3.6.1.2.1.2.2.1.2.41975808|4|1/4/1, IP interface, \Wireless LAN\ +1.3.6.1.2.1.2.2.1.2.42008576|4|1/4/2, IP interface, \Wireless LAN\ +1.3.6.1.2.1.2.2.1.2.42041344|4|1/4/3, IP interface, \Wireless LAN\ +1.3.6.1.2.1.2.2.1.2.42074112|4|1/4/4, IP interface, \Wireless LAN\ +1.3.6.1.2.1.2.2.1.2.44072960|4|1/5/1, IP interface, \IPsec\ +1.3.6.1.2.1.2.2.1.2.44105728|4|1/5/2, IP interface, \IPsec\ +1.3.6.1.2.1.2.2.1.2.46170112|4|1/6/nat-in-ip, IP interface, \Broadband\ +1.3.6.1.2.1.2.2.1.2.46202880|4|1/6/nat-out-ip, IP interface, \Broadband\ +1.3.6.1.2.1.2.2.1.2.46235648|4|1/6/nat-in-l2, IP interface, \Broadband\ +1.3.6.1.2.1.2.2.1.2.46268416|4|1/6/lns-net, IP interface, \Broadband\ +1.3.6.1.2.1.2.2.1.2.46301184|4|1/6/lns-esm, IP interface, \Broadband\ +1.3.6.1.2.1.2.2.1.2.46333952|4|1/6/nat-in-ds, IP interface, \Broadband\ +1.3.6.1.2.1.2.2.1.2.46366720|4|1/6/lo-gre, IP interface, \Broadband\ +1.3.6.1.2.1.2.2.1.2.67141632|4|A/1, 10/100 Ethernet TX +1.3.6.1.2.1.2.2.1.2.1493172258|4|bbg-1.nat-out-ip, IP interface, \Broadband\ +1.3.6.1.2.1.2.2.1.2.1509949473|4|bbg-1.nat-in-ip, IP interface, \Broadband\ +1.3.6.1.2.1.2.2.1.2.1509949478|4|bbg-1.nat-in-ds, IP interface, \Broadband\ +1.3.6.1.2.1.2.2.1.3.1|2|24 +1.3.6.1.2.1.2.2.1.3.2|2|142 +1.3.6.1.2.1.2.2.1.3.3|2|142 +1.3.6.1.2.1.2.2.1.3.131073|2|142 +1.3.6.1.2.1.2.2.1.3.131074|2|142 +1.3.6.1.2.1.2.2.1.3.131075|2|142 +1.3.6.1.2.1.2.2.1.3.35684352|2|48 +1.3.6.1.2.1.2.2.1.3.35717120|2|48 +1.3.6.1.2.1.2.2.1.3.37781504|2|6 +1.3.6.1.2.1.2.2.1.3.37814272|2|6 +1.3.6.1.2.1.2.2.1.3.37847040|2|6 +1.3.6.1.2.1.2.2.1.3.37879808|2|6 +1.3.6.1.2.1.2.2.1.3.37912576|2|6 +1.3.6.1.2.1.2.2.1.3.37945344|2|6 +1.3.6.1.2.1.2.2.1.3.39878656|2|33 +1.3.6.1.2.1.2.2.1.3.39911424|2|33 +1.3.6.1.2.1.2.2.1.3.41975808|2|1 +1.3.6.1.2.1.2.2.1.3.42008576|2|1 +1.3.6.1.2.1.2.2.1.3.42041344|2|1 +1.3.6.1.2.1.2.2.1.3.42074112|2|1 +1.3.6.1.2.1.2.2.1.3.44072960|2|1 +1.3.6.1.2.1.2.2.1.3.44105728|2|1 +1.3.6.1.2.1.2.2.1.3.46170112|2|1 +1.3.6.1.2.1.2.2.1.3.46202880|2|1 +1.3.6.1.2.1.2.2.1.3.46235648|2|1 +1.3.6.1.2.1.2.2.1.3.46268416|2|1 +1.3.6.1.2.1.2.2.1.3.46301184|2|1 +1.3.6.1.2.1.2.2.1.3.46333952|2|1 +1.3.6.1.2.1.2.2.1.3.46366720|2|1 +1.3.6.1.2.1.2.2.1.3.67141632|2|6 +1.3.6.1.2.1.2.2.1.3.1493172258|2|1 +1.3.6.1.2.1.2.2.1.3.1509949473|2|1 +1.3.6.1.2.1.2.2.1.3.1509949478|2|1 +1.3.6.1.2.1.2.2.1.4.1|2|1500 +1.3.6.1.2.1.2.2.1.4.2|2|1500 +1.3.6.1.2.1.2.2.1.4.3|2|1604 +1.3.6.1.2.1.2.2.1.4.131073|2|8918 +1.3.6.1.2.1.2.2.1.4.131074|2|8918 +1.3.6.1.2.1.2.2.1.4.131075|2|8914 +1.3.6.1.2.1.2.2.1.4.35684352|2|1514 +1.3.6.1.2.1.2.2.1.4.35717120|2|1514 +1.3.6.1.2.1.2.2.1.4.37781504|2|1622 +1.3.6.1.2.1.2.2.1.4.37814272|2|1622 +1.3.6.1.2.1.2.2.1.4.37847040|2|1514 +1.3.6.1.2.1.2.2.1.4.37879808|2|1514 +1.3.6.1.2.1.2.2.1.4.37912576|2|1514 +1.3.6.1.2.1.2.2.1.4.37945344|2|1622 +1.3.6.1.2.1.2.2.1.4.39878656|2|1500 +1.3.6.1.2.1.2.2.1.4.39911424|2|1500 +1.3.6.1.2.1.2.2.1.4.41975808|2|1514 +1.3.6.1.2.1.2.2.1.4.42008576|2|1514 +1.3.6.1.2.1.2.2.1.4.42041344|2|1514 +1.3.6.1.2.1.2.2.1.4.42074112|2|1514 +1.3.6.1.2.1.2.2.1.4.44072960|2|8936 +1.3.6.1.2.1.2.2.1.4.44105728|2|8936 +1.3.6.1.2.1.2.2.1.4.46170112|2|8936 +1.3.6.1.2.1.2.2.1.4.46202880|2|8936 +1.3.6.1.2.1.2.2.1.4.46235648|2|8936 +1.3.6.1.2.1.2.2.1.4.46268416|2|8936 +1.3.6.1.2.1.2.2.1.4.46301184|2|8936 +1.3.6.1.2.1.2.2.1.4.46333952|2|8936 +1.3.6.1.2.1.2.2.1.4.46366720|2|8936 +1.3.6.1.2.1.2.2.1.4.67141632|2|1514 +1.3.6.1.2.1.2.2.1.4.1493172258|2|8936 +1.3.6.1.2.1.2.2.1.4.1509949473|2|8936 +1.3.6.1.2.1.2.2.1.4.1509949478|2|8936 +1.3.6.1.2.1.2.2.1.6.1|4x|CC66B20A6E45 +1.3.6.1.2.1.2.2.1.6.2|4x|CC66B20A6E47 +1.3.6.1.2.1.2.2.1.6.3|4x|CC66B20A6E49 +1.3.6.1.2.1.2.2.1.6.131073|4x|000000010101 +1.3.6.1.2.1.2.2.1.6.131074|4x|000000010101 +1.3.6.1.2.1.2.2.1.6.131075|4x|000000010101 +1.3.6.1.2.1.2.2.1.6.35684352|4x|CC66B20A6E47 +1.3.6.1.2.1.2.2.1.6.35717120|4x|CC66B20A6E48 +1.3.6.1.2.1.2.2.1.6.37781504|4x|CC66B20A6E49 +1.3.6.1.2.1.2.2.1.6.37814272|4x|CC66B20A6E4A +1.3.6.1.2.1.2.2.1.6.37847040|4x|CC66B20A6E4B +1.3.6.1.2.1.2.2.1.6.37879808|4x|CC66B20A6E4C +1.3.6.1.2.1.2.2.1.6.37912576|4x|CC66B20A6E4D +1.3.6.1.2.1.2.2.1.6.37945344|4x|CC66B20A6E4E +1.3.6.1.2.1.2.2.1.6.39878656|4x|CC66B20A6E4F +1.3.6.1.2.1.2.2.1.6.39911424|4x|CC66B20A6E50 +1.3.6.1.2.1.2.2.1.6.41975808|4x|CC66B20A6E51 +1.3.6.1.2.1.2.2.1.6.42008576|4x|CC66B20A6E52 +1.3.6.1.2.1.2.2.1.6.42041344|4x|CC66B20A6E53 +1.3.6.1.2.1.2.2.1.6.42074112|4x|CC66B20A6E54 +1.3.6.1.2.1.2.2.1.6.44072960|4x|CC66B20A6E55 +1.3.6.1.2.1.2.2.1.6.44105728|4x|CC66B20A6E56 +1.3.6.1.2.1.2.2.1.6.46170112|4x|CC66B20A6E57 +1.3.6.1.2.1.2.2.1.6.46202880|4x|000000020202 +1.3.6.1.2.1.2.2.1.6.46235648|4x|000000010101 +1.3.6.1.2.1.2.2.1.6.46268416|4x|CC66B20A6E5A +1.3.6.1.2.1.2.2.1.6.46301184|4x|CC66B20A6E5B +1.3.6.1.2.1.2.2.1.6.46333952|4x|CC66B20A6E5C +1.3.6.1.2.1.2.2.1.6.46366720|4x|CC66B20A6E5D +1.3.6.1.2.1.2.2.1.6.67141632|4x|000000000000 +1.3.6.1.2.1.2.2.1.6.1493172258|4x|000000020202 +1.3.6.1.2.1.2.2.1.6.1509949473|4x|000000010101 +1.3.6.1.2.1.2.2.1.6.1509949478|4x|000000010101 +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.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.131073|2|1 +1.3.6.1.2.1.2.2.1.7.131074|2|1 +1.3.6.1.2.1.2.2.1.7.131075|2|1 +1.3.6.1.2.1.2.2.1.7.35684352|2|1 +1.3.6.1.2.1.2.2.1.7.35717120|2|2 +1.3.6.1.2.1.2.2.1.7.37781504|2|1 +1.3.6.1.2.1.2.2.1.7.37814272|2|1 +1.3.6.1.2.1.2.2.1.7.37847040|2|1 +1.3.6.1.2.1.2.2.1.7.37879808|2|1 +1.3.6.1.2.1.2.2.1.7.37912576|2|1 +1.3.6.1.2.1.2.2.1.7.37945344|2|1 +1.3.6.1.2.1.2.2.1.7.39878656|2|2 +1.3.6.1.2.1.2.2.1.7.39911424|2|2 +1.3.6.1.2.1.2.2.1.7.41975808|2|2 +1.3.6.1.2.1.2.2.1.7.42008576|2|2 +1.3.6.1.2.1.2.2.1.7.42041344|2|2 +1.3.6.1.2.1.2.2.1.7.42074112|2|2 +1.3.6.1.2.1.2.2.1.7.44072960|2|1 +1.3.6.1.2.1.2.2.1.7.44105728|2|1 +1.3.6.1.2.1.2.2.1.7.46170112|2|1 +1.3.6.1.2.1.2.2.1.7.46202880|2|1 +1.3.6.1.2.1.2.2.1.7.46235648|2|1 +1.3.6.1.2.1.2.2.1.7.46268416|2|1 +1.3.6.1.2.1.2.2.1.7.46301184|2|1 +1.3.6.1.2.1.2.2.1.7.46333952|2|1 +1.3.6.1.2.1.2.2.1.7.46366720|2|1 +1.3.6.1.2.1.2.2.1.7.67141632|2|1 +1.3.6.1.2.1.2.2.1.7.1493172258|2|1 +1.3.6.1.2.1.2.2.1.7.1509949473|2|1 +1.3.6.1.2.1.2.2.1.7.1509949478|2|1 +1.3.6.1.2.1.2.2.1.8.1|2|1 +1.3.6.1.2.1.2.2.1.8.2|2|1 +1.3.6.1.2.1.2.2.1.8.3|2|1 +1.3.6.1.2.1.2.2.1.8.131073|2|1 +1.3.6.1.2.1.2.2.1.8.131074|2|1 +1.3.6.1.2.1.2.2.1.8.131075|2|1 +1.3.6.1.2.1.2.2.1.8.35684352|2|1 +1.3.6.1.2.1.2.2.1.8.35717120|2|2 +1.3.6.1.2.1.2.2.1.8.37781504|2|1 +1.3.6.1.2.1.2.2.1.8.37814272|2|2 +1.3.6.1.2.1.2.2.1.8.37847040|2|2 +1.3.6.1.2.1.2.2.1.8.37879808|2|2 +1.3.6.1.2.1.2.2.1.8.37912576|2|2 +1.3.6.1.2.1.2.2.1.8.37945344|2|2 +1.3.6.1.2.1.2.2.1.8.39878656|2|2 +1.3.6.1.2.1.2.2.1.8.39911424|2|2 +1.3.6.1.2.1.2.2.1.8.41975808|2|2 +1.3.6.1.2.1.2.2.1.8.42008576|2|2 +1.3.6.1.2.1.2.2.1.8.42041344|2|2 +1.3.6.1.2.1.2.2.1.8.42074112|2|2 +1.3.6.1.2.1.2.2.1.8.44072960|2|1 +1.3.6.1.2.1.2.2.1.8.44105728|2|1 +1.3.6.1.2.1.2.2.1.8.46170112|2|1 +1.3.6.1.2.1.2.2.1.8.46202880|2|1 +1.3.6.1.2.1.2.2.1.8.46235648|2|1 +1.3.6.1.2.1.2.2.1.8.46268416|2|1 +1.3.6.1.2.1.2.2.1.8.46301184|2|1 +1.3.6.1.2.1.2.2.1.8.46333952|2|1 +1.3.6.1.2.1.2.2.1.8.46366720|2|1 +1.3.6.1.2.1.2.2.1.8.67141632|2|1 +1.3.6.1.2.1.2.2.1.8.1493172258|2|1 +1.3.6.1.2.1.2.2.1.8.1509949473|2|1 +1.3.6.1.2.1.2.2.1.8.1509949478|2|1 +1.3.6.1.2.1.2.2.1.9.1|67|368 +1.3.6.1.2.1.2.2.1.9.2|67|6815 +1.3.6.1.2.1.2.2.1.9.3|67|520344 +1.3.6.1.2.1.2.2.1.9.131073|67|1588 +1.3.6.1.2.1.2.2.1.9.131074|67|1588 +1.3.6.1.2.1.2.2.1.9.131075|67|1633 +1.3.6.1.2.1.2.2.1.9.35684352|67|6815 +1.3.6.1.2.1.2.2.1.9.35717120|67|69 +1.3.6.1.2.1.2.2.1.9.37781504|67|459914 +1.3.6.1.2.1.2.2.1.9.37814272|67|1676 +1.3.6.1.2.1.2.2.1.9.37847040|67|1676 +1.3.6.1.2.1.2.2.1.9.37879808|67|1676 +1.3.6.1.2.1.2.2.1.9.37912576|67|191311 +1.3.6.1.2.1.2.2.1.9.37945344|67|1676 +1.3.6.1.2.1.2.2.1.9.39878656|67|69 +1.3.6.1.2.1.2.2.1.9.39911424|67|69 +1.3.6.1.2.1.2.2.1.9.41975808|67|69 +1.3.6.1.2.1.2.2.1.9.42008576|67|69 +1.3.6.1.2.1.2.2.1.9.42041344|67|69 +1.3.6.1.2.1.2.2.1.9.42074112|67|69 +1.3.6.1.2.1.2.2.1.9.44072960|67|1565 +1.3.6.1.2.1.2.2.1.9.44105728|67|1565 +1.3.6.1.2.1.2.2.1.9.46170112|67|1577 +1.3.6.1.2.1.2.2.1.9.46202880|67|1585 +1.3.6.1.2.1.2.2.1.9.46235648|67|1588 +1.3.6.1.2.1.2.2.1.9.46268416|67|1592 +1.3.6.1.2.1.2.2.1.9.46301184|67|1595 +1.3.6.1.2.1.2.2.1.9.46333952|67|1611 +1.3.6.1.2.1.2.2.1.9.46366720|67|1631 +1.3.6.1.2.1.2.2.1.9.67141632|67|103 +1.3.6.1.2.1.2.2.1.9.1493172258|67|1621 +1.3.6.1.2.1.2.2.1.9.1509949473|67|1631 +1.3.6.1.2.1.2.2.1.9.1509949478|67|1631 +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.131073|65|0 +1.3.6.1.2.1.2.2.1.13.131074|65|0 +1.3.6.1.2.1.2.2.1.13.131075|65|0 +1.3.6.1.2.1.2.2.1.13.35684352|65|0 +1.3.6.1.2.1.2.2.1.13.35717120|65|0 +1.3.6.1.2.1.2.2.1.13.37781504|65|0 +1.3.6.1.2.1.2.2.1.13.37814272|65|0 +1.3.6.1.2.1.2.2.1.13.37847040|65|0 +1.3.6.1.2.1.2.2.1.13.37879808|65|0 +1.3.6.1.2.1.2.2.1.13.37912576|65|0 +1.3.6.1.2.1.2.2.1.13.37945344|65|0 +1.3.6.1.2.1.2.2.1.13.39878656|65|0 +1.3.6.1.2.1.2.2.1.13.39911424|65|0 +1.3.6.1.2.1.2.2.1.13.41975808|65|0 +1.3.6.1.2.1.2.2.1.13.42008576|65|0 +1.3.6.1.2.1.2.2.1.13.42041344|65|0 +1.3.6.1.2.1.2.2.1.13.42074112|65|0 +1.3.6.1.2.1.2.2.1.13.44072960|65|0 +1.3.6.1.2.1.2.2.1.13.44105728|65|0 +1.3.6.1.2.1.2.2.1.13.46170112|65|0 +1.3.6.1.2.1.2.2.1.13.46202880|65|0 +1.3.6.1.2.1.2.2.1.13.46235648|65|0 +1.3.6.1.2.1.2.2.1.13.46268416|65|0 +1.3.6.1.2.1.2.2.1.13.46301184|65|0 +1.3.6.1.2.1.2.2.1.13.46333952|65|0 +1.3.6.1.2.1.2.2.1.13.46366720|65|0 +1.3.6.1.2.1.2.2.1.13.67141632|65|0 +1.3.6.1.2.1.2.2.1.13.1493172258|65|0 +1.3.6.1.2.1.2.2.1.13.1509949473|65|0 +1.3.6.1.2.1.2.2.1.13.1509949478|65|0 +1.3.6.1.2.1.2.2.1.14.1|65|0 +1.3.6.1.2.1.2.2.1.14.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.131073|65|0 +1.3.6.1.2.1.2.2.1.14.131074|65|0 +1.3.6.1.2.1.2.2.1.14.131075|65|0 +1.3.6.1.2.1.2.2.1.14.35684352|65|0 +1.3.6.1.2.1.2.2.1.14.35717120|65|0 +1.3.6.1.2.1.2.2.1.14.37781504|65|0 +1.3.6.1.2.1.2.2.1.14.37814272|65|0 +1.3.6.1.2.1.2.2.1.14.37847040|65|0 +1.3.6.1.2.1.2.2.1.14.37879808|65|0 +1.3.6.1.2.1.2.2.1.14.37912576|65|0 +1.3.6.1.2.1.2.2.1.14.37945344|65|0 +1.3.6.1.2.1.2.2.1.14.39878656|65|0 +1.3.6.1.2.1.2.2.1.14.39911424|65|0 +1.3.6.1.2.1.2.2.1.14.41975808|65|0 +1.3.6.1.2.1.2.2.1.14.42008576|65|0 +1.3.6.1.2.1.2.2.1.14.42041344|65|0 +1.3.6.1.2.1.2.2.1.14.42074112|65|0 +1.3.6.1.2.1.2.2.1.14.44072960|65|0 +1.3.6.1.2.1.2.2.1.14.44105728|65|0 +1.3.6.1.2.1.2.2.1.14.46170112|65|0 +1.3.6.1.2.1.2.2.1.14.46202880|65|0 +1.3.6.1.2.1.2.2.1.14.46235648|65|0 +1.3.6.1.2.1.2.2.1.14.46268416|65|0 +1.3.6.1.2.1.2.2.1.14.46301184|65|0 +1.3.6.1.2.1.2.2.1.14.46333952|65|0 +1.3.6.1.2.1.2.2.1.14.46366720|65|0 +1.3.6.1.2.1.2.2.1.14.67141632|65|0 +1.3.6.1.2.1.2.2.1.14.1493172258|65|0 +1.3.6.1.2.1.2.2.1.14.1509949473|65|0 +1.3.6.1.2.1.2.2.1.14.1509949478|65|0 +1.3.6.1.2.1.2.2.1.19.1|65|0 +1.3.6.1.2.1.2.2.1.19.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.131073|65|0 +1.3.6.1.2.1.2.2.1.19.131074|65|0 +1.3.6.1.2.1.2.2.1.19.131075|65|0 +1.3.6.1.2.1.2.2.1.19.35684352|65|0 +1.3.6.1.2.1.2.2.1.19.35717120|65|0 +1.3.6.1.2.1.2.2.1.19.37781504|65|0 +1.3.6.1.2.1.2.2.1.19.37814272|65|0 +1.3.6.1.2.1.2.2.1.19.37847040|65|0 +1.3.6.1.2.1.2.2.1.19.37879808|65|0 +1.3.6.1.2.1.2.2.1.19.37912576|65|0 +1.3.6.1.2.1.2.2.1.19.37945344|65|0 +1.3.6.1.2.1.2.2.1.19.39878656|65|0 +1.3.6.1.2.1.2.2.1.19.39911424|65|0 +1.3.6.1.2.1.2.2.1.19.41975808|65|0 +1.3.6.1.2.1.2.2.1.19.42008576|65|0 +1.3.6.1.2.1.2.2.1.19.42041344|65|0 +1.3.6.1.2.1.2.2.1.19.42074112|65|0 +1.3.6.1.2.1.2.2.1.19.44072960|65|0 +1.3.6.1.2.1.2.2.1.19.44105728|65|0 +1.3.6.1.2.1.2.2.1.19.46170112|65|0 +1.3.6.1.2.1.2.2.1.19.46202880|65|0 +1.3.6.1.2.1.2.2.1.19.46235648|65|0 +1.3.6.1.2.1.2.2.1.19.46268416|65|0 +1.3.6.1.2.1.2.2.1.19.46301184|65|0 +1.3.6.1.2.1.2.2.1.19.46333952|65|0 +1.3.6.1.2.1.2.2.1.19.46366720|65|0 +1.3.6.1.2.1.2.2.1.19.67141632|65|0 +1.3.6.1.2.1.2.2.1.19.1493172258|65|0 +1.3.6.1.2.1.2.2.1.19.1509949473|65|0 +1.3.6.1.2.1.2.2.1.19.1509949478|65|0 +1.3.6.1.2.1.2.2.1.20.1|65|0 +1.3.6.1.2.1.2.2.1.20.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.131073|65|0 +1.3.6.1.2.1.2.2.1.20.131074|65|0 +1.3.6.1.2.1.2.2.1.20.131075|65|0 +1.3.6.1.2.1.2.2.1.20.35684352|65|0 +1.3.6.1.2.1.2.2.1.20.35717120|65|0 +1.3.6.1.2.1.2.2.1.20.37781504|65|0 +1.3.6.1.2.1.2.2.1.20.37814272|65|0 +1.3.6.1.2.1.2.2.1.20.37847040|65|0 +1.3.6.1.2.1.2.2.1.20.37879808|65|0 +1.3.6.1.2.1.2.2.1.20.37912576|65|0 +1.3.6.1.2.1.2.2.1.20.37945344|65|0 +1.3.6.1.2.1.2.2.1.20.39878656|65|0 +1.3.6.1.2.1.2.2.1.20.39911424|65|0 +1.3.6.1.2.1.2.2.1.20.41975808|65|0 +1.3.6.1.2.1.2.2.1.20.42008576|65|0 +1.3.6.1.2.1.2.2.1.20.42041344|65|0 +1.3.6.1.2.1.2.2.1.20.42074112|65|0 +1.3.6.1.2.1.2.2.1.20.44072960|65|0 +1.3.6.1.2.1.2.2.1.20.44105728|65|0 +1.3.6.1.2.1.2.2.1.20.46170112|65|0 +1.3.6.1.2.1.2.2.1.20.46202880|65|0 +1.3.6.1.2.1.2.2.1.20.46235648|65|0 +1.3.6.1.2.1.2.2.1.20.46268416|65|0 +1.3.6.1.2.1.2.2.1.20.46301184|65|0 +1.3.6.1.2.1.2.2.1.20.46333952|65|0 +1.3.6.1.2.1.2.2.1.20.46366720|65|0 +1.3.6.1.2.1.2.2.1.20.67141632|65|0 +1.3.6.1.2.1.2.2.1.20.1493172258|65|0 +1.3.6.1.2.1.2.2.1.20.1509949473|65|0 +1.3.6.1.2.1.2.2.1.20.1509949478|65|0 +1.3.6.1.2.1.4.3.0|65|307598 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|0 +1.3.6.1.2.1.4.6.0|65|0 +1.3.6.1.2.1.4.7.0|65|0 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|307597 +1.3.6.1.2.1.4.10.0|65|423546 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|5 +1.3.6.1.2.1.4.14.0|65|0 +1.3.6.1.2.1.4.15.0|65|0 +1.3.6.1.2.1.4.16.0|65|0 +1.3.6.1.2.1.4.17.0|65|0 +1.3.6.1.2.1.4.18.0|65|0 +1.3.6.1.2.1.4.19.0|65|0 +1.3.6.1.2.1.4.20.1.2.0.129.33.12|2|131073 +1.3.6.1.2.1.4.20.1.2.0.133.0.0|2|131075 +1.3.6.1.2.1.4.20.1.2.0.133.33.12|2|131074 +1.3.6.1.2.1.4.20.1.2.172.16.20.30|2|3 +1.3.6.1.2.1.4.20.1.2.172.16.38.75|2|1 +1.3.6.1.2.1.4.20.1.3.0.129.33.12|64|255.255.255.254 +1.3.6.1.2.1.4.20.1.3.0.133.0.0|64|255.255.255.254 +1.3.6.1.2.1.4.20.1.3.0.133.33.12|64|255.255.255.254 +1.3.6.1.2.1.4.20.1.3.172.16.20.30|64|255.255.255.252 +1.3.6.1.2.1.4.20.1.3.172.16.38.75|64|255.255.255.255 +1.3.6.1.2.1.4.22.1.2.1.172.16.38.75|4x|CC66B20A6E45 +1.3.6.1.2.1.4.22.1.2.3.172.16.20.30|4x|CC66B20A6E49 +1.3.6.1.2.1.4.22.1.2.131073.0.129.33.12|4x|000000010101 +1.3.6.1.2.1.4.22.1.2.131073.0.129.33.13|4x|000000020202 +1.3.6.1.2.1.4.22.1.2.131074.0.133.33.12|4x|000000010101 +1.3.6.1.2.1.4.22.1.2.131074.0.133.33.13|4x|000000020202 +1.3.6.1.2.1.4.22.1.2.131075.0.133.0.0|4x|000000010101 +1.3.6.1.2.1.4.22.1.2.131075.0.133.0.1|4x|000000020202 +1.3.6.1.2.1.4.24.3.0|66|8 +1.3.6.1.2.1.4.31.1.1.3.1|65|307673 +1.3.6.1.2.1.4.31.1.1.3.2|65|0 +1.3.6.1.2.1.4.31.1.1.4.1|70|307673 +1.3.6.1.2.1.4.31.1.1.4.2|70|0 +1.3.6.1.2.1.4.31.1.1.5.1|65|26057192 +1.3.6.1.2.1.4.31.1.1.5.2|65|0 +1.3.6.1.2.1.4.31.1.1.6.1|70|26057192 +1.3.6.1.2.1.4.31.1.1.6.2|70|0 +1.3.6.1.2.1.4.31.1.1.7.1|65|0 +1.3.6.1.2.1.4.31.1.1.7.2|65|0 +1.3.6.1.2.1.4.31.1.1.8.1|65|5 +1.3.6.1.2.1.4.31.1.1.8.2|65|0 +1.3.6.1.2.1.4.31.1.1.9.1|65|0 +1.3.6.1.2.1.4.31.1.1.9.2|65|0 +1.3.6.1.2.1.4.31.1.1.10.1|65|0 +1.3.6.1.2.1.4.31.1.1.10.2|65|0 +1.3.6.1.2.1.4.31.1.1.11.1|65|0 +1.3.6.1.2.1.4.31.1.1.11.2|65|0 +1.3.6.1.2.1.4.31.1.1.12.1|65|0 +1.3.6.1.2.1.4.31.1.1.12.2|65|0 +1.3.6.1.2.1.4.31.1.1.13.1|70|0 +1.3.6.1.2.1.4.31.1.1.13.2|70|0 +1.3.6.1.2.1.4.31.1.1.14.1|65|0 +1.3.6.1.2.1.4.31.1.1.14.2|65|0 +1.3.6.1.2.1.4.31.1.1.15.1|65|0 +1.3.6.1.2.1.4.31.1.1.15.2|65|0 +1.3.6.1.2.1.4.31.1.1.16.1|65|0 +1.3.6.1.2.1.4.31.1.1.16.2|65|0 +1.3.6.1.2.1.4.31.1.1.17.1|65|0 +1.3.6.1.2.1.4.31.1.1.17.2|65|0 +1.3.6.1.2.1.4.31.1.1.18.1|65|307676 +1.3.6.1.2.1.4.31.1.1.18.2|65|0 +1.3.6.1.2.1.4.31.1.1.19.1|70|307676 +1.3.6.1.2.1.4.31.1.1.19.2|70|0 +1.3.6.1.2.1.4.31.1.1.20.1|65|423623 +1.3.6.1.2.1.4.31.1.1.20.2|65|0 +1.3.6.1.2.1.4.31.1.1.21.1|70|423623 +1.3.6.1.2.1.4.31.1.1.21.2|70|0 +1.3.6.1.2.1.4.31.1.1.22.1|65|0 +1.3.6.1.2.1.4.31.1.1.22.2|65|0 +1.3.6.1.2.1.4.31.1.1.23.1|65|0 +1.3.6.1.2.1.4.31.1.1.23.2|65|0 +1.3.6.1.2.1.4.31.1.1.24.1|70|0 +1.3.6.1.2.1.4.31.1.1.24.2|70|0 +1.3.6.1.2.1.4.31.1.1.25.1|65|0 +1.3.6.1.2.1.4.31.1.1.25.2|65|0 +1.3.6.1.2.1.4.31.1.1.26.1|65|0 +1.3.6.1.2.1.4.31.1.1.26.2|65|0 +1.3.6.1.2.1.4.31.1.1.27.1|65|0 +1.3.6.1.2.1.4.31.1.1.27.2|65|0 +1.3.6.1.2.1.4.31.1.1.28.1|65|0 +1.3.6.1.2.1.4.31.1.1.28.2|65|0 +1.3.6.1.2.1.4.31.1.1.29.1|65|0 +1.3.6.1.2.1.4.31.1.1.29.2|65|0 +1.3.6.1.2.1.4.31.1.1.30.1|65|0 +1.3.6.1.2.1.4.31.1.1.30.2|65|0 +1.3.6.1.2.1.4.31.1.1.31.1|70|0 +1.3.6.1.2.1.4.31.1.1.31.2|70|0 +1.3.6.1.2.1.4.31.1.1.32.1|65|124707504 +1.3.6.1.2.1.4.31.1.1.32.2|65|0 +1.3.6.1.2.1.4.31.1.1.33.1|70|124707748 +1.3.6.1.2.1.4.31.1.1.33.2|70|0 +1.3.6.1.2.1.4.31.1.1.34.1|65|0 +1.3.6.1.2.1.4.31.1.1.34.2|65|0 +1.3.6.1.2.1.4.31.1.1.35.1|70|0 +1.3.6.1.2.1.4.31.1.1.35.2|70|0 +1.3.6.1.2.1.4.31.1.1.36.1|65|0 +1.3.6.1.2.1.4.31.1.1.36.2|65|0 +1.3.6.1.2.1.4.31.1.1.37.1|70|0 +1.3.6.1.2.1.4.31.1.1.37.2|70|0 +1.3.6.1.2.1.4.31.1.1.38.1|65|0 +1.3.6.1.2.1.4.31.1.1.38.2|65|0 +1.3.6.1.2.1.4.31.1.1.39.1|70|0 +1.3.6.1.2.1.4.31.1.1.39.2|70|0 +1.3.6.1.2.1.4.31.1.1.40.1|65|0 +1.3.6.1.2.1.4.31.1.1.40.2|65|0 +1.3.6.1.2.1.4.31.1.1.41.1|70|0 +1.3.6.1.2.1.4.31.1.1.41.2|70|0 +1.3.6.1.2.1.4.31.1.1.42.1|65|0 +1.3.6.1.2.1.4.31.1.1.42.2|65|0 +1.3.6.1.2.1.4.31.1.1.43.1|70|0 +1.3.6.1.2.1.4.31.1.1.43.2|70|0 +1.3.6.1.2.1.4.31.1.1.44.1|65|0 +1.3.6.1.2.1.4.31.1.1.44.2|65|0 +1.3.6.1.2.1.4.31.1.1.45.1|70|0 +1.3.6.1.2.1.4.31.1.1.45.2|70|0 +1.3.6.1.2.1.4.31.1.1.46.1|67|0 +1.3.6.1.2.1.4.31.1.1.46.2|67|0 +1.3.6.1.2.1.4.31.1.1.47.1|66|1 +1.3.6.1.2.1.4.31.1.1.47.2|66|1 +1.3.6.1.2.1.4.35.1.4.1.1.4.172.16.38.75|4x|CC66B20A6E45 +1.3.6.1.2.1.4.35.1.4.3.1.4.172.16.20.30|4x|CC66B20A6E49 +1.3.6.1.2.1.4.35.1.4.131073.1.4.0.129.33.12|4x|000000010101 +1.3.6.1.2.1.4.35.1.4.131073.1.4.0.129.33.13|4x|000000020202 +1.3.6.1.2.1.4.35.1.4.131074.1.4.0.133.33.12|4x|000000010101 +1.3.6.1.2.1.4.35.1.4.131074.1.4.0.133.33.13|4x|000000020202 +1.3.6.1.2.1.4.35.1.4.131075.1.4.0.133.0.0|4x|000000010101 +1.3.6.1.2.1.4.35.1.4.131075.1.4.0.133.0.1|4x|000000020202 +1.3.6.1.2.1.5.1.0|65|6977 +1.3.6.1.2.1.5.2.0|65|0 +1.3.6.1.2.1.5.3.0|65|176 +1.3.6.1.2.1.5.4.0|65|0 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|6796 +1.3.6.1.2.1.5.9.0|65|5 +1.3.6.1.2.1.5.10.0|65|0 +1.3.6.1.2.1.5.11.0|65|0 +1.3.6.1.2.1.5.12.0|65|0 +1.3.6.1.2.1.5.13.0|65|0 +1.3.6.1.2.1.5.14.0|65|6803 +1.3.6.1.2.1.5.15.0|65|0 +1.3.6.1.2.1.5.16.0|65|2 +1.3.6.1.2.1.5.17.0|65|0 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|5 +1.3.6.1.2.1.5.22.0|65|6796 +1.3.6.1.2.1.5.23.0|65|0 +1.3.6.1.2.1.5.24.0|65|0 +1.3.6.1.2.1.5.25.0|65|0 +1.3.6.1.2.1.5.26.0|65|0 +1.3.6.1.2.1.6.5.0|65|42 +1.3.6.1.2.1.6.6.0|65|67 +1.3.6.1.2.1.6.7.0|65|0 +1.3.6.1.2.1.6.8.0|65|102 +1.3.6.1.2.1.6.9.0|66|0 +1.3.6.1.2.1.6.10.0|65|182925 +1.3.6.1.2.1.6.11.0|65|257791 +1.3.6.1.2.1.6.12.0|65|4 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|25 +1.3.6.1.2.1.7.1.0|65|291933 +1.3.6.1.2.1.7.2.0|65|1 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|291955 +1.3.6.1.2.1.10.7.2.1.19.37781504|2|3 +1.3.6.1.2.1.10.7.2.1.19.37814272|2|1 +1.3.6.1.2.1.10.7.2.1.19.37847040|2|1 +1.3.6.1.2.1.10.7.2.1.19.37879808|2|1 +1.3.6.1.2.1.10.7.2.1.19.37912576|2|1 +1.3.6.1.2.1.10.7.2.1.19.37945344|2|1 +1.3.6.1.2.1.10.7.2.1.19.67141632|2|3 +1.3.6.1.2.1.11.1.0|65|288121 +1.3.6.1.2.1.11.3.0|65|0 +1.3.6.1.2.1.11.4.0|65|0 +1.3.6.1.2.1.11.5.0|65|0 +1.3.6.1.2.1.11.6.0|65|0 +1.3.6.1.2.1.11.31.0|65|0 +1.3.6.1.2.1.11.32.0|65|0 +1.3.6.1.2.1.16.1.1.1.1.37781504|2|37781504 +1.3.6.1.2.1.31.1.1.1.1.1|4|system +1.3.6.1.2.1.31.1.1.1.1.2|4|LTE +1.3.6.1.2.1.31.1.1.1.1.3|4|PRODLAB_SAR_01 +1.3.6.1.2.1.31.1.1.1.1.131073|4|_tmnx_nat-network_1/6 +1.3.6.1.2.1.31.1.1.1.1.131074|4|_tmnx_reassembly-network_1/6 +1.3.6.1.2.1.31.1.1.1.1.131075|4|_tmnx_reassembly-inside +1.3.6.1.2.1.31.1.1.1.1.35684352|4|1/1/1 +1.3.6.1.2.1.31.1.1.1.1.35717120|4|1/1/2 +1.3.6.1.2.1.31.1.1.1.1.37781504|4|1/2/1 +1.3.6.1.2.1.31.1.1.1.1.37814272|4|1/2/2 +1.3.6.1.2.1.31.1.1.1.1.37847040|4|1/2/3 +1.3.6.1.2.1.31.1.1.1.1.37879808|4|1/2/4 +1.3.6.1.2.1.31.1.1.1.1.37912576|4|1/2/5 +1.3.6.1.2.1.31.1.1.1.1.37945344|4|1/2/6 +1.3.6.1.2.1.31.1.1.1.1.39878656|4|1/3/1 +1.3.6.1.2.1.31.1.1.1.1.39911424|4|1/3/2 +1.3.6.1.2.1.31.1.1.1.1.41975808|4|1/4/1 +1.3.6.1.2.1.31.1.1.1.1.42008576|4|1/4/2 +1.3.6.1.2.1.31.1.1.1.1.42041344|4|1/4/3 +1.3.6.1.2.1.31.1.1.1.1.42074112|4|1/4/4 +1.3.6.1.2.1.31.1.1.1.1.44072960|4|1/5/1 +1.3.6.1.2.1.31.1.1.1.1.44105728|4|1/5/2 +1.3.6.1.2.1.31.1.1.1.1.46170112|4|1/6/nat-in-ip +1.3.6.1.2.1.31.1.1.1.1.46202880|4|1/6/nat-out-ip +1.3.6.1.2.1.31.1.1.1.1.46235648|4|1/6/nat-in-l2 +1.3.6.1.2.1.31.1.1.1.1.46268416|4|1/6/lns-net +1.3.6.1.2.1.31.1.1.1.1.46301184|4|1/6/lns-esm +1.3.6.1.2.1.31.1.1.1.1.46333952|4|1/6/nat-in-ds +1.3.6.1.2.1.31.1.1.1.1.46366720|4|1/6/lo-gre +1.3.6.1.2.1.31.1.1.1.1.67141632|4|A/1 +1.3.6.1.2.1.31.1.1.1.1.1493172258|4|bbg-1.nat-out-ip +1.3.6.1.2.1.31.1.1.1.1.1509949473|4|bbg-1.nat-in-ip +1.3.6.1.2.1.31.1.1.1.1.1509949478|4|bbg-1.nat-in-ds +1.3.6.1.2.1.31.1.1.1.2.1|65|0 +1.3.6.1.2.1.31.1.1.1.2.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.131073|65|0 +1.3.6.1.2.1.31.1.1.1.2.131074|65|0 +1.3.6.1.2.1.31.1.1.1.2.131075|65|0 +1.3.6.1.2.1.31.1.1.1.2.35684352|65|0 +1.3.6.1.2.1.31.1.1.1.2.35717120|65|0 +1.3.6.1.2.1.31.1.1.1.2.37781504|65|7252 +1.3.6.1.2.1.31.1.1.1.2.37814272|65|0 +1.3.6.1.2.1.31.1.1.1.2.37847040|65|0 +1.3.6.1.2.1.31.1.1.1.2.37879808|65|0 +1.3.6.1.2.1.31.1.1.1.2.37912576|65|0 +1.3.6.1.2.1.31.1.1.1.2.37945344|65|0 +1.3.6.1.2.1.31.1.1.1.2.39878656|65|0 +1.3.6.1.2.1.31.1.1.1.2.39911424|65|0 +1.3.6.1.2.1.31.1.1.1.2.41975808|65|0 +1.3.6.1.2.1.31.1.1.1.2.42008576|65|0 +1.3.6.1.2.1.31.1.1.1.2.42041344|65|0 +1.3.6.1.2.1.31.1.1.1.2.42074112|65|0 +1.3.6.1.2.1.31.1.1.1.2.44072960|65|0 +1.3.6.1.2.1.31.1.1.1.2.44105728|65|0 +1.3.6.1.2.1.31.1.1.1.2.46170112|65|0 +1.3.6.1.2.1.31.1.1.1.2.46202880|65|0 +1.3.6.1.2.1.31.1.1.1.2.46235648|65|0 +1.3.6.1.2.1.31.1.1.1.2.46268416|65|0 +1.3.6.1.2.1.31.1.1.1.2.46301184|65|0 +1.3.6.1.2.1.31.1.1.1.2.46333952|65|0 +1.3.6.1.2.1.31.1.1.1.2.46366720|65|0 +1.3.6.1.2.1.31.1.1.1.2.67141632|65|0 +1.3.6.1.2.1.31.1.1.1.2.1493172258|65|0 +1.3.6.1.2.1.31.1.1.1.2.1509949473|65|0 +1.3.6.1.2.1.31.1.1.1.2.1509949478|65|0 +1.3.6.1.2.1.31.1.1.1.3.1|65|0 +1.3.6.1.2.1.31.1.1.1.3.2|65|1 +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.131073|65|0 +1.3.6.1.2.1.31.1.1.1.3.131074|65|0 +1.3.6.1.2.1.31.1.1.1.3.131075|65|0 +1.3.6.1.2.1.31.1.1.1.3.35684352|65|0 +1.3.6.1.2.1.31.1.1.1.3.35717120|65|0 +1.3.6.1.2.1.31.1.1.1.3.37781504|65|503 +1.3.6.1.2.1.31.1.1.1.3.37814272|65|0 +1.3.6.1.2.1.31.1.1.1.3.37847040|65|0 +1.3.6.1.2.1.31.1.1.1.3.37879808|65|0 +1.3.6.1.2.1.31.1.1.1.3.37912576|65|0 +1.3.6.1.2.1.31.1.1.1.3.37945344|65|0 +1.3.6.1.2.1.31.1.1.1.3.39878656|65|0 +1.3.6.1.2.1.31.1.1.1.3.39911424|65|0 +1.3.6.1.2.1.31.1.1.1.3.41975808|65|0 +1.3.6.1.2.1.31.1.1.1.3.42008576|65|0 +1.3.6.1.2.1.31.1.1.1.3.42041344|65|0 +1.3.6.1.2.1.31.1.1.1.3.42074112|65|0 +1.3.6.1.2.1.31.1.1.1.3.44072960|65|0 +1.3.6.1.2.1.31.1.1.1.3.44105728|65|0 +1.3.6.1.2.1.31.1.1.1.3.46170112|65|0 +1.3.6.1.2.1.31.1.1.1.3.46202880|65|0 +1.3.6.1.2.1.31.1.1.1.3.46235648|65|0 +1.3.6.1.2.1.31.1.1.1.3.46268416|65|0 +1.3.6.1.2.1.31.1.1.1.3.46301184|65|0 +1.3.6.1.2.1.31.1.1.1.3.46333952|65|0 +1.3.6.1.2.1.31.1.1.1.3.46366720|65|0 +1.3.6.1.2.1.31.1.1.1.3.67141632|65|0 +1.3.6.1.2.1.31.1.1.1.3.1493172258|65|0 +1.3.6.1.2.1.31.1.1.1.3.1509949473|65|0 +1.3.6.1.2.1.31.1.1.1.3.1509949478|65|0 +1.3.6.1.2.1.31.1.1.1.4.1|65|0 +1.3.6.1.2.1.31.1.1.1.4.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.131073|65|0 +1.3.6.1.2.1.31.1.1.1.4.131074|65|0 +1.3.6.1.2.1.31.1.1.1.4.131075|65|0 +1.3.6.1.2.1.31.1.1.1.4.35684352|65|0 +1.3.6.1.2.1.31.1.1.1.4.35717120|65|0 +1.3.6.1.2.1.31.1.1.1.4.37781504|65|0 +1.3.6.1.2.1.31.1.1.1.4.37814272|65|0 +1.3.6.1.2.1.31.1.1.1.4.37847040|65|0 +1.3.6.1.2.1.31.1.1.1.4.37879808|65|0 +1.3.6.1.2.1.31.1.1.1.4.37912576|65|0 +1.3.6.1.2.1.31.1.1.1.4.37945344|65|0 +1.3.6.1.2.1.31.1.1.1.4.39878656|65|0 +1.3.6.1.2.1.31.1.1.1.4.39911424|65|0 +1.3.6.1.2.1.31.1.1.1.4.41975808|65|0 +1.3.6.1.2.1.31.1.1.1.4.42008576|65|0 +1.3.6.1.2.1.31.1.1.1.4.42041344|65|0 +1.3.6.1.2.1.31.1.1.1.4.42074112|65|0 +1.3.6.1.2.1.31.1.1.1.4.44072960|65|0 +1.3.6.1.2.1.31.1.1.1.4.44105728|65|0 +1.3.6.1.2.1.31.1.1.1.4.46170112|65|0 +1.3.6.1.2.1.31.1.1.1.4.46202880|65|0 +1.3.6.1.2.1.31.1.1.1.4.46235648|65|0 +1.3.6.1.2.1.31.1.1.1.4.46268416|65|0 +1.3.6.1.2.1.31.1.1.1.4.46301184|65|0 +1.3.6.1.2.1.31.1.1.1.4.46333952|65|0 +1.3.6.1.2.1.31.1.1.1.4.46366720|65|0 +1.3.6.1.2.1.31.1.1.1.4.67141632|65|0 +1.3.6.1.2.1.31.1.1.1.4.1493172258|65|0 +1.3.6.1.2.1.31.1.1.1.4.1509949473|65|0 +1.3.6.1.2.1.31.1.1.1.4.1509949478|65|0 +1.3.6.1.2.1.31.1.1.1.5.1|65|0 +1.3.6.1.2.1.31.1.1.1.5.2|65|0 +1.3.6.1.2.1.31.1.1.1.5.3|65|0 +1.3.6.1.2.1.31.1.1.1.5.131073|65|0 +1.3.6.1.2.1.31.1.1.1.5.131074|65|0 +1.3.6.1.2.1.31.1.1.1.5.131075|65|0 +1.3.6.1.2.1.31.1.1.1.5.35684352|65|0 +1.3.6.1.2.1.31.1.1.1.5.35717120|65|0 +1.3.6.1.2.1.31.1.1.1.5.37781504|65|4 +1.3.6.1.2.1.31.1.1.1.5.37814272|65|0 +1.3.6.1.2.1.31.1.1.1.5.37847040|65|0 +1.3.6.1.2.1.31.1.1.1.5.37879808|65|0 +1.3.6.1.2.1.31.1.1.1.5.37912576|65|0 +1.3.6.1.2.1.31.1.1.1.5.37945344|65|0 +1.3.6.1.2.1.31.1.1.1.5.39878656|65|0 +1.3.6.1.2.1.31.1.1.1.5.39911424|65|0 +1.3.6.1.2.1.31.1.1.1.5.41975808|65|0 +1.3.6.1.2.1.31.1.1.1.5.42008576|65|0 +1.3.6.1.2.1.31.1.1.1.5.42041344|65|0 +1.3.6.1.2.1.31.1.1.1.5.42074112|65|0 +1.3.6.1.2.1.31.1.1.1.5.44072960|65|0 +1.3.6.1.2.1.31.1.1.1.5.44105728|65|0 +1.3.6.1.2.1.31.1.1.1.5.46170112|65|0 +1.3.6.1.2.1.31.1.1.1.5.46202880|65|0 +1.3.6.1.2.1.31.1.1.1.5.46235648|65|0 +1.3.6.1.2.1.31.1.1.1.5.46268416|65|0 +1.3.6.1.2.1.31.1.1.1.5.46301184|65|0 +1.3.6.1.2.1.31.1.1.1.5.46333952|65|0 +1.3.6.1.2.1.31.1.1.1.5.46366720|65|0 +1.3.6.1.2.1.31.1.1.1.5.67141632|65|0 +1.3.6.1.2.1.31.1.1.1.5.1493172258|65|0 +1.3.6.1.2.1.31.1.1.1.5.1509949473|65|0 +1.3.6.1.2.1.31.1.1.1.5.1509949478|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|0 +1.3.6.1.2.1.31.1.1.1.6.2|70|30631178 +1.3.6.1.2.1.31.1.1.1.6.3|70|370 +1.3.6.1.2.1.31.1.1.1.6.131073|70|0 +1.3.6.1.2.1.31.1.1.1.6.131074|70|0 +1.3.6.1.2.1.31.1.1.1.6.131075|70|0 +1.3.6.1.2.1.31.1.1.1.6.35684352|70|26784620 +1.3.6.1.2.1.31.1.1.1.6.35717120|70|0 +1.3.6.1.2.1.31.1.1.1.6.37781504|70|6129787 +1.3.6.1.2.1.31.1.1.1.6.37814272|70|0 +1.3.6.1.2.1.31.1.1.1.6.37847040|70|0 +1.3.6.1.2.1.31.1.1.1.6.37879808|70|0 +1.3.6.1.2.1.31.1.1.1.6.37912576|70|0 +1.3.6.1.2.1.31.1.1.1.6.37945344|70|0 +1.3.6.1.2.1.31.1.1.1.6.39878656|70|0 +1.3.6.1.2.1.31.1.1.1.6.39911424|70|0 +1.3.6.1.2.1.31.1.1.1.6.41975808|70|0 +1.3.6.1.2.1.31.1.1.1.6.42008576|70|0 +1.3.6.1.2.1.31.1.1.1.6.42041344|70|0 +1.3.6.1.2.1.31.1.1.1.6.42074112|70|0 +1.3.6.1.2.1.31.1.1.1.6.44072960|70|0 +1.3.6.1.2.1.31.1.1.1.6.44105728|70|0 +1.3.6.1.2.1.31.1.1.1.6.46170112|70|0 +1.3.6.1.2.1.31.1.1.1.6.46202880|70|0 +1.3.6.1.2.1.31.1.1.1.6.46235648|70|0 +1.3.6.1.2.1.31.1.1.1.6.46268416|70|0 +1.3.6.1.2.1.31.1.1.1.6.46301184|70|0 +1.3.6.1.2.1.31.1.1.1.6.46333952|70|0 +1.3.6.1.2.1.31.1.1.1.6.46366720|70|0 +1.3.6.1.2.1.31.1.1.1.6.67141632|70|0 +1.3.6.1.2.1.31.1.1.1.6.1493172258|70|0 +1.3.6.1.2.1.31.1.1.1.6.1509949473|70|0 +1.3.6.1.2.1.31.1.1.1.6.1509949478|70|0 +1.3.6.1.2.1.31.1.1.1.7.1|70|0 +1.3.6.1.2.1.31.1.1.1.7.2|70|313969 +1.3.6.1.2.1.31.1.1.1.7.3|70|4 +1.3.6.1.2.1.31.1.1.1.7.131073|70|0 +1.3.6.1.2.1.31.1.1.1.7.131074|70|0 +1.3.6.1.2.1.31.1.1.1.7.131075|70|0 +1.3.6.1.2.1.31.1.1.1.7.35684352|70|319737 +1.3.6.1.2.1.31.1.1.1.7.35717120|70|0 +1.3.6.1.2.1.31.1.1.1.7.37781504|70|5 +1.3.6.1.2.1.31.1.1.1.7.37814272|70|0 +1.3.6.1.2.1.31.1.1.1.7.37847040|70|0 +1.3.6.1.2.1.31.1.1.1.7.37879808|70|0 +1.3.6.1.2.1.31.1.1.1.7.37912576|70|0 +1.3.6.1.2.1.31.1.1.1.7.37945344|70|0 +1.3.6.1.2.1.31.1.1.1.7.39878656|70|0 +1.3.6.1.2.1.31.1.1.1.7.39911424|70|0 +1.3.6.1.2.1.31.1.1.1.7.41975808|70|0 +1.3.6.1.2.1.31.1.1.1.7.42008576|70|0 +1.3.6.1.2.1.31.1.1.1.7.42041344|70|0 +1.3.6.1.2.1.31.1.1.1.7.42074112|70|0 +1.3.6.1.2.1.31.1.1.1.7.44072960|70|0 +1.3.6.1.2.1.31.1.1.1.7.44105728|70|0 +1.3.6.1.2.1.31.1.1.1.7.46170112|70|0 +1.3.6.1.2.1.31.1.1.1.7.46202880|70|0 +1.3.6.1.2.1.31.1.1.1.7.46235648|70|0 +1.3.6.1.2.1.31.1.1.1.7.46268416|70|0 +1.3.6.1.2.1.31.1.1.1.7.46301184|70|0 +1.3.6.1.2.1.31.1.1.1.7.46333952|70|0 +1.3.6.1.2.1.31.1.1.1.7.46366720|70|0 +1.3.6.1.2.1.31.1.1.1.7.67141632|70|0 +1.3.6.1.2.1.31.1.1.1.7.1493172258|70|0 +1.3.6.1.2.1.31.1.1.1.7.1509949473|70|0 +1.3.6.1.2.1.31.1.1.1.7.1509949478|70|0 +1.3.6.1.2.1.31.1.1.1.8.1|70|0 +1.3.6.1.2.1.31.1.1.1.8.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.131073|70|0 +1.3.6.1.2.1.31.1.1.1.8.131074|70|0 +1.3.6.1.2.1.31.1.1.1.8.131075|70|0 +1.3.6.1.2.1.31.1.1.1.8.35684352|70|0 +1.3.6.1.2.1.31.1.1.1.8.35717120|70|0 +1.3.6.1.2.1.31.1.1.1.8.37781504|70|7252 +1.3.6.1.2.1.31.1.1.1.8.37814272|70|0 +1.3.6.1.2.1.31.1.1.1.8.37847040|70|0 +1.3.6.1.2.1.31.1.1.1.8.37879808|70|0 +1.3.6.1.2.1.31.1.1.1.8.37912576|70|0 +1.3.6.1.2.1.31.1.1.1.8.37945344|70|0 +1.3.6.1.2.1.31.1.1.1.8.39878656|70|0 +1.3.6.1.2.1.31.1.1.1.8.39911424|70|0 +1.3.6.1.2.1.31.1.1.1.8.41975808|70|0 +1.3.6.1.2.1.31.1.1.1.8.42008576|70|0 +1.3.6.1.2.1.31.1.1.1.8.42041344|70|0 +1.3.6.1.2.1.31.1.1.1.8.42074112|70|0 +1.3.6.1.2.1.31.1.1.1.8.44072960|70|0 +1.3.6.1.2.1.31.1.1.1.8.44105728|70|0 +1.3.6.1.2.1.31.1.1.1.8.46170112|70|0 +1.3.6.1.2.1.31.1.1.1.8.46202880|70|0 +1.3.6.1.2.1.31.1.1.1.8.46235648|70|0 +1.3.6.1.2.1.31.1.1.1.8.46268416|70|0 +1.3.6.1.2.1.31.1.1.1.8.46301184|70|0 +1.3.6.1.2.1.31.1.1.1.8.46333952|70|0 +1.3.6.1.2.1.31.1.1.1.8.46366720|70|0 +1.3.6.1.2.1.31.1.1.1.8.67141632|70|0 +1.3.6.1.2.1.31.1.1.1.8.1493172258|70|0 +1.3.6.1.2.1.31.1.1.1.8.1509949473|70|0 +1.3.6.1.2.1.31.1.1.1.8.1509949478|70|0 +1.3.6.1.2.1.31.1.1.1.9.1|70|0 +1.3.6.1.2.1.31.1.1.1.9.2|70|1 +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.131073|70|0 +1.3.6.1.2.1.31.1.1.1.9.131074|70|0 +1.3.6.1.2.1.31.1.1.1.9.131075|70|0 +1.3.6.1.2.1.31.1.1.1.9.35684352|70|0 +1.3.6.1.2.1.31.1.1.1.9.35717120|70|0 +1.3.6.1.2.1.31.1.1.1.9.37781504|70|503 +1.3.6.1.2.1.31.1.1.1.9.37814272|70|0 +1.3.6.1.2.1.31.1.1.1.9.37847040|70|0 +1.3.6.1.2.1.31.1.1.1.9.37879808|70|0 +1.3.6.1.2.1.31.1.1.1.9.37912576|70|0 +1.3.6.1.2.1.31.1.1.1.9.37945344|70|0 +1.3.6.1.2.1.31.1.1.1.9.39878656|70|0 +1.3.6.1.2.1.31.1.1.1.9.39911424|70|0 +1.3.6.1.2.1.31.1.1.1.9.41975808|70|0 +1.3.6.1.2.1.31.1.1.1.9.42008576|70|0 +1.3.6.1.2.1.31.1.1.1.9.42041344|70|0 +1.3.6.1.2.1.31.1.1.1.9.42074112|70|0 +1.3.6.1.2.1.31.1.1.1.9.44072960|70|0 +1.3.6.1.2.1.31.1.1.1.9.44105728|70|0 +1.3.6.1.2.1.31.1.1.1.9.46170112|70|0 +1.3.6.1.2.1.31.1.1.1.9.46202880|70|0 +1.3.6.1.2.1.31.1.1.1.9.46235648|70|0 +1.3.6.1.2.1.31.1.1.1.9.46268416|70|0 +1.3.6.1.2.1.31.1.1.1.9.46301184|70|0 +1.3.6.1.2.1.31.1.1.1.9.46333952|70|0 +1.3.6.1.2.1.31.1.1.1.9.46366720|70|0 +1.3.6.1.2.1.31.1.1.1.9.67141632|70|0 +1.3.6.1.2.1.31.1.1.1.9.1493172258|70|0 +1.3.6.1.2.1.31.1.1.1.9.1509949473|70|0 +1.3.6.1.2.1.31.1.1.1.9.1509949478|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|0 +1.3.6.1.2.1.31.1.1.1.10.2|70|132325456 +1.3.6.1.2.1.31.1.1.1.10.3|70|318 +1.3.6.1.2.1.31.1.1.1.10.131073|70|0 +1.3.6.1.2.1.31.1.1.1.10.131074|70|0 +1.3.6.1.2.1.31.1.1.1.10.131075|70|0 +1.3.6.1.2.1.31.1.1.1.10.35684352|70|124712933 +1.3.6.1.2.1.31.1.1.1.10.35717120|70|0 +1.3.6.1.2.1.31.1.1.1.10.37781504|70|590 +1.3.6.1.2.1.31.1.1.1.10.37814272|70|0 +1.3.6.1.2.1.31.1.1.1.10.37847040|70|0 +1.3.6.1.2.1.31.1.1.1.10.37879808|70|0 +1.3.6.1.2.1.31.1.1.1.10.37912576|70|0 +1.3.6.1.2.1.31.1.1.1.10.37945344|70|0 +1.3.6.1.2.1.31.1.1.1.10.39878656|70|0 +1.3.6.1.2.1.31.1.1.1.10.39911424|70|0 +1.3.6.1.2.1.31.1.1.1.10.41975808|70|0 +1.3.6.1.2.1.31.1.1.1.10.42008576|70|0 +1.3.6.1.2.1.31.1.1.1.10.42041344|70|0 +1.3.6.1.2.1.31.1.1.1.10.42074112|70|0 +1.3.6.1.2.1.31.1.1.1.10.44072960|70|0 +1.3.6.1.2.1.31.1.1.1.10.44105728|70|0 +1.3.6.1.2.1.31.1.1.1.10.46170112|70|0 +1.3.6.1.2.1.31.1.1.1.10.46202880|70|0 +1.3.6.1.2.1.31.1.1.1.10.46235648|70|0 +1.3.6.1.2.1.31.1.1.1.10.46268416|70|0 +1.3.6.1.2.1.31.1.1.1.10.46301184|70|0 +1.3.6.1.2.1.31.1.1.1.10.46333952|70|0 +1.3.6.1.2.1.31.1.1.1.10.46366720|70|0 +1.3.6.1.2.1.31.1.1.1.10.67141632|70|0 +1.3.6.1.2.1.31.1.1.1.10.1493172258|70|0 +1.3.6.1.2.1.31.1.1.1.10.1509949473|70|0 +1.3.6.1.2.1.31.1.1.1.10.1509949478|70|0 +1.3.6.1.2.1.31.1.1.1.11.1|70|0 +1.3.6.1.2.1.31.1.1.1.11.2|70|423582 +1.3.6.1.2.1.31.1.1.1.11.3|70|3 +1.3.6.1.2.1.31.1.1.1.11.131073|70|0 +1.3.6.1.2.1.31.1.1.1.11.131074|70|0 +1.3.6.1.2.1.31.1.1.1.11.131075|70|0 +1.3.6.1.2.1.31.1.1.1.11.35684352|70|423755 +1.3.6.1.2.1.31.1.1.1.11.35717120|70|0 +1.3.6.1.2.1.31.1.1.1.11.37781504|70|3 +1.3.6.1.2.1.31.1.1.1.11.37814272|70|0 +1.3.6.1.2.1.31.1.1.1.11.37847040|70|0 +1.3.6.1.2.1.31.1.1.1.11.37879808|70|0 +1.3.6.1.2.1.31.1.1.1.11.37912576|70|0 +1.3.6.1.2.1.31.1.1.1.11.37945344|70|0 +1.3.6.1.2.1.31.1.1.1.11.39878656|70|0 +1.3.6.1.2.1.31.1.1.1.11.39911424|70|0 +1.3.6.1.2.1.31.1.1.1.11.41975808|70|0 +1.3.6.1.2.1.31.1.1.1.11.42008576|70|0 +1.3.6.1.2.1.31.1.1.1.11.42041344|70|0 +1.3.6.1.2.1.31.1.1.1.11.42074112|70|0 +1.3.6.1.2.1.31.1.1.1.11.44072960|70|0 +1.3.6.1.2.1.31.1.1.1.11.44105728|70|0 +1.3.6.1.2.1.31.1.1.1.11.46170112|70|0 +1.3.6.1.2.1.31.1.1.1.11.46202880|70|0 +1.3.6.1.2.1.31.1.1.1.11.46235648|70|0 +1.3.6.1.2.1.31.1.1.1.11.46268416|70|0 +1.3.6.1.2.1.31.1.1.1.11.46301184|70|0 +1.3.6.1.2.1.31.1.1.1.11.46333952|70|0 +1.3.6.1.2.1.31.1.1.1.11.46366720|70|0 +1.3.6.1.2.1.31.1.1.1.11.67141632|70|0 +1.3.6.1.2.1.31.1.1.1.11.1493172258|70|0 +1.3.6.1.2.1.31.1.1.1.11.1509949473|70|0 +1.3.6.1.2.1.31.1.1.1.11.1509949478|70|0 +1.3.6.1.2.1.31.1.1.1.12.1|70|0 +1.3.6.1.2.1.31.1.1.1.12.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.131073|70|0 +1.3.6.1.2.1.31.1.1.1.12.131074|70|0 +1.3.6.1.2.1.31.1.1.1.12.131075|70|0 +1.3.6.1.2.1.31.1.1.1.12.35684352|70|0 +1.3.6.1.2.1.31.1.1.1.12.35717120|70|0 +1.3.6.1.2.1.31.1.1.1.12.37781504|70|0 +1.3.6.1.2.1.31.1.1.1.12.37814272|70|0 +1.3.6.1.2.1.31.1.1.1.12.37847040|70|0 +1.3.6.1.2.1.31.1.1.1.12.37879808|70|0 +1.3.6.1.2.1.31.1.1.1.12.37912576|70|0 +1.3.6.1.2.1.31.1.1.1.12.37945344|70|0 +1.3.6.1.2.1.31.1.1.1.12.39878656|70|0 +1.3.6.1.2.1.31.1.1.1.12.39911424|70|0 +1.3.6.1.2.1.31.1.1.1.12.41975808|70|0 +1.3.6.1.2.1.31.1.1.1.12.42008576|70|0 +1.3.6.1.2.1.31.1.1.1.12.42041344|70|0 +1.3.6.1.2.1.31.1.1.1.12.42074112|70|0 +1.3.6.1.2.1.31.1.1.1.12.44072960|70|0 +1.3.6.1.2.1.31.1.1.1.12.44105728|70|0 +1.3.6.1.2.1.31.1.1.1.12.46170112|70|0 +1.3.6.1.2.1.31.1.1.1.12.46202880|70|0 +1.3.6.1.2.1.31.1.1.1.12.46235648|70|0 +1.3.6.1.2.1.31.1.1.1.12.46268416|70|0 +1.3.6.1.2.1.31.1.1.1.12.46301184|70|0 +1.3.6.1.2.1.31.1.1.1.12.46333952|70|0 +1.3.6.1.2.1.31.1.1.1.12.46366720|70|0 +1.3.6.1.2.1.31.1.1.1.12.67141632|70|0 +1.3.6.1.2.1.31.1.1.1.12.1493172258|70|0 +1.3.6.1.2.1.31.1.1.1.12.1509949473|70|0 +1.3.6.1.2.1.31.1.1.1.12.1509949478|70|0 +1.3.6.1.2.1.31.1.1.1.13.1|70|0 +1.3.6.1.2.1.31.1.1.1.13.2|70|0 +1.3.6.1.2.1.31.1.1.1.13.3|70|0 +1.3.6.1.2.1.31.1.1.1.13.131073|70|0 +1.3.6.1.2.1.31.1.1.1.13.131074|70|0 +1.3.6.1.2.1.31.1.1.1.13.131075|70|0 +1.3.6.1.2.1.31.1.1.1.13.35684352|70|0 +1.3.6.1.2.1.31.1.1.1.13.35717120|70|0 +1.3.6.1.2.1.31.1.1.1.13.37781504|70|4 +1.3.6.1.2.1.31.1.1.1.13.37814272|70|0 +1.3.6.1.2.1.31.1.1.1.13.37847040|70|0 +1.3.6.1.2.1.31.1.1.1.13.37879808|70|0 +1.3.6.1.2.1.31.1.1.1.13.37912576|70|0 +1.3.6.1.2.1.31.1.1.1.13.37945344|70|0 +1.3.6.1.2.1.31.1.1.1.13.39878656|70|0 +1.3.6.1.2.1.31.1.1.1.13.39911424|70|0 +1.3.6.1.2.1.31.1.1.1.13.41975808|70|0 +1.3.6.1.2.1.31.1.1.1.13.42008576|70|0 +1.3.6.1.2.1.31.1.1.1.13.42041344|70|0 +1.3.6.1.2.1.31.1.1.1.13.42074112|70|0 +1.3.6.1.2.1.31.1.1.1.13.44072960|70|0 +1.3.6.1.2.1.31.1.1.1.13.44105728|70|0 +1.3.6.1.2.1.31.1.1.1.13.46170112|70|0 +1.3.6.1.2.1.31.1.1.1.13.46202880|70|0 +1.3.6.1.2.1.31.1.1.1.13.46235648|70|0 +1.3.6.1.2.1.31.1.1.1.13.46268416|70|0 +1.3.6.1.2.1.31.1.1.1.13.46301184|70|0 +1.3.6.1.2.1.31.1.1.1.13.46333952|70|0 +1.3.6.1.2.1.31.1.1.1.13.46366720|70|0 +1.3.6.1.2.1.31.1.1.1.13.67141632|70|0 +1.3.6.1.2.1.31.1.1.1.13.1493172258|70|0 +1.3.6.1.2.1.31.1.1.1.13.1509949473|70|0 +1.3.6.1.2.1.31.1.1.1.13.1509949478|70|0 +1.3.6.1.2.1.31.1.1.1.14.1|2|1 +1.3.6.1.2.1.31.1.1.1.14.2|2|1 +1.3.6.1.2.1.31.1.1.1.14.3|2|1 +1.3.6.1.2.1.31.1.1.1.14.131073|2|1 +1.3.6.1.2.1.31.1.1.1.14.131074|2|1 +1.3.6.1.2.1.31.1.1.1.14.131075|2|1 +1.3.6.1.2.1.31.1.1.1.14.35684352|2|1 +1.3.6.1.2.1.31.1.1.1.14.35717120|2|1 +1.3.6.1.2.1.31.1.1.1.14.37781504|2|1 +1.3.6.1.2.1.31.1.1.1.14.37814272|2|1 +1.3.6.1.2.1.31.1.1.1.14.37847040|2|1 +1.3.6.1.2.1.31.1.1.1.14.37879808|2|1 +1.3.6.1.2.1.31.1.1.1.14.37912576|2|1 +1.3.6.1.2.1.31.1.1.1.14.37945344|2|1 +1.3.6.1.2.1.31.1.1.1.14.39878656|2|1 +1.3.6.1.2.1.31.1.1.1.14.39911424|2|1 +1.3.6.1.2.1.31.1.1.1.14.41975808|2|1 +1.3.6.1.2.1.31.1.1.1.14.42008576|2|1 +1.3.6.1.2.1.31.1.1.1.14.42041344|2|1 +1.3.6.1.2.1.31.1.1.1.14.42074112|2|1 +1.3.6.1.2.1.31.1.1.1.14.44072960|2|1 +1.3.6.1.2.1.31.1.1.1.14.44105728|2|1 +1.3.6.1.2.1.31.1.1.1.14.46170112|2|1 +1.3.6.1.2.1.31.1.1.1.14.46202880|2|1 +1.3.6.1.2.1.31.1.1.1.14.46235648|2|1 +1.3.6.1.2.1.31.1.1.1.14.46268416|2|1 +1.3.6.1.2.1.31.1.1.1.14.46301184|2|1 +1.3.6.1.2.1.31.1.1.1.14.46333952|2|1 +1.3.6.1.2.1.31.1.1.1.14.46366720|2|1 +1.3.6.1.2.1.31.1.1.1.14.67141632|2|1 +1.3.6.1.2.1.31.1.1.1.14.1493172258|2|1 +1.3.6.1.2.1.31.1.1.1.14.1509949473|2|1 +1.3.6.1.2.1.31.1.1.1.14.1509949478|2|1 +1.3.6.1.2.1.31.1.1.1.15.1|66|0 +1.3.6.1.2.1.31.1.1.1.15.2|66|150 +1.3.6.1.2.1.31.1.1.1.15.3|66|100 +1.3.6.1.2.1.31.1.1.1.15.131073|66|40000 +1.3.6.1.2.1.31.1.1.1.15.131074|66|40000 +1.3.6.1.2.1.31.1.1.1.15.131075|66|40000 +1.3.6.1.2.1.31.1.1.1.15.35684352|66|150 +1.3.6.1.2.1.31.1.1.1.15.35717120|66|150 +1.3.6.1.2.1.31.1.1.1.15.37781504|66|100 +1.3.6.1.2.1.31.1.1.1.15.37814272|66|100 +1.3.6.1.2.1.31.1.1.1.15.37847040|66|100 +1.3.6.1.2.1.31.1.1.1.15.37879808|66|100 +1.3.6.1.2.1.31.1.1.1.15.37912576|66|100 +1.3.6.1.2.1.31.1.1.1.15.37945344|66|100 +1.3.6.1.2.1.31.1.1.1.15.39878656|66|0 +1.3.6.1.2.1.31.1.1.1.15.39911424|66|0 +1.3.6.1.2.1.31.1.1.1.15.41975808|66|150 +1.3.6.1.2.1.31.1.1.1.15.42008576|66|150 +1.3.6.1.2.1.31.1.1.1.15.42041344|66|150 +1.3.6.1.2.1.31.1.1.1.15.42074112|66|150 +1.3.6.1.2.1.31.1.1.1.15.44072960|66|40000 +1.3.6.1.2.1.31.1.1.1.15.44105728|66|40000 +1.3.6.1.2.1.31.1.1.1.15.46170112|66|40000 +1.3.6.1.2.1.31.1.1.1.15.46202880|66|40000 +1.3.6.1.2.1.31.1.1.1.15.46235648|66|40000 +1.3.6.1.2.1.31.1.1.1.15.46268416|66|40000 +1.3.6.1.2.1.31.1.1.1.15.46301184|66|40000 +1.3.6.1.2.1.31.1.1.1.15.46333952|66|40000 +1.3.6.1.2.1.31.1.1.1.15.46366720|66|40000 +1.3.6.1.2.1.31.1.1.1.15.67141632|66|100 +1.3.6.1.2.1.31.1.1.1.15.1493172258|66|0 +1.3.6.1.2.1.31.1.1.1.15.1509949473|66|40000 +1.3.6.1.2.1.31.1.1.1.15.1509949478|66|40000 +1.3.6.1.2.1.31.1.1.1.16.1|2|2 +1.3.6.1.2.1.31.1.1.1.16.2|2|2 +1.3.6.1.2.1.31.1.1.1.16.3|2|2 +1.3.6.1.2.1.31.1.1.1.16.131073|2|2 +1.3.6.1.2.1.31.1.1.1.16.131074|2|2 +1.3.6.1.2.1.31.1.1.1.16.131075|2|2 +1.3.6.1.2.1.31.1.1.1.16.35684352|2|2 +1.3.6.1.2.1.31.1.1.1.16.35717120|2|2 +1.3.6.1.2.1.31.1.1.1.16.37781504|2|2 +1.3.6.1.2.1.31.1.1.1.16.37814272|2|2 +1.3.6.1.2.1.31.1.1.1.16.37847040|2|2 +1.3.6.1.2.1.31.1.1.1.16.37879808|2|2 +1.3.6.1.2.1.31.1.1.1.16.37912576|2|2 +1.3.6.1.2.1.31.1.1.1.16.37945344|2|2 +1.3.6.1.2.1.31.1.1.1.16.39878656|2|2 +1.3.6.1.2.1.31.1.1.1.16.39911424|2|2 +1.3.6.1.2.1.31.1.1.1.16.41975808|2|2 +1.3.6.1.2.1.31.1.1.1.16.42008576|2|2 +1.3.6.1.2.1.31.1.1.1.16.42041344|2|2 +1.3.6.1.2.1.31.1.1.1.16.42074112|2|2 +1.3.6.1.2.1.31.1.1.1.16.44072960|2|2 +1.3.6.1.2.1.31.1.1.1.16.44105728|2|2 +1.3.6.1.2.1.31.1.1.1.16.46170112|2|2 +1.3.6.1.2.1.31.1.1.1.16.46202880|2|2 +1.3.6.1.2.1.31.1.1.1.16.46235648|2|2 +1.3.6.1.2.1.31.1.1.1.16.46268416|2|2 +1.3.6.1.2.1.31.1.1.1.16.46301184|2|2 +1.3.6.1.2.1.31.1.1.1.16.46333952|2|2 +1.3.6.1.2.1.31.1.1.1.16.46366720|2|2 +1.3.6.1.2.1.31.1.1.1.16.67141632|2|2 +1.3.6.1.2.1.31.1.1.1.16.1493172258|2|2 +1.3.6.1.2.1.31.1.1.1.16.1509949473|2|2 +1.3.6.1.2.1.31.1.1.1.16.1509949478|2|2 +1.3.6.1.2.1.31.1.1.1.17.1|2|2 +1.3.6.1.2.1.31.1.1.1.17.2|2|2 +1.3.6.1.2.1.31.1.1.1.17.3|2|2 +1.3.6.1.2.1.31.1.1.1.17.131073|2|2 +1.3.6.1.2.1.31.1.1.1.17.131074|2|2 +1.3.6.1.2.1.31.1.1.1.17.131075|2|2 +1.3.6.1.2.1.31.1.1.1.17.35684352|2|1 +1.3.6.1.2.1.31.1.1.1.17.35717120|2|1 +1.3.6.1.2.1.31.1.1.1.17.37781504|2|1 +1.3.6.1.2.1.31.1.1.1.17.37814272|2|1 +1.3.6.1.2.1.31.1.1.1.17.37847040|2|1 +1.3.6.1.2.1.31.1.1.1.17.37879808|2|1 +1.3.6.1.2.1.31.1.1.1.17.37912576|2|1 +1.3.6.1.2.1.31.1.1.1.17.37945344|2|1 +1.3.6.1.2.1.31.1.1.1.17.39878656|2|1 +1.3.6.1.2.1.31.1.1.1.17.39911424|2|1 +1.3.6.1.2.1.31.1.1.1.17.41975808|2|1 +1.3.6.1.2.1.31.1.1.1.17.42008576|2|1 +1.3.6.1.2.1.31.1.1.1.17.42041344|2|1 +1.3.6.1.2.1.31.1.1.1.17.42074112|2|1 +1.3.6.1.2.1.31.1.1.1.17.44072960|2|1 +1.3.6.1.2.1.31.1.1.1.17.44105728|2|1 +1.3.6.1.2.1.31.1.1.1.17.46170112|2|1 +1.3.6.1.2.1.31.1.1.1.17.46202880|2|1 +1.3.6.1.2.1.31.1.1.1.17.46235648|2|1 +1.3.6.1.2.1.31.1.1.1.17.46268416|2|1 +1.3.6.1.2.1.31.1.1.1.17.46301184|2|1 +1.3.6.1.2.1.31.1.1.1.17.46333952|2|1 +1.3.6.1.2.1.31.1.1.1.17.46366720|2|1 +1.3.6.1.2.1.31.1.1.1.17.67141632|2|1 +1.3.6.1.2.1.31.1.1.1.17.1493172258|2|2 +1.3.6.1.2.1.31.1.1.1.17.1509949473|2|2 +1.3.6.1.2.1.31.1.1.1.17.1509949478|2|2 +1.3.6.1.2.1.31.1.1.1.18.1|4|Loopback IP interface +1.3.6.1.2.1.31.1.1.1.18.2|4|IP interface +1.3.6.1.2.1.31.1.1.1.18.3|4|IP interface +1.3.6.1.2.1.31.1.1.1.18.131073|4|IP interface +1.3.6.1.2.1.31.1.1.1.18.131074|4|IP interface +1.3.6.1.2.1.31.1.1.1.18.131075|4|IP interface +1.3.6.1.2.1.31.1.1.1.18.35684352|4|Cellular +1.3.6.1.2.1.31.1.1.1.18.35717120|4|Cellular +1.3.6.1.2.1.31.1.1.1.18.37781504|4|LAB_SARH_01 +1.3.6.1.2.1.31.1.1.1.18.37814272|4|10/100 Ethernet TX +1.3.6.1.2.1.31.1.1.1.18.37847040|4|10/100 Ethernet TX +1.3.6.1.2.1.31.1.1.1.18.37879808|4|10/100 Ethernet TX +1.3.6.1.2.1.31.1.1.1.18.37912576|4|10/100 Ethernet TX +1.3.6.1.2.1.31.1.1.1.18.37945344|4|10/100 Ethernet TX +1.3.6.1.2.1.31.1.1.1.18.39878656|4|RS-232 Serial +1.3.6.1.2.1.31.1.1.1.18.39911424|4|RS-232 Serial +1.3.6.1.2.1.31.1.1.1.18.41975808|4|Wireless LAN +1.3.6.1.2.1.31.1.1.1.18.42008576|4|Wireless LAN +1.3.6.1.2.1.31.1.1.1.18.42041344|4|Wireless LAN +1.3.6.1.2.1.31.1.1.1.18.42074112|4|Wireless LAN +1.3.6.1.2.1.31.1.1.1.18.44072960|4|IPsec +1.3.6.1.2.1.31.1.1.1.18.44105728|4|IPsec +1.3.6.1.2.1.31.1.1.1.18.46170112|4|Broadband +1.3.6.1.2.1.31.1.1.1.18.46202880|4|Broadband +1.3.6.1.2.1.31.1.1.1.18.46235648|4|Broadband +1.3.6.1.2.1.31.1.1.1.18.46268416|4|Broadband +1.3.6.1.2.1.31.1.1.1.18.46301184|4|Broadband +1.3.6.1.2.1.31.1.1.1.18.46333952|4|Broadband +1.3.6.1.2.1.31.1.1.1.18.46366720|4|Broadband +1.3.6.1.2.1.31.1.1.1.18.67141632|4|10/100 Ethernet TX +1.3.6.1.2.1.31.1.1.1.18.1493172258|4|Broadband +1.3.6.1.2.1.31.1.1.1.18.1509949473|4|Broadband +1.3.6.1.2.1.31.1.1.1.18.1509949478|4|Broadband +1.3.6.1.2.1.31.1.1.1.19.1|67|0 +1.3.6.1.2.1.31.1.1.1.19.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.131073|67|0 +1.3.6.1.2.1.31.1.1.1.19.131074|67|0 +1.3.6.1.2.1.31.1.1.1.19.131075|67|0 +1.3.6.1.2.1.31.1.1.1.19.35684352|67|0 +1.3.6.1.2.1.31.1.1.1.19.35717120|67|0 +1.3.6.1.2.1.31.1.1.1.19.37781504|67|0 +1.3.6.1.2.1.31.1.1.1.19.37814272|67|0 +1.3.6.1.2.1.31.1.1.1.19.37847040|67|0 +1.3.6.1.2.1.31.1.1.1.19.37879808|67|0 +1.3.6.1.2.1.31.1.1.1.19.37912576|67|0 +1.3.6.1.2.1.31.1.1.1.19.37945344|67|0 +1.3.6.1.2.1.31.1.1.1.19.39878656|67|0 +1.3.6.1.2.1.31.1.1.1.19.39911424|67|0 +1.3.6.1.2.1.31.1.1.1.19.41975808|67|0 +1.3.6.1.2.1.31.1.1.1.19.42008576|67|0 +1.3.6.1.2.1.31.1.1.1.19.42041344|67|0 +1.3.6.1.2.1.31.1.1.1.19.42074112|67|0 +1.3.6.1.2.1.31.1.1.1.19.44072960|67|0 +1.3.6.1.2.1.31.1.1.1.19.44105728|67|0 +1.3.6.1.2.1.31.1.1.1.19.46170112|67|1611 +1.3.6.1.2.1.31.1.1.1.19.46202880|67|0 +1.3.6.1.2.1.31.1.1.1.19.46235648|67|0 +1.3.6.1.2.1.31.1.1.1.19.46268416|67|0 +1.3.6.1.2.1.31.1.1.1.19.46301184|67|0 +1.3.6.1.2.1.31.1.1.1.19.46333952|67|1611 +1.3.6.1.2.1.31.1.1.1.19.46366720|67|0 +1.3.6.1.2.1.31.1.1.1.19.67141632|67|0 +1.3.6.1.2.1.31.1.1.1.19.1493172258|67|0 +1.3.6.1.2.1.31.1.1.1.19.1509949473|67|0 +1.3.6.1.2.1.31.1.1.1.19.1509949478|67|0 +1.3.6.1.2.1.31.1.2.1.3.0.1|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.2|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.3|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.131073|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.131074|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.131075|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.35717120|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.37814272|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.37847040|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.37879808|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.37912576|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.37945344|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.39878656|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.39911424|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.41975808|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.42008576|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.42041344|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.42074112|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.44072960|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.44105728|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.46202880|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.46268416|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.46301184|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.46366720|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.67141632|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1493172258|2|1 +1.3.6.1.2.1.31.1.2.1.3.0.1509949478|2|1 +1.3.6.1.2.1.31.1.2.1.3.1.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.2.35684352|2|1 +1.3.6.1.2.1.31.1.2.1.3.3.37781504|2|1 +1.3.6.1.2.1.31.1.2.1.3.131073.46235648|2|1 +1.3.6.1.2.1.31.1.2.1.3.131074.46235648|2|1 +1.3.6.1.2.1.31.1.2.1.3.131075.1509949473|2|1 +1.3.6.1.2.1.31.1.2.1.3.35684352.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.35717120.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.37781504.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.37814272.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.37847040.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.37879808.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.37912576.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.37945344.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.39878656.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.39911424.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.41975808.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.42008576.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.42041344.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.42074112.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.44072960.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.44105728.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.46170112.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.46202880.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.46235648.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.46268416.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.46301184.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.46333952.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.46366720.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.67141632.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1493172258.0|2|1 +1.3.6.1.2.1.31.1.2.1.3.1509949473.46170112|2|1 +1.3.6.1.2.1.31.1.2.1.3.1509949478.46333952|2|1 +1.3.6.1.4.1.6527.3.1.2.1.1.1.0|66|12 +1.3.6.1.4.1.6527.3.1.2.1.1.5.0|66|21 +1.3.6.1.4.1.6527.3.1.2.1.1.6.0|66|10 +1.3.6.1.4.1.6527.3.1.2.1.1.7.0|4|R1 +1.3.6.1.4.1.6527.3.1.2.1.1.10.0|66|239812 +1.3.6.1.4.1.6527.3.1.2.1.1.11.0|66|916814 +1.3.6.1.4.1.6527.3.1.2.2.1.1.0|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.2.0|67|344 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.2.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.3.1|4|LAB_SARHm_02 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.4.1|66|36 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.5.1|4| +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.6.1|4| +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.7.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.8.1|66|23 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.9.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.10.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.11.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.15.1|4x|CC66B20A6E45 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.16.1|4| +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.20.1|2|4 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.24.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.27.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.29.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.30.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.32.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.33.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.34.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.38.1|66|23 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.39.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.3.1.40.1|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.6.1.2.36|4|7705 SAR-Hm +1.3.6.1.4.1.6527.3.1.2.2.1.6.1.2.49|4|7705 SAR-Hmc +1.3.6.1.4.1.6527.3.1.2.2.1.6.1.3.36|4|Integrated: 6p 10/100 Mbps Ethernet, 2 Serial, 3G/LTE cellular, Wi-Fi +1.3.6.1.4.1.6527.3.1.2.2.1.6.1.3.49|4|Integrated: 3p 10/100 Mbps Ethernet, 2 Serial, 3G/LTE cellular +1.3.6.1.4.1.6527.3.1.2.2.1.6.1.4.36|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.6.1.4.49|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.7.0|67|362 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.2.1.50331649|6|1.3.6.1.4.1.6527.3.1.2.2.1.21.1.4.1.3.1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.2.1.134217729|6|1.3.6.1.4.1.6527.3.1.2.2.3.2.1.2.1.1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.2.1.150994977|6|1.3.6.1.4.1.6527.3.1.2.2.3.4.1.3.1.2.1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.2.1.167772162|6|1.3.6.1.4.1.6527.3.1.2.2.3.6.1.2.1.2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.2.1.184549633|6|1.3.6.1.4.1.6527.3.1.2.2.3.8.1.2.1.1.1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.2.1.184549634|6|1.3.6.1.4.1.6527.3.1.2.2.3.8.1.2.1.1.2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.2.1.184549635|6|1.3.6.1.4.1.6527.3.1.2.2.3.8.1.2.1.1.3 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.2.1.184549636|6|1.3.6.1.4.1.6527.3.1.2.2.3.8.1.2.1.1.4 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.2.1.184549637|6|1.3.6.1.4.1.6527.3.1.2.2.3.8.1.2.1.1.5 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.2.1.184549638|6|1.3.6.1.4.1.6527.3.1.2.2.3.8.1.2.1.1.6 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.2.1.201327107|6|1.3.6.1.4.1.6527.3.1.2.2.3.7.1.2.1.2.3 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.4.1.50331649|4|3HE11600AAAA0112 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.4.1.134217729|4|3HE11600AAAA0112 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.4.1.150994977|4|3HE11600AAAA0112 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.4.1.167772162|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.4.1.184549633|4|3HE11600AAAA0112 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.4.1.184549634|4|3HE11600AAAA0112 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.4.1.184549635|4|3HE11600AAAA0112 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.4.1.184549636|4|3HE11600AAAA0112 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.4.1.184549637|4|3HE11600AAAA0112 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.4.1.184549638|4|3HE11600AAAA0112 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.4.1.201327107|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.1.50331649|4|NS173160469 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.1.134217729|4|NS173160469 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.1.150994977|4|NS173160469 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.1.167772162|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.1.184549633|4|NS173160469 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.1.184549634|4|NS173160469 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.1.184549635|4|NS173160469 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.1.184549636|4|NS173160469 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.1.184549637|4|NS173160469 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.1.184549638|4|NS173160469 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.1.201327107|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.6.1.50331649|4|09022017 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.6.1.134217729|4|09022017 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.6.1.150994977|4|09022017 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.6.1.167772162|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.6.1.184549633|4|09022017 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.6.1.184549634|4|09022017 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.6.1.184549635|4|09022017 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.6.1.184549636|4|09022017 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.6.1.184549637|4|09022017 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.6.1.184549638|4|09022017 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.6.1.201327107|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7.1.50331649|2|3 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7.1.134217729|2|8 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7.1.150994977|2|9 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7.1.167772162|2|10 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7.1.184549633|2|11 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7.1.184549634|2|11 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7.1.184549635|2|11 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7.1.184549636|2|11 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7.1.184549637|2|11 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7.1.184549638|2|11 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7.1.201327107|2|12 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8.1.50331649|4|Chassis 1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8.1.134217729|4|Slot 1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8.1.150994977|4|Slot A +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8.1.167772162|4|Slot A +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8.1.184549633|4|MDA 1/1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8.1.184549634|4|MDA 1/2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8.1.184549635|4|MDA 1/3 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8.1.184549636|4|MDA 1/4 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8.1.184549637|4|MDA 1/5 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8.1.184549638|4|MDA 1/6 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8.1.201327107|4|cf3: +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.9.1.50331649|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.9.1.134217729|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.9.1.150994977|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.9.1.167772162|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.9.1.184549633|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.9.1.184549634|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.9.1.184549635|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.9.1.184549636|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.9.1.184549637|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.9.1.184549638|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.9.1.201327107|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.10.1.50331649|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.10.1.134217729|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.10.1.150994977|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.10.1.167772162|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.10.1.184549633|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.10.1.184549634|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.10.1.184549635|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.10.1.184549636|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.10.1.184549637|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.10.1.184549638|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.10.1.201327107|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.11.1.50331649|4|INM2100DRA +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.11.1.134217729|4|INM2100DRA +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.11.1.150994977|4|INM2100DRA +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.11.1.167772162|4x|00000000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.11.1.184549633|4|INM2100DRA +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.11.1.184549634|4|INM2100DRA +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.11.1.184549635|4|INM2100DRA +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.11.1.184549636|4|INM2100DRA +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.11.1.184549637|4|INM2100DRA +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.11.1.184549638|4|INM2100DRA +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.11.1.201327107|4x|00000000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.12.1.50331649|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.12.1.134217729|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.12.1.150994977|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.12.1.167772162|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.12.1.184549633|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.12.1.184549634|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.12.1.184549635|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.12.1.184549636|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.12.1.184549637|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.12.1.184549638|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.12.1.201327107|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.13.1.50331649|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.13.1.134217729|2|50331649 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.13.1.150994977|2|50331649 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.13.1.167772162|2|50331649 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.13.1.184549633|2|134217729 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.13.1.184549634|2|134217729 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.13.1.184549635|2|134217729 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.13.1.184549636|2|134217729 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.13.1.184549637|2|134217729 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.13.1.184549638|2|134217729 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.13.1.201327107|2|150994977 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.14.1.50331649|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.14.1.134217729|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.14.1.150994977|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.14.1.167772162|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.14.1.184549633|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.14.1.184549634|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.14.1.184549635|2|3 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.14.1.184549636|2|4 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.14.1.184549637|2|5 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.14.1.184549638|2|6 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.14.1.201327107|2|3 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.15.1.50331649|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.15.1.134217729|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.15.1.150994977|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.15.1.167772162|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.15.1.184549633|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.15.1.184549634|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.15.1.184549635|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.15.1.184549636|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.15.1.184549637|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.15.1.184549638|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.15.1.201327107|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.16.1.50331649|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.16.1.134217729|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.16.1.150994977|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.16.1.167772162|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.16.1.184549633|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.16.1.184549634|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.16.1.184549635|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.16.1.184549636|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.16.1.184549637|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.16.1.184549638|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.16.1.201327107|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17.1.50331649|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17.1.134217729|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17.1.150994977|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17.1.167772162|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17.1.184549633|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17.1.184549634|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17.1.184549635|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17.1.184549636|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17.1.184549637|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17.1.184549638|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17.1.201327107|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.50331649|2|-128 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.134217729|2|32 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.150994977|2|32 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.167772162|2|-128 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.184549633|2|32 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.184549634|2|32 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.184549635|2|32 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.184549636|2|32 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.184549637|2|32 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.184549638|2|32 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.1.201327107|2|-128 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.19.1.50331649|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.19.1.134217729|2|75 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.19.1.150994977|2|75 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.19.1.167772162|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.19.1.184549633|2|75 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.19.1.184549634|2|75 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.19.1.184549635|2|75 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.19.1.184549636|2|75 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.19.1.184549637|2|75 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.19.1.184549638|2|75 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.19.1.201327107|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.20.1.50331649|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.20.1.134217729|4|Fake bootrom +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.20.1.150994977|4|Fake bootrom +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.20.1.167772162|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.20.1.184549633|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.20.1.184549634|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.20.1.184549635|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.20.1.184549636|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.20.1.184549637|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.20.1.184549638|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.20.1.201327107|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.21.1.50331649|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.21.1.134217729|4x|54694d4f532d422d32312e31302e523120626f74682f736172204e6f6b696120373730352053415220436f707972696768742028632920323030302d32303231204e6f6b69612e0a416c6c207269676874732072657365727665642e20416c6c20757365207375626a65637420746f206170706c696361626c65206c6963656e73652061677265656d656e74732e0d0a4275696c74206f6e20546875204e6f7620342032303a32303a3337205044542032303231206279206275696c64657220696e202f6275696c64732f632f32313130422f52312f70616e6f732f6d61696e2f73726f730d +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.21.1.150994977|4x|54694d4f532d422d32312e31302e523120626f74682f736172204e6f6b696120373730352053415220436f707972696768742028632920323030302d32303231204e6f6b69612e0a416c6c207269676874732072657365727665642e20416c6c20757365207375626a65637420746f206170706c696361626c65206c6963656e73652061677265656d656e74732e0d0a4275696c74206f6e20546875204e6f7620342032303a32303a3337205044542032303231206279206275696c64657220696e202f6275696c64732f632f32313130422f52312f70616e6f732f6d61696e2f73726f730d +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.21.1.167772162|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.21.1.184549633|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.21.1.184549634|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.21.1.184549635|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.21.1.184549636|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.21.1.184549637|4x|54694d4f532d422d32312e31302e523120626f74682f736172204e6f6b696120373730352053415220436f707972696768742028632920323030302d32303231204e6f6b69612e0a416c6c207269676874732072657365727665642e20416c6c20757365207375626a65637420746f206170706c696361626c65206c6963656e73652061677265656d656e74732e0d0a4275696c74206f6e20546875204e6f7620342032303a32303a3337205044542032303231206279206275696c64657220696e202f6275696c64732f632f32313130422f52312f70616e6f732f6d61696e2f73726f730d +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.21.1.184549638|4x|54694d4f532d422d32312e31302e523120626f74682f736172204e6f6b696120373730352053415220436f707972696768742028632920323030302d32303231204e6f6b69612e0a416c6c207269676874732072657365727665642e20416c6c20757365207375626a65637420746f206170706c696361626c65206c6963656e73652061677265656d656e74732e0d0a4275696c74206f6e20546875204e6f7620342032303a32303a3337205044542032303231206279206275696c64657220696e202f6275696c64732f632f32313130422f52312f70616e6f732f6d61696e2f73726f730d +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.21.1.201327107|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.22.1.50331649|4x|07E50B09070209002B0000 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.22.1.134217729|4x|07E50B09070210002B0000 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.22.1.150994977|4x|07E50B09070209002B0000 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.22.1.167772162|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.22.1.184549633|4x|07E50B09070220002B0000 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.22.1.184549634|4x|07E50B09070219002B0000 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.22.1.184549635|4x|07E50B09070218002B0000 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.22.1.184549636|4x|07E50B09070219002B0000 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.22.1.184549637|4x|07E50B09070218002B0000 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.22.1.184549638|4x|07E50B09070218002B0000 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.22.1.201327107|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.50331649|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.134217729|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.150994977|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.167772162|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.184549633|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.184549634|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.184549635|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.184549636|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.184549637|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.184549638|2|2 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.24.1.201327107|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.27.1.50331649|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.27.1.134217729|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.27.1.150994977|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.27.1.167772162|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.27.1.184549633|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.27.1.184549634|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.27.1.184549635|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.27.1.184549636|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.27.1.184549637|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.27.1.184549638|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.27.1.201327107|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.28.1.50331649|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.28.1.134217729|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.28.1.150994977|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.28.1.167772162|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.28.1.184549633|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.28.1.184549634|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.28.1.184549635|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.28.1.184549636|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.28.1.184549637|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.28.1.184549638|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.28.1.201327107|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.29.1.50331649|4x|CC66B20A6E45 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.29.1.134217729|4x|CC66B20A6E45 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.29.1.150994977|4x|CC66B20A6E45 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.29.1.167772162|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.29.1.184549633|4x|CC66B20A6E47 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.29.1.184549634|4x|CC66B20A6E49 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.29.1.184549635|4x|CC66B20A6E4F +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.29.1.184549636|4x|CC66B20A6E51 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.29.1.184549637|4x|CC66B20A6E55 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.29.1.184549638|4x|CC66B20A6E57 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.29.1.201327107|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.30.1.50331649|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.30.1.134217729|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.30.1.150994977|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.30.1.167772162|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.30.1.184549633|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.30.1.184549634|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.30.1.184549635|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.30.1.184549636|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.30.1.184549637|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.30.1.184549638|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.30.1.201327107|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.31.1.50331649|2|5 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.31.1.134217729|2|5 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.31.1.150994977|2|5 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.31.1.167772162|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.31.1.184549633|2|5 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.31.1.184549634|2|5 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.31.1.184549635|2|5 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.31.1.184549636|2|5 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.31.1.184549637|2|5 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.31.1.184549638|2|5 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.31.1.201327107|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.32.1.50331649|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.32.1.134217729|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.32.1.150994977|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.32.1.167772162|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.32.1.184549633|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.32.1.184549634|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.32.1.184549635|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.32.1.184549636|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.32.1.184549637|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.32.1.184549638|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.32.1.201327107|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.33.1.50331649|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.33.1.134217729|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.33.1.150994977|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.33.1.167772162|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.33.1.184549633|4|GENERIC 02.30.03.00 002.046_001 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.33.1.184549634|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.33.1.184549635|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.33.1.184549636|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.33.1.184549637|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.33.1.184549638|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.33.1.201327107|4| +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.34.1.50331649|66|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.34.1.134217729|66|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.34.1.150994977|66|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.34.1.167772162|66|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.34.1.184549633|66|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.34.1.184549634|66|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.34.1.184549635|66|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.34.1.184549636|66|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.34.1.184549637|66|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.34.1.184549638|66|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.34.1.201327107|66|1 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.35.1.50331649|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.35.1.134217729|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.35.1.150994977|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.35.1.167772162|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.35.1.184549633|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.35.1.184549634|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.35.1.184549635|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.35.1.184549636|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.35.1.184549637|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.35.1.184549638|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.8.1.35.1.201327107|2|0 +1.3.6.1.4.1.6527.3.1.2.2.1.17.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.1.1|66|13 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.2.1|66|5 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.3.1|66|13 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.4.1|66|4 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.5.1|66|2047 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.6.1|66|4 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.7.1|66|2047 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.8.1|66|5 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.9.1|66|163839 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.10.1|66|6 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.11.1|66|16383 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.12.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.13.1|66|40959 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.14.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.15.1|66|511999 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.16.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.17.1|66|131071 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.18.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.19.1|66|199999 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.20.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.21.1|66|31 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.22.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.33.1|66|31 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.34.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.35.1|66|31 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.36.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.37.1|66|31 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.38.1|66|1 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.39.1|66|31 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.40.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.41.1|66|31 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.42.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.43.1|66|31 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.44.1|66|1 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.45.1|66|31 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.46.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.47.1|66|31 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.48.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.49.1|66|31 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.50.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.51.1|66|50000 +1.3.6.1.4.1.6527.3.1.2.2.1.19.1.52.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.21.1.3.1.3.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.1.21.1.4.1.3.1|2|3 +1.3.6.1.4.1.6527.3.1.2.2.1.21.1.5.1.3.1|2|50331649 +1.3.6.1.4.1.6527.3.1.2.2.1.21.1.6.1.3.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.21.1.7.1.3.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.1.21.1.9.1.3.1|4|1 +1.3.6.1.4.1.6527.3.1.2.2.1.21.1.10.1.3.1|4| +1.3.6.1.4.1.6527.3.1.2.2.1.24.3.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.1.24.5.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.1.0|67|70 +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.2.1.1|4x|30302030302030302030302030302030302030302030302030302038302030302030302030302030302030302030300a303020373220 +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.4.1.1|66|72 +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.5.1.1|66|72 +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.6.1.1|2|134217729 +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.10.1.1|4|none +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.11.1.1|66|6 +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.12.1.1|66|6 +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.14.1.1|66|1536 +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.17.1.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.18.1.1|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.36.1.1|4|00 +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.39.1.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.64.1.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.65.1.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.66.1.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.67.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.2.1.69.1.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.3.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.3.1.2.1|4x|30302030302030302030302030302030302030302030302030312030302030302030302030302030302030302030300a303020373120 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.5.1.2.1|66|71 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.6.1.2.1|66|71 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.7.1.2.1|2|150994977 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.8.1.2.1|4|0x00004 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.9.1.2.1|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.10.1.2.1|4|MON NOV 08 21:42:26 2021 UTC +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.11.1.2.1|4|MON NOV 08 21:42:26 2021 UTC +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.12.1.2.1|4x|07E50B09141B20002B0000 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.13.1.2.1|4x|07E50B090E370A002B0000 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.14.1.2.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.15.1.2.1|4|none +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.16.1.2.1|66|1 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.17.1.2.1|2|4 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.18.1.2.1|66|1536 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.22.1.2.1|4|cf3:\\config.cfg +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.23.1.2.1|4|cf3:\\config.cfg +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.24.1.2.1|4|# TiMOS-B-20.2.R2 both/sar Nokia 7705 SAR Copyright (c) 2000-2020 Nokia. # All rights reserved. All use subject to applicable license agreements. # Built on Wed Apr 1 15:52:06 PDT 2020 by builder in /builds/c/202B/R2/panos/main/sros # Configuration format version 20.2 revision 0 # Generated MON NOV 08 21:42:26 2021 UTC +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.25.1.2.1|4|# TiMOS-B-20.2.R2 both/sar Nokia 7705 SAR Copyright (c) 2000-2020 Nokia. # All rights reserved. All use subject to applicable license agreements. # Built on Wed Apr 1 15:52:06 PDT 2020 by builder in /builds/c/202B/R2/panos/main/sros # Generated MON NOV 08 21:42:26 2021 UTC # DO NOT EDIT THIS FILE # # This file allows managed objects to be recreated with identifiers # that are persistent across reboots of the system. +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.26.1.2.1|4|cf3: +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.27.1.2.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.28.1.2.1|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.30.1.2.1|2|3 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.31.1.2.1|4|snmpv3user/iso +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.32.1.2.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.33.1.2.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.34.1.2.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.35.1.2.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.36.1.2.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.37.1.2.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.38.1.2.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.39.1.2.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.40.1.2.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.41.1.2.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.42.1.2.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.43.1.2.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.44.1.2.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.45.1.2.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.46.1.2.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.47.1.2.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.50.1.2.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.51.1.2.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.52.1.2.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.53.1.2.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.4.1.54.1.2.1|4|00 00 00 +1.3.6.1.4.1.6527.3.1.2.2.3.7.1.2.1.2.3|2|3 +1.3.6.1.4.1.6527.3.1.2.2.3.7.1.3.1.2.3|4|N/A +1.3.6.1.4.1.6527.3.1.2.2.3.7.1.4.1.2.3|4|N/A +1.3.6.1.4.1.6527.3.1.2.2.3.7.1.5.1.2.3|4|emulated CompactFlash +1.3.6.1.4.1.6527.3.1.2.2.3.7.1.6.1.2.3|66|652752 +1.3.6.1.4.1.6527.3.1.2.2.3.7.1.7.1.2.3|66|560156 +1.3.6.1.4.1.6527.3.1.2.2.3.7.1.8.1.2.3|2|201327107 +1.3.6.1.4.1.6527.3.1.2.2.3.7.1.9.1.2.3|66|85 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.2.1.1.1|4x|30302030302030302030302030302030302030302030302030302030302030302030302030302030302030302030300a30302030302030302030302030312030302030302030302030302030302030302030302030302031363720 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.2.1.1.2|4x|30302030302030302030302030302030302030302030302030302030302030302030302030302030302030302030300a30302030302030302030302030382030302030302030302030302030302030302030302030302031363420 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.2.1.1.3|4x|30302030302030302030302030302030302030302030302030302030302030302030302030302030302030302030300a30302030302030302030302030322030302030302030302030302030302030302030302030302031363620 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.2.1.1.4|4x|30302030302030302030302030302030302030302030302030302030302030302030302030302030302030302030300a30302030302030302030302030302030302030302031302030302030302030302030302030302031383720 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.2.1.1.5|4x|30302030302030302030302030302030302030302030302030302030302030302030302030302030302030302030300a30302030302030322030302030302030302030302030302030302030302030302030302030302031353020 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.2.1.1.6|4x|30302030302030302030302030302030302030302030302030302030302030302030302030302030302030302030300a30302030302030312030302030302030302030302030302030302030302030302030302030302031353120 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.4.1.1.1|66|167 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.4.1.1.2|66|164 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.4.1.1.3|66|166 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.4.1.1.4|66|187 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.4.1.1.5|66|150 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.4.1.1.6|66|151 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.5.1.1.1|66|167 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.5.1.1.2|66|164 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.5.1.1.3|66|166 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.5.1.1.4|66|187 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.5.1.1.5|66|150 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.5.1.1.6|66|151 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.6.1.1.1|2|184549633 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.6.1.1.2|2|184549634 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.6.1.1.3|2|184549635 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.6.1.1.4|2|184549636 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.6.1.1.5|2|184549637 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.6.1.1.6|2|184549638 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.7.1.1.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.7.1.1.2|2|6 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.7.1.1.3|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.7.1.1.4|2|4 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.7.1.1.5|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.7.1.1.6|2|7 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.8.1.1.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.8.1.1.2|66|6 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.8.1.1.3|66|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.8.1.1.4|66|4 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.8.1.1.5|66|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.8.1.1.6|66|7 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.10.1.1.1|2|5 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.10.1.1.2|2|5 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.10.1.1.3|2|5 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.10.1.1.4|2|5 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.10.1.1.5|2|5 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.10.1.1.6|2|5 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.11.1.1.1|2|3 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.11.1.1.2|2|3 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.11.1.1.3|2|3 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.11.1.1.4|2|3 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.11.1.1.5|2|3 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.11.1.1.6|2|3 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.13.1.1.1|4|00 30 10 11 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.13.1.1.2|4|80 00 0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.13.1.1.3|4|00 40 9 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.13.1.1.4|4|00 20 10 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.13.1.1.5|4|00 00 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.13.1.1.6|4|00 00 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.14.1.1.1|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.14.1.1.2|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.14.1.1.3|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.14.1.1.4|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.14.1.1.5|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.14.1.1.6|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.15.1.1.1|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.15.1.1.2|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.15.1.1.3|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.15.1.1.4|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.15.1.1.5|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.15.1.1.6|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.16.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.16.1.1.2|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.16.1.1.3|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.16.1.1.4|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.16.1.1.5|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.16.1.1.6|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.17.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.17.1.1.2|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.17.1.1.3|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.17.1.1.4|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.17.1.1.5|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.17.1.1.6|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.19.1.1.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.19.1.1.2|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.19.1.1.3|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.19.1.1.4|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.19.1.1.5|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.19.1.1.6|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.24.1.1.1|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.24.1.1.2|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.24.1.1.3|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.24.1.1.4|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.24.1.1.5|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.24.1.1.6|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.25.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.25.1.1.2|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.25.1.1.3|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.25.1.1.4|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.25.1.1.5|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.25.1.1.6|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.40.1.1.1|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.40.1.1.2|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.40.1.1.3|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.40.1.1.4|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.40.1.1.5|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.40.1.1.6|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.41.1.1.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.41.1.1.2|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.41.1.1.3|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.41.1.1.4|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.41.1.1.5|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.41.1.1.6|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.42.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.42.1.1.2|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.42.1.1.3|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.42.1.1.4|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.42.1.1.5|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.42.1.1.6|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.43.1.1.1|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.43.1.1.2|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.43.1.1.3|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.43.1.1.4|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.43.1.1.5|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.43.1.1.6|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.46.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.46.1.1.2|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.46.1.1.3|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.46.1.1.4|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.46.1.1.5|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.46.1.1.6|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.47.1.1.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.47.1.1.2|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.47.1.1.3|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.47.1.1.4|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.47.1.1.5|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.47.1.1.6|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.49.1.1.1|4|00 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.49.1.1.2|4|00 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.49.1.1.3|4|00 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.49.1.1.4|4|00 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.49.1.1.5|4|00 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.49.1.1.6|4|00 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.55.1.1.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.55.1.1.2|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.55.1.1.3|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.55.1.1.4|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.55.1.1.5|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.55.1.1.6|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.56.1.1.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.56.1.1.2|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.56.1.1.3|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.56.1.1.4|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.56.1.1.5|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.56.1.1.6|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.57.1.1.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.57.1.1.2|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.57.1.1.3|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.57.1.1.4|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.57.1.1.5|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.57.1.1.6|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.58.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.58.1.1.2|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.58.1.1.3|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.58.1.1.4|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.58.1.1.5|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.8.1.58.1.1.6|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.9.1.2.71|4|cpm-sar-hm +1.3.6.1.4.1.6527.3.1.2.2.3.9.1.2.72|4|iom-sar-hm +1.3.6.1.4.1.6527.3.1.2.2.3.9.1.3.71|4|Integrated CPM card for SAR-Hm system +1.3.6.1.4.1.6527.3.1.2.2.3.9.1.3.72|4|Integrated IOM card for SAR-Hm system +1.3.6.1.4.1.6527.3.1.2.2.3.9.1.4.71|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.9.1.4.72|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.2.148|4|isa-ms-v +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.2.150|4|isa-tunnel-v +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.2.151|4|isa-bb-v +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.2.164|4|i6-10/100eth-tx +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.2.166|4|i2-sdi +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.2.167|4|i2-cellular +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.2.187|4|i1-wlan +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.3.148|4|Virtualized ISA Multi Service +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.3.150|4|Virtualized ISA Tunnel +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.3.151|4|Virtualized ISA Broadband applications +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.3.164|4|Integrated 6 port 10/100 Ethernet +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.3.166|4|Integrated 2 port RS-232 serial +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.3.167|4|Integrated cellular and GNSS +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.3.187|4|Integrated WLAN +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.4.148|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.4.150|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.4.151|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.4.164|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.4.166|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.4.167|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.10.1.4.187|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.17.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.21.1.2.1.1.1|4|default +1.3.6.1.4.1.6527.3.1.2.2.3.21.1.3.1.1.1|2|3 +1.3.6.1.4.1.6527.3.1.2.2.3.21.1.4.1.1.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.21.1.16.1.1.1|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.21.1.18.1.1.1|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.3.21.1.21.1.1.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.21.1.23.1.1.1|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.3.21.1.24.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.21.1.25.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.21.1.26.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.21.1.28.1.1.1|4|default +1.3.6.1.4.1.6527.3.1.2.2.3.22.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.24.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.29.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.33.1.1.1.1|66|10000 +1.3.6.1.4.1.6527.3.1.2.2.3.33.1.2.1.1|66|10000 +1.3.6.1.4.1.6527.3.1.2.2.3.33.1.3.1.1|66|10000 +1.3.6.1.4.1.6527.3.1.2.2.3.33.1.4.1.1|66|10000 +1.3.6.1.4.1.6527.3.1.2.2.3.33.1.5.1.1|2|1000 +1.3.6.1.4.1.6527.3.1.2.2.3.33.1.6.1.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.34.1.1.1.1.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.34.1.2.1.1.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.34.1.3.1.1.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.34.1.4.1.1.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.35.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.37.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.39.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.41.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.43.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.1.1.1|66|65535 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.2.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.5.1.1|66|131072 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.6.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.9.1.1|66|8191 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.10.1.1|66|6 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.11.1.1|66|16383 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.12.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.13.1.1|66|16383 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.14.1.1|66|6 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.15.1.1|66|4095 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.16.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.17.1.1|66|5119 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.18.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.19.1.1|66|131071 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.20.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.21.1.1|66|45 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.22.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.23.1.1|66|4095 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.24.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.25.1.1|66|4095 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.26.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.27.1.1|66|15 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.28.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.29.1.1|66|131071 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.30.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.31.1.1|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.32.1.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.33.1.1|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.34.1.1|66|1 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.35.1.1|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.36.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.37.1.1|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.38.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.39.1.1|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.40.1.1|66|1 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.41.1.1|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.42.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.43.1.1|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.44.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.45.1.1|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.46.1.1|66|1 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.47.1.1|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.48.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.49.1.1|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.50.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.51.1.1|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.52.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.53.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.45.1.54.1.1|66|368639 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.1.1.1.1|66|1791 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.2.1.1.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.3.1.1.1|66|2047 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.4.1.1.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.5.1.1.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.6.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.7.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.8.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.9.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.10.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.11.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.12.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.13.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.14.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.15.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.16.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.17.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.18.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.19.1.1.1|66|2047 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.20.1.1.1|66|1 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.21.1.1.1|66|2047 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.22.1.1.1|66|1 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.25.1.1.1|66|1024 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.26.1.1.1|66|667 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.27.1.1.1|66|514 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.28.1.1.1|66|153 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.29.1.1.1|66|8191 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.30.1.1.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.31.1.1.1|66|1 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.32.1.1.1|66|1 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.33.1.1.1|66|8159 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.34.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.35.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.36.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.37.1.1.1|66|8192 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.38.1.1.1|66|3 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.39.1.1.1|66|8192 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.40.1.1.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.41.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.42.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.43.1.1.1|66|2048 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.44.1.1.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.45.1.1.1|66|2048 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.46.1.1.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.47.1.1.1|66|8192 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.48.1.1.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.49.1.1.1|66|8192 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.50.1.1.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.51.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.52.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.53.1.1.1|66|2048 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.54.1.1.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.55.1.1.1|66|1024 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.56.1.1.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.57.1.1.1|66|2047 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.58.1.1.1|66|1 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.59.1.1.1|66|2047 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.60.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.61.1.1.1|66|131071 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.62.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.63.1.1.1|66|4095 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.64.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.65.1.1.1|66|65535 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.66.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.67.1.1.1|66|131071 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.68.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.69.1.1.1|66|4095 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.70.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.83.1.1.1|66|2047 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.84.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.85.1.1.1|66|2047 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.86.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.87.1.1.1|66|262143 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.88.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.89.1.1.1|66|31 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.90.1.1.1|66|2 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.101.1.1.1|66|31999 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.102.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.103.1.1.1|66|31999 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.104.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.105.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.106.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.107.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.108.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.109.1.1.1|66|15 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.110.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.137.1.1.1|66|1000 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.138.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.139.1.1.1|66|10000 +1.3.6.1.4.1.6527.3.1.2.2.3.46.1.140.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.47.1.5.1.1.1|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.47.1.5.1.1.2|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.47.1.5.1.1.3|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.47.1.5.1.1.4|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.47.1.5.1.1.5|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.47.1.5.1.1.6|66|63999 +1.3.6.1.4.1.6527.3.1.2.2.3.47.1.6.1.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.47.1.6.1.1.2|66|1 +1.3.6.1.4.1.6527.3.1.2.2.3.47.1.6.1.1.3|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.47.1.6.1.1.4|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.47.1.6.1.1.5|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.47.1.6.1.1.6|66|1 +1.3.6.1.4.1.6527.3.1.2.2.3.52.1.1.1.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.3.52.1.2.1.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.3.52.1.3.1.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.3.53.1.2.1.1.5|66|1 +1.3.6.1.4.1.6527.3.1.2.2.3.53.1.3.1.1.5|66|13 +1.3.6.1.4.1.6527.3.1.2.2.3.53.1.4.1.1.5|66|13 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.2.1.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.3.1.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.4.1.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.5.1.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.6.1.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.7.1.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.8.1.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.9.1.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.10.1.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.11.1.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.12.1.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.13.1.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.14.1.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.15.1.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.16.1.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.17.1.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.18.1.1|65|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.19.1.1|67|0 +1.3.6.1.4.1.6527.3.1.2.2.3.55.1.20.1.1|4|00 00 00 +1.3.6.1.4.1.6527.3.1.2.2.3.56.1.2.71.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.56.1.2.72.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.56.1.3.71.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.56.1.3.72.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.56.1.4.71.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.56.1.4.72.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.56.1.5.71.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.56.1.5.72.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.2.148.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.2.150.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.2.151.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.2.164.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.2.166.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.2.167.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.2.187.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.3.148.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.3.150.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.3.151.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.3.164.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.3.166.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.3.167.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.3.187.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.4.148.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.4.150.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.4.151.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.4.164.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.4.166.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.4.167.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.4.187.1|4|unrestricted +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.5.148.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.5.150.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.5.151.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.5.164.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.5.166.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.5.167.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.57.1.5.187.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.58.0|67|361 +1.3.6.1.4.1.6527.3.1.2.2.3.59.1.1.1.1|67|361 +1.3.6.1.4.1.6527.3.1.2.2.3.59.1.2.1.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.59.1.3.1.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.3.59.1.4.1.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.59.1.5.1.1|4|80 0 +1.3.6.1.4.1.6527.3.1.2.2.3.59.1.6.1.1|66|5 +1.3.6.1.4.1.6527.3.1.2.2.3.60.1.1.1.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.60.1.2.1.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.3.60.1.3.1.1|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.3.60.1.4.1.1|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.60.1.5.1.1|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.60.1.6.1.1|2|0 +1.3.6.1.4.1.6527.3.1.2.2.3.60.1.7.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.60.1.8.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.63.1.1.1.1|4| +1.3.6.1.4.1.6527.3.1.2.2.3.63.1.2.1.1|4| +1.3.6.1.4.1.6527.3.1.2.2.3.63.1.3.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.3.64.1.1.1.2.1|4| +1.3.6.1.4.1.6527.3.1.2.2.3.64.1.2.1.2.1|4| +1.3.6.1.4.1.6527.3.1.2.2.3.64.1.3.1.2.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.1.0|67|461573 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.35684352|67|2320 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.35717120|67|2320 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.37781504|67|461573 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.37814272|67|1676 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.37847040|67|1676 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.37879808|67|1676 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.37912576|67|191311 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.37945344|67|1676 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.39878656|67|1571 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.39911424|67|1571 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.41975808|67|1695 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.42008576|67|1695 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.42041344|67|1695 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.42074112|67|1695 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.44072960|67|1532 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.44105728|67|1532 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.46170112|67|1545 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.46202880|67|372 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.46235648|67|372 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.46268416|67|1545 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.46301184|67|1545 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.46333952|67|1545 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.46366720|67|1565 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.67141632|67|103 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.1493172258|67|364 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.1509949473|67|364 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.2.1.1509949478|67|364 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.35684352|66|46 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.35717120|66|46 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.37781504|66|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.37814272|66|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.37847040|66|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.37879808|66|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.37912576|66|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.37945344|66|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.39878656|66|36 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.39911424|66|36 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.41975808|66|51 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.42008576|66|51 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.42041344|66|51 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.42074112|66|51 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.44072960|66|20 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.44105728|66|20 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.46170112|66|24 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.46202880|66|24 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.46235648|66|24 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.46268416|66|24 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.46301184|66|24 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.46333952|66|24 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.46366720|66|24 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.67141632|66|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.1493172258|66|24 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.1509949473|66|24 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.3.1.1509949478|66|24 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.35684352|2|18 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.35717120|2|18 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.39878656|2|17 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.39911424|2|17 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.41975808|2|18 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.42008576|2|18 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.42041344|2|18 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.42074112|2|18 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.44072960|2|6 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.44105728|2|6 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.46170112|2|6 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.46202880|2|6 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.46235648|2|6 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.46268416|2|6 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.46301184|2|6 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.46333952|2|6 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.46366720|2|6 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.1493172258|2|6 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.1509949473|2|6 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.4.1.1509949478|2|6 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.35684352|4|Cellular +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.35717120|4|Cellular +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.37781504|4|LAB_SARH_01 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.37814272|4|10/100 Ethernet TX +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.37847040|4|10/100 Ethernet TX +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.37879808|4|10/100 Ethernet TX +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.37912576|4|10/100 Ethernet TX +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.37945344|4|10/100 Ethernet TX +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.39878656|4|RS-232 Serial +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.39911424|4|RS-232 Serial +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.41975808|4|Wireless LAN +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.42008576|4|Wireless LAN +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.42041344|4|Wireless LAN +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.42074112|4|Wireless LAN +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.44072960|4|IPsec +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.44105728|4|IPsec +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.46170112|4|Broadband +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.46202880|4|Broadband +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.46235648|4|Broadband +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.46268416|4|Broadband +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.46301184|4|Broadband +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.46333952|4|Broadband +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.46366720|4|Broadband +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.67141632|4|10/100 Ethernet TX +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.1493172258|4|Broadband +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.1509949473|4|Broadband +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.5.1.1509949478|4|Broadband +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.35684352|4|1/1/1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.35717120|4|1/1/2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.37781504|4|1/2/1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.37814272|4|1/2/2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.37847040|4|1/2/3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.37879808|4|1/2/4 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.37912576|4|1/2/5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.37945344|4|1/2/6 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.39878656|4|1/3/1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.39911424|4|1/3/2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.41975808|4|1/4/1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.42008576|4|1/4/2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.42041344|4|1/4/3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.42074112|4|1/4/4 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.44072960|4|1/5/1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.44105728|4|1/5/2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.46170112|4|1/6/nat-in-ip +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.46202880|4|1/6/nat-out-ip +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.46235648|4|1/6/nat-in-l2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.46268416|4|1/6/lns-net +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.46301184|4|1/6/lns-esm +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.46333952|4|1/6/nat-in-ds +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.46366720|4|1/6/lo-gre +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.67141632|4|A/1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.1493172258|4|bbg-1.nat-out-ip +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.1509949473|4|bbg-1.nat-in-ip +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.6.1.1509949478|4|bbg-1.nat-in-ds +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.35684352|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.35717120|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.37781504|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.37814272|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.37847040|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.37879808|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.37912576|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.37945344|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.39878656|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.39911424|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.41975808|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.42008576|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.42041344|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.42074112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.44072960|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.44105728|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.46170112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.46202880|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.46235648|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.46268416|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.46301184|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.46333952|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.46366720|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.67141632|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.1493172258|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.1509949473|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.7.1.1509949478|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.35684352|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.35717120|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.39878656|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.39911424|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.41975808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.42008576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.42041344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.42074112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.44072960|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.44105728|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.46170112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.46202880|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.46235648|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.46268416|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.46301184|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.46333952|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.46366720|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.1493172258|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.1509949473|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.8.1.1509949478|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.35684352|4x|CC66B20A6E47 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.35717120|4x|CC66B20A6E48 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.37781504|4x|CC66B20A6E49 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.37814272|4x|CC66B20A6E4A +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.37847040|4x|CC66B20A6E4B +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.37879808|4x|CC66B20A6E4C +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.37912576|4x|CC66B20A6E4D +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.37945344|4x|CC66B20A6E4E +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.39878656|4x|CC66B20A6E4F +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.39911424|4x|CC66B20A6E50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.41975808|4x|CC66B20A6E51 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.42008576|4x|CC66B20A6E52 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.42041344|4x|CC66B20A6E53 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.42074112|4x|CC66B20A6E54 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.44072960|4x|CC66B20A6E55 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.44105728|4x|CC66B20A6E56 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.46170112|4x|CC66B20A6E57 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.46202880|4x|000000020202 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.46235648|4x|000000010101 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.46268416|4x|CC66B20A6E5A +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.46301184|4x|CC66B20A6E5B +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.46333952|4x|CC66B20A6E5C +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.46366720|4x|CC66B20A6E5D +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.67141632|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.1493172258|4x|000000020202 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.1509949473|4x|000000010101 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.9.1.1509949478|4x|000000010101 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.35684352|4x|CC66B20A6E47 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.35717120|4x|CC66B20A6E48 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.37781504|4x|CC66B20A6E49 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.37814272|4x|CC66B20A6E4A +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.37847040|4x|CC66B20A6E4B +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.37879808|4x|CC66B20A6E4C +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.37912576|4x|CC66B20A6E4D +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.37945344|4x|CC66B20A6E4E +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.39878656|4x|CC66B20A6E4F +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.39911424|4x|CC66B20A6E50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.41975808|4x|CC66B20A6E51 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.42008576|4x|CC66B20A6E52 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.42041344|4x|CC66B20A6E53 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.42074112|4x|CC66B20A6E54 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.44072960|4x|CC66B20A6E55 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.44105728|4x|CC66B20A6E56 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.46170112|4x|CC66B20A6E57 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.46202880|4x|CC66B20A6E58 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.46235648|4x|CC66B20A6E59 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.46268416|4x|CC66B20A6E5A +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.46301184|4x|CC66B20A6E5B +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.46333952|4x|CC66B20A6E5C +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.46366720|4x|CC66B20A6E5D +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.67141632|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.1493172258|4x|CC66B20A7148 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.1509949473|4x|CC66B20A7147 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.10.1.1509949478|4x|CC66B20A714C +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.35684352|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.35717120|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.37781504|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.37879808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.37912576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.37945344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.41975808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.42008576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.42041344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.42074112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.44072960|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.44105728|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.46170112|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.46202880|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.46235648|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.46268416|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.46301184|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.46333952|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.46366720|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.1493172258|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.1509949473|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.11.1.1509949478|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.35684352|2|16 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.35717120|2|16 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.37814272|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.37847040|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.37879808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.37912576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.37945344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.39878656|2|15 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.39911424|2|15 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.41975808|2|17 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.42008576|2|17 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.42041344|2|17 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.42074112|2|17 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.44072960|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.44105728|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.46170112|2|10 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.46202880|2|10 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.46235648|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.46268416|2|10 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.46301184|2|10 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.46333952|2|10 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.46366720|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.67141632|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.1493172258|2|10 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.1509949473|2|10 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.12.1.1509949478|2|10 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.35684352|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.35717120|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.39878656|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.39911424|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.41975808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.42008576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.42041344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.42074112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.44072960|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.44105728|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.46170112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.46202880|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.46235648|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.46268416|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.46301184|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.46333952|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.46366720|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.1493172258|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.1509949473|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.13.1.1509949478|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.35684352|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.35717120|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.39878656|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.39911424|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.41975808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.42008576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.42041344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.42074112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.44072960|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.44105728|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.46170112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.46202880|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.46235648|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.46268416|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.46301184|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.46333952|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.46366720|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.1493172258|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.1509949473|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.14.1.1509949478|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.35684352|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.35717120|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.39878656|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.39911424|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.41975808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.42008576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.42041344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.42074112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.44072960|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.44105728|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.46170112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.46202880|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.46235648|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.46268416|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.46301184|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.46333952|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.46366720|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.1493172258|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.1509949473|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.15.1.1509949478|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.35684352|4x|8000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.35717120|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.37781504|4x|D080 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.37814272|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.37847040|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.37879808|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.37912576|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.37945344|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.39878656|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.39911424|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.41975808|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.42008576|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.42041344|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.42074112|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.44072960|4x|D080 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.44105728|4x|D080 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.46170112|4x|D080 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.46202880|4x|D080 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.46235648|4x|D080 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.46268416|4x|D080 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.46301184|4x|D080 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.46333952|4x|D080 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.46366720|4x|D080 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.67141632|4x|8080 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.1493172258|4x|D080 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.1509949473|4x|D080 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.16.1.1509949478|4x|D080 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.35684352|66|18 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.35717120|66|18 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.37781504|66|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.37814272|66|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.37847040|66|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.37879808|66|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.37912576|66|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.37945344|66|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.39878656|66|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.39911424|66|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.41975808|66|18 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.42008576|66|18 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.42041344|66|18 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.42074112|66|18 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.44072960|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.44105728|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.46170112|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.46202880|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.46235648|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.46268416|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.46301184|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.46333952|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.46366720|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.67141632|66|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.1493172258|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.1509949473|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.17.1.1509949478|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.35684352|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.39878656|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.39911424|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.41975808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.42008576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.42041344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.42074112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.44072960|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.44105728|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.46170112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.46202880|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.46235648|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.46268416|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.46301184|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.46333952|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.46366720|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.1493172258|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.1509949473|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.25.1.1509949478|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.35684352|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.35717120|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.39878656|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.39911424|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.41975808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.42008576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.42041344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.42074112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.44072960|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.44105728|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.46170112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.46202880|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.46235648|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.46268416|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.46301184|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.46333952|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.46366720|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.1493172258|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.1509949473|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.27.1.1509949478|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.35684352|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.39878656|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.39911424|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.41975808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.42008576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.42041344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.42074112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.44072960|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.44105728|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.46170112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.46202880|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.46235648|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.46268416|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.46301184|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.46333952|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.46366720|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.1493172258|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.1509949473|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.28.1.1509949478|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.35684352|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.35717120|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.37781504|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.37814272|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.37847040|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.37879808|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.37912576|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.37945344|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.39878656|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.39911424|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.41975808|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.42008576|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.42041344|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.42074112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.44072960|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.44105728|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.46170112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.46202880|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.46235648|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.46268416|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.46301184|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.46333952|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.46366720|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.67141632|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.1493172258|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.1509949473|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.29.1.1509949478|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.35684352|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.39878656|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.39911424|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.41975808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.42008576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.42041344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.42074112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.44072960|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.44105728|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.46170112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.46202880|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.46235648|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.46268416|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.46301184|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.46333952|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.46366720|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.1493172258|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.1509949473|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.30.1.1509949478|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.35684352|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.35717120|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.39878656|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.39911424|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.41975808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.42008576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.42041344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.42074112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.44072960|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.44105728|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.46170112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.46202880|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.46235648|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.46268416|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.46301184|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.46333952|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.46366720|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.1493172258|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.1509949473|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.31.1.1509949478|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.35684352|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.35717120|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.37781504|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.37814272|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.37847040|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.37879808|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.37912576|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.37945344|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.39878656|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.39911424|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.41975808|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.42008576|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.42041344|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.42074112|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.44072960|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.44105728|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.46170112|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.46202880|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.46235648|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.46268416|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.46301184|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.46333952|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.46366720|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.67141632|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.1493172258|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.1509949473|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.32.1.1509949478|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.35684352|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.39878656|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.39911424|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.41975808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.42008576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.42041344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.42074112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.44072960|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.44105728|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.46170112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.46202880|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.46235648|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.46268416|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.46301184|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.46333952|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.46366720|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.1493172258|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.1509949473|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.33.1.1509949478|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.35684352|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.35717120|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.39878656|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.39911424|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.41975808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.42008576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.42041344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.42074112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.44072960|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.44105728|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.46170112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.46202880|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.46235648|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.46268416|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.46301184|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.46333952|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.46366720|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.1493172258|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.1509949473|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.34.1.1509949478|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.35684352|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.35717120|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.37781504|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.37814272|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.37847040|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.37879808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.37912576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.37945344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.41975808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.42008576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.42041344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.42074112|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.44072960|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.44105728|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.46170112|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.46202880|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.46235648|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.46268416|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.46301184|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.46333952|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.46366720|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.67141632|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.1493172258|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.1509949473|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.35.1.1509949478|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.35684352|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.35717120|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.37781504|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.39878656|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.39911424|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.41975808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.42008576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.42041344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.42074112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.44072960|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.44105728|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.46170112|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.46202880|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.46235648|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.46268416|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.46301184|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.46333952|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.46366720|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.67141632|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.1493172258|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.1509949473|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.36.1.1509949478|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.35684352|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.35717120|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.39878656|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.39911424|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.41975808|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.42008576|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.42041344|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.42074112|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.44072960|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.44105728|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.46170112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.46202880|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.46235648|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.46268416|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.46301184|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.46333952|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.46366720|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.1493172258|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.1509949473|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.37.1.1509949478|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.35684352|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.35717120|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.37814272|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.37847040|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.37879808|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.37912576|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.37945344|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.39878656|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.39911424|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.41975808|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.42008576|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.42041344|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.42074112|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.44072960|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.44105728|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.46170112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.46202880|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.46235648|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.46268416|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.46301184|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.46333952|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.46366720|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.1493172258|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.1509949473|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.38.1.1509949478|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.35684352|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.35717120|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.37781504|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.37814272|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.37847040|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.37879808|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.37912576|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.37945344|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.39878656|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.39911424|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.41975808|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.42008576|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.42041344|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.42074112|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.44072960|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.44105728|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.46170112|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.46202880|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.46235648|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.46268416|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.46301184|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.46333952|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.46366720|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.67141632|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.1493172258|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.1509949473|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.39.1.1509949478|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.35684352|2|4 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.35717120|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.37781504|2|4 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.37814272|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.37847040|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.37879808|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.37912576|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.37945344|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.39878656|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.39911424|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.41975808|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.42008576|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.42041344|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.42074112|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.44072960|2|4 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.44105728|2|4 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.46170112|2|4 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.46202880|2|4 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.46235648|2|4 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.46268416|2|4 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.46301184|2|4 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.46333952|2|4 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.46366720|2|4 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.67141632|2|4 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.1493172258|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.1509949473|2|4 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.40.1.1509949478|2|4 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.35684352|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.35717120|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.39878656|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.39911424|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.41975808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.42008576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.42041344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.42074112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.44072960|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.44105728|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.46170112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.46202880|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.46235648|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.46268416|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.46301184|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.46333952|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.46366720|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.1493172258|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.1509949473|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.41.1.1509949478|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.35684352|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.39878656|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.39911424|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.41975808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.42008576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.42041344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.42074112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.44072960|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.44105728|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.46170112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.46202880|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.46235648|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.46268416|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.46301184|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.46333952|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.46366720|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.1493172258|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.1509949473|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.42.1.1509949478|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.35684352|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.35717120|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.37781504|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.37814272|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.37847040|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.37879808|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.37912576|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.37945344|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.39878656|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.39911424|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.41975808|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.42008576|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.42041344|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.42074112|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.44072960|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.44105728|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.46170112|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.46202880|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.46235648|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.46268416|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.46301184|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.46333952|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.46366720|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.67141632|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.1493172258|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.1509949473|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.43.1.1509949478|6|0.0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.35684352|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.35717120|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.39878656|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.39911424|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.41975808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.42008576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.42041344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.42074112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.44072960|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.44105728|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.46170112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.46202880|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.46235648|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.46268416|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.46301184|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.46333952|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.46366720|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.1493172258|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.1509949473|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.44.1.1509949478|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.35684352|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.35717120|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.37781504|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.37814272|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.37847040|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.37879808|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.37912576|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.37945344|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.39878656|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.39911424|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.41975808|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.42008576|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.42041344|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.42074112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.44072960|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.44105728|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.46170112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.46202880|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.46235648|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.46268416|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.46301184|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.46333952|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.46366720|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.67141632|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.1493172258|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.1509949473|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.45.1.1509949478|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.35684352|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.35717120|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.37781504|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.37814272|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.37847040|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.37879808|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.37912576|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.37945344|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.39878656|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.39911424|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.41975808|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.42008576|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.42041344|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.42074112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.44072960|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.44105728|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.46170112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.46202880|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.46235648|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.46268416|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.46301184|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.46333952|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.46366720|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.67141632|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.1493172258|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.1509949473|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.46.1.1509949478|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.35684352|67|6815 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.35717120|67|69 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.37781504|67|459914 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.37814272|67|366 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.37847040|67|366 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.37879808|67|366 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.37912576|67|191311 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.37945344|67|367 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.39878656|67|69 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.39911424|67|69 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.41975808|67|69 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.42008576|67|69 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.42041344|67|69 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.42074112|67|69 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.44072960|67|1565 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.44105728|67|1565 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.46170112|67|1577 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.46202880|67|1585 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.46235648|67|1588 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.46268416|67|1592 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.46301184|67|1595 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.46333952|67|1611 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.46366720|67|1631 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.67141632|67|103 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.1493172258|67|1621 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.1509949473|67|1631 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.48.1.1509949478|67|1631 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.35684352|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.35717120|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.39878656|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.39911424|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.41975808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.42008576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.42041344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.42074112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.44072960|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.44105728|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.46170112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.46202880|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.46235648|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.46268416|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.46301184|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.46333952|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.46366720|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.1493172258|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.1509949473|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.49.1.1509949478|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.35684352|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.35717120|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.37781504|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.37814272|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.37847040|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.37879808|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.37912576|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.37945344|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.39878656|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.39911424|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.41975808|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.42008576|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.42041344|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.42074112|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.44072960|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.44105728|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.46170112|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.46202880|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.46235648|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.46268416|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.46301184|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.46333952|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.46366720|4|default +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.67141632|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.1493172258|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.1509949473|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.50.1.1509949478|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.35684352|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.35717120|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.39878656|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.39911424|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.41975808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.42008576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.42041344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.42074112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.44072960|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.44105728|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.46170112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.46202880|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.46235648|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.46268416|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.46301184|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.46333952|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.46366720|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.1493172258|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.1509949473|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.52.1.1509949478|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.35684352|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.39878656|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.39911424|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.41975808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.42008576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.42041344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.42074112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.44072960|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.44105728|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.46170112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.46202880|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.46235648|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.46268416|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.46301184|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.46333952|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.46366720|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.1493172258|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.1509949473|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.53.1.1509949478|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.35684352|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.35717120|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.39878656|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.39911424|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.41975808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.42008576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.42041344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.42074112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.44072960|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.44105728|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.46170112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.46202880|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.46235648|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.46268416|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.46301184|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.46333952|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.46366720|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.1493172258|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.1509949473|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.54.1.1509949478|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.35684352|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.35717120|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.37781504|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.37814272|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.37847040|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.37879808|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.37912576|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.37945344|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.39878656|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.39911424|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.41975808|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.42008576|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.42041344|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.42074112|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.44072960|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.44105728|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.46170112|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.46202880|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.46235648|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.46268416|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.46301184|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.46333952|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.46366720|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.67141632|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.1493172258|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.1509949473|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.55.1.1509949478|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.35684352|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.35717120|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.37781504|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.37814272|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.37847040|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.37879808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.37912576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.37945344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.41975808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.42008576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.42041344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.42074112|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.44072960|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.44105728|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.46170112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.46202880|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.46235648|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.46268416|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.46301184|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.46333952|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.46366720|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.67141632|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.1493172258|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.1509949473|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.56.1.1509949478|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.35684352|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.35717120|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.37781504|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.37814272|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.37847040|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.37879808|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.37912576|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.37945344|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.39878656|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.39911424|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.41975808|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.42008576|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.42041344|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.42074112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.44072960|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.44105728|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.46170112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.46202880|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.46235648|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.46268416|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.46301184|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.46333952|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.46366720|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.67141632|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.1493172258|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.1509949473|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.57.1.1509949478|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.35684352|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.35717120|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.37781504|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.37814272|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.37847040|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.37879808|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.37912576|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.37945344|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.39878656|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.39911424|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.41975808|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.42008576|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.42041344|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.42074112|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.44072960|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.44105728|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.46170112|67|1611 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.46202880|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.46235648|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.46268416|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.46301184|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.46333952|67|1611 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.46366720|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.67141632|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.1493172258|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.1509949473|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.58.1.1509949478|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.35684352|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.35717120|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.37781504|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.37814272|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.37847040|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.37879808|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.37912576|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.37945344|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.39878656|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.39911424|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.41975808|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.42008576|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.42041344|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.42074112|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.44072960|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.44105728|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.46170112|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.46202880|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.46235648|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.46268416|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.46301184|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.46333952|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.46366720|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.67141632|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.1493172258|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.1509949473|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.62.1.1509949478|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.35684352|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.35717120|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.37781504|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.37814272|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.37847040|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.37879808|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.37912576|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.37945344|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.39878656|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.39911424|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.41975808|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.42008576|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.42041344|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.42074112|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.44072960|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.44105728|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.46170112|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.46202880|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.46235648|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.46268416|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.46301184|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.46333952|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.46366720|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.67141632|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.1493172258|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.1509949473|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.63.1.1509949478|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.35684352|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.35717120|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.39878656|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.39911424|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.41975808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.42008576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.42041344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.42074112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.44072960|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.44105728|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.46170112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.46202880|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.46235648|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.46268416|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.46301184|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.46333952|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.46366720|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.1493172258|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.1509949473|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.64.1.1509949478|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.35684352|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.39878656|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.39911424|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.41975808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.42008576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.42041344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.42074112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.44072960|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.44105728|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.46170112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.46202880|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.46235648|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.46268416|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.46301184|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.46333952|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.46366720|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.1493172258|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.1509949473|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.65.1.1509949478|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.35684352|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.35717120|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.37781504|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.37814272|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.37847040|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.37879808|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.37912576|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.37945344|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.39878656|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.39911424|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.41975808|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.42008576|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.42041344|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.42074112|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.44072960|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.44105728|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.46170112|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.46202880|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.46235648|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.46268416|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.46301184|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.46333952|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.46366720|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.67141632|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.1493172258|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.1509949473|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.66.1.1509949478|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.35684352|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.39878656|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.39911424|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.41975808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.42008576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.42041344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.42074112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.44072960|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.44105728|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.46170112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.46202880|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.46235648|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.46268416|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.46301184|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.46333952|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.46366720|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.1493172258|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.1509949473|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.67.1.1509949478|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.35684352|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.35717120|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.39878656|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.39911424|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.41975808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.42008576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.42041344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.42074112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.44072960|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.44105728|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.46170112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.46202880|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.46235648|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.46268416|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.46301184|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.46333952|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.46366720|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.1493172258|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.1509949473|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.68.1.1509949478|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.35684352|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.35717120|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.39878656|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.39911424|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.41975808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.42008576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.42041344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.42074112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.44072960|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.44105728|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.46170112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.46202880|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.46235648|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.46268416|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.46301184|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.46333952|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.46366720|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.1493172258|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.1509949473|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.69.1.1509949478|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.35684352|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.35717120|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.39878656|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.39911424|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.41975808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.42008576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.42041344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.42074112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.44072960|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.44105728|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.46170112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.46202880|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.46235648|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.46268416|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.46301184|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.46333952|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.46366720|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.1493172258|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.1509949473|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.70.1.1509949478|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.35684352|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.35717120|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.37781504|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.37814272|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.37847040|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.37879808|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.37912576|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.37945344|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.39878656|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.39911424|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.41975808|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.42008576|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.42041344|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.42074112|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.44072960|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.44105728|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.46170112|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.46202880|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.46235648|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.46268416|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.46301184|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.46333952|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.46366720|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.67141632|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.1493172258|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.1509949473|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.71.1.1509949478|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.35684352|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.35717120|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.37781504|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.37814272|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.37847040|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.37879808|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.37912576|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.37945344|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.39878656|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.39911424|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.41975808|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.42008576|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.42041344|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.42074112|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.44072960|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.44105728|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.46170112|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.46202880|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.46235648|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.46268416|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.46301184|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.46333952|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.46366720|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.67141632|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.1493172258|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.1509949473|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.72.1.1509949478|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.35684352|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.35717120|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.37781504|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.37814272|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.37847040|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.37879808|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.37912576|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.37945344|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.39878656|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.39911424|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.41975808|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.42008576|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.42041344|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.42074112|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.44072960|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.44105728|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.46170112|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.46202880|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.46235648|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.46268416|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.46301184|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.46333952|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.46366720|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.67141632|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.1493172258|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.1509949473|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.73.1.1509949478|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.35684352|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.35717120|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.37781504|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.37814272|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.37847040|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.37879808|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.37912576|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.37945344|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.39878656|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.39911424|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.41975808|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.42008576|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.42041344|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.42074112|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.44072960|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.44105728|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.46170112|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.46202880|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.46235648|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.46268416|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.46301184|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.46333952|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.46366720|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.67141632|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.1493172258|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.1509949473|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.74.1.1509949478|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.35684352|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.35717120|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.39878656|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.39911424|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.41975808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.42008576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.42041344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.42074112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.44072960|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.44105728|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.46170112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.46202880|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.46235648|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.46268416|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.46301184|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.46333952|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.46366720|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.1493172258|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.1509949473|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.75.1.1509949478|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.35684352|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.35717120|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.37781504|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.37814272|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.37847040|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.37879808|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.37912576|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.37945344|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.39878656|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.39911424|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.41975808|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.42008576|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.42041344|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.42074112|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.44072960|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.44105728|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.46170112|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.46202880|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.46235648|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.46268416|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.46301184|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.46333952|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.46366720|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.67141632|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.1493172258|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.1509949473|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.76.1.1509949478|66|5000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.35684352|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.35717120|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.39878656|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.39911424|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.41975808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.42008576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.42041344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.42074112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.44072960|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.44105728|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.46170112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.46202880|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.46235648|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.46268416|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.46301184|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.46333952|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.46366720|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.1493172258|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.1509949473|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.77.1.1509949478|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.35684352|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.39878656|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.39911424|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.41975808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.42008576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.42041344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.42074112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.44072960|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.44105728|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.46170112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.46202880|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.46235648|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.46268416|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.46301184|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.46333952|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.46366720|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.1493172258|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.1509949473|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.78.1.1509949478|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.35684352|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.35717120|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.37781504|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.37814272|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.37847040|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.37879808|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.37912576|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.37945344|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.39878656|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.39911424|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.41975808|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.42008576|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.42041344|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.42074112|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.44072960|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.44105728|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.46170112|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.46202880|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.46235648|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.46268416|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.46301184|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.46333952|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.46366720|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.67141632|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.1493172258|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.1509949473|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.79.1.1509949478|4x|000000000000 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.35684352|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.35717120|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.39878656|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.39911424|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.41975808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.42008576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.42041344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.42074112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.44072960|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.44105728|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.46170112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.46202880|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.46235648|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.46268416|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.46301184|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.46333952|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.46366720|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.1493172258|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.1509949473|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.80.1.1509949478|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.35684352|65|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.35717120|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.37781504|65|5 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.37814272|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.37847040|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.37879808|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.37912576|65|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.37945344|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.39878656|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.39911424|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.41975808|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.42008576|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.42041344|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.42074112|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.44072960|65|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.44105728|65|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.46170112|65|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.46202880|65|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.46235648|65|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.46268416|65|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.46301184|65|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.46333952|65|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.46366720|65|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.67141632|65|1 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.1493172258|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.1509949473|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.81.1.1509949478|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.35684352|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.35717120|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.39878656|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.39911424|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.41975808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.42008576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.42041344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.42074112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.44072960|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.44105728|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.46170112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.46202880|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.46235648|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.46268416|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.46301184|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.46333952|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.46366720|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.1493172258|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.1509949473|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.88.1.1509949478|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.35684352|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.35717120|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.39878656|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.39911424|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.41975808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.42008576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.42041344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.42074112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.44072960|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.44105728|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.46170112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.46202880|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.46235648|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.46268416|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.46301184|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.46333952|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.46366720|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.1493172258|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.1509949473|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.90.1.1509949478|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.35684352|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.35717120|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.37781504|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.37814272|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.37847040|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.37879808|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.37912576|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.37945344|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.39878656|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.39911424|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.41975808|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.42008576|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.42041344|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.42074112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.44072960|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.44105728|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.46170112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.46202880|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.46235648|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.46268416|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.46301184|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.46333952|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.46366720|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.67141632|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.1493172258|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.1509949473|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.93.1.1509949478|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.35684352|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.35717120|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.37781504|4|_default-port-policy +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.37814272|4|_default-port-policy +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.37847040|4|_default-port-policy +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.37879808|4|_default-port-policy +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.37912576|4|_default-port-policy +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.37945344|4|_default-port-policy +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.39878656|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.39911424|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.41975808|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.42008576|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.42041344|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.42074112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.44072960|4|_default-port-policy +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.44105728|4|_default-port-policy +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.46170112|4|_default-port-policy +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.46202880|4|_default-port-policy +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.46235648|4|_default-port-policy +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.46268416|4|_default-port-policy +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.46301184|4|_default-port-policy +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.46333952|4|_default-port-policy +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.46366720|4|_default-port-policy +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.67141632|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.1493172258|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.1509949473|4| +1.3.6.1.4.1.6527.3.1.2.2.4.2.1.94.1.1509949478|4| +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.35684352|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.35717120|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.37781504|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.37814272|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.37847040|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.37879808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.37912576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.37945344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.41975808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.42008576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.42041344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.42074112|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.44072960|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.44105728|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.46170112|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.46202880|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.46235648|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.46268416|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.46301184|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.46333952|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.46366720|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.67141632|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.68190208|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.1493172258|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.1509949473|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.1.1.1509949478|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.35684352|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.39878656|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.39911424|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.41975808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.42008576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.42041344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.42074112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.44072960|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.44105728|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.46170112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.46202880|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.46235648|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.46268416|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.46301184|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.46333952|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.46366720|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.68190208|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.1493172258|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.1509949473|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.2.1.1509949478|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.35684352|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.35717120|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.39878656|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.39911424|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.41975808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.42008576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.42041344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.42074112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.44072960|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.44105728|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.46170112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.46202880|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.46235648|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.46268416|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.46301184|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.46333952|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.46366720|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.68190208|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.1493172258|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.1509949473|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.3.1.1509949478|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.35684352|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.39878656|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.39911424|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.41975808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.42008576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.42041344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.42074112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.44072960|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.44105728|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.46170112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.46202880|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.46235648|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.46268416|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.46301184|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.46333952|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.46366720|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.68190208|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.1493172258|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.1509949473|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.4.1.1509949478|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.35684352|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.35717120|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.37781504|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.37814272|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.37847040|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.37879808|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.37912576|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.37945344|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.39878656|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.39911424|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.41975808|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.42008576|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.42041344|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.42074112|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.44072960|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.44105728|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.46170112|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.46202880|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.46235648|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.46268416|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.46301184|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.46333952|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.46366720|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.67141632|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.68190208|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.1493172258|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.1509949473|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.5.1.1509949478|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.35684352|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.35717120|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.37781504|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.37814272|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.37847040|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.37879808|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.37912576|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.37945344|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.39878656|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.39911424|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.41975808|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.42008576|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.42041344|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.42074112|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.44072960|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.44105728|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.46170112|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.46202880|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.46235648|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.46268416|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.46301184|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.46333952|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.46366720|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.67141632|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.68190208|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.1493172258|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.1509949473|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.6.1.1509949478|4x|00000101000000002B0000 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.35684352|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.39878656|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.39911424|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.41975808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.42008576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.42041344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.42074112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.44072960|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.44105728|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.46170112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.46202880|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.46235648|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.46268416|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.46301184|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.46333952|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.46366720|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.68190208|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.1493172258|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.1509949473|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.7.1.1509949478|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.35684352|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.35717120|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.37781504|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.37814272|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.37847040|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.37879808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.37912576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.37945344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.41975808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.42008576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.42041344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.42074112|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.44072960|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.44105728|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.46170112|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.46202880|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.46235648|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.46268416|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.46301184|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.46333952|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.46366720|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.67141632|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.68190208|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.1493172258|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.1509949473|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.3.1.8.1.1509949478|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.1.1.37781504|66|1622 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.1.1.37814272|66|1622 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.1.1.37847040|66|1514 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.1.1.37879808|66|1514 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.1.1.37912576|66|1514 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.1.1.37945344|66|1622 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.1.1.67141632|66|1514 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.2.1.37781504|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.2.1.37814272|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.2.1.37847040|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.2.1.37879808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.2.1.37912576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.2.1.37945344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.2.1.67141632|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.3.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.3.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.3.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.3.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.3.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.3.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.3.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.4.1.37781504|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.4.1.37814272|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.4.1.37847040|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.4.1.37879808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.4.1.37912576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.4.1.37945344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.4.1.67141632|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.5.1.37781504|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.5.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.5.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.5.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.5.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.5.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.5.1.67141632|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.6.1.37781504|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.6.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.6.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.6.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.6.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.6.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.6.1.67141632|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.7.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.7.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.7.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.7.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.7.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.7.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.7.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.8.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.8.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.8.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.8.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.8.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.8.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.8.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.9.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.9.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.9.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.9.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.9.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.9.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.9.1.67141632|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.10.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.10.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.10.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.10.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.10.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.10.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.10.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.11.1.37781504|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.11.1.37814272|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.11.1.37847040|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.11.1.37879808|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.11.1.37912576|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.11.1.37945344|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.11.1.67141632|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.12.1.37781504|66|33024 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.12.1.37814272|66|33024 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.12.1.37847040|66|33024 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.12.1.37879808|66|33024 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.12.1.37912576|66|33024 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.12.1.37945344|66|33024 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.12.1.67141632|66|33024 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.13.1.37781504|66|33024 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.13.1.37814272|66|33024 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.13.1.37847040|66|33024 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.13.1.37879808|66|33024 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.13.1.37912576|66|33024 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.13.1.37945344|66|33024 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.13.1.67141632|66|33024 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.14.1.37781504|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.14.1.37814272|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.14.1.37847040|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.14.1.37879808|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.14.1.37912576|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.14.1.37945344|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.14.1.67141632|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.15.1.37781504|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.15.1.37814272|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.15.1.37847040|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.15.1.37879808|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.15.1.37912576|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.15.1.37945344|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.15.1.67141632|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.16.1.37781504|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.16.1.37814272|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.16.1.37847040|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.16.1.37879808|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.16.1.37912576|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.16.1.37945344|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.16.1.67141632|4x|0000 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.17.1.37781504|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.17.1.37814272|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.17.1.37847040|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.17.1.37879808|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.17.1.37912576|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.17.1.37945344|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.17.1.67141632|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.18.1.37781504|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.18.1.37814272|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.18.1.37847040|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.18.1.37879808|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.18.1.37912576|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.18.1.37945344|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.18.1.67141632|65|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.19.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.19.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.19.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.19.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.19.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.19.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.19.1.67141632|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.20.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.20.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.20.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.20.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.20.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.20.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.20.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.21.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.21.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.21.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.21.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.21.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.21.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.21.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.22.1.37781504|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.22.1.37814272|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.22.1.37847040|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.22.1.37879808|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.22.1.37912576|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.22.1.37945344|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.22.1.67141632|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.23.1.37781504|66|120 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.23.1.37814272|66|120 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.23.1.37847040|66|120 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.23.1.37879808|66|120 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.23.1.37912576|66|120 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.23.1.37945344|66|120 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.23.1.67141632|66|120 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.24.1.37781504|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.24.1.37814272|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.24.1.37847040|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.24.1.37879808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.24.1.37912576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.24.1.37945344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.24.1.67141632|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.25.1.37781504|66|35047 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.25.1.37814272|66|35047 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.25.1.37847040|66|35047 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.25.1.37879808|66|35047 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.25.1.37912576|66|35047 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.25.1.37945344|66|35047 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.25.1.67141632|66|35047 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.28.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.28.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.28.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.28.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.28.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.28.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.28.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.29.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.29.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.29.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.29.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.29.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.29.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.29.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.30.1.37781504|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.30.1.37814272|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.30.1.37847040|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.30.1.37879808|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.30.1.37912576|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.30.1.37945344|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.30.1.67141632|2|3 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.31.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.31.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.31.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.31.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.31.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.31.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.31.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.32.1.37781504|66|254 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.32.1.37814272|66|254 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.32.1.37847040|66|254 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.32.1.37879808|66|254 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.32.1.37912576|66|254 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.32.1.37945344|66|254 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.32.1.67141632|66|254 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.33.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.33.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.33.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.33.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.33.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.33.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.33.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.34.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.34.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.34.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.34.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.34.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.34.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.34.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.35.1.37781504|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.35.1.37814272|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.35.1.37847040|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.35.1.37879808|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.35.1.37912576|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.35.1.37945344|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.35.1.67141632|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.36.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.36.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.36.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.36.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.36.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.36.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.36.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.37.1.37781504|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.37.1.37814272|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.37.1.37847040|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.37.1.37879808|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.37.1.37912576|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.37.1.37945344|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.37.1.67141632|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.38.1.37781504|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.38.1.37814272|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.38.1.37847040|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.38.1.37879808|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.38.1.37912576|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.38.1.37945344|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.38.1.67141632|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.39.1.37781504|4x|00 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.39.1.37814272|4x|00 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.39.1.37847040|4x|00 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.39.1.37879808|4x|00 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.39.1.37912576|4x|00 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.39.1.37945344|4x|00 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.39.1.67141632|4x|00 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.40.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.40.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.40.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.40.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.40.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.40.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.40.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.41.1.37781504|66|64 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.41.1.37814272|66|64 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.41.1.37847040|66|64 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.41.1.37879808|66|64 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.41.1.37912576|66|64 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.41.1.37945344|66|64 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.41.1.67141632|66|64 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.42.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.42.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.42.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.42.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.42.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.42.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.42.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.43.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.43.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.43.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.43.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.43.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.43.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.43.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.44.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.44.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.44.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.44.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.44.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.44.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.44.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.46.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.46.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.46.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.46.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.46.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.46.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.46.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.47.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.47.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.47.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.47.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.47.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.47.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.47.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.48.1.37781504|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.48.1.37814272|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.48.1.37847040|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.48.1.37879808|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.48.1.37912576|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.48.1.37945344|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.48.1.67141632|66|100 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.49.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.49.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.49.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.49.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.49.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.49.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.49.1.67141632|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.50.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.50.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.50.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.50.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.50.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.50.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.50.1.67141632|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.52.1.37781504|66|300 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.52.1.37814272|66|300 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.52.1.37847040|66|300 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.52.1.37879808|66|300 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.52.1.37912576|66|300 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.52.1.37945344|66|300 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.52.1.67141632|66|300 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.53.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.53.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.53.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.53.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.53.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.53.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.53.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.54.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.54.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.54.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.54.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.54.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.54.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.54.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.55.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.55.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.55.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.55.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.55.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.55.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.55.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.56.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.56.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.56.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.56.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.56.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.56.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.56.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.57.1.37781504|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.57.1.37814272|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.57.1.37847040|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.57.1.37879808|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.57.1.37912576|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.57.1.37945344|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.57.1.67141632|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.58.1.37781504|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.58.1.37814272|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.58.1.37847040|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.58.1.37879808|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.58.1.37912576|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.58.1.37945344|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.58.1.67141632|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.59.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.59.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.59.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.59.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.59.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.59.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.59.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.65.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.65.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.65.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.65.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.65.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.65.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.4.1.65.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.1|4|Unknown +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.2|4|10/100 Ethernet TX +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.3|4|100Mb Ethernet FX +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.6|4|1-Gig Ethernet dual fiber +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.7|4|OC-3 SONET/SDH +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.8|4|OC-12 SONET/SDH +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.9|4|OC-48 SONET/SDH +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.10|4|OC-192 SONET/SDH +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.11|4|10-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.12|4|OC-3/OC-12 SONET/SDH +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.13|4|Virtual Port +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.14|4|DS3/E3 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.15|4|10/100/Gig Ethernet TX +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.16|4|1-Gig Ethernet SFP +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.17|4|10/100/Gig Ethernet SFP +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.19|4|DS1/E1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.20|4|IPsec +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.21|4|Application Assurance +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.22|4|Video MDA +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.23|4|Mobil Gateway +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.24|4|Broadband +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.25|4|40-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.26|4|OC-768 SONET/SDH +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.27|4|100-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.28|4|Cross Connect Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.29|4|IP Reas MDA +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.30|4|TMS +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.34|4|10/100/Gig Ethernet Combo +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.35|4|40/100-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.36|4|RS-232 Serial +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.46|4|Cellular +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.47|4|GNSS receiver +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.48|4|1-Gig/10-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.49|4|QSFP28 Connector +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.50|4|25-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.51|4|Wireless LAN +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.52|4|Configurable speed Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.53|4|400-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.54|4|100-Gig Flex-T Member +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.55|4|Flex-T Client +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.56|4|CFP8 Connector +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.57|4|QSFP-DD Connector +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.58|4|CFP2 Connector (2x100G) +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.59|4|10-Gig/25-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.60|4|SFP28 Connector +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.63|4|SFP-DD Connector +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.64|4|SFP56 Connector +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.65|4|50-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.2.66|4|100Mb/1-Gig/10-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.1|4|Unknown +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.2|4|10/100 Ethernet TX +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.3|4|100Mb Ethernet FX +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.6|4|1-Gig Ethernet dual fiber +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.7|4|OC-3 SONET/SDH +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.8|4|OC-12 SONET/SDH +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.9|4|OC-48 SONET/SDH +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.10|4|OC-192 SONET/SDH +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.11|4|10-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.12|4|OC-3/OC-12 SONET/SDH +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.13|4|Virtual Port +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.14|4|DS3/E3 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.15|4|10/100/Gig Ethernet TX +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.16|4|1-Gig Ethernet SFP +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.17|4|10/100/Gig Ethernet SFP +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.19|4|DS1/E1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.20|4|IPsec +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.21|4|Application Assurance +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.22|4|Video MDA +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.23|4|Mobil Gateway +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.24|4|Broadband +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.25|4|40-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.26|4|OC-768 SONET/SDH +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.27|4|100-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.28|4|Cross Connect Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.29|4|IP Reas MDA +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.30|4|TMS +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.34|4|10/100/Gig Ethernet Combo +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.35|4|40/100-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.36|4|RS-232 Serial +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.46|4|Cellular +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.47|4|GNSS receiver +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.48|4|1-Gig/10-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.49|4|QSFP28 Connector +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.50|4|25-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.51|4|Wireless LAN +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.52|4|Configurable speed Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.53|4|400-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.54|4|100-Gig Flex-T Member +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.55|4|Flex-T Client +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.56|4|CFP8 Connector +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.57|4|QSFP-DD Connector +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.58|4|CFP2 Connector (2x100G) +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.59|4|10-Gig/25-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.60|4|SFP28 Connector +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.63|4|SFP-DD Connector +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.64|4|SFP56 Connector +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.65|4|50-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.3.66|4|100Mb/1-Gig/10-Gig Ethernet +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.2|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.3|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.6|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.7|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.8|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.9|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.10|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.11|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.12|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.13|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.14|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.15|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.16|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.17|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.19|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.20|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.21|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.22|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.23|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.24|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.25|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.26|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.27|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.28|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.29|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.30|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.34|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.35|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.36|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.46|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.47|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.48|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.49|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.50|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.51|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.52|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.53|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.54|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.55|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.56|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.57|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.58|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.59|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.60|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.63|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.64|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.65|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.7.1.4.66|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.1|4|Unknown +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.2|4|RJ-45 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.3|4|BNC Coax +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.4|4|Mini MT-RJ +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.5|4|SC Duplex +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.6|4|Small Form Factor Plugin (SFP) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.7|4|LC Duplex +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.8|4|Small Form Factor Plugin (XFP) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.9|4|SC Simplex +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.10|4|RJ-48C +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.11|4|Small Form Factor Plugin (CFP) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.12|4|Small Form Factor Plugin (QSFP) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.13|4|MRJ-21 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.14|4|Small Form Factor Plugin (CXP) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.15|4|Small Form Factor Plugin (CFP2) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.16|4|Small Form Factor Plugin (CFP4) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.17|4|Combo RJ-45/SFP +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.18|4|SubMiniature version A (SMA) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.20|4|VSR connector +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.21|4|Small Form Factor Plugin (CFP8) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.22|4|SFF Plugin (QSFP-DD) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.2.24|4|SFF Plugin (SFP-DD) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.1|4|Unknown +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.2|4|RJ-45 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.3|4|BNC Coax +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.4|4|Mini MT-RJ +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.5|4|SC Duplex +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.6|4|Small Form Factor Plugin (SFP) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.7|4|LC Duplex +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.8|4|Small Form Factor Plugin (XFP) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.9|4|SC Simplex +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.10|4|RJ-48C +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.11|4|Small Form Factor Plugin (CFP) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.12|4|Small Form Factor Plugin (QSFP) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.13|4|MRJ-21 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.14|4|Small Form Factor Plugin (CXP) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.15|4|Small Form Factor Plugin (CFP2) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.16|4|Small Form Factor Plugin (CFP4) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.17|4|Combo RJ-45/SFP +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.18|4|SubMiniature version A (SMA) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.20|4|VSR connector +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.21|4|Small Form Factor Plugin (CFP8) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.22|4|SFF Plugin (QSFP-DD) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.3.24|4|SFF Plugin (SFP-DD) +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.2|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.3|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.4|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.5|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.6|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.7|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.8|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.9|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.10|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.11|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.12|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.13|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.14|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.15|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.16|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.17|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.18|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.20|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.21|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.22|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.8.1.4.24|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.1.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.1.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.1.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.1.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.1.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.1.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.2.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.2.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.2.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.2.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.2.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.2.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.3.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.3.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.3.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.3.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.3.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.3.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.4.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.4.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.4.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.4.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.4.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.4.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.5.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.5.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.5.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.5.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.5.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.5.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.6.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.6.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.6.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.6.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.6.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.6.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.7.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.7.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.7.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.7.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.7.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.7.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.8.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.8.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.8.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.8.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.8.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.8.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.9.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.9.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.9.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.9.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.9.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.9.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.10.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.10.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.10.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.10.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.10.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.10.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.11.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.11.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.11.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.11.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.11.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.11.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.12.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.12.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.12.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.12.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.12.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.12.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.13.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.13.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.13.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.13.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.13.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.13.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.14.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.14.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.14.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.14.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.14.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.14.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.15.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.15.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.15.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.15.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.15.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.15.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.16.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.16.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.16.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.16.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.16.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.16.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.17.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.17.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.17.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.17.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.17.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.17.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.18.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.18.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.18.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.18.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.18.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.18.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.19.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.19.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.19.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.19.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.19.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.19.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.20.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.20.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.20.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.20.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.20.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.20.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.21.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.21.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.21.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.21.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.21.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.21.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.22.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.22.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.22.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.22.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.22.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.22.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.23.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.23.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.23.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.23.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.23.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.23.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.24.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.24.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.24.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.24.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.24.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.24.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.25.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.25.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.25.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.25.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.25.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.25.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.26.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.26.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.26.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.26.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.26.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.26.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.27.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.27.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.27.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.27.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.27.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.27.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.28.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.28.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.28.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.28.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.28.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.28.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.29.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.29.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.29.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.29.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.29.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.29.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.30.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.30.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.30.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.30.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.30.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.30.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.31.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.31.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.31.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.31.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.31.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.31.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.32.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.32.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.32.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.32.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.32.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.17.1.32.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.19.1.0|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.19.2.0|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.19.3.0|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.19.4.0|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.19.5.0|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.19.6.0|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.32.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|67|365 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|67|365 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|67|365 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|67|365 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.33.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112|4| +1.3.6.1.4.1.6527.3.1.2.2.4.34.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.36.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.2.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.2.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|67|365 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|67|365 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.3.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|67|362 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|67|365 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.3.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|67|362 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|67|365 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|4| +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|4| +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.4.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|4| +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|4| +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.4.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|4| +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|4| +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.6.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.6.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.7.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.7.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.8.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.8.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|4| +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|4| +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.9.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|4| +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|4| +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.9.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|4| +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|4| +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.14.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.14.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.14.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.14.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.14.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.14.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.17.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|66|4294967295 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.17.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|66|4294967295 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.17.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|66|4294967295 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.17.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|66|4294967295 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.17.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1|66|4294967295 +1.3.6.1.4.1.6527.3.1.2.2.4.37.1.17.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1|66|4294967295 +1.3.6.1.4.1.6527.3.1.2.2.4.38.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.40.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.42.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.10.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.11.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.12.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.13.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.14.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46170112.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46202880.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46268416.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.45.1.15.1.46333952.19.95.116.109.110.120.95.110.97.116.95.105.110.103.95.113.95.103.114.112.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.2.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.3.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.4.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.5.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.6.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.7.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.8.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46170112.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46202880.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46202880.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46268416.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46301184.21.112.111.108.105.99.101.114.45.111.117.116.112.117.116.45.113.117.101.117.101.115.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.46.1.9.1.46333952.19.95.116.109.110.120.95.110.97.116.95.101.103.114.95.113.95.103.114.112.1.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.49.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.54.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.56.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.69.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.77.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.1.68190208|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.2.37781504|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.2.37814272|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.2.37847040|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.2.37879808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.2.37912576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.2.37945344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.2.67141632|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.2.68190208|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.3.37781504|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.3.37814272|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.3.37847040|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.3.37879808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.3.37912576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.3.37945344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.3.67141632|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.78.1.3.68190208|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.79.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.81.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.1.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.1.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.1.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.1.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.1.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.1.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.1.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.2.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.2.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.2.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.2.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.2.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.2.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.2.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.3.1.37781504|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.3.1.37814272|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.3.1.37847040|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.3.1.37879808|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.3.1.37912576|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.3.1.37945344|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.3.1.67141632|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.4.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.4.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.4.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.4.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.4.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.4.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.4.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.5.1.37781504|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.5.1.37814272|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.5.1.37847040|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.5.1.37879808|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.5.1.37912576|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.5.1.37945344|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.5.1.67141632|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.6.1.37781504|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.6.1.37814272|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.6.1.37847040|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.6.1.37879808|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.6.1.37912576|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.6.1.37945344|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.6.1.67141632|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.7.1.37781504|4x|00 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.7.1.37814272|4x|00 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.7.1.37847040|4x|00 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.7.1.37879808|4x|00 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.7.1.37912576|4x|00 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.7.1.37945344|4x|00 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.7.1.67141632|4x|00 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.8.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.8.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.8.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.8.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.8.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.8.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.82.1.8.1.67141632|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.1.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.1.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.1.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.1.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.1.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.1.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.1.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.2.1.37781504|66|2000 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.2.1.37814272|66|2000 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.2.1.37847040|66|2000 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.2.1.37879808|66|2000 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.2.1.37912576|66|2000 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.2.1.37945344|66|2000 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.2.1.67141632|66|2000 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.3.1.37781504|66|1000 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.3.1.37814272|66|1000 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.3.1.37847040|66|1000 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.3.1.37879808|66|1000 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.3.1.37912576|66|1000 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.3.1.37945344|66|1000 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.3.1.67141632|66|1000 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.4.1.37781504|66|5 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.4.1.37814272|66|5 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.4.1.37847040|66|5 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.4.1.37879808|66|5 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.4.1.37912576|66|5 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.4.1.37945344|66|5 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.4.1.67141632|66|5 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.5.1.37781504|66|20 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.5.1.37814272|66|20 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.5.1.37847040|66|20 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.5.1.37879808|66|20 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.5.1.37912576|66|20 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.5.1.37945344|66|20 +1.3.6.1.4.1.6527.3.1.2.2.4.103.1.5.1.67141632|66|20 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.1.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.1.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.1.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.1.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.1.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.1.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.1.1.67141632|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.2.1.37781504|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.2.1.37814272|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.2.1.37847040|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.2.1.37879808|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.2.1.37912576|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.2.1.37945344|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.2.1.67141632|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.3.1.37781504|70|16000 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.3.1.37814272|70|16000 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.3.1.37847040|70|16000 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.3.1.37879808|70|16000 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.3.1.37912576|70|16000 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.3.1.37945344|70|16000 +1.3.6.1.4.1.6527.3.1.2.2.4.104.1.3.1.67141632|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.111.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.1.1.39878656|67|69 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.1.1.39911424|67|69 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.2.1.39878656|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.2.1.39911424|2|5 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.3.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.3.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.4.1.39878656|2|8 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.4.1.39911424|2|8 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.5.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.5.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.6.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.6.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.7.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.7.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.8.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.8.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.9.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.9.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.10.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.10.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.11.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.11.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.12.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.12.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.13.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.13.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.14.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.14.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.16.1.39878656|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.16.1.39911424|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.17.1.39878656|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.17.1.39911424|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.18.1.39878656|4x|0202000000010101 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.18.1.39911424|4x|0202000000010101 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.19.1.39878656|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.19.1.39911424|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.20.1.39878656|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.20.1.39911424|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.21.1.39878656|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.21.1.39911424|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.22.1.39878656|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.112.1.22.1.39911424|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.113.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.1.1.39878656|67|69 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.1.1.39911424|67|69 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.2.1.39878656|66|1500 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.2.1.39911424|66|1500 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.3.1.39878656|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.3.1.39911424|66|50 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.4.1.39878656|66|4294967295 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.4.1.39911424|66|4294967295 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.5.1.39878656|66|4294967295 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.5.1.39911424|66|4294967295 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.6.1.39878656|66|4294967295 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.6.1.39911424|66|4294967295 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.7.1.39878656|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.7.1.39911424|66|10 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.8.1.39878656|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.8.1.39911424|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.9.1.39878656|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.114.1.9.1.39911424|2|2 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.1.1.39878656|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.1.1.39911424|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.2.1.39878656|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.2.1.39911424|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.3.1.39878656|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.3.1.39911424|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.4.1.39878656|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.4.1.39911424|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.5.1.39878656|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.5.1.39911424|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.6.1.39878656|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.6.1.39911424|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.7.1.39878656|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.7.1.39911424|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.8.1.39878656|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.8.1.39911424|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.9.1.39878656|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.9.1.39911424|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.10.1.39878656|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.115.1.10.1.39911424|70|0 +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.2.2|4|c1-40g +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.2.3|4|c4-10g +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.2.4|4|c1-100g +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.2.5|4|c4-25g +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.2.6|4|c10-10g +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.2.8|4|c1-400g +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.2.9|4|c2-100g +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.2.10|4|c4-100g +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.2.11|4|c1-10g +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.2.13|4|c1-25g +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.2.14|4|c1-50g +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.2.15|4|c8-50g +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.3.2|4|Single 40G interface +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.3.3|4|Four 10G interfaces +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.3.4|4|Single 100G interface +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.3.5|4|Four 25G interfaces +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.3.6|4|Ten 10G interfaces +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.3.8|4|Single 400G interface +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.3.9|4|Two 100G interfaces +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.3.10|4|QSFP-DD four 100G interfaces +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.3.11|4|Single 10G interface +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.3.13|4|Single 25G interface +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.3.14|4|Single 50G interface +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.3.15|4|QSFP-DD Eight 50G interfaces +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.4.2|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.4.3|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.4.4|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.4.5|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.4.6|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.4.8|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.4.9|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.4.10|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.4.11|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.4.13|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.4.14|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.116.1.4.15|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.35684352|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.35717120|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.37781504|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.37814272|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.37847040|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.37879808|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.37912576|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.37945344|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.39878656|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.39911424|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.41975808|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.42008576|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.42041344|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.42074112|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.44072960|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.44105728|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.46170112|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.46202880|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.46235648|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.46268416|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.46301184|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.46333952|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.46366720|66|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.1493172258|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.1509949473|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.1.1.1509949478|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.35684352|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.35717120|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.37781504|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.37814272|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.37847040|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.37879808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.37912576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.37945344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.39878656|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.39911424|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.41975808|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.42008576|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.42041344|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.42074112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.44072960|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.44105728|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.46170112|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.46202880|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.46235648|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.46268416|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.46301184|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.46333952|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.46366720|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.67141632|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.1493172258|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.1509949473|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.2.1.1509949478|66|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.35684352|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.35717120|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.37781504|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.37814272|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.37847040|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.37879808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.37912576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.37945344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.39878656|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.39911424|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.41975808|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.42008576|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.42041344|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.42074112|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.44072960|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.44105728|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.46170112|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.46202880|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.46235648|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.46268416|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.46301184|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.46333952|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.46366720|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.67141632|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.1493172258|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.1509949473|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.3.1.1509949478|2|1 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.35684352|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.37781504|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.37814272|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.37847040|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.37879808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.37912576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.37945344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.39878656|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.39911424|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.41975808|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.42008576|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.42041344|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.42074112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.44072960|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.44105728|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.46170112|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.46202880|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.46235648|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.46268416|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.46301184|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.46333952|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.46366720|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.67141632|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.1493172258|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.1509949473|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.118.1.4.1.1509949478|2|0 +1.3.6.1.4.1.6527.3.1.2.2.4.119.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.4.134.0|67|0 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.35651584.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.35651584.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.35651584.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.37748736.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.37748736.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.37748736.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.39845888.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.39845888.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.39845888.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.41943040.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.41943040.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.41943040.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.44040192.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.44040192.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.44040192.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.46137344.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.46137344.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.1.46137344.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.35684352.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.35684352.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.35684352.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.35717120.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.35717120.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.35717120.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37781504.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37781504.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37781504.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37814272.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37814272.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37814272.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37847040.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37847040.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37847040.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37879808.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37879808.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37879808.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37912576.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37912576.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37912576.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37945344.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37945344.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.37945344.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.41975808.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.41975808.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.41975808.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.42008576.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.42008576.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.42008576.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.42041344.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.42041344.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.42041344.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.42074112.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.42074112.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.42074112.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.44072960.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.44072960.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.44072960.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.44105728.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.44105728.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.44105728.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46170112.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46170112.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46170112.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46202880.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46202880.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46202880.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46235648.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46235648.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46235648.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46268416.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46268416.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46268416.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46301184.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46301184.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46301184.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46333952.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46333952.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46333952.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46366720.1.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46366720.2.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.2.46366720.4.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.5.257.1.12.77.67.32.80.97.116.104.32.77.103.109.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.5.1.5.257.3.7.100.101.102.97.117.108.116|2|1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.35651584.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.35651584.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.35651584.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.37748736.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.37748736.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.37748736.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.39845888.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.39845888.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.39845888.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.41943040.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.41943040.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.41943040.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.44040192.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.44040192.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.44040192.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.46137344.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.46137344.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.1.46137344.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.35684352.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.35684352.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.35684352.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.35717120.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.35717120.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.35717120.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37781504.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37781504.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37781504.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37814272.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37814272.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37814272.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37847040.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37847040.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37847040.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37879808.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37879808.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37879808.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37912576.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37912576.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37912576.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37945344.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37945344.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.37945344.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.41975808.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.41975808.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.41975808.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.42008576.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.42008576.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.42008576.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.42041344.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.42041344.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.42041344.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.42074112.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.42074112.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.42074112.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.44072960.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.44072960.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.44072960.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.44105728.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.44105728.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.44105728.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46170112.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46170112.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46170112.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46202880.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46202880.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46202880.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46235648.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46235648.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46235648.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46268416.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46268416.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46268416.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46301184.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46301184.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46301184.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46333952.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46333952.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46333952.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46366720.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46366720.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.2.46366720.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.5.257.1.12.77.67.32.80.97.116.104.32.77.103.109.116|2|50 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.6.1.5.257.3.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.35651584.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.35651584.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.35651584.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.37748736.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.37748736.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.37748736.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.39845888.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.39845888.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.39845888.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.41943040.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.41943040.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.41943040.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.44040192.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.44040192.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.44040192.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.46137344.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.46137344.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.1.46137344.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.35684352.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.35684352.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.35684352.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.35717120.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.35717120.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.35717120.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37781504.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37781504.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37781504.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37814272.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37814272.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37814272.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37847040.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37847040.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37847040.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37879808.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37879808.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37879808.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37912576.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37912576.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37912576.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37945344.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37945344.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.37945344.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.41975808.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.41975808.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.41975808.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.42008576.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.42008576.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.42008576.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.42041344.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.42041344.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.42041344.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.42074112.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.42074112.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.42074112.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.44072960.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.44072960.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.44072960.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.44105728.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.44105728.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.44105728.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46170112.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46170112.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46170112.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46202880.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46202880.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46202880.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46235648.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46235648.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46235648.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46268416.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46268416.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46268416.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46301184.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46301184.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46301184.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46333952.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46333952.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46333952.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46366720.1.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46366720.2.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.2.46366720.4.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.5.257.1.12.77.67.32.80.97.116.104.32.77.103.109.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.7.1.5.257.3.7.100.101.102.97.117.108.116|4|default +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.35651584.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.35651584.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.35651584.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.37748736.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.37748736.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.37748736.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.39845888.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.39845888.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.39845888.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.41943040.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.41943040.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.41943040.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.44040192.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.44040192.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.44040192.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.46137344.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.46137344.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.1.46137344.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.35684352.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.35684352.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.35684352.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.35717120.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.35717120.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.35717120.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37781504.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37781504.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37781504.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37814272.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37814272.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37814272.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37847040.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37847040.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37847040.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37879808.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37879808.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37879808.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37912576.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37912576.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37912576.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37945344.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37945344.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.37945344.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.41975808.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.41975808.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.41975808.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.42008576.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.42008576.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.42008576.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.42041344.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.42041344.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.42041344.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.42074112.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.42074112.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.42074112.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.44072960.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.44072960.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.44072960.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.44105728.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.44105728.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.44105728.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46170112.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46170112.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46170112.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46202880.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46202880.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46202880.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46235648.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46235648.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46235648.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46268416.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46268416.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46268416.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46301184.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46301184.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46301184.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46333952.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46333952.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46333952.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46366720.1.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46366720.2.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.2.46366720.4.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.5.257.1.12.77.67.32.80.97.116.104.32.77.103.109.116|2|10 +1.3.6.1.4.1.6527.3.1.2.2.10.2.1.8.1.5.257.3.7.100.101.102.97.117.108.116|2|-1 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37781504.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37781504.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37781504.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37781504.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37781504.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37781504.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37781504.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37781504.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37781504.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37781504.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37781504.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37781504.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37781504.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37781504.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37781504.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37781504.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37814272.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37814272.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37814272.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37814272.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37814272.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37814272.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37814272.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37814272.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37814272.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37814272.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37814272.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37814272.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37814272.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37814272.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37814272.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37814272.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37847040.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37847040.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37847040.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37847040.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37847040.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37847040.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37847040.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37847040.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37847040.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37847040.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37847040.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37847040.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37847040.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37847040.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37847040.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.37847040.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.46235648.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.46235648.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.46235648.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.46235648.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.46235648.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.46235648.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.46235648.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.46235648.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.46235648.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.46235648.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.46235648.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.46235648.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.46235648.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.46235648.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.46235648.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.2.1.46235648.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37781504.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37781504.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37781504.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37781504.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37781504.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37781504.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37781504.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37781504.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37781504.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37781504.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37781504.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37781504.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37781504.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37781504.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37781504.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37781504.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37814272.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37814272.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37814272.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37814272.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37814272.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37814272.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37814272.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37814272.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37814272.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37814272.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37814272.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37814272.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37814272.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37814272.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37814272.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37814272.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37847040.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37847040.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37847040.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37847040.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37847040.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37847040.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37847040.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37847040.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37847040.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37847040.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37847040.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37847040.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37847040.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37847040.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37847040.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.37847040.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.46235648.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.46235648.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.46235648.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.46235648.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.46235648.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.46235648.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.46235648.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.46235648.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.46235648.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.46235648.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.46235648.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.46235648.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.46235648.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.46235648.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.46235648.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.3.1.46235648.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37781504.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37781504.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37781504.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37781504.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37781504.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37781504.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37781504.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37781504.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37781504.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37781504.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37781504.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37781504.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37781504.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37781504.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37781504.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37781504.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37814272.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37814272.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37814272.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37814272.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37814272.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37814272.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37814272.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37814272.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37814272.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37814272.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37814272.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37814272.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37814272.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37814272.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37814272.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37814272.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37847040.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37847040.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37847040.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37847040.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37847040.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37847040.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37847040.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37847040.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37847040.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37847040.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37847040.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37847040.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37847040.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37847040.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37847040.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.37847040.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.46235648.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.46235648.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.46235648.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.46235648.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.46235648.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.46235648.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.46235648.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.46235648.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.46235648.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.46235648.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.46235648.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.46235648.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.46235648.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.46235648.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.46235648.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.4.1.46235648.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37781504.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37781504.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37781504.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37781504.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37781504.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37781504.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37781504.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37781504.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37781504.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37781504.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37781504.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37781504.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37781504.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37781504.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37781504.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37781504.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37814272.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37814272.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37814272.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37814272.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37814272.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37814272.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37814272.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37814272.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37814272.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37814272.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37814272.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37814272.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37814272.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37814272.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37814272.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37814272.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37847040.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37847040.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37847040.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37847040.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37847040.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37847040.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37847040.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37847040.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37847040.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37847040.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37847040.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37847040.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37847040.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37847040.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37847040.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.37847040.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.46235648.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.46235648.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.46235648.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.46235648.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.46235648.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.46235648.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.46235648.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.46235648.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.46235648.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.46235648.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.46235648.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.46235648.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.46235648.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.46235648.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.46235648.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.5.1.46235648.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37781504.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37781504.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37781504.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37781504.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37781504.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37781504.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37781504.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37781504.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37781504.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37781504.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37781504.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37781504.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37781504.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37781504.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37781504.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37781504.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37814272.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37814272.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37814272.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37814272.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37814272.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37814272.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37814272.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37814272.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37814272.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37814272.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37814272.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37814272.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37814272.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37814272.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37814272.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37814272.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37847040.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37847040.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37847040.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37847040.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37847040.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37847040.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37847040.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37847040.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37847040.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37847040.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37847040.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37847040.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37847040.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37847040.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37847040.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.37847040.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.46235648.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.46235648.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.46235648.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.46235648.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.46235648.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.46235648.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.46235648.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.46235648.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.46235648.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.46235648.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.46235648.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.46235648.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.46235648.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.46235648.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.46235648.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.6.1.46235648.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37781504.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37781504.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37781504.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37781504.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37781504.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37781504.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37781504.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37781504.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37781504.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37781504.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37781504.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37781504.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37781504.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37781504.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37781504.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37781504.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37814272.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37814272.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37814272.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37814272.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37814272.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37814272.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37814272.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37814272.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37814272.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37814272.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37814272.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37814272.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37814272.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37814272.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37814272.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37814272.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37847040.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37847040.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37847040.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37847040.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37847040.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37847040.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37847040.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37847040.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37847040.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37847040.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37847040.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37847040.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37847040.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37847040.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37847040.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.37847040.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.46235648.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.46235648.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.46235648.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.46235648.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.46235648.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.46235648.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.46235648.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.46235648.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.46235648.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.46235648.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.46235648.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.46235648.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.46235648.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.46235648.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.46235648.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.7.1.46235648.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37781504.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37781504.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37781504.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37781504.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37781504.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37781504.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37781504.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37781504.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37781504.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37781504.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37781504.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37781504.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37781504.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37781504.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37781504.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37781504.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37814272.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37814272.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37814272.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37814272.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37814272.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37814272.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37814272.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37814272.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37814272.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37814272.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37814272.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37814272.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37814272.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37814272.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37814272.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37814272.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37847040.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37847040.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37847040.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37847040.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37847040.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37847040.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37847040.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37847040.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37847040.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37847040.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37847040.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37847040.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37847040.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37847040.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37847040.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.37847040.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.46235648.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.46235648.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.46235648.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.46235648.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.46235648.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.46235648.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.46235648.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.46235648.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.46235648.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.46235648.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.46235648.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.46235648.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.46235648.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.46235648.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.46235648.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.8.1.46235648.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37781504.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37781504.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37781504.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37781504.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37781504.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37781504.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37781504.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37781504.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37781504.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37781504.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37781504.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37781504.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37781504.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37781504.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37781504.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37781504.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37814272.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37814272.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37814272.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37814272.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37814272.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37814272.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37814272.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37814272.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37814272.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37814272.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37814272.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37814272.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37814272.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37814272.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37814272.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37814272.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37847040.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37847040.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37847040.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37847040.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37847040.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37847040.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37847040.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37847040.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37847040.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37847040.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37847040.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37847040.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37847040.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37847040.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37847040.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.37847040.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.46235648.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.46235648.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.46235648.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.46235648.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.46235648.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.46235648.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.46235648.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.46235648.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.46235648.9|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.46235648.10|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.46235648.11|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.46235648.12|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.46235648.13|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.46235648.14|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.46235648.15|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.1.1.9.1.46235648.16|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37781504.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37781504.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37781504.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37781504.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37781504.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37781504.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37781504.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37781504.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37814272.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37814272.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37814272.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37814272.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37814272.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37814272.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37814272.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37814272.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37847040.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37847040.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37847040.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37847040.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37847040.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37847040.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37847040.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.37847040.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.46235648.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.46235648.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.46235648.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.46235648.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.46235648.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.46235648.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.46235648.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.2.1.46235648.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37781504.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37781504.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37781504.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37781504.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37781504.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37781504.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37781504.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37781504.8|70|7 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37814272.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37814272.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37814272.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37814272.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37814272.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37814272.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37814272.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37814272.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37847040.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37847040.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37847040.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37847040.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37847040.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37847040.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37847040.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.37847040.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.46235648.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.46235648.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.46235648.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.46235648.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.46235648.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.46235648.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.46235648.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.3.1.46235648.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37781504.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37781504.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37781504.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37781504.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37781504.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37781504.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37781504.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37781504.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37814272.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37814272.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37814272.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37814272.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37814272.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37814272.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37814272.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37814272.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37847040.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37847040.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37847040.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37847040.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37847040.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37847040.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37847040.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.37847040.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.46235648.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.46235648.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.46235648.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.46235648.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.46235648.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.46235648.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.46235648.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.4.1.46235648.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37781504.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37781504.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37781504.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37781504.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37781504.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37781504.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37781504.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37781504.8|70|590 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37814272.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37814272.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37814272.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37814272.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37814272.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37814272.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37814272.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37814272.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37847040.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37847040.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37847040.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37847040.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37847040.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37847040.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37847040.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.37847040.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.46235648.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.46235648.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.46235648.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.46235648.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.46235648.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.46235648.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.46235648.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.5.1.46235648.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37781504.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37781504.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37781504.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37781504.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37781504.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37781504.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37781504.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37781504.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37814272.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37814272.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37814272.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37814272.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37814272.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37814272.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37814272.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37814272.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37847040.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37847040.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37847040.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37847040.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37847040.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37847040.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37847040.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.37847040.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.46235648.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.46235648.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.46235648.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.46235648.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.46235648.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.46235648.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.46235648.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.6.1.46235648.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37781504.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37781504.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37781504.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37781504.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37781504.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37781504.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37781504.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37781504.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37814272.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37814272.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37814272.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37814272.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37814272.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37814272.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37814272.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37814272.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37847040.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37847040.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37847040.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37847040.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37847040.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37847040.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37847040.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.37847040.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.46235648.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.46235648.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.46235648.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.46235648.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.46235648.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.46235648.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.46235648.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.7.1.46235648.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37781504.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37781504.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37781504.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37781504.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37781504.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37781504.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37781504.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37781504.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37814272.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37814272.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37814272.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37814272.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37814272.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37814272.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37814272.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37814272.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37847040.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37847040.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37847040.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37847040.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37847040.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37847040.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37847040.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.37847040.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.46235648.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.46235648.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.46235648.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.46235648.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.46235648.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.46235648.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.46235648.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.8.1.46235648.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37781504.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37781504.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37781504.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37781504.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37781504.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37781504.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37781504.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37781504.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37814272.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37814272.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37814272.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37814272.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37814272.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37814272.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37814272.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37814272.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37847040.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37847040.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37847040.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37847040.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37847040.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37847040.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37847040.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.37847040.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.46235648.1|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.46235648.2|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.46235648.3|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.46235648.4|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.46235648.5|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.46235648.6|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.46235648.7|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.2.1.9.1.46235648.8|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.1.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.1.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.1.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.1.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.1.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.1.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.2.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.2.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.2.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.2.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.2.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.2.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.3.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.3.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.3.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.3.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.3.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.3.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.4.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.4.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.4.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.4.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.4.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.4.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.5.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.5.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.5.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.5.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.5.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.5.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.6.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.6.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.6.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.6.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.6.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.6.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.7.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.7.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.7.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.7.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.7.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.7.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.8.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.8.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.8.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.8.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.8.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.8.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.9.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.9.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.9.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.9.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.9.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.9.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.10.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.10.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.10.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.10.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.10.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.10.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.11.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.11.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.11.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.11.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.11.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.11.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.12.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.12.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.12.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.12.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.12.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.12.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.13.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.13.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.13.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.13.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.13.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.11.1.13.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.35684352|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.35717120|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.39878656|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.39911424|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.41975808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.42008576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.42041344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.42074112|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.44072960|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.44105728|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.46170112|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.46202880|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.46235648|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.46268416|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.46301184|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.46333952|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.46366720|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.67141632|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.1493172258|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.1509949473|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.1.1.1509949478|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.35684352|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.35717120|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.39878656|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.39911424|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.41975808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.42008576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.42041344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.42074112|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.44072960|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.44105728|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.46170112|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.46202880|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.46235648|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.46268416|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.46301184|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.46333952|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.46366720|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.67141632|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.1493172258|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.1509949473|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.2.1.1509949478|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.35684352|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.35717120|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.39878656|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.39911424|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.41975808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.42008576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.42041344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.42074112|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.44072960|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.44105728|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.46170112|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.46202880|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.46235648|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.46268416|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.46301184|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.46333952|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.46366720|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.67141632|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.1493172258|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.1509949473|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.3.1.1509949478|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.35684352|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.35717120|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.39878656|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.39911424|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.41975808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.42008576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.42041344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.42074112|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.44072960|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.44105728|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.46170112|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.46202880|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.46235648|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.46268416|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.46301184|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.46333952|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.46366720|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.67141632|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.1493172258|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.1509949473|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.4.1.1509949478|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.35684352|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.35717120|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.37781504|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.37814272|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.37847040|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.37879808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.37912576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.37945344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.39878656|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.39911424|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.41975808|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.42008576|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.42041344|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.42074112|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.44072960|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.44105728|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.46170112|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.46202880|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.46235648|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.46268416|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.46301184|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.46333952|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.46366720|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.67141632|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.1493172258|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.1509949473|70|0 +1.3.6.1.4.1.6527.3.1.2.2.12.12.1.5.1.1509949478|70|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.2.1|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.2.4093|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.2.4094|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.2.4095|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.3.1|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.3.4093|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.3.4094|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.3.4095|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.4.1|4|Base +1.3.6.1.4.1.6527.3.1.2.3.1.1.4.4093|4|vmhost-management +1.3.6.1.4.1.6527.3.1.2.3.1.1.4.4094|4|vpls-management +1.3.6.1.4.1.6527.3.1.2.3.1.1.4.4095|4|management +1.3.6.1.4.1.6527.3.1.2.3.1.1.5.1|2|-1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.5.4093|2|-1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.5.4094|2|-1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.5.4095|2|-1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.6.1|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.6.4093|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.6.4094|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.6.4095|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.7.1|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.7.4093|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.7.4094|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.7.4095|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.9.1|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.9.4093|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.9.4094|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.9.4095|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.10.1|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.10.4093|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.10.4094|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.10.4095|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.11.1|66|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.11.4093|66|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.11.4094|66|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.11.4095|66|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.13.1|2|4 +1.3.6.1.4.1.6527.3.1.2.3.1.1.13.4093|2|4 +1.3.6.1.4.1.6527.3.1.2.3.1.1.13.4094|2|4 +1.3.6.1.4.1.6527.3.1.2.3.1.1.13.4095|2|4 +1.3.6.1.4.1.6527.3.1.2.3.1.1.14.1|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.14.4093|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.14.4094|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.14.4095|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.16.1|64|0.0.0.0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.16.4093|64|0.0.0.0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.16.4094|64|0.0.0.0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.16.4095|64|0.0.0.0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.17.1|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.17.4093|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.17.4094|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.17.4095|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.19.1|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.3.1.1.19.4093|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.3.1.1.19.4094|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.3.1.1.19.4095|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.3.1.1.20.1|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.20.4093|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.20.4094|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.20.4095|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.21.1|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.21.4093|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.21.4094|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.21.4095|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.23.1|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.23.4093|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.23.4094|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.23.4095|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.25.1|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.25.4093|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.25.4094|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.25.4095|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.26.1|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.26.4093|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.26.4094|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.26.4095|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.27.1|2|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.27.4093|2|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.27.4094|2|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.27.4095|2|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.28.1|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.28.4093|2|3 +1.3.6.1.4.1.6527.3.1.2.3.1.1.28.4094|2|3 +1.3.6.1.4.1.6527.3.1.2.3.1.1.28.4095|2|3 +1.3.6.1.4.1.6527.3.1.2.3.1.1.29.1|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.29.4093|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.29.4094|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.29.4095|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.30.1|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.30.4093|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.30.4094|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.30.4095|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.32.1|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.32.4093|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.32.4094|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.32.4095|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.33.1|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.33.4093|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.33.4094|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.33.4095|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.34.1|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.34.4093|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.34.4094|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.34.4095|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.35.1|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.35.4093|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.35.4094|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.35.4095|4| +1.3.6.1.4.1.6527.3.1.2.3.1.1.40.1|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.40.4093|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.40.4094|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.40.4095|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.43.1|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.43.4093|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.43.4094|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.43.4095|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.44.1|2|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.44.4093|2|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.44.4094|2|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.44.4095|2|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.46.1|2|-1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.46.4093|2|-1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.46.4094|2|-1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.46.4095|2|-1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.47.1|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.47.4093|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.47.4094|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.47.4095|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.48.1|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.48.4093|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.48.4094|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.48.4095|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.49.1|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.49.4093|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.49.4094|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.49.4095|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.50.1|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.50.4093|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.50.4094|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.50.4095|2|1 +1.3.6.1.4.1.6527.3.1.2.3.1.1.52.1|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.52.4093|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.52.4094|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.52.4095|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.59.1|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.59.4093|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.59.4094|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.59.4095|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.60.1|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.60.4093|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.60.4094|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.60.4095|66|0 +1.3.6.1.4.1.6527.3.1.2.3.1.1.65.1|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.65.4093|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.65.4094|2|2 +1.3.6.1.4.1.6527.3.1.2.3.1.1.65.4095|2|2 +1.3.6.1.4.1.6527.3.1.2.3.4.1.3.1.1|2|1 +1.3.6.1.4.1.6527.3.1.2.3.4.1.3.1.2|2|33 +1.3.6.1.4.1.6527.3.1.2.3.4.1.3.1.3|2|1 +1.3.6.1.4.1.6527.3.1.2.3.4.1.3.1.131073|2|1 +1.3.6.1.4.1.6527.3.1.2.3.4.1.3.1.131074|2|1 +1.3.6.1.4.1.6527.3.1.2.3.4.1.3.1.131075|2|3 +1.3.6.1.4.1.6527.3.1.2.3.4.1.3.4093.1281|2|1 +1.3.6.1.4.1.6527.3.1.2.3.4.1.3.4095.1280|2|1 +1.3.6.1.4.1.6527.3.1.2.3.4.1.4.1.1|4|system +1.3.6.1.4.1.6527.3.1.2.3.4.1.4.1.2|4|LTE +1.3.6.1.4.1.6527.3.1.2.3.4.1.4.1.3|4|PRODLAB_SAR_01 +1.3.6.1.4.1.6527.3.1.2.3.4.1.4.1.131073|4|_tmnx_nat-network_1/6 +1.3.6.1.4.1.6527.3.1.2.3.4.1.4.1.131074|4|_tmnx_reassembly-network_1/6 +1.3.6.1.4.1.6527.3.1.2.3.4.1.4.1.131075|4|_tmnx_reassembly-inside +1.3.6.1.4.1.6527.3.1.2.3.4.1.4.4093.1281|4|vmhost-management +1.3.6.1.4.1.6527.3.1.2.3.4.1.4.4095.1280|4|management +1.3.6.1.4.1.6527.3.1.2.3.4.1.25.1.1|66|0 +1.3.6.1.4.1.6527.3.1.2.3.4.1.25.1.2|66|0 +1.3.6.1.4.1.6527.3.1.2.3.4.1.25.1.3|66|0 +1.3.6.1.4.1.6527.3.1.2.3.4.1.25.1.131073|66|0 +1.3.6.1.4.1.6527.3.1.2.3.4.1.25.1.131074|66|0 +1.3.6.1.4.1.6527.3.1.2.3.4.1.25.1.131075|66|0 +1.3.6.1.4.1.6527.3.1.2.3.4.1.25.4093.1281|66|0 +1.3.6.1.4.1.6527.3.1.2.3.4.1.25.4095.1280|66|0 +1.3.6.1.4.1.6527.3.1.2.3.4.1.34.1.1|4| +1.3.6.1.4.1.6527.3.1.2.3.4.1.34.1.2|4| +1.3.6.1.4.1.6527.3.1.2.3.4.1.34.1.3|4| +1.3.6.1.4.1.6527.3.1.2.3.4.1.34.1.131073|4| +1.3.6.1.4.1.6527.3.1.2.3.4.1.34.1.131074|4| +1.3.6.1.4.1.6527.3.1.2.3.4.1.34.1.131075|4| +1.3.6.1.4.1.6527.3.1.2.3.4.1.34.4093.1281|4| +1.3.6.1.4.1.6527.3.1.2.3.4.1.34.4095.1280|4| +1.3.6.1.4.1.6527.3.1.2.3.54.1.40.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.3.54.1.40.1.2|70|314124 +1.3.6.1.4.1.6527.3.1.2.3.54.1.40.1.3|70|4 +1.3.6.1.4.1.6527.3.1.2.3.54.1.40.1.131073|70|0 +1.3.6.1.4.1.6527.3.1.2.3.54.1.40.1.131074|70|0 +1.3.6.1.4.1.6527.3.1.2.3.54.1.40.1.131075|70|0 +1.3.6.1.4.1.6527.3.1.2.3.54.1.40.4093.1281|70|0 +1.3.6.1.4.1.6527.3.1.2.3.54.1.40.4095.1280|70|0 +1.3.6.1.4.1.6527.3.1.2.3.54.1.43.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.3.54.1.43.1.2|70|30645407 +1.3.6.1.4.1.6527.3.1.2.3.54.1.43.1.3|70|370 +1.3.6.1.4.1.6527.3.1.2.3.54.1.43.1.131073|70|0 +1.3.6.1.4.1.6527.3.1.2.3.54.1.43.1.131074|70|0 +1.3.6.1.4.1.6527.3.1.2.3.54.1.43.1.131075|70|0 +1.3.6.1.4.1.6527.3.1.2.3.54.1.43.4093.1281|70|0 +1.3.6.1.4.1.6527.3.1.2.3.54.1.43.4095.1280|70|0 +1.3.6.1.4.1.6527.3.1.2.3.54.1.103.1.1|70|100000000 +1.3.6.1.4.1.6527.3.1.2.3.54.1.103.1.2|70|150000000 +1.3.6.1.4.1.6527.3.1.2.3.54.1.103.1.3|70|100000000 +1.3.6.1.4.1.6527.3.1.2.3.54.1.103.1.131073|70|40000000000 +1.3.6.1.4.1.6527.3.1.2.3.54.1.103.1.131074|70|40000000000 +1.3.6.1.4.1.6527.3.1.2.3.54.1.103.1.131075|70|40000000000 +1.3.6.1.4.1.6527.3.1.2.3.54.1.103.4093.1281|70|0 +1.3.6.1.4.1.6527.3.1.2.3.54.1.103.4095.1280|70|0 +1.3.6.1.4.1.6527.3.1.2.3.74.1.1.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.3.74.1.1.1.2|70|423774 +1.3.6.1.4.1.6527.3.1.2.3.74.1.1.1.3|70|3 +1.3.6.1.4.1.6527.3.1.2.3.74.1.1.1.131073|70|0 +1.3.6.1.4.1.6527.3.1.2.3.74.1.1.1.131074|70|0 +1.3.6.1.4.1.6527.3.1.2.3.74.1.1.1.131075|70|0 +1.3.6.1.4.1.6527.3.1.2.3.74.1.1.4093.1281|70|0 +1.3.6.1.4.1.6527.3.1.2.3.74.1.1.4095.1280|70|0 +1.3.6.1.4.1.6527.3.1.2.3.74.1.4.1.1|70|0 +1.3.6.1.4.1.6527.3.1.2.3.74.1.4.1.2|70|132380800 +1.3.6.1.4.1.6527.3.1.2.3.74.1.4.1.3|70|318 +1.3.6.1.4.1.6527.3.1.2.3.74.1.4.1.131073|70|0 +1.3.6.1.4.1.6527.3.1.2.3.74.1.4.1.131074|70|0 +1.3.6.1.4.1.6527.3.1.2.3.74.1.4.1.131075|70|0 +1.3.6.1.4.1.6527.3.1.2.3.74.1.4.4093.1281|70|0 +1.3.6.1.4.1.6527.3.1.2.3.74.1.4.4095.1280|70|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.1.112|66|112 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.1.2147483648|66|2147483648 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.1.2147483649|66|2147483649 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.2.112|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.2.2147483648|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.2.2147483649|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.3.112|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.3.2147483648|2|5 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.3.2147483649|2|11 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.4.112|66|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.4.2147483648|66|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.4.2147483649|66|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.5.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.5.2147483648|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.5.2147483649|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.6.112|4| +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.6.2147483648|4|IES Service for internal purposes only +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.6.2147483649|4|VPLS Service for internal purposes only +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.7.112|2|1600 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.7.2147483648|2|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.7.2147483649|2|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.8.112|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.8.2147483648|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.8.2147483649|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.9.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.9.2147483648|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.9.2147483649|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.10.112|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.10.2147483648|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.10.2147483649|2|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.11.112|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.11.2147483648|2|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.11.2147483649|2|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.12.112|67|371 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.12.2147483648|67|34 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.12.2147483649|67|34 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.14.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.14.2147483648|66|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.14.2147483649|66|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.15.112|2|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.15.2147483648|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.15.2147483649|2|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.17.112|67|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.17.2147483648|67|1633 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.17.2147483649|67|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.18.112|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.18.2147483648|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.18.2147483649|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.19.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.19.2147483648|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.19.2147483649|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.20.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.20.2147483648|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.20.2147483649|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.23.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.23.2147483648|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.23.2147483649|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.26.112|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.26.2147483648|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.26.2147483649|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.27.112|2|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.27.2147483648|2|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.27.2147483649|2|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.29.112|4|112 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.29.2147483648|4|_tmnx_InternalIesService +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.29.2147483649|4|_tmnx_InternalVplsService +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.31.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.31.2147483648|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.31.2147483649|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.32.112|4| +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.32.2147483648|4| +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.32.2147483649|4| +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.33.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.33.2147483648|66|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.33.2147483649|66|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.34.112|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.34.2147483648|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.34.2147483649|2|1 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.37.112|2|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.37.2147483648|2|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.37.2147483649|2|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.39.112|4| +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.39.2147483648|4| +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.39.2147483649|4| +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.40.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.40.2147483648|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.40.2147483649|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.41.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.41.2147483648|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.41.2147483649|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.42.112|2|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.42.2147483648|2|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.42.2147483649|2|0 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.43.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.43.2147483648|2|2 +1.3.6.1.4.1.6527.3.1.2.4.2.2.1.43.2147483649|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.1.112.37945344.0|66|37945344 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.1.2147483648.1509949473.68609|66|1509949473 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.2.112.37945344.0|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.2.2147483648.1509949473.68609|66|68609 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.3.112.37945344.0|2|1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.3.2147483648.1509949473.68609|2|1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.4.112.37945344.0|2|1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.4.2147483648.1509949473.68609|2|5 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.5.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.5.2147483648.1509949473.68609|4|Internal SAP +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.6.112.37945344.0|2|1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.6.2147483648.1509949473.68609|2|1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.7.112.37945344.0|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.7.2147483648.1509949473.68609|2|1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.8.112.37945344.0|66|1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.8.2147483648.1509949473.68609|66|65536 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.9.112.37945344.0|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.9.2147483648.1509949473.68609|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.10.112.37945344.0|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.10.2147483648.1509949473.68609|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.11.112.37945344.0|66|1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.11.2147483648.1509949473.68609|66|65536 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.12.112.37945344.0|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.12.2147483648.1509949473.68609|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.13.112.37945344.0|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.13.2147483648.1509949473.68609|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.14.112.37945344.0|2|4 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.14.2147483648.1509949473.68609|2|4 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.15.112.37945344.0|2|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.15.2147483648.1509949473.68609|2|131075 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.16.112.37945344.0|67|371 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.16.2147483648.1509949473.68609|67|369 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.17.112.37945344.0|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.17.2147483648.1509949473.68609|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.18.112.37945344.0|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.18.2147483648.1509949473.68609|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.19.112.37945344.0|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.19.2147483648.1509949473.68609|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.20.112.37945344.0|66|1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.20.2147483648.1509949473.68609|66|1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.21.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.21.2147483648.1509949473.68609|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.22.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.22.2147483648.1509949473.68609|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.23.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.23.2147483648.1509949473.68609|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.24.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.24.2147483648.1509949473.68609|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.25.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.25.2147483648.1509949473.68609|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.26.112.37945344.0|2|1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.26.2147483648.1509949473.68609|2|1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.28.112.37945344.0|67|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.28.2147483648.1509949473.68609|67|1631 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.29.112.37945344.0|2|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.29.2147483648.1509949473.68609|2|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.30.112.37945344.0|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.30.2147483648.1509949473.68609|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.31.112.37945344.0|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.31.2147483648.1509949473.68609|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.33.112.37945344.0|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.33.2147483648.1509949473.68609|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.34.112.37945344.0|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.34.2147483648.1509949473.68609|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.36.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.36.2147483648.1509949473.68609|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.37.112.37945344.0|2|1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.37.2147483648.1509949473.68609|2|1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.38.112.37945344.0|2|-1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.38.2147483648.1509949473.68609|2|-1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.39.112.37945344.0|2|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.39.2147483648.1509949473.68609|2|4 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.42.112.37945344.0|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.42.2147483648.1509949473.68609|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.47.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.47.2147483648.1509949473.68609|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.49.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.49.2147483648.1509949473.68609|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.50.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.50.2147483648.1509949473.68609|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.51.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.51.2147483648.1509949473.68609|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.56.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.56.2147483648.1509949473.68609|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.57.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.57.2147483648.1509949473.68609|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.61.112.37945344.0|2|1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.61.2147483648.1509949473.68609|2|1 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.62.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.62.2147483648.1509949473.68609|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.64.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.64.2147483648.1509949473.68609|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.65.112.37945344.0|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.65.2147483648.1509949473.68609|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.67.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.67.2147483648.1509949473.68609|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.68.112.37945344.0|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.68.2147483648.1509949473.68609|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.69.112.37945344.0|2|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.69.2147483648.1509949473.68609|2|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.71.112.37945344.0|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.71.2147483648.1509949473.68609|4| +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.72.112.37945344.0|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.72.2147483648.1509949473.68609|66|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.74.112.37945344.0|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.74.2147483648.1509949473.68609|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.75.112.37945344.0|2|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.75.2147483648.1509949473.68609|2|0 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.76.112.37945344.0|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.76.2147483648.1509949473.68609|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.77.112.37945344.0|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.77.2147483648.1509949473.68609|2|2 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.79.112.37945344.0|66|4294967295 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.79.2147483648.1509949473.68609|66|4294967295 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.80.112.37945344.0|66|4294967295 +1.3.6.1.4.1.6527.3.1.2.4.3.2.1.80.2147483648.1509949473.68609|66|4294967295 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.1.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.1.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.2.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.2.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.3.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.3.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.4.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.4.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.5.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.5.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.6.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.6.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.7.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.7.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.8.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.8.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.9.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.9.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.10.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.10.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.11.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.11.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.12.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.12.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.13.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.13.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.14.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.14.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.15.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.15.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.16.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.16.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.17.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.17.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.18.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.18.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.19.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.19.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.20.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.20.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.21.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.21.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.22.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.22.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.23.112.37945344.0|66|1 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.23.2147483648.1509949473.68609|66|1 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.24.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.24.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.25.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.25.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.26.112.37945344.0|65|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.26.2147483648.1509949473.68609|65|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.27.112.37945344.0|65|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.27.2147483648.1509949473.68609|65|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.28.112.37945344.0|67|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.28.2147483648.1509949473.68609|67|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.29.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.29.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.30.112.37945344.0|65|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.30.2147483648.1509949473.68609|65|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.31.112.37945344.0|65|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.31.2147483648.1509949473.68609|65|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.32.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.32.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.33.112.37945344.0|65|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.33.2147483648.1509949473.68609|65|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.34.112.37945344.0|65|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.34.2147483648.1509949473.68609|65|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.35.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.35.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.36.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.36.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.37.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.37.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.38.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.38.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.39.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.39.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.40.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.40.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.41.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.41.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.42.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.42.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.43.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.43.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.44.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.44.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.45.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.45.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.46.112.37945344.0|70|0 +1.3.6.1.4.1.6527.3.1.2.4.3.6.1.46.2147483648.1509949473.68609|70|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.1.1971|66|1971 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.2.1971|2|1 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.3.1971|2|1 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.6.1971|4| +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.7.1971|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.8.1971|2|1 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.9.1971|2|6 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.10.1971|2|1770 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.11.1971|2|1770 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.12.1971|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.13.1971|2|5 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.14.1971|2|10 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.15.1971|2|3 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.16.1971|2|10 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.17.1971|67|371 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.18.1971|2|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.19.1971|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.20.1971|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.21.1971|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.22.1971|2|5 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.23.1971|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.24.1971|66|33024 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.25.1971|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.26.1971|4|40 1 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.27.1971|67|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.28.1971|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.29.1971|4x|0000000000000000 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.30.1971|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.31.1971|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.32.1971|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.33.1971|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.34.1971|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.35.1971|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.36.1971|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.38.1971|66|35047 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.39.1971|66|100 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.40.1971|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.41.1971|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.44.1971|2|1 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.45.1971|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.46.1971|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.47.1971|2|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.48.1971|2|-1 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.49.1971|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.51.1971|4|default +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.52.1971|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.53.1971|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.54.1971|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.56.1971|2|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.57.1971|66|503316480 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.60.1971|2|1 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.61.1971|4x|0A01611E +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.62.1971|2|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.63.1971|4| +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.64.1971|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.65.1971|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.66.1971|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.67.1971|2|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.68.1971|4| +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.69.1971|2|1 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.70.1971|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.71.1971|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.72.1971|2|1 +1.3.6.1.4.1.6527.3.1.2.4.4.3.1.73.1971|4x|0A01611E +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.1.112.0.0.7.179.0.0.0.112|4x|000007B300000070 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.2.112.0.0.7.179.0.0.0.112|2|1 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.3.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.4.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.5.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.6.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.7.112.0.0.7.179.0.0.0.112|2|1 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.8.112.0.0.7.179.0.0.0.112|2|5 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.9.112.0.0.7.179.0.0.0.112|67|371 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.10.112.0.0.7.179.0.0.0.112|2|1 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.11.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.12.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.13.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.14.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.15.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.16.112.0.0.7.179.0.0.0.112|66|1 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.17.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.18.112.0.0.7.179.0.0.0.112|66|4095 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.19.112.0.0.7.179.0.0.0.112|4| +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.20.112.0.0.7.179.0.0.0.112|4|16 00 00 00 00 00 00 00 3 5 6 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.21.112.0.0.7.179.0.0.0.112|67|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.22.112.0.0.7.179.0.0.0.112|2|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.23.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.24.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.25.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.26.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.27.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.28.112.0.0.7.179.0.0.0.112|4|00 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.29.112.0.0.7.179.0.0.0.112|4|00 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.30.112.0.0.7.179.0.0.0.112|4|00 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.31.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.32.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.33.112.0.0.7.179.0.0.0.112|4| +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.34.112.0.0.7.179.0.0.0.112|66|4 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.35.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.36.112.0.0.7.179.0.0.0.112|2|1 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.37.112.0.0.7.179.0.0.0.112|4x|00000000 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.38.112.0.0.7.179.0.0.0.112|2|3 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.39.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.40.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.41.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.42.112.0.0.7.179.0.0.0.112|2|1 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.43.112.0.0.7.179.0.0.0.112|4| +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.44.112.0.0.7.179.0.0.0.112|4| +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.45.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.47.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.48.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.54.112.0.0.7.179.0.0.0.112|2|1 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.55.112.0.0.7.179.0.0.0.112|4| +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.56.112.0.0.7.179.0.0.0.112|4| +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.57.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.60.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.61.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.62.112.0.0.7.179.0.0.0.112|4| +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.63.112.0.0.7.179.0.0.0.112|4| +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.64.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.65.112.0.0.7.179.0.0.0.112|66|0 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.67.112.0.0.7.179.0.0.0.112|4|00 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.68.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.70.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.72.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.74.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.75.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.76.112.0.0.7.179.0.0.0.112|4| +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.77.112.0.0.7.179.0.0.0.112|2|2 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.78.112.0.0.7.179.0.0.0.112|2|1 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.82.112.0.0.7.179.0.0.0.112|2|1600 +1.3.6.1.4.1.6527.3.1.2.4.4.4.1.83.112.0.0.7.179.0.0.0.112|2|0 +1.3.6.1.4.1.6527.3.1.2.4.4.5.1.1.112.0.0.7.179.0.0.0.112|70|0 +1.3.6.1.4.1.6527.3.1.2.4.4.5.1.2.112.0.0.7.179.0.0.0.112|70|0 +1.3.6.1.4.1.6527.3.1.2.4.4.5.1.3.112.0.0.7.179.0.0.0.112|70|0 +1.3.6.1.4.1.6527.3.1.2.4.4.5.1.4.112.0.0.7.179.0.0.0.112|70|0 +1.3.6.1.4.1.6527.3.1.2.4.4.5.1.5.112.0.0.7.179.0.0.0.112|66|1 +1.3.6.1.4.1.6527.3.1.2.4.4.5.1.6.112.0.0.7.179.0.0.0.112|70|0 +1.3.6.1.4.1.6527.3.1.2.4.4.5.1.7.112.0.0.7.179.0.0.0.112|70|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.1.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.2.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.3.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.4.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.5.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.6.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.7.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.8.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.9.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.10.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.11.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.12.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.13.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.14.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.15.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.16.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.17.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.18.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.19.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.20.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.21.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.22.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.23.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.24.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.25.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.26.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.27.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.28.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.29.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.30.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.31.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.32.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.33.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.34.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.35.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.36.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.37.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.38.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.39.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.40.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.41.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.42.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.43.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.44.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.45.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.46.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.47.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.48.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.49.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.50.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.51.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.52.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.53.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.54.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.55.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.56.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.57.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.58.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.59.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.60.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.61.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.62.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.63.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.64.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.65.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.66.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.67.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.68.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.69.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.70.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.71.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.72.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.73.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.74.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.75.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.76.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.77.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.78.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.79.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.80.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.81.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.82.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.83.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.84.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.85.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.86.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.87.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.88.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.89.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.90.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.91.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.92.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.93.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.94.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.95.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.96.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.97.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.98.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.99.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.100.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.101.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.102.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.103.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.104.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.105.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.106.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.107.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.108.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.109.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.110.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.111.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.112.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.113.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.114.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.115.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.116.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.117.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.118.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.119.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.120.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.121.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.122.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.123.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.124.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.125.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.126.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.127.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.128.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.129.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.130.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.131.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.132.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.133.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.134.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.135.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.136.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.137.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.138.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.139.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.140.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.141.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.142.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.143.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.144.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.145.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.146.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.147.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.148.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.149.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.150.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.151.1|65|0 +1.3.6.1.4.1.6527.3.1.2.33.1.107.1.152.1|65|0 +1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.2.35684352|2|5 +1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.2.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.3.35684352|2|1 +1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.3.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.4.35684352|66|3 +1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.4.35717120|66|0 +1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.5.35684352|66|1275 +1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.5.35717120|66|0 +1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.8.35684352|2|-51 +1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.8.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.9.35684352|2|-70 +1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.9.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.11.35684352|2|-8 +1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.11.35717120|2|0 +1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.12.35684352|2|264 +1.3.6.1.4.1.6527.3.1.2.109.3.1.1.1.12.35717120|2|-200 +1.3.6.1.4.1.6527.3.1.2.109.3.1.3.1.1.35684352.1|2|1 +1.3.6.1.4.1.6527.3.1.2.109.3.1.3.1.1.35717120.2|2|2 +1.3.6.1.4.1.6527.3.1.2.109.3.1.4.1.1.35684352.1|2|1 +1.3.6.1.4.1.6527.3.1.2.109.3.1.4.1.1.35717120.1|2|0 +1.3.6.1.4.1.6527.3.1.2.109.3.1.4.1.8.35684352.1|4|mpls.tampnet +1.3.6.1.4.1.6527.3.1.2.109.3.1.4.1.8.35717120.1|4| +1.3.6.1.4.1.6527.3.1.2.109.3.1.5.1.1.35684352.5|66|5 +1.3.6.1.4.1.6527.3.1.2.109.3.1.5.1.2.35684352.5|2|1 +1.3.6.1.4.1.6527.3.1.2.109.3.1.5.1.3.35684352.5|66|9 +1.3.6.1.4.1.6527.3.1.2.109.3.1.5.1.4.35684352.5|66|0 +1.3.6.1.4.1.6527.3.1.2.109.3.1.5.1.5.35684352.5|66|0 +1.3.6.1.4.1.6527.3.1.2.109.3.1.5.1.6.35684352.5|66|0 +1.3.6.1.4.1.6527.3.1.2.109.3.1.5.1.7.35684352.5|66|0 +1.3.6.1.6.3.10.2.1.3.0|2|264138