diff --git a/includes/definitions/rittal-cmc-iii-pu.yaml b/includes/definitions/rittal-cmc-iii-pu.yaml index 9cf2005a1c..7b693fdeda 100644 --- a/includes/definitions/rittal-cmc-iii-pu.yaml +++ b/includes/definitions/rittal-cmc-iii-pu.yaml @@ -17,3 +17,4 @@ discovery: sysDescr_regex: - '/^Rittal CMC III PU/' - '/^Rittal CMC III PU Compact/' + - '/^Rittal PDU/' diff --git a/includes/discovery/sensors.inc.php b/includes/discovery/sensors.inc.php index 7d62fba664..8521262b0a 100644 --- a/includes/discovery/sensors.inc.php +++ b/includes/discovery/sensors.inc.php @@ -8,7 +8,7 @@ $valid['sensor'] = []; /** @var OS $os */ $pre_cache = $os->preCache(); -if ($device['os'] == 'rittal-cmc-iii-pu') { +if ($device['os'] == 'rittal-cmc-iii-pu' || $device['os'] == 'rittal-lcp') { include 'includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php'; } else { // Run custom sensors diff --git a/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php b/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php index 727a0b63b7..44a5ecb50f 100644 --- a/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php +++ b/includes/discovery/sensors/rittal-cmc-iii-sensors.inc.php @@ -31,18 +31,18 @@ foreach ($cmc_iii_var_table as $index => $entry) { $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 == 0) { - $sensor_id = 1; - } else { - $sensor_id++; - } + if ($cmc_iii_sensors[$sensor_id]['name'] != $sensor_name) { + if ($sensor_id == 0) { + $sensor_id = 1; + } else { + $sensor_id++; + } - $cmc_iii_sensors[$sensor_id]['name'] = $sensor_name; - $cmc_iii_sensors[$sensor_id]['desc'] = $entry['cmcIIIVarValueStr']; - break; + $cmc_iii_sensors[$sensor_id]['name'] = $sensor_name; + $cmc_iii_sensors[$sensor_id]['desc'] = $entry['cmcIIIVarValueStr'] ?: $sensor_name; + } + + switch ($var_type) { case 'setHigh': $cmc_iii_sensors[$sensor_id]['high_limit'] = $entry['cmcIIIVarValueInt']; break; @@ -84,18 +84,26 @@ foreach ($cmc_iii_var_table as $index => $entry) { $cmc_iii_sensors[$sensor_id]['divisor'] = 1000; } elseif ($unit == 'A') { $type = 'current'; - } elseif ($unit == 'degree C' or $unit == 'degree F') { + } elseif ($unit == 'Wh' || $unit == 'VAh') { + $cmc_iii_sensors[$sensor_id]['divisor'] = 1000; + $type = 'power_consumed'; + } elseif ($unit == 'kWh' || $unit == 'kVAh') { + $type = 'power_consumed'; + } elseif ($unit == 'Hz') { + $type = 'frequency'; + } elseif ($unit == 'degree C' || $unit == 'degree F') { $type = 'temperature'; } elseif ($unit == 'l/min') { $type = 'waterflow'; } elseif ($unit == 'V') { $type = 'voltage'; - } elseif ($unit == 'W') { + } elseif ($unit == 'W' || $unit == 'VA' || $unit == 'var') { $type = 'power'; + } elseif ($unit == '%') { + $type = 'percent'; } - - $cmc_iii_sensors[$sensor_id]['type'] = $type; - break; + $cmc_iii_sensors[$sensor_id]['type'] = $type; + break; } } @@ -108,7 +116,12 @@ if (! $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') { + 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' + || preg_match('/(Power Factor)|(Runtime)/', $sensor_data['name'])) { echo "\n" . $sensor_data['name'] . " skipped!\n"; continue; } @@ -174,8 +187,7 @@ foreach ($cmc_iii_sensors as $sensor_id => $sensor_data) { $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'], $sensor_data['low_warn_limit'], $sensor_data['warn_limit'], $sensor_data['high_limit'], $sensor_data['value']); + discover_sensor($valid['sensor'], $sensor_data['type'], $device, $sensor_data['oid'], $sensor_id, $sensor_data['name'], $sensor_data['desc'], $sensor_data['divisor'] ?? null, $sensor_data['multiplier'] ?? null, $sensor_data['low_limit'] ?? null, $sensor_data['low_warn_limit'] ?? null, $sensor_data['warn_limit'] ?? null, $sensor_data['high_limit'] ?? null, $sensor_data['value']); if (isset($sensor_data['logic'])) { create_sensor_to_state_index($device, $sensor_data['name'], $sensor_id); diff --git a/tests/data/rittal-cmc-iii-pu_pdu-controller.json b/tests/data/rittal-cmc-iii-pu_pdu-controller.json new file mode 100644 index 0000000000..4e9a300d58 --- /dev/null +++ b/tests/data/rittal-cmc-iii-pu_pdu-controller.json @@ -0,0 +1,2249 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.2606.7", + "sysDescr": "Rittal PDU SN 34260505 HW REV.0404 - SW V7.17.30_1", + "sysContact": "", + "version": "V7.17.30_1", + "hardware": "PDU-Controller", + "features": null, + "os": "rittal-cmc-iii-pu", + "type": "environment", + "serial": "34260505", + "icon": "rittal.svg", + "location": "" + } + ] + }, + "poller": "matches discovery" + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "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": "up", + "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": "eth1", + "ifName": "eth1", + "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": "ethernetCsmacd", + "ifAlias": "eth1", + "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": "br0", + "ifName": "br0", + "portName": null, + "ifIndex": 6, + "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": "br0", + "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": 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": "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": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "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": 411397219, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 5139367, + "ifOutUcastPkts_prev": 0, + "ifOutUcastPkts_delta": null, + "ifOutUcastPkts_rate": null, + "ifInErrors": 2, + "ifInErrors_prev": 0, + "ifInErrors_delta": null, + "ifInErrors_rate": null, + "ifOutErrors": 0, + "ifOutErrors_prev": 0, + "ifOutErrors_delta": null, + "ifOutErrors_rate": null, + "ifInOctets": 3291177752, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 30836036, + "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": "d8a98b6874b3", + "ifHardType": null, + "ifLastChange": 623190, + "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": 17516712, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1804673, + "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": 1298859874, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 359444552, + "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": 171100, + "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": "eth1", + "ifName": "eth1", + "portName": null, + "ifIndex": 5, + "ifSpeed": null, + "ifSpeed_prev": 0, + "ifConnectorPresent": "true", + "ifPromiscuousMode": "false", + "ifHighSpeed": 0, + "ifHighSpeed_prev": null, + "ifOperStatus": "down", + "ifOperStatus_prev": "down", + "ifAdminStatus": "up", + "ifAdminStatus_prev": null, + "ifDuplex": null, + "ifMtu": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "eth1", + "ifPhysAddress": "d8a98b6874b5", + "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": "br0", + "ifName": "br0", + "portName": null, + "ifIndex": 6, + "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": 1500, + "ifType": "ethernetCsmacd", + "ifAlias": "br0", + "ifPhysAddress": "d8a98b6874b3", + "ifHardType": null, + "ifLastChange": 623190, + "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": 16878505, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1804673, + "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": 940218855, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 356311976, + "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": 25, + "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.36", + "sensor_index": "21", + "sensor_type": "Phase L1 Current", + "sensor_descr": "Current L1", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 4.73, + "sensor_limit": 30, + "sensor_limit_warn": 20, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "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.79", + "sensor_index": "34", + "sensor_type": "Phase L2 Current", + "sensor_descr": "Current L2", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 5.56, + "sensor_limit": 30, + "sensor_limit_warn": 20, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "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.122", + "sensor_index": "47", + "sensor_type": "Phase L3 Current", + "sensor_descr": "Current L3", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 2.36, + "sensor_limit": 30, + "sensor_limit_warn": 20, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "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.3", + "sensor_index": "12", + "sensor_type": "Total Neutral Current", + "sensor_descr": "Neutral Current", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 3.11, + "sensor_limit": 30, + "sensor_limit_warn": 20, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "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": "frequency", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.1", + "sensor_index": "11", + "sensor_type": "Total Frequency", + "sensor_descr": "50.0 Hz", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 50, + "sensor_limit": 52.5, + "sensor_limit_warn": null, + "sensor_limit_low": 47.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 + }, + { + "sensor_deleted": 0, + "sensor_class": "percent", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.44", + "sensor_index": "22", + "sensor_type": "Phase L1 Current THD", + "sensor_descr": "8 %", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 8, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "percent", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.34", + "sensor_index": "20", + "sensor_type": "Phase L1 Voltage THD", + "sensor_descr": "0 %", + "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "percent", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.87", + "sensor_index": "35", + "sensor_type": "Phase L2 Current THD", + "sensor_descr": "7 %", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 7, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "percent", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.77", + "sensor_index": "33", + "sensor_type": "Phase L2 Voltage THD", + "sensor_descr": "0 %", + "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "percent", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.130", + "sensor_index": "48", + "sensor_type": "Phase L3 Current THD", + "sensor_descr": "39 %", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 39, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "percent", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.120", + "sensor_index": "46", + "sensor_type": "Phase L3 Voltage THD", + "sensor_descr": "0 %", + "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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.47", + "sensor_index": "24", + "sensor_type": "Phase L1 Power Active", + "sensor_descr": "Power L1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1041, + "sensor_limit": 3600, + "sensor_limit_warn": 3000, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "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": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.56", + "sensor_index": "26", + "sensor_type": "Phase L1 Power Apparent", + "sensor_descr": "1092 VA", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1085, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.55", + "sensor_index": "25", + "sensor_type": "Phase L1 Power Reactive", + "sensor_descr": "293 var", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 296, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.90", + "sensor_index": "37", + "sensor_type": "Phase L2 Power Active", + "sensor_descr": "Power L2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1240, + "sensor_limit": 3600, + "sensor_limit_warn": 3000, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "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": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.99", + "sensor_index": "39", + "sensor_type": "Phase L2 Power Apparent", + "sensor_descr": "1274 VA", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1275, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.98", + "sensor_index": "38", + "sensor_type": "Phase L2 Power Reactive", + "sensor_descr": "281 var", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 283, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.133", + "sensor_index": "50", + "sensor_type": "Phase L3 Power Active", + "sensor_descr": "Power L3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 466, + "sensor_limit": 3600, + "sensor_limit_warn": 3000, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "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": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.142", + "sensor_index": "52", + "sensor_type": "Phase L3 Power Apparent", + "sensor_descr": "547 VA", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 544, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.141", + "sensor_index": "51", + "sensor_type": "Phase L3 Power Reactive", + "sensor_descr": "208 var", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 206, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.12", + "sensor_index": "13", + "sensor_type": "Total Power Active", + "sensor_descr": "Power Active", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 2742, + "sensor_limit": 10000, + "sensor_limit_warn": 8000, + "sensor_limit_low": 0, + "sensor_limit_low_warn": 0, + "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": "power_consumed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.57", + "sensor_index": "27", + "sensor_type": "Phase L1 Energy Active", + "sensor_descr": "999.1 kWh", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 999.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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power_consumed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.58", + "sensor_index": "28", + "sensor_type": "Phase L1 Energy Active Custom", + "sensor_descr": "999.1 kWh", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 999.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": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power_consumed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.59", + "sensor_index": "29", + "sensor_type": "Phase L1 Energy Apparent", + "sensor_descr": "1042.6 kVAh", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 1042.6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power_consumed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.100", + "sensor_index": "40", + "sensor_type": "Phase L2 Energy Active", + "sensor_descr": "1170.5 kWh", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 1170.5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power_consumed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.101", + "sensor_index": "41", + "sensor_type": "Phase L2 Energy Active Custom", + "sensor_descr": "1170.5 kWh", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 1170.5, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power_consumed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.102", + "sensor_index": "42", + "sensor_type": "Phase L2 Energy Apparent", + "sensor_descr": "1206.6 kVAh", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 1206.6, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power_consumed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.143", + "sensor_index": "53", + "sensor_type": "Phase L3 Energy Active", + "sensor_descr": "472.2 kWh", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 472.2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power_consumed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.144", + "sensor_index": "54", + "sensor_type": "Phase L3 Energy Active Custom", + "sensor_descr": "472.2 kWh", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 472.2, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power_consumed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.145", + "sensor_index": "55", + "sensor_type": "Phase L3 Energy Apparent", + "sensor_descr": "549.9 kVAh", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 549.9, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power_consumed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.20", + "sensor_index": "14", + "sensor_type": "Total Energy Active", + "sensor_descr": "2641.8 kWh", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 2641.8, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power_consumed", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.22", + "sensor_index": "16", + "sensor_type": "Total Energy Active Custom", + "sensor_descr": "2575.9 kWh", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 2575.9, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "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.2", + "sensor_index": "1", + "sensor_type": "Input_34260505", + "sensor_descr": "Input", + "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": "Input_34260505" + }, + { + "sensor_deleted": 0, + "sensor_class": "voltage", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.26", + "sensor_index": "19", + "sensor_type": "Phase L1 Voltage", + "sensor_descr": "Voltage L1", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 229.2, + "sensor_limit": 260, + "sensor_limit_warn": 250, + "sensor_limit_low": 200, + "sensor_limit_low_warn": 210, + "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.2.69", + "sensor_index": "32", + "sensor_type": "Phase L2 Voltage", + "sensor_descr": "Voltage L2", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 229.1, + "sensor_limit": 260, + "sensor_limit_warn": 250, + "sensor_limit_low": 200, + "sensor_limit_low_warn": 210, + "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.2.112", + "sensor_index": "45", + "sensor_type": "Phase L3 Voltage", + "sensor_descr": "Voltage L3", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 230.3, + "sensor_limit": 260, + "sensor_limit_warn": 250, + "sensor_limit_low": 200, + "sensor_limit_low_warn": 210, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + } + ], + "state_indexes": [ + { + "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_34260505", + "state_descr": "Off", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "Input_34260505", + "state_descr": "On", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + } + ] + }, + "poller": "matches discovery" + } +} diff --git a/tests/data/rittal-lcp_cmciii-pu-lcp.json b/tests/data/rittal-lcp_cmciii-pu-lcp.json new file mode 100644 index 0000000000..64262e361c --- /dev/null +++ b/tests/data/rittal-lcp_cmciii-pu-lcp.json @@ -0,0 +1,2249 @@ +{ + "os": { + "discovery": { + "devices": [ + { + "sysName": "", + "sysObjectID": ".1.3.6.1.4.1.2606.7", + "sysDescr": "Rittal LCP SN 41326588 HW V4.01 - SW V3.17.10", + "sysContact": "", + "version": "V3.17.10", + "hardware": "CMCIII-PU LCP", + "features": null, + "os": "rittal-lcp", + "type": "environment", + "serial": "41326588", + "icon": "rittal.svg", + "location": "" + } + ] + }, + "poller": "matches discovery" + }, + "ports": { + "discovery": { + "ports": [ + { + "port_descr_type": null, + "port_descr_descr": null, + "port_descr_circuit": null, + "port_descr_speed": null, + "port_descr_notes": null, + "ifDescr": "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": "up", + "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": 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": "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": 7730345, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 5139396, + "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": 30391943, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 4125, + "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": "up", + "ifOperStatus_prev": "up", + "ifAdminStatus": "up", + "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": 21041310, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 18575580, + "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": 150341467, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 107522645, + "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": "00d09351693f", + "ifHardType": null, + "ifLastChange": 754168, + "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": 17334943, + "ifInUcastPkts_prev": 0, + "ifInUcastPkts_delta": null, + "ifInUcastPkts_rate": null, + "ifOutUcastPkts": 1620001, + "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": 1353880134, + "ifInOctets_prev": 0, + "ifInOctets_delta": null, + "ifInOctets_rate": null, + "ifOutOctets": 332916084, + "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": 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": 1000, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": 0.9, + "sensor_limit_warn": 0.7, + "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": 1000, + "sensor_multiplier": 1, + "sensor_current": 0.08, + "sensor_limit": 0.9, + "sensor_limit_warn": 0.7, + "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": "percent", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.159", + "sensor_index": "41", + "sensor_type": "Control Valve Current Value Valve1", + "sensor_descr": "Control Valve", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 38, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "percent", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.166", + "sensor_index": "44", + "sensor_type": "Control Valve Internal Control", + "sensor_descr": "Automatic", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 35.4, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "percent", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.90", + "sensor_index": "28", + "sensor_type": "Fans Current Speed Fan1", + "sensor_descr": "Fan_1", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 16, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "percent", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.94", + "sensor_index": "29", + "sensor_type": "Fans Current Speed Fan2", + "sensor_descr": "Fan_2", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 16, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "percent", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.98", + "sensor_index": "30", + "sensor_type": "Fans Current Speed Fan3", + "sensor_descr": "Fan_3", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 16, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "percent", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.102", + "sensor_index": "31", + "sensor_type": "Fans Current Speed Fan4", + "sensor_descr": "Fan_4", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 16, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "percent", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.106", + "sensor_index": "32", + "sensor_type": "Fans Current Speed Fan5", + "sensor_descr": "Fan_5", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 16, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "percent", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.110", + "sensor_index": "33", + "sensor_type": "Fans Current Speed Fan6", + "sensor_descr": "Fan_6", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 16, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "percent", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.128", + "sensor_index": "36", + "sensor_type": "Fans Internal Control", + "sensor_descr": "Automatic", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 13, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "power", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.173", + "sensor_index": "46", + "sensor_type": "Cooling Capacity", + "sensor_descr": "Cooling Capacity", + "group": null, + "sensor_divisor": 1, + "sensor_multiplier": 1, + "sensor_current": 1707, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.1.12", + "sensor_index": "2", + "sensor_type": "Access_41326588", + "sensor_descr": "Door", + "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_41326588" + }, + { + "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.2.187", + "sensor_index": "49", + "sensor_type": "Condensate Pump", + "sensor_descr": "Condensate Pump", + "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": 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.2.181", + "sensor_index": "48", + "sensor_type": "Condensate Sensor", + "sensor_descr": "Condensate", + "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": 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.3.18", + "sensor_index": "54", + "sensor_type": "Door Opening Automatic Input Alarm_41326588", + "sensor_descr": "Input Alarm", + "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": "Door Opening Automatic Input Alarm_41326588" + }, + { + "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.28", + "sensor_index": "56", + "sensor_type": "Door Opening Manual Front Input Access_41326588", + "sensor_descr": "Input Access Front", + "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": "Door Opening Manual Front Input Access_41326588" + }, + { + "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.35", + "sensor_index": "57", + "sensor_type": "Door Opening Manual Rear Input Access_41326588", + "sensor_descr": "Input Access Rear", + "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": "Door Opening Manual Rear Input Access_41326588" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.195", + "sensor_index": "50", + "sensor_type": "Features Dewpoint Control", + "sensor_descr": "Dewpoint Values", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 0, + "sensor_limit": null, + "sensor_limit_warn": null, + "sensor_limit_low": null, + "sensor_limit_low_warn": null, + "sensor_alert": 1, + "sensor_custom": "No", + "entPhysicalIndex": null, + "entPhysicalIndex_measured": null, + "sensor_prev": null, + "user_func": null, + "state_name": null + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.211", + "sensor_index": "51", + "sensor_type": "Features Water Control dT", + "sensor_descr": "Water Delta T Mode", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 12, + "sensor_limit": 30, + "sensor_limit_warn": null, + "sensor_limit_low": 20, + "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.18", + "sensor_index": "3", + "sensor_type": "Input 1_41326588", + "sensor_descr": "Input 1", + "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": "Input 1_41326588" + }, + { + "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_41326588", + "sensor_descr": "Input 2", + "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": "Input 2_41326588" + }, + { + "sensor_deleted": 0, + "sensor_class": "state", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.177", + "sensor_index": "47", + "sensor_type": "Leakage Sensor", + "sensor_descr": "Leakage", + "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": 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.2.45", + "sensor_index": "23", + "sensor_type": "Air Temp Server In Average", + "sensor_descr": "Air Temperature", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 19, + "sensor_limit": 33, + "sensor_limit_warn": 28, + "sensor_limit_low": 10, + "sensor_limit_low_warn": 12, + "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.2.35", + "sensor_index": "22", + "sensor_type": "Air Temp Server In Bottom", + "sensor_descr": "Air Temperature", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 19.1, + "sensor_limit": 35, + "sensor_limit_warn": 30, + "sensor_limit_low": 10, + "sensor_limit_low_warn": 12, + "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.2.26", + "sensor_index": "21", + "sensor_type": "Air Temp Server In Center", + "sensor_descr": "Air Temperature", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 19, + "sensor_limit": 35, + "sensor_limit_warn": 30, + "sensor_limit_low": 10, + "sensor_limit_low_warn": 12, + "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.2.17", + "sensor_index": "20", + "sensor_type": "Air Temp Server In Top", + "sensor_descr": "Air Temperature", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 18.8, + "sensor_limit": 35, + "sensor_limit_warn": 30, + "sensor_limit_low": 10, + "sensor_limit_low_warn": 12, + "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.2.81", + "sensor_index": "27", + "sensor_type": "Air Temp Server Out Average", + "sensor_descr": "Air Temperature", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 24.4, + "sensor_limit": 45, + "sensor_limit_warn": 40, + "sensor_limit_low": 10, + "sensor_limit_low_warn": 12, + "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.2.72", + "sensor_index": "26", + "sensor_type": "Air Temp Server Out Bottom", + "sensor_descr": "Air Temperature", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 23, + "sensor_limit": 45, + "sensor_limit_warn": 40, + "sensor_limit_low": 10, + "sensor_limit_low_warn": 12, + "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.2.63", + "sensor_index": "25", + "sensor_type": "Air Temp Server Out Center", + "sensor_descr": "Air Temperature", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 25.2, + "sensor_limit": 45, + "sensor_limit_warn": 40, + "sensor_limit_low": 10, + "sensor_limit_low_warn": 12, + "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.2.54", + "sensor_index": "24", + "sensor_type": "Air Temp Server Out Top", + "sensor_descr": "Air Temperature", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 25, + "sensor_limit": 45, + "sensor_limit_warn": 40, + "sensor_limit_low": 10, + "sensor_limit_low_warn": 12, + "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.3.12", + "sensor_index": "53", + "sensor_type": "Door Opening Automatic Temperature", + "sensor_descr": "Temperature", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 21.4, + "sensor_limit": 45, + "sensor_limit_warn": null, + "sensor_limit_low": 11.4, + "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.54", + "sensor_index": "9", + "sensor_type": "System Temperature", + "sensor_descr": "Sys Temp", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 27.7, + "sensor_limit": 80, + "sensor_limit_warn": 70, + "sensor_limit_low": -30, + "sensor_limit_low_warn": -25, + "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": "Temperature", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 23.6, + "sensor_limit": 40, + "sensor_limit_warn": 35, + "sensor_limit_low": 5, + "sensor_limit_low_warn": 10, + "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.3.2", + "sensor_index": "52", + "sensor_type": "Temperature", + "sensor_descr": "Temperature", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 21.4, + "sensor_limit": 45, + "sensor_limit_warn": 40, + "sensor_limit_low": 5, + "sensor_limit_low_warn": 10, + "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": "65", + "sensor_type": "Temperature", + "sensor_descr": "Temperature", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 34.3, + "sensor_limit": 45, + "sensor_limit_warn": 40, + "sensor_limit_low": 10, + "sensor_limit_low_warn": 12, + "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.2.135", + "sensor_index": "38", + "sensor_type": "Water Temperatures In", + "sensor_descr": "Water In", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 16.1, + "sensor_limit": 22, + "sensor_limit_warn": 18, + "sensor_limit_low": 10, + "sensor_limit_low_warn": 12, + "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.2.144", + "sensor_index": "39", + "sensor_type": "Water Temperatures Out", + "sensor_descr": "Water Out", + "group": null, + "sensor_divisor": 100, + "sensor_multiplier": 1, + "sensor_current": 20.7, + "sensor_limit": 35, + "sensor_limit_warn": 30, + "sensor_limit_low": 10, + "sensor_limit_low_warn": 12, + "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.15, + "sensor_limit": 28, + "sensor_limit_warn": 27, + "sensor_limit_low": 19, + "sensor_limit_low_warn": 21, + "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": 3.04, + "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.04, + "sensor_limit": 5.5, + "sensor_limit_warn": 5.4, + "sensor_limit_low": 4.5, + "sensor_limit_low_warn": 4.6, + "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": "waterflow", + "poller_type": "snmp", + "sensor_oid": ".1.3.6.1.4.1.2606.7.4.2.2.1.11.2.153", + "sensor_index": "40", + "sensor_type": "Water Flowrate", + "sensor_descr": "Waterflow", + "group": null, + "sensor_divisor": 10, + "sensor_multiplier": 1, + "sensor_current": 5.3, + "sensor_limit": 130, + "sensor_limit_warn": null, + "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 + } + ], + "state_indexes": [ + { + "state_name": "Access_41326588", + "state_descr": "Closed", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "Access_41326588", + "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": "Door Opening Automatic Input Alarm_41326588", + "state_descr": "OK", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "Door Opening Automatic Input Alarm_41326588", + "state_descr": "Alarm", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "Door Opening Manual Front Input Access_41326588", + "state_descr": "On", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "Door Opening Manual Front Input Access_41326588", + "state_descr": "Off", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "Door Opening Manual Rear Input Access_41326588", + "state_descr": "On", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "Door Opening Manual Rear Input Access_41326588", + "state_descr": "Off", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "Input 1_41326588", + "state_descr": "Off", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "Input 1_41326588", + "state_descr": "On", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + }, + { + "state_name": "Input 2_41326588", + "state_descr": "Off", + "state_draw_graph": 1, + "state_value": 0, + "state_generic_value": 0 + }, + { + "state_name": "Input 2_41326588", + "state_descr": "On", + "state_draw_graph": 1, + "state_value": 1, + "state_generic_value": 0 + } + ] + }, + "poller": "matches discovery" + } +} diff --git a/tests/snmpsim/rittal-cmc-iii-pu_pdu-controller.snmprec b/tests/snmpsim/rittal-cmc-iii-pu_pdu-controller.snmprec new file mode 100644 index 0000000000..8d7eb39857 --- /dev/null +++ b/tests/snmpsim/rittal-cmc-iii-pu_pdu-controller.snmprec @@ -0,0 +1,6585 @@ +1.3.6.1.2.1.1.1.0|4|Rittal PDU SN 34260505 HW REV.0404 - SW V7.17.30_1 +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|513927744 +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|eth1 +1.3.6.1.2.1.2.2.1.2.6|4|br0 +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|6 +1.3.6.1.2.1.2.2.1.3.6|2|6 +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|1500 +1.3.6.1.2.1.2.2.1.4.6|2|1500 +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|D8A98B6874B3 +1.3.6.1.2.1.2.2.1.6.5|4x|D8A98B6874B5 +1.3.6.1.2.1.2.2.1.6.6|4x|D8A98B6874B3 +1.3.6.1.2.1.2.2.1.7.1|2|1 +1.3.6.1.2.1.2.2.1.7.2|2|1 +1.3.6.1.2.1.2.2.1.7.3|2|1 +1.3.6.1.2.1.2.2.1.7.4|2|1 +1.3.6.1.2.1.2.2.1.7.5|2|1 +1.3.6.1.2.1.2.2.1.7.6|2|1 +1.3.6.1.2.1.2.2.1.8.1|2|1 +1.3.6.1.2.1.2.2.1.8.2|2|1 +1.3.6.1.2.1.2.2.1.8.3|2|1 +1.3.6.1.2.1.2.2.1.8.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|1 +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|623190 +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|623190 +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|171100 +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|25 +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|2 +1.3.6.1.2.1.2.2.1.14.4|65|0 +1.3.6.1.2.1.2.2.1.14.5|65|0 +1.3.6.1.2.1.2.2.1.14.6|65|0 +1.3.6.1.2.1.2.2.1.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|1804934 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|0 +1.3.6.1.2.1.4.6.0|65|0 +1.3.6.1.2.1.4.7.0|65|0 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|1740536 +1.3.6.1.2.1.4.10.0|65|1630851 +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.127.0.0.1|2|1 +1.3.6.1.2.1.4.20.1.2.149.217.129.150|2|6 +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.20.1.3.149.217.129.150|64|255.255.240.0 +1.3.6.1.2.1.4.22.1.2.6.149.217.128.1|4x|001B21639C84 +1.3.6.1.2.1.4.22.1.2.6.149.217.128.86|4x|D4AE528EDDCB +1.3.6.1.2.1.4.31.1.1.3.1|65|1803555 +1.3.6.1.2.1.4.31.1.1.3.2|65|1595258 +1.3.6.1.2.1.4.31.1.1.4.1|70|1803555 +1.3.6.1.2.1.4.31.1.1.4.2|70|1595258 +1.3.6.1.2.1.4.31.1.1.5.1|65|155080627 +1.3.6.1.2.1.4.31.1.1.5.2|65|165030377 +1.3.6.1.2.1.4.31.1.1.6.1|70|155080627 +1.3.6.1.2.1.4.31.1.1.6.2|70|165030377 +1.3.6.1.2.1.4.31.1.1.7.1|65|0 +1.3.6.1.2.1.4.31.1.1.7.2|65|0 +1.3.6.1.2.1.4.31.1.1.8.1|65|0 +1.3.6.1.2.1.4.31.1.1.8.2|65|1595252 +1.3.6.1.2.1.4.31.1.1.9.1|65|0 +1.3.6.1.2.1.4.31.1.1.9.2|65|0 +1.3.6.1.2.1.4.31.1.1.10.1|65|0 +1.3.6.1.2.1.4.31.1.1.10.2|65|0 +1.3.6.1.2.1.4.31.1.1.11.1|65|0 +1.3.6.1.2.1.4.31.1.1.11.2|65|0 +1.3.6.1.2.1.4.31.1.1.12.1|65|0 +1.3.6.1.2.1.4.31.1.1.12.2|65|1595252 +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|1595252 +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|6 +1.3.6.1.2.1.4.31.1.1.18.1|65|1739157 +1.3.6.1.2.1.4.31.1.1.18.2|65|31 +1.3.6.1.2.1.4.31.1.1.19.1|70|1739157 +1.3.6.1.2.1.4.31.1.1.19.2|70|31 +1.3.6.1.2.1.4.31.1.1.20.1|65|1629474 +1.3.6.1.2.1.4.31.1.1.20.2|65|20 +1.3.6.1.2.1.4.31.1.1.21.1|70|1629474 +1.3.6.1.2.1.4.31.1.1.21.2|70|20 +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|1629474 +1.3.6.1.2.1.4.31.1.1.30.2|65|20 +1.3.6.1.2.1.4.31.1.1.31.1|70|1629474 +1.3.6.1.2.1.4.31.1.1.31.2|70|20 +1.3.6.1.2.1.4.31.1.1.32.1|65|325764490 +1.3.6.1.2.1.4.31.1.1.32.2|65|1508 +1.3.6.1.2.1.4.31.1.1.33.1|70|325764490 +1.3.6.1.2.1.4.31.1.1.33.2|70|1508 +1.3.6.1.2.1.4.31.1.1.34.1|65|50148 +1.3.6.1.2.1.4.31.1.1.34.2|65|1595252 +1.3.6.1.2.1.4.31.1.1.35.1|70|50148 +1.3.6.1.2.1.4.31.1.1.35.2|70|1595252 +1.3.6.1.2.1.4.31.1.1.36.1|65|1480264 +1.3.6.1.2.1.4.31.1.1.36.2|65|165029897 +1.3.6.1.2.1.4.31.1.1.37.1|70|1480264 +1.3.6.1.2.1.4.31.1.1.37.2|70|165029897 +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|20 +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|20 +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|1508 +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|1508 +1.3.6.1.2.1.4.31.1.1.42.1|65|62593 +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|62593 +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.3.2.16.254.128.0.0.0.0.0.0.218.169.139.255.254.104.116.179|2|6 +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.5.2.16.254.128.0.0.0.0.0.0.218.169.139.255.254.104.116.179|6|1.3.6.1.2.1.4.32.1.5.6.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +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.34.1.6.2.16.254.128.0.0.0.0.0.0.218.169.139.255.254.104.116.179|2|5 +1.3.6.1.2.1.4.35.1.4.6.1.4.149.217.128.1|4x|001B21639C84 +1.3.6.1.2.1.4.35.1.4.6.1.4.149.217.128.86|4x|D4AE528EDDCB +1.3.6.1.2.1.5.1.0|65|146168 +1.3.6.1.2.1.5.2.0|65|9515 +1.3.6.1.2.1.5.3.0|65|0 +1.3.6.1.2.1.5.4.0|65|0 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|0 +1.3.6.1.2.1.5.9.0|65|136653 +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|136653 +1.3.6.1.2.1.5.16.0|65|0 +1.3.6.1.2.1.5.17.0|65|0 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|0 +1.3.6.1.2.1.5.22.0|65|0 +1.3.6.1.2.1.5.23.0|65|136653 +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|146168 +1.3.6.1.2.1.5.29.1.2.2|65|15 +1.3.6.1.2.1.5.29.1.3.1|65|9515 +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|20 +1.3.6.1.2.1.5.29.1.5.1|65|136653 +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.8|65|136653 +1.3.6.1.2.1.5.30.1.3.1.9|65|9515 +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|15 +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|136653 +1.3.6.1.2.1.5.30.1.4.1.8|65|0 +1.3.6.1.2.1.5.30.1.4.1.9|65|0 +1.3.6.1.2.1.5.30.1.4.2.135|65|3 +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.143|65|17 +1.3.6.1.2.1.6.5.0|65|0 +1.3.6.1.2.1.6.6.0|65|84 +1.3.6.1.2.1.6.7.0|65|0 +1.3.6.1.2.1.6.8.0|65|2 +1.3.6.1.2.1.6.9.0|66|0 +1.3.6.1.2.1.6.10.0|65|4969 +1.3.6.1.2.1.6.11.0|65|8024 +1.3.6.1.2.1.6.12.0|65|3 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|0 +1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.21|66|591 +1.3.6.1.2.1.7.1.0|65|1486262 +1.3.6.1.2.1.7.2.0|65|0 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|1486261 +1.3.6.1.2.1.11.1.0|65|1486246 +1.3.6.1.2.1.11.2.0|65|1486244 +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|10740283 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|310031 +1.3.6.1.2.1.11.16.0|65|261762 +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|0 +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|1486246 +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|513934122 +1.3.6.1.2.1.25.1.5.0|66|0 +1.3.6.1.2.1.25.1.6.0|66|77 +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 eth1 +1.3.6.1.2.1.25.3.2.1.3.262150|4|network interface br0 +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|2 +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|2 +1.3.6.1.2.1.25.3.2.1.5.262150|2|2 +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|2 +1.3.6.1.2.1.25.3.2.1.6.262148|65|0 +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|41 +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|eth1 +1.3.6.1.2.1.31.1.1.1.1.6|4|br0 +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|0 +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|3291177752 +1.3.6.1.2.1.31.1.1.1.6.4|70|1298859874 +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|940218855 +1.3.6.1.2.1.31.1.1.1.7.1|70|0 +1.3.6.1.2.1.31.1.1.1.7.2|70|2 +1.3.6.1.2.1.31.1.1.1.7.3|70|411397219 +1.3.6.1.2.1.31.1.1.1.7.4|70|17516712 +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|16878505 +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|0 +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|30836036 +1.3.6.1.2.1.31.1.1.1.10.4|70|359444552 +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|356311976 +1.3.6.1.2.1.31.1.1.1.11.1|70|0 +1.3.6.1.2.1.31.1.1.1.11.2|70|0 +1.3.6.1.2.1.31.1.1.1.11.3|70|5139367 +1.3.6.1.2.1.31.1.1.1.11.4|70|1804673 +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|1804673 +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|V7.17.30_1 +1.3.6.1.4.1.2606.7.2.6.0|4|34260505 +1.3.6.1.4.1.2606.7.4.1.2.1.2.1|4|PDU-Controller +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.1|4|Input.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.2|4|Input.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.3|4|Input.Logic +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.4|4|Input.Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.5|4|Input.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.6|4|Input.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.7|4|Output.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.8|4|Output.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.9|4|Output.Logic +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.10|4|Output.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.11|4|Output.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.12|4|System.V24 Port.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.13|4|System.V24 Port.Message +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.14|4|System.V24 Port.Signal +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.15|4|System.V24 Port.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.16|4|System.V24 Port.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.17|4|System.PoE.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.18|4|System.PoE.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.19|4|System.PoE.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.20|4|System Health.Temperature.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.21|4|System Health.Temperature.Error Info +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.22|4|System Health.Temperature.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.23|4|System Health.Temperature.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.24|4|System Health.Current.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.25|4|System Health.Current.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.26|4|System Health.Current.Error Info +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.27|4|System Health.Current.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.28|4|System Health.Current.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.29|4|System Health.Supply.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.30|4|System Health.Supply.Error Info +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.31|4|System Health.Supply.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.32|4|System Health.Supply.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.33|4|Memory.USB-Stick.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.34|4|Memory.USB-Stick.Size +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.35|4|Memory.USB-Stick.Usage +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.36|4|Memory.USB-Stick.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.37|4|Memory.USB-Stick.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.38|4|Memory.USB-Stick.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.39|4|Webcam.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.40|4|Webcam.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.41|4|Webcam.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.42|4|Webcam.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.43|4|Login.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.44|4|Login.Attempts +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.45|4|Login.User Count +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.46|4|Login.Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.47|4|Login.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.48|4|Login.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.1|4|Total.Frequency.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.2|4|Total.Neutral Current.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.3|4|Total.Neutral Current.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.4|4|Total.Neutral Current.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.5|4|Total.Neutral Current.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.6|4|Total.Neutral Current.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.7|4|Total.Neutral Current.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.8|4|Total.Neutral Current.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.9|4|Total.Neutral Current.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.10|4|Total.Neutral Current.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.11|4|Total.Power.Active.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.12|4|Total.Power.Active.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.13|4|Total.Power.Active.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.14|4|Total.Power.Active.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.15|4|Total.Power.Active.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.16|4|Total.Power.Active.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.17|4|Total.Power.Active.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.18|4|Total.Power.Active.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.19|4|Total.Power.Active.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.20|4|Total.Energy.Active.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.21|4|Total.Energy.Active.Runtime.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.22|4|Total.Energy.Active Custom.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.23|4|Total.Energy.Active Custom.Runtime.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.24|4|Total.Mounting Position +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.25|4|Phase L1.Voltage.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.26|4|Phase L1.Voltage.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.27|4|Phase L1.Voltage.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.28|4|Phase L1.Voltage.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.29|4|Phase L1.Voltage.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.30|4|Phase L1.Voltage.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.31|4|Phase L1.Voltage.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.32|4|Phase L1.Voltage.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.33|4|Phase L1.Voltage.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.34|4|Phase L1.Voltage.THD.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.35|4|Phase L1.Current.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.36|4|Phase L1.Current.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.37|4|Phase L1.Current.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.38|4|Phase L1.Current.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.39|4|Phase L1.Current.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.40|4|Phase L1.Current.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.41|4|Phase L1.Current.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.42|4|Phase L1.Current.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.43|4|Phase L1.Current.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.44|4|Phase L1.Current.THD.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.45|4|Phase L1.Power.Factor.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.46|4|Phase L1.Power.Active.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.47|4|Phase L1.Power.Active.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.48|4|Phase L1.Power.Active.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.49|4|Phase L1.Power.Active.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.50|4|Phase L1.Power.Active.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.51|4|Phase L1.Power.Active.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.52|4|Phase L1.Power.Active.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.53|4|Phase L1.Power.Active.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.54|4|Phase L1.Power.Active.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.55|4|Phase L1.Power.Reactive.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.56|4|Phase L1.Power.Apparent.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.57|4|Phase L1.Energy.Active.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.58|4|Phase L1.Energy.Active Custom.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.59|4|Phase L1.Energy.Apparent.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.60|4|Phase L1.Fuses.Fuse 1.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.61|4|Phase L1.Fuses.Fuse 1.Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.62|4|Phase L1.Fuses.Fuse 1.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.63|4|Phase L1.Fuses.Fuse 1.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.64|4|Phase L1.Fuses.Fuse 2.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.65|4|Phase L1.Fuses.Fuse 2.Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.66|4|Phase L1.Fuses.Fuse 2.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.67|4|Phase L1.Fuses.Fuse 2.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.68|4|Phase L2.Voltage.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.69|4|Phase L2.Voltage.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.70|4|Phase L2.Voltage.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.71|4|Phase L2.Voltage.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.72|4|Phase L2.Voltage.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.73|4|Phase L2.Voltage.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.74|4|Phase L2.Voltage.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.75|4|Phase L2.Voltage.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.76|4|Phase L2.Voltage.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.77|4|Phase L2.Voltage.THD.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.78|4|Phase L2.Current.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.79|4|Phase L2.Current.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.80|4|Phase L2.Current.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.81|4|Phase L2.Current.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.82|4|Phase L2.Current.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.83|4|Phase L2.Current.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.84|4|Phase L2.Current.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.85|4|Phase L2.Current.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.86|4|Phase L2.Current.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.87|4|Phase L2.Current.THD.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.88|4|Phase L2.Power.Factor.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.89|4|Phase L2.Power.Active.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.90|4|Phase L2.Power.Active.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.91|4|Phase L2.Power.Active.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.92|4|Phase L2.Power.Active.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.93|4|Phase L2.Power.Active.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.94|4|Phase L2.Power.Active.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.95|4|Phase L2.Power.Active.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.96|4|Phase L2.Power.Active.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.97|4|Phase L2.Power.Active.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.98|4|Phase L2.Power.Reactive.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.99|4|Phase L2.Power.Apparent.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.100|4|Phase L2.Energy.Active.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.101|4|Phase L2.Energy.Active Custom.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.102|4|Phase L2.Energy.Apparent.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.103|4|Phase L2.Fuses.Fuse 1.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.104|4|Phase L2.Fuses.Fuse 1.Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.105|4|Phase L2.Fuses.Fuse 1.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.106|4|Phase L2.Fuses.Fuse 1.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.107|4|Phase L2.Fuses.Fuse 2.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.108|4|Phase L2.Fuses.Fuse 2.Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.109|4|Phase L2.Fuses.Fuse 2.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.110|4|Phase L2.Fuses.Fuse 2.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.111|4|Phase L3.Voltage.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.112|4|Phase L3.Voltage.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.113|4|Phase L3.Voltage.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.114|4|Phase L3.Voltage.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.115|4|Phase L3.Voltage.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.116|4|Phase L3.Voltage.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.117|4|Phase L3.Voltage.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.118|4|Phase L3.Voltage.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.119|4|Phase L3.Voltage.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.120|4|Phase L3.Voltage.THD.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.121|4|Phase L3.Current.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.122|4|Phase L3.Current.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.123|4|Phase L3.Current.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.124|4|Phase L3.Current.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.125|4|Phase L3.Current.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.126|4|Phase L3.Current.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.127|4|Phase L3.Current.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.128|4|Phase L3.Current.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.129|4|Phase L3.Current.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.130|4|Phase L3.Current.THD.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.131|4|Phase L3.Power.Factor.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.132|4|Phase L3.Power.Active.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.133|4|Phase L3.Power.Active.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.134|4|Phase L3.Power.Active.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.135|4|Phase L3.Power.Active.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.136|4|Phase L3.Power.Active.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.137|4|Phase L3.Power.Active.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.138|4|Phase L3.Power.Active.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.139|4|Phase L3.Power.Active.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.140|4|Phase L3.Power.Active.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.141|4|Phase L3.Power.Reactive.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.142|4|Phase L3.Power.Apparent.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.143|4|Phase L3.Energy.Active.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.144|4|Phase L3.Energy.Active Custom.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.145|4|Phase L3.Energy.Apparent.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.146|4|Phase L3.Fuses.Fuse 1.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.147|4|Phase L3.Fuses.Fuse 1.Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.148|4|Phase L3.Fuses.Fuse 1.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.149|4|Phase L3.Fuses.Fuse 1.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.150|4|Phase L3.Fuses.Fuse 2.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.151|4|Phase L3.Fuses.Fuse 2.Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.152|4|Phase L3.Fuses.Fuse 2.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.153|4|Phase L3.Fuses.Fuse 2.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.154|4|Sockets.General.Power On Delay Multiplier +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.155|4|Sockets.Socket 01.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.156|4|Sockets.Socket 01.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.157|4|Sockets.Socket 01.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.158|4|Sockets.Socket 01.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.159|4|Sockets.Socket 01.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.160|4|Sockets.Socket 01.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.161|4|Sockets.Socket 01.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.162|4|Sockets.Socket 01.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.163|4|Sockets.Socket 01.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.164|4|Sockets.Socket 02.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.165|4|Sockets.Socket 02.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.166|4|Sockets.Socket 02.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.167|4|Sockets.Socket 02.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.168|4|Sockets.Socket 02.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.169|4|Sockets.Socket 02.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.170|4|Sockets.Socket 02.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.171|4|Sockets.Socket 02.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.172|4|Sockets.Socket 02.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.173|4|Sockets.Socket 03.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.174|4|Sockets.Socket 03.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.175|4|Sockets.Socket 03.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.176|4|Sockets.Socket 03.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.177|4|Sockets.Socket 03.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.178|4|Sockets.Socket 03.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.179|4|Sockets.Socket 03.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.180|4|Sockets.Socket 03.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.181|4|Sockets.Socket 03.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.182|4|Sockets.Socket 04.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.183|4|Sockets.Socket 04.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.184|4|Sockets.Socket 04.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.185|4|Sockets.Socket 04.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.186|4|Sockets.Socket 04.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.187|4|Sockets.Socket 04.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.188|4|Sockets.Socket 04.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.189|4|Sockets.Socket 04.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.190|4|Sockets.Socket 04.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.191|4|Sockets.Socket 05.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.192|4|Sockets.Socket 05.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.193|4|Sockets.Socket 05.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.194|4|Sockets.Socket 05.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.195|4|Sockets.Socket 05.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.196|4|Sockets.Socket 05.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.197|4|Sockets.Socket 05.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.198|4|Sockets.Socket 05.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.199|4|Sockets.Socket 05.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.200|4|Sockets.Socket 06.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.201|4|Sockets.Socket 06.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.202|4|Sockets.Socket 06.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.203|4|Sockets.Socket 06.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.204|4|Sockets.Socket 06.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.205|4|Sockets.Socket 06.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.206|4|Sockets.Socket 06.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.207|4|Sockets.Socket 06.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.208|4|Sockets.Socket 06.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.209|4|Sockets.Socket 07.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.210|4|Sockets.Socket 07.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.211|4|Sockets.Socket 07.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.212|4|Sockets.Socket 07.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.213|4|Sockets.Socket 07.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.214|4|Sockets.Socket 07.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.215|4|Sockets.Socket 07.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.216|4|Sockets.Socket 07.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.217|4|Sockets.Socket 07.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.218|4|Sockets.Socket 08.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.219|4|Sockets.Socket 08.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.220|4|Sockets.Socket 08.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.221|4|Sockets.Socket 08.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.222|4|Sockets.Socket 08.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.223|4|Sockets.Socket 08.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.224|4|Sockets.Socket 08.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.225|4|Sockets.Socket 08.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.226|4|Sockets.Socket 08.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.227|4|Sockets.Socket 09.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.228|4|Sockets.Socket 09.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.229|4|Sockets.Socket 09.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.230|4|Sockets.Socket 09.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.231|4|Sockets.Socket 09.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.232|4|Sockets.Socket 09.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.233|4|Sockets.Socket 09.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.234|4|Sockets.Socket 09.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.235|4|Sockets.Socket 09.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.236|4|Sockets.Socket 10.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.237|4|Sockets.Socket 10.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.238|4|Sockets.Socket 10.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.239|4|Sockets.Socket 10.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.240|4|Sockets.Socket 10.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.241|4|Sockets.Socket 10.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.242|4|Sockets.Socket 10.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.243|4|Sockets.Socket 10.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.244|4|Sockets.Socket 10.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.245|4|Sockets.Socket 11.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.246|4|Sockets.Socket 11.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.247|4|Sockets.Socket 11.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.248|4|Sockets.Socket 11.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.249|4|Sockets.Socket 11.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.250|4|Sockets.Socket 11.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.251|4|Sockets.Socket 11.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.252|4|Sockets.Socket 11.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.253|4|Sockets.Socket 11.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.254|4|Sockets.Socket 12.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.255|4|Sockets.Socket 12.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.256|4|Sockets.Socket 12.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.257|4|Sockets.Socket 12.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.258|4|Sockets.Socket 12.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.259|4|Sockets.Socket 12.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.260|4|Sockets.Socket 12.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.261|4|Sockets.Socket 12.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.262|4|Sockets.Socket 12.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.263|4|Sockets.Socket 13.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.264|4|Sockets.Socket 13.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.265|4|Sockets.Socket 13.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.266|4|Sockets.Socket 13.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.267|4|Sockets.Socket 13.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.268|4|Sockets.Socket 13.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.269|4|Sockets.Socket 13.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.270|4|Sockets.Socket 13.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.271|4|Sockets.Socket 13.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.272|4|Sockets.Socket 14.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.273|4|Sockets.Socket 14.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.274|4|Sockets.Socket 14.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.275|4|Sockets.Socket 14.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.276|4|Sockets.Socket 14.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.277|4|Sockets.Socket 14.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.278|4|Sockets.Socket 14.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.279|4|Sockets.Socket 14.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.280|4|Sockets.Socket 14.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.281|4|Sockets.Socket 15.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.282|4|Sockets.Socket 15.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.283|4|Sockets.Socket 15.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.284|4|Sockets.Socket 15.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.285|4|Sockets.Socket 15.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.286|4|Sockets.Socket 15.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.287|4|Sockets.Socket 15.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.288|4|Sockets.Socket 15.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.289|4|Sockets.Socket 15.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.290|4|Sockets.Socket 16.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.291|4|Sockets.Socket 16.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.292|4|Sockets.Socket 16.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.293|4|Sockets.Socket 16.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.294|4|Sockets.Socket 16.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.295|4|Sockets.Socket 16.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.296|4|Sockets.Socket 16.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.297|4|Sockets.Socket 16.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.298|4|Sockets.Socket 16.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.299|4|Sockets.Socket 17.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.300|4|Sockets.Socket 17.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.301|4|Sockets.Socket 17.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.302|4|Sockets.Socket 17.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.303|4|Sockets.Socket 17.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.304|4|Sockets.Socket 17.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.305|4|Sockets.Socket 17.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.306|4|Sockets.Socket 17.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.307|4|Sockets.Socket 17.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.308|4|Sockets.Socket 18.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.309|4|Sockets.Socket 18.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.310|4|Sockets.Socket 18.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.311|4|Sockets.Socket 18.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.312|4|Sockets.Socket 18.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.313|4|Sockets.Socket 18.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.314|4|Sockets.Socket 18.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.315|4|Sockets.Socket 18.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.316|4|Sockets.Socket 18.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.317|4|Sockets.Socket 19.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.318|4|Sockets.Socket 19.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.319|4|Sockets.Socket 19.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.320|4|Sockets.Socket 19.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.321|4|Sockets.Socket 19.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.322|4|Sockets.Socket 19.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.323|4|Sockets.Socket 19.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.324|4|Sockets.Socket 19.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.325|4|Sockets.Socket 19.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.326|4|Sockets.Socket 20.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.327|4|Sockets.Socket 20.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.328|4|Sockets.Socket 20.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.329|4|Sockets.Socket 20.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.330|4|Sockets.Socket 20.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.331|4|Sockets.Socket 20.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.332|4|Sockets.Socket 20.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.333|4|Sockets.Socket 20.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.334|4|Sockets.Socket 20.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.335|4|Sockets.Socket 21.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.336|4|Sockets.Socket 21.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.337|4|Sockets.Socket 21.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.338|4|Sockets.Socket 21.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.339|4|Sockets.Socket 21.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.340|4|Sockets.Socket 21.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.341|4|Sockets.Socket 21.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.342|4|Sockets.Socket 21.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.343|4|Sockets.Socket 21.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.344|4|Sockets.Socket 22.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.345|4|Sockets.Socket 22.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.346|4|Sockets.Socket 22.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.347|4|Sockets.Socket 22.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.348|4|Sockets.Socket 22.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.349|4|Sockets.Socket 22.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.350|4|Sockets.Socket 22.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.351|4|Sockets.Socket 22.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.352|4|Sockets.Socket 22.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.353|4|Sockets.Socket 23.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.354|4|Sockets.Socket 23.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.355|4|Sockets.Socket 23.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.356|4|Sockets.Socket 23.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.357|4|Sockets.Socket 23.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.358|4|Sockets.Socket 23.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.359|4|Sockets.Socket 23.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.360|4|Sockets.Socket 23.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.361|4|Sockets.Socket 23.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.362|4|Sockets.Socket 24.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.363|4|Sockets.Socket 24.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.364|4|Sockets.Socket 24.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.365|4|Sockets.Socket 24.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.366|4|Sockets.Socket 24.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.367|4|Sockets.Socket 24.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.368|4|Sockets.Socket 24.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.369|4|Sockets.Socket 24.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.370|4|Sockets.Socket 24.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.371|4|Sockets.Socket 25.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.372|4|Sockets.Socket 25.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.373|4|Sockets.Socket 25.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.374|4|Sockets.Socket 25.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.375|4|Sockets.Socket 25.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.376|4|Sockets.Socket 25.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.377|4|Sockets.Socket 25.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.378|4|Sockets.Socket 25.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.379|4|Sockets.Socket 25.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.380|4|Sockets.Socket 26.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.381|4|Sockets.Socket 26.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.382|4|Sockets.Socket 26.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.383|4|Sockets.Socket 26.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.384|4|Sockets.Socket 26.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.385|4|Sockets.Socket 26.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.386|4|Sockets.Socket 26.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.387|4|Sockets.Socket 26.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.388|4|Sockets.Socket 26.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.389|4|Sockets.Socket 27.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.390|4|Sockets.Socket 27.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.391|4|Sockets.Socket 27.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.392|4|Sockets.Socket 27.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.393|4|Sockets.Socket 27.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.394|4|Sockets.Socket 27.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.395|4|Sockets.Socket 27.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.396|4|Sockets.Socket 27.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.397|4|Sockets.Socket 27.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.398|4|Sockets.Socket 28.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.399|4|Sockets.Socket 28.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.400|4|Sockets.Socket 28.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.401|4|Sockets.Socket 28.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.402|4|Sockets.Socket 28.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.403|4|Sockets.Socket 28.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.404|4|Sockets.Socket 28.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.405|4|Sockets.Socket 28.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.406|4|Sockets.Socket 28.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.407|4|Sockets.Socket 29.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.408|4|Sockets.Socket 29.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.409|4|Sockets.Socket 29.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.410|4|Sockets.Socket 29.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.411|4|Sockets.Socket 29.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.412|4|Sockets.Socket 29.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.413|4|Sockets.Socket 29.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.414|4|Sockets.Socket 29.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.415|4|Sockets.Socket 29.General.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.416|4|Sockets.Socket 30.General.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.417|4|Sockets.Socket 30.General.Circuit +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.418|4|Sockets.Socket 30.General.Socket Type +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.419|4|Sockets.Socket 30.General.Relay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.420|4|Sockets.Socket 30.General.Power On Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.421|4|Sockets.Socket 30.General.Sequence Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.422|4|Sockets.Socket 30.General.Grouping +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.423|4|Sockets.Socket 30.General.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.424|4|Sockets.Socket 30.General.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|15 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.4|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.5|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.6|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.7|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.8|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.9|2|15 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.10|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.11|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.12|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.13|2|95 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.14|2|2 +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|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.19|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.20|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.21|2|38 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.22|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.23|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.24|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.25|2|81 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.26|2|38 +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|38 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.31|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.32|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.33|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.34|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.35|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.36|2|81 +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|81 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.41|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.42|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.43|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.44|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.45|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.46|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.47|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.48|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.1|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.2|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.3|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.4|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.5|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.6|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.7|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.8|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.9|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.10|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.11|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.12|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.13|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.14|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.15|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.16|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.17|2|6 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.21|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.22|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.23|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.24|2|93 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.27|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.28|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.29|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.30|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.31|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.32|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.33|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.34|2|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.37|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.38|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.39|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.40|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.41|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.42|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.43|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.44|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.45|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.46|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.47|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.48|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.49|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.50|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.51|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.52|2|6 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.56|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.57|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.58|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.59|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.60|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.61|2|19 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.62|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.63|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.64|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.65|2|19 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.66|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.67|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.68|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.69|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.70|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.71|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.72|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.73|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.74|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.75|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.76|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.77|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.78|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.79|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.80|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.81|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.82|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.83|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.84|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.85|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.86|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.87|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.88|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.89|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.90|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.91|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.92|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.93|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.94|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.95|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.96|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.97|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.98|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.99|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.100|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.101|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.102|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.103|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.104|2|19 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.105|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.106|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.107|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.108|2|19 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.109|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.110|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.111|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.112|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.113|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.114|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.115|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.116|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.117|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.118|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.119|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.120|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.121|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.122|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.123|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.124|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.125|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.126|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.127|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.128|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.129|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.130|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.131|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.132|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.133|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.134|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.135|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.136|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.137|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.138|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.139|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.140|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.141|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.142|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.143|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.144|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.145|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.146|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.147|2|19 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.148|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.149|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.150|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.151|2|19 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.152|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.153|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.154|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.155|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.156|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.157|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.158|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.159|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.160|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.161|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.162|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.163|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.164|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.165|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.166|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.167|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.168|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.169|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.170|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.171|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.172|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.173|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.174|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.175|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.176|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.177|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.178|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.179|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.180|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.181|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.182|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.183|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.184|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.185|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.186|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.187|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.188|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.189|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.190|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.191|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.192|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.193|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.194|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.195|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.196|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.197|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.198|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.199|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.200|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.201|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.202|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.203|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.204|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.205|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.206|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.207|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.208|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.209|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.210|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.211|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.212|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.213|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.214|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.215|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.216|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.217|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.218|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.219|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.220|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.221|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.222|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.223|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.224|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.225|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.226|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.227|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.228|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.229|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.230|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.231|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.232|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.233|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.234|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.235|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.236|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.237|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.238|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.239|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.240|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.241|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.242|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.243|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.244|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.245|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.246|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.247|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.248|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.249|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.250|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.251|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.252|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.253|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.254|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.255|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.256|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.257|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.258|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.259|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.260|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.261|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.262|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.263|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.264|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.265|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.266|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.267|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.268|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.269|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.270|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.271|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.272|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.273|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.274|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.275|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.276|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.277|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.278|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.279|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.280|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.281|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.282|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.283|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.284|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.285|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.286|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.287|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.288|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.289|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.290|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.291|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.292|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.293|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.294|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.295|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.296|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.297|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.298|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.299|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.300|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.301|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.302|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.303|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.304|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.305|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.306|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.307|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.308|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.309|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.310|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.311|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.312|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.313|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.314|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.315|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.316|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.317|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.318|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.319|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.320|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.321|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.322|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.323|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.324|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.325|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.326|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.327|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.328|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.329|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.330|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.331|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.332|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.333|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.334|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.335|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.336|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.337|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.338|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.339|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.340|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.341|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.342|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.343|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.344|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.345|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.346|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.347|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.348|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.349|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.350|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.351|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.352|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.353|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.354|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.355|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.356|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.357|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.358|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.359|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.360|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.361|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.362|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.363|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.364|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.365|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.366|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.367|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.368|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.369|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.370|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.371|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.372|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.373|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.374|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.375|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.376|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.377|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.378|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.379|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.380|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.381|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.382|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.383|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.384|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.385|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.386|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.387|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.388|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.389|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.390|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.391|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.392|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.393|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.394|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.395|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.396|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.397|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.398|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.399|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.400|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.401|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.402|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.403|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.404|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.405|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.406|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.407|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.408|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.409|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.410|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.411|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.412|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.413|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.414|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.415|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.416|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.417|2|42 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.418|2|44 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.419|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.420|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.421|2|56 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.422|2|100 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.423|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.424|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| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.3|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.4|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.5|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.6|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.7|4| +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|% +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| +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| +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|GB +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| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.41|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.42|4| +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|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.47|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.48|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.1|4|Hz +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|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.4|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.5|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.6|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.7|4|A +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| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.11|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.12|4|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.13|4|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.14|4|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.15|4|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.16|4|W +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|kWh +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.21|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.22|4|kWh +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.23|4|s +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|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.27|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.28|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.29|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.30|4|V +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|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.37|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.38|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.39|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.40|4|A +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|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.48|4|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.49|4|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.50|4|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.51|4|W +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|var +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.56|4|VA +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.57|4|kWh +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.58|4|kWh +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.59|4|kVAh +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.60|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.61|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.62|4| +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|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.70|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.71|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.72|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.73|4|V +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|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.80|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.81|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.82|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.83|4|A +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|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.91|4|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.92|4|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.93|4|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.94|4|W +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|var +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.99|4|VA +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.100|4|kWh +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.101|4|kWh +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.102|4|kVAh +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.2.105|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.106|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.107|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.108|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.109|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.110|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.111|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.112|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.113|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.114|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.115|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.116|4|V +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.117|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.118|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.119|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.120|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.121|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.122|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.123|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.124|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.125|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.126|4|A +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.127|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.128|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.129|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.130|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.131|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.132|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.133|4|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.134|4|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.135|4|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.136|4|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.137|4|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.138|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.139|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.140|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.141|4|var +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.142|4|VA +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.143|4|kWh +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.144|4|kWh +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.145|4|kVAh +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.146|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.147|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.148|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.149|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.150|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.151|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.152|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.153|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.154|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.155|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.156|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.157|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.158|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.159|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.160|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.161|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.162|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.163|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.164|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.165|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.166|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.167|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.168|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.169|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.170|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.171|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.172|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.173|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.174|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.175|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.176|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.177|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.178|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.179|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.180|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.181|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.182|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.183|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.184|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.185|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.186|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.187|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.188|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.189|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.190|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.191|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.192|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.193|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.194|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.195|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.196|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.197|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.198|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.199|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.200|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.201|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.202|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.203|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.204|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.205|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.206|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.207|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.208|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.209|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.210|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.211|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.212|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.213|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.214|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.215|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.216|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.217|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.218|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.219|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.220|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.221|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.222|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.223|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.224|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.225|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.226|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.227|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.228|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.229|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.230|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.231|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.232|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.233|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.234|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.235|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.236|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.237|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.238|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.239|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.240|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.241|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.242|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.243|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.244|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.245|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.246|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.247|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.248|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.249|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.250|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.251|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.252|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.253|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.254|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.255|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.256|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.257|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.258|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.259|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.260|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.261|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.262|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.263|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.264|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.265|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.266|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.267|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.268|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.269|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.270|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.271|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.272|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.273|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.274|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.275|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.276|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.277|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.278|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.279|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.280|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.281|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.282|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.283|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.284|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.285|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.286|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.287|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.288|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.289|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.290|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.291|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.292|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.293|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.294|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.295|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.296|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.297|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.298|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.299|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.300|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.301|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.302|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.303|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.304|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.305|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.306|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.307|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.308|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.309|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.310|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.311|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.312|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.313|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.314|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.315|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.316|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.317|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.318|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.319|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.320|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.321|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.322|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.323|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.324|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.325|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.326|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.327|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.328|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.329|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.330|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.331|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.332|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.333|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.334|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.335|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.336|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.337|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.338|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.339|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.340|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.341|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.342|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.343|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.344|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.345|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.346|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.347|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.348|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.349|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.350|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.351|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.352|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.353|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.354|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.355|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.356|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.357|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.358|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.359|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.360|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.361|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.362|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.363|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.364|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.365|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.366|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.367|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.368|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.369|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.370|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.371|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.372|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.373|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.374|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.375|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.376|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.377|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.378|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.379|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.380|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.381|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.382|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.383|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.384|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.385|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.386|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.387|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.388|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.389|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.390|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.391|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.392|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.393|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.394|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.395|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.396|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.397|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.398|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.399|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.400|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.401|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.402|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.403|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.404|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.405|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.406|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.407|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.408|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.409|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.410|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.411|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.412|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.413|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.414|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.415|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.416|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.417|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.418|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.419|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.420|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.421|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.422|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.423|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.424|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|4 +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|4 +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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.8|2|4 +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|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.11|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.12|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.13|2|4 +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|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.19|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.20|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.21|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.22|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.23|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.24|2|3 +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|3 +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|3 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.33|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.34|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.35|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.36|2|4 +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|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.41|2|4 +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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.44|2|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.47|2|4 +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.2.1|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.2|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.3|2|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.6|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.7|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.8|2|2 +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|3 +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|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.16|2|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.21|2|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.24|2|4 +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|2 +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|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.31|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.32|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.33|2|2 +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|2 +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|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.41|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.42|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.43|2|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.46|2|3 +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|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.51|2|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.56|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.57|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.58|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.59|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.60|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.61|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.62|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.63|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.64|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.65|2|4 +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|3 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.71|2|2 +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|2 +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|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.76|2|2 +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|3 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.81|2|2 +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|2 +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|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.86|2|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.89|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.90|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.91|2|2 +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|2 +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|2 +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|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.101|2|2 +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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.104|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.105|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.106|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.107|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.108|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.109|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.110|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.111|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.112|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.113|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.114|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.115|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.116|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.117|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.118|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.119|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.120|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.121|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.122|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.123|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.124|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.125|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.126|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.127|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.128|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.129|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.130|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.131|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.132|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.133|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.134|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.135|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.136|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.137|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.138|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.139|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.140|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.141|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.142|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.143|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.144|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.145|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.146|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.147|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.148|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.149|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.150|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.151|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.152|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.153|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.154|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.155|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.156|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.157|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.158|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.159|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.160|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.161|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.162|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.163|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.164|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.165|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.166|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.167|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.168|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.169|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.170|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.171|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.172|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.173|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.174|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.175|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.176|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.177|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.178|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.179|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.180|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.181|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.182|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.183|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.184|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.185|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.186|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.187|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.188|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.189|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.190|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.191|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.192|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.193|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.194|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.195|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.196|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.197|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.198|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.199|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.200|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.201|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.202|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.203|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.204|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.205|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.206|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.207|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.208|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.209|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.210|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.211|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.212|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.213|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.214|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.215|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.216|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.217|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.218|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.219|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.220|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.221|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.222|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.223|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.224|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.225|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.226|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.227|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.228|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.229|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.230|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.231|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.232|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.233|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.234|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.235|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.236|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.237|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.238|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.239|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.240|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.241|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.242|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.243|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.244|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.245|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.246|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.247|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.248|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.249|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.250|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.251|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.252|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.253|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.254|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.255|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.256|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.257|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.258|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.259|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.260|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.261|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.262|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.263|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.264|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.265|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.266|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.267|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.268|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.269|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.270|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.271|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.272|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.273|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.274|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.275|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.276|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.277|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.278|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.279|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.280|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.281|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.282|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.283|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.284|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.285|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.286|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.287|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.288|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.289|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.290|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.291|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.292|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.293|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.294|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.295|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.296|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.297|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.298|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.299|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.300|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.301|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.302|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.303|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.304|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.305|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.306|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.307|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.308|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.309|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.310|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.311|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.312|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.313|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.314|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.315|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.316|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.317|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.318|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.319|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.320|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.321|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.322|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.323|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.324|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.325|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.326|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.327|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.328|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.329|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.330|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.331|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.332|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.333|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.334|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.335|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.336|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.337|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.338|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.339|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.340|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.341|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.342|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.343|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.344|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.345|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.346|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.347|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.348|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.349|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.350|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.351|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.352|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.353|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.354|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.355|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.356|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.357|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.358|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.359|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.360|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.361|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.362|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.363|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.364|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.365|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.366|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.367|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.368|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.369|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.370|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.371|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.372|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.373|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.374|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.375|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.376|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.377|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.378|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.379|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.380|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.381|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.382|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.383|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.384|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.385|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.386|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.387|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.388|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.389|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.390|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.391|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.392|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.393|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.394|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.395|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.396|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.397|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.398|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.399|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.400|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.401|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.402|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.403|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.404|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.405|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.406|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.407|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.408|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.409|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.410|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.411|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.412|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.413|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.414|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.415|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.416|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.417|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.418|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.419|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.420|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.421|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.422|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.423|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.424|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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.4|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.5|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.6|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.7|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.8|2|0 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.13|2|0 +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|0 +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|0 +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|0 +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|0 +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|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.35|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.36|2|0 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.41|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.42|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.43|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.44|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.45|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.46|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.47|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.48|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.1|2|-10 +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|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.4|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.5|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.6|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.7|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.8|2|-100 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.11|2|0 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.14|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.15|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.16|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.17|2|-100 +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|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.21|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.22|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.23|2|1 +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|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.27|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.28|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.29|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.30|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.31|2|-100 +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|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.37|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.38|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.39|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.40|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.41|2|-100 +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|-100 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.48|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.49|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.50|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.51|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.52|2|-100 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.56|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.57|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.58|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.59|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.60|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.61|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.62|2|0 +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|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.70|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.71|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.72|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.73|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.74|2|-100 +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|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.80|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.81|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.82|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.83|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.84|2|-100 +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|-100 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.91|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.92|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.93|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.94|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.95|2|-100 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.99|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.100|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.101|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.102|2|-10 +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.2.105|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.106|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.107|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.108|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.109|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.110|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.111|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.112|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.113|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.114|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.115|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.116|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.117|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.118|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.119|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.120|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.121|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.122|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.123|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.124|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.125|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.126|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.127|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.128|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.129|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.130|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.131|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.132|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.133|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.134|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.135|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.136|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.137|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.138|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.139|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.140|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.141|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.142|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.143|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.144|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.145|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.146|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.147|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.148|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.149|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.150|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.151|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.152|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.153|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.154|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.155|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.156|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.157|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.158|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.159|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.160|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.161|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.162|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.163|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.164|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.165|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.166|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.167|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.168|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.169|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.170|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.171|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.172|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.173|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.174|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.175|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.176|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.177|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.178|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.179|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.180|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.181|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.182|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.183|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.184|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.185|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.186|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.187|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.188|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.189|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.190|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.191|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.192|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.193|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.194|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.195|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.196|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.197|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.198|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.199|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.200|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.201|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.202|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.203|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.204|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.205|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.206|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.207|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.208|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.209|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.210|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.211|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.212|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.213|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.214|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.215|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.216|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.217|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.218|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.219|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.220|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.221|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.222|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.223|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.224|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.225|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.226|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.227|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.228|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.229|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.230|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.231|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.232|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.233|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.234|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.235|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.236|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.237|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.238|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.239|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.240|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.241|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.242|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.243|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.244|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.245|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.246|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.247|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.248|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.249|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.250|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.251|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.252|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.253|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.254|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.255|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.256|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.257|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.258|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.259|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.260|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.261|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.262|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.263|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.264|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.265|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.266|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.267|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.268|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.269|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.270|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.271|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.272|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.273|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.274|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.275|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.276|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.277|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.278|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.279|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.280|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.281|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.282|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.283|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.284|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.285|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.286|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.287|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.288|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.289|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.290|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.291|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.292|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.293|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.294|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.295|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.296|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.297|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.298|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.299|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.300|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.301|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.302|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.303|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.304|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.305|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.306|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.307|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.308|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.309|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.310|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.311|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.312|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.313|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.314|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.315|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.316|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.317|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.318|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.319|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.320|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.321|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.322|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.323|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.324|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.325|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.326|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.327|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.328|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.329|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.330|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.331|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.332|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.333|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.334|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.335|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.336|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.337|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.338|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.339|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.340|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.341|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.342|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.343|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.344|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.345|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.346|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.347|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.348|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.349|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.350|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.351|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.352|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.353|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.354|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.355|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.356|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.357|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.358|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.359|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.360|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.361|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.362|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.363|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.364|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.365|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.366|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.367|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.368|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.369|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.370|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.371|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.372|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.373|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.374|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.375|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.376|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.377|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.378|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.379|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.380|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.381|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.382|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.383|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.384|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.385|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.386|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.387|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.388|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.389|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.390|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.391|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.392|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.393|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.394|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.395|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.396|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.397|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.398|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.399|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.400|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.401|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.402|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.403|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.404|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.405|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.406|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.407|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.408|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.409|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.410|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.411|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.412|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.413|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.414|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.415|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.416|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.417|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.418|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.419|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.420|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.421|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.422|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.423|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.424|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 0, max 1, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.3|4|enum: 0,1,2,3 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.4|4|integer: min 0, max 1200, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.5|4|enum: 1,4,5,10,11 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.6|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.7|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.8|4|enum: 0,1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.9|4|enum: 0,1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.10|4|enum: 1,4,5,10,11 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.11|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.12|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.13|4|enum: 0-15 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.14|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.15|4|enum: 1,3,4 +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|enum: 1,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.19|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.20|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.21|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.22|4|enum: 1,4,6,8 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.23|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.24|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.25|4|enum: 4,13 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.26|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.27|4|enum: 1,4,5,6,8 +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|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.31|4|enum: 1,4,7,9 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.32|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.33|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.34|4|integer: min 0, max 9999, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.35|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.36|4|enum: 4,9 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.37|4|enum: 1,4,6,8,27,30 +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|enum: 4,10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.41|4|enum: 1,4,5,19 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.42|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.43|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.44|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.45|4|integer: min 0, max 32, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.46|4|integer: min 0, max 3600, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.47|4|enum: 1,4,10,5,33 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.48|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|integer: min 0, max 650, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.2|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.3|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.4|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.5|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.6|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.7|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.8|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.9|4|enum: 1,3,4,6,7,8,9,21 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.10|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.11|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.12|4|integer: min 0, max 27300, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.13|4|integer: min 0, max 27300, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.14|4|integer: min 0, max 27300, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.15|4|integer: min 0, max 27300, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.16|4|integer: min 0, max 27300, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.17|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.18|4|enum: 1,3,4,6,7,8,9,21 +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|integer: min 0, max 2000000000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.21|4|integer: min 0, max 2000000000, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.22|4|integer: min 0, max 2000000000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.23|4|integer: min 0, max 2000000000, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.24|4|enum: 0,1,2,3,4 +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|integer: min 0, max 4000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.27|4|integer: min 0, max 4000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.28|4|integer: min 0, max 4000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.29|4|integer: min 0, max 4000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.30|4|integer: min 0, max 4000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.31|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.32|4|enum: 1,3,4,6,7,8,9,21 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.33|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.34|4|integer: min 0, max 400, 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|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.37|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.38|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.39|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.40|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.41|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.42|4|enum: 1,3,4,6,7,8,9,21 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.43|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.44|4|integer: min 0, max 400, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.45|4|integer: min -100, max 100, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.46|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.47|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.48|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.49|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.50|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.51|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.52|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.53|4|enum: 1,3,4,6,7,8,9,21 +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|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.56|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.57|4|integer: min 0, max 2000000000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.58|4|integer: min 0, max 2000000000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.59|4|integer: min 0, max 2000000000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.60|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.61|4|enum: 0,1,2,3,4,5,6 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.62|4|enum: 1,4,5,21 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.63|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.64|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.65|4|enum: 0,1,2,3,4,5,6 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.66|4|enum: 1,4,5,21 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.67|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.68|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.69|4|integer: min 0, max 4000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.70|4|integer: min 0, max 4000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.71|4|integer: min 0, max 4000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.72|4|integer: min 0, max 4000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.73|4|integer: min 0, max 4000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.74|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.75|4|enum: 1,3,4,6,7,8,9,21 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.76|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.77|4|integer: min 0, max 400, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.78|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.79|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.80|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.81|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.82|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.83|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.84|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.85|4|enum: 1,3,4,6,7,8,9,21 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.86|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.87|4|integer: min 0, max 400, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.88|4|integer: min -100, max 100, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.89|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.90|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.91|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.92|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.93|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.94|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.95|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.96|4|enum: 1,3,4,6,7,8,9,21 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.97|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.98|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.99|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.100|4|integer: min 0, max 2000000000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.101|4|integer: min 0, max 2000000000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.102|4|integer: min 0, max 2000000000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.103|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.104|4|enum: 0,1,2,3,4,5,6 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.105|4|enum: 1,4,5,21 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.106|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.107|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.108|4|enum: 0,1,2,3,4,5,6 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.109|4|enum: 1,4,5,21 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.110|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.111|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.112|4|integer: min 0, max 4000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.113|4|integer: min 0, max 4000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.114|4|integer: min 0, max 4000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.115|4|integer: min 0, max 4000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.116|4|integer: min 0, max 4000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.117|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.118|4|enum: 1,3,4,6,7,8,9,21 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.119|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.120|4|integer: min 0, max 400, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.121|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.122|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.123|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.124|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.125|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.126|4|integer: min 0, max 3500, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.127|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.128|4|enum: 1,3,4,6,7,8,9,21 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.129|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.130|4|integer: min 0, max 400, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.131|4|integer: min -100, max 100, scale /100, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.132|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.133|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.134|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.135|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.136|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.137|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.138|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.139|4|enum: 1,3,4,6,7,8,9,21 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.140|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.141|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.142|4|integer: min 0, max 9100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.143|4|integer: min 0, max 2000000000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.144|4|integer: min 0, max 2000000000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.145|4|integer: min 0, max 2000000000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.146|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.147|4|enum: 0,1,2,3,4,5,6 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.148|4|enum: 1,4,5,21 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.149|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.150|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.151|4|enum: 0,1,2,3,4,5,6 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.152|4|enum: 1,4,5,21 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.153|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.154|4|integer: min 1, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.155|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.156|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.157|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.158|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.159|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.160|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.161|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.162|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.163|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.164|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.165|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.166|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.167|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.168|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.169|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.170|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.171|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.172|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.173|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.174|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.175|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.176|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.177|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.178|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.179|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.180|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.181|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.182|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.183|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.184|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.185|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.186|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.187|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.188|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.189|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.190|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.191|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.192|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.193|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.194|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.195|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.196|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.197|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.198|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.199|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.200|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.201|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.202|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.203|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.204|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.205|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.206|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.207|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.208|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.209|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.210|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.211|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.212|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.213|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.214|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.215|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.216|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.217|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.218|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.219|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.220|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.221|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.222|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.223|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.224|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.225|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.226|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.227|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.228|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.229|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.230|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.231|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.232|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.233|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.234|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.235|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.236|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.237|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.238|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.239|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.240|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.241|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.242|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.243|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.244|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.245|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.246|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.247|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.248|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.249|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.250|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.251|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.252|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.253|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.254|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.255|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.256|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.257|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.258|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.259|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.260|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.261|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.262|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.263|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.264|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.265|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.266|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.267|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.268|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.269|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.270|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.271|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.272|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.273|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.274|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.275|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.276|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.277|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.278|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.279|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.280|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.281|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.282|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.283|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.284|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.285|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.286|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.287|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.288|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.289|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.290|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.291|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.292|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.293|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.294|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.295|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.296|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.297|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.298|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.299|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.300|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.301|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.302|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.303|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.304|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.305|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.306|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.307|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.308|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.309|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.310|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.311|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.312|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.313|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.314|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.315|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.316|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.317|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.318|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.319|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.320|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.321|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.322|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.323|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.324|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.325|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.326|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.327|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.328|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.329|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.330|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.331|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.332|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.333|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.334|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.335|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.336|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.337|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.338|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.339|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.340|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.341|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.342|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.343|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.344|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.345|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.346|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.347|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.348|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.349|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.350|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.351|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.352|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.353|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.354|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.355|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.356|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.357|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.358|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.359|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.360|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.361|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.362|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.363|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.364|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.365|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.366|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.367|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.368|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.369|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.370|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.371|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.372|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.373|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.374|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.375|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.376|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.377|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.378|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.379|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.380|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.381|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.382|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.383|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.384|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.385|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.386|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.387|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.388|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.389|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.390|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.391|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.392|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.393|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.394|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.395|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.396|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.397|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.398|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.399|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.400|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.401|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.402|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.403|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.404|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.405|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.406|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.407|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.408|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.409|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.410|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.411|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.412|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.413|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.414|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.415|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.416|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.417|4|regexp: ^([-_ a-zA-Z0-9]{0,5})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.418|4|enum: 0-12 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.419|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.420|4|integer: min 0, max 3000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.421|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.422|4|integer: min 0, max 99, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.423|4|enum: 1,10,11,21,37 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.424|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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.4|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.5|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.6|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.7|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.8|2|0 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.11|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.12|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.13|2|0 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.19|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.20|2|0 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.23|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.24|2|0 +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|0 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.33|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.34|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.35|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.36|2|0 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.41|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.42|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.43|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.44|2|1 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.47|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.48|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.1|2|1 +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|1 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.6|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.7|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.8|2|10 +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|0 +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|1 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.16|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.17|2|10 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.21|2|1 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.24|2|0 +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|1 +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|1 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.31|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.32|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.33|2|1 +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|1 +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|1 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.41|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.42|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.43|2|1 +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|1 +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|1 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.51|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.52|2|10 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.56|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.57|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.58|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.59|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.60|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.61|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.62|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.63|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.64|2|0 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.71|2|1 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.74|2|10 +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|1 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.81|2|1 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.84|2|10 +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|1 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.89|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.90|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.91|2|1 +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|1 +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|10 +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|1 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.101|2|1 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.105|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.106|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.107|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.108|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.109|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.110|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.111|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.112|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.113|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.114|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.115|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.116|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.117|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.118|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.119|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.120|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.121|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.122|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.123|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.124|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.125|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.126|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.127|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.128|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.129|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.130|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.131|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.132|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.133|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.134|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.135|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.136|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.137|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.138|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.139|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.140|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.141|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.142|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.143|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.144|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.145|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.146|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.147|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.148|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.149|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.150|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.151|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.152|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.153|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.154|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.155|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.156|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.157|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.158|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.159|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.160|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.161|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.162|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.163|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.164|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.165|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.166|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.167|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.168|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.169|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.170|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.171|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.172|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.173|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.174|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.175|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.176|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.177|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.178|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.179|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.180|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.181|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.182|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.183|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.184|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.185|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.186|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.187|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.188|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.189|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.190|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.191|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.192|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.193|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.194|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.195|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.196|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.197|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.198|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.199|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.200|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.201|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.202|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.203|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.204|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.205|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.206|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.207|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.208|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.209|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.210|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.211|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.212|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.213|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.214|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.215|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.216|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.217|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.218|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.219|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.220|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.221|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.222|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.223|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.224|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.225|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.226|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.227|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.228|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.229|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.230|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.231|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.232|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.233|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.234|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.235|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.236|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.237|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.238|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.239|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.240|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.241|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.242|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.243|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.244|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.245|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.246|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.247|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.248|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.249|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.250|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.251|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.252|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.253|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.254|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.255|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.256|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.257|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.258|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.259|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.260|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.261|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.262|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.263|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.264|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.265|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.266|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.267|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.268|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.269|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.270|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.271|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.272|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.273|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.274|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.275|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.276|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.277|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.278|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.279|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.280|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.281|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.282|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.283|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.284|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.285|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.286|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.287|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.288|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.289|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.290|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.291|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.292|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.293|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.294|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.295|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.296|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.297|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.298|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.299|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.300|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.301|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.302|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.303|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.304|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.305|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.306|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.307|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.308|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.309|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.310|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.311|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.312|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.313|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.314|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.315|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.316|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.317|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.318|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.319|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.320|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.321|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.322|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.323|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.324|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.325|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.326|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.327|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.328|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.329|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.330|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.331|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.332|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.333|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.334|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.335|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.336|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.337|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.338|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.339|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.340|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.341|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.342|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.343|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.344|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.345|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.346|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.347|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.348|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.349|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.350|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.351|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.352|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.353|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.354|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.355|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.356|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.357|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.358|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.359|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.360|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.361|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.362|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.363|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.364|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.365|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.366|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.367|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.368|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.369|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.370|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.371|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.372|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.373|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.374|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.375|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.376|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.377|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.378|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.379|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.380|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.381|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.382|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.383|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.384|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.385|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.386|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.387|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.388|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.389|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.390|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.391|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.392|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.393|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.394|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.395|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.396|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.397|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.398|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.399|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.400|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.401|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.402|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.403|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.404|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.405|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.406|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.407|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.408|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.409|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.410|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.411|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.412|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.413|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.414|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.415|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.416|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.417|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.418|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.419|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.420|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.421|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.422|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.423|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.424|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.1|4|Input +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.2|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.3|4|0:Off / 1:On +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.4|4|1.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.5|4|Off +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.6|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.7|4|Alarm Relay +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.8|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.9|4|0:Off / 1:On +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.10|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.11|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.12|4|V24 unit +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.13|4|no SMS unit found +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.14|4|0 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.15|4|n.a. +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.16|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.17|4|PoE +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.18|4|n.a. +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.19|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.20|4|System Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.21|4|none +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.22|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.23|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.24|4|System Current +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.25|4|-- +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.26|4|none +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|System Supply +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.30|4|none +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.31|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.32|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.33|4|USB-Stick +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.34|4|0.0 GB +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.35|4|0 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.36|4|-- +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|Webcam +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.40|4|-- +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.41|4|n.a. +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.42|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.43|4|Login +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.44|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.45|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.46|4|0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.47|4|Off +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.48|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.1|4|50.0 Hz +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.2|4|Neutral Current +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.3|4|3.14 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.4|4|30.00 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.5|4|20.00 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.6|4|0.00 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.7|4|0.00 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.8|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.9|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.10|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.11|4|Power Active +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.12|4|2747 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.13|4|10000 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.14|4|8000 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.15|4|0 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.16|4|0 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.17|4|5.00 % +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.20|4|2641.8 kWh +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.21|4|7043714 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.22|4|2575.9 kWh +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.23|4|7043714 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.24|4|Vertical up +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.25|4|Voltage L1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.26|4|229.2 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.27|4|260.0 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.28|4|250.0 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.29|4|210.0 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.30|4|200.0 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.31|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.32|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.33|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.34|4|0 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.35|4|Current L1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.36|4|4.75 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.37|4|30.00 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.38|4|20.00 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.39|4|0.00 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.40|4|0.00 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.41|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.42|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.43|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.44|4|8 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.45|4|-0.95 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.46|4|Power L1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.47|4|1049 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.48|4|3600 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.49|4|3000 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.50|4|0 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.51|4|0 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.52|4|5.00 % +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.55|4|293 var +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.56|4|1092 VA +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.57|4|999.1 kWh +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.58|4|999.1 kWh +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.59|4|1042.6 kVAh +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.60|4|Fuse L1_1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.61|4|C16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.62|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.63|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.64|4|Fuse L1_2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.65|4|C16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.66|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.67|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.68|4|Voltage L2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.69|4|229.2 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.70|4|260.0 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.71|4|250.0 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.72|4|210.0 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.73|4|200.0 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.74|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.75|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.76|4|0 +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|Current L2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.79|4|5.55 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.80|4|30.00 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.81|4|20.00 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.82|4|0.00 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.83|4|0.00 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.84|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.85|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.86|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.87|4|7 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.88|4|-0.97 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.89|4|Power L2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.90|4|1242 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.91|4|3600 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.92|4|3000 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.93|4|0 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.94|4|0 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.95|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.96|4|OK +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|281 var +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.99|4|1274 VA +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.100|4|1170.5 kWh +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.101|4|1170.5 kWh +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.102|4|1206.6 kVAh +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.103|4|Fuse L2_1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.104|4|C16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.105|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.106|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.107|4|Fuse L2_2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.108|4|C16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.109|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.110|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.111|4|Voltage L3 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.112|4|230.3 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.113|4|260.0 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.114|4|250.0 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.115|4|210.0 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.116|4|200.0 V +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.117|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.118|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.119|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.120|4|0 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.121|4|Current L3 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.122|4|2.37 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.123|4|30.00 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.124|4|20.00 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.125|4|0.00 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.126|4|0.00 A +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.127|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.128|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.129|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.130|4|39 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.131|4|-0.84 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.132|4|Power L3 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.133|4|463 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.134|4|3600 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.135|4|3000 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.136|4|0 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.137|4|0 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.138|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.139|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.140|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.141|4|208 var +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.142|4|547 VA +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.143|4|472.2 kWh +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.144|4|472.2 kWh +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.145|4|549.9 kVAh +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.146|4|Fuse L3_1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.147|4|C16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.148|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.149|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.150|4|Fuse L3_2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.151|4|C16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.152|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.153|4|4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.154|4|1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.155|4|Socket 01 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.156|4|L1_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.157|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.158|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.159|4|0.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.160|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.161|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.162|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.163|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.164|4|Socket 02 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.165|4|L1_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.166|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.167|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.168|4|1.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.169|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.170|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.171|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.172|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.173|4|Socket 03 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.174|4|L1_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.175|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.176|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.177|4|2.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.178|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.179|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.180|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.181|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.182|4|Socket 04 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.183|4|L1_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.184|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.185|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.186|4|3.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.187|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.188|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.189|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.190|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.191|4|Socket 05 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.192|4|L1_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.193|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.194|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.195|4|4.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.196|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.197|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.198|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.199|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.200|4|Socket 06 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.201|4|L1_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.202|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.203|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.204|4|5.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.205|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.206|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.207|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.208|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.209|4|Socket 07 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.210|4|L1_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.211|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.212|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.213|4|6.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.214|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.215|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.216|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.217|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.218|4|Socket 08 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.219|4|L1_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.220|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.221|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.222|4|7.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.223|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.224|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.225|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.226|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.227|4|Socket 09 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.228|4|L1_F2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.229|4|C19 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.230|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.231|4|8.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.232|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.233|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.234|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.235|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.236|4|Socket 10 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.237|4|L1_F2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.238|4|C19 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.239|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.240|4|9.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.241|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.242|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.243|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.244|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.245|4|Socket 11 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.246|4|L2_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.247|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.248|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.249|4|0.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.250|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.251|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.252|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.253|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.254|4|Socket 12 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.255|4|L2_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.256|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.257|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.258|4|1.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.259|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.260|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.261|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.262|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.263|4|Socket 13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.264|4|L2_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.265|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.266|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.267|4|2.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.268|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.269|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.270|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.271|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.272|4|Socket 14 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.273|4|L2_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.274|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.275|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.276|4|3.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.277|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.278|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.279|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.280|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.281|4|Socket 15 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.282|4|L2_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.283|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.284|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.285|4|4.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.286|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.287|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.288|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.289|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.290|4|Socket 16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.291|4|L2_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.292|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.293|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.294|4|5.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.295|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.296|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.297|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.298|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.299|4|Socket 17 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.300|4|L2_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.301|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.302|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.303|4|6.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.304|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.305|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.306|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.307|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.308|4|Socket 18 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.309|4|L2_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.310|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.311|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.312|4|7.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.313|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.314|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.315|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.316|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.317|4|Socket 19 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.318|4|L2_F2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.319|4|C19 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.320|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.321|4|8.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.322|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.323|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.324|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.325|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.326|4|Socket 20 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.327|4|L2_F2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.328|4|C19 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.329|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.330|4|9.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.331|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.332|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.333|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.334|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.335|4|Socket 21 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.336|4|L3_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.337|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.338|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.339|4|0.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.340|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.341|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.342|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.343|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.344|4|Socket 22 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.345|4|L3_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.346|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.347|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.348|4|1.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.349|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.350|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.351|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.352|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.353|4|Socket 23 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.354|4|L3_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.355|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.356|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.357|4|2.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.358|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.359|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.360|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.361|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.362|4|Socket 24 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.363|4|L3_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.364|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.365|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.366|4|3.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.367|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.368|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.369|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.370|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.371|4|Socket 25 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.372|4|L3_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.373|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.374|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.375|4|4.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.376|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.377|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.378|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.379|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.380|4|Socket 26 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.381|4|L3_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.382|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.383|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.384|4|5.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.385|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.386|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.387|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.388|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.389|4|Socket 27 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.390|4|L3_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.391|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.392|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.393|4|6.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.394|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.395|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.396|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.397|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.398|4|Socket 28 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.399|4|L3_F1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.400|4|C13 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.401|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.402|4|7.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.403|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.404|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.405|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.406|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.407|4|Socket 29 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.408|4|L3_F2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.409|4|C19 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.410|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.411|4|8.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.412|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.413|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.414|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.415|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.416|4|Socket 30 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.417|4|L3_F2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.418|4|C19 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.419|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.420|4|9.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.421|4|- +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.422|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.423|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.424|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.1|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.2|2|0 +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|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.5|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.6|2|16 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.10|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.11|2|16 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.14|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.15|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.16|2|16 +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|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.20|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.21|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.22|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.23|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.24|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.25|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.26|2|0 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.31|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.32|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.33|2|0 +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|4 +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|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.41|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.42|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.43|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.44|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.45|2|0 +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|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.48|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.1|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.2|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.3|2|311 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.4|2|3000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.5|2|2000 +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|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.9|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.10|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.11|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.12|2|2742 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.13|2|10000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.14|2|8000 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.17|2|500 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.20|2|26418 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.21|2|7043714 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.22|2|25759 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.23|2|7043714 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.24|2|1 +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|2292 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.27|2|2600 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.28|2|2500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.29|2|2100 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.30|2|2000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.31|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.32|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.33|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.34|2|0 +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|473 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.37|2|3000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.38|2|2000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.39|2|0 +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|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.42|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.43|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.44|2|8 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.45|2|-95 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.46|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.47|2|1041 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.48|2|3600 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.49|2|3000 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.52|2|500 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.55|2|296 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.56|2|1085 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.57|2|9991 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.58|2|9991 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.59|2|10426 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.60|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.61|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.62|2|4 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.65|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.66|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.67|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.68|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.69|2|2291 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.70|2|2600 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.71|2|2500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.72|2|2100 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.73|2|2000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.74|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.75|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.76|2|0 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.79|2|556 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.80|2|3000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.81|2|2000 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.84|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.85|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.86|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.87|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.88|2|-97 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.89|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.90|2|1240 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.91|2|3600 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.92|2|3000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.93|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.94|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.95|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.96|2|4 +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|283 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.99|2|1275 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.100|2|11705 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.101|2|11705 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.102|2|12066 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.103|2|0 +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.2.105|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.106|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.107|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.108|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.109|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.110|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.111|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.112|2|2303 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.113|2|2600 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.114|2|2500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.115|2|2100 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.116|2|2000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.117|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.118|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.119|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.120|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.121|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.122|2|236 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.123|2|3000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.124|2|2000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.125|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.126|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.127|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.128|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.129|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.130|2|39 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.131|2|-84 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.132|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.133|2|466 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.134|2|3600 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.135|2|3000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.136|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.137|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.138|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.139|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.140|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.141|2|206 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.142|2|544 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.143|2|4722 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.144|2|4722 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.145|2|5499 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.146|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.147|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.148|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.149|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.150|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.151|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.152|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.153|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.154|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.155|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.156|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.157|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.158|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.159|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.160|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.161|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.162|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.163|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.164|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.165|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.166|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.167|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.168|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.169|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.170|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.171|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.172|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.173|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.174|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.175|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.176|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.177|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.178|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.179|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.180|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.181|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.182|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.183|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.184|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.185|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.186|2|30 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.187|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.188|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.189|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.190|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.191|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.192|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.193|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.194|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.195|2|40 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.196|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.197|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.198|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.199|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.200|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.201|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.202|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.203|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.204|2|50 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.205|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.206|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.207|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.208|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.209|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.210|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.211|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.212|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.213|2|60 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.214|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.215|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.216|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.217|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.218|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.219|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.220|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.221|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.222|2|70 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.223|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.224|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.225|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.226|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.227|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.228|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.229|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.230|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.231|2|80 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.232|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.233|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.234|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.235|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.236|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.237|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.238|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.239|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.240|2|90 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.241|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.242|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.243|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.244|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.245|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.246|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.247|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.248|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.249|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.250|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.251|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.252|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.253|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.254|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.255|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.256|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.257|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.258|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.259|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.260|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.261|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.262|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.263|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.264|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.265|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.266|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.267|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.268|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.269|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.270|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.271|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.272|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.273|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.274|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.275|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.276|2|30 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.277|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.278|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.279|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.280|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.281|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.282|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.283|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.284|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.285|2|40 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.286|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.287|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.288|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.289|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.290|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.291|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.292|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.293|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.294|2|50 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.295|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.296|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.297|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.298|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.299|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.300|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.301|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.302|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.303|2|60 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.304|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.305|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.306|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.307|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.308|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.309|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.310|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.311|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.312|2|70 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.313|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.314|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.315|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.316|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.317|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.318|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.319|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.320|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.321|2|80 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.322|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.323|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.324|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.325|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.326|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.327|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.328|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.329|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.330|2|90 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.331|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.332|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.333|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.334|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.335|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.336|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.337|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.338|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.339|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.340|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.341|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.342|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.343|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.344|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.345|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.346|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.347|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.348|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.349|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.350|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.351|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.352|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.353|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.354|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.355|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.356|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.357|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.358|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.359|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.360|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.361|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.362|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.363|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.364|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.365|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.366|2|30 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.367|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.368|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.369|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.370|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.371|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.372|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.373|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.374|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.375|2|40 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.376|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.377|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.378|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.379|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.380|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.381|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.382|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.383|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.384|2|50 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.385|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.386|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.387|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.388|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.389|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.390|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.391|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.392|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.393|2|60 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.394|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.395|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.396|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.397|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.398|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.399|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.400|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.401|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.402|2|70 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.403|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.404|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.405|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.406|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.407|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.408|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.409|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.410|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.411|2|80 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.412|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.413|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.414|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.415|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.416|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.417|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.418|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.419|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.420|2|90 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.421|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.422|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.423|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.424|2|0 +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|0 +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|1678604 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.9|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.10|66|1678604 +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|0 +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|0 +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|0 +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|0 +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|0 +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|0 +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|1 +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.2.1|66|4934152 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.2|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.3|66|4941597 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.4|66|833562 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.5|66|833562 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.6|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.7|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.8|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.9|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.10|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.11|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.12|66|4941597 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.13|66|833642 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.14|66|833642 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.15|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.16|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.17|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.18|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.19|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.20|66|4941577 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.21|66|4941597 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.22|66|4941577 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.23|66|4941596 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.24|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.25|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.26|66|4941536 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.27|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.28|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.29|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.30|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.31|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.32|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.33|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.34|66|4688854 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.35|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.36|66|4941597 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.37|66|833546 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.38|66|833546 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.39|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.40|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.41|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.42|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.43|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.44|66|4941540 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.45|66|4941597 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.46|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.47|66|4941597 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.48|66|833610 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.49|66|833610 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.50|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.51|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.52|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.53|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.54|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.55|66|4941597 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.56|66|4941597 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.57|66|4941297 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.58|66|4941297 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.59|66|4941471 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.60|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.61|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.62|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.63|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.64|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.65|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.66|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.67|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.68|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.69|66|4941596 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.70|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.71|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.72|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.73|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.74|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.75|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.76|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.77|66|4688854 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.78|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.79|66|4941596 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.80|66|833551 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.81|66|833551 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.82|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.83|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.84|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.85|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.86|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.87|66|4941596 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.88|66|4833995 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.89|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.90|66|4941597 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.91|66|833620 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.92|66|833620 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.93|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.94|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.95|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.96|66|1678604 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.97|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.98|66|4941597 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.99|66|4941596 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.100|66|4941577 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.101|66|4941577 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.102|66|4941403 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.103|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.104|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.105|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.106|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.107|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.108|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.109|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.110|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.111|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.112|66|4941537 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.113|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.114|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.115|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.116|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.117|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.118|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.119|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.120|66|4688854 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.121|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.122|66|4941595 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.123|66|833555 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.124|66|833555 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.125|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.126|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.127|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.128|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.129|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.130|66|4937671 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.131|66|4941589 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.132|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.133|66|4941597 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.134|66|833628 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.135|66|833628 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.136|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.137|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.138|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.139|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.140|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.141|66|4941597 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.142|66|4941597 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.143|66|4940979 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.144|66|4940979 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.145|66|4941538 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.146|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.147|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.148|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.149|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.150|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.151|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.152|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.153|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.154|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.155|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.156|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.157|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.158|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.159|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.160|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.161|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.162|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.163|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.164|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.165|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.166|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.167|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.168|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.169|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.170|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.171|66|1 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.172|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.173|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.174|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.175|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.176|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.177|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.178|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.179|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.180|66|2 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.181|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.182|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.183|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.184|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.185|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.186|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.187|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.188|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.189|66|2 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.190|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.191|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.192|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.193|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.194|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.195|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.196|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.197|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.198|66|3 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.199|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.200|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.201|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.202|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.203|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.204|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.205|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.206|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.207|66|4 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.208|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.209|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.210|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.211|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.212|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.213|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.214|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.215|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.216|66|5 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.217|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.218|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.219|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.220|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.221|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.222|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.223|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.224|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.225|66|6 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.226|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.227|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.228|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.229|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.230|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.231|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.232|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.233|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.234|66|7 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.235|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.236|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.237|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.238|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.239|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.240|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.241|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.242|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.243|66|8 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.244|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.245|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.246|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.247|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.248|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.249|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.250|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.251|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.252|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.253|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.254|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.255|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.256|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.257|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.258|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.259|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.260|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.261|66|1 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.262|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.263|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.264|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.265|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.266|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.267|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.268|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.269|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.270|66|2 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.271|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.272|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.273|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.274|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.275|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.276|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.277|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.278|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.279|66|2 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.280|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.281|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.282|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.283|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.284|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.285|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.286|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.287|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.288|66|3 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.289|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.290|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.291|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.292|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.293|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.294|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.295|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.296|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.297|66|4 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.298|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.299|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.300|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.301|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.302|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.303|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.304|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.305|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.306|66|5 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.307|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.308|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.309|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.310|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.311|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.312|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.313|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.314|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.315|66|6 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.316|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.317|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.318|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.319|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.320|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.321|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.322|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.323|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.324|66|7 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.325|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.326|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.327|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.328|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.329|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.330|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.331|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.332|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.333|66|8 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.334|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.335|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.336|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.337|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.338|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.339|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.340|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.341|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.342|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.343|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.344|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.345|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.346|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.347|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.348|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.349|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.350|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.351|66|1 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.352|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.353|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.354|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.355|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.356|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.357|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.358|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.359|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.360|66|2 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.361|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.362|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.363|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.364|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.365|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.366|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.367|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.368|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.369|66|2 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.370|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.371|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.372|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.373|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.374|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.375|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.376|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.377|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.378|66|3 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.379|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.380|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.381|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.382|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.383|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.384|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.385|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.386|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.387|66|4 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.388|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.389|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.390|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.391|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.392|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.393|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.394|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.395|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.396|66|5 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.397|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.398|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.399|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.400|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.401|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.402|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.403|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.404|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.405|66|6 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.406|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.407|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.408|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.409|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.410|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.411|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.412|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.413|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.414|66|7 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.415|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.416|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.417|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.418|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.419|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.420|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.421|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.422|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.423|66|8 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.424|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|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.9|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.10|2|2 +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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.13|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.14|2|2 +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|2 +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|3 +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|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.32|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.33|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.34|2|2 +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|3 +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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.41|2|2 +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|3 +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.2.1|2|2 +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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.7|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.8|2|3 +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|3 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.13|2|3 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.21|2|2 +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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.24|2|2 +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|2 +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|3 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.33|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.34|2|2 +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|2 +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|3 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.43|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.44|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.45|2|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.48|2|3 +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|2 +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|3 +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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.61|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.62|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.63|2|3 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.66|2|2 +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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.69|2|2 +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|3 +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|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.78|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.79|2|2 +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|3 +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|2 +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|2 +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|2 +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|3 +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|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.100|2|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.103|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.104|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.105|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.106|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.107|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.108|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.109|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.110|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.111|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.112|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.113|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.114|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.115|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.116|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.117|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.118|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.119|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.120|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.121|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.122|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.123|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.124|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.125|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.126|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.127|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.128|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.129|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.130|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.131|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.132|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.133|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.134|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.135|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.136|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.137|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.138|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.139|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.140|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.141|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.142|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.143|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.144|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.145|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.146|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.147|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.148|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.149|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.150|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.151|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.152|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.153|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.154|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.155|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.156|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.157|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.158|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.159|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.160|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.161|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.162|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.163|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.164|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.165|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.166|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.167|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.168|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.169|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.170|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.171|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.172|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.173|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.174|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.175|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.176|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.177|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.178|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.179|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.180|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.181|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.182|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.183|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.184|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.185|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.186|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.187|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.188|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.189|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.190|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.191|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.192|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.193|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.194|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.195|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.196|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.197|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.198|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.199|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.200|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.201|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.202|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.203|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.204|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.205|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.206|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.207|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.208|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.209|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.210|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.211|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.212|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.213|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.214|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.215|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.216|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.217|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.218|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.219|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.220|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.221|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.222|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.223|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.224|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.225|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.226|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.227|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.228|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.229|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.230|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.231|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.232|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.233|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.234|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.235|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.236|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.237|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.238|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.239|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.240|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.241|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.242|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.243|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.244|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.245|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.246|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.247|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.248|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.249|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.250|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.251|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.252|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.253|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.254|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.255|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.256|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.257|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.258|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.259|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.260|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.261|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.262|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.263|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.264|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.265|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.266|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.267|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.268|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.269|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.270|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.271|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.272|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.273|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.274|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.275|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.276|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.277|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.278|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.279|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.280|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.281|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.282|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.283|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.284|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.285|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.286|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.287|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.288|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.289|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.290|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.291|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.292|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.293|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.294|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.295|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.296|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.297|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.298|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.299|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.300|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.301|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.302|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.303|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.304|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.305|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.306|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.307|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.308|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.309|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.310|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.311|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.312|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.313|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.314|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.315|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.316|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.317|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.318|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.319|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.320|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.321|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.322|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.323|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.324|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.325|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.326|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.327|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.328|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.329|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.330|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.331|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.332|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.333|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.334|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.335|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.336|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.337|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.338|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.339|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.340|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.341|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.342|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.343|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.344|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.345|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.346|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.347|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.348|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.349|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.350|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.351|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.352|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.353|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.354|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.355|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.356|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.357|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.358|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.359|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.360|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.361|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.362|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.363|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.364|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.365|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.366|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.367|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.368|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.369|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.370|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.371|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.372|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.373|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.374|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.375|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.376|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.377|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.378|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.379|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.380|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.381|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.382|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.383|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.384|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.385|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.386|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.387|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.388|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.389|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.390|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.391|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.392|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.393|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.394|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.395|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.396|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.397|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.398|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.399|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.400|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.401|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.402|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.403|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.404|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.405|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.406|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.407|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.408|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.409|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.410|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.411|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.412|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.413|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.414|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.415|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.416|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.417|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.418|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.419|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.420|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.421|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.422|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.423|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.424|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|5 +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|5 +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|2 +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|5 +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.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.2.105|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.106|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.107|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.108|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.109|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.110|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.111|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.112|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.113|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.114|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.115|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.116|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.117|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.118|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.119|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.120|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.121|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.122|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.123|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.124|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.125|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.126|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.127|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.128|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.129|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.130|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.131|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.132|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.133|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.134|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.135|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.136|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.137|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.138|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.139|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.140|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.141|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.142|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.143|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.144|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.145|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.146|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.147|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.148|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.149|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.150|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.151|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.152|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.153|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.154|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.155|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.156|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.157|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.158|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.159|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.160|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.161|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.162|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.163|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.164|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.165|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.166|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.167|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.168|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.169|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.170|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.171|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.172|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.173|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.174|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.175|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.176|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.177|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.178|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.179|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.180|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.181|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.182|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.183|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.184|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.185|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.186|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.187|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.188|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.189|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.190|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.191|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.192|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.193|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.194|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.195|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.196|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.197|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.198|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.199|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.200|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.201|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.202|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.203|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.204|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.205|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.206|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.207|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.208|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.209|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.210|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.211|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.212|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.213|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.214|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.215|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.216|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.217|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.218|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.219|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.220|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.221|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.222|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.223|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.224|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.225|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.226|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.227|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.228|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.229|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.230|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.231|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.232|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.233|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.234|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.235|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.236|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.237|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.238|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.239|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.240|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.241|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.242|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.243|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.244|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.245|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.246|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.247|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.248|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.249|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.250|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.251|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.252|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.253|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.254|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.255|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.256|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.257|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.258|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.259|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.260|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.261|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.262|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.263|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.264|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.265|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.266|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.267|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.268|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.269|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.270|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.271|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.272|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.273|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.274|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.275|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.276|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.277|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.278|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.279|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.280|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.281|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.282|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.283|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.284|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.285|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.286|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.287|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.288|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.289|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.290|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.291|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.292|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.293|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.294|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.295|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.296|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.297|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.298|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.299|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.300|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.301|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.302|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.303|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.304|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.305|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.306|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.307|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.308|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.309|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.310|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.311|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.312|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.313|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.314|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.315|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.316|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.317|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.318|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.319|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.320|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.321|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.322|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.323|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.324|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.325|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.326|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.327|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.328|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.329|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.330|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.331|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.332|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.333|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.334|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.335|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.336|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.337|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.338|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.339|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.340|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.341|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.342|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.343|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.344|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.345|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.346|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.347|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.348|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.349|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.350|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.351|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.352|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.353|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.354|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.355|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.356|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.357|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.358|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.359|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.360|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.361|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.362|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.363|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.364|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.365|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.366|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.367|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.368|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.369|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.370|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.371|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.372|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.373|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.374|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.375|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.376|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.377|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.378|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.379|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.380|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.381|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.382|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.383|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.384|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.385|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.386|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.387|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.388|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.389|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.390|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.391|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.392|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.393|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.394|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.395|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.396|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.397|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.398|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.399|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.400|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.401|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.402|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.403|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.404|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.405|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.406|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.407|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.408|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.409|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.410|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.411|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.412|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.413|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.414|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.415|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.416|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.417|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.418|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.419|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.420|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.421|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.422|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.423|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.424|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|0 +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|1002 +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|0 +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|0 +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|1003 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.35|2|1004 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.36|2|0 +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|0 +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|1005 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.45|2|1006 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.46|2|1007 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.47|2|0 +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.2.1|2|101001 +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|101002 +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|0 +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|101003 +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|101004 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.21|2|101005 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.22|2|101006 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.23|2|101007 +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|101008 +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|101009 +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|101010 +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|101011 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.45|2|101012 +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|101013 +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|101014 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.56|2|101015 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.57|2|101016 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.58|2|101017 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.59|2|101018 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.60|2|0 +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|101019 +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|101020 +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|101021 +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|101022 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.88|2|101023 +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|101024 +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|101025 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.99|2|101026 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.100|2|101027 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.101|2|101028 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.102|2|101029 +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.2.105|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.106|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.107|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.108|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.109|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.110|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.111|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.112|2|101030 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.113|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.114|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.115|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.116|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.117|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.118|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.119|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.120|2|101031 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.121|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.122|2|101032 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.123|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.124|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.125|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.126|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.127|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.128|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.129|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.130|2|101033 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.131|2|101034 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.132|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.133|2|101035 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.134|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.135|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.136|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.137|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.138|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.139|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.140|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.141|2|101036 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.142|2|101037 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.143|2|101038 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.144|2|101039 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.145|2|101040 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.146|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.147|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.148|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.149|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.150|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.151|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.152|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.153|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.154|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.155|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.156|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.157|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.158|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.159|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.160|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.161|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.162|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.163|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.164|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.165|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.166|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.167|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.168|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.169|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.170|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.171|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.172|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.173|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.174|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.175|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.176|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.177|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.178|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.179|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.180|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.181|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.182|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.183|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.184|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.185|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.186|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.187|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.188|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.189|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.190|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.191|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.192|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.193|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.194|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.195|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.196|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.197|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.198|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.199|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.200|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.201|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.202|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.203|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.204|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.205|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.206|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.207|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.208|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.209|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.210|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.211|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.212|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.213|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.214|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.215|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.216|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.217|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.218|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.219|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.220|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.221|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.222|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.223|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.224|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.225|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.226|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.227|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.228|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.229|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.230|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.231|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.232|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.233|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.234|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.235|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.236|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.237|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.238|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.239|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.240|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.241|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.242|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.243|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.244|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.245|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.246|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.247|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.248|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.249|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.250|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.251|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.252|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.253|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.254|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.255|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.256|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.257|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.258|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.259|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.260|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.261|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.262|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.263|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.264|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.265|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.266|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.267|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.268|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.269|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.270|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.271|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.272|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.273|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.274|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.275|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.276|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.277|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.278|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.279|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.280|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.281|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.282|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.283|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.284|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.285|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.286|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.287|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.288|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.289|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.290|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.291|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.292|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.293|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.294|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.295|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.296|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.297|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.298|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.299|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.300|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.301|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.302|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.303|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.304|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.305|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.306|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.307|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.308|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.309|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.310|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.311|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.312|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.313|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.314|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.315|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.316|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.317|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.318|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.319|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.320|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.321|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.322|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.323|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.324|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.325|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.326|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.327|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.328|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.329|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.330|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.331|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.332|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.333|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.334|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.335|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.336|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.337|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.338|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.339|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.340|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.341|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.342|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.343|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.344|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.345|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.346|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.347|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.348|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.349|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.350|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.351|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.352|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.353|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.354|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.355|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.356|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.357|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.358|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.359|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.360|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.361|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.362|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.363|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.364|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.365|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.366|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.367|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.368|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.369|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.370|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.371|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.372|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.373|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.374|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.375|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.376|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.377|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.378|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.379|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.380|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.381|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.382|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.383|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.384|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.385|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.386|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.387|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.388|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.389|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.390|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.391|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.392|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.393|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.394|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.395|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.396|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.397|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.398|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.399|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.400|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.401|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.402|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.403|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.404|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.405|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.406|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.407|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.408|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.409|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.410|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.411|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.412|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.413|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.414|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.415|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.416|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.417|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.418|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.419|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.420|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.421|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.422|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.423|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.424|2|0 +1.3.6.1.6.3.10.2.1.3.0|2|5139277 diff --git a/tests/snmpsim/rittal-lcp_cmciii-pu-lcp.snmprec b/tests/snmpsim/rittal-lcp_cmciii-pu-lcp.snmprec new file mode 100644 index 0000000000..35722b705a --- /dev/null +++ b/tests/snmpsim/rittal-lcp_cmciii-pu-lcp.snmprec @@ -0,0 +1,7027 @@ +1.3.6.1.2.1.1.1.0|4|Rittal LCP SN 41326588 HW V4.01 - SW V3.17.10 +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|514035822 +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|00D09351693F +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|1 +1.3.6.1.2.1.2.2.1.7.4|2|1 +1.3.6.1.2.1.2.2.1.7.5|2|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|1 +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|754168 +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|0 +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|0 +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|2043605 +1.3.6.1.2.1.4.4.0|65|0 +1.3.6.1.2.1.4.5.0|65|0 +1.3.6.1.2.1.4.6.0|65|0 +1.3.6.1.2.1.4.7.0|65|0 +1.3.6.1.2.1.4.8.0|65|0 +1.3.6.1.2.1.4.9.0|65|1559209 +1.3.6.1.2.1.4.10.0|65|1447139 +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.127.0.0.1|2|1 +1.3.6.1.2.1.4.20.1.2.149.217.129.164|2|4 +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.20.1.3.149.217.129.164|64|255.255.240.0 +1.3.6.1.2.1.4.22.1.2.4.149.217.128.1|4x|001B21639C84 +1.3.6.1.2.1.4.22.1.2.4.149.217.128.86|4x|D4AE528EDDCB +1.3.6.1.2.1.4.31.1.1.3.1|65|2043391 +1.3.6.1.2.1.4.31.1.1.3.2|65|1594474 +1.3.6.1.2.1.4.31.1.1.4.1|70|2043391 +1.3.6.1.2.1.4.31.1.1.4.2|70|1594474 +1.3.6.1.2.1.4.31.1.1.5.1|65|225763387 +1.3.6.1.2.1.4.31.1.1.5.2|65|164990645 +1.3.6.1.2.1.4.31.1.1.6.1|70|225763387 +1.3.6.1.2.1.4.31.1.1.6.2|70|164990645 +1.3.6.1.2.1.4.31.1.1.7.1|65|0 +1.3.6.1.2.1.4.31.1.1.7.2|65|0 +1.3.6.1.2.1.4.31.1.1.8.1|65|0 +1.3.6.1.2.1.4.31.1.1.8.2|65|1594472 +1.3.6.1.2.1.4.31.1.1.9.1|65|0 +1.3.6.1.2.1.4.31.1.1.9.2|65|0 +1.3.6.1.2.1.4.31.1.1.10.1|65|0 +1.3.6.1.2.1.4.31.1.1.10.2|65|0 +1.3.6.1.2.1.4.31.1.1.11.1|65|0 +1.3.6.1.2.1.4.31.1.1.11.2|65|0 +1.3.6.1.2.1.4.31.1.1.12.1|65|0 +1.3.6.1.2.1.4.31.1.1.12.2|65|1594472 +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|1594472 +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|2 +1.3.6.1.2.1.4.31.1.1.18.1|65|1558995 +1.3.6.1.2.1.4.31.1.1.18.2|65|31 +1.3.6.1.2.1.4.31.1.1.19.1|70|1558995 +1.3.6.1.2.1.4.31.1.1.19.2|70|31 +1.3.6.1.2.1.4.31.1.1.20.1|65|1446925 +1.3.6.1.2.1.4.31.1.1.20.2|65|21 +1.3.6.1.2.1.4.31.1.1.21.1|70|1446925 +1.3.6.1.2.1.4.31.1.1.21.2|70|21 +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|1446925 +1.3.6.1.2.1.4.31.1.1.30.2|65|21 +1.3.6.1.2.1.4.31.1.1.31.1|70|1446925 +1.3.6.1.2.1.4.31.1.1.31.2|70|21 +1.3.6.1.2.1.4.31.1.1.32.1|65|305325841 +1.3.6.1.2.1.4.31.1.1.32.2|65|1584 +1.3.6.1.2.1.4.31.1.1.33.1|70|305325841 +1.3.6.1.2.1.4.31.1.1.33.2|70|1584 +1.3.6.1.2.1.4.31.1.1.34.1|65|50161 +1.3.6.1.2.1.4.31.1.1.34.2|65|1594472 +1.3.6.1.2.1.4.31.1.1.35.1|70|50161 +1.3.6.1.2.1.4.31.1.1.35.2|70|1594472 +1.3.6.1.2.1.4.31.1.1.36.1|65|1480644 +1.3.6.1.2.1.4.31.1.1.36.2|65|164990493 +1.3.6.1.2.1.4.31.1.1.37.1|70|1480644 +1.3.6.1.2.1.4.31.1.1.37.2|70|164990493 +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|21 +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|21 +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|1584 +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|1584 +1.3.6.1.2.1.4.31.1.1.42.1|65|62610 +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|62610 +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.3.2.16.254.128.0.0.0.0.0.0.2.208.147.255.254.81.105.63|2|4 +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.5.2.16.254.128.0.0.0.0.0.0.2.208.147.255.254.81.105.63|6|1.3.6.1.2.1.4.32.1.5.4.2.16.254.128.0.0.0.0.0.0.0.0.0.0.0.0.0.0.64 +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.34.1.6.2.16.254.128.0.0.0.0.0.0.2.208.147.255.254.81.105.63|2|5 +1.3.6.1.2.1.4.35.1.4.4.1.4.149.217.128.1|4x|001B21639C84 +1.3.6.1.2.1.4.35.1.4.4.1.4.149.217.128.86|4x|D4AE528EDDCB +1.3.6.1.2.1.5.1.0|65|146161 +1.3.6.1.2.1.5.2.0|65|9517 +1.3.6.1.2.1.5.3.0|65|0 +1.3.6.1.2.1.5.4.0|65|0 +1.3.6.1.2.1.5.5.0|65|0 +1.3.6.1.2.1.5.6.0|65|0 +1.3.6.1.2.1.5.7.0|65|0 +1.3.6.1.2.1.5.8.0|65|0 +1.3.6.1.2.1.5.9.0|65|136644 +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|136644 +1.3.6.1.2.1.5.16.0|65|0 +1.3.6.1.2.1.5.17.0|65|0 +1.3.6.1.2.1.5.18.0|65|0 +1.3.6.1.2.1.5.19.0|65|0 +1.3.6.1.2.1.5.20.0|65|0 +1.3.6.1.2.1.5.21.0|65|0 +1.3.6.1.2.1.5.22.0|65|0 +1.3.6.1.2.1.5.23.0|65|136644 +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|146161 +1.3.6.1.2.1.5.29.1.2.2|65|15 +1.3.6.1.2.1.5.29.1.3.1|65|9517 +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|21 +1.3.6.1.2.1.5.29.1.5.1|65|136644 +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.8|65|136644 +1.3.6.1.2.1.5.30.1.3.1.9|65|9517 +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|15 +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|136644 +1.3.6.1.2.1.5.30.1.4.1.8|65|0 +1.3.6.1.2.1.5.30.1.4.1.9|65|0 +1.3.6.1.2.1.5.30.1.4.2.135|65|3 +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.143|65|18 +1.3.6.1.2.1.6.5.0|65|0 +1.3.6.1.2.1.6.6.0|65|29 +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|2272 +1.3.6.1.2.1.6.11.0|65|2973 +1.3.6.1.2.1.6.12.0|65|1 +1.3.6.1.2.1.6.14.0|65|0 +1.3.6.1.2.1.6.15.0|65|0 +1.3.6.1.2.1.6.20.1.4.1.4.0.0.0.0.21|66|1525 +1.3.6.1.2.1.7.1.0|65|1307618 +1.3.6.1.2.1.7.2.0|65|0 +1.3.6.1.2.1.7.3.0|65|0 +1.3.6.1.2.1.7.4.0|65|1307617 +1.3.6.1.2.1.11.1.0|65|1307602 +1.3.6.1.2.1.11.2.0|65|1307601 +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|10561155 +1.3.6.1.2.1.11.14.0|65|0 +1.3.6.1.2.1.11.15.0|65|340253 +1.3.6.1.2.1.11.16.0|65|67431 +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|0 +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|1307603 +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|514044625 +1.3.6.1.2.1.25.1.5.0|66|0 +1.3.6.1.2.1.25.1.6.0|66|66 +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|2 +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|0 +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|65 +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|0 +1.3.6.1.2.1.31.1.1.1.6.2|70|30391943 +1.3.6.1.2.1.31.1.1.1.6.3|70|150341467 +1.3.6.1.2.1.31.1.1.1.6.4|70|1353880134 +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|0 +1.3.6.1.2.1.31.1.1.1.7.2|70|7730345 +1.3.6.1.2.1.31.1.1.1.7.3|70|21041310 +1.3.6.1.2.1.31.1.1.1.7.4|70|17334943 +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|0 +1.3.6.1.2.1.31.1.1.1.10.2|70|4125 +1.3.6.1.2.1.31.1.1.1.10.3|70|107522645 +1.3.6.1.2.1.31.1.1.1.10.4|70|332916084 +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|0 +1.3.6.1.2.1.31.1.1.1.11.2|70|5139396 +1.3.6.1.2.1.31.1.1.1.11.3|70|18575580 +1.3.6.1.2.1.31.1.1.1.11.4|70|1620001 +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.2.1.47.1.1.1.1.2.1|4|CMC III Processing Unit +1.3.6.1.2.1.47.1.1.1.1.2.2|4|Net-SNMP +1.3.6.1.2.1.47.1.1.1.1.2.3|4|loopback +1.3.6.1.2.1.47.1.1.1.1.2.4|4|CANopen fieldbus 0 +1.3.6.1.2.1.47.1.1.1.1.2.5|4|CANopen fieldbus 1 +1.3.6.1.2.1.47.1.1.1.1.2.6|4|Ethernet 10/100Mbps, autodetect, autonegotiate, autopolarity +1.3.6.1.2.1.47.1.1.1.1.2.7|4|Tunnel +1.3.6.1.2.1.47.1.1.1.1.2.8|4|Simple Internet Transition +1.3.6.1.2.1.47.1.1.1.1.2.9|4|AC adapter +1.3.6.1.2.1.47.1.1.1.1.2.10|4|processor: ARM926EJ-S rev 4 +1.3.6.1.2.1.47.1.1.1.1.2.11|4|board: i.MX25 +1.3.6.1.2.1.47.1.1.1.1.2.1000|4| +1.3.6.1.2.1.47.1.1.1.1.2.1001|4|Temperature.Value +1.3.6.1.2.1.47.1.1.1.1.2.1002|4|Access.Value +1.3.6.1.2.1.47.1.1.1.1.2.1003|4|Input 1.Value +1.3.6.1.2.1.47.1.1.1.1.2.1004|4|Input 2.Value +1.3.6.1.2.1.47.1.1.1.1.2.1005|4|System.V24 Port.Signal +1.3.6.1.2.1.47.1.1.1.1.2.1006|4|System.CAN1 Current.Value +1.3.6.1.2.1.47.1.1.1.1.2.1007|4|System.CAN2 Current.Value +1.3.6.1.2.1.47.1.1.1.1.2.1008|4|System.Temperature.Value +1.3.6.1.2.1.47.1.1.1.1.2.1009|4|System.Supply 24V.Value +1.3.6.1.2.1.47.1.1.1.1.2.1010|4|System.Supply 5V0.Value +1.3.6.1.2.1.47.1.1.1.1.2.1011|4|System.Supply 3V3.Value +1.3.6.1.2.1.47.1.1.1.1.2.1012|4|Memory.USB-Stick.Size +1.3.6.1.2.1.47.1.1.1.1.2.1013|4|Memory.USB-Stick.Usage +1.3.6.1.2.1.47.1.1.1.1.2.1014|4|Memory.SD-Card.Size +1.3.6.1.2.1.47.1.1.1.1.2.1015|4|Memory.SD-Card.Usage +1.3.6.1.2.1.47.1.1.1.1.2.1016|4|Login.Attempts +1.3.6.1.2.1.47.1.1.1.1.2.1017|4|Login.User Count +1.3.6.1.2.1.47.1.1.1.1.2.1018|4|Login.Delay +1.3.6.1.2.1.47.1.1.1.1.2.3000|4|LCP-R 30 kW +1.3.6.1.2.1.47.1.1.1.1.2.3001|4|Air Temp.Server In.Top.Value +1.3.6.1.2.1.47.1.1.1.1.2.3002|4|Air Temp.Server In.Center.Value +1.3.6.1.2.1.47.1.1.1.1.2.3003|4|Air Temp.Server In.Bottom.Value +1.3.6.1.2.1.47.1.1.1.1.2.3004|4|Air Temp.Server In.Average.Value +1.3.6.1.2.1.47.1.1.1.1.2.3005|4|Air Temp.Server Out.Top.Value +1.3.6.1.2.1.47.1.1.1.1.2.3006|4|Air Temp.Server Out.Center.Value +1.3.6.1.2.1.47.1.1.1.1.2.3007|4|Air Temp.Server Out.Bottom.Value +1.3.6.1.2.1.47.1.1.1.1.2.3008|4|Air Temp.Server Out.Average.Value +1.3.6.1.2.1.47.1.1.1.1.2.3009|4|Fans.Current Speed.Fan1.Value +1.3.6.1.2.1.47.1.1.1.1.2.3010|4|Fans.Current Speed.Fan2.Value +1.3.6.1.2.1.47.1.1.1.1.2.3011|4|Fans.Current Speed.Fan3.Value +1.3.6.1.2.1.47.1.1.1.1.2.3012|4|Fans.Current Speed.Fan4.Value +1.3.6.1.2.1.47.1.1.1.1.2.3013|4|Fans.Current Speed.Fan5.Value +1.3.6.1.2.1.47.1.1.1.1.2.3014|4|Fans.Current Speed.Fan6.Value +1.3.6.1.2.1.47.1.1.1.1.2.3015|4|Fans.Internal Control.Fan1 +1.3.6.1.2.1.47.1.1.1.1.2.3016|4|Fans.Internal Control.Fan2 +1.3.6.1.2.1.47.1.1.1.1.2.3017|4|Fans.Internal Control.Fan3 +1.3.6.1.2.1.47.1.1.1.1.2.3018|4|Fans.Internal Control.Fan4 +1.3.6.1.2.1.47.1.1.1.1.2.3019|4|Fans.Internal Control.Fan5 +1.3.6.1.2.1.47.1.1.1.1.2.3020|4|Fans.Internal Control.Fan6 +1.3.6.1.2.1.47.1.1.1.1.2.3021|4|Water.Temperatures.In.Value +1.3.6.1.2.1.47.1.1.1.1.2.3022|4|Water.Temperatures.Out.Value +1.3.6.1.2.1.47.1.1.1.1.2.3023|4|Water.Flowrate.Value +1.3.6.1.2.1.47.1.1.1.1.2.3024|4|Control Valve.Current Value.Valve1.Value +1.3.6.1.2.1.47.1.1.1.1.2.3025|4|Control Valve.Internal Control.Valve1 +1.3.6.1.2.1.47.1.1.1.1.2.3026|4|Cooling Capacity.Value +1.3.6.1.2.1.47.1.1.1.1.2.3027|4|Leakage Sensor.Input +1.3.6.1.2.1.47.1.1.1.1.2.3028|4|Condensate Sensor.Input +1.3.6.1.2.1.47.1.1.1.1.2.3029|4|Condensate Pump.Value +1.3.6.1.2.1.47.1.1.1.1.2.3030|4|Condensate Pump.Cycles +1.3.6.1.2.1.47.1.1.1.1.2.3031|4|Condensate Pump.Duration +1.3.6.1.2.1.47.1.1.1.1.2.3032|4|Features.Dewpoint Control.Temperature +1.3.6.1.2.1.47.1.1.1.1.2.3033|4|Features.Dewpoint Control.Relative Humidity +1.3.6.1.2.1.47.1.1.1.1.2.3034|4|Features.Dewpoint Control.Dewpoint +1.3.6.1.2.1.47.1.1.1.1.2.3035|4|Features.Dewpoint Control.Water In +1.3.6.1.2.1.47.1.1.1.1.2.3036|4|Features.Dewpoint Control.Fan Delay +1.3.6.1.2.1.47.1.1.1.1.2.3037|4|Features.Water Control dT.Water In +1.3.6.1.2.1.47.1.1.1.1.2.3038|4|Features.Water Control dT.Water Out +1.3.6.1.2.1.47.1.1.1.1.2.3039|4|Features.Water Control dT.Waterflow +1.3.6.1.2.1.47.1.1.1.1.2.3040|4|Features.Water Control dT.ServerIn Temperature +1.3.6.1.2.1.47.1.1.1.1.2.3041|4|Features.Water Control dT.Setpoint Fallback +1.3.6.1.2.1.47.1.1.1.1.2.3042|4|Features.Water Control dT.Retry +1.3.6.1.2.1.47.1.1.1.1.2.3043|4|Features.Water Control dT.Retry Time +1.3.6.1.2.1.47.1.1.1.1.2.101000|4| +1.3.6.1.2.1.47.1.1.1.1.2.101001|4|Temperature.Value +1.3.6.1.2.1.47.1.1.1.1.2.101002|4|Door Opening.Automatic.Temperature.Value +1.3.6.1.2.1.47.1.1.1.1.2.101003|4|Door Opening.Automatic.Input Alarm.Value +1.3.6.1.2.1.47.1.1.1.1.2.101004|4|Door Opening.Manual Front.Input Access.Value +1.3.6.1.2.1.47.1.1.1.1.2.101005|4|Door Opening.Manual Rear.Input Access.Value +1.3.6.1.2.1.47.1.1.1.1.2.201000|4| +1.3.6.1.2.1.47.1.1.1.1.2.201001|4|Temperature.Value +1.3.6.1.2.1.47.1.1.1.1.3.1|6|0.0.0.0.0.0.0.0.0.0.0 +1.3.6.1.2.1.47.1.1.1.1.3.2|6|1.3.6.1.4.1.8072.3.2.10 +1.3.6.1.2.1.47.1.1.1.1.3.3|6|1.3.6.1.4.1.2606.7.7.2.2 +1.3.6.1.2.1.47.1.1.1.1.3.4|6|1.3.6.1.4.1.2606.7.7.2.3 +1.3.6.1.2.1.47.1.1.1.1.3.5|6|1.3.6.1.4.1.2606.7.7.2.3 +1.3.6.1.2.1.47.1.1.1.1.3.6|6|1.3.6.1.4.1.2606.7.7.2.4 +1.3.6.1.2.1.47.1.1.1.1.3.7|6|1.3.6.1.4.1.2606.7.7.2.6 +1.3.6.1.2.1.47.1.1.1.1.3.8|6|1.3.6.1.4.1.2606.7.7.2.7 +1.3.6.1.2.1.47.1.1.1.1.3.9|6|1.3.6.1.4.1.2606.7.7.3.1 +1.3.6.1.2.1.47.1.1.1.1.3.10|6|1.3.6.1.4.1.4128 +1.3.6.1.2.1.47.1.1.1.1.3.11|6|1.3.6.1.4.1.33118 +1.3.6.1.2.1.47.1.1.1.1.3.1000|6|1.3.6.1.4.1.2606.7.7.4.32768 +1.3.6.1.2.1.47.1.1.1.1.3.1001|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1002|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1003|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1004|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1005|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1006|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1007|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1008|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1009|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1010|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1011|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1012|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1013|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1014|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1015|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1016|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1017|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.1018|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3000|6|1.3.6.1.4.1.2606.7.7.4.9217 +1.3.6.1.2.1.47.1.1.1.1.3.3001|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3002|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3003|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3004|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3005|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3006|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3007|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3008|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3009|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3010|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3011|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3012|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3013|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3014|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3015|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3016|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3017|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3018|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3019|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3020|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3021|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3022|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3023|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3024|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3025|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3026|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3027|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3028|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3029|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3030|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3031|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3032|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3033|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3034|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3035|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3036|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3037|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3038|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3039|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3040|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3041|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3042|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.3043|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.101000|6|1.3.6.1.4.1.2606.7.7.4.4352 +1.3.6.1.2.1.47.1.1.1.1.3.101001|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.101002|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.101003|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.101004|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.101005|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.3.201000|6|1.3.6.1.4.1.2606.7.7.4.768 +1.3.6.1.2.1.47.1.1.1.1.3.201001|6|0.0 +1.3.6.1.2.1.47.1.1.1.1.4.1|2|0 +1.3.6.1.2.1.47.1.1.1.1.4.2|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.3|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.4|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.5|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.6|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.7|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.8|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.9|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.10|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.11|2|1 +1.3.6.1.2.1.47.1.1.1.1.4.1000|2|4 +1.3.6.1.2.1.47.1.1.1.1.4.1001|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1002|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1003|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1004|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1005|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1006|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1007|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1008|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1009|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1010|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1011|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1012|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1013|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1014|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1015|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1016|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1017|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.1018|2|1000 +1.3.6.1.2.1.47.1.1.1.1.4.3000|2|6 +1.3.6.1.2.1.47.1.1.1.1.4.3001|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3002|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3003|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3004|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3005|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3006|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3007|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3008|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3009|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3010|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3011|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3012|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3013|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3014|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3015|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3016|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3017|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3018|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3019|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3020|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3021|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3022|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3023|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3024|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3025|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3026|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3027|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3028|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3029|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3030|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3031|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3032|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3033|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3034|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3035|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3036|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3037|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3038|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3039|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3040|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3041|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3042|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.3043|2|3000 +1.3.6.1.2.1.47.1.1.1.1.4.101000|2|4 +1.3.6.1.2.1.47.1.1.1.1.4.101001|2|101000 +1.3.6.1.2.1.47.1.1.1.1.4.101002|2|101000 +1.3.6.1.2.1.47.1.1.1.1.4.101003|2|101000 +1.3.6.1.2.1.47.1.1.1.1.4.101004|2|101000 +1.3.6.1.2.1.47.1.1.1.1.4.101005|2|101000 +1.3.6.1.2.1.47.1.1.1.1.4.201000|2|4 +1.3.6.1.2.1.47.1.1.1.1.4.201001|2|201000 +1.3.6.1.2.1.47.1.1.1.1.5.1|2|3 +1.3.6.1.2.1.47.1.1.1.1.5.2|2|1 +1.3.6.1.2.1.47.1.1.1.1.5.3|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.4|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.5|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.6|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.7|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.8|2|10 +1.3.6.1.2.1.47.1.1.1.1.5.9|2|6 +1.3.6.1.2.1.47.1.1.1.1.5.10|2|1 +1.3.6.1.2.1.47.1.1.1.1.5.11|2|1 +1.3.6.1.2.1.47.1.1.1.1.5.1000|2|3 +1.3.6.1.2.1.47.1.1.1.1.5.1001|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1002|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1003|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1004|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1005|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1006|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1007|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1008|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1009|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1010|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1011|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1012|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1013|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1014|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1015|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1016|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1017|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.1018|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3000|2|3 +1.3.6.1.2.1.47.1.1.1.1.5.3001|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3002|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3003|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3004|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3005|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3006|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3007|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3008|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3009|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3010|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3011|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3012|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3013|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3014|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3015|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3016|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3017|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3018|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3019|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3020|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3021|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3022|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3023|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3024|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3025|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3026|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3027|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3028|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3029|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3030|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3031|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3032|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3033|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3034|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3035|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3036|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3037|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3038|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3039|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3040|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3041|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3042|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.3043|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.101000|2|3 +1.3.6.1.2.1.47.1.1.1.1.5.101001|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.101002|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.101003|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.101004|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.101005|2|8 +1.3.6.1.2.1.47.1.1.1.1.5.201000|2|3 +1.3.6.1.2.1.47.1.1.1.1.5.201001|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.1|2|-1 +1.3.6.1.2.1.47.1.1.1.1.6.2|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.3|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.4|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.5|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.6|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.7|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.8|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.9|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.10|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.11|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.1000|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.1001|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.1002|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.1003|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.1004|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.1005|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.1006|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.1007|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.1008|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.1009|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.1010|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.1011|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.1012|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.1013|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.1014|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.1015|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.1016|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.1017|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.1018|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.3000|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.3001|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.3002|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.3003|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.3004|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.3005|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.3006|2|6 +1.3.6.1.2.1.47.1.1.1.1.6.3007|2|7 +1.3.6.1.2.1.47.1.1.1.1.6.3008|2|8 +1.3.6.1.2.1.47.1.1.1.1.6.3009|2|9 +1.3.6.1.2.1.47.1.1.1.1.6.3010|2|10 +1.3.6.1.2.1.47.1.1.1.1.6.3011|2|11 +1.3.6.1.2.1.47.1.1.1.1.6.3012|2|12 +1.3.6.1.2.1.47.1.1.1.1.6.3013|2|13 +1.3.6.1.2.1.47.1.1.1.1.6.3014|2|14 +1.3.6.1.2.1.47.1.1.1.1.6.3015|2|15 +1.3.6.1.2.1.47.1.1.1.1.6.3016|2|16 +1.3.6.1.2.1.47.1.1.1.1.6.3017|2|17 +1.3.6.1.2.1.47.1.1.1.1.6.3018|2|18 +1.3.6.1.2.1.47.1.1.1.1.6.3019|2|19 +1.3.6.1.2.1.47.1.1.1.1.6.3020|2|20 +1.3.6.1.2.1.47.1.1.1.1.6.3021|2|21 +1.3.6.1.2.1.47.1.1.1.1.6.3022|2|22 +1.3.6.1.2.1.47.1.1.1.1.6.3023|2|23 +1.3.6.1.2.1.47.1.1.1.1.6.3024|2|24 +1.3.6.1.2.1.47.1.1.1.1.6.3025|2|25 +1.3.6.1.2.1.47.1.1.1.1.6.3026|2|26 +1.3.6.1.2.1.47.1.1.1.1.6.3027|2|27 +1.3.6.1.2.1.47.1.1.1.1.6.3028|2|28 +1.3.6.1.2.1.47.1.1.1.1.6.3029|2|29 +1.3.6.1.2.1.47.1.1.1.1.6.3030|2|30 +1.3.6.1.2.1.47.1.1.1.1.6.3031|2|31 +1.3.6.1.2.1.47.1.1.1.1.6.3032|2|32 +1.3.6.1.2.1.47.1.1.1.1.6.3033|2|33 +1.3.6.1.2.1.47.1.1.1.1.6.3034|2|34 +1.3.6.1.2.1.47.1.1.1.1.6.3035|2|35 +1.3.6.1.2.1.47.1.1.1.1.6.3036|2|36 +1.3.6.1.2.1.47.1.1.1.1.6.3037|2|37 +1.3.6.1.2.1.47.1.1.1.1.6.3038|2|38 +1.3.6.1.2.1.47.1.1.1.1.6.3039|2|39 +1.3.6.1.2.1.47.1.1.1.1.6.3040|2|40 +1.3.6.1.2.1.47.1.1.1.1.6.3041|2|41 +1.3.6.1.2.1.47.1.1.1.1.6.3042|2|42 +1.3.6.1.2.1.47.1.1.1.1.6.3043|2|43 +1.3.6.1.2.1.47.1.1.1.1.6.101000|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.101001|2|1 +1.3.6.1.2.1.47.1.1.1.1.6.101002|2|2 +1.3.6.1.2.1.47.1.1.1.1.6.101003|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.101004|2|4 +1.3.6.1.2.1.47.1.1.1.1.6.101005|2|5 +1.3.6.1.2.1.47.1.1.1.1.6.201000|2|3 +1.3.6.1.2.1.47.1.1.1.1.6.201001|2|1 +1.3.6.1.2.1.47.1.1.1.1.7.1|4|Rittal LCP +1.3.6.1.2.1.47.1.1.1.1.7.2|4|Net-SNMP 5.7.3 +1.3.6.1.2.1.47.1.1.1.1.7.3|4|lo +1.3.6.1.2.1.47.1.1.1.1.7.4|4|can0 +1.3.6.1.2.1.47.1.1.1.1.7.5|4|can1 +1.3.6.1.2.1.47.1.1.1.1.7.6|4|eth0 +1.3.6.1.2.1.47.1.1.1.1.7.7|4|tunl0 +1.3.6.1.2.1.47.1.1.1.1.7.8|4|sit0 +1.3.6.1.2.1.47.1.1.1.1.7.9|4|AC adapter +1.3.6.1.2.1.47.1.1.1.1.7.10|4|5TEJ +1.3.6.1.2.1.47.1.1.1.1.7.11|4| +1.3.6.1.2.1.47.1.1.1.1.7.1000|4| +1.3.6.1.2.1.47.1.1.1.1.7.1001|4| +1.3.6.1.2.1.47.1.1.1.1.7.1002|4| +1.3.6.1.2.1.47.1.1.1.1.7.1003|4| +1.3.6.1.2.1.47.1.1.1.1.7.1004|4| +1.3.6.1.2.1.47.1.1.1.1.7.1005|4| +1.3.6.1.2.1.47.1.1.1.1.7.1006|4| +1.3.6.1.2.1.47.1.1.1.1.7.1007|4| +1.3.6.1.2.1.47.1.1.1.1.7.1008|4| +1.3.6.1.2.1.47.1.1.1.1.7.1009|4| +1.3.6.1.2.1.47.1.1.1.1.7.1010|4| +1.3.6.1.2.1.47.1.1.1.1.7.1011|4| +1.3.6.1.2.1.47.1.1.1.1.7.1012|4| +1.3.6.1.2.1.47.1.1.1.1.7.1013|4| +1.3.6.1.2.1.47.1.1.1.1.7.1014|4| +1.3.6.1.2.1.47.1.1.1.1.7.1015|4| +1.3.6.1.2.1.47.1.1.1.1.7.1016|4| +1.3.6.1.2.1.47.1.1.1.1.7.1017|4| +1.3.6.1.2.1.47.1.1.1.1.7.1018|4| +1.3.6.1.2.1.47.1.1.1.1.7.3000|4|LCP-R 30 kW +1.3.6.1.2.1.47.1.1.1.1.7.3001|4| +1.3.6.1.2.1.47.1.1.1.1.7.3002|4| +1.3.6.1.2.1.47.1.1.1.1.7.3003|4| +1.3.6.1.2.1.47.1.1.1.1.7.3004|4| +1.3.6.1.2.1.47.1.1.1.1.7.3005|4| +1.3.6.1.2.1.47.1.1.1.1.7.3006|4| +1.3.6.1.2.1.47.1.1.1.1.7.3007|4| +1.3.6.1.2.1.47.1.1.1.1.7.3008|4| +1.3.6.1.2.1.47.1.1.1.1.7.3009|4| +1.3.6.1.2.1.47.1.1.1.1.7.3010|4| +1.3.6.1.2.1.47.1.1.1.1.7.3011|4| +1.3.6.1.2.1.47.1.1.1.1.7.3012|4| +1.3.6.1.2.1.47.1.1.1.1.7.3013|4| +1.3.6.1.2.1.47.1.1.1.1.7.3014|4| +1.3.6.1.2.1.47.1.1.1.1.7.3015|4| +1.3.6.1.2.1.47.1.1.1.1.7.3016|4| +1.3.6.1.2.1.47.1.1.1.1.7.3017|4| +1.3.6.1.2.1.47.1.1.1.1.7.3018|4| +1.3.6.1.2.1.47.1.1.1.1.7.3019|4| +1.3.6.1.2.1.47.1.1.1.1.7.3020|4| +1.3.6.1.2.1.47.1.1.1.1.7.3021|4| +1.3.6.1.2.1.47.1.1.1.1.7.3022|4| +1.3.6.1.2.1.47.1.1.1.1.7.3023|4| +1.3.6.1.2.1.47.1.1.1.1.7.3024|4| +1.3.6.1.2.1.47.1.1.1.1.7.3025|4| +1.3.6.1.2.1.47.1.1.1.1.7.3026|4| +1.3.6.1.2.1.47.1.1.1.1.7.3027|4| +1.3.6.1.2.1.47.1.1.1.1.7.3028|4| +1.3.6.1.2.1.47.1.1.1.1.7.3029|4| +1.3.6.1.2.1.47.1.1.1.1.7.3030|4| +1.3.6.1.2.1.47.1.1.1.1.7.3031|4| +1.3.6.1.2.1.47.1.1.1.1.7.3032|4| +1.3.6.1.2.1.47.1.1.1.1.7.3033|4| +1.3.6.1.2.1.47.1.1.1.1.7.3034|4| +1.3.6.1.2.1.47.1.1.1.1.7.3035|4| +1.3.6.1.2.1.47.1.1.1.1.7.3036|4| +1.3.6.1.2.1.47.1.1.1.1.7.3037|4| +1.3.6.1.2.1.47.1.1.1.1.7.3038|4| +1.3.6.1.2.1.47.1.1.1.1.7.3039|4| +1.3.6.1.2.1.47.1.1.1.1.7.3040|4| +1.3.6.1.2.1.47.1.1.1.1.7.3041|4| +1.3.6.1.2.1.47.1.1.1.1.7.3042|4| +1.3.6.1.2.1.47.1.1.1.1.7.3043|4| +1.3.6.1.2.1.47.1.1.1.1.7.101000|4| +1.3.6.1.2.1.47.1.1.1.1.7.101001|4| +1.3.6.1.2.1.47.1.1.1.1.7.101002|4| +1.3.6.1.2.1.47.1.1.1.1.7.101003|4| +1.3.6.1.2.1.47.1.1.1.1.7.101004|4| +1.3.6.1.2.1.47.1.1.1.1.7.101005|4| +1.3.6.1.2.1.47.1.1.1.1.7.201000|4| +1.3.6.1.2.1.47.1.1.1.1.7.201001|4| +1.3.6.1.2.1.47.1.1.1.1.8.1|4|V4.01 +1.3.6.1.2.1.47.1.1.1.1.8.2|4|armv5tejl +1.3.6.1.2.1.47.1.1.1.1.8.3|4| +1.3.6.1.2.1.47.1.1.1.1.8.4|4| +1.3.6.1.2.1.47.1.1.1.1.8.5|4| +1.3.6.1.2.1.47.1.1.1.1.8.6|4| +1.3.6.1.2.1.47.1.1.1.1.8.7|4| +1.3.6.1.2.1.47.1.1.1.1.8.8|4| +1.3.6.1.2.1.47.1.1.1.1.8.9|4| +1.3.6.1.2.1.47.1.1.1.1.8.10|4|4 +1.3.6.1.2.1.47.1.1.1.1.8.11|4|0000 +1.3.6.1.2.1.47.1.1.1.1.8.1000|4| +1.3.6.1.2.1.47.1.1.1.1.8.1001|4| +1.3.6.1.2.1.47.1.1.1.1.8.1002|4| +1.3.6.1.2.1.47.1.1.1.1.8.1003|4| +1.3.6.1.2.1.47.1.1.1.1.8.1004|4| +1.3.6.1.2.1.47.1.1.1.1.8.1005|4| +1.3.6.1.2.1.47.1.1.1.1.8.1006|4| +1.3.6.1.2.1.47.1.1.1.1.8.1007|4| +1.3.6.1.2.1.47.1.1.1.1.8.1008|4| +1.3.6.1.2.1.47.1.1.1.1.8.1009|4| +1.3.6.1.2.1.47.1.1.1.1.8.1010|4| +1.3.6.1.2.1.47.1.1.1.1.8.1011|4| +1.3.6.1.2.1.47.1.1.1.1.8.1012|4| +1.3.6.1.2.1.47.1.1.1.1.8.1013|4| +1.3.6.1.2.1.47.1.1.1.1.8.1014|4| +1.3.6.1.2.1.47.1.1.1.1.8.1015|4| +1.3.6.1.2.1.47.1.1.1.1.8.1016|4| +1.3.6.1.2.1.47.1.1.1.1.8.1017|4| +1.3.6.1.2.1.47.1.1.1.1.8.1018|4| +1.3.6.1.2.1.47.1.1.1.1.8.3000|4| +1.3.6.1.2.1.47.1.1.1.1.8.3001|4| +1.3.6.1.2.1.47.1.1.1.1.8.3002|4| +1.3.6.1.2.1.47.1.1.1.1.8.3003|4| +1.3.6.1.2.1.47.1.1.1.1.8.3004|4| +1.3.6.1.2.1.47.1.1.1.1.8.3005|4| +1.3.6.1.2.1.47.1.1.1.1.8.3006|4| +1.3.6.1.2.1.47.1.1.1.1.8.3007|4| +1.3.6.1.2.1.47.1.1.1.1.8.3008|4| +1.3.6.1.2.1.47.1.1.1.1.8.3009|4| +1.3.6.1.2.1.47.1.1.1.1.8.3010|4| +1.3.6.1.2.1.47.1.1.1.1.8.3011|4| +1.3.6.1.2.1.47.1.1.1.1.8.3012|4| +1.3.6.1.2.1.47.1.1.1.1.8.3013|4| +1.3.6.1.2.1.47.1.1.1.1.8.3014|4| +1.3.6.1.2.1.47.1.1.1.1.8.3015|4| +1.3.6.1.2.1.47.1.1.1.1.8.3016|4| +1.3.6.1.2.1.47.1.1.1.1.8.3017|4| +1.3.6.1.2.1.47.1.1.1.1.8.3018|4| +1.3.6.1.2.1.47.1.1.1.1.8.3019|4| +1.3.6.1.2.1.47.1.1.1.1.8.3020|4| +1.3.6.1.2.1.47.1.1.1.1.8.3021|4| +1.3.6.1.2.1.47.1.1.1.1.8.3022|4| +1.3.6.1.2.1.47.1.1.1.1.8.3023|4| +1.3.6.1.2.1.47.1.1.1.1.8.3024|4| +1.3.6.1.2.1.47.1.1.1.1.8.3025|4| +1.3.6.1.2.1.47.1.1.1.1.8.3026|4| +1.3.6.1.2.1.47.1.1.1.1.8.3027|4| +1.3.6.1.2.1.47.1.1.1.1.8.3028|4| +1.3.6.1.2.1.47.1.1.1.1.8.3029|4| +1.3.6.1.2.1.47.1.1.1.1.8.3030|4| +1.3.6.1.2.1.47.1.1.1.1.8.3031|4| +1.3.6.1.2.1.47.1.1.1.1.8.3032|4| +1.3.6.1.2.1.47.1.1.1.1.8.3033|4| +1.3.6.1.2.1.47.1.1.1.1.8.3034|4| +1.3.6.1.2.1.47.1.1.1.1.8.3035|4| +1.3.6.1.2.1.47.1.1.1.1.8.3036|4| +1.3.6.1.2.1.47.1.1.1.1.8.3037|4| +1.3.6.1.2.1.47.1.1.1.1.8.3038|4| +1.3.6.1.2.1.47.1.1.1.1.8.3039|4| +1.3.6.1.2.1.47.1.1.1.1.8.3040|4| +1.3.6.1.2.1.47.1.1.1.1.8.3041|4| +1.3.6.1.2.1.47.1.1.1.1.8.3042|4| +1.3.6.1.2.1.47.1.1.1.1.8.3043|4| +1.3.6.1.2.1.47.1.1.1.1.8.101000|4| +1.3.6.1.2.1.47.1.1.1.1.8.101001|4| +1.3.6.1.2.1.47.1.1.1.1.8.101002|4| +1.3.6.1.2.1.47.1.1.1.1.8.101003|4| +1.3.6.1.2.1.47.1.1.1.1.8.101004|4| +1.3.6.1.2.1.47.1.1.1.1.8.101005|4| +1.3.6.1.2.1.47.1.1.1.1.8.201000|4| +1.3.6.1.2.1.47.1.1.1.1.8.201001|4| +1.3.6.1.2.1.47.1.1.1.1.9.1|4|V3.17.10 +1.3.6.1.2.1.47.1.1.1.1.9.2|4|#1 PREEMPT Thu Aug 20 08:44:24 CEST 2020 +1.3.6.1.2.1.47.1.1.1.1.9.3|4| +1.3.6.1.2.1.47.1.1.1.1.9.4|4| +1.3.6.1.2.1.47.1.1.1.1.9.5|4| +1.3.6.1.2.1.47.1.1.1.1.9.6|4| +1.3.6.1.2.1.47.1.1.1.1.9.7|4| +1.3.6.1.2.1.47.1.1.1.1.9.8|4| +1.3.6.1.2.1.47.1.1.1.1.9.9|4| +1.3.6.1.2.1.47.1.1.1.1.9.10|4| +1.3.6.1.2.1.47.1.1.1.1.9.11|4| +1.3.6.1.2.1.47.1.1.1.1.9.1000|4| +1.3.6.1.2.1.47.1.1.1.1.9.1001|4| +1.3.6.1.2.1.47.1.1.1.1.9.1002|4| +1.3.6.1.2.1.47.1.1.1.1.9.1003|4| +1.3.6.1.2.1.47.1.1.1.1.9.1004|4| +1.3.6.1.2.1.47.1.1.1.1.9.1005|4| +1.3.6.1.2.1.47.1.1.1.1.9.1006|4| +1.3.6.1.2.1.47.1.1.1.1.9.1007|4| +1.3.6.1.2.1.47.1.1.1.1.9.1008|4| +1.3.6.1.2.1.47.1.1.1.1.9.1009|4| +1.3.6.1.2.1.47.1.1.1.1.9.1010|4| +1.3.6.1.2.1.47.1.1.1.1.9.1011|4| +1.3.6.1.2.1.47.1.1.1.1.9.1012|4| +1.3.6.1.2.1.47.1.1.1.1.9.1013|4| +1.3.6.1.2.1.47.1.1.1.1.9.1014|4| +1.3.6.1.2.1.47.1.1.1.1.9.1015|4| +1.3.6.1.2.1.47.1.1.1.1.9.1016|4| +1.3.6.1.2.1.47.1.1.1.1.9.1017|4| +1.3.6.1.2.1.47.1.1.1.1.9.1018|4| +1.3.6.1.2.1.47.1.1.1.1.9.3000|4| +1.3.6.1.2.1.47.1.1.1.1.9.3001|4| +1.3.6.1.2.1.47.1.1.1.1.9.3002|4| +1.3.6.1.2.1.47.1.1.1.1.9.3003|4| +1.3.6.1.2.1.47.1.1.1.1.9.3004|4| +1.3.6.1.2.1.47.1.1.1.1.9.3005|4| +1.3.6.1.2.1.47.1.1.1.1.9.3006|4| +1.3.6.1.2.1.47.1.1.1.1.9.3007|4| +1.3.6.1.2.1.47.1.1.1.1.9.3008|4| +1.3.6.1.2.1.47.1.1.1.1.9.3009|4| +1.3.6.1.2.1.47.1.1.1.1.9.3010|4| +1.3.6.1.2.1.47.1.1.1.1.9.3011|4| +1.3.6.1.2.1.47.1.1.1.1.9.3012|4| +1.3.6.1.2.1.47.1.1.1.1.9.3013|4| +1.3.6.1.2.1.47.1.1.1.1.9.3014|4| +1.3.6.1.2.1.47.1.1.1.1.9.3015|4| +1.3.6.1.2.1.47.1.1.1.1.9.3016|4| +1.3.6.1.2.1.47.1.1.1.1.9.3017|4| +1.3.6.1.2.1.47.1.1.1.1.9.3018|4| +1.3.6.1.2.1.47.1.1.1.1.9.3019|4| +1.3.6.1.2.1.47.1.1.1.1.9.3020|4| +1.3.6.1.2.1.47.1.1.1.1.9.3021|4| +1.3.6.1.2.1.47.1.1.1.1.9.3022|4| +1.3.6.1.2.1.47.1.1.1.1.9.3023|4| +1.3.6.1.2.1.47.1.1.1.1.9.3024|4| +1.3.6.1.2.1.47.1.1.1.1.9.3025|4| +1.3.6.1.2.1.47.1.1.1.1.9.3026|4| +1.3.6.1.2.1.47.1.1.1.1.9.3027|4| +1.3.6.1.2.1.47.1.1.1.1.9.3028|4| +1.3.6.1.2.1.47.1.1.1.1.9.3029|4| +1.3.6.1.2.1.47.1.1.1.1.9.3030|4| +1.3.6.1.2.1.47.1.1.1.1.9.3031|4| +1.3.6.1.2.1.47.1.1.1.1.9.3032|4| +1.3.6.1.2.1.47.1.1.1.1.9.3033|4| +1.3.6.1.2.1.47.1.1.1.1.9.3034|4| +1.3.6.1.2.1.47.1.1.1.1.9.3035|4| +1.3.6.1.2.1.47.1.1.1.1.9.3036|4| +1.3.6.1.2.1.47.1.1.1.1.9.3037|4| +1.3.6.1.2.1.47.1.1.1.1.9.3038|4| +1.3.6.1.2.1.47.1.1.1.1.9.3039|4| +1.3.6.1.2.1.47.1.1.1.1.9.3040|4| +1.3.6.1.2.1.47.1.1.1.1.9.3041|4| +1.3.6.1.2.1.47.1.1.1.1.9.3042|4| +1.3.6.1.2.1.47.1.1.1.1.9.3043|4| +1.3.6.1.2.1.47.1.1.1.1.9.101000|4| +1.3.6.1.2.1.47.1.1.1.1.9.101001|4| +1.3.6.1.2.1.47.1.1.1.1.9.101002|4| +1.3.6.1.2.1.47.1.1.1.1.9.101003|4| +1.3.6.1.2.1.47.1.1.1.1.9.101004|4| +1.3.6.1.2.1.47.1.1.1.1.9.101005|4| +1.3.6.1.2.1.47.1.1.1.1.9.201000|4| +1.3.6.1.2.1.47.1.1.1.1.9.201001|4| +1.3.6.1.2.1.47.1.1.1.1.10.1|4|4.14.193-fslc +1.3.6.1.2.1.47.1.1.1.1.10.2|4|5.7.3 +1.3.6.1.2.1.47.1.1.1.1.10.3|4| +1.3.6.1.2.1.47.1.1.1.1.10.4|4| +1.3.6.1.2.1.47.1.1.1.1.10.5|4| +1.3.6.1.2.1.47.1.1.1.1.10.6|4| +1.3.6.1.2.1.47.1.1.1.1.10.7|4| +1.3.6.1.2.1.47.1.1.1.1.10.8|4| +1.3.6.1.2.1.47.1.1.1.1.10.9|4| +1.3.6.1.2.1.47.1.1.1.1.10.10|4| +1.3.6.1.2.1.47.1.1.1.1.10.11|4| +1.3.6.1.2.1.47.1.1.1.1.10.1000|4| +1.3.6.1.2.1.47.1.1.1.1.10.1001|4| +1.3.6.1.2.1.47.1.1.1.1.10.1002|4| +1.3.6.1.2.1.47.1.1.1.1.10.1003|4| +1.3.6.1.2.1.47.1.1.1.1.10.1004|4| +1.3.6.1.2.1.47.1.1.1.1.10.1005|4| +1.3.6.1.2.1.47.1.1.1.1.10.1006|4| +1.3.6.1.2.1.47.1.1.1.1.10.1007|4| +1.3.6.1.2.1.47.1.1.1.1.10.1008|4| +1.3.6.1.2.1.47.1.1.1.1.10.1009|4| +1.3.6.1.2.1.47.1.1.1.1.10.1010|4| +1.3.6.1.2.1.47.1.1.1.1.10.1011|4| +1.3.6.1.2.1.47.1.1.1.1.10.1012|4| +1.3.6.1.2.1.47.1.1.1.1.10.1013|4| +1.3.6.1.2.1.47.1.1.1.1.10.1014|4| +1.3.6.1.2.1.47.1.1.1.1.10.1015|4| +1.3.6.1.2.1.47.1.1.1.1.10.1016|4| +1.3.6.1.2.1.47.1.1.1.1.10.1017|4| +1.3.6.1.2.1.47.1.1.1.1.10.1018|4| +1.3.6.1.2.1.47.1.1.1.1.10.3000|4| +1.3.6.1.2.1.47.1.1.1.1.10.3001|4| +1.3.6.1.2.1.47.1.1.1.1.10.3002|4| +1.3.6.1.2.1.47.1.1.1.1.10.3003|4| +1.3.6.1.2.1.47.1.1.1.1.10.3004|4| +1.3.6.1.2.1.47.1.1.1.1.10.3005|4| +1.3.6.1.2.1.47.1.1.1.1.10.3006|4| +1.3.6.1.2.1.47.1.1.1.1.10.3007|4| +1.3.6.1.2.1.47.1.1.1.1.10.3008|4| +1.3.6.1.2.1.47.1.1.1.1.10.3009|4| +1.3.6.1.2.1.47.1.1.1.1.10.3010|4| +1.3.6.1.2.1.47.1.1.1.1.10.3011|4| +1.3.6.1.2.1.47.1.1.1.1.10.3012|4| +1.3.6.1.2.1.47.1.1.1.1.10.3013|4| +1.3.6.1.2.1.47.1.1.1.1.10.3014|4| +1.3.6.1.2.1.47.1.1.1.1.10.3015|4| +1.3.6.1.2.1.47.1.1.1.1.10.3016|4| +1.3.6.1.2.1.47.1.1.1.1.10.3017|4| +1.3.6.1.2.1.47.1.1.1.1.10.3018|4| +1.3.6.1.2.1.47.1.1.1.1.10.3019|4| +1.3.6.1.2.1.47.1.1.1.1.10.3020|4| +1.3.6.1.2.1.47.1.1.1.1.10.3021|4| +1.3.6.1.2.1.47.1.1.1.1.10.3022|4| +1.3.6.1.2.1.47.1.1.1.1.10.3023|4| +1.3.6.1.2.1.47.1.1.1.1.10.3024|4| +1.3.6.1.2.1.47.1.1.1.1.10.3025|4| +1.3.6.1.2.1.47.1.1.1.1.10.3026|4| +1.3.6.1.2.1.47.1.1.1.1.10.3027|4| +1.3.6.1.2.1.47.1.1.1.1.10.3028|4| +1.3.6.1.2.1.47.1.1.1.1.10.3029|4| +1.3.6.1.2.1.47.1.1.1.1.10.3030|4| +1.3.6.1.2.1.47.1.1.1.1.10.3031|4| +1.3.6.1.2.1.47.1.1.1.1.10.3032|4| +1.3.6.1.2.1.47.1.1.1.1.10.3033|4| +1.3.6.1.2.1.47.1.1.1.1.10.3034|4| +1.3.6.1.2.1.47.1.1.1.1.10.3035|4| +1.3.6.1.2.1.47.1.1.1.1.10.3036|4| +1.3.6.1.2.1.47.1.1.1.1.10.3037|4| +1.3.6.1.2.1.47.1.1.1.1.10.3038|4| +1.3.6.1.2.1.47.1.1.1.1.10.3039|4| +1.3.6.1.2.1.47.1.1.1.1.10.3040|4| +1.3.6.1.2.1.47.1.1.1.1.10.3041|4| +1.3.6.1.2.1.47.1.1.1.1.10.3042|4| +1.3.6.1.2.1.47.1.1.1.1.10.3043|4| +1.3.6.1.2.1.47.1.1.1.1.10.101000|4| +1.3.6.1.2.1.47.1.1.1.1.10.101001|4| +1.3.6.1.2.1.47.1.1.1.1.10.101002|4| +1.3.6.1.2.1.47.1.1.1.1.10.101003|4| +1.3.6.1.2.1.47.1.1.1.1.10.101004|4| +1.3.6.1.2.1.47.1.1.1.1.10.101005|4| +1.3.6.1.2.1.47.1.1.1.1.10.201000|4| +1.3.6.1.2.1.47.1.1.1.1.10.201001|4| +1.3.6.1.2.1.47.1.1.1.1.11.1|4|41326588 +1.3.6.1.2.1.47.1.1.1.1.11.2|4| +1.3.6.1.2.1.47.1.1.1.1.11.3|4|00:D0:93:51:69:3F +1.3.6.1.2.1.47.1.1.1.1.11.4|4| +1.3.6.1.2.1.47.1.1.1.1.11.5|4| +1.3.6.1.2.1.47.1.1.1.1.11.6|4|00:D0:93:51:69:3F +1.3.6.1.2.1.47.1.1.1.1.11.7|4| +1.3.6.1.2.1.47.1.1.1.1.11.8|4| +1.3.6.1.2.1.47.1.1.1.1.11.9|4| +1.3.6.1.2.1.47.1.1.1.1.11.10|4| +1.3.6.1.2.1.47.1.1.1.1.11.11|4|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.11.1000|4|41326588 +1.3.6.1.2.1.47.1.1.1.1.11.1001|4| +1.3.6.1.2.1.47.1.1.1.1.11.1002|4| +1.3.6.1.2.1.47.1.1.1.1.11.1003|4| +1.3.6.1.2.1.47.1.1.1.1.11.1004|4| +1.3.6.1.2.1.47.1.1.1.1.11.1005|4| +1.3.6.1.2.1.47.1.1.1.1.11.1006|4| +1.3.6.1.2.1.47.1.1.1.1.11.1007|4| +1.3.6.1.2.1.47.1.1.1.1.11.1008|4| +1.3.6.1.2.1.47.1.1.1.1.11.1009|4| +1.3.6.1.2.1.47.1.1.1.1.11.1010|4| +1.3.6.1.2.1.47.1.1.1.1.11.1011|4| +1.3.6.1.2.1.47.1.1.1.1.11.1012|4| +1.3.6.1.2.1.47.1.1.1.1.11.1013|4| +1.3.6.1.2.1.47.1.1.1.1.11.1014|4| +1.3.6.1.2.1.47.1.1.1.1.11.1015|4| +1.3.6.1.2.1.47.1.1.1.1.11.1016|4| +1.3.6.1.2.1.47.1.1.1.1.11.1017|4| +1.3.6.1.2.1.47.1.1.1.1.11.1018|4| +1.3.6.1.2.1.47.1.1.1.1.11.3000|4|41326589 +1.3.6.1.2.1.47.1.1.1.1.11.3001|4| +1.3.6.1.2.1.47.1.1.1.1.11.3002|4| +1.3.6.1.2.1.47.1.1.1.1.11.3003|4| +1.3.6.1.2.1.47.1.1.1.1.11.3004|4| +1.3.6.1.2.1.47.1.1.1.1.11.3005|4| +1.3.6.1.2.1.47.1.1.1.1.11.3006|4| +1.3.6.1.2.1.47.1.1.1.1.11.3007|4| +1.3.6.1.2.1.47.1.1.1.1.11.3008|4| +1.3.6.1.2.1.47.1.1.1.1.11.3009|4| +1.3.6.1.2.1.47.1.1.1.1.11.3010|4| +1.3.6.1.2.1.47.1.1.1.1.11.3011|4| +1.3.6.1.2.1.47.1.1.1.1.11.3012|4| +1.3.6.1.2.1.47.1.1.1.1.11.3013|4| +1.3.6.1.2.1.47.1.1.1.1.11.3014|4| +1.3.6.1.2.1.47.1.1.1.1.11.3015|4| +1.3.6.1.2.1.47.1.1.1.1.11.3016|4| +1.3.6.1.2.1.47.1.1.1.1.11.3017|4| +1.3.6.1.2.1.47.1.1.1.1.11.3018|4| +1.3.6.1.2.1.47.1.1.1.1.11.3019|4| +1.3.6.1.2.1.47.1.1.1.1.11.3020|4| +1.3.6.1.2.1.47.1.1.1.1.11.3021|4| +1.3.6.1.2.1.47.1.1.1.1.11.3022|4| +1.3.6.1.2.1.47.1.1.1.1.11.3023|4| +1.3.6.1.2.1.47.1.1.1.1.11.3024|4| +1.3.6.1.2.1.47.1.1.1.1.11.3025|4| +1.3.6.1.2.1.47.1.1.1.1.11.3026|4| +1.3.6.1.2.1.47.1.1.1.1.11.3027|4| +1.3.6.1.2.1.47.1.1.1.1.11.3028|4| +1.3.6.1.2.1.47.1.1.1.1.11.3029|4| +1.3.6.1.2.1.47.1.1.1.1.11.3030|4| +1.3.6.1.2.1.47.1.1.1.1.11.3031|4| +1.3.6.1.2.1.47.1.1.1.1.11.3032|4| +1.3.6.1.2.1.47.1.1.1.1.11.3033|4| +1.3.6.1.2.1.47.1.1.1.1.11.3034|4| +1.3.6.1.2.1.47.1.1.1.1.11.3035|4| +1.3.6.1.2.1.47.1.1.1.1.11.3036|4| +1.3.6.1.2.1.47.1.1.1.1.11.3037|4| +1.3.6.1.2.1.47.1.1.1.1.11.3038|4| +1.3.6.1.2.1.47.1.1.1.1.11.3039|4| +1.3.6.1.2.1.47.1.1.1.1.11.3040|4| +1.3.6.1.2.1.47.1.1.1.1.11.3041|4| +1.3.6.1.2.1.47.1.1.1.1.11.3042|4| +1.3.6.1.2.1.47.1.1.1.1.11.3043|4| +1.3.6.1.2.1.47.1.1.1.1.11.101000|4|34267319 +1.3.6.1.2.1.47.1.1.1.1.11.101001|4| +1.3.6.1.2.1.47.1.1.1.1.11.101002|4| +1.3.6.1.2.1.47.1.1.1.1.11.101003|4| +1.3.6.1.2.1.47.1.1.1.1.11.101004|4| +1.3.6.1.2.1.47.1.1.1.1.11.101005|4| +1.3.6.1.2.1.47.1.1.1.1.11.201000|4|34250658 +1.3.6.1.2.1.47.1.1.1.1.11.201001|4| +1.3.6.1.2.1.47.1.1.1.1.12.1|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.2|4|Net-SNMP +1.3.6.1.2.1.47.1.1.1.1.12.3|4| +1.3.6.1.2.1.47.1.1.1.1.12.4|4| +1.3.6.1.2.1.47.1.1.1.1.12.5|4| +1.3.6.1.2.1.47.1.1.1.1.12.6|4| +1.3.6.1.2.1.47.1.1.1.1.12.7|4| +1.3.6.1.2.1.47.1.1.1.1.12.8|4| +1.3.6.1.2.1.47.1.1.1.1.12.9|4| +1.3.6.1.2.1.47.1.1.1.1.12.10|4|ARM +1.3.6.1.2.1.47.1.1.1.1.12.11|4|Freescale +1.3.6.1.2.1.47.1.1.1.1.12.1000|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1001|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1002|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1003|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1004|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1005|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1006|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1007|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1008|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1009|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1010|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1011|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1012|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1013|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1014|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1015|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1016|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1017|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.1018|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3000|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3001|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3002|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3003|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3004|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3005|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3006|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3007|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3008|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3009|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3010|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3011|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3012|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3013|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3014|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3015|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3016|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3017|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3018|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3019|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3020|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3021|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3022|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3023|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3024|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3025|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3026|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3027|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3028|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3029|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3030|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3031|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3032|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3033|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3034|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3035|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3036|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3037|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3038|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3039|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3040|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3041|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3042|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.3043|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.101000|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.101001|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.101002|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.101003|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.101004|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.101005|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.201000|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.12.201001|4|RITTAL GmbH & Co. KG +1.3.6.1.2.1.47.1.1.1.1.13.1|4|PDU +1.3.6.1.2.1.47.1.1.1.1.13.2|4|4.14.193-fslc +1.3.6.1.2.1.47.1.1.1.1.13.3|4| +1.3.6.1.2.1.47.1.1.1.1.13.4|4| +1.3.6.1.2.1.47.1.1.1.1.13.5|4| +1.3.6.1.2.1.47.1.1.1.1.13.6|4| +1.3.6.1.2.1.47.1.1.1.1.13.7|4| +1.3.6.1.2.1.47.1.1.1.1.13.8|4| +1.3.6.1.2.1.47.1.1.1.1.13.9|4| +1.3.6.1.2.1.47.1.1.1.1.13.10|4| +1.3.6.1.2.1.47.1.1.1.1.13.11|4| +1.3.6.1.2.1.47.1.1.1.1.13.1000|4| +1.3.6.1.2.1.47.1.1.1.1.13.1001|4| +1.3.6.1.2.1.47.1.1.1.1.13.1002|4| +1.3.6.1.2.1.47.1.1.1.1.13.1003|4| +1.3.6.1.2.1.47.1.1.1.1.13.1004|4| +1.3.6.1.2.1.47.1.1.1.1.13.1005|4| +1.3.6.1.2.1.47.1.1.1.1.13.1006|4| +1.3.6.1.2.1.47.1.1.1.1.13.1007|4| +1.3.6.1.2.1.47.1.1.1.1.13.1008|4| +1.3.6.1.2.1.47.1.1.1.1.13.1009|4| +1.3.6.1.2.1.47.1.1.1.1.13.1010|4| +1.3.6.1.2.1.47.1.1.1.1.13.1011|4| +1.3.6.1.2.1.47.1.1.1.1.13.1012|4| +1.3.6.1.2.1.47.1.1.1.1.13.1013|4| +1.3.6.1.2.1.47.1.1.1.1.13.1014|4| +1.3.6.1.2.1.47.1.1.1.1.13.1015|4| +1.3.6.1.2.1.47.1.1.1.1.13.1016|4| +1.3.6.1.2.1.47.1.1.1.1.13.1017|4| +1.3.6.1.2.1.47.1.1.1.1.13.1018|4| +1.3.6.1.2.1.47.1.1.1.1.13.3000|4|3312.230 +1.3.6.1.2.1.47.1.1.1.1.13.3001|4| +1.3.6.1.2.1.47.1.1.1.1.13.3002|4| +1.3.6.1.2.1.47.1.1.1.1.13.3003|4| +1.3.6.1.2.1.47.1.1.1.1.13.3004|4| +1.3.6.1.2.1.47.1.1.1.1.13.3005|4| +1.3.6.1.2.1.47.1.1.1.1.13.3006|4| +1.3.6.1.2.1.47.1.1.1.1.13.3007|4| +1.3.6.1.2.1.47.1.1.1.1.13.3008|4| +1.3.6.1.2.1.47.1.1.1.1.13.3009|4| +1.3.6.1.2.1.47.1.1.1.1.13.3010|4| +1.3.6.1.2.1.47.1.1.1.1.13.3011|4| +1.3.6.1.2.1.47.1.1.1.1.13.3012|4| +1.3.6.1.2.1.47.1.1.1.1.13.3013|4| +1.3.6.1.2.1.47.1.1.1.1.13.3014|4| +1.3.6.1.2.1.47.1.1.1.1.13.3015|4| +1.3.6.1.2.1.47.1.1.1.1.13.3016|4| +1.3.6.1.2.1.47.1.1.1.1.13.3017|4| +1.3.6.1.2.1.47.1.1.1.1.13.3018|4| +1.3.6.1.2.1.47.1.1.1.1.13.3019|4| +1.3.6.1.2.1.47.1.1.1.1.13.3020|4| +1.3.6.1.2.1.47.1.1.1.1.13.3021|4| +1.3.6.1.2.1.47.1.1.1.1.13.3022|4| +1.3.6.1.2.1.47.1.1.1.1.13.3023|4| +1.3.6.1.2.1.47.1.1.1.1.13.3024|4| +1.3.6.1.2.1.47.1.1.1.1.13.3025|4| +1.3.6.1.2.1.47.1.1.1.1.13.3026|4| +1.3.6.1.2.1.47.1.1.1.1.13.3027|4| +1.3.6.1.2.1.47.1.1.1.1.13.3028|4| +1.3.6.1.2.1.47.1.1.1.1.13.3029|4| +1.3.6.1.2.1.47.1.1.1.1.13.3030|4| +1.3.6.1.2.1.47.1.1.1.1.13.3031|4| +1.3.6.1.2.1.47.1.1.1.1.13.3032|4| +1.3.6.1.2.1.47.1.1.1.1.13.3033|4| +1.3.6.1.2.1.47.1.1.1.1.13.3034|4| +1.3.6.1.2.1.47.1.1.1.1.13.3035|4| +1.3.6.1.2.1.47.1.1.1.1.13.3036|4| +1.3.6.1.2.1.47.1.1.1.1.13.3037|4| +1.3.6.1.2.1.47.1.1.1.1.13.3038|4| +1.3.6.1.2.1.47.1.1.1.1.13.3039|4| +1.3.6.1.2.1.47.1.1.1.1.13.3040|4| +1.3.6.1.2.1.47.1.1.1.1.13.3041|4| +1.3.6.1.2.1.47.1.1.1.1.13.3042|4| +1.3.6.1.2.1.47.1.1.1.1.13.3043|4| +1.3.6.1.2.1.47.1.1.1.1.13.101000|4| +1.3.6.1.2.1.47.1.1.1.1.13.101001|4| +1.3.6.1.2.1.47.1.1.1.1.13.101002|4| +1.3.6.1.2.1.47.1.1.1.1.13.101003|4| +1.3.6.1.2.1.47.1.1.1.1.13.101004|4| +1.3.6.1.2.1.47.1.1.1.1.13.101005|4| +1.3.6.1.2.1.47.1.1.1.1.13.201000|4| +1.3.6.1.2.1.47.1.1.1.1.13.201001|4| +1.3.6.1.2.1.47.1.1.1.1.14.1|4| +1.3.6.1.2.1.47.1.1.1.1.14.2|4| +1.3.6.1.2.1.47.1.1.1.1.14.3|4| +1.3.6.1.2.1.47.1.1.1.1.14.4|4| +1.3.6.1.2.1.47.1.1.1.1.14.5|4| +1.3.6.1.2.1.47.1.1.1.1.14.6|4| +1.3.6.1.2.1.47.1.1.1.1.14.7|4| +1.3.6.1.2.1.47.1.1.1.1.14.8|4| +1.3.6.1.2.1.47.1.1.1.1.14.9|4| +1.3.6.1.2.1.47.1.1.1.1.14.10|4|MIPS 133.00 +1.3.6.1.2.1.47.1.1.1.1.14.11|4| +1.3.6.1.2.1.47.1.1.1.1.14.1000|4| +1.3.6.1.2.1.47.1.1.1.1.14.1001|4| +1.3.6.1.2.1.47.1.1.1.1.14.1002|4| +1.3.6.1.2.1.47.1.1.1.1.14.1003|4| +1.3.6.1.2.1.47.1.1.1.1.14.1004|4| +1.3.6.1.2.1.47.1.1.1.1.14.1005|4| +1.3.6.1.2.1.47.1.1.1.1.14.1006|4| +1.3.6.1.2.1.47.1.1.1.1.14.1007|4| +1.3.6.1.2.1.47.1.1.1.1.14.1008|4| +1.3.6.1.2.1.47.1.1.1.1.14.1009|4| +1.3.6.1.2.1.47.1.1.1.1.14.1010|4| +1.3.6.1.2.1.47.1.1.1.1.14.1011|4| +1.3.6.1.2.1.47.1.1.1.1.14.1012|4| +1.3.6.1.2.1.47.1.1.1.1.14.1013|4| +1.3.6.1.2.1.47.1.1.1.1.14.1014|4| +1.3.6.1.2.1.47.1.1.1.1.14.1015|4| +1.3.6.1.2.1.47.1.1.1.1.14.1016|4| +1.3.6.1.2.1.47.1.1.1.1.14.1017|4| +1.3.6.1.2.1.47.1.1.1.1.14.1018|4| +1.3.6.1.2.1.47.1.1.1.1.14.3000|4| +1.3.6.1.2.1.47.1.1.1.1.14.3001|4| +1.3.6.1.2.1.47.1.1.1.1.14.3002|4| +1.3.6.1.2.1.47.1.1.1.1.14.3003|4| +1.3.6.1.2.1.47.1.1.1.1.14.3004|4| +1.3.6.1.2.1.47.1.1.1.1.14.3005|4| +1.3.6.1.2.1.47.1.1.1.1.14.3006|4| +1.3.6.1.2.1.47.1.1.1.1.14.3007|4| +1.3.6.1.2.1.47.1.1.1.1.14.3008|4| +1.3.6.1.2.1.47.1.1.1.1.14.3009|4| +1.3.6.1.2.1.47.1.1.1.1.14.3010|4| +1.3.6.1.2.1.47.1.1.1.1.14.3011|4| +1.3.6.1.2.1.47.1.1.1.1.14.3012|4| +1.3.6.1.2.1.47.1.1.1.1.14.3013|4| +1.3.6.1.2.1.47.1.1.1.1.14.3014|4| +1.3.6.1.2.1.47.1.1.1.1.14.3015|4| +1.3.6.1.2.1.47.1.1.1.1.14.3016|4| +1.3.6.1.2.1.47.1.1.1.1.14.3017|4| +1.3.6.1.2.1.47.1.1.1.1.14.3018|4| +1.3.6.1.2.1.47.1.1.1.1.14.3019|4| +1.3.6.1.2.1.47.1.1.1.1.14.3020|4| +1.3.6.1.2.1.47.1.1.1.1.14.3021|4| +1.3.6.1.2.1.47.1.1.1.1.14.3022|4| +1.3.6.1.2.1.47.1.1.1.1.14.3023|4| +1.3.6.1.2.1.47.1.1.1.1.14.3024|4| +1.3.6.1.2.1.47.1.1.1.1.14.3025|4| +1.3.6.1.2.1.47.1.1.1.1.14.3026|4| +1.3.6.1.2.1.47.1.1.1.1.14.3027|4| +1.3.6.1.2.1.47.1.1.1.1.14.3028|4| +1.3.6.1.2.1.47.1.1.1.1.14.3029|4| +1.3.6.1.2.1.47.1.1.1.1.14.3030|4| +1.3.6.1.2.1.47.1.1.1.1.14.3031|4| +1.3.6.1.2.1.47.1.1.1.1.14.3032|4| +1.3.6.1.2.1.47.1.1.1.1.14.3033|4| +1.3.6.1.2.1.47.1.1.1.1.14.3034|4| +1.3.6.1.2.1.47.1.1.1.1.14.3035|4| +1.3.6.1.2.1.47.1.1.1.1.14.3036|4| +1.3.6.1.2.1.47.1.1.1.1.14.3037|4| +1.3.6.1.2.1.47.1.1.1.1.14.3038|4| +1.3.6.1.2.1.47.1.1.1.1.14.3039|4| +1.3.6.1.2.1.47.1.1.1.1.14.3040|4| +1.3.6.1.2.1.47.1.1.1.1.14.3041|4| +1.3.6.1.2.1.47.1.1.1.1.14.3042|4| +1.3.6.1.2.1.47.1.1.1.1.14.3043|4| +1.3.6.1.2.1.47.1.1.1.1.14.101000|4| +1.3.6.1.2.1.47.1.1.1.1.14.101001|4| +1.3.6.1.2.1.47.1.1.1.1.14.101002|4| +1.3.6.1.2.1.47.1.1.1.1.14.101003|4| +1.3.6.1.2.1.47.1.1.1.1.14.101004|4| +1.3.6.1.2.1.47.1.1.1.1.14.101005|4| +1.3.6.1.2.1.47.1.1.1.1.14.201000|4| +1.3.6.1.2.1.47.1.1.1.1.14.201001|4| +1.3.6.1.2.1.47.1.1.1.1.15.1|4| +1.3.6.1.2.1.47.1.1.1.1.15.2|4| +1.3.6.1.2.1.47.1.1.1.1.15.3|4| +1.3.6.1.2.1.47.1.1.1.1.15.4|4| +1.3.6.1.2.1.47.1.1.1.1.15.5|4| +1.3.6.1.2.1.47.1.1.1.1.15.6|4| +1.3.6.1.2.1.47.1.1.1.1.15.7|4| +1.3.6.1.2.1.47.1.1.1.1.15.8|4| +1.3.6.1.2.1.47.1.1.1.1.15.9|4| +1.3.6.1.2.1.47.1.1.1.1.15.10|4| +1.3.6.1.2.1.47.1.1.1.1.15.11|4| +1.3.6.1.2.1.47.1.1.1.1.15.1000|4| +1.3.6.1.2.1.47.1.1.1.1.15.1001|4| +1.3.6.1.2.1.47.1.1.1.1.15.1002|4| +1.3.6.1.2.1.47.1.1.1.1.15.1003|4| +1.3.6.1.2.1.47.1.1.1.1.15.1004|4| +1.3.6.1.2.1.47.1.1.1.1.15.1005|4| +1.3.6.1.2.1.47.1.1.1.1.15.1006|4| +1.3.6.1.2.1.47.1.1.1.1.15.1007|4| +1.3.6.1.2.1.47.1.1.1.1.15.1008|4| +1.3.6.1.2.1.47.1.1.1.1.15.1009|4| +1.3.6.1.2.1.47.1.1.1.1.15.1010|4| +1.3.6.1.2.1.47.1.1.1.1.15.1011|4| +1.3.6.1.2.1.47.1.1.1.1.15.1012|4| +1.3.6.1.2.1.47.1.1.1.1.15.1013|4| +1.3.6.1.2.1.47.1.1.1.1.15.1014|4| +1.3.6.1.2.1.47.1.1.1.1.15.1015|4| +1.3.6.1.2.1.47.1.1.1.1.15.1016|4| +1.3.6.1.2.1.47.1.1.1.1.15.1017|4| +1.3.6.1.2.1.47.1.1.1.1.15.1018|4| +1.3.6.1.2.1.47.1.1.1.1.15.3000|4| +1.3.6.1.2.1.47.1.1.1.1.15.3001|4| +1.3.6.1.2.1.47.1.1.1.1.15.3002|4| +1.3.6.1.2.1.47.1.1.1.1.15.3003|4| +1.3.6.1.2.1.47.1.1.1.1.15.3004|4| +1.3.6.1.2.1.47.1.1.1.1.15.3005|4| +1.3.6.1.2.1.47.1.1.1.1.15.3006|4| +1.3.6.1.2.1.47.1.1.1.1.15.3007|4| +1.3.6.1.2.1.47.1.1.1.1.15.3008|4| +1.3.6.1.2.1.47.1.1.1.1.15.3009|4| +1.3.6.1.2.1.47.1.1.1.1.15.3010|4| +1.3.6.1.2.1.47.1.1.1.1.15.3011|4| +1.3.6.1.2.1.47.1.1.1.1.15.3012|4| +1.3.6.1.2.1.47.1.1.1.1.15.3013|4| +1.3.6.1.2.1.47.1.1.1.1.15.3014|4| +1.3.6.1.2.1.47.1.1.1.1.15.3015|4| +1.3.6.1.2.1.47.1.1.1.1.15.3016|4| +1.3.6.1.2.1.47.1.1.1.1.15.3017|4| +1.3.6.1.2.1.47.1.1.1.1.15.3018|4| +1.3.6.1.2.1.47.1.1.1.1.15.3019|4| +1.3.6.1.2.1.47.1.1.1.1.15.3020|4| +1.3.6.1.2.1.47.1.1.1.1.15.3021|4| +1.3.6.1.2.1.47.1.1.1.1.15.3022|4| +1.3.6.1.2.1.47.1.1.1.1.15.3023|4| +1.3.6.1.2.1.47.1.1.1.1.15.3024|4| +1.3.6.1.2.1.47.1.1.1.1.15.3025|4| +1.3.6.1.2.1.47.1.1.1.1.15.3026|4| +1.3.6.1.2.1.47.1.1.1.1.15.3027|4| +1.3.6.1.2.1.47.1.1.1.1.15.3028|4| +1.3.6.1.2.1.47.1.1.1.1.15.3029|4| +1.3.6.1.2.1.47.1.1.1.1.15.3030|4| +1.3.6.1.2.1.47.1.1.1.1.15.3031|4| +1.3.6.1.2.1.47.1.1.1.1.15.3032|4| +1.3.6.1.2.1.47.1.1.1.1.15.3033|4| +1.3.6.1.2.1.47.1.1.1.1.15.3034|4| +1.3.6.1.2.1.47.1.1.1.1.15.3035|4| +1.3.6.1.2.1.47.1.1.1.1.15.3036|4| +1.3.6.1.2.1.47.1.1.1.1.15.3037|4| +1.3.6.1.2.1.47.1.1.1.1.15.3038|4| +1.3.6.1.2.1.47.1.1.1.1.15.3039|4| +1.3.6.1.2.1.47.1.1.1.1.15.3040|4| +1.3.6.1.2.1.47.1.1.1.1.15.3041|4| +1.3.6.1.2.1.47.1.1.1.1.15.3042|4| +1.3.6.1.2.1.47.1.1.1.1.15.3043|4| +1.3.6.1.2.1.47.1.1.1.1.15.101000|4| +1.3.6.1.2.1.47.1.1.1.1.15.101001|4| +1.3.6.1.2.1.47.1.1.1.1.15.101002|4| +1.3.6.1.2.1.47.1.1.1.1.15.101003|4| +1.3.6.1.2.1.47.1.1.1.1.15.101004|4| +1.3.6.1.2.1.47.1.1.1.1.15.101005|4| +1.3.6.1.2.1.47.1.1.1.1.15.201000|4| +1.3.6.1.2.1.47.1.1.1.1.15.201001|4| +1.3.6.1.2.1.47.1.1.1.1.16.1|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.2|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.3|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.4|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.5|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.6|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.7|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.8|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.9|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.10|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.11|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1000|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.1001|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1002|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1003|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1004|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1005|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1006|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1007|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1008|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1009|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1010|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1011|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1012|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1013|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1014|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1015|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1016|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1017|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.1018|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3000|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.3001|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3002|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3003|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3004|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3005|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3006|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3007|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3008|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3009|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3010|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3011|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3012|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3013|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3014|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3015|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3016|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3017|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3018|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3019|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3020|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3021|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3022|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3023|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3024|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3025|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3026|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3027|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3028|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3029|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3030|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3031|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3032|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3033|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3034|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3035|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3036|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3037|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3038|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3039|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3040|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3041|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3042|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.3043|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.101000|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.101001|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.101002|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.101003|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.101004|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.101005|2|2 +1.3.6.1.2.1.47.1.1.1.1.16.201000|2|1 +1.3.6.1.2.1.47.1.1.1.1.16.201001|2|2 +1.3.6.1.2.1.47.1.1.1.1.17.1|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.2|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.3|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.4|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.5|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.6|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.7|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.8|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.9|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.10|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.11|4x|0000000000000000 +1.3.6.1.2.1.47.1.1.1.1.17.1000|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1001|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1002|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1003|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1004|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1005|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1006|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1007|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1008|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1009|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1010|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1011|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1012|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1013|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1014|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1015|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1016|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1017|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.1018|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3000|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3001|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3002|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3003|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3004|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3005|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3006|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3007|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3008|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3009|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3010|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3011|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3012|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3013|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3014|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3015|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3016|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3017|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3018|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3019|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3020|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3021|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3022|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3023|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3024|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3025|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3026|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3027|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3028|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3029|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3030|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3031|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3032|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3033|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3034|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3035|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3036|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3037|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3038|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3039|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3040|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3041|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3042|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.3043|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.101000|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.101001|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.101002|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.101003|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.101004|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.101005|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.201000|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.17.201001|4x|07CF0C1B00000000 +1.3.6.1.2.1.47.1.1.1.1.18.1|4|https://149.217.129.164 +1.3.6.1.2.1.47.1.1.1.1.18.2|4|http://net-snmp.org +1.3.6.1.2.1.47.1.1.1.1.18.3|4| +1.3.6.1.2.1.47.1.1.1.1.18.4|4| +1.3.6.1.2.1.47.1.1.1.1.18.5|4| +1.3.6.1.2.1.47.1.1.1.1.18.6|4| +1.3.6.1.2.1.47.1.1.1.1.18.7|4| +1.3.6.1.2.1.47.1.1.1.1.18.8|4| +1.3.6.1.2.1.47.1.1.1.1.18.9|4| +1.3.6.1.2.1.47.1.1.1.1.18.10|4|http://www.arm.com +1.3.6.1.2.1.47.1.1.1.1.18.11|4|http://www.freescale.com +1.3.6.1.2.1.47.1.1.1.1.18.1000|4| +1.3.6.1.2.1.47.1.1.1.1.18.1001|4| +1.3.6.1.2.1.47.1.1.1.1.18.1002|4| +1.3.6.1.2.1.47.1.1.1.1.18.1003|4| +1.3.6.1.2.1.47.1.1.1.1.18.1004|4| +1.3.6.1.2.1.47.1.1.1.1.18.1005|4| +1.3.6.1.2.1.47.1.1.1.1.18.1006|4| +1.3.6.1.2.1.47.1.1.1.1.18.1007|4| +1.3.6.1.2.1.47.1.1.1.1.18.1008|4| +1.3.6.1.2.1.47.1.1.1.1.18.1009|4| +1.3.6.1.2.1.47.1.1.1.1.18.1010|4| +1.3.6.1.2.1.47.1.1.1.1.18.1011|4| +1.3.6.1.2.1.47.1.1.1.1.18.1012|4| +1.3.6.1.2.1.47.1.1.1.1.18.1013|4| +1.3.6.1.2.1.47.1.1.1.1.18.1014|4| +1.3.6.1.2.1.47.1.1.1.1.18.1015|4| +1.3.6.1.2.1.47.1.1.1.1.18.1016|4| +1.3.6.1.2.1.47.1.1.1.1.18.1017|4| +1.3.6.1.2.1.47.1.1.1.1.18.1018|4| +1.3.6.1.2.1.47.1.1.1.1.18.3000|4| +1.3.6.1.2.1.47.1.1.1.1.18.3001|4| +1.3.6.1.2.1.47.1.1.1.1.18.3002|4| +1.3.6.1.2.1.47.1.1.1.1.18.3003|4| +1.3.6.1.2.1.47.1.1.1.1.18.3004|4| +1.3.6.1.2.1.47.1.1.1.1.18.3005|4| +1.3.6.1.2.1.47.1.1.1.1.18.3006|4| +1.3.6.1.2.1.47.1.1.1.1.18.3007|4| +1.3.6.1.2.1.47.1.1.1.1.18.3008|4| +1.3.6.1.2.1.47.1.1.1.1.18.3009|4| +1.3.6.1.2.1.47.1.1.1.1.18.3010|4| +1.3.6.1.2.1.47.1.1.1.1.18.3011|4| +1.3.6.1.2.1.47.1.1.1.1.18.3012|4| +1.3.6.1.2.1.47.1.1.1.1.18.3013|4| +1.3.6.1.2.1.47.1.1.1.1.18.3014|4| +1.3.6.1.2.1.47.1.1.1.1.18.3015|4| +1.3.6.1.2.1.47.1.1.1.1.18.3016|4| +1.3.6.1.2.1.47.1.1.1.1.18.3017|4| +1.3.6.1.2.1.47.1.1.1.1.18.3018|4| +1.3.6.1.2.1.47.1.1.1.1.18.3019|4| +1.3.6.1.2.1.47.1.1.1.1.18.3020|4| +1.3.6.1.2.1.47.1.1.1.1.18.3021|4| +1.3.6.1.2.1.47.1.1.1.1.18.3022|4| +1.3.6.1.2.1.47.1.1.1.1.18.3023|4| +1.3.6.1.2.1.47.1.1.1.1.18.3024|4| +1.3.6.1.2.1.47.1.1.1.1.18.3025|4| +1.3.6.1.2.1.47.1.1.1.1.18.3026|4| +1.3.6.1.2.1.47.1.1.1.1.18.3027|4| +1.3.6.1.2.1.47.1.1.1.1.18.3028|4| +1.3.6.1.2.1.47.1.1.1.1.18.3029|4| +1.3.6.1.2.1.47.1.1.1.1.18.3030|4| +1.3.6.1.2.1.47.1.1.1.1.18.3031|4| +1.3.6.1.2.1.47.1.1.1.1.18.3032|4| +1.3.6.1.2.1.47.1.1.1.1.18.3033|4| +1.3.6.1.2.1.47.1.1.1.1.18.3034|4| +1.3.6.1.2.1.47.1.1.1.1.18.3035|4| +1.3.6.1.2.1.47.1.1.1.1.18.3036|4| +1.3.6.1.2.1.47.1.1.1.1.18.3037|4| +1.3.6.1.2.1.47.1.1.1.1.18.3038|4| +1.3.6.1.2.1.47.1.1.1.1.18.3039|4| +1.3.6.1.2.1.47.1.1.1.1.18.3040|4| +1.3.6.1.2.1.47.1.1.1.1.18.3041|4| +1.3.6.1.2.1.47.1.1.1.1.18.3042|4| +1.3.6.1.2.1.47.1.1.1.1.18.3043|4| +1.3.6.1.2.1.47.1.1.1.1.18.101000|4| +1.3.6.1.2.1.47.1.1.1.1.18.101001|4| +1.3.6.1.2.1.47.1.1.1.1.18.101002|4| +1.3.6.1.2.1.47.1.1.1.1.18.101003|4| +1.3.6.1.2.1.47.1.1.1.1.18.101004|4| +1.3.6.1.2.1.47.1.1.1.1.18.101005|4| +1.3.6.1.2.1.47.1.1.1.1.18.201000|4| +1.3.6.1.2.1.47.1.1.1.1.18.201001|4| +1.3.6.1.2.1.47.1.3.2.1.2.3.0|6|1.3.6.1.2.1.2.2.1.1.1 +1.3.6.1.2.1.47.1.3.2.1.2.4.0|6|1.3.6.1.2.1.2.2.1.1.2 +1.3.6.1.2.1.47.1.3.2.1.2.5.0|6|1.3.6.1.2.1.2.2.1.1.3 +1.3.6.1.2.1.47.1.3.2.1.2.6.0|6|1.3.6.1.2.1.2.2.1.1.4 +1.3.6.1.2.1.47.1.3.2.1.2.7.0|6|1.3.6.1.2.1.2.2.1.1.5 +1.3.6.1.2.1.47.1.3.2.1.2.8.0|6|1.3.6.1.2.1.2.2.1.1.6 +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.17.10 +1.3.6.1.4.1.2606.7.2.6.0|4|41326588 +1.3.6.1.4.1.2606.7.4.1.2.1.2.1|4|CMCIII-PU LCP +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.1.106|4|Login.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.107|4|Login.Attempts +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.108|4|Login.User Count +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.109|4|Login.Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.110|4|Login.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.1.111|4|Login.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.1|4|Modules.Fan Board.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.2|4|Modules.Fan Board.Software Revision +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.3|4|Modules.Fan Board.Hardware Revision +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.4|4|Modules.Fan Board.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.5|4|Modules.Fan Board.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.6|4|Modules.Water Board.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.7|4|Modules.Water Board.Software Revision +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.8|4|Modules.Water Board.Hardware Revision +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.9|4|Modules.Water Board.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.10|4|Modules.Water Board.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.11|4|Modules.Humidity Sensor.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.12|4|Modules.Humidity Sensor.Software Revision +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.13|4|Modules.Humidity Sensor.Hardware Revision +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.14|4|Modules.Humidity Sensor.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.15|4|Modules.Humidity Sensor.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.16|4|Air Temp.Server In.Top.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.17|4|Air Temp.Server In.Top.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.18|4|Air Temp.Server In.Top.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.19|4|Air Temp.Server In.Top.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.20|4|Air Temp.Server In.Top.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.21|4|Air Temp.Server In.Top.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.22|4|Air Temp.Server In.Top.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.23|4|Air Temp.Server In.Top.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.24|4|Air Temp.Server In.Top.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.25|4|Air Temp.Server In.Center.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.26|4|Air Temp.Server In.Center.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.27|4|Air Temp.Server In.Center.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.28|4|Air Temp.Server In.Center.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.29|4|Air Temp.Server In.Center.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.30|4|Air Temp.Server In.Center.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.31|4|Air Temp.Server In.Center.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.32|4|Air Temp.Server In.Center.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.33|4|Air Temp.Server In.Center.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.34|4|Air Temp.Server In.Bottom.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.35|4|Air Temp.Server In.Bottom.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.36|4|Air Temp.Server In.Bottom.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.37|4|Air Temp.Server In.Bottom.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.38|4|Air Temp.Server In.Bottom.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.39|4|Air Temp.Server In.Bottom.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.40|4|Air Temp.Server In.Bottom.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.41|4|Air Temp.Server In.Bottom.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.42|4|Air Temp.Server In.Bottom.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.43|4|Air Temp.Server In.Average.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.44|4|Air Temp.Server In.Average.Setpoint +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.45|4|Air Temp.Server In.Average.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.46|4|Air Temp.Server In.Average.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.47|4|Air Temp.Server In.Average.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.48|4|Air Temp.Server In.Average.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.49|4|Air Temp.Server In.Average.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.50|4|Air Temp.Server In.Average.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.51|4|Air Temp.Server In.Average.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.52|4|Air Temp.Server In.Average.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.53|4|Air Temp.Server Out.Top.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.54|4|Air Temp.Server Out.Top.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.55|4|Air Temp.Server Out.Top.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.56|4|Air Temp.Server Out.Top.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.57|4|Air Temp.Server Out.Top.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.58|4|Air Temp.Server Out.Top.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.59|4|Air Temp.Server Out.Top.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.60|4|Air Temp.Server Out.Top.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.61|4|Air Temp.Server Out.Top.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.62|4|Air Temp.Server Out.Center.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.63|4|Air Temp.Server Out.Center.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.64|4|Air Temp.Server Out.Center.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.65|4|Air Temp.Server Out.Center.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.66|4|Air Temp.Server Out.Center.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.67|4|Air Temp.Server Out.Center.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.68|4|Air Temp.Server Out.Center.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.69|4|Air Temp.Server Out.Center.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.70|4|Air Temp.Server Out.Center.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.71|4|Air Temp.Server Out.Bottom.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.72|4|Air Temp.Server Out.Bottom.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.73|4|Air Temp.Server Out.Bottom.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.74|4|Air Temp.Server Out.Bottom.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.75|4|Air Temp.Server Out.Bottom.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.76|4|Air Temp.Server Out.Bottom.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.77|4|Air Temp.Server Out.Bottom.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.78|4|Air Temp.Server Out.Bottom.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.79|4|Air Temp.Server Out.Bottom.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.80|4|Air Temp.Server Out.Average.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.81|4|Air Temp.Server Out.Average.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.82|4|Air Temp.Server Out.Average.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.83|4|Air Temp.Server Out.Average.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.84|4|Air Temp.Server Out.Average.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.85|4|Air Temp.Server Out.Average.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.86|4|Air Temp.Server Out.Average.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.87|4|Air Temp.Server Out.Average.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.88|4|Air Temp.Server Out.Average.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.89|4|Fans.Current Speed.Fan1.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.90|4|Fans.Current Speed.Fan1.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.91|4|Fans.Current Speed.Fan1.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.92|4|Fans.Current Speed.Fan1.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.93|4|Fans.Current Speed.Fan2.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.94|4|Fans.Current Speed.Fan2.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.95|4|Fans.Current Speed.Fan2.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.96|4|Fans.Current Speed.Fan2.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.97|4|Fans.Current Speed.Fan3.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.98|4|Fans.Current Speed.Fan3.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.99|4|Fans.Current Speed.Fan3.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.100|4|Fans.Current Speed.Fan3.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.101|4|Fans.Current Speed.Fan4.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.102|4|Fans.Current Speed.Fan4.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.103|4|Fans.Current Speed.Fan4.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.104|4|Fans.Current Speed.Fan4.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.105|4|Fans.Current Speed.Fan5.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.106|4|Fans.Current Speed.Fan5.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.107|4|Fans.Current Speed.Fan5.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.108|4|Fans.Current Speed.Fan5.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.109|4|Fans.Current Speed.Fan6.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.110|4|Fans.Current Speed.Fan6.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.111|4|Fans.Current Speed.Fan6.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.112|4|Fans.Current Speed.Fan6.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.113|4|Fans.Config.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.114|4|Fans.Config.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.115|4|Fans.Config.Manual.Fan1 +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.116|4|Fans.Config.Manual.Fan2 +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.117|4|Fans.Config.Manual.Fan3 +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.118|4|Fans.Config.Manual.Fan4 +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.119|4|Fans.Config.Manual.Fan5 +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.120|4|Fans.Config.Manual.Fan6 +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.121|4|Fans.Internal Control.Control Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.122|4|Fans.Internal Control.Influence +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.123|4|Fans.Internal Control.Fan1 +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.124|4|Fans.Internal Control.Fan2 +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.125|4|Fans.Internal Control.Fan3 +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.126|4|Fans.Internal Control.Fan4 +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.127|4|Fans.Internal Control.Fan5 +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.128|4|Fans.Internal Control.Fan6 +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.129|4|Fans.Remote.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.130|4|Fans.Remote.Trigger +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.131|4|Fans.Remote.Fans +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.132|4|Fans.Remote.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.133|4|Fans.Remote.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.134|4|Water.Temperatures.In.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.135|4|Water.Temperatures.In.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.136|4|Water.Temperatures.In.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.137|4|Water.Temperatures.In.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.138|4|Water.Temperatures.In.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.139|4|Water.Temperatures.In.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.140|4|Water.Temperatures.In.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.141|4|Water.Temperatures.In.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.142|4|Water.Temperatures.In.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.143|4|Water.Temperatures.Out.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.144|4|Water.Temperatures.Out.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.145|4|Water.Temperatures.Out.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.146|4|Water.Temperatures.Out.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.147|4|Water.Temperatures.Out.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.148|4|Water.Temperatures.Out.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.149|4|Water.Temperatures.Out.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.150|4|Water.Temperatures.Out.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.151|4|Water.Temperatures.Out.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.152|4|Water.Flowrate.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.153|4|Water.Flowrate.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.154|4|Water.Flowrate.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.155|4|Water.Flowrate.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.156|4|Water.Flowrate.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.157|4|Water.Flowrate.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.158|4|Control Valve.Current Value.Valve1.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.159|4|Control Valve.Current Value.Valve1.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.160|4|Control Valve.Current Value.Valve1.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.161|4|Control Valve.Current Value.Valve1.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.162|4|Control Valve.Config.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.163|4|Control Valve.Config.Manual.Valve1 +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.164|4|Control Valve.Internal Control.Control Mode +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.165|4|Control Valve.Internal Control.Influence +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.166|4|Control Valve.Internal Control.Valve1 +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.167|4|Control Valve.Remote.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.168|4|Control Valve.Remote.Trigger +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.169|4|Control Valve.Remote.Valve +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.170|4|Control Valve.Remote.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.171|4|Control Valve.Remote.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.172|4|Cooling Capacity.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.173|4|Cooling Capacity.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.174|4|Cooling Capacity.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.175|4|Cooling Capacity.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.176|4|Leakage Sensor.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.177|4|Leakage Sensor.Input +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.178|4|Leakage Sensor.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.179|4|Leakage Sensor.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.180|4|Condensate Sensor.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.181|4|Condensate Sensor.Input +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.182|4|Condensate Sensor.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.183|4|Condensate Sensor.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.184|4|Condensate Pump.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.185|4|Condensate Pump.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.186|4|Condensate Pump.Cycles +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.187|4|Condensate Pump.Duration +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.188|4|Condensate Pump.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.189|4|Condensate Pump.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.190|4|Features.Dewpoint Control.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.191|4|Features.Dewpoint Control.Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.192|4|Features.Dewpoint Control.Relative Humidity +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.193|4|Features.Dewpoint Control.Dewpoint +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.194|4|Features.Dewpoint Control.Water In +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.195|4|Features.Dewpoint Control.Fan Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.196|4|Features.Dewpoint Control.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.197|4|Features.Dewpoint Control.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.198|4|Features.Dewpoint Control.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.199|4|Features.Water Control dT.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.200|4|Features.Water Control dT.Water In +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.201|4|Features.Water Control dT.Water Out Target +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.202|4|Features.Water Control dT.Water Out +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.203|4|Features.Water Control dT.Waterflow +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.204|4|Features.Water Control dT.ServerIn Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.205|4|Features.Water Control dT.ServerInLow Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.206|4|Features.Water Control dT.ServerInHigh Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.207|4|Features.Water Control dT.Setpoint Fallback +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.208|4|Features.Water Control dT.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.209|4|Features.Water Control dT.Retry +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.210|4|Features.Water Control dT.Retry Time Set +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.211|4|Features.Water Control dT.Retry Time +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.212|4|Features.Water Control dT.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.2.213|4|Features.Water Control dT.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.1|4|Temperature.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.2|4|Temperature.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.3|4|Temperature.Offset +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.4|4|Temperature.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.5|4|Temperature.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.6|4|Temperature.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.7|4|Temperature.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.8|4|Temperature.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.9|4|Temperature.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.10|4|Temperature.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.11|4|Door Opening.Automatic.Temperature.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.12|4|Door Opening.Automatic.Temperature.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.13|4|Door Opening.Automatic.Temperature.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.14|4|Door Opening.Automatic.Temperature.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.15|4|Door Opening.Automatic.Temperature.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.16|4|Door Opening.Automatic.Temperature.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.17|4|Door Opening.Automatic.Input Alarm.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.18|4|Door Opening.Automatic.Input Alarm.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.19|4|Door Opening.Automatic.Input Alarm.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.20|4|Door Opening.Automatic.Input Alarm.Logic +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.21|4|Door Opening.Automatic.Input Alarm.Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.22|4|Door Opening.Automatic.Input Alarm.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.23|4|Door Opening.Automatic.Input Alarm.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.24|4|Door Opening.Automatic.Alarm.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.25|4|Door Opening.Automatic.Alarm.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.26|4|Door Opening.Automatic.Alarm.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.27|4|Door Opening.Manual Front.Input Access.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.28|4|Door Opening.Manual Front.Input Access.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.29|4|Door Opening.Manual Front.Input Access.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.30|4|Door Opening.Manual Front.Input Access.Logic +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.31|4|Door Opening.Manual Front.Input Access.Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.32|4|Door Opening.Manual Front.Input Access.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.33|4|Door Opening.Manual Front.Input Access.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.34|4|Door Opening.Manual Rear.Input Access.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.35|4|Door Opening.Manual Rear.Input Access.Value +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.36|4|Door Opening.Manual Rear.Input Access.Command +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.37|4|Door Opening.Manual Rear.Input Access.Logic +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.38|4|Door Opening.Manual Rear.Input Access.Delay +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.39|4|Door Opening.Manual Rear.Input Access.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.40|4|Door Opening.Manual Rear.Input Access.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.41|4|Door Opening.Supply.Magnet.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.42|4|Door Opening.Supply.Magnet.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.43|4|Door Opening.Supply.Magnet.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.44|4|Door Opening.Supply.Motor.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.45|4|Door Opening.Supply.Motor.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.46|4|Door Opening.Supply.Motor.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.47|4|Door Opening.Front Door.Magnet.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.48|4|Door Opening.Front Door.Magnet.Connected +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.49|4|Door Opening.Front Door.Magnet.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.50|4|Door Opening.Front Door.Magnet.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.51|4|Door Opening.Front Door.Motor.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.52|4|Door Opening.Front Door.Motor.Connected +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.53|4|Door Opening.Front Door.Motor.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.54|4|Door Opening.Front Door.Motor.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.55|4|Door Opening.Rear Door.Magnet.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.56|4|Door Opening.Rear Door.Magnet.Connected +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.57|4|Door Opening.Rear Door.Magnet.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.58|4|Door Opening.Rear Door.Magnet.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.59|4|Door Opening.Rear Door.Motor.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.60|4|Door Opening.Rear Door.Motor.Connected +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.61|4|Door Opening.Rear Door.Motor.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.62|4|Door Opening.Rear Door.Motor.Category +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.63|4|KeyPad.DescName +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.64|4|KeyPad.KeyCode +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.65|4|KeyPad.KeyCommand +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.66|4|KeyPad.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.3.67|4|KeyPad.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.Offset +1.3.6.1.4.1.2606.7.4.2.2.1.3.4.4|4|Temperature.SetPtHighAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.4.5|4|Temperature.SetPtHighWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.4.6|4|Temperature.SetPtLowWarning +1.3.6.1.4.1.2606.7.4.2.2.1.3.4.7|4|Temperature.SetPtLowAlarm +1.3.6.1.4.1.2606.7.4.2.2.1.3.4.8|4|Temperature.Hysteresis +1.3.6.1.4.1.2606.7.4.2.2.1.3.4.9|4|Temperature.Status +1.3.6.1.4.1.2606.7.4.2.2.1.3.4.10|4|Temperature.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.1.106|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.107|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.108|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.109|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.110|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.1.111|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|91 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.3|2|91 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.4|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.5|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.6|2|1 +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|91 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.9|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.10|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.11|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.12|2|91 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.13|2|91 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.14|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.15|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.16|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.17|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.18|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.19|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.20|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.21|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.22|2|6 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.27|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.28|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.29|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.30|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.31|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.32|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.33|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.34|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.35|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.36|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.37|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.38|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.39|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.40|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.41|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.42|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.43|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.44|2|17 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.45|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.46|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.47|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.48|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.49|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.50|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.51|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.52|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.53|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.54|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.55|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.56|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.57|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.58|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.59|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.60|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.61|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.62|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.63|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.64|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.65|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.66|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.67|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.68|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.69|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.70|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.71|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.72|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.73|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.74|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.75|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.76|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.77|2|6 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.82|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.83|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.84|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.85|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.86|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.87|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.88|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.89|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.90|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.91|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.92|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.93|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.94|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.95|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.96|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.97|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.98|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.99|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.100|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.101|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.102|2|2 +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.2.105|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.106|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.107|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.108|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.109|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.110|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.111|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.112|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.113|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.114|2|120 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.115|2|17 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.116|2|17 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.117|2|17 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.118|2|17 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.119|2|17 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.120|2|17 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.121|2|120 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.122|2|123 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.123|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.124|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.125|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.126|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.127|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.128|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.129|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.130|2|37 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.131|2|37 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.132|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.133|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.134|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.135|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.136|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.137|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.138|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.139|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.140|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.141|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.142|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.143|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.144|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.145|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.146|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.147|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.148|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.149|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.150|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.151|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.152|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.153|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.154|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.155|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.156|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.157|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.158|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.159|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.160|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.161|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.162|2|120 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.163|2|17 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.164|2|120 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.165|2|124 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.166|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.167|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.168|2|37 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.169|2|37 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.170|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.171|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.172|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.173|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.174|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.175|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.176|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.177|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.178|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.179|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.180|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.181|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.182|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.183|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.184|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.185|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.186|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.187|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.188|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.189|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.190|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.191|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.192|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.193|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.194|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.195|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.196|2|121 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.197|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.198|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.199|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.200|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.201|2|17 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.202|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.203|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.204|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.205|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.206|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.207|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.208|2|122 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.209|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.210|2|17 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.211|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.212|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.2.213|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|18 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.4|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.5|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.6|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.7|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.8|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.9|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.10|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.11|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.12|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.13|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.14|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.15|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.16|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.17|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.18|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.19|2|81 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.20|2|15 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.21|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.22|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.23|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.24|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.25|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.26|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.27|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.28|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.29|2|81 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.30|2|15 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.31|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.32|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.33|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.34|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.35|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.36|2|81 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.37|2|15 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.38|2|21 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.39|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.40|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.41|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.42|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.43|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.44|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.45|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.46|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.47|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.48|2|96 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.49|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.50|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.51|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.52|2|96 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.53|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.54|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.55|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.56|2|96 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.57|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.58|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.59|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.60|2|96 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.61|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.62|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.63|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.64|2|80 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.65|2|83 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.66|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.3.67|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|18 +1.3.6.1.4.1.2606.7.4.2.2.1.4.4.4|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.4.4.5|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.4.4.6|2|9 +1.3.6.1.4.1.2606.7.4.2.2.1.4.4.7|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.4.4.8|2|6 +1.3.6.1.4.1.2606.7.4.2.2.1.4.4.9|2|7 +1.3.6.1.4.1.2606.7.4.2.2.1.4.4.10|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.1.106|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.107|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.108|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.109|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.110|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.1.111|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| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.11|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.12|4| +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|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.18|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.19|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.20|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.21|4|degree C +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|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.27|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.28|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.29|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.30|4|degree C +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|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.36|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.37|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.38|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.39|4|degree C +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|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.45|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.46|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.47|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.48|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.49|4|degree C +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|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.55|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.56|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.57|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.58|4|degree C +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| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.61|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.62|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.63|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.64|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.65|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.66|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.67|4|degree C +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|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.73|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.74|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.75|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.76|4|degree C +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|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.82|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.83|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.84|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.85|4|degree C +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.2.105|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.106|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.107|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.108|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.109|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.110|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.111|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.112|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.113|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.114|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.115|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.116|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.117|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.118|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.119|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.120|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.121|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.122|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.123|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.124|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.125|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.126|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.127|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.128|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.129|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.130|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.131|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.132|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.133|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.134|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.135|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.136|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.137|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.138|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.139|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.140|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.141|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.142|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.143|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.144|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.145|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.146|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.147|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.148|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.149|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.150|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.151|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.152|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.153|4|l/min +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.154|4|l/min +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.155|4|l/min +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.156|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.157|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.158|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.159|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.160|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.161|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.162|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.163|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.164|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.165|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.166|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.167|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.168|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.169|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.170|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.171|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.172|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.173|4|W +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.174|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.175|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.176|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.177|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.178|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.179|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.180|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.181|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.182|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.183|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.184|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.185|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.186|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.187|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.188|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.189|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.190|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.191|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.192|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.193|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.194|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.195|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.196|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.197|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.198|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.199|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.200|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.201|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.202|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.203|4|l/min +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.204|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.205|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.206|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.207|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.208|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.209|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.210|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.211|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.212|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.2.213|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|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.3|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.4|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.5|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.6|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.7|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.8|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.9|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.10|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.11|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.12|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.13|4|degree C +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.14|4|% +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.15|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.16|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.17|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.18|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.19|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.20|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.21|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.22|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.23|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.24|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.25|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.26|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.27|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.28|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.29|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.30|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.31|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.32|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.33|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.34|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.35|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.36|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.37|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.38|4|s +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.39|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.40|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.41|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.42|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.43|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.44|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.45|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.46|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.47|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.48|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.49|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.50|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.51|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.52|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.53|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.54|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.55|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.56|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.57|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.58|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.59|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.60|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.61|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.62|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.63|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.64|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.65|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.66|4| +1.3.6.1.4.1.2606.7.4.2.2.1.5.3.67|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|degree C +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.4.10|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.1.106|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.107|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.108|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.109|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.110|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.1.111|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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.3|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.4|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.5|2|2 +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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.12|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.13|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.14|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.15|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.16|2|3 +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|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.21|2|2 +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|2 +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|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.31|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.32|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.33|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.34|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.35|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.36|2|2 +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|2 +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|2 +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|3 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.46|2|2 +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|2 +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|2 +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|3 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.56|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.57|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.58|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.59|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.60|2|4 +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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.63|2|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.66|2|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.69|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.70|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.71|2|3 +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|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.76|2|2 +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|2 +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|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.86|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.87|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.88|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.89|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.90|2|2 +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|3 +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|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.96|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.97|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.98|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.99|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.100|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.101|2|3 +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.2.105|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.106|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.107|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.108|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.109|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.110|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.111|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.112|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.113|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.114|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.115|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.116|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.117|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.118|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.119|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.120|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.121|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.122|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.123|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.124|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.125|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.126|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.127|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.128|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.129|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.130|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.131|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.132|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.133|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.134|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.135|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.136|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.137|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.138|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.139|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.140|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.141|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.142|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.143|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.144|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.145|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.146|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.147|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.148|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.149|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.150|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.151|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.152|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.153|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.154|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.155|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.156|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.157|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.158|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.159|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.160|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.161|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.162|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.163|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.164|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.165|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.166|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.167|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.168|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.169|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.170|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.171|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.172|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.173|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.174|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.175|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.176|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.177|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.178|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.179|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.180|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.181|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.182|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.183|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.184|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.185|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.186|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.187|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.188|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.189|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.190|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.191|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.192|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.193|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.194|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.195|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.196|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.197|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.198|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.199|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.200|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.201|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.202|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.203|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.204|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.205|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.206|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.207|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.208|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.209|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.210|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.211|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.212|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.2.213|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|2 +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.3.6|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.7|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.8|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.9|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.10|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.11|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.12|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.13|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.14|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.15|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.16|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.17|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.18|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.19|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.20|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.21|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.22|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.23|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.24|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.25|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.26|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.27|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.28|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.29|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.30|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.31|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.32|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.33|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.34|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.35|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.36|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.37|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.38|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.39|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.40|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.41|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.42|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.43|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.44|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.45|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.46|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.47|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.48|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.49|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.50|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.51|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.52|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.53|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.54|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.55|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.56|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.57|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.58|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.59|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.60|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.61|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.62|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.63|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.64|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.65|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.66|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.3.67|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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.6.4.9|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.6.4.10|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.1.106|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.107|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.108|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.109|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.110|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.1.111|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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.11|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.12|2|0 +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|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.18|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.19|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.20|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.21|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.22|2|-100 +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|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.27|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.28|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.29|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.30|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.31|2|-100 +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|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.36|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.37|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.38|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.39|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.40|2|-100 +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|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.45|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.46|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.47|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.48|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.49|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.50|2|-100 +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|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.55|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.56|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.57|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.58|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.59|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.60|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.61|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.62|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.63|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.64|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.65|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.66|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.67|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.68|2|-100 +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|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.73|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.74|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.75|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.76|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.77|2|-100 +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|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.82|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.83|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.84|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.85|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.86|2|-100 +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|1 +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|1 +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|1 +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|1 +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.2.105|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.106|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.107|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.108|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.109|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.110|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.111|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.112|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.113|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.114|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.115|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.116|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.117|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.118|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.119|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.120|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.121|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.122|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.123|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.124|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.125|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.126|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.127|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.128|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.129|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.130|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.131|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.132|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.133|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.134|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.135|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.136|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.137|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.138|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.139|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.140|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.141|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.142|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.143|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.144|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.145|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.146|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.147|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.148|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.149|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.150|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.151|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.152|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.153|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.154|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.155|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.156|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.157|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.158|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.159|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.160|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.161|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.162|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.163|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.164|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.165|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.166|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.167|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.168|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.169|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.170|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.171|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.172|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.173|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.174|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.175|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.176|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.177|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.178|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.179|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.180|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.181|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.182|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.183|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.184|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.185|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.186|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.187|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.188|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.189|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.190|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.191|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.192|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.193|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.194|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.195|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.196|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.197|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.198|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.199|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.200|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.201|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.202|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.203|2|-10 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.204|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.205|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.206|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.207|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.208|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.209|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.210|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.211|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.212|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.2.213|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|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.3|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.4|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.5|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.6|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.7|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.8|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.10|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.11|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.12|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.13|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.14|2|-100 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.15|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.16|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.17|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.18|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.19|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.20|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.21|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.22|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.23|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.24|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.25|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.26|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.27|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.28|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.29|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.30|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.31|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.32|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.33|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.34|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.35|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.36|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.37|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.38|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.39|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.40|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.41|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.42|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.43|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.44|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.45|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.46|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.47|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.48|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.49|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.50|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.51|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.52|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.53|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.54|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.55|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.56|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.57|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.58|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.59|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.60|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.61|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.62|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.63|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.64|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.65|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.66|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.7.3.67|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|-100 +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.4.10|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.1.106|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.107|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.108|4|integer: min 0, max 32, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.109|4|integer: min 0, max 3600, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.110|4|enum: 1,4,10,5,33 +1.3.6.1.4.1.2606.7.4.2.2.1.8.1.111|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,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.2|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.3|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.4|4|enum: 1,2,4,21,22,31 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.5|4|integer: min 0, max 255, scale none, step 1 +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,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.8|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.9|4|enum: 1,2,4,21,22,31 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.10|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.11|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.12|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.13|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.14|4|enum: 1,2,4,21,22,31 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.15|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.16|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.17|4|integer: min -3000, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.18|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.19|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.20|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.21|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.22|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.23|4|enum: 1,4,6,7,8,9,24,25,26 +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,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.26|4|integer: min -3000, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.27|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.28|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.29|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.30|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.31|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.32|4|enum: 1,4,6,7,8,9,24,25,26 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.33|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.34|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.35|4|integer: min -3000, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.36|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.37|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.38|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.39|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.40|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.41|4|enum: 1,4,6,7,8,9,24,25,26 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.42|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.43|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.44|4|integer: min 1000, max 4000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.45|4|integer: min -3000, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.46|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.47|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.48|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.49|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.50|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.51|4|enum: 1,4,5,6,7,8,9 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.52|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.53|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.54|4|integer: min -3000, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.55|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.56|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.57|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.58|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.59|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.60|4|enum: 1,4,6,7,8,9,24,25,26 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.61|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.62|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.63|4|integer: min -3000, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.64|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.65|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.66|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.67|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.68|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.69|4|enum: 1,4,6,7,8,9,24,25,26 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.70|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.71|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.72|4|integer: min -3000, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.73|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.74|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.75|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.76|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.77|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.78|4|enum: 1,4,6,7,8,9,24,25,26 +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,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.81|4|integer: min -3000, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.82|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.83|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.84|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.85|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.86|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.87|4|enum: 1,4,5,6,7,8,9 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.88|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.89|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.90|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.91|4|enum: 1,4,9,10,27 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.92|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.93|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.94|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.95|4|enum: 1,4,9,10,27 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.96|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.97|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.98|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.99|4|enum: 1,4,9,10,27 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.100|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.101|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.102|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.103|4|enum: 1,4,9,10,27 +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.2.105|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.106|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.107|4|enum: 1,4,9,10,27 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.108|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.109|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.110|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.111|4|enum: 1,4,9,10,27 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.112|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.113|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.114|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.115|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.116|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.117|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.118|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.119|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.120|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.121|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.122|4|enum: 0,1,2,3,4,5 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.123|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.124|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.125|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.126|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.127|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.128|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.129|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.130|4|integer: min 0, max 60, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.131|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.132|4|enum: 1,10,11 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.133|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.134|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.135|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.136|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.137|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.138|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.139|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.140|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.141|4|enum: 1,4,6,7,8,9,24,25,26 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.142|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.143|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.144|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.145|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.146|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.147|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.148|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.149|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.150|4|enum: 1,4,6,7,8,9,24,25,26 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.151|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.152|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.153|4|integer: min 0, max 2000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.154|4|integer: min 0, max 2000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.155|4|integer: min 0, max 2000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.156|4|enum: 1,3,4,5,7,8 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.157|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.158|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.159|4|integer: min 0, max 100, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.160|4|enum: 1,3,4,5 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.161|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.162|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.163|4|integer: min 0, max 1000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.164|4|enum: 0,1,2,3,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.165|4|enum: 0,1,2,3,4,5,6 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.166|4|integer: min 0, max 1000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.167|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.168|4|integer: min 0, max 60, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.169|4|integer: min 0, max 1000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.170|4|enum: 1,10,11 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.171|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.172|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.173|4|integer: min 0, max 100000, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.174|4|enum: 4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.175|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.176|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.177|4|integer: min 0, max 1, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.178|4|enum: 4,5 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.179|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.180|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.181|4|integer: min 0, max 1, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.182|4|enum: 4,22 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.183|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.184|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.185|4|integer: min 0, max 1, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.186|4|integer: min 0, max 999999, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.187|4|integer: min 0, max 99999, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.188|4|enum: 10,11 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.189|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.190|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.191|4|integer: min -4000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.192|4|integer: min 0, max 10000, scale /100, step 50 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.193|4|integer: min -4000, max 10000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.194|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.195|4|integer: min 0, max 1800, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.196|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.197|4|enum: 1,3,4,7,9, 27 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.198|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.199|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.200|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.201|4|integer: min 1000, max 4000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.202|4|integer: min 0, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.203|4|integer: min 0, max 2000, scale /10, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.204|4|integer: min -3000, max 9000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.205|4|integer: min 1500, max 2500, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.206|4|integer: min 2700, max 4000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.207|4|integer: min 1000, max 4000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.208|4|enum: 0,1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.209|4|integer: min 0, max 10, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.210|4|integer: min 0, max 1800, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.211|4|integer: min 0, max 1800, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.212|4|enum: 3,6,9,10,11,27 +1.3.6.1.4.1.2606.7.4.2.2.1.8.2.213|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 -4000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.3|4|integer: min -1000, max 1000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.4|4|integer: min -4000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.5|4|integer: min -4000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.6|4|integer: min -4000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.7|4|integer: min -4000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.8|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.9|4|enum: 1,4,6,7,8,9,24,25 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.10|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.11|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.12|4|integer: min -4000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.13|4|integer: min -4000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.14|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.15|4|enum: 1,4,8,24,25 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.16|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.17|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.18|4|integer: min 0, max 1, scale *1, step 0 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.19|4|enum: 1,4 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.20|4|enum: 2,3 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.21|4|integer: min 0, max 120, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.22|4|enum: 1,4,5 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.23|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.24|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.25|4|enum: 1,4,5 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.26|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.27|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.28|4|integer: min 0, max 1, scale *1, step 0 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.29|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.30|4|enum: 0,1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.31|4|integer: min 0, max 120, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.32|4|enum: 1,10,11 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.33|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.34|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.35|4|integer: min 0, max 1, scale *1, step 0 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.36|4|enum: 0,1,2 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.37|4|enum: 0,1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.38|4|integer: min 0, max 120, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.39|4|enum: 1,10,11 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.40|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.41|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.42|4|enum: 1,4,27,29 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.43|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.44|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.45|4|enum: 1,4,27,29 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.46|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.47|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.48|4|enum: 0,1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.49|4|enum: 1,5,10,11,27 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.50|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.51|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.52|4|enum: 0,1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.53|4|enum: 1,4,5,27 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.54|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.55|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.56|4|enum: 0,1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.57|4|enum: 1,5,10,11,27 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.58|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.59|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.60|4|enum: 0,1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.61|4|enum: 1,4,5,27 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.62|4|integer: min 0, max 255, scale none, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.63|4|regexp: ^([-_ a-zA-Z0-9]{0,20})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.64|4|regexp: ^([-_ a-zA-Z0-9]{0,40})$ +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.65|4|integer: min 0, max 255, scale *1, step 1 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.66|4|enum: 27,28 +1.3.6.1.4.1.2606.7.4.2.2.1.8.3.67|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 -1000, max 1000, 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 -4000, max 8000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.4.8|4|integer: min 0, max 2000, scale /100, step 10 +1.3.6.1.4.1.2606.7.4.2.2.1.8.4.9|4|enum: 1,4,6,7,8,9 +1.3.6.1.4.1.2606.7.4.2.2.1.8.4.10|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.1.106|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.107|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.108|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.109|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.110|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.1.111|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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.5|2|1 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.12|2|0 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.15|2|1 +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|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.18|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.19|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.20|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.21|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.22|2|10 +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|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.27|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.28|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.29|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.30|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.31|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.32|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.33|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.34|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.35|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.36|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.37|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.38|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.39|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.40|2|10 +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|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.45|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.46|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.47|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.48|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.49|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.50|2|10 +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|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.55|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.56|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.57|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.58|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.59|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.60|2|0 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.63|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.64|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.65|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.66|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.67|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.68|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.69|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.70|2|1 +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|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.73|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.74|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.75|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.76|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.77|2|10 +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|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.82|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.83|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.84|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.85|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.86|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.87|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.88|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.89|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.90|2|1 +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|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.97|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.98|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.99|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.100|2|1 +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.2.105|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.106|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.107|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.108|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.109|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.110|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.111|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.112|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.113|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.114|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.115|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.116|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.117|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.118|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.119|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.120|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.121|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.122|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.123|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.124|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.125|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.126|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.127|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.128|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.129|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.130|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.131|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.132|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.133|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.134|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.135|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.136|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.137|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.138|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.139|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.140|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.141|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.142|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.143|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.144|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.145|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.146|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.147|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.148|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.149|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.150|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.151|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.152|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.153|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.154|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.155|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.156|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.157|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.158|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.159|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.160|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.161|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.162|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.163|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.164|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.165|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.166|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.167|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.168|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.169|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.170|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.171|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.172|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.173|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.174|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.175|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.176|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.177|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.178|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.179|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.180|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.181|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.182|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.183|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.184|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.185|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.186|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.187|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.188|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.189|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.190|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.191|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.192|2|50 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.193|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.194|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.195|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.196|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.197|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.198|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.199|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.200|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.201|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.202|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.203|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.204|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.205|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.206|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.207|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.208|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.209|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.210|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.211|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.212|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.2.213|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|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.3|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.4|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.5|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.6|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.7|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.8|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.10|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.11|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.12|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.13|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.14|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.15|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.16|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.17|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.18|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.19|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.20|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.21|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.22|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.23|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.24|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.25|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.26|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.27|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.28|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.29|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.30|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.31|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.32|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.33|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.34|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.35|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.36|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.37|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.38|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.39|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.40|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.41|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.42|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.43|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.44|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.45|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.46|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.47|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.48|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.49|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.50|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.51|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.52|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.53|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.54|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.55|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.56|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.57|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.58|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.59|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.60|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.61|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.62|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.63|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.64|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.65|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.66|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.3.67|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|10 +1.3.6.1.4.1.2606.7.4.2.2.1.9.4.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.9.4.10|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.1|4|Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.2|4|23.60 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|40.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.5|4|35.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.6|4|10.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.7|4|5.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.8|4|5.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|Door +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|0 +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|Inactive +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|Input 1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.18|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.19|4|0:Off / 1:On +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.20|4|1.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.21|4|Off +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|Input 2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.24|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.25|4|0:Off / 1:On +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.26|4|1.0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.27|4|Off +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|80 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|27.70 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.150 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|27.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|5.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.040 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.1.106|4|Login +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.107|4|3 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.108|4|5 +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.109|4|120 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.110|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.1.111|4|16 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.1|4|Fan Board +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.2|4|V09.006 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.3|4|V0000 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.4|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.5|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.6|4|Water Board +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.7|4|V09.003 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.8|4|V0000 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.9|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.10|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.11|4|Humidity Sensor +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.12|4| +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.13|4| +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.14|4|n.a. +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.15|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.16|4|Air Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.17|4|18.80 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.18|4|35.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.19|4|30.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.20|4|12.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.21|4|10.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.22|4|5.00 % +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.25|4|Air Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.26|4|18.90 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.27|4|35.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.28|4|30.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.29|4|12.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.30|4|10.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.31|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.32|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.33|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.34|4|Air Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.35|4|19.10 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.36|4|35.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.37|4|30.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.38|4|12.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.39|4|10.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.40|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.41|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.42|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.43|4|Air Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.44|4|19.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.45|4|18.90 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.46|4|33.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.47|4|28.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.48|4|12.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.49|4|10.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.50|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.51|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.52|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.53|4|Air Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.54|4|25.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.55|4|45.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.56|4|40.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.57|4|12.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.58|4|10.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.59|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.60|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.61|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.62|4|Air Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.63|4|25.20 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.64|4|45.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.65|4|40.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.66|4|12.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.67|4|10.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.68|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.69|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.70|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.71|4|Air Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.72|4|23.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.73|4|45.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.74|4|40.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.75|4|12.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.76|4|10.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.77|4|5.00 % +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.80|4|Air Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.81|4|24.40 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.82|4|45.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.83|4|40.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.84|4|12.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.85|4|10.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.86|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.87|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.88|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.89|4|Fan_1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.90|4|17 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.91|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.92|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.93|4|Fan_2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.94|4|16 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.95|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.96|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.97|4|Fan_3 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.98|4|16 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.99|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.100|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.101|4|Fan_4 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.102|4|16 % +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.105|4|Fan_5 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.106|4|16 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.107|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.108|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.109|4|Fan_6 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.110|4|16 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.111|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.112|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.113|4|8 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.114|4|Automatic +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.115|4|20 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.116|4|20 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.117|4|20 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.118|4|20 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.119|4|20 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.120|4|20 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.121|4|Automatic +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.122|4|None +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.123|4|14 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.124|4|14 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.125|4|14 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.126|4|14 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.127|4|14 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.128|4|14 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.129|4|Remote Control +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.130|4|0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.131|4|10 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.132|4|Off +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.133|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.134|4|Water In +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.135|4|16.10 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.136|4|22.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.137|4|18.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.138|4|12.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.139|4|10.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.140|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.141|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.142|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.143|4|Water Out +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.144|4|20.70 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.145|4|35.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.146|4|30.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.147|4|12.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.148|4|10.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.149|4|5.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.150|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.151|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.152|4|Waterflow +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.153|4|5.3 l/min +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.154|4|130.0 l/min +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.155|4|0.0 l/min +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.156|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.157|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.158|4|Control Valve +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.159|4|38 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.160|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.161|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.162|4|Automatic +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.163|4|50.0 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.164|4|Automatic +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.165|4|None +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.166|4|35.4 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.167|4|Remote Control +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.168|4|0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.169|4|19.0 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.170|4|Off +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.171|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.172|4|Cooling Capacity +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.173|4|1705 W +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.174|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.175|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.176|4|Leakage +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.177|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.178|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.179|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.180|4|Condensate +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.181|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.182|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.183|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.184|4|Condensate Pump +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.185|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.186|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.187|4|0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.188|4|Off +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.189|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.190|4|Dewpoint Values +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.191|4|0.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.192|4|0.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.193|4|0.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.194|4|16.10 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.195|4|0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.196|4|Only Alarm Messages +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.197|4|n.a. +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.198|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.199|4|Water Delta T Mode +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.200|4|16.10 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.201|4|20.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.202|4|20.70 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.203|4|5.3 l/min +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.204|4|18.90 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.205|4|20.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.206|4|30.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.207|4|19.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.208|4|Off +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.209|4|3 +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.210|4|1200 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.211|4|1200 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.212|4|Off +1.3.6.1.4.1.2606.7.4.2.2.1.10.2.213|4|2 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.1|4|Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.2|4|21.40 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.3|4|0.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.4|4|45.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.5|4|40.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.6|4|10.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.7|4|5.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.8|4|0.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.9|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.10|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.11|4|Temperature +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.12|4|21.40 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.13|4|45.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.14|4|0.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.15|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.16|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.17|4|Input Alarm +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.18|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.19|4|-- +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.20|4|0:OK / 1:Alarm +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.21|4|0 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.22|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.23|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.24|4|Automatic Alarm +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.25|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.26|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.27|4|Input Access Front +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.28|4|1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.29|4|Lock +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.30|4|0:On / 1:Off +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.31|4|20 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.32|4|Off +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.33|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.34|4|Input Access Rear +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.35|4|1 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.36|4|Lock +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.37|4|0:On / 1:Off +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.38|4|20 s +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.39|4|Off +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.40|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.41|4|Supply Magnet +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.42|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.43|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.44|4|Supply Motor +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.45|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.46|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.47|4|Front Door Magnet +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.48|4|Yes +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.49|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.50|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.51|4|Front Door Motor +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.52|4|Yes +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.53|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.54|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.55|4|Rear Door Magnet +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.56|4|Yes +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.57|4|On +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.58|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.59|4|Rear Door Motor +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.60|4|Yes +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.61|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.62|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.63|4|Keypad +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.64|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.65|4|0 +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.66|4|Inactive +1.3.6.1.4.1.2606.7.4.2.2.1.10.3.67|4|0 +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|34.30 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.3|4|0.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.4|4|45.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.5|4|40.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.6|4|12.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.7|4|10.00 degree C +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.8|4|0.00 % +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.9|4|OK +1.3.6.1.4.1.2606.7.4.2.2.1.10.4.10|4|80 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.1|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.2|2|2360 +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|4000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.5|2|3500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.6|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.7|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.8|2|500 +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|0 +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|27 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.19|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.20|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.21|2|10 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.25|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.26|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.27|2|10 +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|80 +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|2770 +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|23150 +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|27000 +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|500 +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|5040 +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.1.106|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.107|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.108|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.109|2|120 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.110|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.1.111|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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.4|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.5|2|2 +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|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.10|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.11|2|0 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.14|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.15|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.16|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.17|2|1880 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.18|2|3500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.19|2|3000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.20|2|1200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.21|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.22|2|500 +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|2 +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|1900 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.27|2|3500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.28|2|3000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.29|2|1200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.30|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.31|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.32|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.33|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.34|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.35|2|1910 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.36|2|3500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.37|2|3000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.38|2|1200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.39|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.40|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.41|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.42|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.43|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.44|2|1900 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.45|2|1900 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.46|2|3300 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.47|2|2800 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.48|2|1200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.49|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.50|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.51|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.52|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.53|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.54|2|2500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.55|2|4500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.56|2|4000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.57|2|1200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.58|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.59|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.60|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.61|2|2 +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|2520 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.64|2|4500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.65|2|4000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.66|2|1200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.67|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.68|2|500 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.71|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.72|2|2300 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.73|2|4500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.74|2|4000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.75|2|1200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.76|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.77|2|500 +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|2 +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|2440 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.82|2|4500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.83|2|4000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.84|2|1200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.85|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.86|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.87|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.88|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.89|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.90|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.91|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.92|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.93|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.94|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.95|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.96|2|2 +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|16 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.101|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.102|2|16 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.105|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.106|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.107|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.108|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.109|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.110|2|16 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.111|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.112|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.113|2|8 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.114|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.115|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.116|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.117|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.118|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.119|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.120|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.121|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.122|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.123|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.124|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.125|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.126|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.127|2|14 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.128|2|13 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.129|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.130|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.131|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.132|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.133|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.134|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.135|2|1610 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.136|2|2200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.137|2|1800 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.138|2|1200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.139|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.140|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.141|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.142|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.143|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.144|2|2070 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.145|2|3500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.146|2|3000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.147|2|1200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.148|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.149|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.150|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.151|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.152|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.153|2|53 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.154|2|1300 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.155|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.156|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.157|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.158|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.159|2|38 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.160|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.161|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.162|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.163|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.164|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.165|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.166|2|354 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.167|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.168|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.169|2|190 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.170|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.171|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.172|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.173|2|1707 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.174|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.175|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.176|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.177|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.178|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.179|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.180|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.181|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.182|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.183|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.184|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.185|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.186|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.187|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.188|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.189|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.190|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.191|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.192|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.193|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.194|2|1610 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.195|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.196|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.197|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.198|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.199|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.200|2|1610 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.201|2|2000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.202|2|2070 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.203|2|53 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.204|2|1890 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.205|2|2000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.206|2|3000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.207|2|1900 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.208|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.209|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.210|2|1200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.211|2|1200 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.212|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.2.213|2|2 +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|2140 +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|4500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.5|2|4000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.6|2|1000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.7|2|500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.8|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.9|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.10|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.11|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.12|2|2140 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.13|2|4500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.14|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.15|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.16|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.17|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.18|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.19|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.20|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.21|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.22|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.23|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.24|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.25|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.26|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.27|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.28|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.29|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.30|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.31|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.32|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.33|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.34|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.35|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.36|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.37|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.38|2|20 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.39|2|10 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.40|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.41|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.42|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.43|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.44|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.45|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.46|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.47|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.48|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.49|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.50|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.51|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.52|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.53|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.54|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.55|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.56|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.57|2|11 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.58|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.59|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.60|2|1 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.61|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.62|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.63|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.64|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.65|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.66|2|27 +1.3.6.1.4.1.2606.7.4.2.2.1.11.3.67|2|0 +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|3430 +1.3.6.1.4.1.2606.7.4.2.2.1.11.4.3|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.4.4|2|4500 +1.3.6.1.4.1.2606.7.4.2.2.1.11.4.5|2|4000 +1.3.6.1.4.1.2606.7.4.2.2.1.11.4.6|2|1200 +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|0 +1.3.6.1.4.1.2606.7.4.2.2.1.11.4.9|2|4 +1.3.6.1.4.1.2606.7.4.2.2.1.11.4.10|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|4751617 +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|0 +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|0 +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|0 +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|0 +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|0 +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|1 +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|1 +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|4751666 +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|4751688 +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|4751694 +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|4745400 +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|6936 +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.1.106|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.107|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.108|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.109|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.110|66|1 +1.3.6.1.4.1.2606.7.4.2.2.1.12.1.111|66|0 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.1|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.2|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.3|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.4|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.5|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.6|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.7|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.8|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.9|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.10|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.11|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.12|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.13|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.14|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.15|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.16|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.17|66|4751522 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.18|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.19|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.20|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.21|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.22|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.23|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.24|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.25|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.26|66|4751694 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.27|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.28|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.29|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.30|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.31|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.32|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.33|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.34|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.35|66|4751581 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.36|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.37|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.38|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.39|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.40|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.41|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.42|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.43|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.44|66|479494 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.45|66|4751694 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.46|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.47|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.48|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.49|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.50|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.51|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.52|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.53|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.54|66|4751546 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.55|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.56|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.57|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.58|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.59|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.60|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.61|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.62|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.63|66|4751653 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.64|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.65|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.66|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.67|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.68|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.69|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.70|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.71|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.72|66|4751587 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.73|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.74|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.75|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.76|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.77|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.78|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.79|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.80|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.81|66|4751441 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.82|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.83|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.84|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.85|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.86|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.87|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.88|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.89|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.90|66|4751693 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.91|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.92|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.93|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.94|66|4751688 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.95|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.96|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.97|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.98|66|4751688 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.99|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.100|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.101|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.102|66|4751688 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.103|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.104|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.105|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.106|66|4751688 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.107|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.108|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.109|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.110|66|4751688 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.111|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.112|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.113|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.114|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.115|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.116|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.117|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.118|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.119|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.120|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.121|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.122|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.123|66|4751685 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.124|66|4751685 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.125|66|4751685 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.126|66|4751685 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.127|66|4751685 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.128|66|4751685 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.129|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.130|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.131|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.132|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.133|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.134|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.135|66|4751545 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.136|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.137|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.138|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.139|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.140|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.141|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.142|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.143|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.144|66|4751506 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.145|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.146|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.147|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.148|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.149|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.150|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.151|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.152|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.153|66|4751684 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.154|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.155|66|3367763 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.156|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.157|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.158|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.159|66|4745980 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.160|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.161|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.162|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.163|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.164|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.165|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.166|66|4751691 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.167|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.168|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.169|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.170|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.171|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.172|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.173|66|4751692 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.174|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.175|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.176|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.177|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.178|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.179|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.180|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.181|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.182|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.183|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.184|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.185|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.186|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.187|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.188|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.189|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.190|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.191|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.192|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.193|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.194|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.195|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.196|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.197|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.198|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.199|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.200|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.201|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.202|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.203|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.204|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.205|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.206|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.207|66|479494 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.208|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.209|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.210|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.211|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.212|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.2.213|66|17 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.1|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.2|66|4751488 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.3|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.4|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.5|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.6|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.7|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.8|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.9|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.10|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.11|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.12|66|4751488 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.13|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.14|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.15|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.16|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.17|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.18|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.19|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.20|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.21|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.22|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.23|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.24|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.25|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.26|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.27|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.28|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.29|66|549414 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.30|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.31|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.32|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.33|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.34|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.35|66|718408 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.36|66|172133 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.37|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.38|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.39|66|718408 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.40|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.41|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.42|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.43|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.44|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.45|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.46|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.47|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.48|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.49|66|549414 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.50|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.51|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.52|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.53|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.54|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.55|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.56|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.57|66|718426 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.58|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.59|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.60|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.61|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.62|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.63|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.64|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.65|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.66|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.3.67|66|13 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.1|66|14 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.2|66|4751566 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.3|66|14 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.4|66|14 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.5|66|14 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.6|66|14 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.7|66|14 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.8|66|14 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.9|66|14 +1.3.6.1.4.1.2606.7.4.2.2.1.12.4.10|66|14 +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.1.106|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.107|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.108|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.109|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.110|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.1.111|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|2 +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|2 +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|3 +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|3 +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|2 +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|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.18|2|3 +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|2 +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|3 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.33|2|3 +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|2 +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|3 +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|2 +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|3 +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|2 +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|3 +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|2 +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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.54|2|2 +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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.57|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.58|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.59|2|3 +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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.69|2|2 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.73|2|3 +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|2 +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|3 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.88|2|3 +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|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.91|2|2 +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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.94|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.95|2|2 +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|2 +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|2 +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.2.105|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.106|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.107|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.108|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.109|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.110|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.111|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.112|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.113|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.114|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.115|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.116|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.117|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.118|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.119|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.120|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.121|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.122|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.123|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.124|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.125|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.126|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.127|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.128|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.129|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.130|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.131|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.132|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.133|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.134|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.135|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.136|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.137|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.138|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.139|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.140|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.141|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.142|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.143|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.144|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.145|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.146|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.147|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.148|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.149|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.150|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.151|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.152|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.153|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.154|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.155|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.156|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.157|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.158|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.159|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.160|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.161|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.162|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.163|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.164|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.165|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.166|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.167|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.168|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.169|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.170|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.171|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.172|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.173|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.174|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.175|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.176|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.177|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.178|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.179|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.180|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.181|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.182|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.183|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.184|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.185|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.186|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.187|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.188|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.189|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.190|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.191|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.192|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.193|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.194|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.195|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.196|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.197|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.198|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.199|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.200|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.201|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.202|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.203|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.204|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.205|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.206|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.207|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.208|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.209|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.210|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.211|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.212|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.2.213|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|3 +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.3.6|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.7|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.8|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.9|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.10|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.11|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.12|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.13|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.14|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.15|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.16|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.17|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.18|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.19|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.20|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.21|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.22|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.23|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.24|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.25|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.26|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.27|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.28|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.29|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.30|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.31|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.32|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.33|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.34|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.35|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.36|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.37|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.38|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.39|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.40|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.41|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.42|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.43|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.44|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.45|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.46|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.47|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.48|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.49|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.50|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.51|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.52|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.53|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.54|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.55|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.56|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.57|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.58|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.59|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.60|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.61|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.62|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.63|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.64|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.65|2|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.66|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.3.67|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|3 +1.3.6.1.4.1.2606.7.4.2.2.1.13.4.9|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.13.4.10|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|5 +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|5 +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.1.106|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.107|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.108|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.109|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.110|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.1.111|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.2.105|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.106|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.107|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.108|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.109|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.110|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.111|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.112|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.113|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.114|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.115|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.116|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.117|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.118|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.119|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.120|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.121|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.122|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.123|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.124|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.125|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.126|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.127|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.128|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.129|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.130|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.131|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.132|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.133|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.134|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.135|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.136|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.137|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.138|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.139|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.140|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.141|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.142|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.143|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.144|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.145|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.146|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.147|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.148|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.149|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.150|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.151|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.152|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.153|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.154|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.155|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.156|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.157|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.158|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.159|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.160|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.161|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.162|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.163|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.164|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.165|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.166|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.167|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.168|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.169|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.170|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.171|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.172|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.173|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.174|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.175|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.176|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.177|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.178|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.179|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.180|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.181|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.182|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.183|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.184|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.185|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.186|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.187|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.188|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.189|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.190|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.191|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.192|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.193|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.194|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.195|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.196|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.197|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.198|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.199|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.200|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.201|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.202|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.203|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.204|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.205|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.206|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.207|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.208|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.209|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.210|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.211|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.212|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.2.213|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.3.6|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.7|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.8|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.9|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.10|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.11|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.12|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.13|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.14|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.15|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.16|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.17|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.18|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.19|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.20|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.21|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.22|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.23|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.24|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.25|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.26|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.27|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.28|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.29|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.30|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.31|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.32|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.33|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.34|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.35|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.36|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.37|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.38|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.39|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.40|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.41|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.42|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.43|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.44|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.45|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.46|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.47|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.48|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.49|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.50|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.51|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.52|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.53|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.54|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.55|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.56|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.57|2|5 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.58|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.59|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.60|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.61|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.62|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.63|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.64|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.65|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.66|2|2 +1.3.6.1.4.1.2606.7.4.2.2.1.14.3.67|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.4.10|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.1.106|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.107|2|1016 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.108|2|1017 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.109|2|1018 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.110|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.1.111|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|0 +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|3001 +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|3002 +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|3003 +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|3004 +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|3005 +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|0 +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|3006 +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|3007 +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|3008 +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|3009 +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|3010 +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|3011 +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|3012 +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.2.105|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.106|2|3013 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.107|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.108|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.109|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.110|2|3014 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.111|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.112|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.113|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.114|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.115|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.116|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.117|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.118|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.119|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.120|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.121|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.122|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.123|2|3015 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.124|2|3016 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.125|2|3017 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.126|2|3018 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.127|2|3019 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.128|2|3020 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.129|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.130|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.131|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.132|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.133|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.134|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.135|2|3021 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.136|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.137|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.138|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.139|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.140|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.141|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.142|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.143|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.144|2|3022 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.145|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.146|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.147|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.148|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.149|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.150|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.151|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.152|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.153|2|3023 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.154|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.155|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.156|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.157|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.158|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.159|2|3024 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.160|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.161|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.162|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.163|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.164|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.165|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.166|2|3025 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.167|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.168|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.169|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.170|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.171|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.172|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.173|2|3026 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.174|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.175|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.176|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.177|2|3027 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.178|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.179|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.180|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.181|2|3028 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.182|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.183|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.184|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.185|2|3029 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.186|2|3030 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.187|2|3031 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.188|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.189|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.190|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.191|2|3032 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.192|2|3033 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.193|2|3034 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.194|2|3035 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.195|2|3036 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.196|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.197|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.198|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.199|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.200|2|3037 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.201|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.202|2|3038 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.203|2|3039 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.204|2|3040 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.205|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.206|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.207|2|3041 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.208|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.209|2|3042 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.210|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.211|2|3043 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.212|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.2.213|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|101001 +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.3.6|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.7|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.8|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.9|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.10|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.11|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.12|2|101002 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.13|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.14|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.15|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.16|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.17|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.18|2|101003 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.19|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.20|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.21|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.22|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.23|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.24|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.25|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.26|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.27|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.28|2|101004 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.29|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.30|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.31|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.32|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.33|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.34|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.35|2|101005 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.36|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.37|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.38|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.39|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.40|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.41|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.42|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.43|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.44|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.45|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.46|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.47|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.48|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.49|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.50|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.51|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.52|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.53|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.54|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.55|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.56|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.57|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.58|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.59|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.60|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.61|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.62|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.63|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.64|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.65|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.66|2|0 +1.3.6.1.4.1.2606.7.4.2.2.1.15.3.67|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|201001 +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.4.10|2|0 +1.3.6.1.6.3.10.2.1.3.0|2|5140357