diff --git a/doc/Developing/os/Initial-Detection.md b/doc/Developing/os/Initial-Detection.md index 352b736b7e..05d6538cd5 100644 --- a/doc/Developing/os/Initial-Detection.md +++ b/doc/Developing/os/Initial-Detection.md @@ -165,6 +165,8 @@ $hardware = "Juniper " . preg_replace('/[\r\n\"]+/', ' ', snmp_get($device, "pro `$serial`: The main serial number of the device. +`$location`: Overrides sysLocation of the device. + ### MIBs If the device has MIBs available and you use it in the detection then you can add these in. It is highly diff --git a/includes/polling/core.inc.php b/includes/polling/core.inc.php index 4f9461ab03..7986dca851 100644 --- a/includes/polling/core.inc.php +++ b/includes/polling/core.inc.php @@ -58,19 +58,12 @@ if ($uptime != 0 && Config::get("os.{$device['os']}.bad_uptime") !== true) { $device['uptime'] = $uptime; }//end if -$poll_device['sysLocation'] = str_replace('"', '', $poll_device['sysLocation']); - -// Rewrite sysLocation if there is a mapping array (database too?) -if (!empty($poll_device['sysLocation']) && (is_array(Config::get('location_map')) || is_array(Config::get('location_map_regex')) || is_array(Config::get('location_map_regex_sub')))) { - $poll_device['sysLocation'] = rewrite_location($poll_device['sysLocation']); -} +set_device_location($poll_device['sysLocation'], $device, $update_array); $poll_device['sysContact'] = str_replace('"', '', $poll_device['sysContact']); -foreach (array('sysLocation', 'sysContact') as $elem) { - if ($poll_device[$elem] == 'not set') { - $poll_device[$elem] = ''; - } +if ($poll_device['sysContact'] == 'not set') { + $poll_device['sysContact'] = ''; } // Save results of various polled values to the database @@ -82,23 +75,4 @@ foreach (array('sysContact', 'sysObjectID', 'sysName', 'sysDescr') as $elem) { } } -if ($device['override_sysLocation'] == 0 && $poll_device['sysLocation']) { - /** @var Location $location */ - $location = Location::firstOrCreate(['location' => $poll_device['sysLocation']]); - - if ($device['location_id'] != $location->id) { - $device['location_id'] = $location->id; - $update_array['location_id'] = $location->id; - log_event('Location -> ' . $location->location, $device, 'system', 3); - } -} - -// make sure the location has coordinates -if (Config::get('geoloc.latlng', true) && ($location || $location = Location::find($device['location_id']))) { - if (!$location->hasCoordinates()) { - $location->lookupCoordinates(); - $location->save(); - } -} - unset($snmpdata, $uptime_data, $uptime, $tags, $poll_device); diff --git a/includes/polling/functions.inc.php b/includes/polling/functions.inc.php index 55053edf67..b879387efb 100644 --- a/includes/polling/functions.inc.php +++ b/includes/polling/functions.inc.php @@ -9,6 +9,7 @@ use LibreNMS\Exceptions\JsonAppBlankJsonException; use LibreNMS\Exceptions\JsonAppMissingKeysException; use LibreNMS\Exceptions\JsonAppWrongVersionException; use LibreNMS\Exceptions\JsonAppExtendErroredException; +use App\Models\Location; function bulk_sensor_snmpget($device, $sensors) { @@ -782,3 +783,41 @@ function data_flatten($array, $prefix = '', $joiner = '_') return $return; } + +/** + * @param string $sysLocation location override (instead of sysLocation.0) + * @param &$device + * @param &$update_array + */ +function set_device_location($sysLocation, &$device, &$update_array) +{ + $sysLocation = str_replace('"', '', $sysLocation); + + // Rewrite sysLocation if there is a mapping array (database too?) + if (!empty($sysLocation) && (is_array(Config::get('location_map')) || is_array(Config::get('location_map_regex')) || is_array(Config::get('location_map_regex_sub')))) { + $sysLocation = rewrite_location($sysLocation); + } + + if ($sysLocation == 'not set') { + $sysLocation = ''; + } + + if ($device['override_sysLocation'] == 0 && $sysLocation) { + /** @var Location $location */ + $location = Location::firstOrCreate(['location' => $sysLocation]); + + if ($device['location_id'] != $location->id) { + $device['location_id'] = $location->id; + $update_array['location_id'] = $location->id; + log_event('Location -> ' . $location->location, $device, 'system', 3); + } + } + + // make sure the location has coordinates + if (Config::get('geoloc.latlng', true) && ($location || $location = Location::find($device['location_id']))) { + if (!$location->hasCoordinates()) { + $location->lookupCoordinates(); + $location->save(); + } + } +} diff --git a/includes/polling/os.inc.php b/includes/polling/os.inc.php index 176b321f62..60c0943ea3 100644 --- a/includes/polling/os.inc.php +++ b/includes/polling/os.inc.php @@ -31,7 +31,11 @@ if ($serial != $device['serial']) { } update_device_logo($device); +if (!empty($location)) { + set_device_location($location, $device, $update_array); +} +echo 'Location: ' . $location . PHP_EOL; echo 'Hardware: ' . $hardware . PHP_EOL; echo 'Version: ' . $version . PHP_EOL; echo 'Features: ' . $features . PHP_EOL; diff --git a/includes/polling/os/enexus.inc.php b/includes/polling/os/enexus.inc.php index f73116dd8e..e43598168d 100644 --- a/includes/polling/os/enexus.inc.php +++ b/includes/polling/os/enexus.inc.php @@ -23,6 +23,7 @@ * @author BArry O'Donovan */ +$location = snmp_get($device, 'powerSystemSite.0', '-Ovqa', 'SP2-MIB'); $hardware = snmp_get($device, 'powerSystemModel.0', '-Ovqa', 'SP2-MIB'); $sw_version1 = snmp_get($device, 'controlUnitSwVersion.1', '-Ovqa', 'SP2-MIB'); $sw_version2 = snmp_get($device, 'controlUnitSwVersion.2', '-Ovqa', 'SP2-MIB'); diff --git a/includes/polling/os/poweralert.inc.php b/includes/polling/os/poweralert.inc.php index 41349cef50..e0c5d41580 100644 --- a/includes/polling/os/poweralert.inc.php +++ b/includes/polling/os/poweralert.inc.php @@ -8,7 +8,7 @@ $hardware = snmp_get($device, 'upsIdentModel.0', '-Ovq', 'UPS-MIB'); $hardware = preg_split('/TRIPP\ LITE/', $hardware); $hardware = $hardware[1]; -$sysLocation = trim(snmp_get($device, '.1.3.6.1.4.1.850.10.2.2.1.12.1', '-Ovq', 'TRIPPLITE-MIB'), '"'); +$location = trim(snmp_get($device, '.1.3.6.1.4.1.850.10.2.2.1.12.1', '-Ovq', 'TRIPPLITE-MIB'), '"'); $sysName = trim(snmp_get($device, '.1.3.6.1.2.1.33.1.1.5.0', '-Ovq', 'TRIPPLITE-MIB'), '"'); $serial = trim(snmp_get($device, '.1.3.6.1.4.1.850.100.1.1.4.0', '-Ovq', 'TRIPPLITE-MIB'), '"'); $version = snmp_get($device, 'upsIdentAgentSoftwareVersion.0', '-Ovq', 'UPS-MIB'); diff --git a/tests/data/enexus.json b/tests/data/enexus.json index 01b9f959b7..0432211f00 100644 --- a/tests/data/enexus.json +++ b/tests/data/enexus.json @@ -32,7 +32,7 @@ "type": "power", "serial": "183909001102", "icon": "eltek.png", - "location": null + "location": "" } ] } @@ -40,6 +40,30 @@ "sensors": { "discovery": { "sensors": [ + { + "sensor_deleted": 0, + "sensor_class": "current", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12148.10.10.6.5.0", + "sensor_index": "battery.0", + "sensor_type": "enexus", + "sensor_descr": "Overal Battery Current", + "group": "Input", + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": -0.2, + "sensor_limit": 3200, + "sensor_limit_warn": 2200, + "sensor_limit_low": -2200, + "sensor_limit_low_warn": -2200, + "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", @@ -184,6 +208,54 @@ "user_func": null, "state_name": "batteryBankStatus" }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12148.10.10.1.0", + "sensor_index": "0", + "sensor_type": "batteryStatus", + "sensor_descr": "Overal Battery Status", + "group": "Battery", + "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": "batteryStatus" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12148.10.9.3.0", + "sensor_index": "0", + "sensor_type": "loadFusesStatus", + "sensor_descr": "Overal Load Fuses Status", + "group": "Load Fuse", + "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": "loadFusesStatus" + }, { "sensor_deleted": 0, "sensor_class": "state", @@ -688,6 +760,30 @@ "user_func": null, "state_name": "rectifierStatus" }, + { + "sensor_deleted": 0, + "sensor_class": "temperature", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.12148.10.10.7.5.0", + "sensor_index": "0", + "sensor_type": "enexus", + "sensor_descr": "Overal Battery Temperature", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 40, + "sensor_limit_warn": 30, + "sensor_limit_low": -5, + "sensor_limit_low_warn": -5, + "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", @@ -950,6 +1046,286 @@ "state_value": 19, "state_generic_value": 1 }, + { + "state_name": "batteryStatus", + "state_descr": "error", + "state_draw_graph": 0, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "batteryStatus", + "state_descr": "normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "batteryStatus", + "state_descr": "minorAlarm", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "batteryStatus", + "state_descr": "majorAlarm", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "batteryStatus", + "state_descr": "disabled", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "batteryStatus", + "state_descr": "disconnected", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 3 + }, + { + "state_name": "batteryStatus", + "state_descr": "notPresent", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 3 + }, + { + "state_name": "batteryStatus", + "state_descr": "minorAndMajor", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 2 + }, + { + "state_name": "batteryStatus", + "state_descr": "majorLow", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 2 + }, + { + "state_name": "batteryStatus", + "state_descr": "minorLow", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 1 + }, + { + "state_name": "batteryStatus", + "state_descr": "majorHigh", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 2 + }, + { + "state_name": "batteryStatus", + "state_descr": "minorHigh", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "batteryStatus", + "state_descr": "event", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "batteryStatus", + "state_descr": "valueVolt", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "batteryStatus", + "state_descr": "valueAmp", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 1 + }, + { + "state_name": "batteryStatus", + "state_descr": "valueTemp", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "batteryStatus", + "state_descr": "valueUnit", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 + }, + { + "state_name": "batteryStatus", + "state_descr": "valuePerCent", + "state_draw_graph": 0, + "state_value": 17, + "state_generic_value": 1 + }, + { + "state_name": "batteryStatus", + "state_descr": "critical", + "state_draw_graph": 0, + "state_value": 18, + "state_generic_value": 2 + }, + { + "state_name": "batteryStatus", + "state_descr": "warning", + "state_draw_graph": 0, + "state_value": 19, + "state_generic_value": 1 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "error", + "state_draw_graph": 0, + "state_value": 0, + "state_generic_value": 2 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "normal", + "state_draw_graph": 0, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "minorAlarm", + "state_draw_graph": 0, + "state_value": 2, + "state_generic_value": 1 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "majorAlarm", + "state_draw_graph": 0, + "state_value": 3, + "state_generic_value": 2 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "disabled", + "state_draw_graph": 0, + "state_value": 4, + "state_generic_value": 3 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "disconnected", + "state_draw_graph": 0, + "state_value": 5, + "state_generic_value": 3 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "notPresent", + "state_draw_graph": 0, + "state_value": 6, + "state_generic_value": 3 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "minorAndMajor", + "state_draw_graph": 0, + "state_value": 7, + "state_generic_value": 2 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "majorLow", + "state_draw_graph": 0, + "state_value": 8, + "state_generic_value": 2 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "minorLow", + "state_draw_graph": 0, + "state_value": 9, + "state_generic_value": 1 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "majorHigh", + "state_draw_graph": 0, + "state_value": 10, + "state_generic_value": 2 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "minorHigh", + "state_draw_graph": 0, + "state_value": 11, + "state_generic_value": 1 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "event", + "state_draw_graph": 0, + "state_value": 12, + "state_generic_value": 1 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "valueVolt", + "state_draw_graph": 0, + "state_value": 13, + "state_generic_value": 1 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "valueAmp", + "state_draw_graph": 0, + "state_value": 14, + "state_generic_value": 1 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "valueTemp", + "state_draw_graph": 0, + "state_value": 15, + "state_generic_value": 1 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "valueUnit", + "state_draw_graph": 0, + "state_value": 16, + "state_generic_value": 1 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "valuePerCent", + "state_draw_graph": 0, + "state_value": 17, + "state_generic_value": 1 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "critical", + "state_draw_graph": 0, + "state_value": 18, + "state_generic_value": 2 + }, + { + "state_name": "loadFusesStatus", + "state_descr": "warning", + "state_draw_graph": 0, + "state_value": 19, + "state_generic_value": 1 + }, { "state_name": "loadFuseStatus", "state_descr": "error", diff --git a/tests/data/enexus_smartpacks.json b/tests/data/enexus_smartpacks.json index 28bd5d5109..35d0f1623a 100644 --- a/tests/data/enexus_smartpacks.json +++ b/tests/data/enexus_smartpacks.json @@ -32,7 +32,7 @@ "type": "power", "serial": "999999999999", "icon": "eltek.png", - "location": "" + "location": "Site" } ] } diff --git a/tests/data/enexus_smartpacks2.json b/tests/data/enexus_smartpacks2.json index 51d9decfdf..8656854c5f 100644 --- a/tests/data/enexus_smartpacks2.json +++ b/tests/data/enexus_smartpacks2.json @@ -32,7 +32,7 @@ "type": "power", "serial": "999999999999", "icon": "eltek.png", - "location": null + "location": "Site" } ] } diff --git a/tests/snmpsim/enexus.snmprec b/tests/snmpsim/enexus.snmprec index 8eedd4a746..4fdf456980 100644 --- a/tests/snmpsim/enexus.snmprec +++ b/tests/snmpsim/enexus.snmprec @@ -233,10 +233,206 @@ 1.3.6.1.4.1.12148.10.5.6.1.9.2|4|2.01 1.3.6.1.4.1.12148.10.5.6.1.10.1|4|180371001613 1.3.6.1.4.1.12148.10.5.6.1.10.2|4|180371001667 +1.3.6.1.4.1.12148.10.9.1.0|2|1 +1.3.6.1.4.1.12148.10.9.2.1.0|2|1 +1.3.6.1.4.1.12148.10.9.2.2.0|4|LoadCurrent +1.3.6.1.4.1.12148.10.9.2.4.0|2|1 +1.3.6.1.4.1.12148.10.9.2.5.0|2|51 +1.3.6.1.4.1.12148.10.9.2.6.0|2|32000 +1.3.6.1.4.1.12148.10.9.2.7.0|2|22000 +1.3.6.1.4.1.12148.10.9.3.0|2|1 +1.3.6.1.4.1.12148.10.9.4.0|2|1 +1.3.6.1.4.1.12148.10.9.5.1.2.1|2|1 +1.3.6.1.4.1.12148.10.9.5.1.3.1|2|1 +1.3.6.1.4.1.12148.10.9.5.1.4.1|2|3 +1.3.6.1.4.1.12148.10.9.6.1.2.1.1|2|1 +1.3.6.1.4.1.12148.10.9.6.1.3.1.1|4|LVLD 1.1 +1.3.6.1.4.1.12148.10.9.6.1.5.1.1|2|1 +1.3.6.1.4.1.12148.10.9.6.1.6.1.1|2|0 +1.3.6.1.4.1.12148.10.9.6.1.7.1.1|2|4800 +1.3.6.1.4.1.12148.10.9.6.1.8.1.1|2|4400 +1.3.6.1.4.1.12148.10.9.6.1.9.1.1|2|0 +1.3.6.1.4.1.12148.10.9.6.1.10.1.1|2|30 1.3.6.1.4.1.12148.10.9.7.1.1.1|2|1 1.3.6.1.4.1.12148.10.9.7.1.2.1|4|LoadFuse 1 1.3.6.1.4.1.12148.10.9.7.1.4.1|2|1 1.3.6.1.4.1.12148.10.9.7.1.5.1|2|0 +1.3.6.1.4.1.12148.10.9.8.1.0|2|1521052 +1.3.6.1.4.1.12148.10.9.8.2.0|2|52 +1.3.6.1.4.1.12148.10.9.8.3.1.2.1|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.2|2|276 +1.3.6.1.4.1.12148.10.9.8.3.1.2.3|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.4|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.5|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.6|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.7|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.8|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.9|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.10|2|276 +1.3.6.1.4.1.12148.10.9.8.3.1.2.11|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.12|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.13|2|278 +1.3.6.1.4.1.12148.10.9.8.3.1.2.14|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.15|2|278 +1.3.6.1.4.1.12148.10.9.8.3.1.2.16|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.17|2|278 +1.3.6.1.4.1.12148.10.9.8.3.1.2.18|2|278 +1.3.6.1.4.1.12148.10.9.8.3.1.2.19|2|278 +1.3.6.1.4.1.12148.10.9.8.3.1.2.20|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.21|2|278 +1.3.6.1.4.1.12148.10.9.8.3.1.2.22|2|278 +1.3.6.1.4.1.12148.10.9.8.3.1.2.23|2|278 +1.3.6.1.4.1.12148.10.9.8.3.1.2.24|2|278 +1.3.6.1.4.1.12148.10.9.8.3.1.2.25|2|278 +1.3.6.1.4.1.12148.10.9.8.3.1.2.26|2|278 +1.3.6.1.4.1.12148.10.9.8.3.1.2.27|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.28|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.29|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.30|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.31|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.32|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.33|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.34|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.35|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.36|2|278 +1.3.6.1.4.1.12148.10.9.8.3.1.2.37|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.38|2|277 +1.3.6.1.4.1.12148.10.9.8.3.1.2.39|2|278 +1.3.6.1.4.1.12148.10.9.8.3.1.2.40|2|279 +1.3.6.1.4.1.12148.10.9.8.3.1.2.41|2|278 +1.3.6.1.4.1.12148.10.9.8.3.1.2.42|2|279 +1.3.6.1.4.1.12148.10.9.8.3.1.2.43|2|279 +1.3.6.1.4.1.12148.10.9.8.3.1.2.44|2|279 +1.3.6.1.4.1.12148.10.9.8.3.1.2.45|2|279 +1.3.6.1.4.1.12148.10.9.8.3.1.2.46|2|279 +1.3.6.1.4.1.12148.10.9.8.3.1.2.47|2|280 +1.3.6.1.4.1.12148.10.9.8.3.1.2.48|2|279 +1.3.6.1.4.1.12148.10.9.8.3.1.2.49|2|279 +1.3.6.1.4.1.12148.10.9.8.3.1.2.50|2|279 +1.3.6.1.4.1.12148.10.9.8.3.1.2.51|2|278 +1.3.6.1.4.1.12148.10.9.8.3.1.2.52|2|0 +1.3.6.1.4.1.12148.10.9.8.4.0|2|52 +1.3.6.1.4.1.12148.10.9.8.5.1.2.1|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.2|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.3|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.4|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.5|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.6|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.7|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.8|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.9|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.10|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.11|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.12|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.13|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.14|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.15|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.16|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.17|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.18|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.19|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.20|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.21|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.22|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.23|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.24|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.25|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.26|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.27|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.28|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.29|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.30|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.31|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.32|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.33|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.34|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.35|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.36|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.37|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.38|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.39|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.40|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.41|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.42|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.43|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.44|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.45|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.46|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.47|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.48|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.49|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.50|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.51|2|7 +1.3.6.1.4.1.12148.10.9.8.5.1.2.52|2|6 +1.3.6.1.4.1.12148.10.9.8.6.0|2|52 +1.3.6.1.4.1.12148.10.9.8.7.1.2.1|2|47 +1.3.6.1.4.1.12148.10.9.8.7.1.2.2|2|47 +1.3.6.1.4.1.12148.10.9.8.7.1.2.3|2|47 +1.3.6.1.4.1.12148.10.9.8.7.1.2.4|2|47 +1.3.6.1.4.1.12148.10.9.8.7.1.2.5|2|47 +1.3.6.1.4.1.12148.10.9.8.7.1.2.6|2|47 +1.3.6.1.4.1.12148.10.9.8.7.1.2.7|2|47 +1.3.6.1.4.1.12148.10.9.8.7.1.2.8|2|47 +1.3.6.1.4.1.12148.10.9.8.7.1.2.9|2|47 +1.3.6.1.4.1.12148.10.9.8.7.1.2.10|2|47 +1.3.6.1.4.1.12148.10.9.8.7.1.2.11|2|47 +1.3.6.1.4.1.12148.10.9.8.7.1.2.12|2|47 +1.3.6.1.4.1.12148.10.9.8.7.1.2.13|2|47 +1.3.6.1.4.1.12148.10.9.8.7.1.2.14|2|47 +1.3.6.1.4.1.12148.10.9.8.7.1.2.15|2|46 +1.3.6.1.4.1.12148.10.9.8.7.1.2.16|2|46 +1.3.6.1.4.1.12148.10.9.8.7.1.2.17|2|46 +1.3.6.1.4.1.12148.10.9.8.7.1.2.18|2|46 +1.3.6.1.4.1.12148.10.9.8.7.1.2.19|2|45 +1.3.6.1.4.1.12148.10.9.8.7.1.2.20|2|46 +1.3.6.1.4.1.12148.10.9.8.7.1.2.21|2|46 +1.3.6.1.4.1.12148.10.9.8.7.1.2.22|2|46 +1.3.6.1.4.1.12148.10.9.8.7.1.2.23|2|46 +1.3.6.1.4.1.12148.10.9.8.7.1.2.24|2|46 +1.3.6.1.4.1.12148.10.9.8.7.1.2.25|2|47 +1.3.6.1.4.1.12148.10.9.8.7.1.2.26|2|46 +1.3.6.1.4.1.12148.10.9.8.7.1.2.27|2|46 +1.3.6.1.4.1.12148.10.9.8.7.1.2.28|2|46 +1.3.6.1.4.1.12148.10.9.8.7.1.2.29|2|46 +1.3.6.1.4.1.12148.10.9.8.7.1.2.30|2|46 +1.3.6.1.4.1.12148.10.9.8.7.1.2.31|2|46 +1.3.6.1.4.1.12148.10.9.8.7.1.2.32|2|45 +1.3.6.1.4.1.12148.10.9.8.7.1.2.33|2|15 +1.3.6.1.4.1.12148.10.9.8.7.1.2.34|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.35|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.36|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.37|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.38|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.39|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.40|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.41|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.42|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.43|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.44|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.45|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.46|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.47|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.48|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.49|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.50|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.51|2|0 +1.3.6.1.4.1.12148.10.9.8.7.1.2.52|2|26 +1.3.6.1.4.1.12148.10.9.9.1.2.1.1|2|4 +1.3.6.1.4.1.12148.10.9.9.1.2.1.2|2|4 +1.3.6.1.4.1.12148.10.9.9.1.2.1.3|2|4 +1.3.6.1.4.1.12148.10.9.9.1.3.1.1|4|Drop diode 1.1 +1.3.6.1.4.1.12148.10.9.9.1.3.1.2|4|Drop diode 1.2 +1.3.6.1.4.1.12148.10.9.9.1.3.1.3|4|Drop diode 1.3 +1.3.6.1.4.1.12148.10.9.9.1.5.1.1|2|0 +1.3.6.1.4.1.12148.10.9.9.1.5.1.2|2|0 +1.3.6.1.4.1.12148.10.9.9.1.5.1.3|2|0 +1.3.6.1.4.1.12148.10.9.9.1.6.1.1|2|5402 +1.3.6.1.4.1.12148.10.9.9.1.6.1.2|2|5402 +1.3.6.1.4.1.12148.10.9.9.1.6.1.3|2|5402 +1.3.6.1.4.1.12148.10.10.1.0|2|1 +1.3.6.1.4.1.12148.10.10.2.0|4|Eltek Std +1.3.6.1.4.1.12148.10.10.3.0|2|5400 +1.3.6.1.4.1.12148.10.10.4.0|2|1 1.3.6.1.4.1.12148.10.10.5.1.0|2|1 1.3.6.1.4.1.12148.10.10.5.2.0|4|BatteryVoltage 1.3.6.1.4.1.12148.10.10.5.4.0|2|1 @@ -245,12 +441,69 @@ 1.3.6.1.4.1.12148.10.10.5.7.0|2|5680 1.3.6.1.4.1.12148.10.10.5.8.0|2|4800 1.3.6.1.4.1.12148.10.10.5.9.0|2|4630 +1.3.6.1.4.1.12148.10.10.6.1.0|2|1 +1.3.6.1.4.1.12148.10.10.6.2.0|4|BatteryCurrent +1.3.6.1.4.1.12148.10.10.6.4.0|2|1 +1.3.6.1.4.1.12148.10.10.6.5.0|2|-2 +1.3.6.1.4.1.12148.10.10.6.6.0|2|32000 +1.3.6.1.4.1.12148.10.10.6.7.0|2|22000 +1.3.6.1.4.1.12148.10.10.6.8.0|2|-22000 +1.3.6.1.4.1.12148.10.10.6.9.0|2|-32000 +1.3.6.1.4.1.12148.10.10.7.1.0|2|4 +1.3.6.1.4.1.12148.10.10.7.2.0|4|BatteryTemp +1.3.6.1.4.1.12148.10.10.7.4.0|2|0 +1.3.6.1.4.1.12148.10.10.7.5.0|2|0 +1.3.6.1.4.1.12148.10.10.7.6.0|2|40 +1.3.6.1.4.1.12148.10.10.7.7.0|2|30 +1.3.6.1.4.1.12148.10.10.7.8.0|2|-5 +1.3.6.1.4.1.12148.10.10.7.9.0|2|-10 1.3.6.1.4.1.12148.10.10.8.1.0|2|4 1.3.6.1.4.1.12148.10.10.8.2.0|4|BatteryTimeLeft 1.3.6.1.4.1.12148.10.10.8.4.0|2|0 1.3.6.1.4.1.12148.10.10.8.5.0|2|356 1.3.6.1.4.1.12148.10.10.8.6.0|2|25 1.3.6.1.4.1.12148.10.10.8.7.0|2|20 +1.3.6.1.4.1.12148.10.10.9.1.0|2|4 +1.3.6.1.4.1.12148.10.10.9.2.0|4|BatteryRemCap +1.3.6.1.4.1.12148.10.10.9.4.0|2|0 +1.3.6.1.4.1.12148.10.10.9.5.0|2|210 +1.3.6.1.4.1.12148.10.10.9.6.0|2|52 +1.3.6.1.4.1.12148.10.10.9.7.0|2|42 +1.3.6.1.4.1.12148.10.10.10.1.0|2|4 +1.3.6.1.4.1.12148.10.10.10.2.0|4|BatteryUsedCap +1.3.6.1.4.1.12148.10.10.10.4.0|2|0 +1.3.6.1.4.1.12148.10.10.10.5.0|2|0 +1.3.6.1.4.1.12148.10.10.10.6.0|2|52 +1.3.6.1.4.1.12148.10.10.10.7.0|2|42 +1.3.6.1.4.1.12148.10.10.11.1.0|2|4 +1.3.6.1.4.1.12148.10.10.11.2.0|4|BatteryTotCap +1.3.6.1.4.1.12148.10.10.11.4.0|2|0 +1.3.6.1.4.1.12148.10.10.11.5.0|2|210 +1.3.6.1.4.1.12148.10.10.11.6.0|2|168 +1.3.6.1.4.1.12148.10.10.11.7.0|2|157 +1.3.6.1.4.1.12148.10.10.12.1.0|2|4 +1.3.6.1.4.1.12148.10.10.12.2.0|4|BatteryQuality +1.3.6.1.4.1.12148.10.10.12.4.0|2|0 +1.3.6.1.4.1.12148.10.10.12.5.0|2|0 +1.3.6.1.4.1.12148.10.10.12.6.0|2|80 +1.3.6.1.4.1.12148.10.10.12.7.0|2|75 +1.3.6.1.4.1.12148.10.10.13.1.0|2|1 +1.3.6.1.4.1.12148.10.10.13.2.0|4|LVBD +1.3.6.1.4.1.12148.10.10.13.4.0|2|1 +1.3.6.1.4.1.12148.10.10.13.5.0|2|0 +1.3.6.1.4.1.12148.10.10.13.6.0|2|5000 +1.3.6.1.4.1.12148.10.10.13.7.0|2|4200 +1.3.6.1.4.1.12148.10.10.14.1.0|2|0 +1.3.6.1.4.1.12148.10.10.14.2.0|2|100 +1.3.6.1.4.1.12148.10.10.15.1.0|2|5450 +1.3.6.1.4.1.12148.10.10.15.2.0|2|0 +1.3.6.1.4.1.12148.10.10.15.3.0|2|10 +1.3.6.1.4.1.12148.10.10.15.4.0|2|120 +1.3.6.1.4.1.12148.10.10.16.1.0|2|190 +1.3.6.1.4.1.12148.10.10.16.2.0|2|0 +1.3.6.1.4.1.12148.10.10.16.3.0|2|0 +1.3.6.1.4.1.12148.10.10.17.1.0|2|0 +1.3.6.1.4.1.12148.10.10.18.1.0|2|1 1.3.6.1.4.1.12148.10.10.18.2.1.2.1|2|1 1.3.6.1.4.1.12148.10.10.18.2.1.3.1|2|4 1.3.6.1.4.1.12148.10.10.18.2.1.4.1|2|1 @@ -300,6 +553,517 @@ 1.3.6.1.4.1.12148.10.10.18.5.1.3.1.1|4|BattFuses 1 1.3.6.1.4.1.12148.10.10.18.5.1.5.1.1|2|0 1.3.6.1.4.1.12148.10.10.18.5.1.6.1.1|2|0 +1.3.6.1.4.1.12148.10.10.18.6.1.2.1.1|2|4 +1.3.6.1.4.1.12148.10.10.18.6.1.2.1.2|2|4 +1.3.6.1.4.1.12148.10.10.18.6.1.3.1.1|4|SymmVolt 1.1 +1.3.6.1.4.1.12148.10.10.18.6.1.3.1.2|4|SymmVolt 1.2 +1.3.6.1.4.1.12148.10.10.18.6.1.5.1.1|2|0 +1.3.6.1.4.1.12148.10.10.18.6.1.5.1.2|2|0 +1.3.6.1.4.1.12148.10.10.18.6.1.6.1.1|2|242 +1.3.6.1.4.1.12148.10.10.18.6.1.6.1.2|2|234 +1.3.6.1.4.1.12148.10.10.18.6.1.7.1.1|2|0 +1.3.6.1.4.1.12148.10.10.18.6.1.7.1.2|2|0 +1.3.6.1.4.1.12148.10.10.18.6.1.8.1.1|2|150 +1.3.6.1.4.1.12148.10.10.18.6.1.8.1.2|2|150 +1.3.6.1.4.1.12148.10.10.18.6.1.9.1.1|2|100 +1.3.6.1.4.1.12148.10.10.18.6.1.9.1.2|2|100 +1.3.6.1.4.1.12148.10.10.19.1.0|2|0 +1.3.6.1.4.1.12148.10.10.20.1.0|2|-52726 +1.3.6.1.4.1.12148.10.10.20.2.0|2|52 +1.3.6.1.4.1.12148.10.10.20.3.1.2.1|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.2|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.3|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.4|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.5|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.6|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.7|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.8|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.9|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.10|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.11|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.12|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.13|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.14|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.15|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.16|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.17|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.18|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.19|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.20|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.21|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.22|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.23|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.24|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.25|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.26|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.27|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.28|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.29|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.30|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.31|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.32|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.33|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.34|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.35|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.36|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.37|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.38|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.39|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.40|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.41|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.42|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.43|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.44|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.45|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.46|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.47|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.48|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.49|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.50|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.51|2|-10 +1.3.6.1.4.1.12148.10.10.20.3.1.2.52|2|0 +1.3.6.1.4.1.12148.10.10.20.4.0|2|52 +1.3.6.1.4.1.12148.10.10.20.5.1.2.1|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.2|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.3|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.4|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.5|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.6|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.7|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.8|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.9|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.10|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.11|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.12|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.13|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.14|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.15|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.16|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.17|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.18|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.19|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.20|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.21|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.22|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.23|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.24|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.25|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.26|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.27|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.28|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.29|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.30|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.31|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.32|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.33|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.34|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.35|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.36|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.37|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.38|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.39|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.40|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.41|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.42|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.43|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.44|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.45|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.46|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.47|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.48|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.49|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.50|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.51|2|0 +1.3.6.1.4.1.12148.10.10.20.5.1.2.52|2|0 +1.3.6.1.4.1.12148.10.10.20.6.0|2|52 +1.3.6.1.4.1.12148.10.10.20.7.1.2.1|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.2|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.3|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.4|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.5|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.6|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.7|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.8|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.9|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.10|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.11|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.12|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.13|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.14|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.15|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.16|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.17|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.18|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.19|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.20|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.21|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.22|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.23|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.24|2|-1 +1.3.6.1.4.1.12148.10.10.20.7.1.2.25|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.26|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.27|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.28|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.29|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.30|2|-2 +1.3.6.1.4.1.12148.10.10.20.7.1.2.31|2|-1 +1.3.6.1.4.1.12148.10.10.20.7.1.2.32|2|-1 +1.3.6.1.4.1.12148.10.10.20.7.1.2.33|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.34|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.35|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.36|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.37|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.38|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.39|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.40|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.41|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.42|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.43|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.44|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.45|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.46|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.47|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.48|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.49|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.50|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.51|2|0 +1.3.6.1.4.1.12148.10.10.20.7.1.2.52|2|-1 +1.3.6.1.4.1.12148.10.10.21.1.0|2|0 +1.3.6.1.4.1.12148.10.10.21.2.0|2|52 +1.3.6.1.4.1.12148.10.10.21.3.1.2.1|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.2|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.3|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.4|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.5|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.6|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.7|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.8|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.9|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.10|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.11|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.12|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.13|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.14|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.15|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.16|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.17|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.18|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.19|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.20|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.21|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.22|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.23|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.24|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.25|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.26|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.27|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.28|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.29|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.30|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.31|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.32|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.33|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.34|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.35|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.36|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.37|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.38|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.39|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.40|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.41|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.42|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.43|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.44|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.45|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.46|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.47|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.48|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.49|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.50|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.51|2|0 +1.3.6.1.4.1.12148.10.10.21.3.1.2.52|2|0 +1.3.6.1.4.1.12148.10.10.21.4.0|2|52 +1.3.6.1.4.1.12148.10.10.21.5.1.2.1|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.2|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.3|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.4|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.5|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.6|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.7|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.8|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.9|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.10|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.11|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.12|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.13|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.14|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.15|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.16|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.17|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.18|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.19|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.20|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.21|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.22|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.23|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.24|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.25|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.26|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.27|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.28|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.29|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.30|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.31|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.32|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.33|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.34|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.35|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.36|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.37|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.38|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.39|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.40|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.41|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.42|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.43|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.44|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.45|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.46|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.47|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.48|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.49|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.50|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.51|2|0 +1.3.6.1.4.1.12148.10.10.21.5.1.2.52|2|0 +1.3.6.1.4.1.12148.10.10.21.6.0|2|52 +1.3.6.1.4.1.12148.10.10.21.7.1.2.1|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.2|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.3|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.4|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.5|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.6|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.7|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.8|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.9|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.10|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.11|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.12|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.13|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.14|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.15|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.16|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.17|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.18|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.19|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.20|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.21|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.22|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.23|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.24|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.25|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.26|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.27|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.28|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.29|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.30|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.31|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.32|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.33|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.34|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.35|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.36|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.37|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.38|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.39|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.40|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.41|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.42|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.43|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.44|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.45|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.46|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.47|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.48|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.49|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.50|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.51|2|0 +1.3.6.1.4.1.12148.10.10.21.7.1.2.52|2|0 +1.3.6.1.4.1.12148.10.10.22.1.0|2|5450 +1.3.6.1.4.1.12148.10.10.22.2.0|2|0 +1.3.6.1.4.1.12148.10.10.22.3.0|2|10 +1.3.6.1.4.1.12148.10.10.22.4.0|2|120 +1.3.6.1.4.1.12148.10.10.23.1.0|2|4 +1.3.6.1.4.1.12148.10.10.23.2.0|4|Ah Charged +1.3.6.1.4.1.12148.10.10.23.4.0|2|0 +1.3.6.1.4.1.12148.10.10.23.5.0|2|0 +1.3.6.1.4.1.12148.10.10.23.6.0|2|900 +1.3.6.1.4.1.12148.10.10.23.7.0|2|1000 +1.3.6.1.4.1.12148.10.10.24.1.0|2|4 +1.3.6.1.4.1.12148.10.10.24.2.0|4|Ah Discharged +1.3.6.1.4.1.12148.10.10.24.4.0|2|0 +1.3.6.1.4.1.12148.10.10.24.5.0|2|7 +1.3.6.1.4.1.12148.10.10.24.6.0|2|900 +1.3.6.1.4.1.12148.10.10.24.7.0|2|1000 +1.3.6.1.4.1.12148.10.10.25.1.0|2|-168 +1.3.6.1.4.1.12148.10.10.25.2.0|2|52 +1.3.6.1.4.1.12148.10.10.25.3.1.2.1|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.2|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.3|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.4|2|1423 +1.3.6.1.4.1.12148.10.10.25.3.1.2.5|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.6|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.7|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.8|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.9|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.10|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.11|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.12|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.13|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.14|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.15|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.16|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.17|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.18|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.19|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.20|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.21|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.22|2|1423 +1.3.6.1.4.1.12148.10.10.25.3.1.2.23|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.24|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.25|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.26|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.27|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.28|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.29|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.30|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.31|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.32|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.33|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.34|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.35|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.36|2|1418 +1.3.6.1.4.1.12148.10.10.25.3.1.2.37|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.38|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.39|2|1366 +1.3.6.1.4.1.12148.10.10.25.3.1.2.40|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.41|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.42|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.43|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.44|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.45|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.46|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.47|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.48|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.49|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.50|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.51|2|1424 +1.3.6.1.4.1.12148.10.10.25.3.1.2.52|2|1187 +1.3.6.1.4.1.12148.10.10.25.4.0|2|52 +1.3.6.1.4.1.12148.10.10.25.5.1.2.1|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.2|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.3|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.4|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.5|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.6|2|165 +1.3.6.1.4.1.12148.10.10.25.5.1.2.7|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.8|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.9|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.10|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.11|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.12|2|165 +1.3.6.1.4.1.12148.10.10.25.5.1.2.13|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.14|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.15|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.16|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.17|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.18|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.19|2|165 +1.3.6.1.4.1.12148.10.10.25.5.1.2.20|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.21|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.22|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.23|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.24|2|156 +1.3.6.1.4.1.12148.10.10.25.5.1.2.25|2|159 +1.3.6.1.4.1.12148.10.10.25.5.1.2.26|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.27|2|165 +1.3.6.1.4.1.12148.10.10.25.5.1.2.28|2|166 +1.3.6.1.4.1.12148.10.10.25.5.1.2.29|2|165 +1.3.6.1.4.1.12148.10.10.25.5.1.2.30|2|161 +1.3.6.1.4.1.12148.10.10.25.5.1.2.31|2|156 +1.3.6.1.4.1.12148.10.10.25.5.1.2.32|2|81 +1.3.6.1.4.1.12148.10.10.25.5.1.2.33|2|5 +1.3.6.1.4.1.12148.10.10.25.5.1.2.34|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.35|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.36|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.37|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.38|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.39|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.40|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.41|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.42|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.43|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.44|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.45|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.46|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.47|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.48|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.49|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.50|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.51|2|0 +1.3.6.1.4.1.12148.10.10.25.5.1.2.52|2|90 +1.3.6.1.4.1.12148.10.10.25.6.0|2|52 +1.3.6.1.4.1.12148.10.10.25.7.1.2.1|2|734 +1.3.6.1.4.1.12148.10.10.25.7.1.2.2|2|711 +1.3.6.1.4.1.12148.10.10.25.7.1.2.3|2|734 +1.3.6.1.4.1.12148.10.10.25.7.1.2.4|2|734 +1.3.6.1.4.1.12148.10.10.25.7.1.2.5|2|696 +1.3.6.1.4.1.12148.10.10.25.7.1.2.6|2|734 +1.3.6.1.4.1.12148.10.10.25.7.1.2.7|2|475 +1.3.6.1.4.1.12148.10.10.25.7.1.2.8|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.9|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.10|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.11|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.12|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.13|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.14|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.15|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.16|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.17|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.18|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.19|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.20|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.21|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.22|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.23|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.24|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.25|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.26|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.27|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.28|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.29|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.30|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.31|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.32|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.33|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.34|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.35|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.36|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.37|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.38|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.39|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.40|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.41|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.42|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.43|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.44|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.45|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.46|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.47|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.48|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.49|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.50|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.51|2|0 +1.3.6.1.4.1.12148.10.10.25.7.1.2.52|2|470 1.3.6.1.4.1.12148.10.11.2.1.2.1.1|2|4 1.3.6.1.4.1.12148.10.11.2.1.2.1.2|2|4 1.3.6.1.4.1.12148.10.11.2.1.2.1.3|2|4 diff --git a/tests/snmpsim/enexus_smartpacks2.snmprec b/tests/snmpsim/enexus_smartpacks2.snmprec index 4f3f8d77b4..0568187f15 100644 --- a/tests/snmpsim/enexus_smartpacks2.snmprec +++ b/tests/snmpsim/enexus_smartpacks2.snmprec @@ -2,7 +2,7 @@ 1.3.6.1.4.1.12148.10.2.2.0|2|2 1.3.6.1.4.1.12148.10.2.3.0|2|3 1.3.6.1.4.1.12148.10.2.4.0|4| -1.3.6.1.4.1.12148.10.2.5.0|4|Bohaterow Wrzesnia 27 +1.3.6.1.4.1.12148.10.2.5.0|4|Site 1.3.6.1.4.1.12148.10.2.6.0|4|Smartpack S 1.3.6.1.4.1.12148.10.2.7.0|4|999999999999 1.3.6.1.4.1.12148.10.2.8.0|4x|07E1010100000000