Add support for Cisco Nexus 3550 series (formerly Exalink Fusion) devices (#13992)

* Add support for Cisco Nexus 3550-F (formerly Exalink Fusion) devices

* Refactor to refer to the Exalink Fusion as the Cisco Nexus 3550 (post m&a of Exablaze by Cisco) as well as use YAML based OS discovery

* Rename Cisco N3550 ports include

* styleci fixes to n3550 ports include

* Correct N3550/Exalink OS discovery and improve tests

* Improve N3550 OS discovery and poller support

* styleci

* Rename Cisco Nexus 3550 OS from ciscon3550 -> exalink-fusion

* Update file header
This commit is contained in:
Nash Kaminski 2022-06-04 15:39:21 -05:00 committed by GitHub
parent 4fe3b0fd57
commit acfd09287a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 7165 additions and 0 deletions

View File

@ -0,0 +1,60 @@
mib: EXALINK-FUSION-MIB
modules:
os:
version: EXALINK-FUSION-MIB::fusionInfoVersion
hardware: EXALINK-FUSION-MIB::fusionInfoBoard
serial: EXALINK-FUSION-MIB::fusionInfoSerial
sensors:
power:
data:
-
oid: fusionPsuTable
value: fusionPsuPowerIn
num_oid: '.1.3.6.1.4.1.43296.3.3.1.5.{{ $index }}'
descr: 'PSU{{ $index }} Input'
index: 'fusionPsuPowerIn.{{ $index }}'
-
oid: fusionPsuTable
value: fusionPsuPowerOut
num_oid: '.1.3.6.1.4.1.43296.3.3.1.6.{{ $index }}'
descr: 'PSU{{ $index }} Output'
index: 'fusionPsuPowerOut.{{ $index }}'
state:
data:
-
oid: fusionPsuTable
value: fusionPsuPresent
num_oid: '.1.3.6.1.4.1.43296.3.3.1.3.{{ $index }}'
descr: 'PSU{{ $index }} Presence'
index: 'fusionPsuPresent.{{ $index }}'
state_name: fusionPsuPresent
states:
- { value: 1, generic: 0, graph: 0, descr: Present }
- { value: 2, generic: 3, graph: 0, descr: Missing }
temperature:
data:
-
oid: fusionPsuTable
value: fusionPsuTemperature
num_oid: '.1.3.6.1.4.1.43296.3.3.1.4.{{ $index }}'
descr: 'PSU{{ $index }} Temp.'
index: 'fusionPsuTemperature.{{ $index }}'
-
oid: fusionTempSensorTable
value: fusionTempSensorValue
num_oid: '.1.3.6.1.4.1.43296.3.2.1.1.3.{{ $index }}'
descr: 'temp{{ $index }} ({{ $fusionTempSensorName }})'
index: 'fusionTempSensorValue.{{ $index }}'
fanspeed:
data:
-
oid: fusionFanSensorTable
value: fusionFanSensorValue
num_oid: '.1.3.6.1.4.1.43296.3.2.2.1.3.{{ $index }}'
descr: 'fan{{ $index }} RPM'
index: 'fusionFanSensorValue.{{ $index }}'
low_limit: 512
low_warn_limit: 4096
warn_limit: 32768
high_limit: 32769

View File

@ -0,0 +1,26 @@
os: exalink-fusion
text: 'Cisco Nexus 3550 Series'
type: network
icon: cisco
discovery:
- sysObjectID:
- .1.3.6.1.4.1.43296.
mib_dir: exalink-fusion
poller_modules:
ipmi: false
processors: false
mempools: false
storage: false
ospf: false
ucd-diskio: false
wireless: false
applications: false
discovery_modules:
processors: false
mempools: false
storage: false
ospf: false
ucd-diskio: false
cisco-vrf-lite: false
wireless: false

View File

@ -213,6 +213,8 @@ $port_stats = [];
if ($device['os'] === 'f5' && (version_compare($device['version'], '11.2.0', '>=') && version_compare($device['version'], '11.7', '<'))) {
require 'ports/f5.inc.php';
} elseif ($device['os'] === 'exalink-fusion') {
require 'ports/exalink-fusion.inc.php';
} else {
if (Config::getOsSetting($device['os'], 'polling.selected_ports') || (isset($device['attribs']['selected_ports']) && $device['attribs']['selected_ports'] == 'true')) {
echo 'Selected ports polling ';

View File

@ -0,0 +1,63 @@
<?php
/**
* exalink-fusion.inc.php
*
* Copyright (C) 2018 Goldman Sachs & Co.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @author Nash Kaminski <Nash.Kaminski@gs.com>
*/
$exa_stats = snmpwalk_cache_oid($device, 'fusionPortTable', [], 'EXALINK-FUSION-MIB');
unset($exa_stats[0]);
$obj_map = [
'ifName' => 'fusionPortName',
'ifAlias' => 'fusionPortAlias',
'ifOperStatus' => 'fusionPortHasSignal',
'ifAdminStatus' => 'fusionPortEnabled',
'ifHighSpeed' => 'fusionPortSpeed',
'ifHCInOctets' => 'fusionPortRXBytes',
'ifHCOutOctets' => 'fusionPortTXBytes',
'ifInErrors' => 'fusionPortRXErrors',
'ifConnectorPresent' => 'fusionPortPresent',
];
// Rename these to use "up" and "down"
$tf_rename_map = [
'fusionPortHasSignal',
'fusionPortEnabled',
];
$orig_tf = ['true', 'false'];
$std_tf = ['up', 'down'];
// Only supports ethernet
$ifType = 'ethernetCsmacd';
foreach ($exa_stats as $name => $tmp_stats) {
$e_name = explode('.', $name);
$index = (((int) ($e_name[0])) - 1) * 16 + (int) ($e_name[1]);
$port_stats[$index] = [];
$port_stats[$index]['ifName'] = $name;
$port_stats[$index]['ifType'] = $ifType;
foreach ($obj_map as $ifEntry => $IfxStat) {
if (in_array($IfxStat, $tf_rename_map)) {
$val = str_replace($orig_tf, $std_tf, $exa_stats[$name][$IfxStat]);
} else {
$val = $exa_stats[$name][$IfxStat];
}
$port_stats[$index][$ifEntry] = $val;
}
$port_stats[$index]['ifDescr'] = $port_stats[$index]['ifName'];
}

View File

@ -0,0 +1,679 @@
EXALINK-FUSION-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32,
NOTIFICATION-TYPE, enterprises FROM SNMPv2-SMI
TruthValue FROM SNMPv2-TC
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
;
exaFusion MODULE-IDENTITY
LAST-UPDATED "201703160000Z"
ORGANIZATION "Exablaze"
CONTACT-INFO
"email: info@exablaze.com"
DESCRIPTION
"Added port statistics"
REVISION "201703160000Z"
DESCRIPTION
"Added fusion sysinfo"
REVISION "201510200000Z"
DESCRIPTION
"MIB for the Exalink-FUSION."
REVISION "201507300000Z"
DESCRIPTION
"Added initial traps."
REVISION "201504130000Z"
DESCRIPTION
"Initial version."
::= { enterprises 43296 3 }
--
-- MIB is based on tables, defined as "SEQUENCE of"
-- see RFC2578. This should allow some extensibility
-- in terms of adding features to the data without
-- invalidating existing usage of the MIB.
-- (i.e. avoid hardcoded indicies in the names of objects).
--
fusionInfo OBJECT IDENTIFIER ::= { exaFusion 1 }
fusionInfoSerial OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Serial number"
::= { fusionInfo 1 }
fusionInfoVersion OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Software version number"
::= { fusionInfo 2 }
fusionInfoBoard OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware type"
::= { fusionInfo 3 }
fusionInfoSoftware OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Software date stamp"
::= { fusionInfo 4 }
fusionLineCardTable OBJECT-TYPE
SYNTAX SEQUENCE OF FusionLineCard
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of line card information"
::= { fusionInfo 5 }
fusionLineCard OBJECT-TYPE
SYNTAX FusionLineCard
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Line card information"
INDEX { fusionLineCardIndex }
::= { fusionLineCardTable 1 }
FusionLineCard ::=
SEQUENCE {
fusionLineCardIndex Integer32,
fusionLineCardName SnmpAdminString,
fusionLineCardBoard SnmpAdminString
}
fusionLineCardIndex OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Line card index"
::= { fusionLineCard 1 }
fusionLineCardName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Line card name"
::= { fusionLineCard 2 }
fusionLineCardBoard OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Line card hardware type"
::= { fusionLineCard 3 }
fusionModuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF FusionModule
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of internal modules"
::= { fusionInfo 6 }
fusionModule OBJECT-TYPE
SYNTAX FusionModule
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Internal module information"
INDEX { fusionModuleIndex }
::= { fusionModuleTable 1 }
FusionModule ::=
SEQUENCE {
fusionModuleIndex Integer32,
fusionModuleName SnmpAdminString,
fusionModuleBoard SnmpAdminString,
fusionModuleFunction SnmpAdminString
}
fusionModuleIndex OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Internal module index"
::= { fusionModule 1 }
fusionModuleName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Internal module name"
::= { fusionModule 2 }
fusionModuleBoard OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Internal module hardware type"
::= { fusionModule 3 }
fusionModuleFunction OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current internal module firmware"
::= { fusionModule 4 }
fusionSysInfo OBJECT IDENTIFIER ::= { fusionInfo 7 }
fusionSysInfoLoadAverage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 1, 5 and 15 minute load averages multipled by 100"
::= { fusionSysInfo 1 }
fusionSysInfoAvailMem OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"System available memory in bytes"
::= { fusionSysInfo 2 }
fusionSysInfoNumProcesses OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of current processes"
::= { fusionSysInfo 3 }
fusionSensor OBJECT IDENTIFIER ::= { exaFusion 2 }
fusionTempSensorTable OBJECT-TYPE
SYNTAX SEQUENCE OF FusionTempSensor
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of temperature sensors"
::= { fusionSensor 1 }
fusionTempSensor OBJECT-TYPE
SYNTAX FusionTempSensor
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Temperature sensor"
INDEX { fusionTempSensorIndex }
::= { fusionTempSensorTable 1 }
FusionTempSensor ::=
SEQUENCE {
fusionTempSensorIndex Integer32,
fusionTempSensorName SnmpAdminString,
fusionTempSensorValue Integer32
}
fusionTempSensorIndex OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Temperature sensor index"
::= { fusionTempSensor 1 }
fusionTempSensorName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Temperature sensor name"
::= { fusionTempSensor 2 }
fusionTempSensorValue OBJECT-TYPE
SYNTAX Integer32
UNITS "Celsius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current reading of temperature sensor"
::= { fusionTempSensor 3 }
fusionFanSensorTable OBJECT-TYPE
SYNTAX SEQUENCE OF FusionFanSensor
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of fan sensors"
::= { fusionSensor 2 }
fusionFanSensor OBJECT-TYPE
SYNTAX FusionFanSensor
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Fan sensor"
INDEX { fusionFanSensorIndex }
::= { fusionFanSensorTable 1 }
FusionFanSensor ::=
SEQUENCE {
fusionFanSensorIndex Integer32,
fusionFanSensorName SnmpAdminString,
fusionFanSensorValue Integer32
}
fusionFanSensorIndex OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Fan sensor index"
::= { fusionFanSensor 1 }
fusionFanSensorName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Fan sensor name"
::= { fusionFanSensor 2 }
fusionFanSensorValue OBJECT-TYPE
SYNTAX Integer32
UNITS "RPM"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current reading of fan sensor"
::= { fusionFanSensor 3 }
fusionPsuTable OBJECT-TYPE
SYNTAX SEQUENCE OF FusionPsu
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of power supplies"
::= { exaFusion 3 }
fusionPsu OBJECT-TYPE
SYNTAX FusionPsu
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Power supply information"
INDEX { fusionPsuIndex }
::= { fusionPsuTable 1 }
FusionPsu ::=
SEQUENCE {
fusionPsuIndex Integer32,
fusionPsuType SnmpAdminString,
fusionPsuPresent Integer32,
fusionPsuTemperature Integer32,
fusionPsuPowerIn Integer32,
fusionPsuPowerOut Integer32
}
fusionPsuIndex OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power supply index"
::= { fusionPsu 1 }
fusionPsuType OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power supply manufacturer and model number"
::= { fusionPsu 2 }
fusionPsuPresent OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if power supply is present"
::= { fusionPsu 3 }
fusionPsuTemperature OBJECT-TYPE
SYNTAX Integer32
UNITS "Celsius"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average of current power supply temperature readings"
::= { fusionPsu 4 }
fusionPsuPowerIn OBJECT-TYPE
SYNTAX Integer32
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current power supply input power"
::= { fusionPsu 5 }
fusionPsuPowerOut OBJECT-TYPE
SYNTAX Integer32
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current power supply output power"
::= { fusionPsu 6 }
fusionPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF FusionPort
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of ports"
::= { exaFusion 4 }
fusionPort OBJECT-TYPE
SYNTAX FusionPort
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port information"
INDEX { fusionPortLineCard, fusionPortIndex }
::= { fusionPortTable 1 }
FusionPort ::=
SEQUENCE {
fusionPortLineCard Integer32,
fusionPortIndex Integer32,
fusionPortName SnmpAdminString,
fusionPortPresent Integer32,
fusionPortHasSignal Integer32,
fusionPortEnabled Integer32,
fusionPortAlias SnmpAdminString,
fusionPortSpeed Integer32,
fusionPortRXPackets Counter64,
fusionPortRXBytes Counter64,
fusionPortRXErrors Counter64,
fusionPortTXPackets Counter64,
fusionPortTXBytes Counter64
}
fusionPortLineCard OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Line card index"
::= { fusionPort 1 }
fusionPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port index"
::= { fusionPort 2 }
fusionPortName OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port name"
::= { fusionPort 3 }
fusionPortPresent OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if a SFP is present in the port"
::= { fusionPort 4 }
fusionPortHasSignal OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if signal has been detected on the port"
::= { fusionPort 5 }
fusionPortEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if the port is currently enabled"
::= { fusionPort 6 }
fusionPortAlias OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Port alias"
::= { fusionPort 7 }
fusionPortSpeed OBJECT-TYPE
SYNTAX Integer32
UNITS "Mbps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Currently configured port speed"
::= { fusionPort 8 }
fusionPortRXPackets OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Ethernet frames received"
::= { fusionPort 9 }
fusionPortRXBytes OBJECT-TYPE
SYNTAX Counter64
UNITS "B"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Ethernet bytes received"
::= { fusionPort 10 }
fusionPortRXErrors OBJECT-TYPE
SYNTAX Counter64
UNITS "B"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Ethernet frames received with checksum mismatch"
::= { fusionPort 11 }
fusionPortTXPackets OBJECT-TYPE
SYNTAX Counter64
UNITS "Packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Ethernet frames transmitted"
::= { fusionPort 12 }
fusionPortTXBytes OBJECT-TYPE
SYNTAX Counter64
UNITS "B"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Ethernet bytes transmitted"
::= { fusionPort 13 }
--
-- Values passed in Traps
--
fusionTrapValues OBJECT IDENTIFIER ::= { exaFusion 5 }
fusionLidOpenStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if the lid is currently open"
::= { fusionTrapValues 1 }
fusionFanFaultStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if there is a fan fault"
::= { fusionTrapValues 2 }
fusionHighTempStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if there is a fan fault"
::= { fusionTrapValues 3 }
fusionPortUsageStatus OBJECT-TYPE
SYNTAX INTEGER {
off(0),
error(1),
unused(2),
ok(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port usage status, corresponds to right hand LED for port"
::= { fusionTrapValues 4 }
fusionPortLinkStatus OBJECT-TYPE
SYNTAX INTEGER {
off(0),
error(1),
unused(2),
ok(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port link status, corresponds to left hand LED for port"
::= { fusionTrapValues 5 }
fusionPsuFaultStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if there is a PSU fault"
::= { fusionTrapValues 6 }
fusionTimeSourceStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if a time synchronisation source is available"
::= { fusionTrapValues 7 }
--
-- SNMP Trap alerts
--
fusionTraps OBJECT IDENTIFIER ::= { exaFusion 6 }
fusionPowerFail NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"System is shutting down because of power loss"
::= { fusionTraps 1 }
fusionTamperAlert NOTIFICATION-TYPE
OBJECTS {
fusionLidOpenStatus
}
STATUS current
DESCRIPTION
"The lid of the device has been opened or closed"
::= { fusionTraps 2 }
fusionTempAlert NOTIFICATION-TYPE
OBJECTS {
fusionTempSensorName,
fusionHighTempStatus
}
STATUS current
DESCRIPTION
"Temperature has gone above or below a threshold"
::= { fusionTraps 3 }
fusionPsuAlert NOTIFICATION-TYPE
OBJECTS {
fusionPsuFaultStatus
}
STATUS current
DESCRIPTION
"Power supply has been added or removed, become faulty or returned to normal"
::= { fusionTraps 4 }
fusionSystemAlert NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"The system service has restarted"
::= { fusionTraps 5 }
fusionFanAlert NOTIFICATION-TYPE
OBJECTS {
fusionFanFaultStatus
}
STATUS current
DESCRIPTION
"A fan has become faulty or returned to normal"
::= { fusionTraps 6 }
fusionPortAlert NOTIFICATION-TYPE
OBJECTS {
fusionPortName,
fusionPortLinkStatus,
fusionPortUsageStatus
}
STATUS current
DESCRIPTION
"Port link status or usage has changed, corresponds to changes in LEDs"
::= { fusionTraps 7 }
fusionConfigUpdateAlert NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"The device's configuration has been changed"
::= { fusionTraps 8 }
fusionTimeAlert NOTIFICATION-TYPE
OBJECTS {
fusionTimeSourceStatus
}
STATUS current
DESCRIPTION
"A time synchronisation source has been gained or lost"
::= { fusionTraps 9 }
END

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,691 @@
1.3.6.1.2.1.1.1.0|4|Linux <private> 3.12.30 #1 Fri Oct 13 18:41:36 AEDT 2017 armv7l
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.43296.3
1.3.6.1.2.1.1.3.0|67|165184302
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.4.1.43296.3.1.1|4|EBFSN-Z-123123
1.3.6.1.4.1.43296.3.1.2|4|1.9.0
1.3.6.1.4.1.43296.3.1.3|4|Simulated Nexus 3550
1.3.6.1.4.1.43296.3.1.4|4|2018-03-23 12:11:15 +1100 (964571d)
1.3.6.1.4.1.43296.3.2.1.1.1.1|2|1
1.3.6.1.4.1.43296.3.2.1.1.1.2|2|2
1.3.6.1.4.1.43296.3.2.1.1.1.3|2|3
1.3.6.1.4.1.43296.3.2.1.1.1.4|2|4
1.3.6.1.4.1.43296.3.2.1.1.1.5|2|5
1.3.6.1.4.1.43296.3.2.1.1.1.6|2|6
1.3.6.1.4.1.43296.3.2.1.1.1.7|2|7
1.3.6.1.4.1.43296.3.2.1.1.1.8|2|8
1.3.6.1.4.1.43296.3.2.1.1.1.9|2|9
1.3.6.1.4.1.43296.3.2.1.1.1.10|2|10
1.3.6.1.4.1.43296.3.2.1.1.1.11|2|11
1.3.6.1.4.1.43296.3.2.1.1.2.1|4|crosspoint
1.3.6.1.4.1.43296.3.2.1.1.2.2|4|crosspoint
1.3.6.1.4.1.43296.3.2.1.1.2.3|4|crosspoint
1.3.6.1.4.1.43296.3.2.1.1.2.4|4|crosspoint
1.3.6.1.4.1.43296.3.2.1.1.2.5|4|module_x
1.3.6.1.4.1.43296.3.2.1.1.2.6|4|module_x
1.3.6.1.4.1.43296.3.2.1.1.2.7|4|mainboard
1.3.6.1.4.1.43296.3.2.1.1.2.8|4|mainboard
1.3.6.1.4.1.43296.3.2.1.1.2.9|4|line_card_a
1.3.6.1.4.1.43296.3.2.1.1.2.10|4|line_card_c
1.3.6.1.4.1.43296.3.2.1.1.2.11|4|line_card_b
1.3.6.1.4.1.43296.3.2.1.1.3.1|2|49
1.3.6.1.4.1.43296.3.2.1.1.3.2|2|48
1.3.6.1.4.1.43296.3.2.1.1.3.3|2|48
1.3.6.1.4.1.43296.3.2.1.1.3.4|2|46
1.3.6.1.4.1.43296.3.2.1.1.3.5|2|38
1.3.6.1.4.1.43296.3.2.1.1.3.6|2|48
1.3.6.1.4.1.43296.3.2.1.1.3.7|2|35
1.3.6.1.4.1.43296.3.2.1.1.3.8|2|30
1.3.6.1.4.1.43296.3.2.1.1.3.9|2|50
1.3.6.1.4.1.43296.3.2.1.1.3.10|2|43
1.3.6.1.4.1.43296.3.2.1.1.3.11|2|47
1.3.6.1.4.1.43296.3.2.2.1.1.1|2|1
1.3.6.1.4.1.43296.3.2.2.1.1.2|2|2
1.3.6.1.4.1.43296.3.2.2.1.1.3|2|3
1.3.6.1.4.1.43296.3.2.2.1.1.4|2|4
1.3.6.1.4.1.43296.3.2.2.1.2.1|4|fan_0
1.3.6.1.4.1.43296.3.2.2.1.2.2|4|fan_1
1.3.6.1.4.1.43296.3.2.2.1.2.3|4|fan_2
1.3.6.1.4.1.43296.3.2.2.1.2.4|4|fan_3
1.3.6.1.4.1.43296.3.2.2.1.3.1|2|13440
1.3.6.1.4.1.43296.3.2.2.1.3.2|2|13560
1.3.6.1.4.1.43296.3.2.2.1.3.3|2|13560
1.3.6.1.4.1.43296.3.2.2.1.3.4|2|13560
1.3.6.1.4.1.43296.3.3.1.1.1|2|1
1.3.6.1.4.1.43296.3.3.1.1.2|2|2
1.3.6.1.4.1.43296.3.3.1.2.1|4|ARTESYN:DS460
1.3.6.1.4.1.43296.3.3.1.2.2|4|ARTESYN:DS460
1.3.6.1.4.1.43296.3.3.1.3.1|2|1
1.3.6.1.4.1.43296.3.3.1.3.2|2|1
1.3.6.1.4.1.43296.3.3.1.4.1|2|37
1.3.6.1.4.1.43296.3.3.1.4.2|2|45
1.3.6.1.4.1.43296.3.3.1.5.1|2|67
1.3.6.1.4.1.43296.3.3.1.5.2|2|82
1.3.6.1.4.1.43296.3.3.1.6.1|2|55
1.3.6.1.4.1.43296.3.3.1.6.2|2|73
1.3.6.1.4.1.43296.3.4.1.1.1.1|2|1
1.3.6.1.4.1.43296.3.4.1.1.1.2|2|1
1.3.6.1.4.1.43296.3.4.1.1.1.3|2|1
1.3.6.1.4.1.43296.3.4.1.1.1.4|2|1
1.3.6.1.4.1.43296.3.4.1.1.1.5|2|1
1.3.6.1.4.1.43296.3.4.1.1.1.6|2|1
1.3.6.1.4.1.43296.3.4.1.1.1.7|2|1
1.3.6.1.4.1.43296.3.4.1.1.1.8|2|1
1.3.6.1.4.1.43296.3.4.1.1.1.9|2|1
1.3.6.1.4.1.43296.3.4.1.1.1.10|2|1
1.3.6.1.4.1.43296.3.4.1.1.1.11|2|1
1.3.6.1.4.1.43296.3.4.1.1.1.12|2|1
1.3.6.1.4.1.43296.3.4.1.1.1.13|2|1
1.3.6.1.4.1.43296.3.4.1.1.1.14|2|1
1.3.6.1.4.1.43296.3.4.1.1.1.15|2|1
1.3.6.1.4.1.43296.3.4.1.1.1.16|2|1
1.3.6.1.4.1.43296.3.4.1.1.2.1|2|2
1.3.6.1.4.1.43296.3.4.1.1.2.2|2|2
1.3.6.1.4.1.43296.3.4.1.1.2.3|2|2
1.3.6.1.4.1.43296.3.4.1.1.2.4|2|2
1.3.6.1.4.1.43296.3.4.1.1.2.5|2|2
1.3.6.1.4.1.43296.3.4.1.1.2.6|2|2
1.3.6.1.4.1.43296.3.4.1.1.2.7|2|2
1.3.6.1.4.1.43296.3.4.1.1.2.8|2|2
1.3.6.1.4.1.43296.3.4.1.1.2.9|2|2
1.3.6.1.4.1.43296.3.4.1.1.2.10|2|2
1.3.6.1.4.1.43296.3.4.1.1.2.11|2|2
1.3.6.1.4.1.43296.3.4.1.1.2.12|2|2
1.3.6.1.4.1.43296.3.4.1.1.2.13|2|2
1.3.6.1.4.1.43296.3.4.1.1.2.14|2|2
1.3.6.1.4.1.43296.3.4.1.1.2.15|2|2
1.3.6.1.4.1.43296.3.4.1.1.2.16|2|2
1.3.6.1.4.1.43296.3.4.1.1.3.1|2|3
1.3.6.1.4.1.43296.3.4.1.1.3.2|2|3
1.3.6.1.4.1.43296.3.4.1.1.3.3|2|3
1.3.6.1.4.1.43296.3.4.1.1.3.4|2|3
1.3.6.1.4.1.43296.3.4.1.1.3.5|2|3
1.3.6.1.4.1.43296.3.4.1.1.3.6|2|3
1.3.6.1.4.1.43296.3.4.1.1.3.7|2|3
1.3.6.1.4.1.43296.3.4.1.1.3.8|2|3
1.3.6.1.4.1.43296.3.4.1.1.3.9|2|3
1.3.6.1.4.1.43296.3.4.1.1.3.10|2|3
1.3.6.1.4.1.43296.3.4.1.1.3.11|2|3
1.3.6.1.4.1.43296.3.4.1.1.3.12|2|3
1.3.6.1.4.1.43296.3.4.1.1.3.13|2|3
1.3.6.1.4.1.43296.3.4.1.1.3.14|2|3
1.3.6.1.4.1.43296.3.4.1.1.3.15|2|3
1.3.6.1.4.1.43296.3.4.1.1.3.16|2|3
1.3.6.1.4.1.43296.3.4.1.2.1.1|2|1
1.3.6.1.4.1.43296.3.4.1.2.1.2|2|2
1.3.6.1.4.1.43296.3.4.1.2.1.3|2|3
1.3.6.1.4.1.43296.3.4.1.2.1.4|2|4
1.3.6.1.4.1.43296.3.4.1.2.1.5|2|5
1.3.6.1.4.1.43296.3.4.1.2.1.6|2|6
1.3.6.1.4.1.43296.3.4.1.2.1.7|2|7
1.3.6.1.4.1.43296.3.4.1.2.1.8|2|8
1.3.6.1.4.1.43296.3.4.1.2.1.9|2|9
1.3.6.1.4.1.43296.3.4.1.2.1.10|2|10
1.3.6.1.4.1.43296.3.4.1.2.1.11|2|11
1.3.6.1.4.1.43296.3.4.1.2.1.12|2|12
1.3.6.1.4.1.43296.3.4.1.2.1.13|2|13
1.3.6.1.4.1.43296.3.4.1.2.1.14|2|14
1.3.6.1.4.1.43296.3.4.1.2.1.15|2|15
1.3.6.1.4.1.43296.3.4.1.2.1.16|2|16
1.3.6.1.4.1.43296.3.4.1.2.2.1|2|1
1.3.6.1.4.1.43296.3.4.1.2.2.2|2|2
1.3.6.1.4.1.43296.3.4.1.2.2.3|2|3
1.3.6.1.4.1.43296.3.4.1.2.2.4|2|4
1.3.6.1.4.1.43296.3.4.1.2.2.5|2|5
1.3.6.1.4.1.43296.3.4.1.2.2.6|2|6
1.3.6.1.4.1.43296.3.4.1.2.2.7|2|7
1.3.6.1.4.1.43296.3.4.1.2.2.8|2|8
1.3.6.1.4.1.43296.3.4.1.2.2.9|2|9
1.3.6.1.4.1.43296.3.4.1.2.2.10|2|10
1.3.6.1.4.1.43296.3.4.1.2.2.11|2|11
1.3.6.1.4.1.43296.3.4.1.2.2.12|2|12
1.3.6.1.4.1.43296.3.4.1.2.2.13|2|13
1.3.6.1.4.1.43296.3.4.1.2.2.14|2|14
1.3.6.1.4.1.43296.3.4.1.2.2.15|2|15
1.3.6.1.4.1.43296.3.4.1.2.2.16|2|16
1.3.6.1.4.1.43296.3.4.1.2.3.1|2|1
1.3.6.1.4.1.43296.3.4.1.2.3.2|2|2
1.3.6.1.4.1.43296.3.4.1.2.3.3|2|3
1.3.6.1.4.1.43296.3.4.1.2.3.4|2|4
1.3.6.1.4.1.43296.3.4.1.2.3.5|2|5
1.3.6.1.4.1.43296.3.4.1.2.3.6|2|6
1.3.6.1.4.1.43296.3.4.1.2.3.7|2|7
1.3.6.1.4.1.43296.3.4.1.2.3.8|2|8
1.3.6.1.4.1.43296.3.4.1.2.3.9|2|9
1.3.6.1.4.1.43296.3.4.1.2.3.10|2|10
1.3.6.1.4.1.43296.3.4.1.2.3.11|2|11
1.3.6.1.4.1.43296.3.4.1.2.3.12|2|12
1.3.6.1.4.1.43296.3.4.1.2.3.13|2|13
1.3.6.1.4.1.43296.3.4.1.2.3.14|2|14
1.3.6.1.4.1.43296.3.4.1.2.3.15|2|15
1.3.6.1.4.1.43296.3.4.1.2.3.16|2|16
1.3.6.1.4.1.43296.3.4.1.3.1.1|4|A1
1.3.6.1.4.1.43296.3.4.1.3.1.2|4|A2
1.3.6.1.4.1.43296.3.4.1.3.1.3|4|A3
1.3.6.1.4.1.43296.3.4.1.3.1.4|4|A4
1.3.6.1.4.1.43296.3.4.1.3.1.5|4|A5
1.3.6.1.4.1.43296.3.4.1.3.1.6|4|A6
1.3.6.1.4.1.43296.3.4.1.3.1.7|4|A7
1.3.6.1.4.1.43296.3.4.1.3.1.8|4|A8
1.3.6.1.4.1.43296.3.4.1.3.1.9|4|A9
1.3.6.1.4.1.43296.3.4.1.3.1.10|4|A10
1.3.6.1.4.1.43296.3.4.1.3.1.11|4|A11
1.3.6.1.4.1.43296.3.4.1.3.1.12|4|A12
1.3.6.1.4.1.43296.3.4.1.3.1.13|4|A13
1.3.6.1.4.1.43296.3.4.1.3.1.14|4|A14
1.3.6.1.4.1.43296.3.4.1.3.1.15|4|A15
1.3.6.1.4.1.43296.3.4.1.3.1.16|4|A16
1.3.6.1.4.1.43296.3.4.1.3.2.1|4|B1
1.3.6.1.4.1.43296.3.4.1.3.2.2|4|B2
1.3.6.1.4.1.43296.3.4.1.3.2.3|4|B3
1.3.6.1.4.1.43296.3.4.1.3.2.4|4|B4
1.3.6.1.4.1.43296.3.4.1.3.2.5|4|B5
1.3.6.1.4.1.43296.3.4.1.3.2.6|4|B6
1.3.6.1.4.1.43296.3.4.1.3.2.7|4|B7
1.3.6.1.4.1.43296.3.4.1.3.2.8|4|B8
1.3.6.1.4.1.43296.3.4.1.3.2.9|4|B9
1.3.6.1.4.1.43296.3.4.1.3.2.10|4|B10
1.3.6.1.4.1.43296.3.4.1.3.2.11|4|B11
1.3.6.1.4.1.43296.3.4.1.3.2.12|4|B12
1.3.6.1.4.1.43296.3.4.1.3.2.13|4|B13
1.3.6.1.4.1.43296.3.4.1.3.2.14|4|B14
1.3.6.1.4.1.43296.3.4.1.3.2.15|4|B15
1.3.6.1.4.1.43296.3.4.1.3.2.16|4|B16
1.3.6.1.4.1.43296.3.4.1.3.3.1|4|C1
1.3.6.1.4.1.43296.3.4.1.3.3.2|4|C2
1.3.6.1.4.1.43296.3.4.1.3.3.3|4|C3
1.3.6.1.4.1.43296.3.4.1.3.3.4|4|C4
1.3.6.1.4.1.43296.3.4.1.3.3.5|4|C5
1.3.6.1.4.1.43296.3.4.1.3.3.6|4|C6
1.3.6.1.4.1.43296.3.4.1.3.3.7|4|C7
1.3.6.1.4.1.43296.3.4.1.3.3.8|4|C8
1.3.6.1.4.1.43296.3.4.1.3.3.9|4|C9
1.3.6.1.4.1.43296.3.4.1.3.3.10|4|C10
1.3.6.1.4.1.43296.3.4.1.3.3.11|4|C11
1.3.6.1.4.1.43296.3.4.1.3.3.12|4|C12
1.3.6.1.4.1.43296.3.4.1.3.3.13|4|C13
1.3.6.1.4.1.43296.3.4.1.3.3.14|4|C14
1.3.6.1.4.1.43296.3.4.1.3.3.15|4|C15
1.3.6.1.4.1.43296.3.4.1.3.3.16|4|C16
1.3.6.1.4.1.43296.3.4.1.4.1.1|2|1
1.3.6.1.4.1.43296.3.4.1.4.1.2|2|1
1.3.6.1.4.1.43296.3.4.1.4.1.3|2|1
1.3.6.1.4.1.43296.3.4.1.4.1.4|2|1
1.3.6.1.4.1.43296.3.4.1.4.1.5|2|1
1.3.6.1.4.1.43296.3.4.1.4.1.6|2|1
1.3.6.1.4.1.43296.3.4.1.4.1.7|2|1
1.3.6.1.4.1.43296.3.4.1.4.1.8|2|1
1.3.6.1.4.1.43296.3.4.1.4.1.9|2|1
1.3.6.1.4.1.43296.3.4.1.4.1.10|2|1
1.3.6.1.4.1.43296.3.4.1.4.1.11|2|1
1.3.6.1.4.1.43296.3.4.1.4.1.12|2|1
1.3.6.1.4.1.43296.3.4.1.4.1.13|2|1
1.3.6.1.4.1.43296.3.4.1.4.1.14|2|1
1.3.6.1.4.1.43296.3.4.1.4.1.15|2|1
1.3.6.1.4.1.43296.3.4.1.4.1.16|2|1
1.3.6.1.4.1.43296.3.4.1.4.2.1|2|1
1.3.6.1.4.1.43296.3.4.1.4.2.2|2|1
1.3.6.1.4.1.43296.3.4.1.4.2.3|2|1
1.3.6.1.4.1.43296.3.4.1.4.2.4|2|1
1.3.6.1.4.1.43296.3.4.1.4.2.5|2|1
1.3.6.1.4.1.43296.3.4.1.4.2.6|2|1
1.3.6.1.4.1.43296.3.4.1.4.2.7|2|1
1.3.6.1.4.1.43296.3.4.1.4.2.8|2|1
1.3.6.1.4.1.43296.3.4.1.4.2.9|2|1
1.3.6.1.4.1.43296.3.4.1.4.2.10|2|1
1.3.6.1.4.1.43296.3.4.1.4.2.11|2|1
1.3.6.1.4.1.43296.3.4.1.4.2.12|2|2
1.3.6.1.4.1.43296.3.4.1.4.2.13|2|1
1.3.6.1.4.1.43296.3.4.1.4.2.14|2|1
1.3.6.1.4.1.43296.3.4.1.4.2.15|2|1
1.3.6.1.4.1.43296.3.4.1.4.2.16|2|1
1.3.6.1.4.1.43296.3.4.1.4.3.1|2|1
1.3.6.1.4.1.43296.3.4.1.4.3.2|2|1
1.3.6.1.4.1.43296.3.4.1.4.3.3|2|1
1.3.6.1.4.1.43296.3.4.1.4.3.4|2|1
1.3.6.1.4.1.43296.3.4.1.4.3.5|2|1
1.3.6.1.4.1.43296.3.4.1.4.3.6|2|1
1.3.6.1.4.1.43296.3.4.1.4.3.7|2|1
1.3.6.1.4.1.43296.3.4.1.4.3.8|2|1
1.3.6.1.4.1.43296.3.4.1.4.3.9|2|1
1.3.6.1.4.1.43296.3.4.1.4.3.10|2|1
1.3.6.1.4.1.43296.3.4.1.4.3.11|2|1
1.3.6.1.4.1.43296.3.4.1.4.3.12|2|1
1.3.6.1.4.1.43296.3.4.1.4.3.13|2|1
1.3.6.1.4.1.43296.3.4.1.4.3.14|2|1
1.3.6.1.4.1.43296.3.4.1.4.3.15|2|2
1.3.6.1.4.1.43296.3.4.1.4.3.16|2|2
1.3.6.1.4.1.43296.3.4.1.5.1.1|2|1
1.3.6.1.4.1.43296.3.4.1.5.1.2|2|1
1.3.6.1.4.1.43296.3.4.1.5.1.3|2|1
1.3.6.1.4.1.43296.3.4.1.5.1.4|2|1
1.3.6.1.4.1.43296.3.4.1.5.1.5|2|1
1.3.6.1.4.1.43296.3.4.1.5.1.6|2|1
1.3.6.1.4.1.43296.3.4.1.5.1.7|2|1
1.3.6.1.4.1.43296.3.4.1.5.1.8|2|1
1.3.6.1.4.1.43296.3.4.1.5.1.9|2|1
1.3.6.1.4.1.43296.3.4.1.5.1.10|2|1
1.3.6.1.4.1.43296.3.4.1.5.1.11|2|1
1.3.6.1.4.1.43296.3.4.1.5.1.12|2|1
1.3.6.1.4.1.43296.3.4.1.5.1.13|2|1
1.3.6.1.4.1.43296.3.4.1.5.1.14|2|1
1.3.6.1.4.1.43296.3.4.1.5.1.15|2|1
1.3.6.1.4.1.43296.3.4.1.5.1.16|2|1
1.3.6.1.4.1.43296.3.4.1.5.2.1|2|1
1.3.6.1.4.1.43296.3.4.1.5.2.2|2|1
1.3.6.1.4.1.43296.3.4.1.5.2.3|2|1
1.3.6.1.4.1.43296.3.4.1.5.2.4|2|1
1.3.6.1.4.1.43296.3.4.1.5.2.5|2|1
1.3.6.1.4.1.43296.3.4.1.5.2.6|2|1
1.3.6.1.4.1.43296.3.4.1.5.2.7|2|1
1.3.6.1.4.1.43296.3.4.1.5.2.8|2|1
1.3.6.1.4.1.43296.3.4.1.5.2.9|2|1
1.3.6.1.4.1.43296.3.4.1.5.2.10|2|1
1.3.6.1.4.1.43296.3.4.1.5.2.11|2|1
1.3.6.1.4.1.43296.3.4.1.5.2.12|2|2
1.3.6.1.4.1.43296.3.4.1.5.2.13|2|1
1.3.6.1.4.1.43296.3.4.1.5.2.14|2|1
1.3.6.1.4.1.43296.3.4.1.5.2.15|2|1
1.3.6.1.4.1.43296.3.4.1.5.2.16|2|1
1.3.6.1.4.1.43296.3.4.1.5.3.1|2|1
1.3.6.1.4.1.43296.3.4.1.5.3.2|2|1
1.3.6.1.4.1.43296.3.4.1.5.3.3|2|1
1.3.6.1.4.1.43296.3.4.1.5.3.4|2|1
1.3.6.1.4.1.43296.3.4.1.5.3.5|2|1
1.3.6.1.4.1.43296.3.4.1.5.3.6|2|1
1.3.6.1.4.1.43296.3.4.1.5.3.7|2|1
1.3.6.1.4.1.43296.3.4.1.5.3.8|2|1
1.3.6.1.4.1.43296.3.4.1.5.3.9|2|1
1.3.6.1.4.1.43296.3.4.1.5.3.10|2|1
1.3.6.1.4.1.43296.3.4.1.5.3.11|2|1
1.3.6.1.4.1.43296.3.4.1.5.3.12|2|1
1.3.6.1.4.1.43296.3.4.1.5.3.13|2|1
1.3.6.1.4.1.43296.3.4.1.5.3.14|2|1
1.3.6.1.4.1.43296.3.4.1.5.3.15|2|2
1.3.6.1.4.1.43296.3.4.1.5.3.16|2|2
1.3.6.1.4.1.43296.3.4.1.6.1.1|2|1
1.3.6.1.4.1.43296.3.4.1.6.1.2|2|1
1.3.6.1.4.1.43296.3.4.1.6.1.3|2|1
1.3.6.1.4.1.43296.3.4.1.6.1.4|2|1
1.3.6.1.4.1.43296.3.4.1.6.1.5|2|1
1.3.6.1.4.1.43296.3.4.1.6.1.6|2|1
1.3.6.1.4.1.43296.3.4.1.6.1.7|2|1
1.3.6.1.4.1.43296.3.4.1.6.1.8|2|1
1.3.6.1.4.1.43296.3.4.1.6.1.9|2|2
1.3.6.1.4.1.43296.3.4.1.6.1.10|2|2
1.3.6.1.4.1.43296.3.4.1.6.1.11|2|1
1.3.6.1.4.1.43296.3.4.1.6.1.12|2|1
1.3.6.1.4.1.43296.3.4.1.6.1.13|2|1
1.3.6.1.4.1.43296.3.4.1.6.1.14|2|1
1.3.6.1.4.1.43296.3.4.1.6.1.15|2|1
1.3.6.1.4.1.43296.3.4.1.6.1.16|2|1
1.3.6.1.4.1.43296.3.4.1.6.2.1|2|1
1.3.6.1.4.1.43296.3.4.1.6.2.2|2|1
1.3.6.1.4.1.43296.3.4.1.6.2.3|2|1
1.3.6.1.4.1.43296.3.4.1.6.2.4|2|1
1.3.6.1.4.1.43296.3.4.1.6.2.5|2|1
1.3.6.1.4.1.43296.3.4.1.6.2.6|2|1
1.3.6.1.4.1.43296.3.4.1.6.2.7|2|1
1.3.6.1.4.1.43296.3.4.1.6.2.8|2|1
1.3.6.1.4.1.43296.3.4.1.6.2.9|2|1
1.3.6.1.4.1.43296.3.4.1.6.2.10|2|1
1.3.6.1.4.1.43296.3.4.1.6.2.11|2|1
1.3.6.1.4.1.43296.3.4.1.6.2.12|2|1
1.3.6.1.4.1.43296.3.4.1.6.2.13|2|1
1.3.6.1.4.1.43296.3.4.1.6.2.14|2|1
1.3.6.1.4.1.43296.3.4.1.6.2.15|2|1
1.3.6.1.4.1.43296.3.4.1.6.2.16|2|1
1.3.6.1.4.1.43296.3.4.1.6.3.1|2|1
1.3.6.1.4.1.43296.3.4.1.6.3.2|2|1
1.3.6.1.4.1.43296.3.4.1.6.3.3|2|1
1.3.6.1.4.1.43296.3.4.1.6.3.4|2|1
1.3.6.1.4.1.43296.3.4.1.6.3.5|2|1
1.3.6.1.4.1.43296.3.4.1.6.3.6|2|1
1.3.6.1.4.1.43296.3.4.1.6.3.7|2|1
1.3.6.1.4.1.43296.3.4.1.6.3.8|2|1
1.3.6.1.4.1.43296.3.4.1.6.3.9|2|1
1.3.6.1.4.1.43296.3.4.1.6.3.10|2|1
1.3.6.1.4.1.43296.3.4.1.6.3.11|2|1
1.3.6.1.4.1.43296.3.4.1.6.3.12|2|1
1.3.6.1.4.1.43296.3.4.1.6.3.13|2|1
1.3.6.1.4.1.43296.3.4.1.6.3.14|2|1
1.3.6.1.4.1.43296.3.4.1.6.3.15|2|1
1.3.6.1.4.1.43296.3.4.1.6.3.16|2|1
1.3.6.1.4.1.43296.3.4.1.7.1.1|4|
1.3.6.1.4.1.43296.3.4.1.7.1.2|4|
1.3.6.1.4.1.43296.3.4.1.7.1.3|4|
1.3.6.1.4.1.43296.3.4.1.7.1.4|4|
1.3.6.1.4.1.43296.3.4.1.7.1.5|4|
1.3.6.1.4.1.43296.3.4.1.7.1.6|4|
1.3.6.1.4.1.43296.3.4.1.7.1.7|4|
1.3.6.1.4.1.43296.3.4.1.7.1.8|4|
1.3.6.1.4.1.43296.3.4.1.7.1.9|4|
1.3.6.1.4.1.43296.3.4.1.7.1.10|4|
1.3.6.1.4.1.43296.3.4.1.7.1.11|4|
1.3.6.1.4.1.43296.3.4.1.7.1.12|4|
1.3.6.1.4.1.43296.3.4.1.7.1.13|4|
1.3.6.1.4.1.43296.3.4.1.7.1.14|4|
1.3.6.1.4.1.43296.3.4.1.7.1.15|4|
1.3.6.1.4.1.43296.3.4.1.7.1.16|4|
1.3.6.1.4.1.43296.3.4.1.7.2.1|4|
1.3.6.1.4.1.43296.3.4.1.7.2.2|4|
1.3.6.1.4.1.43296.3.4.1.7.2.3|4|
1.3.6.1.4.1.43296.3.4.1.7.2.4|4|
1.3.6.1.4.1.43296.3.4.1.7.2.5|4|
1.3.6.1.4.1.43296.3.4.1.7.2.6|4|
1.3.6.1.4.1.43296.3.4.1.7.2.7|4|
1.3.6.1.4.1.43296.3.4.1.7.2.8|4|
1.3.6.1.4.1.43296.3.4.1.7.2.9|4|
1.3.6.1.4.1.43296.3.4.1.7.2.10|4|
1.3.6.1.4.1.43296.3.4.1.7.2.11|4|
1.3.6.1.4.1.43296.3.4.1.7.2.12|4|
1.3.6.1.4.1.43296.3.4.1.7.2.13|4|
1.3.6.1.4.1.43296.3.4.1.7.2.14|4|
1.3.6.1.4.1.43296.3.4.1.7.2.15|4|
1.3.6.1.4.1.43296.3.4.1.7.2.16|4|
1.3.6.1.4.1.43296.3.4.1.7.3.1|4|
1.3.6.1.4.1.43296.3.4.1.7.3.2|4|
1.3.6.1.4.1.43296.3.4.1.7.3.3|4|
1.3.6.1.4.1.43296.3.4.1.7.3.4|4|
1.3.6.1.4.1.43296.3.4.1.7.3.5|4|
1.3.6.1.4.1.43296.3.4.1.7.3.6|4|
1.3.6.1.4.1.43296.3.4.1.7.3.7|4|
1.3.6.1.4.1.43296.3.4.1.7.3.8|4|
1.3.6.1.4.1.43296.3.4.1.7.3.9|4|
1.3.6.1.4.1.43296.3.4.1.7.3.10|4|
1.3.6.1.4.1.43296.3.4.1.7.3.11|4|
1.3.6.1.4.1.43296.3.4.1.7.3.12|4|
1.3.6.1.4.1.43296.3.4.1.7.3.13|4|
1.3.6.1.4.1.43296.3.4.1.7.3.14|4|
1.3.6.1.4.1.43296.3.4.1.7.3.15|4|
1.3.6.1.4.1.43296.3.4.1.7.3.16|4|
1.3.6.1.4.1.43296.3.4.1.8.1.1|2|10000
1.3.6.1.4.1.43296.3.4.1.8.1.2|2|10000
1.3.6.1.4.1.43296.3.4.1.8.1.3|2|10000
1.3.6.1.4.1.43296.3.4.1.8.1.4|2|10000
1.3.6.1.4.1.43296.3.4.1.8.1.5|2|10000
1.3.6.1.4.1.43296.3.4.1.8.1.6|2|10000
1.3.6.1.4.1.43296.3.4.1.8.1.7|2|10000
1.3.6.1.4.1.43296.3.4.1.8.1.8|2|10000
1.3.6.1.4.1.43296.3.4.1.8.1.9|2|10000
1.3.6.1.4.1.43296.3.4.1.8.1.10|2|10000
1.3.6.1.4.1.43296.3.4.1.8.1.11|2|10000
1.3.6.1.4.1.43296.3.4.1.8.1.12|2|10000
1.3.6.1.4.1.43296.3.4.1.8.1.13|2|10000
1.3.6.1.4.1.43296.3.4.1.8.1.14|2|10000
1.3.6.1.4.1.43296.3.4.1.8.1.15|2|10000
1.3.6.1.4.1.43296.3.4.1.8.1.16|2|10000
1.3.6.1.4.1.43296.3.4.1.8.2.1|2|10000
1.3.6.1.4.1.43296.3.4.1.8.2.2|2|10000
1.3.6.1.4.1.43296.3.4.1.8.2.3|2|10000
1.3.6.1.4.1.43296.3.4.1.8.2.4|2|10000
1.3.6.1.4.1.43296.3.4.1.8.2.5|2|10000
1.3.6.1.4.1.43296.3.4.1.8.2.6|2|10000
1.3.6.1.4.1.43296.3.4.1.8.2.7|2|10000
1.3.6.1.4.1.43296.3.4.1.8.2.8|2|10000
1.3.6.1.4.1.43296.3.4.1.8.2.9|2|10000
1.3.6.1.4.1.43296.3.4.1.8.2.10|2|10000
1.3.6.1.4.1.43296.3.4.1.8.2.11|2|10000
1.3.6.1.4.1.43296.3.4.1.8.2.12|2|10000
1.3.6.1.4.1.43296.3.4.1.8.2.13|2|10000
1.3.6.1.4.1.43296.3.4.1.8.2.14|2|10000
1.3.6.1.4.1.43296.3.4.1.8.2.15|2|10000
1.3.6.1.4.1.43296.3.4.1.8.2.16|2|10000
1.3.6.1.4.1.43296.3.4.1.8.3.1|2|10000
1.3.6.1.4.1.43296.3.4.1.8.3.2|2|10000
1.3.6.1.4.1.43296.3.4.1.8.3.3|2|10000
1.3.6.1.4.1.43296.3.4.1.8.3.4|2|10000
1.3.6.1.4.1.43296.3.4.1.8.3.5|2|10000
1.3.6.1.4.1.43296.3.4.1.8.3.6|2|10000
1.3.6.1.4.1.43296.3.4.1.8.3.7|2|10000
1.3.6.1.4.1.43296.3.4.1.8.3.8|2|10000
1.3.6.1.4.1.43296.3.4.1.8.3.9|2|10000
1.3.6.1.4.1.43296.3.4.1.8.3.10|2|10000
1.3.6.1.4.1.43296.3.4.1.8.3.11|2|10000
1.3.6.1.4.1.43296.3.4.1.8.3.12|2|10000
1.3.6.1.4.1.43296.3.4.1.8.3.13|2|10000
1.3.6.1.4.1.43296.3.4.1.8.3.14|2|10000
1.3.6.1.4.1.43296.3.4.1.8.3.15|2|10000
1.3.6.1.4.1.43296.3.4.1.8.3.16|2|10000
1.3.6.1.4.1.43296.3.4.1.9.1.1|70|0
1.3.6.1.4.1.43296.3.4.1.9.1.2|70|3643832334
1.3.6.1.4.1.43296.3.4.1.9.1.3|70|1723251250
1.3.6.1.4.1.43296.3.4.1.9.1.4|70|534856
1.3.6.1.4.1.43296.3.4.1.9.1.5|70|138731
1.3.6.1.4.1.43296.3.4.1.9.1.6|70|43
1.3.6.1.4.1.43296.3.4.1.9.1.7|70|0
1.3.6.1.4.1.43296.3.4.1.9.1.8|70|0
1.3.6.1.4.1.43296.3.4.1.9.1.9|70|0
1.3.6.1.4.1.43296.3.4.1.9.1.10|70|0
1.3.6.1.4.1.43296.3.4.1.9.1.11|70|11224850567
1.3.6.1.4.1.43296.3.4.1.9.1.12|70|6326053146
1.3.6.1.4.1.43296.3.4.1.9.1.13|70|92489
1.3.6.1.4.1.43296.3.4.1.9.1.14|70|0
1.3.6.1.4.1.43296.3.4.1.9.1.15|70|76575
1.3.6.1.4.1.43296.3.4.1.9.1.16|70|0
1.3.6.1.4.1.43296.3.4.1.9.2.1|70|0
1.3.6.1.4.1.43296.3.4.1.9.2.2|70|35316570
1.3.6.1.4.1.43296.3.4.1.9.2.3|70|0
1.3.6.1.4.1.43296.3.4.1.9.2.4|70|0
1.3.6.1.4.1.43296.3.4.1.9.2.5|70|7227563
1.3.6.1.4.1.43296.3.4.1.9.2.6|70|25057753
1.3.6.1.4.1.43296.3.4.1.9.2.7|70|15907717
1.3.6.1.4.1.43296.3.4.1.9.2.8|70|15875969
1.3.6.1.4.1.43296.3.4.1.9.2.9|70|138751
1.3.6.1.4.1.43296.3.4.1.9.2.10|70|15907934
1.3.6.1.4.1.43296.3.4.1.9.2.11|70|3643831541
1.3.6.1.4.1.43296.3.4.1.9.2.12|70|0
1.3.6.1.4.1.43296.3.4.1.9.2.13|70|0
1.3.6.1.4.1.43296.3.4.1.9.2.14|70|0
1.3.6.1.4.1.43296.3.4.1.9.2.15|70|0
1.3.6.1.4.1.43296.3.4.1.9.2.16|70|0
1.3.6.1.4.1.43296.3.4.1.9.3.1|70|1448161
1.3.6.1.4.1.43296.3.4.1.9.3.2|70|46
1.3.6.1.4.1.43296.3.4.1.9.3.3|70|1445908
1.3.6.1.4.1.43296.3.4.1.9.3.4|70|46
1.3.6.1.4.1.43296.3.4.1.9.3.5|70|1448954
1.3.6.1.4.1.43296.3.4.1.9.3.6|70|38
1.3.6.1.4.1.43296.3.4.1.9.3.7|70|0
1.3.6.1.4.1.43296.3.4.1.9.3.8|70|0
1.3.6.1.4.1.43296.3.4.1.9.3.9|70|1806848
1.3.6.1.4.1.43296.3.4.1.9.3.10|70|0
1.3.6.1.4.1.43296.3.4.1.9.3.11|70|45
1.3.6.1.4.1.43296.3.4.1.9.3.12|70|43
1.3.6.1.4.1.43296.3.4.1.9.3.13|70|2
1.3.6.1.4.1.43296.3.4.1.9.3.14|70|0
1.3.6.1.4.1.43296.3.4.1.9.3.15|70|0
1.3.6.1.4.1.43296.3.4.1.9.3.16|70|0
1.3.6.1.4.1.43296.3.4.1.10.1.1|70|0
1.3.6.1.4.1.43296.3.4.1.10.1.2|70|420121034086
1.3.6.1.4.1.43296.3.4.1.10.1.3|70|194709965436
1.3.6.1.4.1.43296.3.4.1.10.1.4|70|86952800
1.3.6.1.4.1.43296.3.4.1.10.1.5|70|43191090
1.3.6.1.4.1.43296.3.4.1.10.1.6|70|89392
1.3.6.1.4.1.43296.3.4.1.10.1.7|70|0
1.3.6.1.4.1.43296.3.4.1.10.1.8|70|0
1.3.6.1.4.1.43296.3.4.1.10.1.9|70|0
1.3.6.1.4.1.43296.3.4.1.10.1.10|70|0
1.3.6.1.4.1.43296.3.4.1.10.1.11|70|913814710631
1.3.6.1.4.1.43296.3.4.1.10.1.12|70|515060837416
1.3.6.1.4.1.43296.3.4.1.10.1.13|70|10401027
1.3.6.1.4.1.43296.3.4.1.10.1.14|70|0
1.3.6.1.4.1.43296.3.4.1.10.1.15|70|6815175
1.3.6.1.4.1.43296.3.4.1.10.1.16|70|0
1.3.6.1.4.1.43296.3.4.1.10.2.1|70|0
1.3.6.1.4.1.43296.3.4.1.10.2.2|70|16157813537
1.3.6.1.4.1.43296.3.4.1.10.2.3|70|0
1.3.6.1.4.1.43296.3.4.1.10.2.4|70|0
1.3.6.1.4.1.43296.3.4.1.10.2.5|70|636093262
1.3.6.1.4.1.43296.3.4.1.10.2.6|70|2278165410
1.3.6.1.4.1.43296.3.4.1.10.2.7|70|1437375006
1.3.6.1.4.1.43296.3.4.1.10.2.8|70|1434732721
1.3.6.1.4.1.43296.3.4.1.10.2.9|70|43540670
1.3.6.1.4.1.43296.3.4.1.10.2.10|70|1437473998
1.3.6.1.4.1.43296.3.4.1.10.2.11|70|420120956810
1.3.6.1.4.1.43296.3.4.1.10.2.12|70|0
1.3.6.1.4.1.43296.3.4.1.10.2.13|70|0
1.3.6.1.4.1.43296.3.4.1.10.2.14|70|0
1.3.6.1.4.1.43296.3.4.1.10.2.15|70|0
1.3.6.1.4.1.43296.3.4.1.10.2.16|70|0
1.3.6.1.4.1.43296.3.4.1.10.3.1|70|129757108
1.3.6.1.4.1.43296.3.4.1.10.3.2|70|2944
1.3.6.1.4.1.43296.3.4.1.10.3.3|70|129553714
1.3.6.1.4.1.43296.3.4.1.10.3.4|70|2944
1.3.6.1.4.1.43296.3.4.1.10.3.5|70|129821406
1.3.6.1.4.1.43296.3.4.1.10.3.6|70|2432
1.3.6.1.4.1.43296.3.4.1.10.3.7|70|0
1.3.6.1.4.1.43296.3.4.1.10.3.8|70|0
1.3.6.1.4.1.43296.3.4.1.10.3.9|70|432734733
1.3.6.1.4.1.43296.3.4.1.10.3.10|70|0
1.3.6.1.4.1.43296.3.4.1.10.3.11|70|3824
1.3.6.1.4.1.43296.3.4.1.10.3.12|70|3414
1.3.6.1.4.1.43296.3.4.1.10.3.13|70|692
1.3.6.1.4.1.43296.3.4.1.10.3.14|70|0
1.3.6.1.4.1.43296.3.4.1.10.3.15|70|0
1.3.6.1.4.1.43296.3.4.1.10.3.16|70|0
1.3.6.1.4.1.43296.3.4.1.11.1.1|70|0
1.3.6.1.4.1.43296.3.4.1.11.1.2|70|0
1.3.6.1.4.1.43296.3.4.1.11.1.3|70|0
1.3.6.1.4.1.43296.3.4.1.11.1.4|70|0
1.3.6.1.4.1.43296.3.4.1.11.1.5|70|0
1.3.6.1.4.1.43296.3.4.1.11.1.6|70|10
1.3.6.1.4.1.43296.3.4.1.11.1.7|70|0
1.3.6.1.4.1.43296.3.4.1.11.1.8|70|0
1.3.6.1.4.1.43296.3.4.1.11.1.9|70|0
1.3.6.1.4.1.43296.3.4.1.11.1.10|70|0
1.3.6.1.4.1.43296.3.4.1.11.1.11|70|0
1.3.6.1.4.1.43296.3.4.1.11.1.12|70|0
1.3.6.1.4.1.43296.3.4.1.11.1.13|70|7
1.3.6.1.4.1.43296.3.4.1.11.1.14|70|0
1.3.6.1.4.1.43296.3.4.1.11.1.15|70|0
1.3.6.1.4.1.43296.3.4.1.11.1.16|70|0
1.3.6.1.4.1.43296.3.4.1.11.2.1|70|0
1.3.6.1.4.1.43296.3.4.1.11.2.2|70|0
1.3.6.1.4.1.43296.3.4.1.11.2.3|70|0
1.3.6.1.4.1.43296.3.4.1.11.2.4|70|0
1.3.6.1.4.1.43296.3.4.1.11.2.5|70|0
1.3.6.1.4.1.43296.3.4.1.11.2.6|70|0
1.3.6.1.4.1.43296.3.4.1.11.2.7|70|0
1.3.6.1.4.1.43296.3.4.1.11.2.8|70|0
1.3.6.1.4.1.43296.3.4.1.11.2.9|70|2
1.3.6.1.4.1.43296.3.4.1.11.2.10|70|0
1.3.6.1.4.1.43296.3.4.1.11.2.11|70|0
1.3.6.1.4.1.43296.3.4.1.11.2.12|70|0
1.3.6.1.4.1.43296.3.4.1.11.2.13|70|0
1.3.6.1.4.1.43296.3.4.1.11.2.14|70|0
1.3.6.1.4.1.43296.3.4.1.11.2.15|70|0
1.3.6.1.4.1.43296.3.4.1.11.2.16|70|0
1.3.6.1.4.1.43296.3.4.1.11.3.1|70|0
1.3.6.1.4.1.43296.3.4.1.11.3.2|70|0
1.3.6.1.4.1.43296.3.4.1.11.3.3|70|0
1.3.6.1.4.1.43296.3.4.1.11.3.4|70|0
1.3.6.1.4.1.43296.3.4.1.11.3.5|70|0
1.3.6.1.4.1.43296.3.4.1.11.3.6|70|0
1.3.6.1.4.1.43296.3.4.1.11.3.7|70|0
1.3.6.1.4.1.43296.3.4.1.11.3.8|70|0
1.3.6.1.4.1.43296.3.4.1.11.3.9|70|0
1.3.6.1.4.1.43296.3.4.1.11.3.10|70|0
1.3.6.1.4.1.43296.3.4.1.11.3.11|70|0
1.3.6.1.4.1.43296.3.4.1.11.3.12|70|0
1.3.6.1.4.1.43296.3.4.1.11.3.13|70|0
1.3.6.1.4.1.43296.3.4.1.11.3.14|70|0
1.3.6.1.4.1.43296.3.4.1.11.3.15|70|0
1.3.6.1.4.1.43296.3.4.1.11.3.16|70|0
1.3.6.1.4.1.43296.3.4.1.12.1.1|70|3643832333
1.3.6.1.4.1.43296.3.4.1.12.1.2|70|1723251250
1.3.6.1.4.1.43296.3.4.1.12.1.3|70|3643832334
1.3.6.1.4.1.43296.3.4.1.12.1.4|70|138731
1.3.6.1.4.1.43296.3.4.1.12.1.5|70|534856
1.3.6.1.4.1.43296.3.4.1.12.1.6|70|35316570
1.3.6.1.4.1.43296.3.4.1.12.1.7|70|11184473645
1.3.6.1.4.1.43296.3.4.1.12.1.8|70|6326044412
1.3.6.1.4.1.43296.3.4.1.12.1.9|70|307
1.3.6.1.4.1.43296.3.4.1.12.1.10|70|88
1.3.6.1.4.1.43296.3.4.1.12.1.11|70|6326046465
1.3.6.1.4.1.43296.3.4.1.12.1.12|70|11184474003
1.3.6.1.4.1.43296.3.4.1.12.1.13|70|25057753
1.3.6.1.4.1.43296.3.4.1.12.1.14|70|76575
1.3.6.1.4.1.43296.3.4.1.12.1.15|70|0
1.3.6.1.4.1.43296.3.4.1.12.1.16|70|0
1.3.6.1.4.1.43296.3.4.1.12.2.1|70|0
1.3.6.1.4.1.43296.3.4.1.12.2.2|70|1723251250
1.3.6.1.4.1.43296.3.4.1.12.2.3|70|0
1.3.6.1.4.1.43296.3.4.1.12.2.4|70|0
1.3.6.1.4.1.43296.3.4.1.12.2.5|70|1806848
1.3.6.1.4.1.43296.3.4.1.12.2.6|70|92479
1.3.6.1.4.1.43296.3.4.1.12.2.7|70|1448954
1.3.6.1.4.1.43296.3.4.1.12.2.8|70|1445916
1.3.6.1.4.1.43296.3.4.1.12.2.9|70|3643832341
1.3.6.1.4.1.43296.3.4.1.12.2.10|70|1448165
1.3.6.1.4.1.43296.3.4.1.12.2.11|70|3643832340
1.3.6.1.4.1.43296.3.4.1.12.2.12|70|38
1.3.6.1.4.1.43296.3.4.1.12.2.13|70|15847543
1.3.6.1.4.1.43296.3.4.1.12.2.14|70|1448954
1.3.6.1.4.1.43296.3.4.1.12.2.15|70|38
1.3.6.1.4.1.43296.3.4.1.12.2.16|70|0
1.3.6.1.4.1.43296.3.4.1.12.3.1|70|15907936
1.3.6.1.4.1.43296.3.4.1.12.3.2|70|41
1.3.6.1.4.1.43296.3.4.1.12.3.3|70|15875972
1.3.6.1.4.1.43296.3.4.1.12.3.4|70|38
1.3.6.1.4.1.43296.3.4.1.12.3.5|70|15907719
1.3.6.1.4.1.43296.3.4.1.12.3.6|70|38
1.3.6.1.4.1.43296.3.4.1.12.3.7|70|9420442337
1.3.6.1.4.1.43296.3.4.1.12.3.8|70|6326038050
1.3.6.1.4.1.43296.3.4.1.12.3.9|70|7227563
1.3.6.1.4.1.43296.3.4.1.12.3.10|70|26
1.3.6.1.4.1.43296.3.4.1.12.3.11|70|3458655131
1.3.6.1.4.1.43296.3.4.1.12.3.12|70|2715867261
1.3.6.1.4.1.43296.3.4.1.12.3.13|70|37
1.3.6.1.4.1.43296.3.4.1.12.3.14|70|20
1.3.6.1.4.1.43296.3.4.1.12.3.15|70|0
1.3.6.1.4.1.43296.3.4.1.12.3.16|70|0
1.3.6.1.4.1.43296.3.4.1.13.1.1|70|420121034020
1.3.6.1.4.1.43296.3.4.1.13.1.2|70|194709965436
1.3.6.1.4.1.43296.3.4.1.13.1.3|70|420121034086
1.3.6.1.4.1.43296.3.4.1.13.1.4|70|43191090
1.3.6.1.4.1.43296.3.4.1.13.1.5|70|86952800
1.3.6.1.4.1.43296.3.4.1.13.1.6|70|16157813537
1.3.6.1.4.1.43296.3.4.1.13.1.7|70|907159824270
1.3.6.1.4.1.43296.3.4.1.13.1.8|70|515051000020
1.3.6.1.4.1.43296.3.4.1.13.1.9|70|27135
1.3.6.1.4.1.43296.3.4.1.13.1.10|70|7590
1.3.6.1.4.1.43296.3.4.1.13.1.11|70|515051207754
1.3.6.1.4.1.43296.3.4.1.13.1.12|70|907181255409
1.3.6.1.4.1.43296.3.4.1.13.1.13|70|2278165410
1.3.6.1.4.1.43296.3.4.1.13.1.14|70|6815175
1.3.6.1.4.1.43296.3.4.1.13.1.15|70|0
1.3.6.1.4.1.43296.3.4.1.13.1.16|70|0
1.3.6.1.4.1.43296.3.4.1.13.2.1|70|0
1.3.6.1.4.1.43296.3.4.1.13.2.2|70|194709965436
1.3.6.1.4.1.43296.3.4.1.13.2.3|70|0
1.3.6.1.4.1.43296.3.4.1.13.2.4|70|0
1.3.6.1.4.1.43296.3.4.1.13.2.5|70|432734733
1.3.6.1.4.1.43296.3.4.1.13.2.6|70|10259115
1.3.6.1.4.1.43296.3.4.1.13.2.7|70|129821406
1.3.6.1.4.1.43296.3.4.1.13.2.8|70|129765589
1.3.6.1.4.1.43296.3.4.1.13.2.9|70|420121150525
1.3.6.1.4.1.43296.3.4.1.13.2.10|70|129902146
1.3.6.1.4.1.43296.3.4.1.13.2.11|70|420121065337
1.3.6.1.4.1.43296.3.4.1.13.2.12|70|2432
1.3.6.1.4.1.43296.3.4.1.13.2.13|70|1432443846
1.3.6.1.4.1.43296.3.4.1.13.2.14|70|129821406
1.3.6.1.4.1.43296.3.4.1.13.2.15|70|2432
1.3.6.1.4.1.43296.3.4.1.13.2.16|70|0
1.3.6.1.4.1.43296.3.4.1.13.3.1|70|1437474178
1.3.6.1.4.1.43296.3.4.1.13.3.2|70|147401
1.3.6.1.4.1.43296.3.4.1.13.3.3|70|1434733001
1.3.6.1.4.1.43296.3.4.1.13.3.4|70|2432
1.3.6.1.4.1.43296.3.4.1.13.3.5|70|1437375186
1.3.6.1.4.1.43296.3.4.1.13.3.6|70|2432
1.3.6.1.4.1.43296.3.4.1.13.3.7|70|763635186479
1.3.6.1.4.1.43296.3.4.1.13.3.8|70|515050394774
1.3.6.1.4.1.43296.3.4.1.13.3.9|70|636093262
1.3.6.1.4.1.43296.3.4.1.13.3.10|70|4802
1.3.6.1.4.1.43296.3.4.1.13.3.11|70|280706250138
1.3.6.1.4.1.43296.3.4.1.13.3.12|70|221117750739
1.3.6.1.4.1.43296.3.4.1.13.3.13|70|6626
1.3.6.1.4.1.43296.3.4.1.13.3.14|70|3912
1.3.6.1.4.1.43296.3.4.1.13.3.15|70|0
1.3.6.1.4.1.43296.3.4.1.13.3.16|70|0