From 70f9223e610893fe79797190ab33056535b294c4 Mon Sep 17 00:00:00 2001 From: Denny Friebe Date: Wed, 28 Oct 2020 19:36:03 +0100 Subject: [PATCH 1/8] Rittal CMC III: Add device support for PU and PU Compact --- .../discovery/rittal-cmc-iii-pu.yaml | 16 + includes/definitions/rittal-cmc-iii-pu.yaml | 19 + includes/definitions/rittal-lcp.yaml | 7 +- includes/discovery/sensors.inc.php | 12 +- .../sensors/rittal-cmc-iii-sensors.inc.php | 150 + includes/polling/os/rittal-cmc-iii-pu.inc.php | 10 + tests/data/rittal-cmc-iii-pu.json | 1828 +++++++++ tests/data/rittal-cmc-iii-pu_compact.json | 1456 +++++++ tests/snmpsim/rittal-cmc-iii-pu.snmprec | 3523 +++++++++++++++++ .../snmpsim/rittal-cmc-iii-pu_compact.snmprec | 1784 +++++++++ 10 files changed, 8797 insertions(+), 8 deletions(-) create mode 100644 includes/definitions/discovery/rittal-cmc-iii-pu.yaml create mode 100644 includes/definitions/rittal-cmc-iii-pu.yaml create mode 100644 includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php create mode 100644 includes/polling/os/rittal-cmc-iii-pu.inc.php create mode 100644 tests/data/rittal-cmc-iii-pu.json create mode 100644 tests/data/rittal-cmc-iii-pu_compact.json create mode 100644 tests/snmpsim/rittal-cmc-iii-pu.snmprec create mode 100644 tests/snmpsim/rittal-cmc-iii-pu_compact.snmprec diff --git a/includes/definitions/discovery/rittal-cmc-iii-pu.yaml b/includes/definitions/discovery/rittal-cmc-iii-pu.yaml new file mode 100644 index 000000000000..81f8e6bf616e --- /dev/null +++ b/includes/definitions/discovery/rittal-cmc-iii-pu.yaml @@ -0,0 +1,16 @@ +mib: RITTAL-CMC-III-MIB +modules: + sensors: + state: + data: + - + oid: cmcIIIUnitStatus + value: cmcIIIUnitStatus + state_name: cmcIIIUnitStatus + num_oid: '.1.3.6.1.4.1.2606.7.2.1.{{ $index }}' + index: 'cmcIIIUnitStatus.{{ $index }}' + descr: Unit Status + states: + - { descr: OK, graph: 1, value: 1, generic: 0 } + - { descr: Failed, graph: 1, value: 2, generic: 2 } + - { descr: Overload, graph: 1, value: 3, generic: 1 } diff --git a/includes/definitions/rittal-cmc-iii-pu.yaml b/includes/definitions/rittal-cmc-iii-pu.yaml new file mode 100644 index 000000000000..9cf2005a1c60 --- /dev/null +++ b/includes/definitions/rittal-cmc-iii-pu.yaml @@ -0,0 +1,19 @@ +os: rittal-cmc-iii-pu +text: 'Rittal CMC III PU' +type: environment +icon: rittal +mib_dir: rittal +over: + - { graph: device_temperature, text: Temperatures } +discovery_modules: + storage: false + mempools: false + processors: false + entity-physical: false +discovery: + - + sysObjectID: + - .1.3.6.1.4.1.2606.7 + sysDescr_regex: + - '/^Rittal CMC III PU/' + - '/^Rittal CMC III PU Compact/' diff --git a/includes/definitions/rittal-lcp.yaml b/includes/definitions/rittal-lcp.yaml index 3503ed6f4a48..64b9f62ac6c2 100644 --- a/includes/definitions/rittal-lcp.yaml +++ b/includes/definitions/rittal-lcp.yaml @@ -2,18 +2,17 @@ os: rittal-lcp text: 'Rittal LCP' type: environment icon: rittal +mib_dir: rittal over: - { graph: device_temperature, text: Temperatures } - { graph: device_power, text: 'Cooling capacity' } -mib_dir: rittal discovery_modules: storage: false mempools: false processors: false discovery: - - - sysObjectID: - - .1.3.6.1.4.1.2606.7 - sysDescr: - 'Rittal LCP' + sysDescr_regex: + - '/^Rittal LCP/' diff --git a/includes/discovery/sensors.inc.php b/includes/discovery/sensors.inc.php index e32988967b2f..37bf23752a08 100644 --- a/includes/discovery/sensors.inc.php +++ b/includes/discovery/sensors.inc.php @@ -8,10 +8,14 @@ /** @var OS $os */ $pre_cache = $os->preCache(); -// Run custom sensors -require 'includes/discovery/sensors/cisco-entity-sensor.inc.php'; -require 'includes/discovery/sensors/entity-sensor.inc.php'; -require 'includes/discovery/sensors/ipmi.inc.php'; +if ($device['os'] == 'rittal-cmc-iii-pu') { + include 'includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php'; +} else { + // Run custom sensors + require 'includes/discovery/sensors/cisco-entity-sensor.inc.php'; + require 'includes/discovery/sensors/entity-sensor.inc.php'; + require 'includes/discovery/sensors/ipmi.inc.php'; +} if ($device['os'] == 'netscaler') { include 'includes/discovery/sensors/netscaler.inc.php'; diff --git a/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php b/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php new file mode 100644 index 000000000000..d077fe322a98 --- /dev/null +++ b/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php @@ -0,0 +1,150 @@ +. + * + * @link http://librenms.org + * @copyright 2020 Denny Friebe + * @author Denny Friebe + */ +$cmc_iii_var_table = snmpwalk_cache_oid($device, 'cmcIIIVarTable', null, 'RITTAL-CMC-III-MIB', null); +$cmc_iii_sensors = []; + +foreach ($cmc_iii_var_table as $index => $entry) { + $var_name_parts = explode('.', $entry['cmcIIIVarName']); + array_pop($var_name_parts); + $sensor_name = implode(' ', $var_name_parts); + $var_type = $entry['cmcIIIVarType']; + $sensor_id = count($cmc_iii_sensors); + + switch ($var_type) { + case 'description': + // Every new sensor starts with their description. + if ($sensor_id == false) { + $sensor_id = 1; + } else { + $sensor_id++; + } + + $cmc_iii_sensors[$sensor_id]['name'] = $sensor_name; + $cmc_iii_sensors[$sensor_id]['desc'] = $entry['cmcIIIVarValueStr']; + break; + case 'setHigh': + $cmc_iii_sensors[$sensor_id]['high_limit'] = $entry['cmcIIIVarValueInt']; + break; + case 'setWarn': + $cmc_iii_sensors[$sensor_id]['warn_limit'] = $entry['cmcIIIVarValueInt']; + break; + case 'setLow': + $cmc_iii_sensors[$sensor_id]['low_limit'] = $entry['cmcIIIVarValueInt']; + break; + case 'logic': + $sensor_logic = explode(' / ', $entry['cmcIIIVarValueStr']); + $cmc_iii_sensors[$sensor_id]['logic'][0] = substr($sensor_logic[0], 2); + $cmc_iii_sensors[$sensor_id]['logic'][1] = substr($sensor_logic[1], 2); + break; + case 'value': + $cmc_iii_sensors[$sensor_id]['oid'] = '.1.3.6.1.4.1.2606.7.4.2.2.1.11.' . $index; + + if (! empty($entry['cmcIIIVarValueInt'])) { + $cmc_iii_sensors[$sensor_id]['value'] = $entry['cmcIIIVarValueInt']; + } else { + $cmc_iii_sensors[$sensor_id]['value'] = $entry['cmcIIIVarValueStr']; + } + + $unit = $entry['cmcIIIVarUnit']; + $type = 'state'; + if (Str::endsWith($unit, 'A')) { + $type = 'current'; + } elseif (Str::endsWith($unit, 'degree C') or Str::endsWith($unit, 'degree F')) { + $type = 'temperature'; + } elseif (Str::endsWith($unit, 'l/min')) { + $type = 'waterflow'; + } elseif (Str::endsWith($unit, 'V')) { + $type = 'voltage'; + } elseif (Str::endsWith($unit, 'W')) { + $type = 'power'; + } + + $cmc_iii_sensors[$sensor_id]['type'] = $type; + + if ($entry['cmcIIIVarScale'][0] == '-') { + $cmc_iii_sensors[$sensor_id]['divisor'] = substr($entry['cmcIIIVarScale'], 1); + } elseif ($entry['cmcIIIVarScale'][0] == '+') { + $cmc_iii_sensors[$sensor_id]['multiplier'] = substr($entry['cmcIIIVarScale'], 1); + } + break; + } +} + +foreach ($cmc_iii_sensors as $sensor_id => $sensor_data) { + // Some sensors provide either no useful data at all or only partially useful data. + if (! isset($sensor_data['oid']) || $sensor_data['name'] == 'System V24 Port' || $sensor_data['name'] == 'Memory USB-Stick' || $sensor_data['name'] == 'Memory SD-Card' || $sensor_data['name'] == 'Login') { + echo "\n" . $sensor_data['name'] . " skipped!\n"; + continue; + } + + // No logic is provided for the sensor types 'Smoke' and 'Access'. + if ($sensor_data['name'] == 'Smoke') { + $sensor_data['logic'][0] = 'OK'; + $sensor_data['logic'][1] = 'Alarm'; + } elseif ($sensor_data['name'] == 'Access') { + $sensor_data['logic'][0] = 'Closed'; + $sensor_data['logic'][1] = 'Open'; + } + + if (isset($sensor_data['logic'])) { + // We need separate state indexes for each device because the sensor logic can vary from device to device depending on its configuration. So we add our device ID here. + $sensor_data['name'] = $sensor_data['name'] . '_' . $device['device_id']; + $sensor_logic = [ + [ + 'value' => 0, + 'generic' => 0, + 'graph' => 1, + 'descr' => $sensor_data['logic'][0], + ], + [ + 'value' => 1, + 'generic' => 0, + 'graph' => 1, + 'descr' => $sensor_data['logic'][1], + ], + ]; + + create_state_index($sensor_data['name'], $sensor_logic); + } + + if (isset($sensor_data['divisor'])) { + $sensor_data['low_limit'] = ($sensor_data['low_limit'] / $sensor_data['divisor']); + $sensor_data['warn_limit'] = ($sensor_data['warn_limit'] / $sensor_data['divisor']); + $sensor_data['high_limit'] = ($sensor_data['high_limit'] / $sensor_data['divisor']); + $sensor_data['value'] = ($sensor_data['value'] / $sensor_data['divisor']); + } elseif (isset($sensor_data['multiplier'])) { + $sensor_data['low_limit'] = ($sensor_data['low_limit'] * $sensor_data['multiplier']); + $sensor_data['warn_limit'] = ($sensor_data['warn_limit'] * $sensor_data['multiplier']); + $sensor_data['high_limit'] = ($sensor_data['high_limit'] * $sensor_data['multiplier']); + $sensor_data['value'] = ($sensor_data['value'] * $sensor_data['multiplier']); + } + + discover_sensor($valid['sensor'], $sensor_data['type'], $device, $sensor_data['oid'], $sensor_id, $sensor_data['name'], $sensor_data['desc'], $sensor_data['divisor'], $sensor_data['multiplier'], $sensor_data['low_limit'], null, $sensor_data['warn_limit'], $sensor_data['high_limit'], $sensor_data['value']); + + if (isset($sensor_data['logic'])) { + create_sensor_to_state_index($device, $sensor_data['name'], $sensor_id); + } +} + +unset($cmc_iii_var_table, $cmc_iii_sensors, $index, $entry, $var_name_parts, $sensor_name, $var_type, $sensor_id, $sensor_logic, $unit, $type, $sensor_data); diff --git a/includes/polling/os/rittal-cmc-iii-pu.inc.php b/includes/polling/os/rittal-cmc-iii-pu.inc.php new file mode 100644 index 000000000000..0f8edcf6ee88 --- /dev/null +++ b/includes/polling/os/rittal-cmc-iii-pu.inc.php @@ -0,0 +1,10 @@ +", + "sysObjectID": ".1.3.6.1.4.1.2606.7", + "sysDescr": "Rittal CMC III PU Compact SN HW V6.02 - SW V3.15.70_4", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "rittal-cmc-iii-pu", + "type": "environment", + "serial": null, + "icon": "rittal.svg", + "location": "" + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.2606.7", + "sysDescr": "Rittal CMC III PU Compact SN HW V6.02 - SW V3.15.70_4", + "sysContact": "", + "version": "V3.15.70_4", + "hardware": "CMCIII-PU Compact", + "features": null, + "os": "rittal-cmc-iii-pu", + "type": "environment", + "serial": "", + "icon": "rittal.svg", + "location": "" + } + ] + } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lo", + "ifName": "lo", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo", + "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": "can0", + "ifName": "can0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "can0", + "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": "can1", + "ifName": "can1", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "can1", + "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": "eth0", + "ifName": "eth0", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth0", + "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": "sit0", + "ifName": "sit0", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "sit0", + "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": "sit0", + "ifName": "sit0", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "sit0", + "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": "lo", + "ifName": "lo", + "portName": null, + "ifIndex": 1, + "ifSpeed": 10000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 65536, + "ifType": "softwareLoopback", + "ifAlias": "lo", + "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": 2344854, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2344854, + "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": 351672800, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 351672800, + "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": "can0", + "ifName": "can0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 16, + "ifType": "other", + "ifAlias": "can0", + "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": 2, + "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": 16, + "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": "can1", + "ifName": "can1", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 16, + "ifType": "other", + "ifAlias": "can1", + "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": "eth0", + "ifName": "eth0", + "portName": null, + "ifIndex": 4, + "ifSpeed": 100000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 100, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth0", + "ifPhysAddress": "00d09343ee06", + "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": 898735981, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 71483441, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 136383, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 119787020823, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 20222267617, + "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": 11849, + "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": "sit0", + "ifName": "sit0", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1480, + "ifType": "tunnel", + "ifAlias": "sit0", + "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": "sit0", + "ifName": "sit0", + "portName": null, + "ifIndex": 6, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1480, + "ifType": "tunnel", + "ifAlias": "sit0", + "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 + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.10", + "sensor_index": "17", + "sensor_type": "PSM_P1_1 Unit", + "sensor_descr": "Steckd. Zubehoer", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 1.4, + "sensor_limit": 1.6, + "sensor_limit_warn": 0, + "sensor_limit_low": 0, + "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": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.60", + "sensor_index": "26", + "sensor_type": "PSM_P1_2 Unit", + "sensor_descr": "Server 10", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 1.5, + "sensor_limit": 0.6, + "sensor_limit_warn": 0, + "sensor_limit_low": 0, + "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": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.40", + "sensor_index": "7", + "sensor_type": "System CAN1 Current", + "sensor_descr": "CAN1 Current", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 900, + "sensor_limit_warn": 700, + "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": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.47", + "sensor_index": "8", + "sensor_type": "System CAN2 Current", + "sensor_descr": "CAN2 Current", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 900, + "sensor_limit_warn": 700, + "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.2606.7.4.2.2.1.11.1.12", + "sensor_index": "2", + "sensor_type": "Access_55", + "sensor_descr": "Tuer", + "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": "Access_55" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.5.2", + "sensor_index": "37", + "sensor_type": "Access_55", + "sensor_descr": "Tuer Stromversorgung", + "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": "Access_55" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.2.1.0", + "sensor_index": "cmcIIIUnitStatus.0", + "sensor_type": "cmcIIIUnitStatus", + "sensor_descr": "Unit Status", + "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": "cmcIIIUnitStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.18", + "sensor_index": "3", + "sensor_type": "Input 1_55", + "sensor_descr": "Netzausfall Akkubetr", + "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": "Input 1_55" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.24", + "sensor_index": "4", + "sensor_type": "Input 2_55", + "sensor_descr": "Akku defekt", + "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": "Input 2_55" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.3.2", + "sensor_index": "35", + "sensor_type": "Smoke_55", + "sensor_descr": "Rauchm. SRV Schrank", + "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": "Smoke_55" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.6.2", + "sensor_index": "38", + "sensor_type": "Smoke_55", + "sensor_descr": "Rauchm. USV Schrank", + "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": "Smoke_55" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.54", + "sensor_index": "9", + "sensor_type": "System Temperature", + "sensor_descr": "Sys Temp", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 43.2, + "sensor_limit": 80, + "sensor_limit_warn": 70, + "sensor_limit_low": -30, + "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.2606.7.4.2.2.1.11.1.2", + "sensor_index": "1", + "sensor_type": "Temperature", + "sensor_descr": "Schranktemperatur", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 20.9, + "sensor_limit": 45, + "sensor_limit_warn": 40, + "sensor_limit_low": 0, + "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.2606.7.4.2.2.1.11.4.2", + "sensor_index": "36", + "sensor_type": "Temperature", + "sensor_descr": "Temperature", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 18.8, + "sensor_limit": 40, + "sensor_limit_warn": 35, + "sensor_limit_low": 0, + "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": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.64", + "sensor_index": "10", + "sensor_type": "System Supply 24V", + "sensor_descr": "Supply 24V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 23.43, + "sensor_limit": 28, + "sensor_limit_warn": 26, + "sensor_limit_low": 19, + "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": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.82", + "sensor_index": "12", + "sensor_type": "System Supply 3V3", + "sensor_descr": "Supply 3V3", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.56, + "sensor_limit_low": 2.97, + "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": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.73", + "sensor_index": "11", + "sensor_type": "System Supply 5V0", + "sensor_descr": "Supply 5V0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": 5.5, + "sensor_limit_warn": 5.4, + "sensor_limit_low": 4.5, + "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": "Access_55", + "state_descr": "Closed", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "Access_55", + "state_descr": "Open", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cmcIIIUnitStatus", + "state_descr": "OK", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cmcIIIUnitStatus", + "state_descr": "Failed", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "cmcIIIUnitStatus", + "state_descr": "Overload", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "Input 1_55", + "state_descr": "Alarm", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "Input 1_55", + "state_descr": "OK", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "Input 2_55", + "state_descr": "Alarm", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "Input 2_55", + "state_descr": "OK", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "Smoke_55", + "state_descr": "OK", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "Smoke_55", + "state_descr": "Alarm", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + } + ] + }, + "poller": "matches discovery" + } +} diff --git a/tests/data/rittal-cmc-iii-pu_compact.json b/tests/data/rittal-cmc-iii-pu_compact.json new file mode 100644 index 000000000000..0d24aa0f4955 --- /dev/null +++ b/tests/data/rittal-cmc-iii-pu_compact.json @@ -0,0 +1,1456 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.2606.7", + "sysDescr": "Rittal CMC III PU Compact SN HW V6.02 - SW V3.15.70_4", + "sysContact": null, + "version": null, + "hardware": null, + "features": null, + "os": "rittal-cmc-iii-pu", + "type": "environment", + "serial": null, + "icon": "rittal.svg", + "location": "" + } + ] + }, + "poller": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.2606.7", + "sysDescr": "Rittal CMC III PU Compact SN HW V6.02 - SW V3.15.70_4", + "sysContact": "", + "version": "V3.15.70_4", + "hardware": "CMCIII-PU Compact", + "features": null, + "os": "rittal-cmc-iii-pu", + "type": "environment", + "serial": "", + "icon": "rittal.svg", + "location": "" + } + ] + } + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "lo", + "ifName": "lo", + "portName": null, + "ifIndex": 1, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "softwareLoopback", + "ifAlias": "lo", + "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": "can0", + "ifName": "can0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "can0", + "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": "can1", + "ifName": "can1", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "other", + "ifAlias": "can1", + "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": "eth0", + "ifName": "eth0", + "portName": null, + "ifIndex": 4, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "ethernetCsmacd", + "ifAlias": "eth0", + "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": "sit0", + "ifName": "sit0", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": null, + "ifConnectorPresent": null, + "ifPromiscuousMode": null, + "ifHighSpeed": null, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": null, + "ifAdminStatus": null, + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": null, + "ifType": "tunnel", + "ifAlias": "sit0", + "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": "lo", + "ifName": "lo", + "portName": null, + "ifIndex": 1, + "ifSpeed": 10000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "false", + "ifPromiscuousMode": "false", + "ifHighSpeed": 10, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 65536, + "ifType": "softwareLoopback", + "ifAlias": "lo", + "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": 2344889, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 2344889, + "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": 351678092, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 351678092, + "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": "can0", + "ifName": "can0", + "portName": null, + "ifIndex": 2, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 16, + "ifType": "other", + "ifAlias": "can0", + "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": 2, + "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": 16, + "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": "can1", + "ifName": "can1", + "portName": null, + "ifIndex": 3, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 16, + "ifType": "other", + "ifAlias": "can1", + "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": "eth0", + "ifName": "eth0", + "portName": null, + "ifIndex": 4, + "ifSpeed": 100000000, + "ifSpeed_prev": null, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "true", + "ifHighSpeed": 100, + "ifHighSpeed_prev": null, + "ifOperStatus": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth0", + "ifPhysAddress": "00d09343ee06", + "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": 898755289, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 71485876, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 136383, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 119789737362, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 20222898365, + "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": 11849, + "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": "sit0", + "ifName": "sit0", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "down", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1480, + "ifType": "tunnel", + "ifAlias": "sit0", + "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 + } + ] + } + }, + "sensors": { + "discovery": { + "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.40", + "sensor_index": "7", + "sensor_type": "System CAN1 Current", + "sensor_descr": "CAN1 Current", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 900, + "sensor_limit_warn": 700, + "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": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.47", + "sensor_index": "8", + "sensor_type": "System CAN2 Current", + "sensor_descr": "CAN2 Current", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 900, + "sensor_limit_warn": 700, + "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.2606.7.4.2.2.1.11.1.12", + "sensor_index": "2", + "sensor_type": "Access_56", + "sensor_descr": "Tuer", + "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": "Access_56" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.2.1.0", + "sensor_index": "cmcIIIUnitStatus.0", + "sensor_type": "cmcIIIUnitStatus", + "sensor_descr": "Unit Status", + "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": "cmcIIIUnitStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.18", + "sensor_index": "3", + "sensor_type": "Input 1_56", + "sensor_descr": "Netzausfall Akkubetr", + "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": "Input 1_56" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.24", + "sensor_index": "4", + "sensor_type": "Input 2_56", + "sensor_descr": "Akku defekt", + "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": "Input 2_56" + }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.54", + "sensor_index": "9", + "sensor_type": "System Temperature", + "sensor_descr": "Sys Temp", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 43.2, + "sensor_limit": 80, + "sensor_limit_warn": 70, + "sensor_limit_low": -30, + "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.2606.7.4.2.2.1.11.1.2", + "sensor_index": "1", + "sensor_type": "Temperature", + "sensor_descr": "Schranktemperatur", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 20.9, + "sensor_limit": 45, + "sensor_limit_warn": 40, + "sensor_limit_low": 0, + "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": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.64", + "sensor_index": "10", + "sensor_type": "System Supply 24V", + "sensor_descr": "Supply 24V", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 23.42, + "sensor_limit": 28, + "sensor_limit_warn": 26, + "sensor_limit_low": 19, + "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": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.82", + "sensor_index": "12", + "sensor_type": "System Supply 3V3", + "sensor_descr": "Supply 3V3", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 3.3, + "sensor_limit": 3.63, + "sensor_limit_warn": 3.56, + "sensor_limit_low": 2.97, + "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": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.73", + "sensor_index": "11", + "sensor_type": "System Supply 5V0", + "sensor_descr": "Supply 5V0", + "group": null, + "sensor_divisor": 1000, + "sensor_multiplier": 1, + "sensor_current": 5, + "sensor_limit": 5.5, + "sensor_limit_warn": 5.4, + "sensor_limit_low": 4.5, + "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": "Access_56", + "state_descr": "Closed", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "Access_56", + "state_descr": "Open", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cmcIIIUnitStatus", + "state_descr": "OK", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "cmcIIIUnitStatus", + "state_descr": "Failed", + "state_draw_graph": 1, + "state_value": 2, + "state_generic_value": 2 + }, + { + "state_name": "cmcIIIUnitStatus", + "state_descr": "Overload", + "state_draw_graph": 1, + "state_value": 3, + "state_generic_value": 1 + }, + { + "state_name": "Input 1_56", + "state_descr": "Alarm", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "Input 1_56", + "state_descr": "OK", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "Input 2_56", + "state_descr": "Alarm", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "Input 2_56", + "state_descr": "OK", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + } + ] + }, + "poller": "matches discovery" + } +} diff --git a/tests/snmpsim/rittal-cmc-iii-pu.snmprec b/tests/snmpsim/rittal-cmc-iii-pu.snmprec new file mode 100644 index 000000000000..0b59c882b412 --- /dev/null +++ b/tests/snmpsim/rittal-cmc-iii-pu.snmprec @@ -0,0 +1,3523 @@ +1.3.6.1.2.1.1.1.0|4|Rittal CMC III PU Compact SN HW V6.02 - SW V3.15.70_4 +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2606.7 +1.3.6.1.2.1.1.3.0|67|3026506624 +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|lo +1.3.6.1.2.1.2.2.1.2.2|4|can0 +1.3.6.1.2.1.2.2.1.2.3|4|can1 +1.3.6.1.2.1.2.2.1.2.4|4|eth0 +1.3.6.1.2.1.2.2.1.2.5|4|sit0 +1.3.6.1.2.1.2.2.1.2.6|4|sit0 +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|1 +1.3.6.1.2.1.2.2.1.3.3|2|1 +1.3.6.1.2.1.2.2.1.3.4|2|6 +1.3.6.1.2.1.2.2.1.3.5|2|131 +1.3.6.1.2.1.2.2.1.3.6|2|131 +1.3.6.1.2.1.2.2.1.4.1|2|65536 +1.3.6.1.2.1.2.2.1.4.2|2|16 +1.3.6.1.2.1.2.2.1.4.3|2|16 +1.3.6.1.2.1.2.2.1.4.4|2|1500 +1.3.6.1.2.1.2.2.1.4.5|2|1480 +1.3.6.1.2.1.2.2.1.4.6|2|1480 +1.3.6.1.2.1.2.2.1.6.1|4| +1.3.6.1.2.1.2.2.1.6.2|4| +1.3.6.1.2.1.2.2.1.6.3|4| +1.3.6.1.2.1.2.2.1.6.4|4x|00D09343EE06 +1.3.6.1.2.1.2.2.1.6.5|4| +1.3.6.1.2.1.2.2.1.6.6|4| +1.3.6.1.2.1.2.2.1.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|2 +1.3.6.1.2.1.2.2.1.7.4|2|1 +1.3.6.1.2.1.2.2.1.7.5|2|2 +1.3.6.1.2.1.2.2.1.7.6|2|2 +1.3.6.1.2.1.2.2.1.8.1|2|1 +1.3.6.1.2.1.2.2.1.8.2|2|1 +1.3.6.1.2.1.2.2.1.8.3|2|2 +1.3.6.1.2.1.2.2.1.8.4|2|1 +1.3.6.1.2.1.2.2.1.8.5|2|2 +1.3.6.1.2.1.2.2.1.8.6|2|2 +1.3.6.1.2.1.2.2.1.9.1|67|0 +1.3.6.1.2.1.2.2.1.9.2|67|0 +1.3.6.1.2.1.2.2.1.9.3|67|0 +1.3.6.1.2.1.2.2.1.9.4|67|0 +1.3.6.1.2.1.2.2.1.9.5|67|0 +1.3.6.1.2.1.2.2.1.9.6|67|0 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.13.3|65|0 +1.3.6.1.2.1.2.2.1.13.4|65|11849 +1.3.6.1.2.1.2.2.1.13.5|65|0 +1.3.6.1.2.1.2.2.1.13.6|65|0 +1.3.6.1.2.1.2.2.1.14.1|65|0 +1.3.6.1.2.1.2.2.1.14.2|65|0 +1.3.6.1.2.1.2.2.1.14.3|65|0 +1.3.6.1.2.1.2.2.1.14.4|65|136383 +1.3.6.1.2.1.2.2.1.14.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.19.1|65|0 +1.3.6.1.2.1.2.2.1.19.2|65|0 +1.3.6.1.2.1.2.2.1.19.3|65|0 +1.3.6.1.2.1.2.2.1.19.4|65|0 +1.3.6.1.2.1.2.2.1.19.5|65|0 +1.3.6.1.2.1.2.2.1.19.6|65|0 +1.3.6.1.2.1.2.2.1.20.1|65|0 +1.3.6.1.2.1.2.2.1.20.2|65|0 +1.3.6.1.2.1.2.2.1.20.3|65|0 +1.3.6.1.2.1.2.2.1.20.4|65|0 +1.3.6.1.2.1.2.2.1.20.5|65|0 +1.3.6.1.2.1.2.2.1.20.6|65|0 +1.3.6.1.2.1.4.3.0|65|810373684 +1.3.6.1.2.1.4.4.0|65|2359 +1.3.6.1.2.1.4.5.0|65|1617 +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|164343047 +1.3.6.1.2.1.4.10.0|65|72423041 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|0 +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.10.15.109.161|2|4 +1.3.6.1.2.1.4.20.1.2.10.15.109.239|2|4 +1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1 +1.3.6.1.2.1.4.20.1.3.10.15.109.161|64|255.255.0.0 +1.3.6.1.2.1.4.20.1.3.10.15.109.239|64|255.255.0.0 +1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0 +1.3.6.1.2.1.4.22.1.2.4.10.15.1.11|4x|D6F4CBF73F4A +1.3.6.1.2.1.4.22.1.2.4.10.15.1.33|4x|26CAC38A60B1 +1.3.6.1.2.1.4.22.1.2.4.10.15.1.35|4x|82921029FAFB +1.3.6.1.2.1.4.22.1.2.4.10.15.109.1|4x|00032D3B9EAA +1.3.6.1.2.1.4.22.1.2.4.10.15.109.19|4x|00155D9B1701 +1.3.6.1.2.1.4.22.1.2.4.10.15.109.21|4x|00155D010598 +1.3.6.1.2.1.4.31.1.1.3.1|65|810371054 +1.3.6.1.2.1.4.31.1.1.3.2|65|508730 +1.3.6.1.2.1.4.31.1.1.4.1|70|810371054 +1.3.6.1.2.1.4.31.1.1.4.2|70|508730 +1.3.6.1.2.1.4.31.1.1.5.1|65|775801820 +1.3.6.1.2.1.4.31.1.1.5.2|65|75724452 +1.3.6.1.2.1.4.31.1.1.6.1|70|99560049628 +1.3.6.1.2.1.4.31.1.1.6.2|70|75724452 +1.3.6.1.2.1.4.31.1.1.7.1|65|2359 +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|0 +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|1617 +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|4 +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|508730 +1.3.6.1.2.1.4.31.1.1.18.1|65|164341791 +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|164341791 +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|72422175 +1.3.6.1.2.1.4.31.1.1.20.2|65|8 +1.3.6.1.2.1.4.31.1.1.21.1|70|72422175 +1.3.6.1.2.1.4.31.1.1.21.2|70|8 +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|72422175 +1.3.6.1.2.1.4.31.1.1.30.2|65|8 +1.3.6.1.2.1.4.31.1.1.31.1|70|72422175 +1.3.6.1.2.1.4.31.1.1.31.2|70|8 +1.3.6.1.2.1.4.31.1.1.32.1|65|2353719819 +1.3.6.1.2.1.4.31.1.1.32.2|65|544 +1.3.6.1.2.1.4.31.1.1.33.1|70|19533589003 +1.3.6.1.2.1.4.31.1.1.33.2|70|544 +1.3.6.1.2.1.4.31.1.1.34.1|65|74550 +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|74550 +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|2087472 +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|2087472 +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|8 +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|8 +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|544 +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|544 +1.3.6.1.2.1.4.31.1.1.42.1|65|91847891 +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|91847891 +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|60000 +1.3.6.1.2.1.4.31.1.1.47.2|66|60000 +1.3.6.1.2.1.4.34.1.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|6|1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 +1.3.6.1.2.1.4.34.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|2 +1.3.6.1.2.1.4.35.1.4.4.1.4.10.15.1.11|4x|D6F4CBF73F4A +1.3.6.1.2.1.4.35.1.4.4.1.4.10.15.1.33|4x|26CAC38A60B1 +1.3.6.1.2.1.4.35.1.4.4.1.4.10.15.1.35|4x|82921029FAFB +1.3.6.1.2.1.4.35.1.4.4.1.4.10.15.109.1|4x|00032D3B9EAA +1.3.6.1.2.1.4.35.1.4.4.1.4.10.15.109.19|4x|00155D9B1701 +1.3.6.1.2.1.4.35.1.4.4.1.4.10.15.109.21|4x|00155D010598 +1.3.6.1.2.1.5.1.0|65|3536375 +1.3.6.1.2.1.5.2.0|65|943 +1.3.6.1.2.1.5.3.0|65|0 +1.3.6.1.2.1.5.4.0|65|9 +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|0 +1.3.6.1.2.1.5.9.0|65|3536366 +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|0 +1.3.6.1.2.1.5.15.0|65|3535450 +1.3.6.1.2.1.5.16.0|65|0 +1.3.6.1.2.1.5.17.0|65|27 +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|0 +1.3.6.1.2.1.5.22.0|65|0 +1.3.6.1.2.1.5.23.0|65|3535423 +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.5.29.1.2.1|65|3536375 +1.3.6.1.2.1.5.29.1.2.2|65|0 +1.3.6.1.2.1.5.29.1.3.1|65|943 +1.3.6.1.2.1.5.29.1.3.2|65|0 +1.3.6.1.2.1.5.29.1.4.1|65|0 +1.3.6.1.2.1.5.29.1.4.2|65|8 +1.3.6.1.2.1.5.29.1.5.1|65|3535450 +1.3.6.1.2.1.5.29.1.5.2|65|0 +1.3.6.1.2.1.5.30.1.3.1.0|65|0 +1.3.6.1.2.1.5.30.1.3.1.3|65|9 +1.3.6.1.2.1.5.30.1.3.1.5|65|24 +1.3.6.1.2.1.5.30.1.3.1.8|65|3536366 +1.3.6.1.2.1.5.30.1.3.2.1|65|0 +1.3.6.1.2.1.5.30.1.3.2.2|65|0 +1.3.6.1.2.1.5.30.1.3.2.3|65|0 +1.3.6.1.2.1.5.30.1.3.2.4|65|0 +1.3.6.1.2.1.5.30.1.3.2.128|65|0 +1.3.6.1.2.1.5.30.1.3.2.129|65|0 +1.3.6.1.2.1.5.30.1.3.2.130|65|0 +1.3.6.1.2.1.5.30.1.3.2.131|65|0 +1.3.6.1.2.1.5.30.1.3.2.132|65|0 +1.3.6.1.2.1.5.30.1.3.2.133|65|0 +1.3.6.1.2.1.5.30.1.3.2.134|65|0 +1.3.6.1.2.1.5.30.1.3.2.135|65|0 +1.3.6.1.2.1.5.30.1.3.2.136|65|0 +1.3.6.1.2.1.5.30.1.3.2.137|65|0 +1.3.6.1.2.1.5.30.1.3.2.143|65|0 +1.3.6.1.2.1.5.30.1.4.1.0|65|3535423 +1.3.6.1.2.1.5.30.1.4.1.3|65|27 +1.3.6.1.2.1.5.30.1.4.1.5|65|0 +1.3.6.1.2.1.5.30.1.4.1.8|65|0 +1.3.6.1.2.1.5.30.1.4.2.1|65|0 +1.3.6.1.2.1.5.30.1.4.2.2|65|0 +1.3.6.1.2.1.5.30.1.4.2.3|65|0 +1.3.6.1.2.1.5.30.1.4.2.4|65|0 +1.3.6.1.2.1.5.30.1.4.2.128|65|0 +1.3.6.1.2.1.5.30.1.4.2.129|65|0 +1.3.6.1.2.1.5.30.1.4.2.131|65|0 +1.3.6.1.2.1.5.30.1.4.2.132|65|0 +1.3.6.1.2.1.5.30.1.4.2.133|65|3 +1.3.6.1.2.1.5.30.1.4.2.135|65|1 +1.3.6.1.2.1.5.30.1.4.2.136|65|0 +1.3.6.1.2.1.5.30.1.4.2.137|65|0 +1.3.6.1.2.1.5.30.1.4.2.143|65|4 +1.3.6.1.2.1.6.5.0|65|0 +1.3.6.1.2.1.6.6.0|65|41 +1.3.6.1.2.1.6.7.0|65|0 +1.3.6.1.2.1.6.8.0|65|0 +1.3.6.1.2.1.6.9.0|66|0 +1.3.6.1.2.1.6.10.0|65|2215 +1.3.6.1.2.1.6.11.0|65|4954 +1.3.6.1.2.1.6.12.0|65|8 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|6 +1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.21|66|1259 +1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.22|66|471 +1.3.6.1.2.1.7.1.0|65|68882309 +1.3.6.1.2.1.7.2.0|65|18 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|68882386 +1.3.6.1.2.1.11.1.0|65|66232400 +1.3.6.1.2.1.11.2.0|65|66232399 +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.8.0|65|0 +1.3.6.1.2.1.11.9.0|65|0 +1.3.6.1.2.1.11.10.0|65|0 +1.3.6.1.2.1.11.11.0|65|0 +1.3.6.1.2.1.11.12.0|65|0 +1.3.6.1.2.1.11.13.0|65|619928014 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|5141581 +1.3.6.1.2.1.11.16.0|65|16045 +1.3.6.1.2.1.11.17.0|65|0 +1.3.6.1.2.1.11.18.0|65|0 +1.3.6.1.2.1.11.19.0|65|0 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|12 +1.3.6.1.2.1.11.22.0|65|0 +1.3.6.1.2.1.11.24.0|65|0 +1.3.6.1.2.1.11.25.0|65|0 +1.3.6.1.2.1.11.26.0|65|0 +1.3.6.1.2.1.11.27.0|65|0 +1.3.6.1.2.1.11.28.0|65|66232401 +1.3.6.1.2.1.11.29.0|65|0 +1.3.6.1.2.1.11.30.0|2|2 +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.25.1.1.0|67|3026511931 +1.3.6.1.2.1.25.1.5.0|66|0 +1.3.6.1.2.1.25.1.6.0|66|63 +1.3.6.1.2.1.25.3.2.1.1.196608|2|196608 +1.3.6.1.2.1.25.3.2.1.1.262145|2|262145 +1.3.6.1.2.1.25.3.2.1.1.262146|2|262146 +1.3.6.1.2.1.25.3.2.1.1.262147|2|262147 +1.3.6.1.2.1.25.3.2.1.1.262148|2|262148 +1.3.6.1.2.1.25.3.2.1.1.262149|2|262149 +1.3.6.1.2.1.25.3.2.1.1.262150|2|262150 +1.3.6.1.2.1.25.3.2.1.1.786432|2|786432 +1.3.6.1.2.1.25.3.2.1.2.196608|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.262145|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262146|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262147|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262148|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262149|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262150|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.786432|6|1.3.6.1.2.1.25.3.1.12 +1.3.6.1.2.1.25.3.2.1.3.196608|4| +1.3.6.1.2.1.25.3.2.1.3.262145|4|network interface lo +1.3.6.1.2.1.25.3.2.1.3.262146|4|network interface can0 +1.3.6.1.2.1.25.3.2.1.3.262147|4|network interface can1 +1.3.6.1.2.1.25.3.2.1.3.262148|4|network interface eth0 +1.3.6.1.2.1.25.3.2.1.3.262149|4|network interface sit0 +1.3.6.1.2.1.25.3.2.1.3.262150|4|network interface sit0 +1.3.6.1.2.1.25.3.2.1.3.786432|4|Guessing that there's a floating point co-processor +1.3.6.1.2.1.25.3.2.1.4.196608|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262145|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262146|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262147|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262148|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262149|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262150|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.786432|6|0.0 +1.3.6.1.2.1.25.3.2.1.5.196608|2|2 +1.3.6.1.2.1.25.3.2.1.5.262145|2|2 +1.3.6.1.2.1.25.3.2.1.5.262146|2|2 +1.3.6.1.2.1.25.3.2.1.5.262147|2|5 +1.3.6.1.2.1.25.3.2.1.5.262148|2|2 +1.3.6.1.2.1.25.3.2.1.5.262149|2|5 +1.3.6.1.2.1.25.3.2.1.5.262150|2|5 +1.3.6.1.2.1.25.3.2.1.5.786432|2|2 +1.3.6.1.2.1.25.3.2.1.6.196608|65|0 +1.3.6.1.2.1.25.3.2.1.6.262145|65|0 +1.3.6.1.2.1.25.3.2.1.6.262146|65|0 +1.3.6.1.2.1.25.3.2.1.6.262147|65|0 +1.3.6.1.2.1.25.3.2.1.6.262148|65|136383 +1.3.6.1.2.1.25.3.2.1.6.262149|65|0 +1.3.6.1.2.1.25.3.2.1.6.262150|65|0 +1.3.6.1.2.1.25.3.2.1.6.786432|65|0 +1.3.6.1.2.1.25.3.3.1.1.196608|6|0.0 +1.3.6.1.2.1.25.3.3.1.2.196608|2|24 +1.3.6.1.2.1.31.1.1.1.1.1|4|lo +1.3.6.1.2.1.31.1.1.1.1.2|4|can0 +1.3.6.1.2.1.31.1.1.1.1.3|4|can1 +1.3.6.1.2.1.31.1.1.1.1.4|4|eth0 +1.3.6.1.2.1.31.1.1.1.1.5|4|sit0 +1.3.6.1.2.1.31.1.1.1.1.6|4|sit0 +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.4|65|0 +1.3.6.1.2.1.31.1.1.1.2.5|65|0 +1.3.6.1.2.1.31.1.1.1.2.6|65|0 +1.3.6.1.2.1.31.1.1.1.3.1|65|0 +1.3.6.1.2.1.31.1.1.1.3.2|65|0 +1.3.6.1.2.1.31.1.1.1.3.3|65|0 +1.3.6.1.2.1.31.1.1.1.3.4|65|0 +1.3.6.1.2.1.31.1.1.1.3.5|65|0 +1.3.6.1.2.1.31.1.1.1.3.6|65|0 +1.3.6.1.2.1.31.1.1.1.4.1|65|0 +1.3.6.1.2.1.31.1.1.1.4.2|65|0 +1.3.6.1.2.1.31.1.1.1.4.3|65|0 +1.3.6.1.2.1.31.1.1.1.4.4|65|0 +1.3.6.1.2.1.31.1.1.1.4.5|65|0 +1.3.6.1.2.1.31.1.1.1.4.6|65|0 +1.3.6.1.2.1.31.1.1.1.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.4|65|0 +1.3.6.1.2.1.31.1.1.1.5.5|65|0 +1.3.6.1.2.1.31.1.1.1.5.6|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|351672800 +1.3.6.1.2.1.31.1.1.1.6.2|70|16 +1.3.6.1.2.1.31.1.1.1.6.3|70|0 +1.3.6.1.2.1.31.1.1.1.6.4|70|119787020823 +1.3.6.1.2.1.31.1.1.1.6.5|70|0 +1.3.6.1.2.1.31.1.1.1.6.6|70|0 +1.3.6.1.2.1.31.1.1.1.7.1|70|2344854 +1.3.6.1.2.1.31.1.1.1.7.2|70|2 +1.3.6.1.2.1.31.1.1.1.7.3|70|0 +1.3.6.1.2.1.31.1.1.1.7.4|70|898735981 +1.3.6.1.2.1.31.1.1.1.7.5|70|0 +1.3.6.1.2.1.31.1.1.1.7.6|70|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.4|70|0 +1.3.6.1.2.1.31.1.1.1.8.5|70|0 +1.3.6.1.2.1.31.1.1.1.8.6|70|0 +1.3.6.1.2.1.31.1.1.1.9.1|70|0 +1.3.6.1.2.1.31.1.1.1.9.2|70|0 +1.3.6.1.2.1.31.1.1.1.9.3|70|0 +1.3.6.1.2.1.31.1.1.1.9.4|70|0 +1.3.6.1.2.1.31.1.1.1.9.5|70|0 +1.3.6.1.2.1.31.1.1.1.9.6|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|351672800 +1.3.6.1.2.1.31.1.1.1.10.2|70|0 +1.3.6.1.2.1.31.1.1.1.10.3|70|0 +1.3.6.1.2.1.31.1.1.1.10.4|70|20222267617 +1.3.6.1.2.1.31.1.1.1.10.5|70|0 +1.3.6.1.2.1.31.1.1.1.10.6|70|0 +1.3.6.1.2.1.31.1.1.1.11.1|70|2344854 +1.3.6.1.2.1.31.1.1.1.11.2|70|0 +1.3.6.1.2.1.31.1.1.1.11.3|70|0 +1.3.6.1.2.1.31.1.1.1.11.4|70|71483441 +1.3.6.1.2.1.31.1.1.1.11.5|70|0 +1.3.6.1.2.1.31.1.1.1.11.6|70|0 +1.3.6.1.2.1.31.1.1.1.12.1|70|0 +1.3.6.1.2.1.31.1.1.1.12.2|70|0 +1.3.6.1.2.1.31.1.1.1.12.3|70|0 +1.3.6.1.2.1.31.1.1.1.12.4|70|0 +1.3.6.1.2.1.31.1.1.1.12.5|70|0 +1.3.6.1.2.1.31.1.1.1.12.6|70|0 +1.3.6.1.2.1.31.1.1.1.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.4|70|0 +1.3.6.1.2.1.31.1.1.1.13.5|70|0 +1.3.6.1.2.1.31.1.1.1.13.6|70|0 +1.3.6.1.2.1.31.1.1.1.15.1|66|10 +1.3.6.1.2.1.31.1.1.1.15.2|66|0 +1.3.6.1.2.1.31.1.1.1.15.3|66|0 +1.3.6.1.2.1.31.1.1.1.15.4|66|100 +1.3.6.1.2.1.31.1.1.1.15.5|66|0 +1.3.6.1.2.1.31.1.1.1.15.6|66|0 +1.3.6.1.2.1.31.1.1.1.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.4|2|1 +1.3.6.1.2.1.31.1.1.1.16.5|2|2 +1.3.6.1.2.1.31.1.1.1.16.6|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|1 +1.3.6.1.2.1.31.1.1.1.17.3|2|1 +1.3.6.1.2.1.31.1.1.1.17.4|2|1 +1.3.6.1.2.1.31.1.1.1.17.5|2|1 +1.3.6.1.2.1.31.1.1.1.17.6|2|1 +1.3.6.1.2.1.31.1.1.1.18.1|4| +1.3.6.1.2.1.31.1.1.1.18.2|4| +1.3.6.1.2.1.31.1.1.1.18.3|4| +1.3.6.1.2.1.31.1.1.1.18.4|4| +1.3.6.1.2.1.31.1.1.1.18.5|4| +1.3.6.1.2.1.31.1.1.1.18.6|4| +1.3.6.1.2.1.31.1.1.1.19.1|67|0 +1.3.6.1.2.1.31.1.1.1.19.2|67|0 +1.3.6.1.2.1.31.1.1.1.19.3|67|0 +1.3.6.1.2.1.31.1.1.1.19.4|67|0 +1.3.6.1.2.1.31.1.1.1.19.5|67|0 +1.3.6.1.2.1.31.1.1.1.19.6|67|0 +1.3.6.1.4.1.2606.7.2.1.0|2|1 +1.3.6.1.4.1.2606.7.2.4.0|4|V3.15.70_4 +1.3.6.1.4.1.2606.7.2.6.0|4| +1.3.6.1.4.1.2606.7.4.1.2.1.2.1|4|CMCIII-PU Compact +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.1|4|Temperature.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.2|4|Temperature.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.3|4|Temperature.Offset +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.4|4|Temperature.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.5|4|Temperature.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.6|4|Temperature.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.7|4|Temperature.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.8|4|Temperature.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.9|4|Temperature.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.10|4|Temperature.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.11|4|Access.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.12|4|Access.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.13|4|Access.Sensitivity +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.14|4|Access.Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.15|4|Access.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.16|4|Access.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.17|4|Input 1.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.18|4|Input 1.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.19|4|Input 1.Logic +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.20|4|Input 1.Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.21|4|Input 1.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.22|4|Input 1.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.23|4|Input 2.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.24|4|Input 2.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.25|4|Input 2.Logic +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.26|4|Input 2.Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.27|4|Input 2.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.28|4|Input 2.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.29|4|Output.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.30|4|Output.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.31|4|Output.Logic +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.32|4|Output.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.33|4|Output.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.34|4|System.V24 Port.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.35|4|System.V24 Port.Message +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.36|4|System.V24 Port.Signal +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.37|4|System.V24 Port.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.38|4|System.V24 Port.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.39|4|System.CAN1 Current.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.40|4|System.CAN1 Current.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.41|4|System.CAN1 Current.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.42|4|System.CAN1 Current.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.43|4|System.CAN1 Current.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.44|4|System.CAN1 Current.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.45|4|System.CAN1 Current.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.46|4|System.CAN2 Current.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.47|4|System.CAN2 Current.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.48|4|System.CAN2 Current.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.49|4|System.CAN2 Current.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.50|4|System.CAN2 Current.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.51|4|System.CAN2 Current.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.52|4|System.CAN2 Current.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.53|4|System.Temperature.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.54|4|System.Temperature.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.55|4|System.Temperature.Offset +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.56|4|System.Temperature.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.57|4|System.Temperature.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.58|4|System.Temperature.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.59|4|System.Temperature.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.60|4|System.Temperature.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.61|4|System.Temperature.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.62|4|System.Temperature.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.63|4|System.Supply 24V.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.64|4|System.Supply 24V.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.65|4|System.Supply 24V.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.66|4|System.Supply 24V.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.67|4|System.Supply 24V.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.68|4|System.Supply 24V.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.69|4|System.Supply 24V.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.70|4|System.Supply 24V.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.71|4|System.Supply 24V.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.72|4|System.Supply 5V0.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.73|4|System.Supply 5V0.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.74|4|System.Supply 5V0.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.75|4|System.Supply 5V0.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.76|4|System.Supply 5V0.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.77|4|System.Supply 5V0.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.78|4|System.Supply 5V0.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.79|4|System.Supply 5V0.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.80|4|System.Supply 5V0.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.81|4|System.Supply 3V3.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.82|4|System.Supply 3V3.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.83|4|System.Supply 3V3.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.84|4|System.Supply 3V3.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.85|4|System.Supply 3V3.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.86|4|System.Supply 3V3.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.87|4|System.Supply 3V3.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.88|4|System.Supply 3V3.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.89|4|System.Supply 3V3.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.90|4|Memory.USB-Stick.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.91|4|Memory.USB-Stick.Size +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.92|4|Memory.USB-Stick.Usage +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.93|4|Memory.USB-Stick.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.94|4|Memory.USB-Stick.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.95|4|Memory.USB-Stick.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.96|4|Memory.SD-Card.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.97|4|Memory.SD-Card.Size +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.98|4|Memory.SD-Card.Usage +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.99|4|Memory.SD-Card.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.100|4|Memory.SD-Card.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.101|4|Memory.SD-Card.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.102|4|Webcam.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.103|4|Webcam.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.104|4|Webcam.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.105|4|Webcam.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.1|4|VarGat.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.2|4|VarGat.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.3|4|VarGat.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.4|4|VarGat.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.5|4|PSM_P1_1.Unit.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.6|4|PSM_P1_1.Unit.Unit Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.7|4|PSM_P1_1.Unit.Software Revision +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.8|4|PSM_P1_1.Unit.Serial Number +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.9|4|PSM_P1_1.Unit.Mounting Position +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.10|4|PSM_P1_1.Unit.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.11|4|PSM_P1_1.Unit.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.12|4|PSM_P1_1.Unit.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.13|4|PSM_P1_1.Unit.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.14|4|PSM_P1_1.Unit.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.15|4|PSM_P1_1.Plug1.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.16|4|PSM_P1_1.Plug1.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.17|4|PSM_P1_1.Plug1.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.18|4|PSM_P1_1.Plug1.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.19|4|PSM_P1_1.Plug1.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.20|4|PSM_P1_1.Plug2.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.21|4|PSM_P1_1.Plug2.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.22|4|PSM_P1_1.Plug2.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.23|4|PSM_P1_1.Plug2.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.24|4|PSM_P1_1.Plug2.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.25|4|PSM_P1_1.Plug3.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.26|4|PSM_P1_1.Plug3.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.27|4|PSM_P1_1.Plug3.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.28|4|PSM_P1_1.Plug3.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.29|4|PSM_P1_1.Plug3.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.30|4|PSM_P1_1.Plug4.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.31|4|PSM_P1_1.Plug4.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.32|4|PSM_P1_1.Plug4.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.33|4|PSM_P1_1.Plug4.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.34|4|PSM_P1_1.Plug4.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.35|4|PSM_P1_1.Plug5.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.36|4|PSM_P1_1.Plug5.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.37|4|PSM_P1_1.Plug5.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.38|4|PSM_P1_1.Plug5.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.39|4|PSM_P1_1.Plug5.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.40|4|PSM_P1_1.Plug6.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.41|4|PSM_P1_1.Plug6.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.42|4|PSM_P1_1.Plug6.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.43|4|PSM_P1_1.Plug6.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.44|4|PSM_P1_1.Plug6.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.45|4|PSM_P1_1.Plug7.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.46|4|PSM_P1_1.Plug7.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.47|4|PSM_P1_1.Plug7.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.48|4|PSM_P1_1.Plug7.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.49|4|PSM_P1_1.Plug7.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.50|4|PSM_P1_1.Plug8.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.51|4|PSM_P1_1.Plug8.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.52|4|PSM_P1_1.Plug8.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.53|4|PSM_P1_1.Plug8.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.54|4|PSM_P1_1.Plug8.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.55|4|PSM_P1_2.Unit.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.56|4|PSM_P1_2.Unit.Unit Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.57|4|PSM_P1_2.Unit.Software Revision +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.58|4|PSM_P1_2.Unit.Serial Number +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.59|4|PSM_P1_2.Unit.Mounting Position +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.60|4|PSM_P1_2.Unit.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.61|4|PSM_P1_2.Unit.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.62|4|PSM_P1_2.Unit.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.63|4|PSM_P1_2.Unit.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.64|4|PSM_P1_2.Unit.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.65|4|PSM_P1_2.Plug1.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.66|4|PSM_P1_2.Plug1.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.67|4|PSM_P1_2.Plug1.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.68|4|PSM_P1_2.Plug1.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.69|4|PSM_P1_2.Plug1.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.70|4|PSM_P1_2.Plug2.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.71|4|PSM_P1_2.Plug2.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.72|4|PSM_P1_2.Plug2.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.73|4|PSM_P1_2.Plug2.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.74|4|PSM_P1_2.Plug2.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.75|4|PSM_P1_2.Plug3.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.76|4|PSM_P1_2.Plug3.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.77|4|PSM_P1_2.Plug3.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.78|4|PSM_P1_2.Plug3.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.79|4|PSM_P1_2.Plug3.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.80|4|PSM_P1_2.Plug4.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.81|4|PSM_P1_2.Plug4.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.82|4|PSM_P1_2.Plug4.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.83|4|PSM_P1_2.Plug4.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.84|4|PSM_P1_2.Plug4.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.85|4|PSM_P1_2.Plug5.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.86|4|PSM_P1_2.Plug5.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.87|4|PSM_P1_2.Plug5.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.88|4|PSM_P1_2.Plug5.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.89|4|PSM_P1_2.Plug5.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.90|4|PSM_P1_2.Plug6.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.91|4|PSM_P1_2.Plug6.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.92|4|PSM_P1_2.Plug6.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.93|4|PSM_P1_2.Plug6.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.94|4|PSM_P1_2.Plug6.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.95|4|PSM_P1_2.Plug7.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.96|4|PSM_P1_2.Plug7.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.97|4|PSM_P1_2.Plug7.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.98|4|PSM_P1_2.Plug7.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.99|4|PSM_P1_2.Plug7.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.100|4|PSM_P1_2.Plug8.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.101|4|PSM_P1_2.Plug8.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.102|4|PSM_P1_2.Plug8.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.103|4|PSM_P1_2.Plug8.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.104|4|PSM_P1_2.Plug8.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.1|4|Smoke.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.2|4|Smoke.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.3|4|Smoke.Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.4|4|Smoke.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.5|4|Smoke.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.4.1|4|Temperature.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.4.2|4|Temperature.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.4.3|4|Temperature.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.4.4|4|Temperature.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.4.5|4|Temperature.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.4.6|4|Temperature.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.4.7|4|Temperature.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.4.8|4|Temperature.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.4.9|4|Temperature.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.5.1|4|Access.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.5.2|4|Access.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.5.3|4|Access.Sensitivity +1.3.6.1.4.1.2606.7.4.2.2.1.3.5.4|4|Access.Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.5.5|4|Access.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.5.6|4|Access.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.6.1|4|Smoke.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.6.2|4|Smoke.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.6.3|4|Smoke.Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.6.4|4|Smoke.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.6.5|4|Smoke.Category +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.1|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.3|2|18 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.4|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.5|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.6|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.7|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.8|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.9|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.10|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.11|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.12|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.13|2|30 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.14|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.15|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.16|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.17|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.18|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.19|2|15 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.20|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.21|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.22|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.23|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.24|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.25|2|15 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.26|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.27|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.28|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.29|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.30|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.31|2|15 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.32|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.33|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.34|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.35|2|95 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.36|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.37|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.38|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.39|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.40|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.41|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.42|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.43|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.44|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.45|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.46|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.47|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.48|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.49|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.50|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.51|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.52|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.53|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.54|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.55|2|18 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.56|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.57|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.58|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.59|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.60|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.61|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.62|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.63|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.64|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.65|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.66|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.67|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.68|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.69|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.70|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.71|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.72|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.73|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.74|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.75|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.76|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.77|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.78|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.79|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.80|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.81|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.82|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.83|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.84|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.85|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.86|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.87|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.88|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.89|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.90|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.91|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.92|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.93|2|81 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.94|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.95|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.96|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.97|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.98|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.99|2|81 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.100|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.101|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.102|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.103|2|81 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.104|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.105|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.1|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.2|2|84 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.3|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.4|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.5|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.6|2|90 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.7|2|91 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.8|2|92 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.9|2|93 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.10|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.11|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.12|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.13|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.14|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.15|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.16|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.17|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.18|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.19|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.20|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.21|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.22|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.23|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.24|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.25|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.26|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.27|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.28|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.29|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.30|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.31|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.32|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.33|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.34|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.35|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.36|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.37|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.38|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.39|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.40|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.41|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.42|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.43|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.44|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.45|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.46|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.47|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.48|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.49|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.50|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.51|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.52|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.53|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.54|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.55|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.56|2|90 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.57|2|91 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.58|2|92 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.59|2|93 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.60|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.61|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.62|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.63|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.64|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.65|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.66|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.67|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.68|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.69|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.70|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.71|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.72|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.73|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.74|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.75|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.76|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.77|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.78|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.79|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.80|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.81|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.82|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.83|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.84|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.85|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.86|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.87|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.88|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.89|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.90|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.91|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.92|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.93|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.94|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.95|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.96|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.97|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.98|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.99|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.100|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.101|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.102|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.103|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.104|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.1|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.3|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.4|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.5|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.4.1|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.4.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.4.3|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.4.4|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.4.5|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.4.6|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.4.7|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.4.8|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.4.9|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.5.1|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.5.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.5.3|2|30 +1.3.6.1.4.1.2606.7.4.2.2.1.4.5.4|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.5.5|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.5.6|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.6.1|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.6.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.6.3|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.6.4|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.6.5|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.1|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.2|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.3|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.4|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.5|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.6|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.7|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.8|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.9|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.10|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.11|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.12|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.13|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.14|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.15|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.16|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.17|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.18|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.19|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.20|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.21|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.22|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.23|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.24|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.25|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.26|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.27|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.28|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.29|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.30|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.31|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.32|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.33|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.34|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.35|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.36|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.37|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.38|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.39|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.40|4|mA +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.41|4|mA +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.42|4|mA +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.43|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.44|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.45|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.46|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.47|4|mA +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.48|4|mA +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.49|4|mA +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.50|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.51|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.52|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.53|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.54|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.55|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.56|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.57|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.58|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.59|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.60|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.61|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.62|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.63|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.64|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.65|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.66|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.67|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.68|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.69|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.70|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.71|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.72|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.73|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.74|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.75|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.76|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.77|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.78|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.79|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.80|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.81|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.82|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.83|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.84|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.85|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.86|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.87|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.88|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.89|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.90|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.91|4|GB +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.92|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.93|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.94|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.95|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.96|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.97|4|GB +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.98|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.99|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.100|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.101|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.102|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.103|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.104|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.105|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.1|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.2|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.3|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.4|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.5|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.6|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.7|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.8|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.9|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.10|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.11|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.12|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.13|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.14|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.15|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.16|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.17|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.18|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.19|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.20|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.21|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.22|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.23|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.24|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.25|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.26|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.27|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.28|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.29|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.30|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.31|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.32|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.33|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.34|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.35|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.36|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.37|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.38|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.39|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.40|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.41|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.42|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.43|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.44|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.45|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.46|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.47|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.48|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.49|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.50|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.51|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.52|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.53|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.54|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.55|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.56|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.57|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.58|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.59|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.60|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.61|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.62|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.63|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.64|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.65|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.66|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.67|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.68|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.69|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.70|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.71|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.72|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.73|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.74|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.75|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.76|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.77|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.78|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.79|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.80|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.81|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.82|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.83|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.84|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.85|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.86|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.87|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.88|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.89|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.90|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.91|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.92|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.93|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.94|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.95|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.96|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.97|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.98|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.99|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.100|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.101|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.102|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.103|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.104|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.1|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.2|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.3|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.4|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.5|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.4.1|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.4.2|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.4.3|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.4.4|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.4.5|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.4.6|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.4.7|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.4.8|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.4.9|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.5.1|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.5.2|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.5.3|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.5.4|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.5.5|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.5.6|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.6.1|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.6.2|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.6.3|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.6.4|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.6.5|4| +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.1|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.3|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.4|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.5|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.6|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.7|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.8|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.9|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.10|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.11|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.12|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.13|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.14|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.15|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.16|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.17|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.18|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.19|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.20|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.21|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.22|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.23|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.24|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.25|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.26|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.27|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.28|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.29|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.30|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.31|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.32|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.33|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.34|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.35|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.36|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.37|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.38|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.39|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.40|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.41|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.42|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.43|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.44|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.45|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.46|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.47|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.48|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.49|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.50|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.51|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.52|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.53|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.54|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.55|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.56|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.57|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.58|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.59|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.60|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.61|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.62|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.63|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.64|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.65|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.66|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.67|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.68|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.69|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.70|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.71|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.72|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.73|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.74|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.75|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.76|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.77|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.78|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.79|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.80|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.81|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.82|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.83|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.84|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.85|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.86|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.87|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.88|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.89|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.90|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.91|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.92|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.93|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.94|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.95|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.96|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.97|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.98|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.99|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.100|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.101|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.102|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.103|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.104|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.105|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.1|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.2|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.3|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.4|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.5|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.6|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.7|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.8|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.9|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.10|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.11|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.12|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.13|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.14|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.15|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.16|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.17|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.18|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.19|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.20|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.21|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.22|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.23|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.24|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.25|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.26|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.27|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.28|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.29|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.30|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.31|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.32|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.33|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.34|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.35|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.36|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.37|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.38|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.39|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.40|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.41|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.42|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.43|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.44|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.45|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.46|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.47|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.48|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.49|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.50|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.51|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.52|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.53|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.54|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.55|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.56|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.57|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.58|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.59|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.60|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.61|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.62|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.63|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.64|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.65|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.66|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.67|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.68|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.69|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.70|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.71|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.72|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.73|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.74|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.75|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.76|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.77|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.78|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.79|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.80|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.81|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.82|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.83|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.84|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.85|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.86|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.87|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.88|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.89|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.90|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.91|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.92|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.93|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.94|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.95|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.96|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.97|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.98|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.99|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.100|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.101|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.102|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.103|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.104|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.1|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.3|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.4|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.5|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.4.1|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.4.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.4.3|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.4.4|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.4.5|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.4.6|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.4.7|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.4.8|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.4.9|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.5.1|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.5.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.5.3|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.5.4|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.5.5|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.5.6|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.6.1|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.6.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.6.3|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.6.4|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.6.5|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.2|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.3|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.4|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.5|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.6|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.7|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.8|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.10|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.11|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.12|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.13|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.14|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.15|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.16|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.17|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.18|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.19|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.20|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.21|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.22|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.23|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.24|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.25|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.26|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.27|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.28|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.29|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.30|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.31|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.32|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.33|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.34|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.35|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.36|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.37|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.38|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.39|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.40|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.41|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.42|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.43|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.44|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.45|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.46|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.47|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.48|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.49|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.50|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.51|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.52|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.53|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.54|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.55|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.56|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.57|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.58|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.59|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.60|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.61|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.62|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.63|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.64|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.65|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.66|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.67|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.68|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.69|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.70|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.71|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.72|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.73|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.74|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.75|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.76|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.77|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.78|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.79|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.80|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.81|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.82|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.83|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.84|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.85|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.86|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.87|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.88|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.89|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.90|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.91|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.92|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.93|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.94|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.95|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.96|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.97|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.98|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.99|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.100|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.101|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.102|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.103|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.104|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.105|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.2|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.4|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.5|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.6|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.7|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.8|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.10|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.11|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.12|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.13|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.14|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.15|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.16|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.17|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.18|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.19|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.20|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.21|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.22|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.23|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.24|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.25|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.26|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.27|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.28|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.29|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.30|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.31|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.32|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.33|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.34|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.35|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.36|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.37|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.38|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.39|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.40|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.41|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.42|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.43|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.44|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.45|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.46|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.47|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.48|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.49|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.50|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.51|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.52|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.53|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.54|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.55|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.56|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.57|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.58|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.59|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.60|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.61|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.62|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.63|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.64|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.65|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.66|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.67|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.68|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.69|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.70|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.71|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.72|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.73|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.74|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.75|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.76|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.77|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.78|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.79|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.80|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.81|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.82|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.83|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.84|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.85|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.86|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.87|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.88|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.89|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.90|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.91|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.92|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.93|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.94|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.95|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.96|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.97|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.98|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.99|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.100|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.101|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.102|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.103|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.104|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.2|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.3|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.4|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.5|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.4.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.4.2|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.4.3|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.4.4|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.4.5|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.4.6|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.4.7|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.4.8|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.4.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.5.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.5.2|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.5.3|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.5.4|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.5.5|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.5.6|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.6.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.6.2|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.6.3|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.6.4|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.6.5|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.1|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.2|4|integer: min -4000, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.3|4|integer: min -1000, max 1000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.4|4|integer: min -3000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.5|4|integer: min -3000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.6|4|integer: min -3000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.7|4|integer: min -3000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.8|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.9|4|enum: 1,4,6,7,8,9,24,25 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.10|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.11|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.12|4|integer: min 0, max 1, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.13|4|integer: min 0, max 3, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.14|4|integer: min 0, max 120, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.15|4|enum: 1,12,13,27 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.16|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.17|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.18|4|integer: min 0, max 1, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.19|4|enum: 0,1,2,3 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.20|4|integer: min 0, max 1200, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.21|4|enum: 1,4,5,10,11 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.22|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.23|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.24|4|integer: min 0, max 1, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.25|4|enum: 0,1,2,3 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.26|4|integer: min 0, max 1200, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.27|4|enum: 1,4,5,10,11 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.28|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.29|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.30|4|enum: 0,1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.31|4|enum: 0,1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.32|4|enum: 1,4,5,10,11 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.33|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.34|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.35|4|enum: 0-15 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.36|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.37|4|enum: 1,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.38|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.39|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.40|4|integer: min 0, max 3000, scale *1, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.41|4|integer: min 0, max 2000, scale *1, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.42|4|integer: min 0, max 2000, scale *1, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.43|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.44|4|enum: 1,4,6,8 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.45|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.46|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.47|4|integer: min 0, max 3000, scale *1, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.48|4|integer: min 0, max 2000, scale *1, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.49|4|integer: min 0, max 2000, scale *1, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.50|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.51|4|enum: 1,4,6,8 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.52|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.53|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.54|4|integer: min -4000, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.55|4|integer: min -1000, max 1000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.56|4|integer: min -3000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.57|4|integer: min -3000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.58|4|integer: min -3000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.59|4|integer: min -3000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.60|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.61|4|enum: 1,4,6,7,8,9,24,25 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.62|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.63|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.64|4|integer: min 19000, max 30000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.65|4|integer: min 19000, max 30000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.66|4|integer: min 19000, max 30000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.67|4|integer: min 19000, max 24000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.68|4|integer: min 19000, max 24000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.69|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.70|4|enum: 1,4,6,7,8,9 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.71|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.72|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.73|4|integer: min 0, max 6000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.74|4|integer: min 0, max 6000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.75|4|integer: min 0, max 6000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.76|4|integer: min 0, max 6000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.77|4|integer: min 0, max 6000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.78|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.79|4|enum: 1,4,6,7,8,9 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.80|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.81|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.82|4|integer: min 0, max 4000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.83|4|integer: min 0, max 4000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.84|4|integer: min 0, max 4000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.85|4|integer: min 0, max 4000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.86|4|integer: min 0, max 4000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.87|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.88|4|enum: 1,4,6,7,8,9 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.89|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.90|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.91|4|integer: min 0, max 9999, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.92|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.93|4|enum: 4,9 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.94|4|enum: 1,4,6,8,27,30 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.95|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.96|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.97|4|integer: min 0, max 9999, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.98|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.99|4|enum: 4,9 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.100|4|enum: 1,4,6,8,27,30 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.101|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.102|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.103|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.104|4|enum: 1,4,5,19 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.105|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.1|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.2|4|enum: 4,5 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.3|4|enum: 1,2,3,4,5 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.4|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.5|4|regexp: ^([-_ a-zA-Z0-9]{0,10})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.6|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.7|4|regexp: ^([-_ a-zA-Z0-9]{0,4})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.8|4|regexp: ^([-_ a-zA-Z0-9]{0,6})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.9|4|enum: 5,6 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.10|4|integer: min 0, max 200, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.11|4|integer: min 6, max 16, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.12|4|integer: min 0, max 10, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.13|4|enum: 1,4,7,8,29 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.14|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.15|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.16|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.17|4|integer: min 0, max 99, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.18|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.19|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.20|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.21|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.22|4|integer: min 0, max 99, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.23|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.24|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.25|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.26|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.27|4|integer: min 0, max 99, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.28|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.29|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.30|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.31|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.32|4|integer: min 0, max 99, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.33|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.34|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.35|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.36|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.37|4|integer: min 0, max 99, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.38|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.39|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.40|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.41|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.42|4|integer: min 0, max 99, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.43|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.44|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.45|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.46|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.47|4|integer: min 0, max 99, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.48|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.49|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.50|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.51|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.52|4|integer: min 0, max 99, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.53|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.54|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.55|4|regexp: ^([-_ a-zA-Z0-9]{0,10})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.56|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.57|4|regexp: ^([-_ a-zA-Z0-9]{0,4})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.58|4|regexp: ^([-_ a-zA-Z0-9]{0,6})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.59|4|enum: 5,6 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.60|4|integer: min 0, max 200, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.61|4|integer: min 6, max 16, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.62|4|integer: min 0, max 10, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.63|4|enum: 1,4,7,8,29 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.64|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.65|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.66|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.67|4|integer: min 0, max 99, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.68|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.69|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.70|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.71|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.72|4|integer: min 0, max 99, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.73|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.74|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.75|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.76|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.77|4|integer: min 0, max 99, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.78|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.79|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.80|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.81|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.82|4|integer: min 0, max 99, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.83|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.84|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.85|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.86|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.87|4|integer: min 0, max 99, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.88|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.89|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.90|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.91|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.92|4|integer: min 0, max 99, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.93|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.94|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.95|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.96|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.97|4|integer: min 0, max 99, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.98|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.99|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.100|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.101|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.102|4|integer: min 0, max 99, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.103|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.104|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.1|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.2|4|integer: min 0, max 1, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.3|4|integer: min 0, max 120, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.4|4|enum: 1,4,5,24,25 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.5|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.4.1|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.4.2|4|integer: min -4000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.4.3|4|integer: min -4000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.4.4|4|integer: min -4000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.4.5|4|integer: min -4000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.4.6|4|integer: min -4000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.4.7|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.4.8|4|enum: 1,4,6,7,8,9 +1.3.6.1.4.1.2606.7.4.2.2.1.8.4.9|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.5.1|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.5.2|4|integer: min 0, max 1, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.5.3|4|integer: min 0, max 3, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.5.4|4|integer: min 0, max 120, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.5.5|4|enum: 1,12,13 +1.3.6.1.4.1.2606.7.4.2.2.1.8.5.6|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.6.1|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.6.2|4|integer: min 0, max 1, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.6.3|4|integer: min 0, max 120, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.6.4|4|enum: 1,4,5,24,25 +1.3.6.1.4.1.2606.7.4.2.2.1.8.6.5|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.2|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.3|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.4|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.5|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.6|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.7|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.8|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.10|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.11|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.12|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.13|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.14|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.15|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.16|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.17|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.18|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.19|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.20|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.21|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.22|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.23|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.24|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.25|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.26|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.27|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.28|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.29|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.30|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.31|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.32|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.33|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.34|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.35|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.36|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.37|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.38|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.39|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.40|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.41|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.42|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.43|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.44|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.45|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.46|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.47|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.48|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.49|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.50|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.51|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.52|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.53|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.54|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.55|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.56|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.57|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.58|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.59|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.60|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.61|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.62|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.63|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.64|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.65|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.66|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.67|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.68|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.69|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.70|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.71|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.72|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.73|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.74|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.75|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.76|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.77|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.78|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.79|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.80|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.81|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.82|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.83|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.84|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.85|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.86|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.87|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.88|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.89|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.90|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.91|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.92|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.93|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.94|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.95|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.96|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.97|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.98|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.99|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.100|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.101|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.102|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.103|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.104|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.105|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.2|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.4|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.5|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.6|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.7|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.8|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.10|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.11|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.12|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.13|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.14|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.15|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.16|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.17|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.18|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.19|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.20|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.21|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.22|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.23|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.24|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.25|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.26|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.27|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.28|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.29|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.30|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.31|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.32|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.33|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.34|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.35|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.36|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.37|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.38|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.39|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.40|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.41|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.42|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.43|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.44|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.45|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.46|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.47|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.48|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.49|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.50|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.51|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.52|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.53|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.54|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.55|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.56|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.57|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.58|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.59|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.60|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.61|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.62|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.63|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.64|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.65|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.66|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.67|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.68|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.69|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.70|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.71|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.72|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.73|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.74|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.75|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.76|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.77|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.78|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.79|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.80|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.81|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.82|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.83|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.84|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.85|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.86|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.87|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.88|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.89|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.90|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.91|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.92|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.93|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.94|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.95|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.96|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.97|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.98|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.99|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.100|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.101|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.102|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.103|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.104|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.2|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.3|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.4|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.5|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.4.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.4.2|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.4.3|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.4.4|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.4.5|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.4.6|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.4.7|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.4.8|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.4.9|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.5.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.5.2|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.5.3|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.5.4|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.5.5|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.5.6|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.6.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.6.2|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.6.3|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.6.4|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.6.5|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.1|4|Schranktemperatur +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.2|4|20.90 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.3|4|0.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.4|4|45.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.5|4|40.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.6|4|4.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.7|4|0.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.8|4|10.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.9|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.10|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.11|4|Tuer +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.12|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.13|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.14|4|1 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.15|4|Closed +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.16|4|192 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.17|4|Netzausfall Akkubetr +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.18|4|1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.19|4|0:Alarm / 1:OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.20|4|5.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.21|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.22|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.23|4|Akku defekt +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.24|4|1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.25|4|0:Alarm / 1:OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.26|4|5.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.27|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.28|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.29|4|Alarm Relay +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.30|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.31|4|0:Off / 1:On +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.32|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.33|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.34|4|V24 Unit +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.35|4|no SMS unit found +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.36|4|0 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.37|4|n.a. +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.38|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.39|4|CAN1 Current +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.40|4|0 mA +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.41|4|900 mA +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.42|4|700 mA +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.43|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.44|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.45|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.46|4|CAN2 Current +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.47|4|0 mA +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.48|4|900 mA +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.49|4|700 mA +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.50|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.51|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.52|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.53|4|Sys Temp +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.54|4|43.20 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.55|4|0.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.56|4|80.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.57|4|70.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.58|4|-25.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.59|4|-30.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.60|4|10.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.61|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.62|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.63|4|Supply 24V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.64|4|23.430 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.65|4|28.000 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.66|4|26.000 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.67|4|21.000 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.68|4|19.000 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.69|4|10.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.70|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.71|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.72|4|Supply 5V0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.73|4|5.000 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.74|4|5.500 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.75|4|5.400 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.76|4|4.600 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.77|4|4.500 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.78|4|2.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.79|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.80|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.81|4|Supply 3V3 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.82|4|3.300 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.83|4|3.630 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.84|4|3.560 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.85|4|3.040 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.86|4|2.970 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.87|4|2.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.88|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.89|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.90|4|USB-Stick +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.91|4|0.0 GB +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.92|4|0 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.93|4|-- +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.94|4|n.a. +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.95|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.96|4|SD-Card +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.97|4|0.0 GB +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.98|4|0 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.99|4|-- +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.100|4|n.a. +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.101|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.102|4|Webcam +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.103|4|-- +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.104|4|n.a. +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.105|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.1|4|Gateway +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.2|4|-- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.3|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.4|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.5|4|Steckd. Zubehoer +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.6|4|PSM8 C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.7|4|1.7 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.8|4|7863 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.9|4|Circuit 1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.10|4|1.4 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.11|4|16 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.12|4|0 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.13|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.14|4|68 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.15|4|Monitor +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.16|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.17|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.18|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.19|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.20|4|Plug 2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.21|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.22|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.23|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.24|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.25|4|Plug 3 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.26|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.27|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.28|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.29|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.30|4|Mitel 15 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.31|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.32|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.33|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.34|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.35|4|Mitel 16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.36|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.37|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.38|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.39|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.40|4|pfsense +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.41|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.42|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.43|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.44|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.45|4|frei +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.46|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.47|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.48|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.49|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.50|4|UBNT ES24 Switch +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.51|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.52|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.53|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.54|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.55|4|Server 10 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.56|4|PSM8 C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.57|4|1.7 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.58|4|7816 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.59|4|Circuit 1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.60|4|1.5 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.61|4|6 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.62|4|0 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.63|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.64|4|68 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.65|4|Plug 1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.66|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.67|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.68|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.69|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.70|4|Plug 2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.71|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.72|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.73|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.74|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.75|4|Plug 3 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.76|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.77|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.78|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.79|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.80|4|Plug 4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.81|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.82|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.83|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.84|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.85|4|Plug 5 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.86|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.87|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.88|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.89|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.90|4|Plug 6 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.91|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.92|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.93|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.94|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.95|4|Server 11 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.96|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.97|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.98|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.99|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.100|4|Server 115 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.101|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.102|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.103|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.104|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.1|4|Rauchm. SRV Schrank +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.2|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.3|4|0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.4|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.5|4|80 +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.1|4|Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.2|4|18.80 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.3|4|40.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.4|4|35.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.5|4|5.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.6|4|0.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.7|4|10.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.8|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.9|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.5.1|4|Tuer Stromversorgung +1.3.6.1.4.1.2606.7.4.2.2.1.10.5.2|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.5.3|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.5.4|4|3 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.5.5|4|Closed +1.3.6.1.4.1.2606.7.4.2.2.1.10.5.6|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.6.1|4|Rauchm. USV Schrank +1.3.6.1.4.1.2606.7.4.2.2.1.10.6.2|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.6.3|4|0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.6.4|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.6.5|4|80 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.2|2|2090 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.4|2|4500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.5|2|4000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.6|2|400 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.7|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.8|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.9|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.10|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.11|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.12|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.13|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.14|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.15|2|13 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.16|2|192 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.17|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.18|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.19|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.20|2|50 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.21|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.22|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.23|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.24|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.25|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.26|2|50 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.27|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.28|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.29|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.30|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.31|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.32|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.33|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.34|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.35|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.36|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.37|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.38|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.39|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.40|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.41|2|900 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.42|2|700 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.43|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.44|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.45|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.46|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.47|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.48|2|900 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.49|2|700 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.50|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.51|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.52|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.53|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.54|2|4320 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.55|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.56|2|8000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.57|2|7000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.58|2|-2500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.59|2|-3000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.60|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.61|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.62|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.63|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.64|2|23430 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.65|2|28000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.66|2|26000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.67|2|21000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.68|2|19000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.69|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.70|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.71|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.72|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.73|2|5000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.74|2|5500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.75|2|5400 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.76|2|4600 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.77|2|4500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.78|2|200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.79|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.80|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.81|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.82|2|3300 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.83|2|3630 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.84|2|3560 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.85|2|3040 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.86|2|2970 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.87|2|200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.88|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.89|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.90|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.91|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.92|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.93|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.94|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.95|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.96|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.97|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.98|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.99|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.100|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.101|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.102|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.103|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.104|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.105|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.2|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.3|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.4|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.5|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.6|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.7|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.8|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.9|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.10|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.11|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.12|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.13|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.14|2|68 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.15|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.16|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.17|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.18|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.19|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.20|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.21|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.22|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.23|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.24|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.25|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.26|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.27|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.28|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.29|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.30|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.31|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.32|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.33|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.34|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.35|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.36|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.37|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.38|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.39|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.40|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.41|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.42|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.43|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.44|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.45|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.46|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.47|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.48|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.49|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.50|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.51|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.52|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.53|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.54|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.55|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.56|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.57|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.58|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.59|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.60|2|15 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.61|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.62|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.63|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.64|2|68 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.65|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.66|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.67|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.68|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.69|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.70|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.71|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.72|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.73|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.74|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.75|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.76|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.77|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.78|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.79|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.80|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.81|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.82|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.83|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.84|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.85|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.86|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.87|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.88|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.89|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.90|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.91|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.92|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.93|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.94|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.95|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.96|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.97|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.98|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.99|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.100|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.101|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.102|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.103|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.104|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.2|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.4|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.5|2|80 +1.3.6.1.4.1.2606.7.4.2.2.1.11.4.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.4.2|2|1880 +1.3.6.1.4.1.2606.7.4.2.2.1.11.4.3|2|4000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.4.4|2|3500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.4.5|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.4.6|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.4.7|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.4.8|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.4.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.5.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.5.2|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.5.3|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.5.4|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.11.5.5|2|13 +1.3.6.1.4.1.2606.7.4.2.2.1.11.5.6|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.6.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.6.2|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.6.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.6.4|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.6.5|2|80 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.1|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.2|66|28184958 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.3|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.4|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.5|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.6|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.7|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.8|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.9|66|25296218 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.10|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.11|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.12|66|7182792 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.13|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.14|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.15|66|7182793 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.16|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.17|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.18|66|23111844 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.19|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.20|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.21|66|23111848 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.22|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.23|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.24|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.25|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.26|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.27|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.28|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.29|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.30|66|25296218 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.31|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.32|66|25296218 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.33|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.34|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.35|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.36|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.37|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.38|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.39|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.40|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.41|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.42|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.43|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.44|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.45|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.46|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.47|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.48|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.49|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.50|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.51|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.52|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.53|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.54|66|28184785 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.55|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.56|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.57|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.58|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.59|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.60|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.61|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.62|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.63|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.64|66|28185074 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.65|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.66|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.67|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.68|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.69|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.70|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.71|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.72|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.73|66|28185072 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.74|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.75|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.76|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.77|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.78|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.79|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.80|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.81|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.82|66|28184911 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.83|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.84|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.85|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.86|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.87|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.88|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.89|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.90|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.91|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.92|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.93|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.94|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.95|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.96|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.97|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.98|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.99|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.100|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.101|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.102|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.103|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.104|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.105|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.1|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.2|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.3|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.4|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.5|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.6|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.7|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.8|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.9|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.10|66|94120133 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.11|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.12|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.13|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.14|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.15|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.16|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.17|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.18|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.19|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.20|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.21|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.22|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.23|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.24|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.25|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.26|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.27|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.28|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.29|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.30|66|22503016 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.31|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.32|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.33|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.34|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.35|66|22503002 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.36|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.37|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.38|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.39|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.40|66|22502959 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.41|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.42|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.43|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.44|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.45|66|22502871 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.46|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.47|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.48|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.49|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.50|66|22502894 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.51|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.52|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.53|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.54|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.55|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.56|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.57|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.58|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.59|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.60|66|94120170 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.61|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.62|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.63|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.64|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.65|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.66|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.67|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.68|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.69|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.70|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.71|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.72|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.73|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.74|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.75|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.76|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.77|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.78|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.79|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.80|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.81|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.82|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.83|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.84|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.85|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.86|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.87|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.88|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.89|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.90|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.91|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.92|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.93|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.94|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.95|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.96|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.97|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.98|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.99|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.100|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.101|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.102|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.103|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.104|66|75 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.1|66|77 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.2|66|77 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.3|66|77 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.4|66|77 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.5|66|77 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.1|66|78 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.2|66|94119965 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.3|66|78 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.4|66|78 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.5|66|41654750 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.6|66|16348571 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.7|66|28516394 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.8|66|90684066 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.9|66|78 +1.3.6.1.4.1.2606.7.4.2.2.1.12.5.1|66|78 +1.3.6.1.4.1.2606.7.4.2.2.1.12.5.2|66|88543874 +1.3.6.1.4.1.2606.7.4.2.2.1.12.5.3|66|78 +1.3.6.1.4.1.2606.7.4.2.2.1.12.5.4|66|78 +1.3.6.1.4.1.2606.7.4.2.2.1.12.5.5|66|88543875 +1.3.6.1.4.1.2606.7.4.2.2.1.12.5.6|66|78 +1.3.6.1.4.1.2606.7.4.2.2.1.12.6.1|66|79 +1.3.6.1.4.1.2606.7.4.2.2.1.12.6.2|66|79 +1.3.6.1.4.1.2606.7.4.2.2.1.12.6.3|66|79 +1.3.6.1.4.1.2606.7.4.2.2.1.12.6.4|66|79 +1.3.6.1.4.1.2606.7.4.2.2.1.12.6.5|66|79 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.1|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.3|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.4|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.5|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.6|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.7|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.8|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.9|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.10|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.11|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.12|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.13|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.14|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.15|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.16|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.17|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.18|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.19|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.20|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.21|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.22|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.23|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.24|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.25|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.26|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.27|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.28|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.29|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.30|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.31|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.32|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.33|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.34|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.35|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.36|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.37|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.38|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.39|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.40|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.41|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.42|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.43|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.44|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.45|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.46|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.47|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.48|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.49|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.50|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.51|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.52|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.53|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.54|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.55|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.56|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.57|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.58|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.59|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.60|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.61|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.62|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.63|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.64|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.65|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.66|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.67|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.68|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.69|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.70|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.71|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.72|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.73|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.74|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.75|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.76|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.77|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.78|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.79|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.80|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.81|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.82|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.83|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.84|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.85|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.86|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.87|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.88|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.89|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.90|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.91|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.92|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.93|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.94|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.95|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.96|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.97|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.98|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.99|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.100|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.101|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.102|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.103|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.104|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.105|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.1|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.2|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.3|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.4|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.5|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.6|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.7|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.8|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.9|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.10|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.11|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.12|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.13|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.14|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.15|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.16|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.17|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.18|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.19|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.20|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.21|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.22|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.23|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.24|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.25|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.26|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.27|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.28|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.29|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.30|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.31|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.32|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.33|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.34|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.35|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.36|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.37|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.38|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.39|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.40|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.41|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.42|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.43|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.44|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.45|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.46|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.47|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.48|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.49|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.50|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.51|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.52|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.53|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.54|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.55|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.56|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.57|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.58|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.59|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.60|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.61|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.62|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.63|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.64|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.65|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.66|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.67|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.68|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.69|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.70|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.71|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.72|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.73|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.74|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.75|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.76|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.77|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.78|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.79|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.80|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.81|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.82|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.83|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.84|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.85|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.86|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.87|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.88|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.89|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.90|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.91|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.92|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.93|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.94|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.95|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.96|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.97|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.98|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.99|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.100|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.101|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.102|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.103|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.104|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.1|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.3|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.4|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.5|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.4.1|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.4.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.4.3|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.4.4|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.4.5|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.4.6|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.4.7|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.4.8|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.4.9|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.5.1|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.5.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.5.3|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.5.4|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.5.5|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.5.6|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.6.1|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.6.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.6.3|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.6.4|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.6.5|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.1|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.3|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.4|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.5|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.6|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.7|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.8|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.9|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.10|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.11|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.12|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.13|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.14|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.15|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.16|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.17|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.18|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.19|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.20|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.21|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.22|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.23|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.24|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.25|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.26|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.27|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.28|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.29|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.30|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.31|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.32|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.33|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.34|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.35|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.36|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.37|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.38|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.39|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.40|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.41|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.42|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.43|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.44|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.45|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.46|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.47|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.48|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.49|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.50|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.51|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.52|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.53|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.54|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.55|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.56|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.57|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.58|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.59|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.60|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.61|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.62|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.63|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.64|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.65|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.66|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.67|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.68|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.69|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.70|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.71|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.72|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.73|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.74|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.75|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.76|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.77|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.78|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.79|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.80|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.81|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.82|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.83|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.84|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.85|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.86|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.87|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.88|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.89|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.90|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.91|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.92|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.93|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.94|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.95|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.96|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.97|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.98|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.99|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.100|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.101|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.102|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.103|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.104|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.105|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.1|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.3|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.4|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.5|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.6|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.7|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.8|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.9|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.10|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.11|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.12|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.13|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.14|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.15|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.16|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.17|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.18|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.19|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.20|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.21|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.22|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.23|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.24|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.25|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.26|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.27|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.28|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.29|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.30|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.31|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.32|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.33|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.34|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.35|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.36|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.37|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.38|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.39|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.40|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.41|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.42|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.43|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.44|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.45|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.46|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.47|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.48|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.49|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.50|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.51|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.52|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.53|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.54|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.55|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.56|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.57|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.58|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.59|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.60|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.61|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.62|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.63|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.64|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.65|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.66|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.67|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.68|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.69|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.70|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.71|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.72|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.73|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.74|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.75|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.76|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.77|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.78|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.79|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.80|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.81|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.82|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.83|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.84|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.85|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.86|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.87|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.88|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.89|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.90|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.91|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.92|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.93|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.94|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.95|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.96|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.97|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.98|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.99|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.100|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.101|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.102|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.103|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.104|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.1|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.3|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.4|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.5|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.4.1|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.4.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.4.3|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.4.4|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.4.5|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.4.6|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.4.7|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.4.8|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.4.9|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.5.1|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.5.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.5.3|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.5.4|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.5.5|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.5.6|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.6.1|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.6.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.6.3|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.6.4|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.6.5|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.2|2|1001 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.4|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.5|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.6|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.7|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.8|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.10|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.11|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.12|2|1002 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.13|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.14|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.15|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.16|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.17|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.18|2|1003 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.19|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.20|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.21|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.22|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.23|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.24|2|1004 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.25|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.26|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.27|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.28|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.29|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.30|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.31|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.32|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.33|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.34|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.35|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.36|2|1005 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.37|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.38|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.39|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.40|2|1006 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.41|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.42|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.43|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.44|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.45|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.46|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.47|2|1007 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.48|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.49|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.50|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.51|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.52|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.53|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.54|2|1008 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.55|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.56|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.57|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.58|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.59|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.60|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.61|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.62|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.63|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.64|2|1009 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.65|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.66|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.67|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.68|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.69|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.70|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.71|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.72|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.73|2|1010 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.74|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.75|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.76|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.77|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.78|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.79|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.80|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.81|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.82|2|1011 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.83|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.84|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.85|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.86|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.87|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.88|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.89|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.90|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.91|2|1012 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.92|2|1013 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.93|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.94|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.95|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.96|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.97|2|1014 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.98|2|1015 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.99|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.100|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.101|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.102|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.103|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.104|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.105|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.2|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.4|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.5|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.6|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.7|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.8|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.10|2|101001 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.11|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.12|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.13|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.14|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.15|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.16|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.17|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.18|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.19|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.20|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.21|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.22|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.23|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.24|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.25|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.26|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.27|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.28|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.29|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.30|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.31|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.32|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.33|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.34|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.35|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.36|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.37|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.38|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.39|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.40|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.41|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.42|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.43|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.44|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.45|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.46|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.47|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.48|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.49|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.50|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.51|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.52|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.53|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.54|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.55|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.56|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.57|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.58|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.59|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.60|2|101002 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.61|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.62|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.63|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.64|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.65|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.66|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.67|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.68|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.69|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.70|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.71|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.72|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.73|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.74|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.75|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.76|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.77|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.78|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.79|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.80|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.81|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.82|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.83|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.84|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.85|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.86|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.87|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.88|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.89|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.90|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.91|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.92|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.93|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.94|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.95|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.96|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.97|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.98|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.99|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.100|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.101|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.102|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.103|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.104|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.2|2|201001 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.4|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.5|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.4.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.4.2|2|301001 +1.3.6.1.4.1.2606.7.4.2.2.1.15.4.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.4.4|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.4.5|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.4.6|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.4.7|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.4.8|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.4.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.5.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.5.2|2|401001 +1.3.6.1.4.1.2606.7.4.2.2.1.15.5.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.5.4|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.5.5|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.5.6|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.6.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.6.2|2|501001 +1.3.6.1.4.1.2606.7.4.2.2.1.15.6.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.6.4|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.6.5|2|0 +1.3.6.1.6.3.10.2.1.3.0|2|30265065 diff --git a/tests/snmpsim/rittal-cmc-iii-pu_compact.snmprec b/tests/snmpsim/rittal-cmc-iii-pu_compact.snmprec new file mode 100644 index 000000000000..5131dc01eeca --- /dev/null +++ b/tests/snmpsim/rittal-cmc-iii-pu_compact.snmprec @@ -0,0 +1,1784 @@ +1.3.6.1.2.1.1.1.0|4|Rittal CMC III PU Compact SN HW V6.02 - SW V3.15.70_4 +1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2606.7 +1.3.6.1.2.1.1.3.0|67|3026553485 +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|lo +1.3.6.1.2.1.2.2.1.2.2|4|can0 +1.3.6.1.2.1.2.2.1.2.3|4|can1 +1.3.6.1.2.1.2.2.1.2.4|4|eth0 +1.3.6.1.2.1.2.2.1.2.5|4|sit0 +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|1 +1.3.6.1.2.1.2.2.1.3.3|2|1 +1.3.6.1.2.1.2.2.1.3.4|2|6 +1.3.6.1.2.1.2.2.1.3.5|2|131 +1.3.6.1.2.1.2.2.1.4.1|2|65536 +1.3.6.1.2.1.2.2.1.4.2|2|16 +1.3.6.1.2.1.2.2.1.4.3|2|16 +1.3.6.1.2.1.2.2.1.4.4|2|1500 +1.3.6.1.2.1.2.2.1.4.5|2|1480 +1.3.6.1.2.1.2.2.1.6.1|4| +1.3.6.1.2.1.2.2.1.6.2|4| +1.3.6.1.2.1.2.2.1.6.3|4| +1.3.6.1.2.1.2.2.1.6.4|4x|00D09343EE06 +1.3.6.1.2.1.2.2.1.6.5|4| +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|2 +1.3.6.1.2.1.2.2.1.7.4|2|1 +1.3.6.1.2.1.2.2.1.7.5|2|2 +1.3.6.1.2.1.2.2.1.8.1|2|1 +1.3.6.1.2.1.2.2.1.8.2|2|1 +1.3.6.1.2.1.2.2.1.8.3|2|2 +1.3.6.1.2.1.2.2.1.8.4|2|1 +1.3.6.1.2.1.2.2.1.8.5|2|2 +1.3.6.1.2.1.2.2.1.9.1|67|0 +1.3.6.1.2.1.2.2.1.9.2|67|0 +1.3.6.1.2.1.2.2.1.9.3|67|0 +1.3.6.1.2.1.2.2.1.9.4|67|0 +1.3.6.1.2.1.2.2.1.9.5|67|0 +1.3.6.1.2.1.2.2.1.13.1|65|0 +1.3.6.1.2.1.2.2.1.13.2|65|0 +1.3.6.1.2.1.2.2.1.13.3|65|0 +1.3.6.1.2.1.2.2.1.13.4|65|11849 +1.3.6.1.2.1.2.2.1.13.5|65|0 +1.3.6.1.2.1.2.2.1.14.1|65|0 +1.3.6.1.2.1.2.2.1.14.2|65|0 +1.3.6.1.2.1.2.2.1.14.3|65|0 +1.3.6.1.2.1.2.2.1.14.4|65|136383 +1.3.6.1.2.1.2.2.1.14.5|65|0 +1.3.6.1.2.1.2.2.1.19.1|65|0 +1.3.6.1.2.1.2.2.1.19.2|65|0 +1.3.6.1.2.1.2.2.1.19.3|65|0 +1.3.6.1.2.1.2.2.1.19.4|65|0 +1.3.6.1.2.1.2.2.1.19.5|65|0 +1.3.6.1.2.1.2.2.1.20.1|65|0 +1.3.6.1.2.1.2.2.1.20.2|65|0 +1.3.6.1.2.1.2.2.1.20.3|65|0 +1.3.6.1.2.1.2.2.1.20.4|65|0 +1.3.6.1.2.1.2.2.1.20.5|65|0 +1.3.6.1.2.1.4.3.0|65|810391445 +1.3.6.1.2.1.4.4.0|65|2359 +1.3.6.1.2.1.4.5.0|65|1617 +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|164350049 +1.3.6.1.2.1.4.10.0|65|72425301 +1.3.6.1.2.1.4.11.0|65|0 +1.3.6.1.2.1.4.12.0|65|0 +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.10.15.109.161|2|4 +1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1 +1.3.6.1.2.1.4.20.1.3.10.15.109.161|64|255.255.0.0 +1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0 +1.3.6.1.2.1.4.22.1.2.4.10.15.1.11|4x|D6F4CBF73F4A +1.3.6.1.2.1.4.22.1.2.4.10.15.1.33|4x|26CAC38A60B1 +1.3.6.1.2.1.4.22.1.2.4.10.15.1.35|4x|82921029FAFB +1.3.6.1.2.1.4.22.1.2.4.10.15.109.1|4x|00032D3B9EAA +1.3.6.1.2.1.4.22.1.2.4.10.15.109.19|4x|00155D9B1701 +1.3.6.1.2.1.4.22.1.2.4.10.15.109.21|4x|00155D010598 +1.3.6.1.2.1.4.31.1.1.3.1|65|810389514 +1.3.6.1.2.1.4.31.1.1.3.2|65|508730 +1.3.6.1.2.1.4.31.1.1.4.1|70|810389514 +1.3.6.1.2.1.4.31.1.1.4.2|70|508730 +1.3.6.1.2.1.4.31.1.1.5.1|65|778162416 +1.3.6.1.2.1.4.31.1.1.5.2|65|75724452 +1.3.6.1.2.1.4.31.1.1.6.1|70|99562410224 +1.3.6.1.2.1.4.31.1.1.6.2|70|75724452 +1.3.6.1.2.1.4.31.1.1.7.1|65|2359 +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|0 +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|1617 +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|4 +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|508730 +1.3.6.1.2.1.4.31.1.1.18.1|65|164349217 +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|164349217 +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|72424860 +1.3.6.1.2.1.4.31.1.1.20.2|65|8 +1.3.6.1.2.1.4.31.1.1.21.1|70|72424860 +1.3.6.1.2.1.4.31.1.1.21.2|70|8 +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|72424860 +1.3.6.1.2.1.4.31.1.1.30.2|65|8 +1.3.6.1.2.1.4.31.1.1.31.1|70|72424860 +1.3.6.1.2.1.4.31.1.1.31.2|70|8 +1.3.6.1.2.1.4.31.1.1.32.1|65|2354388170 +1.3.6.1.2.1.4.31.1.1.32.2|65|544 +1.3.6.1.2.1.4.31.1.1.33.1|70|19534257354 +1.3.6.1.2.1.4.31.1.1.33.2|70|544 +1.3.6.1.2.1.4.31.1.1.34.1|65|74550 +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|74550 +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|2087472 +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|2087472 +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|8 +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|8 +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|544 +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|544 +1.3.6.1.2.1.4.31.1.1.42.1|65|91852632 +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|91852632 +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|60000 +1.3.6.1.2.1.4.31.1.1.47.2|66|60000 +1.3.6.1.2.1.4.34.1.3.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|1 +1.3.6.1.2.1.4.34.1.5.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|6|1.3.6.1.2.1.4.32.1.5.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1.128 +1.3.6.1.2.1.4.34.1.6.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1|2|2 +1.3.6.1.2.1.4.35.1.4.4.1.4.10.15.1.11|4x|D6F4CBF73F4A +1.3.6.1.2.1.4.35.1.4.4.1.4.10.15.1.33|4x|26CAC38A60B1 +1.3.6.1.2.1.4.35.1.4.4.1.4.10.15.1.35|4x|82921029FAFB +1.3.6.1.2.1.4.35.1.4.4.1.4.10.15.109.1|4x|00032D3B9EAA +1.3.6.1.2.1.4.35.1.4.4.1.4.10.15.109.19|4x|00155D9B1701 +1.3.6.1.2.1.4.35.1.4.4.1.4.10.15.109.21|4x|00155D010598 +1.3.6.1.2.1.5.1.0|65|3536468 +1.3.6.1.2.1.5.2.0|65|943 +1.3.6.1.2.1.5.3.0|65|0 +1.3.6.1.2.1.5.4.0|65|9 +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|0 +1.3.6.1.2.1.5.9.0|65|3536459 +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|0 +1.3.6.1.2.1.5.15.0|65|3535543 +1.3.6.1.2.1.5.16.0|65|0 +1.3.6.1.2.1.5.17.0|65|27 +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|0 +1.3.6.1.2.1.5.22.0|65|0 +1.3.6.1.2.1.5.23.0|65|3535516 +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.5.29.1.2.1|65|3536468 +1.3.6.1.2.1.5.29.1.2.2|65|0 +1.3.6.1.2.1.5.29.1.3.1|65|943 +1.3.6.1.2.1.5.29.1.3.2|65|0 +1.3.6.1.2.1.5.29.1.4.1|65|0 +1.3.6.1.2.1.5.29.1.4.2|65|8 +1.3.6.1.2.1.5.29.1.5.1|65|3535543 +1.3.6.1.2.1.5.29.1.5.2|65|0 +1.3.6.1.2.1.5.30.1.3.1.0|65|0 +1.3.6.1.2.1.5.30.1.3.1.3|65|9 +1.3.6.1.2.1.5.30.1.3.1.8|65|3536459 +1.3.6.1.2.1.5.30.1.3.2.133|65|0 +1.3.6.1.2.1.5.30.1.3.2.135|65|0 +1.3.6.1.2.1.5.30.1.3.2.143|65|0 +1.3.6.1.2.1.5.30.1.4.1.0|65|3535516 +1.3.6.1.2.1.5.30.1.4.1.3|65|27 +1.3.6.1.2.1.5.30.1.4.1.8|65|0 +1.3.6.1.2.1.5.30.1.4.2.133|65|3 +1.3.6.1.2.1.5.30.1.4.2.135|65|1 +1.3.6.1.2.1.5.30.1.4.2.143|65|4 +1.3.6.1.2.1.6.5.0|65|0 +1.3.6.1.2.1.6.6.0|65|41 +1.3.6.1.2.1.6.7.0|65|0 +1.3.6.1.2.1.6.8.0|65|0 +1.3.6.1.2.1.6.9.0|66|0 +1.3.6.1.2.1.6.10.0|65|2215 +1.3.6.1.2.1.6.11.0|65|4954 +1.3.6.1.2.1.6.12.0|65|8 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|6 +1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.21|66|1259 +1.3.6.1.2.1.7.1.0|65|68884664 +1.3.6.1.2.1.7.2.0|65|18 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|68884741 +1.3.6.1.2.1.11.1.0|65|66234716 +1.3.6.1.2.1.11.2.0|65|66234715 +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.8.0|65|0 +1.3.6.1.2.1.11.9.0|65|0 +1.3.6.1.2.1.11.10.0|65|0 +1.3.6.1.2.1.11.11.0|65|0 +1.3.6.1.2.1.11.12.0|65|0 +1.3.6.1.2.1.11.13.0|65|619947948 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|5141938 +1.3.6.1.2.1.11.16.0|65|16115 +1.3.6.1.2.1.11.17.0|65|0 +1.3.6.1.2.1.11.18.0|65|0 +1.3.6.1.2.1.11.19.0|65|0 +1.3.6.1.2.1.11.20.0|65|0 +1.3.6.1.2.1.11.21.0|65|12 +1.3.6.1.2.1.11.22.0|65|0 +1.3.6.1.2.1.11.24.0|65|0 +1.3.6.1.2.1.11.25.0|65|0 +1.3.6.1.2.1.11.26.0|65|0 +1.3.6.1.2.1.11.27.0|65|0 +1.3.6.1.2.1.11.28.0|65|66234717 +1.3.6.1.2.1.11.29.0|65|0 +1.3.6.1.2.1.11.30.0|2|2 +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.25.1.1.0|67|3026558792 +1.3.6.1.2.1.25.1.5.0|66|0 +1.3.6.1.2.1.25.1.6.0|66|63 +1.3.6.1.2.1.25.3.2.1.1.196608|2|196608 +1.3.6.1.2.1.25.3.2.1.1.262145|2|262145 +1.3.6.1.2.1.25.3.2.1.1.262146|2|262146 +1.3.6.1.2.1.25.3.2.1.1.262147|2|262147 +1.3.6.1.2.1.25.3.2.1.1.262148|2|262148 +1.3.6.1.2.1.25.3.2.1.1.262149|2|262149 +1.3.6.1.2.1.25.3.2.1.1.786432|2|786432 +1.3.6.1.2.1.25.3.2.1.2.196608|6|1.3.6.1.2.1.25.3.1.3 +1.3.6.1.2.1.25.3.2.1.2.262145|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262146|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262147|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262148|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.262149|6|1.3.6.1.2.1.25.3.1.4 +1.3.6.1.2.1.25.3.2.1.2.786432|6|1.3.6.1.2.1.25.3.1.12 +1.3.6.1.2.1.25.3.2.1.3.196608|4| +1.3.6.1.2.1.25.3.2.1.3.262145|4|network interface lo +1.3.6.1.2.1.25.3.2.1.3.262146|4|network interface can0 +1.3.6.1.2.1.25.3.2.1.3.262147|4|network interface can1 +1.3.6.1.2.1.25.3.2.1.3.262148|4|network interface eth0 +1.3.6.1.2.1.25.3.2.1.3.262149|4|network interface sit0 +1.3.6.1.2.1.25.3.2.1.3.786432|4|Guessing that there's a floating point co-processor +1.3.6.1.2.1.25.3.2.1.4.196608|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262145|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262146|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262147|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262148|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.262149|6|0.0 +1.3.6.1.2.1.25.3.2.1.4.786432|6|0.0 +1.3.6.1.2.1.25.3.2.1.5.196608|2|2 +1.3.6.1.2.1.25.3.2.1.5.262145|2|2 +1.3.6.1.2.1.25.3.2.1.5.262146|2|2 +1.3.6.1.2.1.25.3.2.1.5.262147|2|5 +1.3.6.1.2.1.25.3.2.1.5.262148|2|2 +1.3.6.1.2.1.25.3.2.1.5.262149|2|5 +1.3.6.1.2.1.25.3.2.1.5.786432|2|2 +1.3.6.1.2.1.25.3.2.1.6.196608|65|0 +1.3.6.1.2.1.25.3.2.1.6.262145|65|0 +1.3.6.1.2.1.25.3.2.1.6.262146|65|0 +1.3.6.1.2.1.25.3.2.1.6.262147|65|0 +1.3.6.1.2.1.25.3.2.1.6.262148|65|136383 +1.3.6.1.2.1.25.3.2.1.6.262149|65|0 +1.3.6.1.2.1.25.3.2.1.6.786432|65|0 +1.3.6.1.2.1.25.3.3.1.1.196608|6|0.0 +1.3.6.1.2.1.25.3.3.1.2.196608|2|22 +1.3.6.1.2.1.31.1.1.1.1.1|4|lo +1.3.6.1.2.1.31.1.1.1.1.2|4|can0 +1.3.6.1.2.1.31.1.1.1.1.3|4|can1 +1.3.6.1.2.1.31.1.1.1.1.4|4|eth0 +1.3.6.1.2.1.31.1.1.1.1.5|4|sit0 +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.4|65|0 +1.3.6.1.2.1.31.1.1.1.2.5|65|0 +1.3.6.1.2.1.31.1.1.1.3.1|65|0 +1.3.6.1.2.1.31.1.1.1.3.2|65|0 +1.3.6.1.2.1.31.1.1.1.3.3|65|0 +1.3.6.1.2.1.31.1.1.1.3.4|65|0 +1.3.6.1.2.1.31.1.1.1.3.5|65|0 +1.3.6.1.2.1.31.1.1.1.4.1|65|0 +1.3.6.1.2.1.31.1.1.1.4.2|65|0 +1.3.6.1.2.1.31.1.1.1.4.3|65|0 +1.3.6.1.2.1.31.1.1.1.4.4|65|0 +1.3.6.1.2.1.31.1.1.1.4.5|65|0 +1.3.6.1.2.1.31.1.1.1.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.4|65|0 +1.3.6.1.2.1.31.1.1.1.5.5|65|0 +1.3.6.1.2.1.31.1.1.1.6.1|70|351678092 +1.3.6.1.2.1.31.1.1.1.6.2|70|16 +1.3.6.1.2.1.31.1.1.1.6.3|70|0 +1.3.6.1.2.1.31.1.1.1.6.4|70|119789737362 +1.3.6.1.2.1.31.1.1.1.6.5|70|0 +1.3.6.1.2.1.31.1.1.1.7.1|70|2344889 +1.3.6.1.2.1.31.1.1.1.7.2|70|2 +1.3.6.1.2.1.31.1.1.1.7.3|70|0 +1.3.6.1.2.1.31.1.1.1.7.4|70|898755289 +1.3.6.1.2.1.31.1.1.1.7.5|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.4|70|0 +1.3.6.1.2.1.31.1.1.1.8.5|70|0 +1.3.6.1.2.1.31.1.1.1.9.1|70|0 +1.3.6.1.2.1.31.1.1.1.9.2|70|0 +1.3.6.1.2.1.31.1.1.1.9.3|70|0 +1.3.6.1.2.1.31.1.1.1.9.4|70|0 +1.3.6.1.2.1.31.1.1.1.9.5|70|0 +1.3.6.1.2.1.31.1.1.1.10.1|70|351678092 +1.3.6.1.2.1.31.1.1.1.10.2|70|0 +1.3.6.1.2.1.31.1.1.1.10.3|70|0 +1.3.6.1.2.1.31.1.1.1.10.4|70|20222898365 +1.3.6.1.2.1.31.1.1.1.10.5|70|0 +1.3.6.1.2.1.31.1.1.1.11.1|70|2344889 +1.3.6.1.2.1.31.1.1.1.11.2|70|0 +1.3.6.1.2.1.31.1.1.1.11.3|70|0 +1.3.6.1.2.1.31.1.1.1.11.4|70|71485876 +1.3.6.1.2.1.31.1.1.1.11.5|70|0 +1.3.6.1.2.1.31.1.1.1.12.1|70|0 +1.3.6.1.2.1.31.1.1.1.12.2|70|0 +1.3.6.1.2.1.31.1.1.1.12.3|70|0 +1.3.6.1.2.1.31.1.1.1.12.4|70|0 +1.3.6.1.2.1.31.1.1.1.12.5|70|0 +1.3.6.1.2.1.31.1.1.1.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.4|70|0 +1.3.6.1.2.1.31.1.1.1.13.5|70|0 +1.3.6.1.2.1.31.1.1.1.15.1|66|10 +1.3.6.1.2.1.31.1.1.1.15.2|66|0 +1.3.6.1.2.1.31.1.1.1.15.3|66|0 +1.3.6.1.2.1.31.1.1.1.15.4|66|100 +1.3.6.1.2.1.31.1.1.1.15.5|66|0 +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.4|2|1 +1.3.6.1.2.1.31.1.1.1.16.5|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|1 +1.3.6.1.2.1.31.1.1.1.17.3|2|1 +1.3.6.1.2.1.31.1.1.1.17.4|2|1 +1.3.6.1.2.1.31.1.1.1.17.5|2|1 +1.3.6.1.2.1.31.1.1.1.18.1|4| +1.3.6.1.2.1.31.1.1.1.18.2|4| +1.3.6.1.2.1.31.1.1.1.18.3|4| +1.3.6.1.2.1.31.1.1.1.18.4|4| +1.3.6.1.2.1.31.1.1.1.18.5|4| +1.3.6.1.2.1.31.1.1.1.19.1|67|0 +1.3.6.1.2.1.31.1.1.1.19.2|67|0 +1.3.6.1.2.1.31.1.1.1.19.3|67|0 +1.3.6.1.2.1.31.1.1.1.19.4|67|0 +1.3.6.1.2.1.31.1.1.1.19.5|67|0 +1.3.6.1.4.1.2606.7.2.1.0|2|1 +1.3.6.1.4.1.2606.7.2.4.0|4|V3.15.70_4 +1.3.6.1.4.1.2606.7.2.6.0|4| +1.3.6.1.4.1.2606.7.4.1.2.1.2.1|4|CMCIII-PU Compact +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.1|4|Temperature.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.2|4|Temperature.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.3|4|Temperature.Offset +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.4|4|Temperature.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.5|4|Temperature.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.6|4|Temperature.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.7|4|Temperature.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.8|4|Temperature.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.9|4|Temperature.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.10|4|Temperature.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.11|4|Access.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.12|4|Access.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.13|4|Access.Sensitivity +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.14|4|Access.Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.15|4|Access.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.16|4|Access.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.17|4|Input 1.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.18|4|Input 1.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.19|4|Input 1.Logic +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.20|4|Input 1.Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.21|4|Input 1.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.22|4|Input 1.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.23|4|Input 2.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.24|4|Input 2.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.25|4|Input 2.Logic +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.26|4|Input 2.Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.27|4|Input 2.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.28|4|Input 2.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.29|4|Output.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.30|4|Output.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.31|4|Output.Logic +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.32|4|Output.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.33|4|Output.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.34|4|System.V24 Port.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.35|4|System.V24 Port.Message +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.36|4|System.V24 Port.Signal +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.37|4|System.V24 Port.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.38|4|System.V24 Port.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.39|4|System.CAN1 Current.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.40|4|System.CAN1 Current.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.41|4|System.CAN1 Current.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.42|4|System.CAN1 Current.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.43|4|System.CAN1 Current.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.44|4|System.CAN1 Current.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.45|4|System.CAN1 Current.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.46|4|System.CAN2 Current.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.47|4|System.CAN2 Current.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.48|4|System.CAN2 Current.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.49|4|System.CAN2 Current.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.50|4|System.CAN2 Current.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.51|4|System.CAN2 Current.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.52|4|System.CAN2 Current.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.53|4|System.Temperature.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.54|4|System.Temperature.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.55|4|System.Temperature.Offset +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.56|4|System.Temperature.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.57|4|System.Temperature.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.58|4|System.Temperature.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.59|4|System.Temperature.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.60|4|System.Temperature.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.61|4|System.Temperature.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.62|4|System.Temperature.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.63|4|System.Supply 24V.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.64|4|System.Supply 24V.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.65|4|System.Supply 24V.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.66|4|System.Supply 24V.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.67|4|System.Supply 24V.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.68|4|System.Supply 24V.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.69|4|System.Supply 24V.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.70|4|System.Supply 24V.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.71|4|System.Supply 24V.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.72|4|System.Supply 5V0.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.73|4|System.Supply 5V0.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.74|4|System.Supply 5V0.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.75|4|System.Supply 5V0.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.76|4|System.Supply 5V0.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.77|4|System.Supply 5V0.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.78|4|System.Supply 5V0.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.79|4|System.Supply 5V0.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.80|4|System.Supply 5V0.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.81|4|System.Supply 3V3.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.82|4|System.Supply 3V3.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.83|4|System.Supply 3V3.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.84|4|System.Supply 3V3.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.85|4|System.Supply 3V3.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.86|4|System.Supply 3V3.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.87|4|System.Supply 3V3.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.88|4|System.Supply 3V3.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.89|4|System.Supply 3V3.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.90|4|Memory.USB-Stick.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.91|4|Memory.USB-Stick.Size +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.92|4|Memory.USB-Stick.Usage +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.93|4|Memory.USB-Stick.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.94|4|Memory.USB-Stick.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.95|4|Memory.USB-Stick.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.96|4|Memory.SD-Card.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.97|4|Memory.SD-Card.Size +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.98|4|Memory.SD-Card.Usage +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.99|4|Memory.SD-Card.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.100|4|Memory.SD-Card.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.101|4|Memory.SD-Card.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.102|4|Webcam.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.103|4|Webcam.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.104|4|Webcam.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.105|4|Webcam.Category +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.1|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.3|2|18 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.4|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.5|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.6|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.7|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.8|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.9|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.10|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.11|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.12|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.13|2|30 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.14|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.15|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.16|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.17|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.18|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.19|2|15 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.20|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.21|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.22|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.23|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.24|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.25|2|15 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.26|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.27|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.28|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.29|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.30|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.31|2|15 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.32|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.33|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.34|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.35|2|95 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.36|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.37|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.38|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.39|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.40|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.41|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.42|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.43|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.44|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.45|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.46|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.47|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.48|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.49|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.50|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.51|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.52|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.53|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.54|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.55|2|18 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.56|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.57|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.58|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.59|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.60|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.61|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.62|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.63|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.64|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.65|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.66|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.67|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.68|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.69|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.70|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.71|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.72|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.73|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.74|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.75|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.76|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.77|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.78|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.79|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.80|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.81|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.82|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.83|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.84|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.85|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.86|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.87|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.88|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.89|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.90|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.91|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.92|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.93|2|81 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.94|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.95|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.96|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.97|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.98|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.99|2|81 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.100|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.101|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.102|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.103|2|81 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.104|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.105|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.1|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.2|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.3|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.4|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.5|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.6|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.7|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.8|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.9|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.10|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.11|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.12|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.13|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.14|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.15|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.16|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.17|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.18|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.19|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.20|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.21|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.22|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.23|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.24|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.25|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.26|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.27|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.28|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.29|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.30|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.31|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.32|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.33|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.34|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.35|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.36|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.37|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.38|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.39|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.40|4|mA +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.41|4|mA +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.42|4|mA +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.43|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.44|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.45|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.46|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.47|4|mA +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.48|4|mA +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.49|4|mA +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.50|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.51|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.52|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.53|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.54|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.55|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.56|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.57|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.58|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.59|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.60|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.61|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.62|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.63|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.64|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.65|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.66|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.67|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.68|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.69|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.70|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.71|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.72|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.73|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.74|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.75|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.76|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.77|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.78|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.79|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.80|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.81|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.82|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.83|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.84|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.85|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.86|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.87|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.88|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.89|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.90|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.91|4|GB +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.92|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.93|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.94|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.95|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.96|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.97|4|GB +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.98|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.99|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.100|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.101|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.102|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.103|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.104|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.105|4| +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.1|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.3|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.4|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.5|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.6|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.7|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.8|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.9|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.10|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.11|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.12|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.13|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.14|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.15|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.16|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.17|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.18|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.19|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.20|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.21|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.22|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.23|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.24|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.25|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.26|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.27|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.28|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.29|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.30|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.31|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.32|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.33|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.34|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.35|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.36|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.37|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.38|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.39|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.40|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.41|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.42|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.43|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.44|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.45|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.46|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.47|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.48|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.49|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.50|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.51|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.52|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.53|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.54|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.55|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.56|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.57|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.58|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.59|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.60|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.61|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.62|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.63|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.64|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.65|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.66|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.67|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.68|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.69|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.70|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.71|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.72|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.73|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.74|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.75|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.76|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.77|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.78|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.79|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.80|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.81|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.82|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.83|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.84|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.85|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.86|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.87|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.88|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.89|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.90|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.91|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.92|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.93|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.94|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.95|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.96|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.97|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.98|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.99|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.100|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.101|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.102|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.103|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.104|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.105|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.2|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.3|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.4|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.5|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.6|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.7|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.8|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.10|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.11|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.12|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.13|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.14|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.15|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.16|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.17|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.18|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.19|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.20|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.21|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.22|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.23|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.24|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.25|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.26|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.27|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.28|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.29|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.30|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.31|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.32|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.33|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.34|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.35|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.36|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.37|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.38|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.39|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.40|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.41|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.42|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.43|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.44|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.45|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.46|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.47|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.48|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.49|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.50|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.51|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.52|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.53|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.54|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.55|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.56|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.57|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.58|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.59|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.60|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.61|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.62|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.63|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.64|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.65|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.66|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.67|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.68|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.69|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.70|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.71|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.72|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.73|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.74|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.75|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.76|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.77|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.78|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.79|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.80|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.81|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.82|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.83|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.84|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.85|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.86|2|-1000 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.87|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.88|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.89|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.90|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.91|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.92|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.93|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.94|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.95|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.96|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.97|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.98|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.99|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.100|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.101|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.102|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.103|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.104|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.105|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.1|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.2|4|integer: min -4000, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.3|4|integer: min -1000, max 1000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.4|4|integer: min -3000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.5|4|integer: min -3000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.6|4|integer: min -3000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.7|4|integer: min -3000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.8|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.9|4|enum: 1,4,6,7,8,9,24,25 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.10|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.11|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.12|4|integer: min 0, max 1, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.13|4|integer: min 0, max 3, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.14|4|integer: min 0, max 120, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.15|4|enum: 1,12,13,27 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.16|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.17|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.18|4|integer: min 0, max 1, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.19|4|enum: 0,1,2,3 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.20|4|integer: min 0, max 1200, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.21|4|enum: 1,4,5,10,11 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.22|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.23|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.24|4|integer: min 0, max 1, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.25|4|enum: 0,1,2,3 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.26|4|integer: min 0, max 1200, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.27|4|enum: 1,4,5,10,11 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.28|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.29|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.30|4|enum: 0,1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.31|4|enum: 0,1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.32|4|enum: 1,4,5,10,11 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.33|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.34|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.35|4|enum: 0-15 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.36|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.37|4|enum: 1,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.38|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.39|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.40|4|integer: min 0, max 3000, scale *1, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.41|4|integer: min 0, max 2000, scale *1, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.42|4|integer: min 0, max 2000, scale *1, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.43|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.44|4|enum: 1,4,6,8 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.45|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.46|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.47|4|integer: min 0, max 3000, scale *1, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.48|4|integer: min 0, max 2000, scale *1, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.49|4|integer: min 0, max 2000, scale *1, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.50|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.51|4|enum: 1,4,6,8 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.52|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.53|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.54|4|integer: min -4000, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.55|4|integer: min -1000, max 1000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.56|4|integer: min -3000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.57|4|integer: min -3000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.58|4|integer: min -3000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.59|4|integer: min -3000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.60|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.61|4|enum: 1,4,6,7,8,9,24,25 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.62|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.63|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.64|4|integer: min 19000, max 30000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.65|4|integer: min 19000, max 30000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.66|4|integer: min 19000, max 30000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.67|4|integer: min 19000, max 24000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.68|4|integer: min 19000, max 24000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.69|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.70|4|enum: 1,4,6,7,8,9 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.71|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.72|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.73|4|integer: min 0, max 6000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.74|4|integer: min 0, max 6000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.75|4|integer: min 0, max 6000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.76|4|integer: min 0, max 6000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.77|4|integer: min 0, max 6000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.78|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.79|4|enum: 1,4,6,7,8,9 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.80|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.81|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.82|4|integer: min 0, max 4000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.83|4|integer: min 0, max 4000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.84|4|integer: min 0, max 4000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.85|4|integer: min 0, max 4000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.86|4|integer: min 0, max 4000, scale /1000, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.87|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.88|4|enum: 1,4,6,7,8,9 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.89|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.90|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.91|4|integer: min 0, max 9999, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.92|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.93|4|enum: 4,9 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.94|4|enum: 1,4,6,8,27,30 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.95|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.96|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.97|4|integer: min 0, max 9999, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.98|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.99|4|enum: 4,9 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.100|4|enum: 1,4,6,8,27,30 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.101|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.102|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.103|4|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.104|4|enum: 1,4,5,19 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.105|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.2|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.3|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.4|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.5|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.6|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.7|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.8|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.10|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.11|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.12|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.13|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.14|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.15|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.16|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.17|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.18|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.19|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.20|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.21|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.22|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.23|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.24|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.25|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.26|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.27|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.28|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.29|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.30|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.31|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.32|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.33|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.34|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.35|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.36|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.37|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.38|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.39|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.40|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.41|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.42|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.43|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.44|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.45|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.46|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.47|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.48|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.49|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.50|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.51|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.52|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.53|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.54|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.55|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.56|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.57|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.58|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.59|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.60|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.61|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.62|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.63|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.64|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.65|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.66|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.67|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.68|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.69|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.70|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.71|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.72|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.73|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.74|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.75|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.76|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.77|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.78|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.79|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.80|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.81|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.82|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.83|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.84|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.85|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.86|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.87|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.88|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.89|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.90|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.91|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.92|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.93|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.94|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.95|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.96|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.97|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.98|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.99|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.100|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.101|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.102|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.103|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.104|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.105|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.1|4|Schranktemperatur +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.2|4|20.90 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.3|4|0.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.4|4|45.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.5|4|40.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.6|4|4.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.7|4|0.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.8|4|10.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.9|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.10|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.11|4|Tuer +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.12|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.13|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.14|4|1 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.15|4|Closed +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.16|4|192 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.17|4|Netzausfall Akkubetr +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.18|4|1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.19|4|0:Alarm / 1:OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.20|4|5.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.21|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.22|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.23|4|Akku defekt +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.24|4|1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.25|4|0:Alarm / 1:OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.26|4|5.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.27|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.28|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.29|4|Alarm Relay +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.30|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.31|4|0:Off / 1:On +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.32|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.33|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.34|4|V24 Unit +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.35|4|no SMS unit found +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.36|4|0 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.37|4|n.a. +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.38|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.39|4|CAN1 Current +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.40|4|0 mA +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.41|4|900 mA +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.42|4|700 mA +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.43|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.44|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.45|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.46|4|CAN2 Current +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.47|4|0 mA +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.48|4|900 mA +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.49|4|700 mA +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.50|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.51|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.52|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.53|4|Sys Temp +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.54|4|43.20 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.55|4|0.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.56|4|80.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.57|4|70.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.58|4|-25.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.59|4|-30.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.60|4|10.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.61|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.62|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.63|4|Supply 24V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.64|4|23.430 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.65|4|28.000 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.66|4|26.000 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.67|4|21.000 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.68|4|19.000 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.69|4|10.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.70|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.71|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.72|4|Supply 5V0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.73|4|5.000 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.74|4|5.500 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.75|4|5.400 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.76|4|4.600 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.77|4|4.500 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.78|4|2.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.79|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.80|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.81|4|Supply 3V3 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.82|4|3.300 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.83|4|3.630 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.84|4|3.560 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.85|4|3.040 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.86|4|2.970 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.87|4|2.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.88|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.89|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.90|4|USB-Stick +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.91|4|0.0 GB +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.92|4|0 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.93|4|-- +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.94|4|n.a. +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.95|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.96|4|SD-Card +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.97|4|0.0 GB +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.98|4|0 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.99|4|-- +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.100|4|n.a. +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.101|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.102|4|Webcam +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.103|4|-- +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.104|4|n.a. +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.105|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.2|2|2090 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.4|2|4500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.5|2|4000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.6|2|400 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.7|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.8|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.9|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.10|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.11|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.12|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.13|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.14|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.15|2|13 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.16|2|192 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.17|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.18|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.19|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.20|2|50 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.21|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.22|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.23|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.24|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.25|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.26|2|50 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.27|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.28|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.29|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.30|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.31|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.32|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.33|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.34|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.35|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.36|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.37|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.38|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.39|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.40|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.41|2|900 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.42|2|700 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.43|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.44|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.45|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.46|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.47|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.48|2|900 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.49|2|700 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.50|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.51|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.52|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.53|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.54|2|4320 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.55|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.56|2|8000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.57|2|7000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.58|2|-2500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.59|2|-3000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.60|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.61|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.62|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.63|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.64|2|23420 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.65|2|28000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.66|2|26000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.67|2|21000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.68|2|19000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.69|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.70|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.71|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.72|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.73|2|5000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.74|2|5500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.75|2|5400 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.76|2|4600 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.77|2|4500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.78|2|200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.79|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.80|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.81|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.82|2|3300 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.83|2|3630 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.84|2|3560 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.85|2|3040 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.86|2|2970 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.87|2|200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.88|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.89|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.90|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.91|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.92|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.93|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.94|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.95|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.96|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.97|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.98|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.99|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.100|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.101|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.102|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.103|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.104|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.105|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.1|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.2|66|28184958 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.3|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.4|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.5|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.6|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.7|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.8|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.9|66|25296218 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.10|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.11|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.12|66|7182792 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.13|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.14|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.15|66|7182793 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.16|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.17|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.18|66|23111844 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.19|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.20|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.21|66|23111848 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.22|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.23|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.24|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.25|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.26|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.27|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.28|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.29|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.30|66|25296218 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.31|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.32|66|25296218 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.33|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.34|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.35|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.36|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.37|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.38|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.39|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.40|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.41|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.42|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.43|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.44|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.45|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.46|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.47|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.48|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.49|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.50|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.51|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.52|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.53|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.54|66|28185506 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.55|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.56|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.57|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.58|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.59|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.60|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.61|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.62|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.63|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.64|66|28185498 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.65|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.66|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.67|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.68|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.69|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.70|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.71|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.72|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.73|66|28185487 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.74|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.75|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.76|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.77|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.78|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.79|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.80|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.81|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.82|66|28185509 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.83|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.84|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.85|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.86|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.87|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.88|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.89|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.90|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.91|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.92|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.93|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.94|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.95|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.96|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.97|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.98|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.99|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.100|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.101|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.102|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.103|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.104|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.105|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.1|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.3|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.4|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.5|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.6|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.7|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.8|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.9|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.10|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.11|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.12|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.13|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.14|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.15|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.16|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.17|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.18|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.19|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.20|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.21|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.22|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.23|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.24|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.25|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.26|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.27|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.28|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.29|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.30|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.31|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.32|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.33|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.34|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.35|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.36|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.37|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.38|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.39|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.40|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.41|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.42|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.43|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.44|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.45|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.46|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.47|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.48|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.49|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.50|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.51|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.52|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.53|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.54|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.55|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.56|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.57|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.58|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.59|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.60|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.61|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.62|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.63|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.64|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.65|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.66|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.67|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.68|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.69|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.70|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.71|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.72|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.73|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.74|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.75|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.76|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.77|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.78|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.79|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.80|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.81|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.82|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.83|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.84|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.85|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.86|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.87|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.88|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.89|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.90|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.91|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.92|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.93|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.94|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.95|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.96|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.97|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.98|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.99|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.100|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.101|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.102|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.103|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.104|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.105|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.1|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.2|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.3|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.4|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.5|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.6|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.7|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.8|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.9|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.10|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.11|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.12|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.13|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.14|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.15|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.16|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.17|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.18|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.19|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.20|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.21|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.22|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.23|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.24|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.25|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.26|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.27|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.28|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.29|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.30|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.31|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.32|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.33|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.34|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.35|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.36|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.37|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.38|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.39|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.40|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.41|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.42|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.43|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.44|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.45|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.46|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.47|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.48|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.49|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.50|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.51|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.52|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.53|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.54|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.55|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.56|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.57|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.58|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.59|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.60|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.61|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.62|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.63|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.64|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.65|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.66|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.67|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.68|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.69|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.70|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.71|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.72|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.73|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.74|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.75|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.76|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.77|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.78|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.79|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.80|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.81|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.82|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.83|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.84|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.85|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.86|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.87|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.88|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.89|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.90|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.91|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.92|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.93|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.94|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.95|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.96|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.97|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.98|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.99|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.100|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.101|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.102|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.103|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.104|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.105|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.1|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.2|2|1001 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.4|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.5|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.6|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.7|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.8|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.10|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.11|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.12|2|1002 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.13|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.14|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.15|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.16|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.17|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.18|2|1003 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.19|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.20|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.21|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.22|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.23|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.24|2|1004 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.25|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.26|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.27|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.28|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.29|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.30|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.31|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.32|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.33|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.34|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.35|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.36|2|1005 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.37|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.38|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.39|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.40|2|1006 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.41|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.42|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.43|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.44|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.45|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.46|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.47|2|1007 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.48|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.49|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.50|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.51|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.52|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.53|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.54|2|1008 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.55|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.56|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.57|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.58|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.59|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.60|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.61|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.62|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.63|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.64|2|1009 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.65|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.66|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.67|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.68|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.69|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.70|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.71|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.72|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.73|2|1010 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.74|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.75|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.76|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.77|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.78|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.79|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.80|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.81|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.82|2|1011 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.83|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.84|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.85|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.86|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.87|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.88|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.89|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.90|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.91|2|1012 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.92|2|1013 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.93|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.94|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.95|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.96|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.97|2|1014 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.98|2|1015 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.99|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.100|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.101|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.102|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.103|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.104|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.105|2|0 +1.3.6.1.6.3.10.2.1.3.0|2|30265534 From b028f3c0d5ccf4deec5a35bcb28538dae010af6d Mon Sep 17 00:00:00 2001 From: Denny Friebe Date: Wed, 28 Oct 2020 20:23:34 +0100 Subject: [PATCH 2/8] Rittal CMC III: Readd accidentally removed sysObjectID --- includes/definitions/rittal-lcp.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/definitions/rittal-lcp.yaml b/includes/definitions/rittal-lcp.yaml index 64b9f62ac6c2..9480cc8fc721 100644 --- a/includes/definitions/rittal-lcp.yaml +++ b/includes/definitions/rittal-lcp.yaml @@ -12,6 +12,8 @@ discovery_modules: processors: false discovery: - + sysObjectID: + - .1.3.6.1.4.1.2606.7 sysDescr: - 'Rittal LCP' sysDescr_regex: From 09ab6f44cab8ed48e20faae1aa577b15923698ce Mon Sep 17 00:00:00 2001 From: Denny Friebe Date: Wed, 28 Oct 2020 20:36:12 +0100 Subject: [PATCH 3/8] Rittal CMC III: Some small fixes --- includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php b/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php index d077fe322a98..e8dd0bd8df4b 100644 --- a/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php +++ b/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php @@ -21,7 +21,7 @@ * @copyright 2020 Denny Friebe * @author Denny Friebe */ -$cmc_iii_var_table = snmpwalk_cache_oid($device, 'cmcIIIVarTable', null, 'RITTAL-CMC-III-MIB', null); +$cmc_iii_var_table = snmpwalk_cache_oid($device, 'cmcIIIVarTable', [], 'RITTAL-CMC-III-MIB', null); $cmc_iii_sensors = []; foreach ($cmc_iii_var_table as $index => $entry) { @@ -34,7 +34,7 @@ switch ($var_type) { case 'description': // Every new sensor starts with their description. - if ($sensor_id == false) { + if ($sensor_id == 0) { $sensor_id = 1; } else { $sensor_id++; From 1ea6aec5697025536ab53ad17a6d142b1291666c Mon Sep 17 00:00:00 2001 From: Denny Friebe Date: Sat, 31 Oct 2020 01:13:33 +0100 Subject: [PATCH 4/8] Rittal CMC III: Use device serial number instead of the internal device id for state index naming - version, hardware and serial is now read via yaml - update test files --- .../discovery/rittal-cmc-iii-pu.yaml | 4 ++ .../definitions/discovery/rittal-lcp.yaml | 4 ++ .../sensors/rittal-cmc-iii-sensors.inc.php | 4 +- includes/polling/os/rittal-cmc-iii-pu.inc.php | 10 ---- includes/polling/os/rittal-lcp.inc.php | 10 ---- tests/data/rittal-cmc-iii-pu.json | 46 +++++++++---------- tests/data/rittal-cmc-iii-pu_compact.json | 30 ++++++------ 7 files changed, 48 insertions(+), 60 deletions(-) delete mode 100644 includes/polling/os/rittal-cmc-iii-pu.inc.php delete mode 100644 includes/polling/os/rittal-lcp.inc.php diff --git a/includes/definitions/discovery/rittal-cmc-iii-pu.yaml b/includes/definitions/discovery/rittal-cmc-iii-pu.yaml index 81f8e6bf616e..bd9e3a62bd80 100644 --- a/includes/definitions/discovery/rittal-cmc-iii-pu.yaml +++ b/includes/definitions/discovery/rittal-cmc-iii-pu.yaml @@ -1,5 +1,9 @@ mib: RITTAL-CMC-III-MIB modules: + os: + hardware: RITTAL-CMC-III-MIB::cmcIIIDevName.1 + serial: RITTAL-CMC-III-MIB::cmcIIIUnitSerial.0 + version: RITTAL-CMC-III-MIB::cmcIIIUnitFWRev.0 sensors: state: data: diff --git a/includes/definitions/discovery/rittal-lcp.yaml b/includes/definitions/discovery/rittal-lcp.yaml index 81f8e6bf616e..bd9e3a62bd80 100644 --- a/includes/definitions/discovery/rittal-lcp.yaml +++ b/includes/definitions/discovery/rittal-lcp.yaml @@ -1,5 +1,9 @@ mib: RITTAL-CMC-III-MIB modules: + os: + hardware: RITTAL-CMC-III-MIB::cmcIIIDevName.1 + serial: RITTAL-CMC-III-MIB::cmcIIIUnitSerial.0 + version: RITTAL-CMC-III-MIB::cmcIIIUnitFWRev.0 sensors: state: data: diff --git a/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php b/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php index e8dd0bd8df4b..f83c4abd7317 100644 --- a/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php +++ b/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php @@ -108,8 +108,8 @@ } if (isset($sensor_data['logic'])) { - // We need separate state indexes for each device because the sensor logic can vary from device to device depending on its configuration. So we add our device ID here. - $sensor_data['name'] = $sensor_data['name'] . '_' . $device['device_id']; + // We need separate state indexes for each device because the sensor logic can vary from device to device depending on its configuration. So we add our device serial here. + $sensor_data['name'] = $sensor_data['name'] . '_' . $device['serial']; $sensor_logic = [ [ 'value' => 0, diff --git a/includes/polling/os/rittal-cmc-iii-pu.inc.php b/includes/polling/os/rittal-cmc-iii-pu.inc.php deleted file mode 100644 index 0f8edcf6ee88..000000000000 --- a/includes/polling/os/rittal-cmc-iii-pu.inc.php +++ /dev/null @@ -1,10 +0,0 @@ - HW V6.02 - SW V3.15.70_4", "sysContact": null, - "version": null, - "hardware": null, + "version": "V3.15.70_4", + "hardware": "CMCIII-PU Compact", "features": null, "os": "rittal-cmc-iii-pu", "type": "environment", - "serial": null, + "serial": "", "icon": "rittal.svg", "location": "" } @@ -1436,7 +1436,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.12", "sensor_index": "2", - "sensor_type": "Access_55", + "sensor_type": "Access_", "sensor_descr": "Tuer", "group": null, "sensor_divisor": 1, @@ -1452,7 +1452,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Access_55" + "state_name": "Access_" }, { "sensor_deleted": 0, @@ -1460,7 +1460,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.5.2", "sensor_index": "37", - "sensor_type": "Access_55", + "sensor_type": "Access_", "sensor_descr": "Tuer Stromversorgung", "group": null, "sensor_divisor": 1, @@ -1476,7 +1476,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Access_55" + "state_name": "Access_" }, { "sensor_deleted": 0, @@ -1508,7 +1508,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.18", "sensor_index": "3", - "sensor_type": "Input 1_55", + "sensor_type": "Input 1_", "sensor_descr": "Netzausfall Akkubetr", "group": null, "sensor_divisor": 1, @@ -1524,7 +1524,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Input 1_55" + "state_name": "Input 1_" }, { "sensor_deleted": 0, @@ -1532,7 +1532,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.24", "sensor_index": "4", - "sensor_type": "Input 2_55", + "sensor_type": "Input 2_", "sensor_descr": "Akku defekt", "group": null, "sensor_divisor": 1, @@ -1548,7 +1548,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Input 2_55" + "state_name": "Input 2_" }, { "sensor_deleted": 0, @@ -1556,7 +1556,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.3.2", "sensor_index": "35", - "sensor_type": "Smoke_55", + "sensor_type": "Smoke_", "sensor_descr": "Rauchm. SRV Schrank", "group": null, "sensor_divisor": 1, @@ -1572,7 +1572,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Smoke_55" + "state_name": "Smoke_" }, { "sensor_deleted": 0, @@ -1580,7 +1580,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.6.2", "sensor_index": "38", - "sensor_type": "Smoke_55", + "sensor_type": "Smoke_", "sensor_descr": "Rauchm. USV Schrank", "group": null, "sensor_divisor": 1, @@ -1596,7 +1596,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Smoke_55" + "state_name": "Smoke_" }, { "sensor_deleted": 0, @@ -1745,14 +1745,14 @@ ], "state_indexes": [ { - "state_name": "Access_55", + "state_name": "Access_", "state_descr": "Closed", "state_draw_graph": 1, "state_value": 0, "state_generic_value": 0 }, { - "state_name": "Access_55", + "state_name": "Access_", "state_descr": "Open", "state_draw_graph": 1, "state_value": 1, @@ -1780,42 +1780,42 @@ "state_generic_value": 1 }, { - "state_name": "Input 1_55", + "state_name": "Input 1_", "state_descr": "Alarm", "state_draw_graph": 1, "state_value": 0, "state_generic_value": 0 }, { - "state_name": "Input 1_55", + "state_name": "Input 1_", "state_descr": "OK", "state_draw_graph": 1, "state_value": 1, "state_generic_value": 0 }, { - "state_name": "Input 2_55", + "state_name": "Input 2_", "state_descr": "Alarm", "state_draw_graph": 1, "state_value": 0, "state_generic_value": 0 }, { - "state_name": "Input 2_55", + "state_name": "Input 2_", "state_descr": "OK", "state_draw_graph": 1, "state_value": 1, "state_generic_value": 0 }, { - "state_name": "Smoke_55", + "state_name": "Smoke_", "state_descr": "OK", "state_draw_graph": 1, "state_value": 0, "state_generic_value": 0 }, { - "state_name": "Smoke_55", + "state_name": "Smoke_", "state_descr": "Alarm", "state_draw_graph": 1, "state_value": 1, diff --git a/tests/data/rittal-cmc-iii-pu_compact.json b/tests/data/rittal-cmc-iii-pu_compact.json index 0d24aa0f4955..7cd93122a499 100644 --- a/tests/data/rittal-cmc-iii-pu_compact.json +++ b/tests/data/rittal-cmc-iii-pu_compact.json @@ -7,12 +7,12 @@ "sysObjectID": ".1.3.6.1.4.1.2606.7", "sysDescr": "Rittal CMC III PU Compact SN HW V6.02 - SW V3.15.70_4", "sysContact": null, - "version": null, - "hardware": null, + "version": "V3.15.70_4", + "hardware": "CMCIII-PU Compact", "features": null, "os": "rittal-cmc-iii-pu", "type": "environment", - "serial": null, + "serial": "", "icon": "rittal.svg", "location": "" } @@ -1174,7 +1174,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.12", "sensor_index": "2", - "sensor_type": "Access_56", + "sensor_type": "Access_", "sensor_descr": "Tuer", "group": null, "sensor_divisor": 1, @@ -1190,7 +1190,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Access_56" + "state_name": "Access_" }, { "sensor_deleted": 0, @@ -1222,7 +1222,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.18", "sensor_index": "3", - "sensor_type": "Input 1_56", + "sensor_type": "Input 1_", "sensor_descr": "Netzausfall Akkubetr", "group": null, "sensor_divisor": 1, @@ -1238,7 +1238,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Input 1_56" + "state_name": "Input 1_" }, { "sensor_deleted": 0, @@ -1246,7 +1246,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.24", "sensor_index": "4", - "sensor_type": "Input 2_56", + "sensor_type": "Input 2_", "sensor_descr": "Akku defekt", "group": null, "sensor_divisor": 1, @@ -1262,7 +1262,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Input 2_56" + "state_name": "Input 2_" }, { "sensor_deleted": 0, @@ -1387,14 +1387,14 @@ ], "state_indexes": [ { - "state_name": "Access_56", + "state_name": "Access_", "state_descr": "Closed", "state_draw_graph": 1, "state_value": 0, "state_generic_value": 0 }, { - "state_name": "Access_56", + "state_name": "Access_", "state_descr": "Open", "state_draw_graph": 1, "state_value": 1, @@ -1422,28 +1422,28 @@ "state_generic_value": 1 }, { - "state_name": "Input 1_56", + "state_name": "Input 1_", "state_descr": "Alarm", "state_draw_graph": 1, "state_value": 0, "state_generic_value": 0 }, { - "state_name": "Input 1_56", + "state_name": "Input 1_", "state_descr": "OK", "state_draw_graph": 1, "state_value": 1, "state_generic_value": 0 }, { - "state_name": "Input 2_56", + "state_name": "Input 2_", "state_descr": "Alarm", "state_draw_graph": 1, "state_value": 0, "state_generic_value": 0 }, { - "state_name": "Input 2_56", + "state_name": "Input 2_", "state_descr": "OK", "state_draw_graph": 1, "state_value": 1, From 1bf10101016b191c562451c1098241951636fcd6 Mon Sep 17 00:00:00 2001 From: Denny Friebe Date: Sat, 31 Oct 2020 02:09:33 +0100 Subject: [PATCH 5/8] Rittal CMC III: Check if the serial number is available --- .../discovery/sensors/rittal-cmc-iii-sensors.inc.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php b/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php index f83c4abd7317..bc531a2f464c 100644 --- a/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php +++ b/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php @@ -91,6 +91,13 @@ } } +//At first device discovery the serial number is not set. But we need this in the next step for our state indexes. +if (!$device['serial']) { + $serial_number = snmp_get($device, 'cmcIIIUnitSerial.0', '-Oqv', 'RITTAL-CMC-III-MIB'); +} else { + $serial_number = $device['serial']; +} + foreach ($cmc_iii_sensors as $sensor_id => $sensor_data) { // Some sensors provide either no useful data at all or only partially useful data. if (! isset($sensor_data['oid']) || $sensor_data['name'] == 'System V24 Port' || $sensor_data['name'] == 'Memory USB-Stick' || $sensor_data['name'] == 'Memory SD-Card' || $sensor_data['name'] == 'Login') { @@ -109,7 +116,7 @@ if (isset($sensor_data['logic'])) { // We need separate state indexes for each device because the sensor logic can vary from device to device depending on its configuration. So we add our device serial here. - $sensor_data['name'] = $sensor_data['name'] . '_' . $device['serial']; + $sensor_data['name'] = $sensor_data['name'] . '_' . $serial_number; $sensor_logic = [ [ 'value' => 0, From 28b6161a732bc1a418bcea771756da0545397cd3 Mon Sep 17 00:00:00 2001 From: Denny Friebe Date: Sat, 31 Oct 2020 02:15:47 +0100 Subject: [PATCH 6/8] Rittal CMC III: Update test data --- tests/data/rittal-cmc-iii-pu.json | 40 +++++++++++------------ tests/data/rittal-cmc-iii-pu_compact.json | 24 +++++++------- 2 files changed, 32 insertions(+), 32 deletions(-) diff --git a/tests/data/rittal-cmc-iii-pu.json b/tests/data/rittal-cmc-iii-pu.json index d43250538818..72e1e2b458fc 100644 --- a/tests/data/rittal-cmc-iii-pu.json +++ b/tests/data/rittal-cmc-iii-pu.json @@ -1436,7 +1436,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.12", "sensor_index": "2", - "sensor_type": "Access_", + "sensor_type": "Access_", "sensor_descr": "Tuer", "group": null, "sensor_divisor": 1, @@ -1452,7 +1452,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Access_" + "state_name": "Access_" }, { "sensor_deleted": 0, @@ -1460,7 +1460,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.5.2", "sensor_index": "37", - "sensor_type": "Access_", + "sensor_type": "Access_", "sensor_descr": "Tuer Stromversorgung", "group": null, "sensor_divisor": 1, @@ -1476,7 +1476,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Access_" + "state_name": "Access_" }, { "sensor_deleted": 0, @@ -1508,7 +1508,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.18", "sensor_index": "3", - "sensor_type": "Input 1_", + "sensor_type": "Input 1_", "sensor_descr": "Netzausfall Akkubetr", "group": null, "sensor_divisor": 1, @@ -1524,7 +1524,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Input 1_" + "state_name": "Input 1_" }, { "sensor_deleted": 0, @@ -1532,7 +1532,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.24", "sensor_index": "4", - "sensor_type": "Input 2_", + "sensor_type": "Input 2_", "sensor_descr": "Akku defekt", "group": null, "sensor_divisor": 1, @@ -1548,7 +1548,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Input 2_" + "state_name": "Input 2_" }, { "sensor_deleted": 0, @@ -1556,7 +1556,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.3.2", "sensor_index": "35", - "sensor_type": "Smoke_", + "sensor_type": "Smoke_", "sensor_descr": "Rauchm. SRV Schrank", "group": null, "sensor_divisor": 1, @@ -1572,7 +1572,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Smoke_" + "state_name": "Smoke_" }, { "sensor_deleted": 0, @@ -1580,7 +1580,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.6.2", "sensor_index": "38", - "sensor_type": "Smoke_", + "sensor_type": "Smoke_", "sensor_descr": "Rauchm. USV Schrank", "group": null, "sensor_divisor": 1, @@ -1596,7 +1596,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Smoke_" + "state_name": "Smoke_" }, { "sensor_deleted": 0, @@ -1745,14 +1745,14 @@ ], "state_indexes": [ { - "state_name": "Access_", + "state_name": "Access_", "state_descr": "Closed", "state_draw_graph": 1, "state_value": 0, "state_generic_value": 0 }, { - "state_name": "Access_", + "state_name": "Access_", "state_descr": "Open", "state_draw_graph": 1, "state_value": 1, @@ -1780,42 +1780,42 @@ "state_generic_value": 1 }, { - "state_name": "Input 1_", + "state_name": "Input 1_", "state_descr": "Alarm", "state_draw_graph": 1, "state_value": 0, "state_generic_value": 0 }, { - "state_name": "Input 1_", + "state_name": "Input 1_", "state_descr": "OK", "state_draw_graph": 1, "state_value": 1, "state_generic_value": 0 }, { - "state_name": "Input 2_", + "state_name": "Input 2_", "state_descr": "Alarm", "state_draw_graph": 1, "state_value": 0, "state_generic_value": 0 }, { - "state_name": "Input 2_", + "state_name": "Input 2_", "state_descr": "OK", "state_draw_graph": 1, "state_value": 1, "state_generic_value": 0 }, { - "state_name": "Smoke_", + "state_name": "Smoke_", "state_descr": "OK", "state_draw_graph": 1, "state_value": 0, "state_generic_value": 0 }, { - "state_name": "Smoke_", + "state_name": "Smoke_", "state_descr": "Alarm", "state_draw_graph": 1, "state_value": 1, diff --git a/tests/data/rittal-cmc-iii-pu_compact.json b/tests/data/rittal-cmc-iii-pu_compact.json index 7cd93122a499..9f069ff82035 100644 --- a/tests/data/rittal-cmc-iii-pu_compact.json +++ b/tests/data/rittal-cmc-iii-pu_compact.json @@ -1174,7 +1174,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.12", "sensor_index": "2", - "sensor_type": "Access_", + "sensor_type": "Access_", "sensor_descr": "Tuer", "group": null, "sensor_divisor": 1, @@ -1190,7 +1190,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Access_" + "state_name": "Access_" }, { "sensor_deleted": 0, @@ -1222,7 +1222,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.18", "sensor_index": "3", - "sensor_type": "Input 1_", + "sensor_type": "Input 1_", "sensor_descr": "Netzausfall Akkubetr", "group": null, "sensor_divisor": 1, @@ -1238,7 +1238,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Input 1_" + "state_name": "Input 1_" }, { "sensor_deleted": 0, @@ -1246,7 +1246,7 @@ "poller_type": "snmp", "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.24", "sensor_index": "4", - "sensor_type": "Input 2_", + "sensor_type": "Input 2_", "sensor_descr": "Akku defekt", "group": null, "sensor_divisor": 1, @@ -1262,7 +1262,7 @@ "entPhysicalIndex_measured": null, "sensor_prev": null, "user_func": null, - "state_name": "Input 2_" + "state_name": "Input 2_" }, { "sensor_deleted": 0, @@ -1387,14 +1387,14 @@ ], "state_indexes": [ { - "state_name": "Access_", + "state_name": "Access_", "state_descr": "Closed", "state_draw_graph": 1, "state_value": 0, "state_generic_value": 0 }, { - "state_name": "Access_", + "state_name": "Access_", "state_descr": "Open", "state_draw_graph": 1, "state_value": 1, @@ -1422,28 +1422,28 @@ "state_generic_value": 1 }, { - "state_name": "Input 1_", + "state_name": "Input 1_", "state_descr": "Alarm", "state_draw_graph": 1, "state_value": 0, "state_generic_value": 0 }, { - "state_name": "Input 1_", + "state_name": "Input 1_", "state_descr": "OK", "state_draw_graph": 1, "state_value": 1, "state_generic_value": 0 }, { - "state_name": "Input 2_", + "state_name": "Input 2_", "state_descr": "Alarm", "state_draw_graph": 1, "state_value": 0, "state_generic_value": 0 }, { - "state_name": "Input 2_", + "state_name": "Input 2_", "state_descr": "OK", "state_draw_graph": 1, "state_value": 1, From 6421ed747f6c2de6d610ef6d9270e07ed5203d47 Mon Sep 17 00:00:00 2001 From: Denny Friebe Date: Sat, 31 Oct 2020 02:19:18 +0100 Subject: [PATCH 7/8] Rittal CMC III: Update unset --- includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php b/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php index bc531a2f464c..0ebd6ed3e954 100644 --- a/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php +++ b/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php @@ -92,7 +92,7 @@ } //At first device discovery the serial number is not set. But we need this in the next step for our state indexes. -if (!$device['serial']) { +if (! $device['serial']) { $serial_number = snmp_get($device, 'cmcIIIUnitSerial.0', '-Oqv', 'RITTAL-CMC-III-MIB'); } else { $serial_number = $device['serial']; @@ -154,4 +154,4 @@ } } -unset($cmc_iii_var_table, $cmc_iii_sensors, $index, $entry, $var_name_parts, $sensor_name, $var_type, $sensor_id, $sensor_logic, $unit, $type, $sensor_data); +unset($cmc_iii_var_table, $cmc_iii_sensors, $index, $entry, $var_name_parts, $sensor_name, $var_type, $sensor_id, $sensor_logic, $unit, $type, $sensor_data, $serial_number); From 0a360fa7edb2328fe1691a5344029f000fa860c6 Mon Sep 17 00:00:00 2001 From: Denny Friebe Date: Sat, 31 Oct 2020 02:33:21 +0100 Subject: [PATCH 8/8] Rittal CMC III: Remove space in yaml --- includes/definitions/rittal-lcp.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/definitions/rittal-lcp.yaml b/includes/definitions/rittal-lcp.yaml index 9480cc8fc721..cce552a05425 100644 --- a/includes/definitions/rittal-lcp.yaml +++ b/includes/definitions/rittal-lcp.yaml @@ -12,7 +12,7 @@ discovery_modules: processors: false discovery: - - sysObjectID: + sysObjectID: - .1.3.6.1.4.1.2606.7 sysDescr: - 'Rittal LCP'