Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorContinuous Integration <ci@zabbix.com>2021-11-22 11:43:19 +0300
committerContinuous Integration <ci@zabbix.com>2021-11-22 11:43:19 +0300
commit534949c11794b22ea7e946b230f1c252c1df7e1f (patch)
treec5efe7246eb2d14b86cdcc97183685fcb0b77029
parent0393c835f56b7f25214e8b1ae90081c92c84783a (diff)
.......... [ZBXNEXT-826] automatic deployment of official Zabbix templates and media types5.0.18rc1
-rw-r--r--create/src/data.tmpl4
-rw-r--r--create/src/templates.tmpl19268
2 files changed, 9673 insertions, 9599 deletions
diff --git a/create/src/data.tmpl b/create/src/data.tmpl
index efb34d83ef2..20b0f7c45a5 100644
--- a/create/src/data.tmpl
+++ b/create/src/data.tmpl
@@ -58,14 +58,14 @@ ROW |5 |4 |Mattermost | | |
ROW |6 |4 |Opsgenie | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Media = {&eol; params: {},&eol; name: '',&eol; labels: [],&eol; HTTPProxy: '',&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Media.params = params;&eol; Media.params.api += Media.params.api.endsWith('/') ? '' : '/';&eol; Media.params.web += Media.params.web.endsWith('/') ? '' : '/';&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; if (typeof HTTPProxy !== 'undefined' && HTTPProxy.trim() !== '') {&eol; Media.HTTPProxy = HTTPProxy;&eol; }&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol;&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag === 'string') {&eol; label = (tag.tag + (typeof tag.value !== 'undefined'&eol; && tag.value !== '' ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; Media.labels.push(label);&eol; }&eol; });&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ ' + Media.name + ' Webhook ] Failed to parse "event_tags_json" param');&eol; }&eol; }&eol; },&eol;&eol; request: function (method, query, data, allow_404) {&eol; if (typeof(allow_404) === 'undefined') {&eol; allow_404 = false;&eol; }&eol;&eol; ['api', 'token'].forEach(function (field) {&eol; if (typeof Media.params !== 'object' &pipe;&pipe; typeof Media.params[field] === 'undefined'&eol; &pipe;&pipe; Media.params[field] === '') {&eol; throw 'Required ' + Media.name + ' param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Media.params.api + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: ' + Media.params.token);&eol; request.SetProxy(Media.HTTPProxy);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ ' + Media.name + ' Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ ' + Media.name + ' Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ ' + Media.name + ' Webhook ] Failed to parse response.');&eol; response = null;&eol; }&eol; }&eol;&eol; if ((request.Status() < 200 &pipe;&pipe; request.Status() >= 300)&eol; && (!allow_404 &pipe;&pipe; request.Status() !== 404)) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null) {&eol; if (typeof response.errors === 'object' && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (typeof response.errorMessages === 'object' && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol; else if (typeof response.message === 'string') {&eol; message += ': ' + response.message;&eol; }&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getAlertId: function (requestId) {&eol; do {&eol; resp = Media.request('get', 'requests/' + requestId, undefined, true);&eol; }&eol; while (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.data === 'undefined'&eol; &pipe;&pipe; resp.response.data.success === false);&eol;&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.data === 'undefined') {&eol; throw 'Cannot get ' + Media.name + ' issue ID. Check debug log for more information.';&eol; }&eol;&eol; return resp;&eol; }&eol;};&eol;&eol;try {&eol; var result = {tags: {}},&eol; params = JSON.parse(value),&eol; media = {},&eol; fields = {},&eol; resp = {},&eol; responders = [],&eol; tags = [],&eol; required_params = [&eol; 'alert_subject',&eol; 'alert_message',&eol; 'event_id',&eol; 'event_source',&eol; 'event_value',&eol; 'event_update_status',&eol; 'opsgenie_api',&eol; 'opsgenie_web',&eol; 'opsgenie_token'&eol; ],&eol; severities = [&eol; 'not_classified',&eol; 'information',&eol; 'warning',&eol; 'average',&eol; 'high',&eol; 'disaster',&eol; 'resolved',&eol; 'default'&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; if (key.startsWith('opsgenie_')) {&eol; media[key.substring(9)] = params[key];&eol; }&eol; });&eol;&eol; // Possible values of event_source:&eol; // 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Check event_value for trigger-based and internal events.&eol; // Possible values: 1 for problem, 0 for recovering&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check event_update_status only for trigger-based events.&eol; // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check event_id for a numeric value.&eol; if (isNaN(parseInt(params.event_id)) &pipe;&pipe; params.event_id < 1) {&eol; throw 'Incorrect "event_id" parameter given: ' + params.event_id + '\nMust be a positive number.';&eol; }&eol;&eol; if ((params.event_source === '1' &pipe;&pipe; params.event_source === '2') && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for Trigger and Internal actions.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity]];&eol; params.zbxurl = params.zbxurl + (params.zbxurl.endsWith('/') ? '' : '/');&eol;&eol; Media.name = 'Opsgenie';&eol; Media.setParams(media);&eol; Media.params.token = 'GenieKey ' + Media.params.token;&eol; Media.setProxy(params.HTTPProxy);&eol; Media.setTags(params.event_tags_json); // Set Media.labels&eol;&eol; // Create an issue.&eol; // Numeric value of the event that triggered an action (1 for problem, 0 for recovering).&eol; // Numeric value of of the problem update status. Possible values:&eol; // 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if ((params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0)&eol; &pipe;&pipe; (params.event_source == 3 && params.event_value == 1)&eol; &pipe;&pipe; params.event_source == 1 &pipe;&pipe; params.event_source == 2) {&eol; fields.message = params.alert_subject;&eol; fields.alias = params.event_id;&eol; fields.description = params.alert_message;&eol; fields.priority = priority;&eol; fields.source = 'Zabbix';&eol;&eol; if (params.event_source === '0') {&eol; fields.details = {&eol; 'Zabbix server': params.zbxurl,&eol; Problem: params.zbxurl + 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id&eol; };&eol; }&eol; else {&eol; fields.details = {'Zabbix server': params.zbxurl};&eol; }&eol;&eol; if (typeof params.opsgenie_teams === 'string') {&eol; responders = params.opsgenie_teams.split(',');&eol; fields.responders = responders.map(function(team) {&eol; return {type: 'team', name: team.trim()};&eol; });&eol; }&eol;&eol; fields.tags = Media.labels;&eol; if (typeof params.opsgenie_tags === 'string') {&eol; tags = params.opsgenie_tags.split(',');&eol; tags.forEach(function(item) {&eol; fields.tags.push(item.trim());&eol; });&eol; }&eol;&eol; resp = Media.request('post', '', fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.result === 'undefined') {&eol; throw 'Cannot create ' + Media.name + ' issue. Check debug log for more information.';&eol; }&eol;&eol; if (resp.status === 202) {&eol; resp = Media.getAlertId(resp.response.requestId);&eol; if (params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) {&eol; result.tags.__zbx_ops_issuekey = resp.response.data.alertId;&eol; result.tags.__zbx_ops_issuelink = Media.params.web + 'alert/detail/' + resp.response.data.alertId;&eol; }&eol; }&eol; else {&eol; throw Media.name + ' response code is unexpected. Check debug log for more information.';&eol; }&eol; }&eol; // Update a created issue.&eol; else {&eol; fields.user = (params.event_value != 0) ? params.zbxuser : '';&eol; fields.note = params.alert_message;&eol;&eol; resp = Media.request('post', params.event_id + '/notes?identifierType=alias', fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.result === 'undefined') {&eol; throw 'Cannot update ' + Media.name + ' issue. Check debug log for more information.';&eol; }&eol;&eol; if (resp.status === 202) {&eol; resp = Media.getAlertId(resp.response.requestId);&eol; }&eol; else {&eol; throw Media.name + ' response code is unexpected. Check debug log for more information.';&eol; }&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ ' + Media.name + ' Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_ops_issuelink} |Opsgenie: {EVENT.TAGS.__zbx_ops_issuekey} |Please refer to https://docs.opsgenie.com/docs/alert-api and https://www.zabbix.com/documentation/5.0/manual/config/notifications/media/webhook#example_scripts.&eol; &eol;Set global macro {$ZABBIX.URL} with your Zabbix server URL.&eol;Add dedicated user with media type "Opsgenie".&eol;Change the values of the variables opsgenie_api (https://api.opsgenie.com/v2/alerts or https://api.eu.opsgenie.com/v2/alerts),&eol;opsgenie_web (for example, https://myzabbix.app.opsgenie.com), opsgenie_token. |
ROW |7 |4 |PagerDuty | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |try {&eol;&eol; var params = JSON.parse(value),&eol; req = new CurlHttpRequest(),&eol; fields = {},&eol; resp = '';&eol;&eol; // Correspondence between the PagerDuty and Zabbix severity level&eol; var severityMapping = [&eol; 'info', // Not classified&eol; 'info', // Information&eol; 'warning', // Warning&eol; 'warning', // Average&eol; 'error', // High&eol; 'critical' // Disaster&eol; ];&eol;&eol; if (!severityMapping[params.severity]) {&eol; params.severity = '0';&eol; }&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; if (isNaN(parseInt(params.eventid)) &pipe;&pipe; params.eventid < 1) {&eol; throw 'incorrect value for variable "eventid". The value must be a positive number.';&eol; }&eol; if (params.eventname.length < 1) {&eol; throw 'incorrect value for variable "eventname". The value must be a non-empty string.';&eol; }&eol; if (isNaN(parseInt(params.severity)) &pipe;&pipe; (params.severity < 0 && params.severity > 5)) {&eol; throw 'incorrect value for variable "severity". The value must be a number 0..5.';&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.eventvalue !== '0' && params.eventvalue !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "eventvalue" parameter given: "' + params.eventvalue + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source === '0') {&eol; if (params.hostname.length < 1) {&eol; throw 'incorrect value for variable "hostname". The value must be a non-empty string.';&eol; }&eol; if (isNaN(parseInt(params.triggerid)) &pipe;&pipe; params.triggerid < 1) {&eol; throw 'incorrect value for variable "triggerid". The value must be a positive number.';&eol; }&eol; if (params.eventack != 'Yes' && params.eventack != 'No') {&eol; throw 'incorrect value for variable "eventack". The value must be Yes or No.';&eol; }&eol; if (isNaN(parseInt(params.eventupdate)) &pipe;&pipe; (params.eventupdate < 0 &pipe;&pipe; params.eventupdate > 1)) {&eol; throw 'incorrect value for variable "eventupdate". The value must be 0 or 1.';&eol; }&eol; }&eol;&eol;&eol;&eol; req.AddHeader('Content-Type: application/json');&eol;&eol; fields.routing_key = params.token;&eol; fields.dedup_key = params.eventid;&eol;&eol; if (((params.eventvalue == 1) && (params.eventupdate == 0)) &pipe;&pipe; params.event_source !== '0') {&eol; fields.event_action = 'trigger';&eol; fields.payload = {&eol; summary: params.eventname,&eol; source: (params.event_source === '1') ? 'Discovery' : params.hostname + ' : ' + params.hostip,&eol; severity: severityMapping[params.severity],&eol; };&eol; &eol; if (params.event_source === '0') {&eol; fields.payload.custom_details = {&eol; 'Event date': params.eventdate,&eol; 'Event time': params.eventtime,&eol; 'Trigger description': params.triggerdesc,&eol; 'Trigger opdata': params.triggeropdata,&eol; 'Event tags': params.eventtags,&eol; 'Event host': params.hostname,&eol; 'Event host ip': params.hostip&eol; };&eol; fields.links = [{&eol; href: params.url + '/tr_events.php?triggerid=' + params.triggerid + '&eventid=' + params.eventid,&eol; text: 'Event link'&eol; }];&eol; }&eol; else {&eol; fields.payload.custom_details = {&eol; 'Alert message': params.alert_message&eol; };&eol; }&eol;&eol; fields.client = 'Zabbix';&eol; fields.client_url = params.url;&eol; }&eol; else if ((params.eventvalue == 1) && (params.eventupdate == 1) && (params.eventack == 'Yes'))&eol; fields.event_action = 'acknowledge';&eol; else if (params.eventvalue == 0)&eol; fields.event_action = 'resolve';&eol; else&eol; throw 'incorrect values. Update message without ack will not be sent.';&eol;&eol; Zabbix.Log(4, '[PagerDuty Webhook] Sending request:' + JSON.stringify(fields));&eol; resp = req.Post('https://events.pagerduty.com/v2/enqueue',&eol; JSON.stringify(fields)&eol; );&eol; Zabbix.Log(4, '[PagerDuty Webhook] Receiving response:' + resp);&eol;&eol; try {&eol; resp = JSON.parse(resp);&eol; }&eol; catch (error) {&eol; throw 'incorrect response. PagerDuty returned a non-JSON object.';&eol; }&eol;&eol; if (req.Status() != 202) {&eol; if (typeof resp === 'object' && typeof resp.errors === 'object' && typeof resp.errors[0] === 'string') {&eol; throw resp.errors[0];&eol; }&eol; else {&eol; throw 'Unknown error.';&eol; }&eol; }&eol;&eol; if (resp.status != 'success') {&eol; throw 'Unknown error.';&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[PagerDuty Webhook] Notification failed : ' + error);&eol; throw 'PagerDuty notification failed : ' + error;&eol;}|30s |0 |0 | | |Please refer to https://v2.developer.pagerduty.com/docs/send-an-event-events-api-v2 and https://www.zabbix.com/documentation/5.0/manual/config/notifications/media/webhook#example_scripts.&eol; &eol;Set global macro {$ZABBIX.URL} with your Zabbix server URL.&eol;Add a dedicated user with the media type "PagerDuty" and place the integration key in the "token" parameter to integrate into the service. |
ROW |8 |4 |Pushover | | | | | | | |0 |25 |0 |0 |0 |0 | |0 |3 |10s |1 |try {&eol; var params = JSON.parse(value),&eol; request = new CurlHttpRequest(),&eol; data,&eol; response,&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ],&eol; priority;&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; request.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['priority_' + severities[params.event_nseverity].name] &pipe;&pipe; params.priority_default;&eol;&eol; if (isNaN(priority) &pipe;&pipe; priority < -2 &pipe;&pipe; priority > 2) {&eol; throw '"priority" should be -2..2';&eol; }&eol;&eol; if (params.event_source === '0' && isNaN(params.triggerid)) {&eol; throw 'field "triggerid" is not a number';&eol; }&eol;&eol; if (isNaN(params.eventid)) {&eol; throw 'field "eventid" is not a number';&eol; }&eol;&eol; if (typeof params.message !== 'string' &pipe;&pipe; params.message.trim() === '') {&eol; throw 'field "message" cannot be empty';&eol; }&eol;&eol; data = {&eol; token: params.token,&eol; user: params.user,&eol; title: params.title,&eol; message: params.message,&eol; url: (params.event_source === '0') &eol; ? params.url + '/tr_events.php?triggerid=' + params.triggerid + '&eventid=' + params.eventid&eol; : params.url,&eol; url_title: params.url_title,&eol; priority: priority&eol; };&eol;&eol; if (priority == 2) {&eol; if (isNaN(params.retry) &pipe;&pipe; params.retry < 30) {&eol; throw 'field "retry" should be a number with value of at least 30 if "priority" is set to 2';&eol; }&eol;&eol; if (isNaN(params.expire) &pipe;&pipe; params.expire > 10800) {&eol; throw 'field "expire" should be a number with value of at most 10800 if "priority" is set to 2';&eol; }&eol;&eol; data.retry = params.retry;&eol; data.expire = params.expire;&eol; }&eol;&eol; data = JSON.stringify(data);&eol; Zabbix.Log(4, '[ Pushover Webhook ] Sending request: ' + params.endpoint + '\n' + data);&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; response = request.Post(params.endpoint, data);&eol;&eol; Zabbix.Log(4, '[ Pushover Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Pushover Webhook ] Failed to parse response received from Pushover');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() != 200 &pipe;&pipe; response === null &pipe;&pipe; typeof response !== 'object' &pipe;&pipe; response.status !== 1) {&eol; if (response !== null && typeof response === 'object' && typeof response.errors === 'object'&eol; && typeof response.errors[0] === 'string') {&eol; throw response.errors[0];&eol; }&eol; else {&eol; throw 'Unknown error. Check debug log for more information.';&eol; }&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[ Pushover Webhook ] Pushover notification failed: ' + error);&eol; throw 'Pushover notification failed: ' + error;&eol;}|30s |0 |0 | | |Please refer to setup guide here: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/pushover&eol;&eol;Set token parameter with to your Pushover application key.&eol;When assigning Pushover media to the Zabbix user - add user key into send to field. |
-ROW |9 |4 |Slack | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', '#7499FF', '#FFC859',&eol; '#FFA059', '#E97659', '#E45959'&eol;];&eol;&eol;var RESOLVE_COLOR = '#009900';&eol;&eol;var SLACK_MODE_HANDLERS = {&eol; alarm: handlerAlarm,&eol; event: handlerEvent&eol;};&eol;&eol;&eol;if (!String.prototype.format) {&eol; String.prototype.format = function() {&eol; var args = arguments;&eol;&eol; return this.replace(/{(\d+)}/g, function(match, number) {&eol; return number in args&eol; ? args[number]&eol; : match&eol; ;&eol; });&eol; };&eol;}&eol;&eol;function isEventProblem(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 0&eol; ;&eol;}&eol;&eol;function isEventUpdate(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 1&eol; ;&eol;}&eol;&eol;function isEventResolve(params) {&eol; return params.event_value == 0;&eol;}&eol;&eol;function getPermalink(channelId, messageTimestamp) {&eol; var req = new CurlHttpRequest();&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; req.AddHeader('Content-Type: application/x-www-form-urlencoded; charset=utf-8');&eol; req.AddHeader('Authorization: Bearer ' + params.bot_token);&eol;&eol; var query = '{0}?channel={1}&message_ts={2}'.format(&eol; Slack.getPermalink,&eol; encodeURIComponent(channelId),&eol; encodeURIComponent(messageTimestamp)),&eol; resp = JSON.parse(req.Get(query));&eol;&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw 'message was created, but getting message link was failed with reason "' + resp.error + '"';&eol; }&eol;&eol; return resp.permalink;&eol;}&eol;&eol;function createProblemURL(zabbix_url, triggerid, eventid, event_source) {&eol; var problem_url = '';&eol; if (event_source === '0') {&eol; problem_url = '{0}/tr_events.php?triggerid={1}&eventid={2}'&eol; .format(&eol; zabbix_url,&eol; triggerid,&eol; eventid&eol; );&eol; }&eol; else {&eol; problem_url = zabbix_url;&eol; }&eol;&eol; return problem_url;&eol;}&eol;&eol;function handlerAlarm(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user,&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; result.tags = {&eol; ['__message_ts_' + params.channel]: resp.ts,&eol; ['__channel_id_' + params.channel]: resp.channel,&eol; ['__message_link_' + params.channel]: getPermalink(resp.channel, resp.ts),&eol; };&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; try {&eol; var channel_event_tags = JSON.parse(params.event_tags);&eol; } catch (error) {&eol; throw 'Can't process event tags: ' + error;&eol; }&eol;&eol; if (Array.isArray(channel_event_tags)) {&eol; for (i in channel_event_tags) {&eol; if (channel_event_tags[i].tag.includes('__message_ts_' + params.channel)) {&eol; fields.thread_ts = channel_event_tags[i].value;&eol; break;&eol; }&eol; }&eol; }&eol;&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; true&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.text = '';&eol;&eol; try {&eol; var channel_event_tags = JSON.parse(params.event_tags);&eol; } catch (error) {&eol; throw 'Can't process event tags: ' + error;&eol; }&eol;&eol; if (Array.isArray(channel_event_tags)) {&eol; for (i in channel_event_tags) {&eol; if (channel_event_tags[i].tag.includes('__channel_id_' + params.channel)) {&eol; fields.channel = channel_event_tags[i].value;&eol; continue;&eol; }&eol; if (channel_event_tags[i].tag.includes('__message_ts_' + params.channel)) {&eol; fields.ts = channel_event_tags[i].value;&eol; }&eol; }&eol; }&eol;&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.chatUpdate, JSON.stringify(fields)));&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function handlerEvent(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; result.tags = {&eol; ['__message_link_' + params.channel]: getPermalink(resp.channel, resp.ts)&eol; }&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; false&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_recovery_date,&eol; params.event_recovery_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function createMessage(&eol; event_severity_color,&eol; event_date,&eol; event_time,&eol; problem_url,&eol; isShort,&eol; messageText&eol;) {&eol; var message = {&eol; fallback: params.alert_subject,&eol; title: params.alert_subject,&eol; color: event_severity_color,&eol; title_link: problem_url,&eol; pretext: messageText &pipe;&pipe; '',&eol;&eol; fields: [&eol; {&eol; title: 'Host',&eol; value: '{0} [{1}]'.format(params.host_name, params.host_conn),&eol; short: true&eol; },&eol; {&eol; title: 'Event time',&eol; value: '{0} {1}'.format(event_date, event_time),&eol; short: true&eol; }&eol; ],&eol; };&eol;&eol; if (params.event_source === '0') {&eol; message.fields.push(&eol; {&eol; title: 'Severity',&eol; value: params.event_severity,&eol; short: true&eol; },&eol; {&eol; title: 'Opdata',&eol; value: params.event_opdata,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (!isShort && params.event_source === '0') {&eol; message['actions'] = [&eol; {&eol; type: 'button',&eol; text: 'Open in Zabbix',&eol; url: problem_url&eol; }&eol; ];&eol;&eol; message.fields.push(&eol; {&eol; title: 'Event tags',&eol; value: JSON.parse(params.event_tags).filter(function (e) { return !e.tag.includes('__') }).map(function (e) { return e.tag + ': ' + e.value }).join('\n') &pipe;&pipe; 'None',&eol; short: true&eol; },&eol; {&eol; title: 'Trigger description',&eol; value: params.trigger_description,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (params.event_source !== '0' &pipe;&pipe; params.event_update_status === '1') {&eol; message.fields.push(&eol; {&eol; title: 'Details',&eol; value: params.alert_message,&eol; short: false&eol; }&eol; );&eol; }&eol;&eol; return message;&eol;}&eol;&eol;function validateParams(params) {&eol; if (typeof params.bot_token !== 'string' &pipe;&pipe; params.bot_token.trim() === '') {&eol; throw 'Field "bot_token" cannot be empty';&eol; }&eol;&eol; if (typeof params.channel !== 'string' &pipe;&pipe; params.channel.trim() === '') {&eol; throw 'Field "channel" cannot be empty';&eol; }&eol;&eol; if (isNaN(params.event_id)) {&eol; throw 'Field "event_id" is not a number';&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; if (params.event_source !== '0') {&eol; params.event_nseverity = '0';&eol; params.event_severity = 'Not classified';&eol; params.event_update_status = '0';&eol; params.slack_mode = 'event';&eol; }&eol;&eol; if (params.event_source === '1' &pipe;&pipe; params.event_source === '2') {&eol; params.event_value = '1';&eol; }&eol;&eol; if (params.event_source === '1') {&eol; params.host_name = params.discovery_host_dns;&eol; params.host_ip = params.discovery_host_ip;&eol; }&eol;&eol; if (!~[0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity))) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; if (typeof params.event_severity !== 'string' &pipe;&pipe; params.event_severity.trim() === '') {&eol; throw 'Field "event_severity" cannot be empty';&eol; }&eol;&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value !== '0' && params.event_value !== '1') {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (typeof params.host_conn !== 'string' &pipe;&pipe; params.host_conn.trim() === '') {&eol; throw 'Field "host_conn" cannot be empty';&eol; }&eol;&eol; if (typeof params.host_name !== 'string' &pipe;&pipe; params.host_name.trim() === '') {&eol; throw 'Field "host_name" cannot be empty';&eol; }&eol;&eol; if (!~['true', 'false'].indexOf(params.slack_as_user.toLowerCase())) {&eol; throw 'Incorrect "slack_as_user" parameter given: ' + params.slack_as_user + '\nMust be "true" or "false".';&eol; }&eol;&eol; if (!~['alarm', 'event'].indexOf(params.slack_mode)) {&eol; throw 'Incorrect "slack_mode" parameter given: ' + params.slack_mode + '\nMust be "alarm" or "event".';&eol; }&eol;&eol; if (isNaN(params.trigger_id) && params.event_source === '0') {&eol; throw 'field "trigger_id" is not a number';&eol; }&eol;&eol; if (typeof params.zabbix_url !== 'string' &pipe;&pipe; params.zabbix_url.trim() === '') {&eol; throw 'Field "zabbix_url" cannot be empty';&eol; }&eol;&eol; if (!/^(http&pipe;https):\/\/.+/.test(params.zabbix_url)) {&eol; throw 'Field "zabbix_url" must contain a schema';&eol; }&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; validateParams(params);&eol;&eol; var req = new CurlHttpRequest(),&eol; result = {tags: {}};&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; req.AddHeader('Content-Type: application/json; charset=utf-8');&eol; req.AddHeader('Authorization: Bearer ' + params.bot_token);&eol;&eol; var slack_endpoint = 'https://slack.com/api/';&eol;&eol; var Slack = {&eol; postMessage: slack_endpoint + 'chat.postMessage',&eol; getPermalink: slack_endpoint + 'chat.getPermalink',&eol; chatUpdate: slack_endpoint + 'chat.update'&eol; };&eol;&eol; params.slack_mode = params.slack_mode.toLowerCase();&eol; params.slack_mode = params.slack_mode in SLACK_MODE_HANDLERS&eol; ? params.slack_mode&eol; : 'alarm';&eol;&eol; SLACK_MODE_HANDLERS[params.slack_mode](params);&eol;&eol; if (params.event_source === '0') {&eol; return JSON.stringify(result);&eol; }&eol; else {&eol; return 'OK';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[ Slack Webhook ] Slack notification failed : ' + error);&eol; throw 'Slack notification failed : ' + error;&eol;}|30s |1 |0 | | | |
+ROW |9 |4 |Slack | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', '#7499FF', '#FFC859',&eol; '#FFA059', '#E97659', '#E45959'&eol;];&eol;&eol;var RESOLVE_COLOR = '#009900';&eol;&eol;var SLACK_MODE_HANDLERS = {&eol; alarm: handlerAlarm,&eol; event: handlerEvent&eol;};&eol;&eol;&eol;if (!String.prototype.format) {&eol; String.prototype.format = function() {&eol; var args = arguments;&eol;&eol; return this.replace(/{(\d+)}/g, function(match, number) {&eol; return number in args&eol; ? args[number]&eol; : match&eol; ;&eol; });&eol; };&eol;}&eol;&eol;function isEventProblem(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 0&eol; ;&eol;}&eol;&eol;function isEventUpdate(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 1&eol; ;&eol;}&eol;&eol;function isEventResolve(params) {&eol; return params.event_value == 0;&eol;}&eol;&eol;function getPermalink(channelId, messageTimestamp) {&eol; var req = new CurlHttpRequest();&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; req.AddHeader('Content-Type: application/x-www-form-urlencoded; charset=utf-8');&eol; req.AddHeader('Authorization: Bearer ' + params.bot_token);&eol;&eol; var query = '{0}?channel={1}&message_ts={2}'.format(&eol; Slack.getPermalink,&eol; encodeURIComponent(channelId),&eol; encodeURIComponent(messageTimestamp)),&eol; resp = JSON.parse(req.Get(query));&eol;&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw 'message was created, but getting message link was failed with reason "' + resp.error + '"';&eol; }&eol;&eol; return resp.permalink;&eol;}&eol;&eol;function createProblemURL(zabbix_url, triggerid, eventid, event_source) {&eol; var problem_url = '';&eol; if (event_source === '0') {&eol; problem_url = '{0}/tr_events.php?triggerid={1}&eventid={2}'&eol; .format(&eol; zabbix_url,&eol; triggerid,&eol; eventid&eol; );&eol; }&eol; else {&eol; problem_url = zabbix_url;&eol; }&eol;&eol; return problem_url;&eol;}&eol;&eol;function handlerAlarm(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user,&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; result.tags = {&eol; ['__message_ts_' + params.channel]: resp.ts,&eol; ['__channel_id_' + params.channel]: resp.channel,&eol; ['__message_link_' + params.channel]: getPermalink(resp.channel, resp.ts),&eol; };&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; try {&eol; var channel_event_tags = JSON.parse(params.event_tags);&eol; } catch (error) {&eol; throw 'Cannot process event tags: ' + error;&eol; }&eol;&eol; if (Array.isArray(channel_event_tags)) {&eol; for (i in channel_event_tags) {&eol; if (channel_event_tags[i].tag.includes('__message_ts_' + params.channel)) {&eol; fields.thread_ts = channel_event_tags[i].value;&eol; break;&eol; }&eol; }&eol; }&eol;&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; true&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.text = '';&eol;&eol; try {&eol; var channel_event_tags = JSON.parse(params.event_tags);&eol; } catch (error) {&eol; throw 'Cannot process event tags: ' + error;&eol; }&eol;&eol; if (Array.isArray(channel_event_tags)) {&eol; for (i in channel_event_tags) {&eol; if (channel_event_tags[i].tag.includes('__channel_id_' + params.channel)) {&eol; fields.channel = channel_event_tags[i].value;&eol; continue;&eol; }&eol; if (channel_event_tags[i].tag.includes('__message_ts_' + params.channel)) {&eol; fields.ts = channel_event_tags[i].value;&eol; }&eol; }&eol; }&eol;&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.chatUpdate, JSON.stringify(fields)));&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function handlerEvent(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; result.tags = {&eol; ['__message_link_' + params.channel]: getPermalink(resp.channel, resp.ts)&eol; }&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; false&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_recovery_date,&eol; params.event_recovery_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.Post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.Status() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function createMessage(&eol; event_severity_color,&eol; event_date,&eol; event_time,&eol; problem_url,&eol; isShort,&eol; messageText&eol;) {&eol; var message = {&eol; fallback: params.alert_subject,&eol; title: params.alert_subject,&eol; color: event_severity_color,&eol; title_link: problem_url,&eol; pretext: messageText &pipe;&pipe; '',&eol;&eol; fields: [&eol; {&eol; title: 'Host',&eol; value: '{0} [{1}]'.format(params.host_name, params.host_conn),&eol; short: true&eol; },&eol; {&eol; title: 'Event time',&eol; value: '{0} {1}'.format(event_date, event_time),&eol; short: true&eol; }&eol; ],&eol; };&eol;&eol; if (params.event_source === '0') {&eol; message.fields.push(&eol; {&eol; title: 'Severity',&eol; value: params.event_severity,&eol; short: true&eol; },&eol; {&eol; title: 'Opdata',&eol; value: params.event_opdata,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (!isShort && params.event_source === '0') {&eol; message['actions'] = [&eol; {&eol; type: 'button',&eol; text: 'Open in Zabbix',&eol; url: problem_url&eol; }&eol; ];&eol;&eol; message.fields.push(&eol; {&eol; title: 'Event tags',&eol; value: JSON.parse(params.event_tags).filter(function (e) { return !e.tag.includes('__') }).map(function (e) { return e.tag + ': ' + e.value }).join('\n') &pipe;&pipe; 'None',&eol; short: true&eol; },&eol; {&eol; title: 'Trigger description',&eol; value: params.trigger_description,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (params.event_source !== '0' &pipe;&pipe; params.event_update_status === '1') {&eol; message.fields.push(&eol; {&eol; title: 'Details',&eol; value: params.alert_message,&eol; short: false&eol; }&eol; );&eol; }&eol;&eol; return message;&eol;}&eol;&eol;function validateParams(params) {&eol; if (typeof params.bot_token !== 'string' &pipe;&pipe; params.bot_token.trim() === '') {&eol; throw 'Field "bot_token" cannot be empty';&eol; }&eol;&eol; if (typeof params.channel !== 'string' &pipe;&pipe; params.channel.trim() === '') {&eol; throw 'Field "channel" cannot be empty';&eol; }&eol;&eol; if (isNaN(params.event_id)) {&eol; throw 'Field "event_id" is not a number';&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; if (params.event_source !== '0') {&eol; params.event_nseverity = '0';&eol; params.event_severity = 'Not classified';&eol; params.event_update_status = '0';&eol; params.slack_mode = 'event';&eol; }&eol;&eol; if (params.event_source === '1' &pipe;&pipe; params.event_source === '2') {&eol; params.event_value = '1';&eol; }&eol;&eol; if (params.event_source === '1') {&eol; params.host_name = params.discovery_host_dns;&eol; params.host_ip = params.discovery_host_ip;&eol; }&eol;&eol; if (!~[0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity))) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; if (typeof params.event_severity !== 'string' &pipe;&pipe; params.event_severity.trim() === '') {&eol; throw 'Field "event_severity" cannot be empty';&eol; }&eol;&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value !== '0' && params.event_value !== '1') {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (typeof params.host_conn !== 'string' &pipe;&pipe; params.host_conn.trim() === '') {&eol; throw 'Field "host_conn" cannot be empty';&eol; }&eol;&eol; if (typeof params.host_name !== 'string' &pipe;&pipe; params.host_name.trim() === '') {&eol; throw 'Field "host_name" cannot be empty';&eol; }&eol;&eol; if (!~['true', 'false'].indexOf(params.slack_as_user.toLowerCase())) {&eol; throw 'Incorrect "slack_as_user" parameter given: ' + params.slack_as_user + '\nMust be "true" or "false".';&eol; }&eol;&eol; if (!~['alarm', 'event'].indexOf(params.slack_mode)) {&eol; throw 'Incorrect "slack_mode" parameter given: ' + params.slack_mode + '\nMust be "alarm" or "event".';&eol; }&eol;&eol; if (isNaN(params.trigger_id) && params.event_source === '0') {&eol; throw 'field "trigger_id" is not a number';&eol; }&eol;&eol; if (typeof params.zabbix_url !== 'string' &pipe;&pipe; params.zabbix_url.trim() === '') {&eol; throw 'Field "zabbix_url" cannot be empty';&eol; }&eol;&eol; if (!/^(http&pipe;https):\/\/.+/.test(params.zabbix_url)) {&eol; throw 'Field "zabbix_url" must contain a schema';&eol; }&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; validateParams(params);&eol;&eol; var req = new CurlHttpRequest(),&eol; result = {tags: {}};&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; req.AddHeader('Content-Type: application/json; charset=utf-8');&eol; req.AddHeader('Authorization: Bearer ' + params.bot_token);&eol;&eol; var slack_endpoint = 'https://slack.com/api/';&eol;&eol; var Slack = {&eol; postMessage: slack_endpoint + 'chat.postMessage',&eol; getPermalink: slack_endpoint + 'chat.getPermalink',&eol; chatUpdate: slack_endpoint + 'chat.update'&eol; };&eol;&eol; params.slack_mode = params.slack_mode.toLowerCase();&eol; params.slack_mode = params.slack_mode in SLACK_MODE_HANDLERS&eol; ? params.slack_mode&eol; : 'alarm';&eol;&eol; SLACK_MODE_HANDLERS[params.slack_mode](params);&eol;&eol; if (params.event_source === '0') {&eol; return JSON.stringify(result);&eol; }&eol; else {&eol; return 'OK';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[ Slack Webhook ] Slack notification failed : ' + error);&eol; throw 'Slack notification failed : ' + error;&eol;}|30s |1 |0 | | | |
ROW |10 |4 |Discord | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', // Not classified.&eol; '#7499FF', // Information.&eol; '#FFC859', // Warning.&eol; '#FFA059', // Average.&eol; '#E97659', // High.&eol; '#E45959', // Disaster.&eol; '#009900' // Resolved.&eol;];&eol;&eol;function stringTruncate(str, len) {&eol; return str.length > len ? str.substring(0, len - 3) + '...' : str;&eol;}&eol;&eol;try {&eol; Zabbix.Log(4, '[ Discord Webhook ] Executed with params: ' + value);&eol;&eol; var params = JSON.parse(value);&eol;&eol; if (!params.discord_endpoint) {&eol; throw 'Cannot get discord_endpoint';&eol; }&eol; else {&eol; params.discord_endpoint = params.discord_endpoint.replace('/api/', '/api/v7/') + '?wait=True';&eol; }&eol;&eol; params.zabbix_url = (params.zabbix_url.endsWith('/'))&eol; ? params.zabbix_url.slice(0, -1) : params.zabbix_url;&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Set params to true for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; params.event_nseverity = '0';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: "' + params.event_value + '".\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: "' + params.event_update_status + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value == 0) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (!SEVERITY_COLORS[params.event_nseverity]) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; var color = parseInt(SEVERITY_COLORS[params.event_nseverity].replace('#', ''), 16),&eol; fields = [],&eol; body = {&eol; embeds: [&eol; {&eol; color: color &pipe;&pipe; 0,&eol; url: (params.event_source === '0')&eol; ? params.zabbix_url + '/tr_events.php?triggerid=' + params.trigger_id +&eol; '&eventid=' + params.event_id&eol; : params.zabbix_url&eol; }&eol; ]&eol; };&eol;&eol; // Default message from {ALERT.MESSAGE}.&eol; if (params.use_default_message.toLowerCase() == 'true') {&eol; body.embeds[0].title = stringTruncate(params.alert_subject, 256);&eol; body.embeds[0].description = stringTruncate(params.alert_message, 2048);&eol; }&eol; else {&eol; fields.push(&eol; {&eol; name: 'Host',&eol; value: params.host_name + ' [' + params.host_ip + ']'&eol; }&eol; );&eol;&eol; // Resolved message.&eol; if (params.event_value == 0 && params.event_update_status == 0) {&eol; body.embeds[0].title = stringTruncate('OK: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Recovery time',&eol; value: params.event_recovery_time + ' ' + params.event_recovery_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Problem message.&eol; else if (params.event_value == 1 && params.event_update_status == 0) {&eol; body.embeds[0].title = stringTruncate('PROBLEM: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Event time',&eol; value: params.event_time + ' ' + params.event_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Update message.&eol; else if (params.event_update_status == 1) {&eol; body.embeds[0].title = stringTruncate('UPDATE: ' + params.event_name, 256);&eol; body.embeds[0].description = params.event_update_user + ' ' + params.event_update_action + '.';&eol;&eol; if (params.event_update_message) {&eol; body.embeds[0].description += ' Comment:\n>>> ' + params.event_update_message;&eol; }&eol;&eol; body.embeds[0].description = stringTruncate(body.embeds[0].description, 2048);&eol;&eol; fields.push(&eol; {&eol; name: 'Event update time',&eol; value: params.event_update_time + ' ' + params.event_update_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; fields.push(&eol; {&eol; name: 'Severity',&eol; value: params.event_severity,&eol; inline: 'True'&eol; }&eol; );&eol;&eol; if (params.event_opdata) {&eol; fields.push(&eol; {&eol; name: 'Operational data',&eol; value: stringTruncate(params.event_opdata, 1024),&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; if (params.event_value == 1 && params.event_update_status == 0 && params.trigger_description) {&eol; fields.push(&eol; {&eol; name: 'Trigger description',&eol; value: stringTruncate(params.trigger_description, 1024)&eol; }&eol; );&eol; }&eol;&eol; body.embeds[0].footer = {&eol; text: 'Event ID: ' + params.event_id&eol; };&eol;&eol; if (params.event_tags) {&eol; body.embeds[0].footer.text += '\nEvent tags: ' + params.event_tags;&eol; }&eol; body.embeds[0].footer.text = stringTruncate(body.embeds[0].footer.text, 2048);&eol; }&eol;&eol; if (fields.length > 0) {&eol; body.embeds[0].fields = fields;&eol; }&eol;&eol; var req = new CurlHttpRequest();&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; req.AddHeader('Content-Type: application/json');&eol;&eol; var resp = req.Post(params.discord_endpoint, JSON.stringify(body)),&eol; data = JSON.parse(resp);&eol;&eol; Zabbix.Log(4, '[ Discord Webhook ] JSON: ' + JSON.stringify(body));&eol; Zabbix.Log(4, '[ Discord Webhook ] Response: ' + resp);&eol;&eol; if (data.id) {&eol; return resp;&eol; }&eol; else {&eol; var message = ((typeof data.message === 'string') ? data.message : 'Unknown error');&eol;&eol; Zabbix.Log(3, '[ Discord Webhook ] FAILED with response: ' + resp);&eol; throw message + '. For more details check zabbix server log.';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Discord Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
ROW |11 |4 |SIGNL4 | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |// SIGNL4 Webhook&eol;try {&eol; var response,&eol; payload,&eol; params = JSON.parse(value),&eol; endpoint = 'https://connect.signl4.com/webhook/',&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; request.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; if (typeof params.teamsecret === 'string' && params.teamsecret.trim() !== '') {&eol; endpoint += params.teamsecret;&eol; delete params.teamsecret;&eol; }&eol; else {&eol; throw 'The team secret of your SIGNL4 team cannot be empty.';&eol; }&eol;&eol; if (typeof params.Severity === 'string' && params.Severity === '{EVENT.SEVERITY}') {&eol; params.Severity = 'Not classified';&eol; }&eol;&eol; if (typeof params.User === 'string' && params.User === '{USER.FULLNAME}') {&eol; params.User = '';&eol; }&eol;&eol; if (typeof params.Event_Update_Action === 'string' && params.Event_Update_Action === '{EVENT.UPDATE.ACTION}') {&eol; params.Event_Update_Action = '';&eol; }&eol;&eol; // Assemble X-S4-ExternalID for two-way integration&eol; // Format: "ZabbixEventID: 222 ZabbixURL: https://your-zabbix-server/zabbix/"&eol; params['X-S4-ExternalID'] = 'ZabbixEventID: ' + params.Event_ID;&eol; if (typeof params.Zabbix_URL === 'string' && params.Zabbix_URL.indexOf('http') == 0) {&eol; // Make sure the URL ends with '/'&eol; if (params.Zabbix_URL.charAt(params.Zabbix_URL.length - 1) != '/') {&eol; params.Zabbix_URL = params.Zabbix_URL + '/';&eol; }&eol;&eol; params['X-S4-ExternalID'] = params['X-S4-ExternalID'] + ' ZabbixURL: ' + params.Zabbix_URL;&eol;&eol; // Add Link parameter&eol; params['Link'] = params.Zabbix_URL + "tr_events.php?triggerid="+params.Trigger_ID + "&eventid=" + params.Event_ID;&eol; }&eol;&eol; // Check if this is a new problem or a recovery&eol; if (params.Trigger_Status == 'OK') {&eol; params['X-S4-Status'] = 'resolved';&eol; }&eol; else {&eol; params['X-S4-Status'] = 'new';&eol; }&eol;&eol; payload = JSON.stringify(params);&eol; Zabbix.Log(4, '[ SIGNL4 Webhook ] Sending request: ' + payload);&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; response = request.Post(endpoint, 'payload=' + payload);&eol;&eol; Zabbix.Log(4, '[ SIGNL4 Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response&eol; );&eol;&eol; if (request.Status() !== 201) {&eol; throw 'Request failed with status code ' + request.Status() +&eol; '. Check debug log for more information.';&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[ SIGNL4 Webhook ] ERROR: ' + error);&eol;&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | |SIGNL4 is a mobile alert notification app for powerful alerting, alert management and mobile assignment of work items. It offers alerting via app push, SMS and voice calls including escalations, tracking, and duty scheduling.&eol;&eol;Get the app at https://www.signl4.com.&eol;&eol;Find out more including an integration video here: https://www.signl4.com/blog/portfolio_item/zabbix-mobile-alert-notification-duty-schedule-escalation/&eol; |
ROW |12 |4 |Jira | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Jira.params = params;&eol; if (typeof Jira.params.url === 'string') {&eol; if (!Jira.params.url.endsWith('/')) {&eol; Jira.params.url += '/';&eol; }&eol;&eol; Jira.params.url += 'rest/api/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined'&eol; && !tag.tag.startsWith('__zbx')) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 256) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; escapeMarkup: function (str) {&eol; var length = str.length,&eol; result = '',&eol; markup = ['{', '&pipe;', '}', '~', '_', '\\', '[', ']', '^', '<', '>', '?', '!', '#', '+', '*', '&'];&eol;&eol; for (var i = 0; i < length; i++) {&eol; var char = str[i];&eol;&eol; result += (markup.indexOf(char) !== -1) ? ('&#' + str[i].charCodeAt() + ';') : char;&eol; }&eol;&eol; return result;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Jira.getSchema(),&eol; path = ['projects', 0, 'issuetypes', 0, 'fields'],&eol; field;&eol;&eol; while ((field = path.shift()) !== undefined) {&eol; schema = schema[field];&eol; if (typeof schema === 'undefined') {&eol; schema = null;&eol; break;&eol; }&eol; }&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (typeof schema[field] === 'object' && typeof schema[field].schema === 'object') {&eol; switch (schema[field].schema.type) {&eol; case 'number':&eol; data.fields[field] = parseInt(fields[field]);&eol; break;&eol;&eol; case 'datetime':&eol; if (fields[field].match(/\d+[.-]\d+[.-]\d+T\d+:\d+:\d+/) !== null) {&eol; data.fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; break;&eol;&eol; case 'option':&eol; data.fields[field] = {value: fields[field]};&eol; break;&eol;&eol; case 'array':&eol; if (schema[field].schema.items === 'option') {&eol; data.fields[field] = [{value: fields[field]}];&eol; }&eol; else {&eol; data.fields[field] = [fields[field]];&eol; }&eol; break;&eol;&eol; default:&eol; data.fields[field] = fields[field];&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'project_key', 'issue_type'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol;&eol; if (typeof Jira.HTTPProxy !== 'undefined' && Jira.HTTPProxy !== '') {&eol; request.SetProxy(Jira.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Sending request: ' + url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=' +&eol; encodeURIComponent(Jira.params.project_key) + '&issuetypeNames=' +&eol; encodeURIComponent(Jira.params.issue_type));&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(summary, description, fields) {&eol; var data = {&eol; fields: {&eol; project: {&eol; key: Jira.params.project_key&eol; },&eol; issuetype: {&eol; name: Jira.params.issue_type&eol; },&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.fields.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'issue', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.key === 'undefined') {&eol; throw 'Cannot create Jira issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.key;&eol; },&eol;&eol; updateIssue: function(summary, fields, update) {&eol; var data = {fields: {}};&eol;&eol; if (summary) {&eol; data.fields.summary = summary;&eol; }&eol;&eol; Jira.request('put', 'issue/' + encodeURIComponent(Jira.params.issue_key), Jira.addCustomFields(data, fields));&eol; Jira.commentIssue(update);&eol; },&eol;&eol; commentIssue: function(update) {&eol; var data = {};&eol;&eol; if (typeof update === 'string') {&eol; data.body = update;&eol; Jira.request('post', 'issue/' + encodeURIComponent(Jira.params.issue_key) + '/comment', data);&eol; }&eol; else if (update.status === '1') {&eol; data.body = update.user + ' ' + update.action + '.';&eol;&eol; if (update.message) {&eol; data.body += '\nMessage: {quote}' + Jira.escapeMarkup(update.message) + '{quote}';&eol; }&eol;&eol; Jira.request('post', 'issue/' + encodeURIComponent(Jira.params.issue_key) + '/comment', data);&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'summary', 'event_recovery_value', 'event_source', 'event_value'];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('jira_')) {&eol; jira[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Jira.setParams(jira);&eol; Jira.setProxy(params.HTTPProxy);&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createIssue(params.alert_subject, params.alert_message);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0' && !jira.issue_key.startsWith(jira.project_key)) {&eol; var key = Jira.createIssue(params.alert_subject,&eol; (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);&eol;&eol;&eol; result.tags.__zbx_jira_issuekey = key;&eol; result.tags.__zbx_jira_issuelink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (!jira.issue_key.startsWith(jira.project_key)) {&eol; throw 'Incorrect Issue key given: ' + jira.issue_key;&eol; }&eol; Jira.updateIssue(params.alert_subject, fields,&eol; ((params.event_value === '0' && !Object.keys(fields).length)&eol; ? params.alert_message : update));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Jira Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_issuelink} |Jira: {EVENT.TAGS.__zbx_jira_issuekey} | |
ROW |13 |4 |Jira with CustomFields | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Jira.params = params;&eol; if (typeof Jira.params.url === 'string') {&eol; if (!Jira.params.url.endsWith('/')) {&eol; Jira.params.url += '/';&eol; }&eol;&eol; Jira.params.url += 'rest/api/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined' ) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 256) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; escapeMarkup: function (str) {&eol; var length = str.length,&eol; result = '',&eol; markup = ['{', '&pipe;', '}', '~', '_', '\\', '[', ']', '^', '<', '>', '?', '!', '#', '+', '*', '&'];&eol;&eol; for (var i = 0; i < length; i++) {&eol; var char = str[i];&eol;&eol; result += (markup.indexOf(char) !== -1) ? ('&#' + str[i].charCodeAt() + ';') : char;&eol; }&eol;&eol; return result;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Jira.getSchema(),&eol; path = ['projects', 0, 'issuetypes', 0, 'fields'],&eol; field;&eol;&eol; while ((field = path.shift()) !== undefined) {&eol; schema = schema[field];&eol; if (typeof schema === 'undefined') {&eol; schema = null;&eol; break;&eol; }&eol; }&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; data.fields[field] = fields[field];&eol;&eol; if (typeof schema[field] === 'object' && typeof schema[field].schema === 'object'&eol; && (schema[field].schema.type === 'number' &pipe;&pipe; schema[field].schema.type === 'datetime')) {&eol; switch (schema[field].schema.type) {&eol; case 'number':&eol; data.fields[field] = parseInt(fields[field]);&eol; break;&eol;&eol; case 'datetime':&eol; if (fields[field].match(/\d+[.-]\d+[.-]\d+T\d+:\d+:\d+/) !== null) {&eol; data.fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; delete data.fields[field];&eol; }&eol; break;&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'project_key', 'issue_type'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol;&eol; if (typeof Jira.HTTPProxy !== 'undefined' && Jira.HTTPProxy !== '') {&eol; request.SetProxy(Jira.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Sending request: ' + url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=' +&eol; Jira.params.project_key + '&issuetypeNames=' + Jira.params.issue_type);&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(summary, description, fields) {&eol; var data = {&eol; fields: {&eol; project: {&eol; key: Jira.params.project_key&eol; },&eol; issuetype: {&eol; name: Jira.params.issue_type&eol; },&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.fields.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'issue', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.key === 'undefined') {&eol; throw 'Cannot create Jira issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.key;&eol; },&eol;&eol; updateIssue: function(summary, fields, update) {&eol; var data = {fields: {}};&eol;&eol; if (summary) {&eol; data.fields.summary = summary;&eol; }&eol;&eol; Jira.request('put', 'issue/' + Jira.params.issue_key, Jira.addCustomFields(data, fields));&eol; Jira.commentIssue(update);&eol; },&eol;&eol; commentIssue: function(update) {&eol; var data = {};&eol;&eol; if (typeof update === 'string') {&eol; data.body = update;&eol; Jira.request('post', 'issue/' + Jira.params.issue_key + '/comment', data);&eol; }&eol; else if (update.status === '1') {&eol; data.body = update.user + ' ' + update.action + '.';&eol;&eol; if (update.message) {&eol; data.body += '\nMessage: {quote}' + Jira.escapeMarkup(update.message) + '{quote}';&eol; }&eol;&eol; Jira.request('post', 'issue/' + Jira.params.issue_key + '/comment', data);&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'summary', 'event_recovery_value', 'event_source', 'event_value'];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('jira_')) {&eol; jira[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Jira.setParams(jira);&eol; Jira.setProxy(params.HTTPProxy);&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createIssue(params.alert_subject, params.alert_message);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0' && !jira.issue_key.startsWith(jira.project_key)) {&eol; var key = Jira.createIssue(params.alert_subject,&eol; (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);&eol;&eol;&eol; result.tags.__zbx_jira_issuekey = key;&eol; result.tags.__zbx_jira_issuelink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (!jira.issue_key.startsWith(jira.project_key)) {&eol; throw 'Incorrect Issue key given: ' + jira.issue_key;&eol; }&eol; Jira.updateIssue(params.alert_subject, fields,&eol; ((params.event_value === '0' && !Object.keys(fields).length)&eol; ? params.alert_message : update));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Jira Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_issuelink} |Jira: {EVENT.TAGS.__zbx_jira_issuekey} | |
ROW |14 |4 |MS Teams | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', // Not classified.&eol; '#7499FF', // Information.&eol; '#FFC859', // Warning.&eol; '#FFA059', // Average.&eol; '#E97659', // High.&eol; '#E45959', // Disaster.&eol; '#009900', // Resolved.&eol; '#000000' // Default.&eol;];&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; if (typeof params.teams_endpoint !== 'string' &pipe;&pipe; params.teams_endpoint.trim() === '') {&eol; throw 'Cannot get teams_endpoint';&eol; }&eol; else if (!params.teams_endpoint.startsWith('http')) {&eol; throw 'Invalid MS Teams webhook URL: ' + params.teams_endpoint;&eol; }&eol;&eol; params.zabbix_url = (params.zabbix_url.endsWith('/'))&eol; ? params.zabbix_url.slice(0, -1) : params.zabbix_url;&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Set "use_default_message" to true for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: "' + params.event_value + '".\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: "' + params.event_update_status + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value == 0) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (!SEVERITY_COLORS[params.event_nseverity]) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; var request = new CurlHttpRequest(),&eol; facts = [],&eol; body = {&eol; themeColor: SEVERITY_COLORS[params.event_nseverity].replace('#', ''),&eol; summary: 'Zabbix',&eol; sections: [&eol; {&eol; markdown: 'false',&eol; activityTitle: params.alert_subject,&eol; activitySubtitle: 'On ' + params.host_name + ' [' + params.host_ip + ']',&eol; text: (params.use_default_message.toLowerCase() == 'true')&eol; ? params.alert_message&eol; : params.trigger_description&eol; }&eol; ],&eol; potentialAction: [&eol; {&eol; '@type': 'OpenUri',&eol; name: (params.event_source === '0')&eol; ? 'Event Info'&eol; : 'Zabbix Home',&eol; targets: [&eol; {&eol; os: 'default',&eol; uri: (params.event_source === '0')&eol; ? params.zabbix_url + '/tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id&eol; : params.zabbix_url&eol; }&eol; ]&eol; }&eol; ]&eol; };&eol;&eol; if (params.use_default_message.toLowerCase() !== 'true') {&eol; // Problem message.&eol; if (params.event_value === '1' && params.event_update_status === '0') {&eol; facts.push({&eol; name: 'Event time',&eol; value: params.event_time + ' ' + params.event_date&eol; });&eol; }&eol; // Update message.&eol; else if (params.event_update_status === '1') {&eol; body.sections[0].text = params.event_update_user + ' ' + params.event_update_action + '.';&eol;&eol; if (params.event_update_message) {&eol; body.sections[0].text += '<br>Message:<br>' + params.event_update_message;&eol; }&eol;&eol; facts.push({&eol; name: 'Event update time',&eol; value: params.event_update_time + ' ' + params.event_update_date&eol; });&eol; }&eol; // Resolved message.&eol; else {&eol; facts.push({&eol; name: 'Recovery time',&eol; value: params.event_recovery_time + ' ' + params.event_recovery_date&eol; });&eol; }&eol;&eol; if (params.event_severity && params.event_severity !== '{EVENT.SEVERITY}') {&eol; facts.push({&eol; name: 'Severity',&eol; value: params.event_severity&eol; });&eol; }&eol;&eol;&eol; if (params.event_opdata && params.event_opdata !== '{EVENT.OPDATA}') {&eol; facts.push({&eol; name: 'Operational data',&eol; value: params.event_opdata&eol; });&eol; }&eol;&eol; if (params.event_tags && params.event_tags !== '{EVENT.TAGS}') {&eol; facts.push({&eol; name: 'Event tags',&eol; value: params.event_tags&eol; });&eol; }&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('fact_') && params[key] !== '') {&eol; facts.push({&eol; name: key.substring(5),&eol; value: params[key]&eol; });&eol; }&eol; else if (key.startsWith('openUri_') && params[key] !== '' && !params[key].startsWith('{')) {&eol; body.potentialAction.push({&eol; '@type': 'OpenUri',&eol; name: key.substring(8),&eol; targets: [&eol; {&eol; os: 'default',&eol; uri: params[key]&eol; }&eol; ]&eol; });&eol; }&eol; });&eol; body.sections[0].facts = facts;&eol; }&eol;&eol; body.sections[0].text = body.sections[0].text.replace(/(?:\r\n&pipe;\r&pipe;\n)/g, '<br>');&eol;&eol; request.AddHeader('Content-Type: application/json');&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy !== '') {&eol; request.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; Zabbix.Log(4, '[ MS Teams Webhook ] JSON: ' + JSON.stringify(body));&eol;&eol; var response = request.Post(params.teams_endpoint, JSON.stringify(body));&eol;&eol; Zabbix.Log(4, '[ MS Teams Webhook ] Response: ' + response);&eol;&eol; if (response === '1') {&eol; return 'OK';&eol; }&eol; else {&eol; Zabbix.Log(4, '[ MS Teams Webhook ] FAILED with response: ' + response);&eol; throw response;&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ MS Teams Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
ROW |15 |4 |Redmine | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Redmine = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Redmine.params = params;&eol; if (typeof Redmine.params.url === 'string') {&eol; if (!Redmine.params.url.endsWith('/')) {&eol; Redmine.params.url += '/';&eol; }&eol; }&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Redmine.getSchema();&eol;&eol; if (schema) {&eol; data.issue.custom_fields = [];&eol;&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; for (var idx in schema.custom_fields) {&eol; if (schema.custom_fields[idx].id != field) {&eol; continue;&eol; }&eol;&eol; var field_value;&eol;&eol; switch (schema.custom_fields[idx].field_format) {&eol; case 'string':&eol; field_value = fields[field];&eol; break;&eol;&eol; case 'int':&eol; field_value = parseInt(fields[field]);&eol; break;&eol;&eol; case 'float':&eol; field_value = parseFloat(fields[field]);&eol; break;&eol;&eol; case 'date':&eol; if (fields[field].match(/^\d{4}[.-]\d{2}[.-]\d{2}$/)) {&eol; field_value = fields[field].replace(/\./g, '-');&eol; }&eol; break;&eol; }&eol;&eol; if (field_value !== undefined) {&eol; data.issue.custom_fields.push({id: field, value: field_value});&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'access_key'].forEach(function (field) {&eol; if (typeof Redmine.params !== 'object' &pipe;&pipe; typeof Redmine.params[field] === 'undefined'&eol; &pipe;&pipe; Redmine.params[field] === '' ) {&eol; throw 'Required param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Redmine.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof Redmine.HTTPProxy === 'string' && Redmine.HTTPProxy.trim() !== '') {&eol; request.SetProxy(Redmine.HTTPProxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('X-Redmine-API-Key: ' + Redmine.params.access_key);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Redmine Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Redmine Webhook ] Received response with status code ' + request.Status() + ': ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to parse response received from Redmine');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getProjectID: function(name) {&eol; var result = Redmine.request('get', 'projects.json'),&eol; project_id;&eol;&eol; if (result.response) {&eol; var projects = result.response.projects &pipe;&pipe; [];&eol;&eol; for (var i in projects) {&eol; if (projects[i].name === name) {&eol; project_id = projects[i].id;&eol; break;&eol; }&eol; }&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to retrieve project data.');&eol; }&eol;&eol; if (typeof project_id === 'undefined') {&eol; throw 'Cannot find project with name: ' + name;&eol; }&eol;&eol; return project_id;&eol; },&eol;&eol; getSchema: function() {&eol; var result = Redmine.request('get', 'custom_fields.json');&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(subject, description, priority, fields) {&eol; var project_id = /^\d+$/.test(Redmine.params.project)&eol; ? Redmine.params.project&eol; : Redmine.getProjectID(Redmine.params.project),&eol; data = {&eol; issue: {&eol; project_id: project_id,&eol; tracker_id: Redmine.params.tracker_id,&eol; subject: subject,&eol; description: description&eol; }&eol; },&eol; result;&eol;&eol; if (priority) {&eol; data.issue.priority_id = priority;&eol; }&eol;&eol; result = Redmine.request('post', 'issues.json', Redmine.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.issue.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Redmine issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.issue.id;&eol; },&eol;&eol; updateIssue: function(note, fields) {&eol; var data = {&eol; issue: {&eol; notes: note &pipe;&pipe; ''&eol; }&eol; };&eol;&eol; Redmine.request('put', 'issues/' + Redmine.params.issue_key + '.json', Redmine.addCustomFields(data, fields));&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; params_redmine = {},&eol; params_fields = {},&eol; params_update = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'tracker_id', 'project',&eol; 'event_source', 'event_value', 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: null, color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('redmine_')) {&eol; params_redmine[key.substring(8)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; params_fields[key.substring(12)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; params_update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; if (params.event_source === '0'&eol; && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0'&eol; && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.redmine_issue_key)) &pipe;&pipe; parseInt(params.redmine_issue_key) < 1 )) {&eol; throw 'Incorrect "redmine_issue_key" parameter given: ' + params.redmine_issue_key +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name];&eol; priority = priority && priority.trim() &pipe;&pipe; severities[7].name;&eol;&eol; Redmine.setParams(params_redmine);&eol; Redmine.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0'&eol; && params.event_value !== '0') {&eol; Redmine.createIssue(params.alert_subject, params.alert_message, priority);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && params_update.status === '0') {&eol; var issue_id = Redmine.createIssue(params.alert_subject,&eol; params.alert_subject + '\n' + params.alert_message + '\n' +&eol; params.zabbix_url + (params.zabbix_url.endsWith('/') ? '' : '/') +&eol; 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id + '\n',&eol; priority,&eol; params_fields);&eol;&eol; result.tags.__zbx_redmine_issue_id = issue_id;&eol; result.tags.__zbx_redmine_issuelink = params.redmine_url +&eol; (params.redmine_url.endsWith('/') ? '' : '/') + 'issues/' + issue_id;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; Redmine.updateIssue(params.alert_subject + '\n' + params.alert_message, params_fields);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Redmine Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_redmine_issuelink} |Redmine: issue #{EVENT.TAGS.__zbx_redmine_issue_id} | |
-ROW |16 |4 |Telegram | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Telegram = {&eol; token: null,&eol; to: null,&eol; message: null,&eol; proxy: null,&eol; parse_mode: null,&eol;&eol; sendMessage: function() {&eol; var params = {&eol; chat_id: Telegram.to,&eol; text: Telegram.message,&eol; disable_web_page_preview: true,&eol; disable_notification: false&eol; },&eol; data,&eol; response,&eol; request = new CurlHttpRequest(),&eol; url = 'https://api.telegram.org/bot' + Telegram.token + '/sendMessage';&eol;&eol; if (Telegram.parse_mode !== null) {&eol; params['parse_mode'] = Telegram.parse_mode;&eol; }&eol;&eol; if (Telegram.proxy) {&eol; request.SetProxy(Telegram.proxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; data = JSON.stringify(params);&eol;&eol; // Remove replace() function if you want to see the exposed token in the log file.&eol; Zabbix.Log(4, '[Telegram Webhook] URL: ' + url.replace(Telegram.token, '<TOKEN>'));&eol; Zabbix.Log(4, '[Telegram Webhook] params: ' + data);&eol; response = request.Post(url, data);&eol; Zabbix.Log(4, '[Telegram Webhook] HTTP code: ' + request.Status());&eol;&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; response = null;&eol; }&eol;&eol; if (request.Status() !== 200 &pipe;&pipe; typeof response.ok !== 'boolean' &pipe;&pipe; response.ok !== true) {&eol; if (typeof response.description === 'string') {&eol; throw response.description;&eol; }&eol; else {&eol; throw 'Unknown error. Check debug log for more information.'&eol; }&eol; }&eol; }&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; if (typeof params.Token === 'undefined') {&eol; throw 'Incorrect value is given for parameter "Token": parameter is missing';&eol; }&eol;&eol; Telegram.token = params.Token;&eol;&eol; if (params.HTTPProxy) {&eol; Telegram.proxy = params.HTTPProxy;&eol; } &eol;&eol; if (['Markdown', 'HTML', 'MarkdownV2'].indexOf(params.ParseMode) !== -1) {&eol; Telegram.parse_mode = params.ParseMode;&eol; }&eol;&eol; Telegram.to = params.To;&eol; Telegram.message = params.Subject + '\n' + params.Message;&eol; Telegram.sendMessage();&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[Telegram Webhook] notification failed: ' + error);&eol; throw 'Sending failed: ' + error + '.';&eol;}|10s |0 |0 | | |https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/telegram&eol;&eol;1. Register bot: send "/newbot" to @BotFather and follow instructions&eol;2. Copy and paste the obtained token into the "Token" field above&eol;3. If you want to send personal notifications, you need to get chat id of the user you want to send messages to:&eol; 3.1. Send "/getid" to "@myidbot" in Telegram messenger&eol; 3.2. Copy returned chat id and save it in the "Telegram Webhook" media for the user&eol; 3.3. Ask the user to send "/start" to your bot (Telegram bot won't send anything to the user without it)&eol;4. If you want to send group notifications, you need to get group id of the group you want to send messages to:&eol; 4.1. Add "@myidbot" to your group&eol; 4.2. Send "/getgroupid@myidbot" in your group&eol; 4.3. Copy returned group id save it in the "Telegram Webhook" media for the user you created for group notifications&eol; 4.4. Send "/start@your_bot_name_here" in your group (Telegram bot won't send anything to the group without it)|
+ROW |16 |4 |Telegram | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Telegram = {&eol; token: null,&eol; to: null,&eol; message: null,&eol; proxy: null,&eol; parse_mode: null,&eol;&eol; escapeMarkup: function (str, mode) {&eol; switch (mode) {&eol; case 'markdown':&eol; return str.replace(/([_*\[`])/g, '\\$&');&eol;&eol; case 'markdownv2':&eol; return str.replace(/([_*\[\]()~`>#+\-=&pipe;{}.!])/g, '\\$&');&eol;&eol; default:&eol; return str;&eol; }&eol; },&eol;&eol; sendMessage: function () {&eol; var params = {&eol; chat_id: Telegram.to,&eol; text: Telegram.message,&eol; disable_web_page_preview: true,&eol; disable_notification: false&eol; },&eol; data,&eol; response,&eol; request = new CurlHttpRequest(),&eol; url = 'https://api.telegram.org/bot' + Telegram.token + '/sendMessage';&eol;&eol; if (Telegram.parse_mode !== null) {&eol; params['parse_mode'] = Telegram.parse_mode;&eol; }&eol;&eol; if (Telegram.proxy) {&eol; request.SetProxy(Telegram.proxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; data = JSON.stringify(params);&eol;&eol; // Remove replace() function if you want to see the exposed token in the log file.&eol; Zabbix.Log(4, '[Telegram Webhook] URL: ' + url.replace(Telegram.token, '<TOKEN>'));&eol; Zabbix.Log(4, '[Telegram Webhook] params: ' + data);&eol; response = request.Post(url, data);&eol; Zabbix.Log(4, '[Telegram Webhook] HTTP code: ' + request.Status());&eol;&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; response = null;&eol; }&eol;&eol; if (request.Status() !== 200 &pipe;&pipe; typeof response.ok !== 'boolean' &pipe;&pipe; response.ok !== true) {&eol; if (typeof response.description === 'string') {&eol; throw response.description;&eol; }&eol; else {&eol; throw 'Unknown error. Check debug log for more information.';&eol; }&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; if (typeof params.Token === 'undefined') {&eol; throw 'Incorrect value is given for parameter "Token": parameter is missing';&eol; }&eol;&eol; Telegram.token = params.Token;&eol;&eol; if (params.HTTPProxy) {&eol; Telegram.proxy = params.HTTPProxy;&eol; } &eol;&eol; params.ParseMode = params.ParseMode.toLowerCase();&eol;&eol; if (['markdown', 'html', 'markdownv2'].indexOf(params.ParseMode) !== -1) {&eol; Telegram.parse_mode = params.ParseMode;&eol; }&eol;&eol; Telegram.to = params.To;&eol; Telegram.message = params.Subject + '\n' + params.Message;&eol;&eol; if (['markdown', 'markdownv2'].indexOf(params.ParseMode) !== -1) {&eol; Telegram.message = Telegram.escapeMarkup(Telegram.message, params.ParseMode);&eol; }&eol;&eol; Telegram.sendMessage();&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[Telegram Webhook] notification failed: ' + error);&eol; throw 'Sending failed: ' + error + '.';&eol;}|10s |0 |0 | | |https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/telegram&eol;&eol;1. Register bot: send "/newbot" to @BotFather and follow instructions&eol;2. Copy and paste the obtained token into the "Token" field above&eol;3. If you want to send personal notifications, you need to get chat id of the user you want to send messages to:&eol; 3.1. Send "/getid" to "@myidbot" in Telegram messenger&eol; 3.2. Copy returned chat id and save it in the "Telegram Webhook" media for the user&eol; 3.3. Ask the user to send "/start" to your bot (Telegram bot won't send anything to the user without it)&eol;4. If you want to send group notifications, you need to get group id of the group you want to send messages to:&eol; 4.1. Add "@myidbot" to your group&eol; 4.2. Send "/getgroupid@myidbot" in your group&eol; 4.3. Copy returned group id save it in the "Telegram Webhook" media for the user you created for group notifications&eol; 4.4. Send "/start@your_bot_name_here" in your group (Telegram bot won't send anything to the group without it)|
ROW |17 |4 |Zendesk | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Zendesk = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Zendesk.params = params;&eol; if (typeof Zendesk.params.url === 'string') {&eol; if (!Zendesk.params.url.endsWith('/')) {&eol; Zendesk.params.url += '/';&eol; }&eol; Zendesk.params.url += 'api/v2/';&eol; }&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Zendesk.getSchema(),&eol; arr = [],&eol; i,&eol; n;&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; for (i = 0, n = schema.ticket_fields.length; i < n; i++) {&eol; if (schema.ticket_fields[i].id == field&eol; && ['text', 'integer', 'date'].indexOf(schema.ticket_fields[i].type) !== -1){&eol;&eol; switch (schema.ticket_fields[i].type) {&eol; case 'integer':&eol; fields[field] = parseInt(fields[field]);&eol; break;&eol; case 'date':&eol; if (fields[field].match(/^\d{4}[.-]\d{2}[.-]\d{2}$/) !== null) {&eol; fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; fields[field] = '';&eol; }&eol; break;&eol; }&eol;&eol; arr.push({id: field, value: fields[field]});&eol; break;&eol; }&eol; }&eol; });&eol;&eol; if (arr.length) {&eol; data.ticket['custom_fields'] = arr;&eol; }&eol; }&eol; else {&eol; Zabbix.Log(4, '[Zendesk Webhook] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'token', 'type'].forEach(function (field) {&eol; if (typeof Zendesk.params !== 'object' &pipe;&pipe; typeof Zendesk.params[field] === 'undefined') {&eol; throw 'Required Zendesk param is not set: ' + field + '\n' + Zendesk.params[field];&eol; }&eol; });&eol;&eol; var response,&eol; url = Zendesk.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof Zendesk.HTTPProxy === 'string' && Zendesk.HTTPProxy.trim() !== '') {&eol; request.SetProxy(Zendesk.HTTPProxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Zendesk.params.token));&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[Zendesk Webhook] Sending request: ' + url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[Zendesk Webhook] Received response with status code ' + request.Status() + '. ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[Zendesk Webhook] Failed to parse response received from Zendesk.');&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.error !== 'undefined'&eol; && Object.keys(response.error).length > 0) {&eol; message += ': ' + JSON.stringify(response.error);&eol; }&eol; else if (response !== null && typeof response.description !== 'undefined'&eol; && Object.keys(response.description).length > 0) {&eol; message += ': ' + JSON.stringify(response.description);&eol; }&eol; else {&eol; message += '. ' + response;&eol; }&eol; throw message + '. Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Zendesk.request('get', 'ticket_fields.json');&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(data, fields) {&eol; var result = Zendesk.request('post', 'tickets.json', Zendesk.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.ticket.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Zendesk issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.ticket.id;&eol; },&eol;&eol; updateIssue: function(data, fields) {&eol; Zendesk.request('put', 'tickets/' + Zendesk.params.issue_key + '.json', Zendesk.addCustomFields(data, fields));&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; zendesk = {},&eol; update = {},&eol; data = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject',&eol; 'alert_message',&eol; 'event_id',&eol; 'event_source',&eol; 'event_value',&eol; 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('zendesk_')) {&eol; zendesk[key.substring(8)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key.substring(12)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter ' + key + ' cannot be empty.';&eol; }&eol; });&eol;&eol; // Possible values: question, incident, problems, task&eol; if (['question', 'incident', 'problem', 'task'].indexOf(params.zendesk_type) === -1) {&eol; throw 'Incorrect "zendesk_type" parameter given: ' + params.zendesk_type +&eol; '\nMust be one of question, incident, problem, task.';&eol; }&eol;&eol; // Possible values: 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; // Possible values: 1 for problem, 0 for recovering&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; // Zendesk_issue_key must be a positive integer if an update action is being performed.&eol; if (params.event_source === '0' && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0' && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.zendesk_issue_key)) &pipe;&pipe; parseInt(params.zendesk_issue_key) < 1 )) {&eol; throw 'Incorrect "zendesk_issue_key" parameter given: ' + params.zendesk_issue_key +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name] &pipe;&pipe; severities[7].name;&eol;&eol; Zendesk.setParams(zendesk);&eol; Zendesk.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_value !== '0') {&eol; data = {&eol; ticket: {&eol; external_id: params.event_id,&eol; type: Zendesk.params.type,&eol; status: 'new',&eol; subject: params.alert_subject,&eol; comment: {&eol; body: params.alert_message,&eol; public: 'false'&eol; },&eol; priority: priority,&eol; tags: params.event_tags&eol; }&eol; };&eol;&eol; Zendesk.createIssue(data, fields);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0') {&eol; data = {&eol; ticket: {&eol; external_id: params.event_id,&eol; type: Zendesk.params.type,&eol; status: 'new',&eol; subject: params.alert_subject,&eol; comment: {&eol; body: params.zbxurl + (params.zbxurl.endsWith('/') ? '' : '/') + 'tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id + '\n' + params.alert_message,&eol; public: 'false'&eol; },&eol; priority: priority,&eol; tags: params.event_tags&eol; }&eol; };&eol; var key = Zendesk.createIssue(data, fields);&eol;&eol; result.tags.__zbx_zdk_issuekey = key;&eol; result.tags.__zbx_zdk_issuelink = params.zendesk_url +&eol; (params.zendesk_url.endsWith('/') ? '' : '/') + 'agent/tickets/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; data = {&eol; ticket: {&eol; type: Zendesk.params.type,&eol; subject: params.alert_subject,&eol; comment: {&eol; body: params.alert_message,&eol; public: 'false'&eol; }&eol; }&eol; };&eol;&eol; Zendesk.updateIssue(data, fields);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[Zendesk Webhook] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_zdk_issuelink} |Zendesk: {EVENT.TAGS.__zbx_zdk_issuekey} | |
ROW |18 |4 |ServiceNow | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var ServiceNow = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; ServiceNow.params = params;&eol; if (typeof ServiceNow.params.url === 'string') {&eol; if (!ServiceNow.params.url.endsWith('/')) {&eol; ServiceNow.params.url += '/';&eol; }&eol;&eol; ServiceNow.params.url += 'api/now/table/incident';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; ServiceNow.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; data[field] = (fields[field].match(/^\d{4}\.\d{2}\.\d{2}$/) !== null)&eol; ? fields[field].replace(/\./g, '-')&eol; : fields[field];&eol; });&eol; }&eol; },&eol;&eol; request: function (method, data) {&eol; ['url', 'user', 'password'].forEach(function (field) {&eol; if (typeof ServiceNow.params !== 'object' &pipe;&pipe; typeof ServiceNow.params[field] === 'undefined'&eol; &pipe;&pipe; ServiceNow.params[field] === '' ) {&eol; throw 'Required ServiceNow param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = ServiceNow.params.url,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(ServiceNow.params.user + ':' + ServiceNow.params.password));&eol;&eol; if (typeof ServiceNow.HTTPProxy !== 'undefined' && ServiceNow.HTTPProxy !== '') {&eol; request.SetProxy(ServiceNow.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ ServiceNow Webhook ] Sending request: ' + url + ((typeof data === 'string')&eol; ? ('\n' + data)&eol; : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ ServiceNow Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ ServiceNow Webhook ] Failed to parse response received from ServiceNow');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.error.message !== 'undefined'&eol; && Object.keys(response.error).length > 0) {&eol; message += ': ' + JSON.stringify(response.error.message);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol; else if (typeof response.result !== 'object' &pipe;&pipe; typeof response.result.sys_id === 'undefined') {&eol; throw 'Cannot create ServiceNow incident. Check debug log for more information.';&eol; }&eol;&eol; return response.result;&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; servicenow = {},&eol; data = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'alert_message', 'event_source', 'event_value',&eol; 'event_update_status', 'event_recovery_value', 'event_nseverity'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ],&eol; method = 'post',&eol; process_tags = true;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('servicenow_')) {&eol; servicenow[key.substring(11)] = params[key];&eol; }&eol; else if (key.startsWith('u_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; data.short_description = params.alert_subject;&eol; data.description = params.alert_message;&eol; data.comments = params.alert_message;&eol;&eol; if (typeof params['urgency_for_' + severities[params.event_nseverity].name] !== 'undefined') {&eol; data.urgency = params['urgency_for_' + severities[params.event_nseverity].name];&eol; }&eol;&eol; ServiceNow.setParams(servicenow);&eol; ServiceNow.setProxy(params.HTTPProxy);&eol; ServiceNow.setFields(data, fields);&eol;&eol; if (params.event_source === '0' && (params.event_value === '0' &pipe;&pipe; params.event_update_status === '1')) {&eol; process_tags = false;&eol; method = 'put';&eol; delete data.description;&eol; delete data.urgency;&eol; ServiceNow.params.url += '/' + params.servicenow_sys_id;&eol; }&eol;&eol; var response = ServiceNow.request(method, data);&eol;&eol; if (process_tags) {&eol; result.tags.__zbx_servicenow_sys_id = response.sys_id;&eol; result.tags.__zbx_servicenow_link = params.servicenow_url +&eol; (params.servicenow_url.endsWith('/') ? '' : '/') + 'incident.do?sys_id=' + response.sys_id;&eol; result.tags.__zbx_servicenow_number = response.number;&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ ServiceNow Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_servicenow_link} |ServiceNow: {EVENT.TAGS.__zbx_servicenow_number} | |
ROW |19 |4 |Zammad | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Zammad = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Zammad.params = params;&eol; if (typeof Zammad.params.url === 'string') {&eol; if (!Zammad.params.url.endsWith('/')) {&eol; Zammad.params.url += '/';&eol; }&eol; }&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'access_token'].forEach(function (field) {&eol; if (typeof Zammad.params !== 'object' &pipe;&pipe; typeof Zammad.params[field] === 'undefined'&eol; &pipe;&pipe; Zammad.params[field] === '' ) {&eol; throw 'Required param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Zammad.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof Zammad.HTTPProxy === 'string' && Zammad.HTTPProxy.trim() !== '') {&eol; request.SetProxy(Zammad.HTTPProxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Token token=' + Zammad.params.access_token);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Zammad Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Zammad Webhook ] Received response with status code ' + request.Status() + ': ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Zammad Webhook ] Failed to parse response received from Zammad');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; setTicketTags: function(tags, ticket_id) {&eol; try {&eol; var tags_json = JSON.parse(tags),&eol; result;&eol;&eol; for (var i in tags_json) {&eol; result = Zammad.request('get',&eol; '/api/v1/tags/add?object=Ticket&o_id=' + ticket_id +&eol; '&item=' + tags_json[i].tag);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; result.status != 200) {&eol; Zabbix.Log(4, '[ Zammad Webhook ] Cannot add ticket tag:' + tags_json[i].tag);&eol; }&eol; }&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Zammad Webhook ] Failed to add ticket tags:' + error);&eol; }&eol;&eol; return;&eol; },&eol;&eol; createTicket: function(subject, message, priority) {&eol; var data = {&eol; title: subject,&eol; group: 'Users',&eol; article: {&eol; subject: subject,&eol; body: message,&eol; type: 'note',&eol; internal: false&eol; },&eol; customer: Zammad.params.customer&eol; },&eol; result;&eol;&eol; if (priority) {&eol; data.priority_id = priority;&eol; }&eol;&eol; result = Zammad.request('post', 'api/v1/tickets', data);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Zammad ticket. Check debug log for more information.';&eol; }&eol;&eol; return result.response.id;&eol; },&eol;&eol; updateTicket: function(subject, message) {&eol; var data = {&eol; ticket_id: Zammad.params.ticket_id,&eol; subject: subject,&eol; body: message &pipe;&pipe; '',&eol; type: 'note',&eol; internal: false&eol; };&eol;&eol; result = Zammad.request('post', 'api/v1/ticket_articles', data);&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot update Zammad ticket. Check debug log for more information.';&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; params_zammad = {},&eol; params_update = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'customer',&eol; 'event_source', 'event_value',&eol; 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: null, color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('zammad_')) {&eol; params_zammad[key.substring(7)] = params[key].trim();&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; params_update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; if (params.event_source === '0'&eol; && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0'&eol; && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.zammad_ticket_id)) &pipe;&pipe; parseInt(params.zammad_ticket_id) < 1 )) {&eol; throw 'Incorrect "zammad_ticket_id" parameter given: ' + params.zammad_ticket_id +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name];&eol; priority = priority && priority.trim() &pipe;&pipe; severities[7].name;&eol;&eol; Zammad.setParams(params_zammad);&eol; Zammad.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create ticket for non trigger-based events.&eol; if (params.event_source !== '0'&eol; && params.event_value !== '0') {&eol; Zammad.createTicket(params.alert_subject, params.alert_message, priority, params.event_tags);&eol; }&eol; // Create ticket for trigger-based events.&eol; else if (params.event_value === '1' && params_update.status === '0') {&eol; var ticket_id = Zammad.createTicket(params.alert_subject,&eol; params.alert_subject + '\n' + params.alert_message + '\n' +&eol; params.zabbix_url + (params.zabbix_url.endsWith('/') ? '' : '/') +&eol; 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id + '\n',&eol; priority);&eol;&eol; result.tags.__zbx_zammad_ticket_id = ticket_id;&eol; result.tags.__zbx_zammad_ticketlink = params.zammad_url +&eol; (params.zammad_url.endsWith('/') ? '' : '/') + '#ticket/zoom/' + ticket_id;&eol;&eol; if (Zammad.params.enable_tags.toLowerCase() === 'true') {&eol; Zammad.setTicketTags(params.event_tags, ticket_id);&eol; }&eol; }&eol; // Update created ticket for trigger-based event.&eol; else {&eol; Zammad.updateTicket(params.alert_subject, params.alert_message);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Zammad Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_zammad_ticketlink} |Zammad: ticket #{EVENT.TAGS.__zbx_zammad_ticket_id} | |
diff --git a/create/src/templates.tmpl b/create/src/templates.tmpl
index 26419476bed..acf949063cb 100644
--- a/create/src/templates.tmpl
+++ b/create/src/templates.tmpl
@@ -19,7 +19,7 @@
TABLE |hosts
FIELDS|hostid|proxy_hostid|host |status|ipmi_authtype|ipmi_privilege|ipmi_username|ipmi_password|name |flags|templateid|description |tls_connect|tls_accept|tls_issuer|tls_subject|tls_psk_identity|tls_psk|proxy_address|auto_compress|discover|
-ROW |10001 |NULL |Template OS Linux by Zabbix agent |3 |-1 |2 | | |Template OS Linux by Zabbix agent |0 |NULL |Official Linux template. Requires agent of Zabbix 3.0.14, 3.4.5 and 4.0.0 or newer.&eol;&eol;Known Issues:&eol;&eol; Description: Network discovery. Zabbix agent as of 4.2 doesn't support items such as net.if.status, net.if.speed.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10001 |NULL |Template OS Linux by Zabbix agent |3 |-1 |2 | | |Template OS Linux by Zabbix agent |0 |NULL |Official Linux template. Requires agent of Zabbix 3.0.14, 3.4.5 and 4.0.0 or newer.&eol;&eol;Known Issues:&eol;&eol; Description: Network discovery. Zabbix agent as of 4.2 doesn't support items such as net.if.status, net.if.speed.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
ROW |10047 |NULL |Template App Zabbix Server |3 |-1 |2 | | |Template App Zabbix Server |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10048 |NULL |Template App Zabbix Proxy |3 |-1 |2 | | |Template App Zabbix Proxy |0 |NULL | |1 |1 | | | | | |1 |0 |
ROW |10050 |NULL |Template Module Zabbix agent |3 |-1 |2 | | |Template Module Zabbix agent |0 |NULL |Use this template for agents reachable from Zabbix server/proxy (passive mode).&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
@@ -29,7 +29,7 @@ ROW |10076 |NULL |Template OS AIX
ROW |10077 |NULL |Template OS HP-UX |3 |-1 |2 | | |Template OS HP-UX |0 |NULL | |1 |1 | | | | | |1 |0 |
ROW |10078 |NULL |Template OS Solaris |3 |-1 |2 | | |Template OS Solaris |0 |NULL | |1 |1 | | | | | |1 |0 |
ROW |10079 |NULL |Template OS Mac OS X |3 |-1 |2 | | |Template OS Mac OS X |0 |NULL | |1 |1 | | | | | |1 |0 |
-ROW |10081 |NULL |Template OS Windows by Zabbix agent |3 |-1 |2 | | |Template OS Windows by Zabbix agent |0 |NULL |Official Windows template. Requires agent of Zabbix 4.4 and newer.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387224-discussion-thread-for-official-zabbix-template-for-windows&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10081 |NULL |Template OS Windows by Zabbix agent |3 |-1 |2 | | |Template OS Windows by Zabbix agent |0 |NULL |Official Windows template. Requires agent of Zabbix 4.4 and newer.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387224-discussion-thread-for-official-zabbix-template-for-windows&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
ROW |10084 |NULL |Zabbix server |0 |-1 |2 | | |Zabbix server |0 |NULL | |1 |1 | | | | | |1 |0 |
ROW |10093 |NULL |Template App FTP Service |3 |-1 |2 | | |Template App FTP Service |0 |NULL | |1 |1 | | | | | |1 |0 |
ROW |10094 |NULL |Template App HTTP Service |3 |-1 |2 | | |Template App HTTP Service |0 |NULL | |1 |1 | | | | | |1 |0 |
@@ -55,19 +55,19 @@ ROW |10186 |NULL |Template Module ICMP Ping
ROW |10188 |NULL |Template Module Interfaces Simple SNMP |3 |-1 |2 | | |Template Module Interfaces Simple SNMP |0 |NULL |Template Module Interfaces Simple (no ifXTable). This is the exact copy of Template Module Interfaces template with the exception that metrics from ifXTable are replaced with ifTable counters where possible. Use this template with devices where IF-MIB::ifXtable is not available. If supported by the host - use Template Module Interfaces template instead.&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: 32bit counters are used in this template (since there is no ifXtable available). If busy interfaces return incorrect bits sent/received - set update interval to 1m or less.&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10190 |NULL |Template Module Interfaces SNMP |3 |-1 |2 | | |Template Module Interfaces SNMP |0 |NULL |Template Module Interfaces&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10192 |NULL |Template Module Interfaces Windows SNMP |3 |-1 |2 | | |Template Module Interfaces Windows SNMP |0 |NULL |Template Interfaces Windows&eol;&eol;MIBs used:&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: 32bit counters are used in this template (since 64bit are not supported by Windows OS). If busy interfaces return incorrect bits sent/received - set update interval to 1m or less.&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
-ROW |10204 |NULL |Template Module Generic SNMP |3 |-1 |2 | | |Template Module Generic SNMP |0 |NULL |Template Module Generic&eol;&eol;MIBs used:&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
+ROW |10204 |NULL |Template Module Generic SNMP |3 |-1 |2 | | |Template Module Generic SNMP |0 |NULL |Template Module Generic&eol;&eol;MIBs used:&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
ROW |10207 |NULL |Template Net Alcatel Timetra TiMOS SNMP |3 |-1 |2 | | |Template Net Alcatel Timetra TiMOS SNMP |0 |NULL |Template Net Alcatel Timetra TiMOS&eol;&eol;MIBs used:&eol;TIMETRA-CHASSIS-MIB&eol;TIMETRA-SYSTEM-MIB&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10208 |NULL |Template Net Brocade FC SNMP |3 |-1 |2 | | |Template Net Brocade FC SNMP |0 |NULL |Template Net Brocade FC&eol;&eol;MIBs used:&eol;SW-MIB&eol;&eol;Known Issues:&eol;&eol; Description: no IF-MIB::ifAlias is available&eol; Version: v6.3.1c, v7.0.0c, v7.4.1c&eol; Device: all&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10209 |NULL |Template Module Brocade_Foundry Performance SNMP |3 |-1 |2 | | |Template Module Brocade_Foundry Performance SNMP |0 |NULL |Template Module Brocade_Foundry Performance&eol;&eol;MIBs used:&eol;FOUNDRY-SN-AGENT-MIB&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10210 |NULL |Template Net Brocade_Foundry Nonstackable SNMP |3 |-1 |2 | | |Template Net Brocade_Foundry Nonstackable SNMP |0 |NULL |Template Net Brocade_Foundry Nonstackable&eol;&eol;MIBs used:&eol;FOUNDRY-SN-AGENT-MIB&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10211 |NULL |Template Net Brocade_Foundry Stackable SNMP |3 |-1 |2 | | |Template Net Brocade_Foundry Stackable SNMP |0 |NULL |Template Brocade_Foundry Stackable&eol;&eol;MIBs used:&eol;FOUNDRY-SN-AGENT-MIB&eol;FOUNDRY-SN-STACKING-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Correct fan(returns fan status as 'other(1)' and temperature (returns 0) for the non-master Switches are not available in SNMP&eol; Version: Version 08.0.40b and above&eol; Device: ICX 7750 in stack&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
-ROW |10212 |NULL |Template Module Cisco CISCO-MEMORY-POOL-MIB SNMP |3 |-1 |2 | | |Template Module Cisco CISCO-MEMORY-POOL-MIB SNMP |0 |NULL |Template Cisco CISCO-MEMORY-POOL-MIB&eol;&eol;MIBs used:&eol;CISCO-MEMORY-POOL-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10213 |NULL |Template Module Cisco CISCO-PROCESS-MIB SNMP |3 |-1 |2 | | |Template Module Cisco CISCO-PROCESS-MIB SNMP |0 |NULL |Template Cisco CISCO-PROCESS-MIB&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10215 |NULL |Template Module Cisco OLD-CISCO-CPU-MIB SNMP |3 |-1 |2 | | |Template Module Cisco OLD-CISCO-CPU-MIB SNMP |0 |NULL |Template Cisco OLD-CISCO-CPU-MIB&eol;&eol;MIBs used:&eol;OLD-CISCO-CPU-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10216 |NULL |Template Module Cisco Inventory SNMP |3 |-1 |2 | | |Template Module Cisco Inventory SNMP |0 |NULL |Template Cisco Inventory&eol;&eol;MIBs used:&eol;ENTITY-MIB&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10217 |NULL |Template Module Cisco CISCO-ENVMON-MIB SNMP |3 |-1 |2 | | |Template Module Cisco CISCO-ENVMON-MIB SNMP |0 |NULL |Template Cisco CISCO-ENVMON-MIB&eol;&eol;MIBs used:&eol;CISCO-ENVMON-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10218 |NULL |Template Net Cisco IOS SNMP |3 |-1 |2 | | |Template Net Cisco IOS SNMP |0 |NULL |Template Cisco IOS Software releases 12.2(3.5) or later&eol;&eol;Known Issues:&eol;&eol; Description: no if(in&pipe;out)(Errors&pipe;Discards) are available for vlan ifType&eol; Version: IOS for example: 12.1(22)EA11, 15.4(3)M2&eol; Device: C2911, C7600&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10220 |NULL |Template Net Cisco IOS prior to 12.0_3_T SNMP |3 |-1 |2 | | |Template Net Cisco IOS prior to 12.0_3_T SNMP |0 |NULL |Cisco IOS Software releases prior to 12.0(3)T&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10212 |NULL |Template Module Cisco CISCO-MEMORY-POOL-MIB SNMP |3 |-1 |2 | | |Template Module Cisco CISCO-MEMORY-POOL-MIB SNMP |0 |NULL |Template Cisco CISCO-MEMORY-POOL-MIB&eol;&eol;MIBs used:&eol;CISCO-MEMORY-POOL-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10213 |NULL |Template Module Cisco CISCO-PROCESS-MIB SNMP |3 |-1 |2 | | |Template Module Cisco CISCO-PROCESS-MIB SNMP |0 |NULL |Template Cisco CISCO-PROCESS-MIB&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10215 |NULL |Template Module Cisco OLD-CISCO-CPU-MIB SNMP |3 |-1 |2 | | |Template Module Cisco OLD-CISCO-CPU-MIB SNMP |0 |NULL |Template Cisco OLD-CISCO-CPU-MIB&eol;&eol;MIBs used:&eol;OLD-CISCO-CPU-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10216 |NULL |Template Module Cisco Inventory SNMP |3 |-1 |2 | | |Template Module Cisco Inventory SNMP |0 |NULL |Template Cisco Inventory&eol;&eol;MIBs used:&eol;ENTITY-MIB&eol;SNMPv2-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10217 |NULL |Template Module Cisco CISCO-ENVMON-MIB SNMP |3 |-1 |2 | | |Template Module Cisco CISCO-ENVMON-MIB SNMP |0 |NULL |Template Cisco CISCO-ENVMON-MIB&eol;&eol;MIBs used:&eol;CISCO-ENVMON-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10218 |NULL |Template Net Cisco IOS SNMP |3 |-1 |2 | | |Template Net Cisco IOS SNMP |0 |NULL |Template Cisco IOS Software releases 12.2(3.5) or later&eol;&eol;Known Issues:&eol;&eol; Description: no if(in&pipe;out)(Errors&pipe;Discards) are available for vlan ifType&eol; Version: IOS for example: 12.1(22)EA11, 15.4(3)M2&eol; Device: C2911, C7600&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10220 |NULL |Template Net Cisco IOS prior to 12.0_3_T SNMP |3 |-1 |2 | | |Template Net Cisco IOS prior to 12.0_3_T SNMP |0 |NULL |Cisco IOS Software releases prior to 12.0(3)T&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
ROW |10221 |NULL |Template Net Dell Force S-Series SNMP |3 |-1 |2 | | |Template Net Dell Force S-Series SNMP |0 |NULL |Template Dell Force S-Series&eol;&eol;MIBs used:&eol;F10-S-SERIES-CHASSIS-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10222 |NULL |Template Net D-Link DES 7200 SNMP |3 |-1 |2 | | |Template Net D-Link DES 7200 SNMP |0 |NULL |Template D-Link DES 7200&eol;&eol;MIBs used:&eol;MY-PROCESS-MIB&eol;SNMPv2-MIB&eol;MY-MEMORY-MIB&eol;ENTITY-MIB&eol;MY-SYSTEM-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10223 |NULL |Template Net D-Link DES_DGS Switch SNMP |3 |-1 |2 | | |Template Net D-Link DES_DGS Switch SNMP |0 |NULL |Template D-Link DES_DGS Switch&eol;&eol;MIBs used:&eol;DLINK-AGENT-MIB&eol;SNMPv2-MIB&eol;ENTITY-MIB&eol;EQUIPMENT-MIB&eol;&eol;Known Issues:&eol;&eol; Description: D-Link reports missing PSU as fail(4)&eol; Version: Firmware: 1.73R008,hardware revision: B1&eol; Device: DGS-3420-26SC Gigabit Ethernet Switch&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
@@ -85,9 +85,9 @@ ROW |10237 |NULL |Template Net Ubiquiti AirOS SNMP
ROW |10248 |NULL |Template OS Linux SNMP |3 |-1 |2 | | |Template OS Linux SNMP |0 |NULL |Template OS Linux&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10249 |NULL |Template OS Windows SNMP |3 |-1 |2 | | |Template OS Windows SNMP |0 |NULL |Official Windows SNMP template. Requires Zabbix server 4.0.14, 4.2.8, 4.4.0 or newer (JSONPath function avg() used with types autoconversion).&eol;&eol;&eol;Known Issues:&eol;&eol; Description: Doesn't support In/Out 64 bit counters even though IfxTable is present:&eol;Currently, Windows gets it’s interface status from MIB-2. Since these 64bit SNMP counters (ifHCInOctets, ifHCOutOctets, etc.) are defined as an extension to IF-MIB, Microsoft has not implemented it.&eol;https://social.technet.microsoft.com/Forums/windowsserver/en-US/07b62ff0-94f6-40ca-a99d-d129c1b33d70/windows-2008-r2-snmp-64bit-counters-support?forum=winservergen&eol;&eol; Version: Win2008, Win2012R2.&eol;&eol; Description: Doesn't support ifXTable at all&eol; Version: WindowsXP&eol;&eol; Description: EtherLike MIB is not supported&eol; Version: *&eol; Device: *&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10250 |NULL |Template Net HP Enterprise Switch SNMP |3 |-1 |2 | | |Template Net HP Enterprise Switch SNMP |0 |NULL |Template Net HP Enterprise Switch&eol;&eol;MIBs used:&eol;SEMI-MIB&eol;NETSWITCH-MIB&eol;HP-ICF-CHASSIS&eol;ENTITY-SENSORS-MIB&eol;ENTITY-MIB&eol;STATISTICS-MIB&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
-ROW |10251 |NULL |Template Net Mellanox SNMP |3 |-1 |2 | | |Template Net Mellanox SNMP |0 |NULL |The updated template for monitoring the Mellanox network switches over SNMP agent. All items collected in one template without any linked templates.&eol;&eol;MIBs used:&eol;HOST-RESOURCES-MIB&eol;SNMPv2-MIB&eol;ENTITY-SENSORS-MIB&eol;ENTITY-STATE-MIB&eol;ENTITY-MIB&eol;IF-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10252 |NULL |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMP|3 |-1 |2 | | |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMP|0 |NULL |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10253 |NULL |Template Net Cisco IOS versions 12.0_3_T-12.2_3.5 SNMP |3 |-1 |2 | | |Template Net Cisco IOS versions 12.0_3_T-12.2_3.5 SNMP |0 |NULL |Cisco IOS Software releases later to 12.0(3)T and prior to 12.2(3.5)&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10251 |NULL |Template Net Mellanox SNMP |3 |-1 |2 | | |Template Net Mellanox SNMP |0 |NULL |The updated template for monitoring the Mellanox network switches over SNMP agent. All items collected in one template without any linked templates.&eol;&eol;MIBs used:&eol;HOST-RESOURCES-MIB&eol;SNMPv2-MIB&eol;ENTITY-SENSORS-MIB&eol;ENTITY-STATE-MIB&eol;ENTITY-MIB&eol;IF-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10252 |NULL |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMP|3 |-1 |2 | | |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMP|0 |NULL |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10253 |NULL |Template Net Cisco IOS versions 12.0_3_T-12.2_3.5 SNMP |3 |-1 |2 | | |Template Net Cisco IOS versions 12.0_3_T-12.2_3.5 SNMP |0 |NULL |Cisco IOS Software releases later to 12.0(3)T and prior to 12.2(3.5)&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
ROW |10254 |NULL |Template Net Arista SNMP |3 |-1 |2 | | |Template Net Arista SNMP |0 |NULL |Template Net Arista&eol;&eol;MIBs used:&eol;ENTITY-SENSORS-MIB&eol;ENTITY-STATE-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10255 |NULL |Template Server Dell iDRAC SNMP |3 |-1 |2 | | |Template Server Dell iDRAC SNMP |0 |NULL |Template Server iDRAC&eol;&eol;MIBs used:&eol;IDRAC-MIB-SMIv2&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10256 |NULL |Template Server HP iLO SNMP |3 |-1 |2 | | |Template Server HP iLO SNMP |0 |NULL |Template Server HP iLO&eol;&eol;MIBs used:&eol;CPQSINFO-MIB&eol;CPQHLTH-MIB&eol;CPQIDA-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
@@ -105,34 +105,34 @@ ROW |10268 |NULL |Template Module Linux memory SNMP
ROW |10269 |NULL |Template Module Linux block devices SNMP |3 |-1 |2 | | |Template Module Linux block devices SNMP |0 |NULL |MIBs used:&eol;UCD-DISKIO-MIB&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10270 |NULL |Template Module Linux CPU SNMP |3 |-1 |2 | | |Template Module Linux CPU SNMP |0 |NULL |MIBs used:&eol;HOST-RESOURCES-MIB&eol;UCD-SNMP-MIB&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10271 |NULL |Template Module Linux filesystems SNMP |3 |-1 |2 | | |Template Module Linux filesystems SNMP |0 |NULL |MIBs used:&eol;HOST-RESOURCES-MIB&eol;UCD-SNMP-MIB&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
-ROW |10272 |NULL |Template Module Linux CPU by Zabbix agent |3 |-1 |2 | | |Template Module Linux CPU by Zabbix agent |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10273 |NULL |Template Module Linux filesystems by Zabbix agent |3 |-1 |2 | | |Template Module Linux filesystems by Zabbix agent |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10274 |NULL |Template Module Linux memory by Zabbix agent |3 |-1 |2 | | |Template Module Linux memory by Zabbix agent |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10275 |NULL |Template Module Linux block devices by Zabbix agent |3 |-1 |2 | | |Template Module Linux block devices by Zabbix agent |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10276 |NULL |Template Module Linux network interfaces by Zabbix agent |3 |-1 |2 | | |Template Module Linux network interfaces by Zabbix agent |0 |NULL |Known Issues:&eol;&eol; Description: High interface utilization trigger is removed since currently it is not possible to retrieve interface speed to determine the max bandwidth.&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10277 |NULL |Template Module Linux generic by Zabbix agent |3 |-1 |2 | | |Template Module Linux generic by Zabbix agent |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10278 |NULL |Template Module Linux CPU by Zabbix agent active |3 |-1 |2 | | |Template Module Linux CPU by Zabbix agent active |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10279 |NULL |Template Module Linux filesystems by Zabbix agent active |3 |-1 |2 | | |Template Module Linux filesystems by Zabbix agent active |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10280 |NULL |Template Module Linux memory by Zabbix agent active |3 |-1 |2 | | |Template Module Linux memory by Zabbix agent active |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10281 |NULL |Template Module Linux block devices by Zabbix agent active |3 |-1 |2 | | |Template Module Linux block devices by Zabbix agent active |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10282 |NULL |Template Module Linux network interfaces by Zabbix agent active |3 |-1 |2 | | |Template Module Linux network interfaces by Zabbix agent active |0 |NULL |Known Issues:&eol;&eol; Description: High interface utilization trigger is removed since currently it is not possible to retrieve interface speed to determine the max bandwidth.&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10283 |NULL |Template Module Linux generic by Zabbix agent active |3 |-1 |2 | | |Template Module Linux generic by Zabbix agent active |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10284 |NULL |Template OS Linux by Zabbix agent active |3 |-1 |2 | | |Template OS Linux by Zabbix agent active |0 |NULL |Official Linux template. Requires agent of Zabbix 3.0.14, 3.4.5 and 4.0.0 or newer.&eol;&eol;Known Issues:&eol;&eol; Description: Network discovery. Zabbix agent as of 4.2 doesn't support items such as net.if.status, net.if.speed.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10285 |NULL |Template OS Linux by Prom |3 |-1 |2 | | |Template OS Linux by Prom |0 |NULL |Official Linux template using node exporter.&eol;&eol;Known Issues:&eol;&eol; Description: node_exporter v0.16.0 renamed many metrics. CPU utilization for 'guest' and 'guest_nice' metrics are not supported in this template with node_exporter < 0.16. Disk IO metrics are not supported. Other metrics provided as 'best effort'. &eol; See https://github.com/prometheus/node_exporter/releases/tag/v0.16.0 for details.&eol; Version: below 0.16.0&eol;&eol; Description: metric node_network_info with label 'device' cannot be found, so network discovery is not possible.&eol; Version: below 0.18&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10286 |NULL |Template Module Windows CPU by Zabbix agent |3 |-1 |2 | | |Template Module Windows CPU by Zabbix agent |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10287 |NULL |Template Module Windows memory by Zabbix agent |3 |-1 |2 | | |Template Module Windows memory by Zabbix agent |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10288 |NULL |Template Module Windows filesystems by Zabbix agent |3 |-1 |2 | | |Template Module Windows filesystems by Zabbix agent |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10289 |NULL |Template Module Windows physical disks by Zabbix agent |3 |-1 |2 | | |Template Module Windows physical disks by Zabbix agent |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10290 |NULL |Template Module Windows generic by Zabbix agent |3 |-1 |2 | | |Template Module Windows generic by Zabbix agent |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10291 |NULL |Template Module Windows network by Zabbix agent |3 |-1 |2 | | |Template Module Windows network by Zabbix agent |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10272 |NULL |Template Module Linux CPU by Zabbix agent |3 |-1 |2 | | |Template Module Linux CPU by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10273 |NULL |Template Module Linux filesystems by Zabbix agent |3 |-1 |2 | | |Template Module Linux filesystems by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10274 |NULL |Template Module Linux memory by Zabbix agent |3 |-1 |2 | | |Template Module Linux memory by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10275 |NULL |Template Module Linux block devices by Zabbix agent |3 |-1 |2 | | |Template Module Linux block devices by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10276 |NULL |Template Module Linux network interfaces by Zabbix agent |3 |-1 |2 | | |Template Module Linux network interfaces by Zabbix agent |0 |NULL |Known Issues:&eol;&eol; Description: High interface utilization trigger is removed since currently it is not possible to retrieve interface speed to determine the max bandwidth.&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10277 |NULL |Template Module Linux generic by Zabbix agent |3 |-1 |2 | | |Template Module Linux generic by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10278 |NULL |Template Module Linux CPU by Zabbix agent active |3 |-1 |2 | | |Template Module Linux CPU by Zabbix agent active |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10279 |NULL |Template Module Linux filesystems by Zabbix agent active |3 |-1 |2 | | |Template Module Linux filesystems by Zabbix agent active |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10280 |NULL |Template Module Linux memory by Zabbix agent active |3 |-1 |2 | | |Template Module Linux memory by Zabbix agent active |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10281 |NULL |Template Module Linux block devices by Zabbix agent active |3 |-1 |2 | | |Template Module Linux block devices by Zabbix agent active |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10282 |NULL |Template Module Linux network interfaces by Zabbix agent active |3 |-1 |2 | | |Template Module Linux network interfaces by Zabbix agent active |0 |NULL |Known Issues:&eol;&eol; Description: High interface utilization trigger is removed since currently it is not possible to retrieve interface speed to determine the max bandwidth.&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10283 |NULL |Template Module Linux generic by Zabbix agent active |3 |-1 |2 | | |Template Module Linux generic by Zabbix agent active |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10284 |NULL |Template OS Linux by Zabbix agent active |3 |-1 |2 | | |Template OS Linux by Zabbix agent active |0 |NULL |Official Linux template. Requires agent of Zabbix 3.0.14, 3.4.5 and 4.0.0 or newer.&eol;&eol;Known Issues:&eol;&eol; Description: Network discovery. Zabbix agent as of 4.2 doesn't support items such as net.if.status, net.if.speed.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10285 |NULL |Template OS Linux by Prom |3 |-1 |2 | | |Template OS Linux by Prom |0 |NULL |Official Linux template using node exporter.&eol;&eol;Known Issues:&eol;&eol; Description: node_exporter v0.16.0 renamed many metrics. CPU utilization for 'guest' and 'guest_nice' metrics are not supported in this template with node_exporter < 0.16. Disk IO metrics are not supported. Other metrics provided as 'best effort'. &eol; See https://github.com/prometheus/node_exporter/releases/tag/v0.16.0 for details.&eol; Version: below 0.16.0&eol;&eol; Description: metric node_network_info with label 'device' cannot be found, so network discovery is not possible.&eol; Version: below 0.18&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10286 |NULL |Template Module Windows CPU by Zabbix agent |3 |-1 |2 | | |Template Module Windows CPU by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10287 |NULL |Template Module Windows memory by Zabbix agent |3 |-1 |2 | | |Template Module Windows memory by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10288 |NULL |Template Module Windows filesystems by Zabbix agent |3 |-1 |2 | | |Template Module Windows filesystems by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10289 |NULL |Template Module Windows physical disks by Zabbix agent |3 |-1 |2 | | |Template Module Windows physical disks by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10290 |NULL |Template Module Windows generic by Zabbix agent |3 |-1 |2 | | |Template Module Windows generic by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10291 |NULL |Template Module Windows network by Zabbix agent |3 |-1 |2 | | |Template Module Windows network by Zabbix agent |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
ROW |10292 |NULL |Template Module Zabbix agent active |3 |-1 |2 | | |Template Module Zabbix agent active |0 |NULL |Use this template instead of 'Template Module Zabbix agent' for agents running in active mode only.&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
-ROW |10293 |NULL |Template Module Windows CPU by Zabbix agent active |3 |-1 |2 | | |Template Module Windows CPU by Zabbix agent active |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10294 |NULL |Template Module Windows memory by Zabbix agent active |3 |-1 |2 | | |Template Module Windows memory by Zabbix agent active |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10295 |NULL |Template Module Windows filesystems by Zabbix agent active |3 |-1 |2 | | |Template Module Windows filesystems by Zabbix agent active |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10296 |NULL |Template Module Windows physical disks by Zabbix agent active |3 |-1 |2 | | |Template Module Windows physical disks by Zabbix agent active |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10297 |NULL |Template Module Windows generic by Zabbix agent active |3 |-1 |2 | | |Template Module Windows generic by Zabbix agent active |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10298 |NULL |Template Module Windows network by Zabbix agent active |3 |-1 |2 | | |Template Module Windows network by Zabbix agent active |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10299 |NULL |Template OS Windows by Zabbix agent active |3 |-1 |2 | | |Template OS Windows by Zabbix agent active |0 |NULL |Official Windows template. Requires agent of Zabbix 4.4 and newer.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387224-discussion-thread-for-official-zabbix-template-for-windows&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10293 |NULL |Template Module Windows CPU by Zabbix agent active |3 |-1 |2 | | |Template Module Windows CPU by Zabbix agent active |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10294 |NULL |Template Module Windows memory by Zabbix agent active |3 |-1 |2 | | |Template Module Windows memory by Zabbix agent active |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10295 |NULL |Template Module Windows filesystems by Zabbix agent active |3 |-1 |2 | | |Template Module Windows filesystems by Zabbix agent active |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10296 |NULL |Template Module Windows physical disks by Zabbix agent active |3 |-1 |2 | | |Template Module Windows physical disks by Zabbix agent active |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10297 |NULL |Template Module Windows generic by Zabbix agent active |3 |-1 |2 | | |Template Module Windows generic by Zabbix agent active |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10298 |NULL |Template Module Windows network by Zabbix agent active |3 |-1 |2 | | |Template Module Windows network by Zabbix agent active |0 |NULL |Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10299 |NULL |Template OS Windows by Zabbix agent active |3 |-1 |2 | | |Template OS Windows by Zabbix agent active |0 |NULL |Official Windows template. Requires agent of Zabbix 4.4 and newer.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387224-discussion-thread-for-official-zabbix-template-for-windows&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
ROW |10300 |NULL |Template App RabbitMQ cluster by Zabbix agent |3 |-1 |2 | | |Template App RabbitMQ cluster by Zabbix agent |0 |NULL |Get cluster metrics from RabbitMQ management plugin provided an HTTP-based API using Zabbix agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
ROW |10301 |NULL |Template App RabbitMQ node by Zabbix agent |3 |-1 |2 | | |Template App RabbitMQ node by Zabbix agent |0 |NULL |Get node metrics from RabbitMQ management plugin provided an HTTP-based API using Zabbix agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
ROW |10302 |NULL |Template App RabbitMQ cluster by HTTP |3 |-1 |2 | | |Template App RabbitMQ cluster by HTTP |0 |NULL |Get cluster metrics from RabbitMQ management plugin provided an HTTP-based API using HTTP agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq&eol;&eol;Template tooling version used: 0.34 |1 |1 | | | | | |1 |0 |
@@ -144,11 +144,11 @@ ROW |10307 |NULL |Template Module HOST-RESOURCES-MIB storage SNMP
ROW |10308 |NULL |Template App HAProxy by Zabbix agent |3 |-1 |2 | | |Template App HAProxy by Zabbix agent |0 |NULL |Get metrics from status page using Zabbix agent&eol;https://www.haproxy.com/blog/exploring-the-haproxy-stats-page/.&eol;Example configuration of HAProxy:&eol; frontend stats&eol; bind *:8404&eol; stats enable&eol; stats uri /stats&eol; stats refresh 10s&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/393527-discussion-thread-for-official-zabbix-template-haproxy&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
ROW |10309 |NULL |Template App HAProxy by HTTP |3 |-1 |2 | | |Template App HAProxy by HTTP |0 |NULL |Get metrics from status page using HTTP agent&eol;https://www.haproxy.com/blog/exploring-the-haproxy-stats-page/.&eol;Example configuration of HAProxy:&eol; frontend stats&eol; bind *:8404&eol; stats enable&eol; stats uri /stats&eol; stats refresh 10s&eol; #stats auth Username:Password # Authentication credentials&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/393527-discussion-thread-for-official-zabbix-template-haproxy&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
ROW |10310 |NULL |Template DB Redis |3 |-1 |2 | | |Template DB Redis |0 |NULL |Get Redis metrics from plugin for the New Zabbix Agent (zabbix-agent2).&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/389050-discussion-thread-for-official-zabbix-template-redis&eol;&eol;Template tooling version used: 0.33 |1 |1 | | | | | |1 |0 |
-ROW |10314 |NULL |Template Module Windows services by Zabbix agent |3 |-1 |2 | | |Template Module Windows services by Zabbix agent |0 |NULL |Template Services OS Windows&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10315 |NULL |Template Module Windows services by Zabbix agent active |3 |-1 |2 | | |Template Module Windows services by Zabbix agent active |0 |NULL |Template Services OS Windows&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10314 |NULL |Template Module Windows services by Zabbix agent |3 |-1 |2 | | |Template Module Windows services by Zabbix agent |0 |NULL |Template Services OS Windows&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10315 |NULL |Template Module Windows services by Zabbix agent active |3 |-1 |2 | | |Template Module Windows services by Zabbix agent active |0 |NULL |Template Services OS Windows&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
ROW |10316 |NULL |Template DB MySQL by Zabbix agent |3 |-1 |2 | | |Template DB MySQL by Zabbix agent |0 |NULL |Requirements for template operation:&eol;1.Install Zabbix agent and MySQL client.&eol;2.Copy template_db_mysql.conf into folder with Zabbix agent configuration (/etc/zabbix/zabbix_agentd.d/ by default). Don't forget to restart zabbix-agent. &eol;3.Create MySQL user for monitoring. For example:&eol;CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '<password>';&eol;GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%';&eol;For more information read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html , please. &eol;4.Create .my.cnf in home directory of Zabbix agent for Linux (/var/lib/zabbix by default ) or my.cnf in c:\ for Windows. For example:&eol;[client]&eol;user='zbx_monitor'&eol;password='<password>'&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10317 |NULL |Template DB MySQL by ODBC |3 |-1 |2 | | |Template DB MySQL by ODBC |0 |NULL |Requirements for template operation:&eol;1. Create MySQL user for monitoring. For example:&eol;CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '<password>';&eol;GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%';&eol;For more information read the MYSQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html , please. &eol;2. Set the user name and password in host macros ({$MYSQL.USER} and {$MYSQL.PASSWORD}).&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10318 |NULL |Template App Docker |3 |-1 |2 | | |Template App Docker |0 |NULL |Get Docker engine metrics from plugin for the New Zabbix Agent (zabbix-agent2).&eol;&eol;You can discuss this template or leave feedback on our forum &eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |0 |
+ROW |10318 |NULL |Template App Docker |3 |-1 |2 | | |Template App Docker |0 |NULL |Get Docker engine metrics from plugin for the New Zabbix Agent (zabbix-agent2).&eol;&eol;You can discuss this template or leave feedback on our forum &eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10319 |NULL |Template App Memcached |3 |-1 |2 | | |Template App Memcached |0 |NULL |Get Memcached metrics from plugin for the New Zabbix Agent (zabbix-agent2).&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/398623-discussion-thread-for-official-zabbix-template-memcached&eol;&eol;Template tooling version used: 0.35 |1 |1 | | | | | |1 |0 |
ROW |10320 |NULL |Template DB MySQL by Zabbix agent 2 |3 |-1 |2 | | |Template DB MySQL by Zabbix agent 2 |0 |NULL |Requirements for template operation:&eol;1. Create MySQL user for monitoring. For example:&eol;CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '<password>';&eol;GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%';&eol;For more information please read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html.&eol;2. Set in the {$MYSQL.DSN} macro the data source name of the MySQL instance either session name from Zabbix agent 2 configuration file or URI.&eol;Examples: MySQL1, tcp://localhost:3306, tcp://172.16.0.10, unix:/var/run/mysql.sock&eol;For more information about MySQL Unix socket file please read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/problems-with-mysql-sock.html.&eol;3. If you had set URI in the {$MYSQL.DSN}, please define the user name and password in host macros ({$MYSQL.USER} and {$MYSQL.PASSWORD}).&eol;Leave macros {$MYSQL.USER} and {$MYSQL.PASSWORD} empty if you use a session name. Set the user name and password in the Plugins.Mysql.<...> section of your Zabbix agent 2 configuration file.&eol;For more information about configuring the Zabbix MySQL plugin please read the documentation https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/src/go/plugins/mysql/README.md.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql&eol;&eol;Template tooling version used: 0.38|1 |1 | | | | | |1 |0 |
ROW |10321 |NULL |Template Server Chassis by IPMI |3 |-1 |2 | | |Template Server Chassis by IPMI |0 |NULL |Template for monitoring servers with BMC over IPMI that work without any external scripts. &eol;All metrics are collected at once, thanks to Zabbix's bulk data collection. The template is available starting from Zabbix version 5.0. &eol;It collects metrics by polling BMC remotely using an IPMI agent.&eol;&eol;&eol;Known Issues:&eol;&eol; Description: If the BMC has a sensor with an empty threshold value, we get the LLD error "Cannot create trigger...".&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/398023-discussion-thread-for-official-zabbix-template-ipmi&eol;&eol;Template tooling version used: 0.37 |1 |1 | | | | | |1 |0 |
@@ -199,18 +199,18 @@ ROW |10367 |NULL |Cisco Catalyst 3750V2-24PS SNMP
ROW |10368 |NULL |Cisco Catalyst 3750V2-24TS SNMP |3 |-1 |2 | | |Cisco Catalyst 3750V2-24TS SNMP |0 |NULL |Template Cisco Catalyst 3750V2-24TS&eol;&eol;MIBs used:&eol;CISCO-MEMORY-POOL-MIB&eol;IF-MIB&eol;EtherLike-MIB&eol;SNMPv2-MIB&eol;CISCO-PROCESS-MIB&eol;CISCO-ENVMON-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10369 |NULL |Cisco Catalyst 3750V2-48PS SNMP |3 |-1 |2 | | |Cisco Catalyst 3750V2-48PS SNMP |0 |NULL |Template Cisco Catalyst 3750V2-48PS&eol;&eol;MIBs used:&eol;CISCO-MEMORY-POOL-MIB&eol;IF-MIB&eol;EtherLike-MIB&eol;SNMPv2-MIB&eol;CISCO-PROCESS-MIB&eol;CISCO-ENVMON-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10370 |NULL |Cisco Catalyst 3750V2-48TS SNMP |3 |-1 |2 | | |Cisco Catalyst 3750V2-48TS SNMP |0 |NULL |Template Cisco Catalyst 3750V2-48TS&eol;&eol;MIBs used:&eol;CISCO-MEMORY-POOL-MIB&eol;IF-MIB&eol;EtherLike-MIB&eol;SNMPv2-MIB&eol;CISCO-PROCESS-MIB&eol;CISCO-ENVMON-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10371 |NULL |Template Power APC UPS SNMP |3 |-1 |2 | | |Template Power APC UPS SNMP |0 |NULL |Template Power APC UPS&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10371 |NULL |Template Power APC UPS SNMP |3 |-1 |2 | | |Template Power APC UPS SNMP |0 |NULL |Template Power APC UPS&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
ROW |10372 |NULL |Template SAN NetApp AFF A700 by HTTP |3 |-1 |2 | | |Template SAN NetApp AFF A700 by HTTP |0 |NULL |The template to monitor SAN NetApp AFF A700 cluster by Zabbix HTTP agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10373 |NULL |Template Power APC UPS Galaxy 3500 SNMP |3 |-1 |2 | | |Template Power APC UPS Galaxy 3500 SNMP |0 |NULL |Template Power APC UPS Galaxy 3500&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10374 |NULL |Template Power APC Smart-UPS 2200 RM SNMP |3 |-1 |2 | | |Template Power APC Smart-UPS 2200 RM SNMP |0 |NULL |Template Power APC Smart-UPS 2200 RM&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10375 |NULL |Template Power APC Smart-UPS 3000 XLM SNMP |3 |-1 |2 | | |Template Power APC Smart-UPS 3000 XLM SNMP |0 |NULL |Template Power APC Smart-UPS 3000 XLM&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10376 |NULL |Template Power APC Smart-UPS RT 1000 RM XL SNMP |3 |-1 |2 | | |Template Power APC Smart-UPS RT 1000 RM XL SNMP |0 |NULL |Template Power APC Smart-UPS RT 1000 RM XL&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10377 |NULL |Template Power APC Smart-UPS RT 1000 XL SNMP |3 |-1 |2 | | |Template Power APC Smart-UPS RT 1000 XL SNMP |0 |NULL |Template Power APC Smart-UPS RT 1000 XL&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10378 |NULL |Template Power APC Smart-UPS SRT 5000 SNMP |3 |-1 |2 | | |Template Power APC Smart-UPS SRT 5000 SNMP |0 |NULL |Template Power APC Smart-UPS SRT 5000&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10379 |NULL |Template Power APC Smart-UPS SRT 8000 SNMP |3 |-1 |2 | | |Template Power APC Smart-UPS SRT 8000 SNMP |0 |NULL |Template Power APC Smart-UPS SRT 8000&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10380 |NULL |Template Power APC UPS Symmetra LX SNMP |3 |-1 |2 | | |Template Power APC UPS Symmetra LX SNMP |0 |NULL |Template Power APC UPS Symmetra LX&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10381 |NULL |Template Power APC UPS Symmetra RM SNMP |3 |-1 |2 | | |Template Power APC UPS Symmetra RM SNMP |0 |NULL |Template Power APC UPS Symmetra RM&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10382 |NULL |Template Power APC UPS Symmetra RX SNMP |3 |-1 |2 | | |Template Power APC UPS Symmetra RX SNMP |0 |NULL |Template Power APC UPS Symmetra RX&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10373 |NULL |Template Power APC UPS Galaxy 3500 SNMP |3 |-1 |2 | | |Template Power APC UPS Galaxy 3500 SNMP |0 |NULL |Template Power APC UPS Galaxy 3500&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10374 |NULL |Template Power APC Smart-UPS 2200 RM SNMP |3 |-1 |2 | | |Template Power APC Smart-UPS 2200 RM SNMP |0 |NULL |Template Power APC Smart-UPS 2200 RM&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10375 |NULL |Template Power APC Smart-UPS 3000 XLM SNMP |3 |-1 |2 | | |Template Power APC Smart-UPS 3000 XLM SNMP |0 |NULL |Template Power APC Smart-UPS 3000 XLM&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10376 |NULL |Template Power APC Smart-UPS RT 1000 RM XL SNMP |3 |-1 |2 | | |Template Power APC Smart-UPS RT 1000 RM XL SNMP |0 |NULL |Template Power APC Smart-UPS RT 1000 RM XL&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10377 |NULL |Template Power APC Smart-UPS RT 1000 XL SNMP |3 |-1 |2 | | |Template Power APC Smart-UPS RT 1000 XL SNMP |0 |NULL |Template Power APC Smart-UPS RT 1000 XL&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10378 |NULL |Template Power APC Smart-UPS SRT 5000 SNMP |3 |-1 |2 | | |Template Power APC Smart-UPS SRT 5000 SNMP |0 |NULL |Template Power APC Smart-UPS SRT 5000&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10379 |NULL |Template Power APC Smart-UPS SRT 8000 SNMP |3 |-1 |2 | | |Template Power APC Smart-UPS SRT 8000 SNMP |0 |NULL |Template Power APC Smart-UPS SRT 8000&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10380 |NULL |Template Power APC UPS Symmetra LX SNMP |3 |-1 |2 | | |Template Power APC UPS Symmetra LX SNMP |0 |NULL |Template Power APC UPS Symmetra LX&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10381 |NULL |Template Power APC UPS Symmetra RM SNMP |3 |-1 |2 | | |Template Power APC UPS Symmetra RM SNMP |0 |NULL |Template Power APC UPS Symmetra RM&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
+ROW |10382 |NULL |Template Power APC UPS Symmetra RX SNMP |3 |-1 |2 | | |Template Power APC UPS Symmetra RX SNMP |0 |NULL |Template Power APC UPS Symmetra RX&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
ROW |10383 |NULL |Template APP WildFly Domain by JMX |3 |-1 |2 | | |Template APP WildFly Domain by JMX |0 |NULL |Official JMX Template for WildFly.&eol;The metrics are collected by JMX. This template works with Domain Controller.&eol;You can set {$WILDFLY.USER} and {$WILDFLY.PASSWORD} macros in the template for using on the host level.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10384 |NULL |Template APP WildFly Server by JMX |3 |-1 |2 | | |Template APP WildFly Server by JMX |0 |NULL |Official JMX Template for WildFly.&eol;The metrics are collected by JMX. This template works with standalone and domain instances.&eol;You can set {$WILDFLY.USER} and {$WILDFLY.PASSWORD} macros in the template for using on the host level.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10385 |NULL |Template ZYXEL AAM1212-51 IES-612 SNMP |3 |-1 |2 | | |Template ZYXEL AAM1212-51 IES-612 SNMP |0 |NULL |ZYXEL AAM1212-51 / IES-612&eol;&eol;MIBs used:&eol;RFC1213-MIB&eol;ADSL-LINE-MIB&eol;ZYXEL-IESCOMMON-MIB&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.&eol; Version: all versions firmware&eol; Device: ZYXEL AAM1212-51 / IES-612&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
@@ -228,7 +228,7 @@ ROW |10396 |NULL |Template ZYXEL MES3500-24S SNMP
ROW |10397 |NULL |Template ZYXEL MGS3520-28x SNMP |3 |-1 |2 | | |Template ZYXEL MGS3520-28x SNMP |0 |NULL |ZYXEL MGS3520-28x&eol;&eol;MIBs used:&eol;RFC1213-MIB&eol;ZYXEL-HW-MONITOR-MIB&eol;ZYXEL-PORT-MIB&eol;ZYXEL-ES-COMMON&eol;ZYXEL-TRANSCEIVER-MIB&eol;IF-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.&eol; Version: all versions firmware&eol; Device: ZYXEL MGS3520-28&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10398 |NULL |Template ZYXEL XGS-4728F SNMP |3 |-1 |2 | | |Template ZYXEL XGS-4728F SNMP |0 |NULL |ZYXEL XGS-4728F&eol;&eol;MIBs used:&eol;RFC1213-MIB&eol;ZYXEL-XGS4728F-MIB&eol;IF-MIB&eol; ZYXEL-XGS4728F-MIB&eol;&eol;Known Issues:&eol;&eol; Description: Incorrect handling of SNMP bulk requests. Disable the use of bulk requests in the SNMP interface settings.&eol; Version: all versions firmware&eol; Device: ZYXEL XGS-4728F&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/422668-discussion-thread-for-official-zabbix-templates-for-zyxel&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10399 |NULL |Template App Nginx Plus by HTTP |3 |-1 |2 | | |Template App Nginx Plus by HTTP |0 |NULL |Get Nginx Plus metrics by HTTP agent.&eol;Metrics are collected by requests to Nginx Plus API.&eol;Don't forget to change macros {$NGINX.API.ENDPOINT}.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
-ROW |10400 |NULL |Template Server Cisco UCS Manager SNMP |3 |-1 |2 | | |Template Server Cisco UCS Manager SNMP |0 |NULL |This is a template for Cisco UCS Manager monitoring via Zabbix SNMP Agent that works without any external scripts.&eol;&eol;&eol;MIBs used:&eol;CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;SNMPv2-MIB&eol;CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB&eol;CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB&eol;CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;IF-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10400 |NULL |Template Server Cisco UCS Manager SNMP |3 |-1 |2 | | |Template Server Cisco UCS Manager SNMP |0 |NULL |This is a template for Cisco UCS Manager monitoring via Zabbix SNMP Agent that works without any external scripts.&eol;&eol;&eol;MIBs used:&eol;CISCO-UNIFIED-COMPUTING-COMPUTE-MIB&eol;SNMPv2-MIB&eol;CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB&eol;CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB&eol;CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;IF-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418396-discussion-thread-for-official-zabbix-templates-for-cisco&eol;&eol;Template tooling version used: 0.39 |1 |1 | | | | | |1 |0 |
ROW |10402 |NULL |Template Server DELL PowerEdge R720 SNMP |3 |-1 |2 | | |Template Server DELL PowerEdge R720 SNMP |0 |NULL |Template for DELL PowerEdge R720 servers with iDRAC version 7 and later.&eol;&eol;MIBs used:&eol;IDRAC-MIB-SMIv2&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10404 |NULL |Template Server DELL PowerEdge R740 SNMP |3 |-1 |2 | | |Template Server DELL PowerEdge R740 SNMP |0 |NULL |Template for DELL PowerEdge R740 servers with iDRAC version 7 and later.&eol;&eol;MIBs used:&eol;IDRAC-MIB-SMIv2&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10406 |NULL |Template Server DELL PowerEdge R820 SNMP |3 |-1 |2 | | |Template Server DELL PowerEdge R820 SNMP |0 |NULL |Template for DELL PowerEdge R820 servers with iDRAC version 7 and later.&eol;&eol;MIBs used:&eol;IDRAC-MIB-SMIv2&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/426752-discussion-thread-for-official-zabbix-dell-templates&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
@@ -266,10 +266,10 @@ ROW |5 |10332 |{#DATACENTER.NAME} (vm) |NULL |NU
ROW |6 |10332 |{#HV.NAME} |NULL |NULL |
ROW |24 |10364 |MongoDB sharded cluster/{#REPLICASET}|NULL |NULL |
ROW |26 |10365 |MongoDB sharded cluster/{#ID} |NULL |NULL |
-ROW |60 |10331 | |12 |NULL |
-ROW |61 |10332 | |12 |NULL |
-ROW |62 |10364 | |13 |NULL |
-ROW |63 |10365 | |13 |NULL |
+ROW |64 |10331 | |12 |NULL |
+ROW |65 |10332 | |12 |NULL |
+ROW |66 |10364 | |13 |NULL |
+ROW |67 |10365 | |13 |NULL |
TABLE |screens
FIELDS|screenid|name |hsize|vsize|templateid|userid|private|
@@ -375,339 +375,339 @@ ROW |5544 |41 |0 |1022 |500 |100 |0 |1 |1
ROW |5545 |41 |0 |1023 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
ROW |5546 |41 |0 |1021 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
ROW |5547 |41 |0 |1024 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8520 |25 |0 |1174 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8521 |25 |0 |1176 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8522 |25 |20 |1172 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8523 |25 |20 |1173 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8524 |25 |0 |1175 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8525 |26 |0 |838 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8526 |26 |0 |839 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8527 |26 |20 |836 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8528 |26 |20 |837 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8529 |26 |0 |840 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8530 |59 |0 |1125 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8531 |59 |0 |1129 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8532 |59 |0 |1128 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8533 |59 |0 |1126 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8534 |59 |0 |1127 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8535 |48 |20 |1710 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8536 |48 |20 |1711 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8537 |48 |20 |1709 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8538 |49 |20 |1714 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8539 |49 |20 |1712 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8540 |49 |20 |1715 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8541 |49 |20 |1713 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8542 |50 |20 |1718 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8543 |50 |20 |1717 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8544 |50 |20 |1716 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8545 |51 |20 |1720 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8546 |51 |20 |1721 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8547 |51 |20 |1719 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8548 |52 |20 |1724 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8549 |52 |20 |1722 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8550 |52 |20 |1725 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8551 |52 |20 |1723 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8552 |53 |20 |1728 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8553 |53 |20 |1727 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8554 |53 |20 |1726 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8555 |27 |0 |841 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8556 |27 |0 |843 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8557 |27 |0 |842 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8558 |28 |0 |845 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8559 |28 |0 |847 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8560 |28 |0 |846 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8561 |62 |0 |1419 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8562 |62 |0 |1414 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8563 |62 |0 |1421 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8564 |62 |0 |1423 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8565 |62 |0 |1420 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8566 |63 |0 |1422 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8567 |63 |0 |1425 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8568 |63 |0 |1415 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8569 |63 |0 |1418 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8570 |63 |0 |1416 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8571 |63 |0 |1424 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8572 |64 |0 |1432 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8573 |64 |0 |1428 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8574 |64 |0 |1434 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8575 |64 |0 |1436 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8576 |64 |0 |1433 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8577 |65 |0 |1435 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8578 |65 |0 |1438 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8579 |65 |0 |1429 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8580 |65 |0 |1431 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8581 |65 |0 |1430 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8582 |65 |0 |1437 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8583 |4 |0 |1545 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8584 |4 |0 |1539 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8585 |4 |0 |1541 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8586 |4 |0 |1537 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8587 |4 |0 |1535 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8588 |4 |0 |1543 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8589 |79 |0 |1527 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8590 |79 |0 |1531 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8591 |79 |0 |1529 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8592 |79 |0 |1525 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8593 |21 |0 |1557 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8594 |21 |0 |1554 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8595 |21 |0 |1555 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8596 |21 |0 |1553 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8597 |21 |0 |1552 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8598 |21 |0 |1556 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8599 |80 |0 |1548 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8600 |80 |0 |1550 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8601 |80 |0 |1549 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8602 |80 |0 |1547 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8603 |22 |0 |806 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8604 |22 |0 |804 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8605 |22 |0 |805 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8606 |22 |0 |803 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8607 |17 |0 |532 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8608 |17 |0 |530 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8609 |17 |0 |531 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8610 |17 |0 |529 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8611 |5 |0 |469 |500 |148 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8612 |5 |0 |471 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8613 |5 |0 |498 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8614 |5 |0 |540 |500 |100 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8615 |7 |0 |463 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8616 |7 |0 |462 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8617 |7 |0 |541 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8618 |7 |0 |464 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8619 |6 |0 |475 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8620 |6 |0 |474 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8621 |6 |0 |542 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8622 |18 |0 |487 |750 |100 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8623 |18 |0 |543 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8624 |9 |0 |457 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8625 |9 |0 |456 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8626 |9 |0 |544 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8627 |9 |0 |458 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8628 |9 |1 |22838 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8629 |9 |1 |22837 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8630 |10 |0 |481 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8631 |10 |0 |480 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |8632 |10 |0 |545 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8633 |10 |0 |482 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8634 |10 |1 |22998 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8635 |10 |1 |22997 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8636 |57 |0 |1112 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8637 |57 |0 |1113 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8638 |57 |0 |1110 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8639 |57 |0 |1109 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8640 |57 |0 |1111 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8641 |57 |0 |1114 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8642 |60 |0 |1139 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8643 |60 |0 |1140 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8644 |60 |0 |1137 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8645 |60 |0 |1136 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8646 |60 |0 |1138 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8647 |60 |0 |1141 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8648 |58 |0 |1118 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8649 |58 |0 |1119 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8650 |58 |0 |1116 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8651 |58 |0 |1115 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8652 |58 |0 |1117 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8653 |58 |0 |1120 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8654 |23 |20 |821 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8655 |23 |20 |816 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8656 |23 |20 |814 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8657 |23 |20 |820 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8658 |23 |20 |817 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8659 |23 |20 |815 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8660 |23 |20 |818 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8661 |23 |20 |819 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8662 |24 |0 |824 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8663 |24 |0 |827 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8664 |24 |0 |825 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8665 |24 |0 |828 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8666 |24 |0 |826 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8667 |24 |0 |829 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8668 |24 |0 |822 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8669 |24 |0 |823 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |8670 |61 |20 |1212 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8671 |61 |20 |1210 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8672 |61 |20 |1213 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8673 |61 |20 |1211 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8674 |54 |0 |1091 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8675 |54 |0 |1095 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8676 |54 |0 |1092 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8677 |54 |0 |1094 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8678 |54 |0 |1099 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8679 |54 |0 |1100 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8680 |54 |0 |1101 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8681 |54 |0 |1102 |500 |100 |1 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8682 |54 |20 |1090 |500 |100 |0 |4 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8683 |55 |0 |1093 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8684 |55 |0 |1098 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8685 |55 |0 |1096 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8686 |55 |0 |1097 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8687 |47 |0 |1071 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8688 |47 |20 |1061 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8689 |47 |20 |1066 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8690 |45 |20 |741 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8691 |43 |20 |745 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8692 |46 |20 |766 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8693 |66 |20 |1476 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8694 |67 |0 |1479 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8695 |67 |20 |1478 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8696 |67 |20 |1477 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8697 |3 |0 |903 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8698 |3 |0 |909 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8699 |3 |0 |918 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8700 |3 |0 |921 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8701 |3 |20 |888 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8702 |3 |20 |1218 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8703 |3 |20 |1215 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8704 |3 |20 |1221 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8705 |3 |20 |900 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8706 |30 |20 |899 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8707 |31 |20 |934 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8708 |32 |0 |937 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8709 |32 |0 |941 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8710 |32 |0 |947 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8711 |32 |0 |949 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8712 |32 |20 |927 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8713 |32 |20 |1226 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8714 |32 |20 |1224 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8715 |32 |20 |1228 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8716 |32 |20 |935 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8717 |33 |0 |957 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8718 |33 |0 |959 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8719 |33 |0 |962 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8720 |33 |0 |963 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8721 |33 |20 |953 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8722 |33 |20 |954 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8723 |33 |20 |955 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8724 |33 |20 |956 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8725 |33 |20 |952 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8726 |34 |20 |952 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8727 |29 |0 |881 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8728 |29 |20 |869 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8729 |29 |0 |877 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8730 |29 |0 |879 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8731 |29 |20 |873 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8732 |29 |20 |867 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8733 |29 |19 |29033 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8734 |29 |20 |865 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8735 |19 |0 |977 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8736 |19 |1 |29485 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8737 |19 |0 |979 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8738 |19 |0 |981 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8739 |19 |20 |965 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8740 |19 |20 |1230 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8741 |19 |20 |1232 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8742 |19 |20 |1840 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8743 |82 |20 |1839 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8744 |37 |0 |995 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8745 |37 |1 |29592 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8746 |37 |0 |997 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8747 |37 |0 |999 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8748 |37 |20 |983 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8749 |37 |20 |1234 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8750 |37 |20 |1236 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8751 |37 |20 |1842 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8752 |83 |20 |1841 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8753 |69 |3 |33570 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8754 |69 |3 |33585 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8755 |69 |3 |33580 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8756 |69 |3 |33591 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8757 |69 |3 |33592 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8758 |69 |3 |33594 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8759 |69 |0 |1489 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8760 |69 |0 |1491 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8761 |69 |0 |1490 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8762 |70 |3 |33621 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8763 |70 |3 |33636 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8764 |70 |3 |33631 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8765 |70 |3 |33642 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8766 |70 |3 |33643 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8767 |70 |3 |33645 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8768 |70 |0 |1492 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8769 |70 |0 |1494 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8770 |70 |0 |1493 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8771 |71 |3 |33672 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8772 |71 |3 |33687 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8773 |71 |3 |33682 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8774 |71 |3 |33693 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8775 |71 |3 |33694 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8776 |71 |3 |33696 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8777 |71 |0 |1495 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8778 |71 |0 |1497 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8779 |71 |0 |1496 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8780 |72 |3 |33723 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8781 |72 |3 |33738 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8782 |72 |3 |33733 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8783 |72 |3 |33744 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8784 |72 |3 |33745 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8785 |72 |3 |33747 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8786 |72 |0 |1498 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8787 |72 |0 |1500 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8788 |72 |0 |1499 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8789 |73 |3 |33774 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8790 |73 |3 |33789 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8791 |73 |3 |33784 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8792 |73 |3 |33795 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8793 |73 |3 |33796 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8794 |73 |3 |33798 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8795 |73 |0 |1501 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8796 |73 |0 |1503 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8797 |73 |0 |1502 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8798 |74 |3 |33825 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8799 |74 |3 |33840 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8800 |74 |3 |33835 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8801 |74 |3 |33846 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8802 |74 |3 |33847 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8803 |74 |3 |33849 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8804 |74 |0 |1504 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8805 |74 |0 |1506 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8806 |74 |0 |1505 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8807 |75 |3 |33876 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8808 |75 |3 |33891 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8809 |75 |3 |33886 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8810 |75 |3 |33897 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8811 |75 |3 |33898 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8812 |75 |3 |33900 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8813 |75 |0 |1507 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8814 |75 |0 |1509 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8815 |75 |0 |1508 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8816 |68 |3 |33434 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8817 |68 |3 |33449 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8818 |68 |3 |33444 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8819 |68 |3 |33455 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8820 |68 |3 |33456 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8821 |68 |3 |33458 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8822 |68 |0 |1510 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8823 |68 |0 |1482 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8824 |68 |0 |1481 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8825 |76 |3 |33932 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8826 |76 |3 |33947 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8827 |76 |3 |33942 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8828 |76 |3 |33953 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8829 |76 |3 |33954 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8830 |76 |3 |33956 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8831 |76 |0 |1511 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8832 |76 |0 |1513 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8833 |76 |0 |1512 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8834 |77 |3 |33983 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8835 |77 |3 |33998 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8836 |77 |3 |33993 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8837 |77 |3 |34004 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8838 |77 |3 |34005 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8839 |77 |3 |34007 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8840 |77 |0 |1514 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8841 |77 |0 |1516 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8842 |77 |0 |1515 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8843 |78 |3 |34034 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8844 |78 |3 |34049 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8845 |78 |3 |34044 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8846 |78 |3 |34055 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8847 |78 |3 |34056 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8848 |78 |3 |34058 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |8849 |78 |0 |1517 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8850 |78 |0 |1519 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8851 |78 |0 |1518 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |8852 |81 |20 |1676 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8853 |25 |0 |1174 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8854 |25 |0 |1176 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8855 |25 |20 |1172 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8856 |25 |20 |1173 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8857 |25 |0 |1175 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8858 |26 |0 |838 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8859 |26 |0 |839 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8860 |26 |20 |836 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8861 |26 |20 |837 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8862 |26 |0 |840 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8863 |59 |0 |1125 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8864 |59 |0 |1129 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8865 |59 |0 |1128 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8866 |59 |0 |1126 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8867 |59 |0 |1127 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8868 |48 |20 |1710 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8869 |48 |20 |1711 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8870 |48 |20 |1709 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8871 |49 |20 |1714 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8872 |49 |20 |1712 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8873 |49 |20 |1715 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8874 |49 |20 |1713 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8875 |50 |20 |1718 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8876 |50 |20 |1717 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8877 |50 |20 |1716 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8878 |51 |20 |1720 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8879 |51 |20 |1721 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8880 |51 |20 |1719 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8881 |52 |20 |1724 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8882 |52 |20 |1722 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8883 |52 |20 |1725 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8884 |52 |20 |1723 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8885 |53 |20 |1728 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8886 |53 |20 |1727 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8887 |53 |20 |1726 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8888 |27 |0 |841 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8889 |27 |0 |843 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8890 |27 |0 |842 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8891 |28 |0 |845 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8892 |28 |0 |847 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8893 |28 |0 |846 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8894 |62 |0 |1419 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8895 |62 |0 |1414 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8896 |62 |0 |1421 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8897 |62 |0 |1423 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8898 |62 |0 |1420 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8899 |63 |0 |1422 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8900 |63 |0 |1425 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8901 |63 |0 |1415 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8902 |63 |0 |1418 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8903 |63 |0 |1416 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8904 |63 |0 |1424 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8905 |64 |0 |1432 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8906 |64 |0 |1428 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8907 |64 |0 |1434 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8908 |64 |0 |1436 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8909 |64 |0 |1433 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8910 |65 |0 |1435 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8911 |65 |0 |1438 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8912 |65 |0 |1429 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8913 |65 |0 |1431 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8914 |65 |0 |1430 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8915 |65 |0 |1437 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8916 |4 |0 |1545 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8917 |4 |0 |1539 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8918 |4 |0 |1541 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8919 |4 |0 |1537 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8920 |4 |0 |1535 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8921 |4 |0 |1543 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8922 |79 |0 |1527 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8923 |79 |0 |1531 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8924 |79 |0 |1529 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8925 |79 |0 |1525 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8926 |21 |0 |1557 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8927 |21 |0 |1554 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8928 |21 |0 |1555 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8929 |21 |0 |1553 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8930 |21 |0 |1552 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8931 |21 |0 |1556 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8932 |80 |0 |1548 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8933 |80 |0 |1550 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8934 |80 |0 |1549 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8935 |80 |0 |1547 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8936 |22 |0 |806 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8937 |22 |0 |804 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8938 |22 |0 |805 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8939 |22 |0 |803 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8940 |17 |0 |532 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8941 |17 |0 |530 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8942 |17 |0 |531 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8943 |17 |0 |529 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8944 |5 |0 |469 |500 |148 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8945 |5 |0 |471 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8946 |5 |0 |498 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8947 |5 |0 |540 |500 |100 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8948 |7 |0 |463 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8949 |7 |0 |462 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8950 |7 |0 |541 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8951 |7 |0 |464 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8952 |6 |0 |475 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8953 |6 |0 |474 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8954 |6 |0 |542 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8955 |18 |0 |487 |750 |100 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8956 |18 |0 |543 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8957 |9 |0 |457 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8958 |9 |0 |456 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8959 |9 |0 |544 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8960 |9 |0 |458 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8961 |9 |1 |22838 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8962 |9 |1 |22837 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8963 |10 |0 |481 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8964 |10 |0 |480 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |8965 |10 |0 |545 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8966 |10 |0 |482 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8967 |10 |1 |22998 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8968 |10 |1 |22997 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8969 |57 |0 |1112 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8970 |57 |0 |1113 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8971 |57 |0 |1110 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8972 |57 |0 |1109 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8973 |57 |0 |1111 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8974 |57 |0 |1114 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8975 |60 |0 |1139 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8976 |60 |0 |1140 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8977 |60 |0 |1137 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8978 |60 |0 |1136 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8979 |60 |0 |1138 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8980 |60 |0 |1141 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8981 |58 |0 |1118 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8982 |58 |0 |1119 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8983 |58 |0 |1116 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8984 |58 |0 |1115 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8985 |58 |0 |1117 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8986 |58 |0 |1120 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |8987 |23 |20 |821 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8988 |23 |20 |816 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8989 |23 |20 |814 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8990 |23 |20 |820 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8991 |23 |20 |817 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8992 |23 |20 |815 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8993 |23 |20 |818 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8994 |23 |20 |819 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8995 |24 |0 |824 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8996 |24 |0 |827 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8997 |24 |0 |825 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8998 |24 |0 |828 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |8999 |24 |0 |826 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |9000 |24 |0 |829 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |9001 |24 |0 |822 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |9002 |24 |0 |823 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |9003 |61 |20 |1212 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9004 |61 |20 |1210 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9005 |61 |20 |1213 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9006 |61 |20 |1211 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9007 |54 |0 |1091 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9008 |54 |0 |1095 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9009 |54 |0 |1092 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9010 |54 |0 |1094 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9011 |54 |0 |1099 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9012 |54 |0 |1100 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9013 |54 |0 |1101 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9014 |54 |0 |1102 |500 |100 |1 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9015 |54 |20 |1090 |500 |100 |0 |4 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9016 |55 |0 |1093 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9017 |55 |0 |1098 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9018 |55 |0 |1096 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9019 |55 |0 |1097 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9020 |47 |0 |1071 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9021 |47 |20 |1061 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9022 |47 |20 |1066 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9023 |45 |20 |741 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9024 |43 |20 |745 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9025 |46 |20 |766 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9026 |66 |20 |1476 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9027 |67 |0 |1479 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9028 |67 |20 |1478 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9029 |67 |20 |1477 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9030 |3 |0 |903 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9031 |3 |0 |909 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9032 |3 |0 |918 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9033 |3 |0 |921 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9034 |3 |20 |888 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9035 |3 |20 |1218 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9036 |3 |20 |1215 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9037 |3 |20 |1221 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9038 |3 |20 |900 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9039 |30 |20 |899 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9040 |31 |20 |934 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9041 |32 |0 |937 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9042 |32 |0 |941 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9043 |32 |0 |947 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9044 |32 |0 |949 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9045 |32 |20 |927 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9046 |32 |20 |1226 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9047 |32 |20 |1224 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9048 |32 |20 |1228 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9049 |32 |20 |935 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9050 |33 |0 |957 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9051 |33 |0 |959 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9052 |33 |0 |962 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9053 |33 |0 |963 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9054 |33 |20 |953 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9055 |33 |20 |954 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9056 |33 |20 |955 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9057 |33 |20 |956 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9058 |33 |20 |952 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9059 |34 |20 |952 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9060 |29 |0 |881 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9061 |29 |20 |869 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9062 |29 |0 |877 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9063 |29 |0 |879 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9064 |29 |20 |873 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9065 |29 |20 |867 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9066 |29 |19 |29033 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9067 |29 |20 |865 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9068 |19 |0 |977 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9069 |19 |1 |29485 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9070 |19 |0 |979 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9071 |19 |0 |981 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9072 |19 |20 |965 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9073 |19 |20 |1230 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9074 |19 |20 |1232 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9075 |19 |20 |1840 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9076 |82 |20 |1839 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9077 |37 |0 |995 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9078 |37 |1 |29592 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9079 |37 |0 |997 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9080 |37 |0 |999 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9081 |37 |20 |983 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9082 |37 |20 |1234 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9083 |37 |20 |1236 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9084 |37 |20 |1842 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9085 |83 |20 |1841 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9086 |69 |3 |33570 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9087 |69 |3 |33585 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9088 |69 |3 |33580 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9089 |69 |3 |33591 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9090 |69 |3 |33592 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9091 |69 |3 |33594 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9092 |69 |0 |1489 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9093 |69 |0 |1491 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9094 |69 |0 |1490 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9095 |70 |3 |33621 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9096 |70 |3 |33636 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9097 |70 |3 |33631 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9098 |70 |3 |33642 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9099 |70 |3 |33643 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9100 |70 |3 |33645 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9101 |70 |0 |1492 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9102 |70 |0 |1494 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9103 |70 |0 |1493 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9104 |71 |3 |33672 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9105 |71 |3 |33687 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9106 |71 |3 |33682 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9107 |71 |3 |33693 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9108 |71 |3 |33694 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9109 |71 |3 |33696 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9110 |71 |0 |1495 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9111 |71 |0 |1497 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9112 |71 |0 |1496 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9113 |72 |3 |33723 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9114 |72 |3 |33738 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9115 |72 |3 |33733 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9116 |72 |3 |33744 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9117 |72 |3 |33745 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9118 |72 |3 |33747 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9119 |72 |0 |1498 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9120 |72 |0 |1500 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9121 |72 |0 |1499 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9122 |73 |3 |33774 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9123 |73 |3 |33789 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9124 |73 |3 |33784 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9125 |73 |3 |33795 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9126 |73 |3 |33796 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9127 |73 |3 |33798 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9128 |73 |0 |1501 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9129 |73 |0 |1503 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9130 |73 |0 |1502 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9131 |74 |3 |33825 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9132 |74 |3 |33840 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9133 |74 |3 |33835 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9134 |74 |3 |33846 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9135 |74 |3 |33847 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9136 |74 |3 |33849 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9137 |74 |0 |1504 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9138 |74 |0 |1506 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9139 |74 |0 |1505 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9140 |75 |3 |33876 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9141 |75 |3 |33891 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9142 |75 |3 |33886 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9143 |75 |3 |33897 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9144 |75 |3 |33898 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9145 |75 |3 |33900 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9146 |75 |0 |1507 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9147 |75 |0 |1509 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9148 |75 |0 |1508 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9149 |68 |3 |33434 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9150 |68 |3 |33449 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9151 |68 |3 |33444 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9152 |68 |3 |33455 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9153 |68 |3 |33456 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9154 |68 |3 |33458 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9155 |68 |0 |1510 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9156 |68 |0 |1482 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9157 |68 |0 |1481 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9158 |76 |3 |33932 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9159 |76 |3 |33947 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9160 |76 |3 |33942 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9161 |76 |3 |33953 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9162 |76 |3 |33954 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9163 |76 |3 |33956 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9164 |76 |0 |1511 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9165 |76 |0 |1513 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9166 |76 |0 |1512 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9167 |77 |3 |33983 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9168 |77 |3 |33998 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9169 |77 |3 |33993 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9170 |77 |3 |34004 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9171 |77 |3 |34005 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9172 |77 |3 |34007 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9173 |77 |0 |1514 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9174 |77 |0 |1516 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9175 |77 |0 |1515 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9176 |78 |3 |34034 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9177 |78 |3 |34049 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9178 |78 |3 |34044 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9179 |78 |3 |34055 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9180 |78 |3 |34056 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9181 |78 |3 |34058 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |9182 |78 |0 |1517 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9183 |78 |0 |1519 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9184 |78 |0 |1518 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |9185 |81 |20 |1676 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
TABLE |applications
FIELDS|applicationid|hostid|name |flags|
@@ -1708,6 +1708,7 @@ ROW |1851 |10431 |Network interfaces |0 |
ROW |1852 |10431 |Power supply |0 |
ROW |1853 |10431 |Status |0 |
ROW |1854 |10431 |Temperature |0 |
+ROW |1855 |10415 |Cluster |0 |
TABLE |interface
FIELDS|interfaceid|hostid|main|type|useip|ip |dns |port |
@@ -1965,6 +1966,11 @@ ROW |247 |Cisco ASAv port operational status
ROW |248 |Cisco ASAv session protocol |
ROW |249 |Cisco ASAv user authenticate method |
ROW |250 |Physical class |
+ROW |251 |SNMP ltmPoolStatusEnabledState |
+ROW |252 |SNMP ltmVsStatusAvailState |
+ROW |253 |SNMP sysCmFailoverStatusId |
+ROW |254 |SNMP sysCmSyncStatusId |
+ROW |255 |ifOperStatus |
TABLE |items
FIELDS|itemid|type|snmp_oid |hostid|name |key_ |delay |history|trends|status|value_type|trapper_hosts|units |formula |logtimefmt |templateid|valuemapid|params |ipmi_sensor |authtype|username |password |publickey|privatekey|flags|interfaceid|description |inventory_link|lifetime|evaltype|jmx_endpoint |master_itemid|timeout |url |query_fields |posts|status_codes|follow_redirects|post_type|headers |retrieve_mode|request_method|output_format|verify_peer|verify_host|allow_traps|discover|
@@ -2302,9 +2308,9 @@ ROW |27124 |20 |1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX}
ROW |27125 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27126 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27127 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10192 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27152 |20 |1.3.6.1.2.1.1.5.0 |10204 |System name |system.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27154 |5 | |10204 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27157 |17 | |10204 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27152 |20 |1.3.6.1.2.1.1.5.0 |10204 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27154 |5 | |10204 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27157 |17 | |10204 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27203 |20 |1.3.6.1.2.1.1.1.0 |10207 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27207 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.9.0 |10207 |Used memory |vm.memory.used[sgiKbMemoryUsed.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiKbMemoryUsed indicates the total pre-allocated pool memory, in kilobytes, currently in use on the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27208 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.1.0 |10207 |CPU utilization |system.cpu.util[sgiCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiCpuUsage indicates the current CPU utilization for the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -2747,9 +2753,9 @@ ROW |29099 |0 |
ROW |29100 |0 | |10272 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29101 |0 | |10272 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29102 |0 | |10272 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29103 |0 | |10274 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29103 |0 | |10274 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29104 |0 | |10274 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29105 |0 | |10274 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29105 |0 | |10274 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29106 |0 | |10274 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29107 |0 | |10274 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29108 |0 | |10274 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -2757,7 +2763,7 @@ ROW |29110 |0 |
ROW |29111 |0 | |10277 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29112 |0 | |10277 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29113 |0 | |10277 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29114 |0 | |10277 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29114 |0 | |10277 |System description |system.uname |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29115 |0 | |10277 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29116 |0 | |10277 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29117 |0 | |10277 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -2779,7 +2785,7 @@ ROW |29218 |0 |
ROW |29219 |0 | |10276 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29220 |0 | |10276 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29221 |0 | |10276 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29222 |0 | |10276 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29222 |0 | |10276 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |NULL |255 | | |0 | | | | |2 |NULL |Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29223 |0 | |10276 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29273 |7 | |10278 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29274 |7 | |10278 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -2797,9 +2803,9 @@ ROW |29285 |7 |
ROW |29286 |7 | |10278 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29287 |7 | |10278 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29288 |7 | |10278 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29289 |7 | |10280 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29289 |7 | |10280 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29290 |7 | |10280 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29291 |7 | |10280 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29291 |7 | |10280 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29292 |7 | |10280 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29293 |7 | |10280 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29294 |7 | |10280 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -2807,7 +2813,7 @@ ROW |29296 |7 |
ROW |29297 |7 | |10283 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29298 |0 | |10283 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29299 |7 | |10283 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29300 |7 | |10283 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29300 |7 | |10283 |System description |system.uname |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29301 |7 | |10283 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29302 |7 | |10283 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29303 |7 | |10283 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -2829,7 +2835,7 @@ ROW |29363 |7 |
ROW |29364 |7 | |10282 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29365 |7 | |10282 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29366 |7 | |10282 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29367 |7 | |10282 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29367 |7 | |10282 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |NULL |255 | | |0 | | | | |2 |NULL |Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29368 |7 | |10282 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29395 |19 | |10285 |Get node_exporter metrics |node_exporter.get |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |http://{HOST.CONN}:{$NODE_EXPORTER_PORT}/metrics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29396 |15 | |10285 |Memory utilization |vm.memory.util[node_exporter] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total[node_exporter]")-last("vm.memory.available[node_exporter]"))/last("vm.memory.total[node_exporter]")*100 | |0 | | | | |0 |NULL |Memory used percentage is calculated as (total-available)/total*100 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -2856,7 +2862,7 @@ ROW |29470 |0 |
ROW |29472 |0 | |10290 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29473 |0 | |10290 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29474 |0 | |10290 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29475 |0 | |10290 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29475 |0 | |10290 |System description |system.uname |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29476 |0 | |10290 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29477 |0 | |10290 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29478 |0 | |10290 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -2886,7 +2892,7 @@ ROW |29577 |7 |
ROW |29579 |7 | |10297 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29580 |0 | |10297 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29581 |7 | |10297 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29582 |7 | |10297 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29582 |7 | |10297 |System description |system.uname |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29583 |7 | |10297 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29584 |7 | |10297 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29585 |7 | |10297 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -2913,10 +2919,10 @@ ROW |29744 |19 |
ROW |29745 |19 | |10303 |RabbitMQ: Get queues |rabbitmq.get_queues |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |0 |NULL |The HTTP API endpoint that returns queues metrics |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/queues | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29822 |5 | |10047 |Zabbix server: Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time alert syncer processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29844 |20 |1.3.6.1.2.1.1.3.0 |10204 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29845 |20 |1.3.6.1.2.1.1.6.0 |10204 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29846 |20 |1.3.6.1.2.1.1.4.0 |10204 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29845 |20 |1.3.6.1.2.1.1.6.0 |10204 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29846 |20 |1.3.6.1.2.1.1.4.0 |10204 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29847 |20 |1.3.6.1.2.1.1.2.0 |10204 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29848 |20 |1.3.6.1.2.1.1.1.0 |10204 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29848 |20 |1.3.6.1.2.1.1.1.0 |10204 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29994 |20 |1.3.6.1.4.1.232.6.1.3.0 |10256 |Overall system health status |system.status[cpqHeMibCondition.0] |1m |7d |0d |0 |3 | | | | |NULL |54 | | |0 | | | | |0 |NULL |MIB: CPQHLTH-MIB&eol;The overall condition. This object represents the overall status of the server information represented by this MIB. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29998 |0 | |10300 |RabbitMQ: Get overview |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29999 |0 | |10300 |RabbitMQ: Get exchanges |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/exchanges"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns exchanges metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -3220,7 +3226,6 @@ ROW |31325 |0 |
ROW |31326 |0 | |10287 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The used space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31327 |15 | |10287 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("system.swap.size[,total]") - last("system.swap.size[,total]") / 100 * last("perf_counter_en[\"\Paging file(_Total)\% Usage\"]") | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31333 |0 | |10289 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31335 |0 | |10289 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31336 |0 | |10289 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31337 |0 | |10289 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31338 |0 | |10289 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -3228,7 +3233,6 @@ ROW |31343 |7 |
ROW |31344 |7 | |10294 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The used space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31345 |15 | |10294 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("system.swap.size[,total]") - last("system.swap.size[,total]") / 100 * last("perf_counter_en[\"\Paging file(_Total)\% Usage\"]") | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31351 |7 | |10296 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31353 |7 | |10296 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31354 |7 | |10296 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31355 |7 | |10296 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31356 |7 | |10296 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -3315,8 +3319,8 @@ ROW |31578 |3 |
ROW |31579 |3 | |10175 |VMware: Uptime |vmware.hv.uptime[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |System uptime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31580 |3 | |10175 |VMware: Overall status |vmware.hv.status[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | | | | |NULL |13 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The overall alarm status of the host: gray - unknown, green - ok, red - it has a problem, yellow - it might have a problem. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31581 |3 | |10175 |VMware: Health state rollup |vmware.hv.sensor.health.state[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | | | | |NULL |13 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The host health state rollup sensor value: gray - unknown, green - ok, red - it has a problem, yellow - it might have a problem. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31582 |3 | |10175 |VMware: Number of bytes transmitted |vmware.hv.network.out[{$VMWARE.URL},{HOST.HOST},bps] |{$VMWARE_PERF_INTERVAL} |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware hypervisor network output statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31583 |3 | |10175 |VMware: Number of bytes received |vmware.hv.network.in[{$VMWARE.URL},{HOST.HOST},bps] |{$VMWARE_PERF_INTERVAL} |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware hypervisor network input statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31582 |3 | |10175 |VMware: Number of bytes transmitted |vmware.hv.network.out[{$VMWARE.URL},{HOST.HOST},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware hypervisor network output statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31583 |3 | |10175 |VMware: Number of bytes received |vmware.hv.network.in[{$VMWARE.URL},{HOST.HOST},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware hypervisor network input statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31584 |3 | |10175 |VMware: Used memory |vmware.hv.memory.used[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Physical memory usage on the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31585 |3 | |10175 |VMware: Ballooned memory |vmware.hv.memory.size.ballooned[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory that is currently reclaimed through the balloon driver. Sum of all guest VMs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31586 |3 | |10175 |VMware: Bios UUID |vmware.hv.hw.uuid[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The hardware BIOS identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -3355,10 +3359,10 @@ ROW |31618 |3 |
ROW |31619 |3 | |10174 |VMware: Free disk space on {#FSNAME} (percentage) |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine file system statistics (percentages). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31620 |3 | |10174 |VMware: Total disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},total] |1h |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine total disk space (bytes). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31621 |3 | |10174 |VMware: Used disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine used disk space (bytes). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31622 |3 | |10175 |VMware: Average read latency of the datastore {#DATASTORE} |vmware.hv.datastore.read[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Average amount of time for a read operation from the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31622 |3 | |10175 |VMware: Average read latency of the datastore {#DATASTORE} |vmware.hv.datastore.read[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},latency] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Average amount of time for a read operation from the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31623 |3 | |10175 |VMware: Free space on datastore {#DATASTORE} (percentage) |vmware.hv.datastore.size[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},pfree] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in percentage from total. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31624 |3 | |10175 |VMware: Total size of datastore {#DATASTORE} |vmware.hv.datastore.size[{$VMWARE.URL},{HOST.HOST},{#DATASTORE}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31625 |3 | |10175 |VMware: Average write latency of the datastore {#DATASTORE} |vmware.hv.datastore.write[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},latency] |{$VMWARE_PERF_INTERVAL} |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Average amount of time for a write operation to the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31625 |3 | |10175 |VMware: Average write latency of the datastore {#DATASTORE} |vmware.hv.datastore.write[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},latency] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Average amount of time for a write operation to the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31626 |15 | |10327 |MSSQL: Percent of Adhoc queries running |mssql.percent_of_adhoc_queries |0;m0-59s3 |7d |365d |0 |0 | |% | | |NULL |NULL |last(mssql.sql_compilations_sec.rate) * 100 /&bsn;(last(mssql.batch_requests_sec.rate) + (last(mssql.batch_requests_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of SQL compilations per second to Batch requests per second in percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31627 |15 | |10327 |MSSQL: Full scans to Index searches ratio |mssql.scan_to_search |0;m0-59s3 |7d |365d |0 |0 | | | | |NULL |NULL |last(mssql.full_scans_sec.rate) / (last(mssql.index_searches_sec.rate) + (last(mssql.index_searches_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of Full scans per second to Index searches per second. The threshold recommendation is strictly for OLTP workloads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31628 |15 | |10327 |MSSQL: Percent of Recompiled Transact-SQL Objects |mssql.percent_recompilations_to_compilations |0;m0-59s3 |7d |365d |0 |0 | |% | | |NULL |NULL |last(mssql.sql_recompilations_sec.rate) * 100 /&bsn;(last(mssql.sql_compilations_sec.rate) + (last(mssql.sql_compilations_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of SQL re-compilations per second to SQL compilations per second in percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4343,15 +4347,15 @@ ROW |33401 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX}
ROW |33402 |3 | |10251 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33403 |3 | |10251 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33404 |3 | |10251 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33405 |17 | |10251 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33406 |20 |1.3.6.1.2.1.1.4.0 |10251 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33405 |17 | |10251 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33406 |20 |1.3.6.1.2.1.1.4.0 |10251 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33407 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10251 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33408 |20 |1.3.6.1.2.1.1.1.0 |10251 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33408 |20 |1.3.6.1.2.1.1.1.0 |10251 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33409 |20 |1.3.6.1.2.1.1.6.0 |10251 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33410 |20 |1.3.6.1.2.1.1.5.0 |10251 |System name |system.name |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33411 |20 |1.3.6.1.2.1.1.2.0 |10251 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33412 |20 |1.3.6.1.2.1.1.3.0 |10251 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33413 |5 | |10251 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33413 |5 | |10251 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33414 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10251 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33415 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33416 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4376,9 +4380,9 @@ ROW |33435 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0
ROW |33436 |20 |1.3.6.1.2.1.1.2.0 |10371 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33438 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10371 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33439 |20 |1.3.6.1.2.1.1.6.0 |10371 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33440 |20 |1.3.6.1.2.1.1.1.0 |10371 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33441 |20 |1.3.6.1.2.1.1.4.0 |10371 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33442 |17 | |10371 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33440 |20 |1.3.6.1.2.1.1.1.0 |10371 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33441 |20 |1.3.6.1.2.1.1.4.0 |10371 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33442 |17 | |10371 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33443 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10371 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33444 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10371 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33445 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10371 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4392,7 +4396,7 @@ ROW |33455 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |33456 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10371 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33457 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10371 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33458 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10371 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33459 |5 | |10371 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33459 |5 | |10371 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33460 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10371 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33461 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10371 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33462 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10371 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4445,9 +4449,9 @@ ROW |33571 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0
ROW |33572 |20 |1.3.6.1.2.1.1.2.0 |10373 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33574 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10373 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33575 |20 |1.3.6.1.2.1.1.6.0 |10373 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33576 |20 |1.3.6.1.2.1.1.1.0 |10373 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33577 |20 |1.3.6.1.2.1.1.4.0 |10373 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33578 |17 | |10373 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33576 |20 |1.3.6.1.2.1.1.1.0 |10373 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33577 |20 |1.3.6.1.2.1.1.4.0 |10373 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33578 |17 | |10373 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33579 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10373 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33580 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10373 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33581 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10373 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4461,7 +4465,7 @@ ROW |33591 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |33592 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10373 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33593 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10373 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33594 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10373 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33595 |5 | |10373 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33595 |5 | |10373 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33596 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10373 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33597 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10373 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33598 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10373 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4492,9 +4496,9 @@ ROW |33622 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0
ROW |33623 |20 |1.3.6.1.2.1.1.2.0 |10374 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33625 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10374 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33626 |20 |1.3.6.1.2.1.1.6.0 |10374 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33627 |20 |1.3.6.1.2.1.1.1.0 |10374 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33628 |20 |1.3.6.1.2.1.1.4.0 |10374 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33629 |17 | |10374 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33627 |20 |1.3.6.1.2.1.1.1.0 |10374 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33628 |20 |1.3.6.1.2.1.1.4.0 |10374 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33629 |17 | |10374 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33630 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10374 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33631 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10374 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33632 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10374 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4508,7 +4512,7 @@ ROW |33642 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |33643 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10374 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33644 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10374 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33645 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10374 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33646 |5 | |10374 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33646 |5 | |10374 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33647 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10374 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33648 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10374 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33649 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10374 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4539,9 +4543,9 @@ ROW |33673 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0
ROW |33674 |20 |1.3.6.1.2.1.1.2.0 |10375 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33676 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10375 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33677 |20 |1.3.6.1.2.1.1.6.0 |10375 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33678 |20 |1.3.6.1.2.1.1.1.0 |10375 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33679 |20 |1.3.6.1.2.1.1.4.0 |10375 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33680 |17 | |10375 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33678 |20 |1.3.6.1.2.1.1.1.0 |10375 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33679 |20 |1.3.6.1.2.1.1.4.0 |10375 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33680 |17 | |10375 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33681 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10375 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33682 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10375 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33683 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10375 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4555,7 +4559,7 @@ ROW |33693 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |33694 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10375 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33695 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10375 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33696 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10375 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33697 |5 | |10375 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33697 |5 | |10375 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33698 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10375 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33699 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10375 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33700 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10375 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4586,9 +4590,9 @@ ROW |33724 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0
ROW |33725 |20 |1.3.6.1.2.1.1.2.0 |10376 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33727 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10376 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33728 |20 |1.3.6.1.2.1.1.6.0 |10376 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33729 |20 |1.3.6.1.2.1.1.1.0 |10376 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33730 |20 |1.3.6.1.2.1.1.4.0 |10376 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33731 |17 | |10376 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33729 |20 |1.3.6.1.2.1.1.1.0 |10376 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33730 |20 |1.3.6.1.2.1.1.4.0 |10376 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33731 |17 | |10376 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33732 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10376 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33733 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10376 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33734 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10376 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4602,7 +4606,7 @@ ROW |33744 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |33745 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10376 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33746 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10376 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33747 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10376 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33748 |5 | |10376 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33748 |5 | |10376 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33749 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10376 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33750 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10376 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33751 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10376 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4633,9 +4637,9 @@ ROW |33775 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0
ROW |33776 |20 |1.3.6.1.2.1.1.2.0 |10377 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33778 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10377 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33779 |20 |1.3.6.1.2.1.1.6.0 |10377 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33780 |20 |1.3.6.1.2.1.1.1.0 |10377 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33781 |20 |1.3.6.1.2.1.1.4.0 |10377 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33782 |17 | |10377 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33780 |20 |1.3.6.1.2.1.1.1.0 |10377 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33781 |20 |1.3.6.1.2.1.1.4.0 |10377 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33782 |17 | |10377 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33783 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10377 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33784 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10377 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33785 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10377 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4649,7 +4653,7 @@ ROW |33795 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |33796 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10377 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33797 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10377 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33798 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10377 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33799 |5 | |10377 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33799 |5 | |10377 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33800 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10377 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33801 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10377 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33802 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10377 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4680,9 +4684,9 @@ ROW |33826 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0
ROW |33827 |20 |1.3.6.1.2.1.1.2.0 |10378 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33829 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10378 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33830 |20 |1.3.6.1.2.1.1.6.0 |10378 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33831 |20 |1.3.6.1.2.1.1.1.0 |10378 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33832 |20 |1.3.6.1.2.1.1.4.0 |10378 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33833 |17 | |10378 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33831 |20 |1.3.6.1.2.1.1.1.0 |10378 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33832 |20 |1.3.6.1.2.1.1.4.0 |10378 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33833 |17 | |10378 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33834 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10378 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33835 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10378 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33836 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10378 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4696,7 +4700,7 @@ ROW |33846 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |33847 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10378 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33848 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10378 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33849 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10378 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33850 |5 | |10378 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33850 |5 | |10378 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33851 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10378 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33852 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10378 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33853 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10378 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4727,9 +4731,9 @@ ROW |33877 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0
ROW |33878 |20 |1.3.6.1.2.1.1.2.0 |10379 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33880 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10379 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33881 |20 |1.3.6.1.2.1.1.6.0 |10379 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33882 |20 |1.3.6.1.2.1.1.1.0 |10379 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33883 |20 |1.3.6.1.2.1.1.4.0 |10379 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33884 |17 | |10379 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33882 |20 |1.3.6.1.2.1.1.1.0 |10379 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33883 |20 |1.3.6.1.2.1.1.4.0 |10379 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33884 |17 | |10379 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33885 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10379 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33886 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10379 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33887 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10379 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4743,7 +4747,7 @@ ROW |33897 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |33898 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10379 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33899 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10379 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33900 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10379 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33901 |5 | |10379 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33901 |5 | |10379 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33902 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10379 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33903 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10379 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33904 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10379 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4779,9 +4783,9 @@ ROW |33933 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0
ROW |33934 |20 |1.3.6.1.2.1.1.2.0 |10380 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33936 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10380 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33937 |20 |1.3.6.1.2.1.1.6.0 |10380 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33938 |20 |1.3.6.1.2.1.1.1.0 |10380 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33939 |20 |1.3.6.1.2.1.1.4.0 |10380 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33940 |17 | |10380 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33938 |20 |1.3.6.1.2.1.1.1.0 |10380 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33939 |20 |1.3.6.1.2.1.1.4.0 |10380 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33940 |17 | |10380 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33941 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10380 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33942 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10380 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33943 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10380 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4795,7 +4799,7 @@ ROW |33953 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |33954 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10380 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33955 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10380 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33956 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10380 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33957 |5 | |10380 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33957 |5 | |10380 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33958 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10380 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33959 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10380 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33960 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10380 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4826,9 +4830,9 @@ ROW |33984 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0
ROW |33985 |20 |1.3.6.1.2.1.1.2.0 |10381 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33987 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10381 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33988 |20 |1.3.6.1.2.1.1.6.0 |10381 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33989 |20 |1.3.6.1.2.1.1.1.0 |10381 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33990 |20 |1.3.6.1.2.1.1.4.0 |10381 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33991 |17 | |10381 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33989 |20 |1.3.6.1.2.1.1.1.0 |10381 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33990 |20 |1.3.6.1.2.1.1.4.0 |10381 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33991 |17 | |10381 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33992 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10381 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33993 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10381 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33994 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10381 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4842,7 +4846,7 @@ ROW |34004 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |34005 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10381 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34006 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10381 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34007 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10381 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34008 |5 | |10381 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34008 |5 | |10381 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34009 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10381 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34010 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10381 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34011 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10381 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4873,9 +4877,9 @@ ROW |34035 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0
ROW |34036 |20 |1.3.6.1.2.1.1.2.0 |10382 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34038 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10382 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34039 |20 |1.3.6.1.2.1.1.6.0 |10382 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34040 |20 |1.3.6.1.2.1.1.1.0 |10382 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34041 |20 |1.3.6.1.2.1.1.4.0 |10382 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34042 |17 | |10382 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34040 |20 |1.3.6.1.2.1.1.1.0 |10382 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34041 |20 |1.3.6.1.2.1.1.4.0 |10382 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34042 |17 | |10382 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34043 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10382 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34044 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10382 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34045 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10382 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4889,7 +4893,7 @@ ROW |34055 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0
ROW |34056 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10382 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34057 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10382 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34058 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10382 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34059 |5 | |10382 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34059 |5 | |10382 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34060 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10382 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34061 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10382 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34062 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10382 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -5646,13 +5650,13 @@ ROW |34843 |19 |
ROW |34844 |19 | |10399 |Nginx: Get HTTP zones |nginx.http.server_zones |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status information for each HTTP server zone. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/http/server_zones/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34944 |0 | |10328 |PostgreSQL: Cache hit |pgsql.cache.hit["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34945 |0 | |10328 |PostgreSQL: Age of oldest xid |pgsql.oldest.xid["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Age of oldest xid. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34946 |20 |1.3.6.1.2.1.1.4.0 |10400 |System contact details |cisco.ucs.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34947 |20 |1.3.6.1.2.1.1.1.0 |10400 |System description |cisco.ucs.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34946 |20 |1.3.6.1.2.1.1.4.0 |10400 |System contact details |cisco.ucs.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34947 |20 |1.3.6.1.2.1.1.1.0 |10400 |System description |cisco.ucs.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34948 |20 |1.3.6.1.2.1.1.6.0 |10400 |System location |cisco.ucs.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34949 |20 |1.3.6.1.2.1.1.5.0 |10400 |System name |cisco.ucs.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34950 |20 |1.3.6.1.2.1.1.2.0 |10400 |System object ID |cisco.ucs.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining 'what&eol;kind of box' is being managed. For example, if vendor 'Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its 'Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34951 |20 |1.3.6.1.2.1.1.3.0 |10400 |Uptime |cisco.ucs.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time in seconds since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34952 |17 | |10400 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34952 |17 | |10400 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34953 |5 | |10400 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34954 |20 |discovery[{#DISKARRAY_CACHE_LOCATION},1.3.6.1.4.1.9.9.719.1.45.11.1.2] |10400 |Array controller cache discovery |cisco.ucs.array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34955 |20 |discovery[{#DISKARRAY_LOCATION},1.3.6.1.4.1.9.9.719.1.45.1.1.2] |10400 |Array controller discovery |cisco.ucs.array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -6204,52 +6208,52 @@ ROW |35678 |20 |discovery[{#VSERVER.NAME},.1.3.6.1.4.1.3375.2.2.10.2.3.1.1]
ROW |35679 |20 |.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#SLOT.INDEX}:{#TEMP.INDEX}]: Temperature |bigip.blade.temp.value[{#SLOT.INDEX},{#TEMP.INDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;Location: {#TEMP.LOCATION}&eol;The blade temperature (in Celsius) of the indexed sensor on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |35680 |20 |.1.3.6.1.4.1.3375.2.1.3.2.5.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Voltage [{#VOLT.INDEX}]: Slot |bigip.blade.voltage.slot[{#VOLT.INDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The chassis slot number, if applicable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |35681 |20 |.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Voltage [{#VOLT.INDEX}]: Value |bigip.blade.voltage.value[{#VOLT.INDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The blade voltage (in V) of the indexed sensor on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35682 |20 |.1.3.6.1.4.1.3375.2.1.15.1.2.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Certificate [{#CERT.NAME}]: Expiration date |bigip.cert.expiration.date[{#CERT.NAME}] |1m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The expiration date of the certificate in unix time. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35683 |20 |.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: FAN [{#FAN.INDEX}]: Speed |bigip.chassis.fan.speed[{#FAN.INDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The actual speed of the indexed chassis fan on the system.&eol;This is only supported for the platform where the actual&eol;fan speed data is available.&eol;'0' means fan speed is unavailable while the associated chassis status is good. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35684 |20 |.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: FAN [{#FAN.INDEX}]: Status |bigip.chassis.fan.status[{#FAN.INDEX}] |1m |7d |365d |0 |3 | | | | |NULL |240 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The status of the indexed chassis fan on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available.&eol;Possible values: 0 - bad, 1 - good, 2 - notpresent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35685 |20 |.1.3.6.1.4.1.3375.2.1.3.2.2.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Power supply [{#POWER.INDEX}]: Status |bigip.chassis.power.status[{#POWER.INDEX}] |1m |7d |365d |0 |3 | | | | |NULL |240 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The status of the indexed power supply on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available.&eol;Possible values: 0 - bad, 1 - good, 2 - notpresent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35686 |20 |.1.3.6.1.4.1.3375.2.1.3.2.3.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#TEMP.INDEX}]: Temperature |bigip.chassis.temp.value[{#TEMP.INDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The chassis temperature (in Celsius) of the indexed sensor on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35687 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 1m |bigip.cpu.idle.1m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor doing nothing for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35688 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 5s |bigip.cpu.spftirq.5s[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing soft interrupts for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35689 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 5m |bigip.cpu.user.5m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor in user context for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35690 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 1m |bigip.cpu.user.1m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor in user context for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35691 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5s |bigip.cpu.usageratio.5s[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;This is average usage ratio of CPU for the associated host in the last five seconds. It is calculated by&eol;(sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait),&eol;where each delta is the difference for each stat over the last 5-second interval;&eol;user:sysMultiHostCpuUser5s;&eol;niced:sysMultiHostCpuNiced5s;&eol;stolen:sysMultiHostCpuStolen5s;&eol;system:sysMultiHostCpuSystem5s;&eol;idle:sysMultiHostCpuIdle5s;&eol;irq:sysMultiHostCpuIrq5s;&eol;iowait:sysMultiHostCpuIowait5s |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35692 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5m |bigip.cpu.usageratio.5m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;This is average usage ratio of CPU for the associated host in the last five minutes. It is calculated by&eol;(sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait),&eol;where each delta is the difference for each stat over the last 5-second interval;&eol;user:sysMultiHostCpuUser5m;&eol;niced:sysMultiHostCpuNiced5m;&eol;stolen:sysMultiHostCpuStolen5m;&eol;system:sysMultiHostCpuSystem5m;&eol;idle:sysMultiHostCpuIdle5m;&eol;irq:sysMultiHostCpuIrq5m;&eol;iowait:sysMultiHostCpuIowait5m |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35693 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 1m |bigip.cpu.usageratio.1m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;This is average usage ratio of CPU for the associated host in the last one minute. It is calculated by&eol;(sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait),&eol;where each delta is the difference for each stat over the last 5-second interval;&eol;user:sysMultiHostCpuUser1m;&eol;niced:sysMultiHostCpuNiced1m;&eol;stolen:sysMultiHostCpuStolen1m;&eol;system:sysMultiHostCpuSystem1m;&eol;idle:sysMultiHostCpuIdle1m;&eol;irq:sysMultiHostCpuIrq1m;&eol;iowait:sysMultiHostCpuIowait1m |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35694 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 5s |bigip.cpu.system.5s[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing system calls for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35695 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 5m |bigip.cpu.system.5m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing system calls for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35696 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 1m |bigip.cpu.system.1m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing system calls for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35697 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 5m |bigip.cpu.stolen.5m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time 'stolen' from the specified processor for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35698 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 1s) |bigip.cpu.stolen.1s[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time 'stolen' from the specified processor for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35699 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 1m |bigip.cpu.stolen.1m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time 'stolen' from the specified processor for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35700 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 5m |bigip.cpu.spftirq.5m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing soft interrupts for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35701 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 5m |bigip.cpu.idle.5m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor doing nothing for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35702 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 1m |bigip.cpu.spftirq.1m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing soft interrupts for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35703 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 5s |bigip.cpu.nice.5s[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor running niced processes for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35704 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 5m |bigip.cpu.nice.5m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor running niced processes for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35705 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 1m |bigip.cpu.nice.1m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor running niced processes for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35706 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 5s |bigip.cpu.irq.5s[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing hardware interrupts for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35707 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 5m |bigip.cpu.irq.5m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing hardware interrupts for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35708 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 1m |bigip.cpu.irq.1m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing hardware interrupts for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35709 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 5s |bigip.cpu.iowait.5s[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor waiting for external I/O to complete for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35710 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 5m |bigip.cpu.iowait.5m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor waiting for external I/O to complete for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35711 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 1m |bigip.cpu.iowait.1m[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor waiting for external I/O to complete for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35712 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 5s |bigip.cpu.idle.5s[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor doing nothing for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35713 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 5s |bigip.cpu.user.5s[{#HOST.ID},{#CPU.ID}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor in user context for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35714 |20 |.1.3.6.1.4.1.3375.2.1.3.6.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: FAN speed |bigip.cpu.sensor.fan[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;CPU: {#CPU.SENSOR.NAME}&eol;The fan speed (in RPM) of the indexed CPU on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35715 |20 |.1.3.6.1.4.1.3375.2.1.3.6.2.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: Name |bigip.cpu.sensor.name[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;Identifier for the CPU. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35716 |20 |.1.3.6.1.4.1.3375.2.1.3.6.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: Temperature |bigip.cpu.sensor.temperature[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;CPU: {#CPU.SENSOR.NAME}&eol;The temperature of the indexed CPU on the system.&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35717 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Block size |bigip.disktable.blocksize[{#PART.NAME}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of bytes in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35718 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Free blocks |bigip.disktable.freeblocks[{#PART.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of free blocks in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35719 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.6.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Free nodes |bigip.disktable.freenodes[{#PART.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of free file nodes in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35720 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Total blocks |bigip.disktable.totalblocks[{#PART.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of total blocks in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35721 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Total nodes |bigip.disktable.totalnodes[{#PART.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of total file nodes in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35722 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.7.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Total other non-TMM memory |bigip.memory.total.other[{#HOST.ID}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The total other non-TMM memory in bytes for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35723 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.9.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Total swap |bigip.memory.total.swap[{#HOST.ID}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The total swap in bytes for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35724 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Total memory |bigip.memory.total[{#HOST.ID}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The total host memory in bytes for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35725 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.8.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Used other non-TMM memory |bigip.memory.used.other[{#HOST.ID}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The other non-TMM memory in bytes currently in use for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35726 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.10.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Used swap |bigip.memory.used.swap[{#HOST.ID}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The swap in bytes currently in use for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35727 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Used memory |bigip.memory.used[{#HOST.ID}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The host memory in bytes currently in use for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35682 |20 |.1.3.6.1.4.1.3375.2.1.15.1.2.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Certificate [{#CERT.NAME}]: Expiration date |bigip.cert.expiration.date[{#CERT.NAME}] |6h |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The expiration date of the certificate in unix time. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35683 |20 |.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: FAN [{#FAN.INDEX}]: Speed |bigip.chassis.fan.speed[{#FAN.INDEX}] |5m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The actual speed of the indexed chassis fan on the system.&eol;This is only supported for the platform where the actual&eol;fan speed data is available.&eol;'0' means fan speed is unavailable while the associated chassis status is good. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35684 |20 |.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: FAN [{#FAN.INDEX}]: Status |bigip.chassis.fan.status[{#FAN.INDEX}] |5m |7d |365d |0 |3 | | | | |NULL |240 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The status of the indexed chassis fan on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available.&eol;Possible values: 0 - bad, 1 - good, 2 - notpresent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35685 |20 |.1.3.6.1.4.1.3375.2.1.3.2.2.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Power supply [{#POWER.INDEX}]: Status |bigip.chassis.power.status[{#POWER.INDEX}] |5m |7d |365d |0 |3 | | | | |NULL |240 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The status of the indexed power supply on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available.&eol;Possible values: 0 - bad, 1 - good, 2 - notpresent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35686 |20 |.1.3.6.1.4.1.3375.2.1.3.2.3.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#TEMP.INDEX}]: Temperature |bigip.chassis.temp.value[{#TEMP.INDEX}] |5m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The chassis temperature (in Celsius) of the indexed sensor on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35687 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 1m |bigip.cpu.idle.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor doing nothing for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35688 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 5s |bigip.cpu.spftirq.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing soft interrupts for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35689 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 5m |bigip.cpu.user.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor in user context for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35690 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 1m |bigip.cpu.user.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor in user context for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35691 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5s |bigip.cpu.usageratio.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;This is average usage ratio of CPU for the associated host in the last five seconds. It is calculated by&eol;(sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait),&eol;where each delta is the difference for each stat over the last 5-second interval;&eol;user:sysMultiHostCpuUser5s;&eol;niced:sysMultiHostCpuNiced5s;&eol;stolen:sysMultiHostCpuStolen5s;&eol;system:sysMultiHostCpuSystem5s;&eol;idle:sysMultiHostCpuIdle5s;&eol;irq:sysMultiHostCpuIrq5s;&eol;iowait:sysMultiHostCpuIowait5s |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35692 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5m |bigip.cpu.usageratio.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;This is average usage ratio of CPU for the associated host in the last five minutes. It is calculated by&eol;(sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait),&eol;where each delta is the difference for each stat over the last 5-second interval;&eol;user:sysMultiHostCpuUser5m;&eol;niced:sysMultiHostCpuNiced5m;&eol;stolen:sysMultiHostCpuStolen5m;&eol;system:sysMultiHostCpuSystem5m;&eol;idle:sysMultiHostCpuIdle5m;&eol;irq:sysMultiHostCpuIrq5m;&eol;iowait:sysMultiHostCpuIowait5m |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35693 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 1m |bigip.cpu.usageratio.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;This is average usage ratio of CPU for the associated host in the last one minute. It is calculated by&eol;(sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait),&eol;where each delta is the difference for each stat over the last 5-second interval;&eol;user:sysMultiHostCpuUser1m;&eol;niced:sysMultiHostCpuNiced1m;&eol;stolen:sysMultiHostCpuStolen1m;&eol;system:sysMultiHostCpuSystem1m;&eol;idle:sysMultiHostCpuIdle1m;&eol;irq:sysMultiHostCpuIrq1m;&eol;iowait:sysMultiHostCpuIowait1m |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35694 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 5s |bigip.cpu.system.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing system calls for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35695 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 5m |bigip.cpu.system.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing system calls for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35696 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 1m |bigip.cpu.system.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing system calls for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35697 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 5m |bigip.cpu.stolen.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time 'stolen' from the specified processor for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35698 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 1s) |bigip.cpu.stolen.1s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time 'stolen' from the specified processor for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35699 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 1m |bigip.cpu.stolen.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time 'stolen' from the specified processor for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35700 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 5m |bigip.cpu.spftirq.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing soft interrupts for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35701 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 5m |bigip.cpu.idle.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor doing nothing for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35702 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 1m |bigip.cpu.spftirq.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing soft interrupts for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35703 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 5s |bigip.cpu.nice.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor running niced processes for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35704 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 5m |bigip.cpu.nice.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor running niced processes for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35705 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 1m |bigip.cpu.nice.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor running niced processes for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35706 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 5s |bigip.cpu.irq.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing hardware interrupts for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35707 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 5m |bigip.cpu.irq.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing hardware interrupts for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35708 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 1m |bigip.cpu.irq.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing hardware interrupts for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35709 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 5s |bigip.cpu.iowait.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor waiting for external I/O to complete for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35710 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 5m |bigip.cpu.iowait.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor waiting for external I/O to complete for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35711 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 1m |bigip.cpu.iowait.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor waiting for external I/O to complete for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35712 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 5s |bigip.cpu.idle.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor doing nothing for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35713 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 5s |bigip.cpu.user.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor in user context for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35714 |20 |.1.3.6.1.4.1.3375.2.1.3.6.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: FAN speed |bigip.cpu.sensor.fan[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}] |5m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;CPU: {#CPU.SENSOR.NAME}&eol;The fan speed (in RPM) of the indexed CPU on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35715 |20 |.1.3.6.1.4.1.3375.2.1.3.6.2.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: Name |bigip.cpu.sensor.name[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;Identifier for the CPU. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35716 |20 |.1.3.6.1.4.1.3375.2.1.3.6.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: Temperature |bigip.cpu.sensor.temperature[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}] |5m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;CPU: {#CPU.SENSOR.NAME}&eol;The temperature of the indexed CPU on the system.&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35717 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Block size |bigip.disktable.blocksize[{#PART.NAME}] |1h |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of bytes in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35718 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Free blocks |bigip.disktable.freeblocks[{#PART.NAME}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of free blocks in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35719 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.6.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Free nodes |bigip.disktable.freenodes[{#PART.NAME}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of free file nodes in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35720 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Total blocks |bigip.disktable.totalblocks[{#PART.NAME}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of total blocks in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35721 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Total nodes |bigip.disktable.totalnodes[{#PART.NAME}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of total file nodes in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35722 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.7.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Total other non-TMM memory |bigip.memory.total.other[{#HOST.ID}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The total other non-TMM memory in bytes for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35723 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.9.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Total swap |bigip.memory.total.swap[{#HOST.ID}] |1d |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The total swap in bytes for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35724 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Total memory |bigip.memory.total[{#HOST.ID}] |1d |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The total host memory in bytes for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35725 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.8.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Used other non-TMM memory |bigip.memory.used.other[{#HOST.ID}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The other non-TMM memory in bytes currently in use for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35726 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.10.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Used swap |bigip.memory.used.swap[{#HOST.ID}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The swap in bytes currently in use for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35727 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Used memory |bigip.memory.used[{#HOST.ID}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The host memory in bytes currently in use for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |35728 |20 |.1.3.6.1.4.1.3375.2.1.11.1.2.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Module [{#MODULE.NAME}]: CPU ratio |bigip.module.cpu.ratio[{#MODULE.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The ratio of CPU to allocate to this module. Only valid if level is 'custom' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |35729 |20 |.1.3.6.1.4.1.3375.2.1.11.1.2.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Module [{#MODULE.NAME}]: Disk ratio |bigip.module.disk.ratio[{#MODULE.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The ratio of available disk space to allocate to this module. Only valid if level is 'custom' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |35730 |20 |.1.3.6.1.4.1.3375.2.1.11.1.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Module [{#MODULE.NAME}]: Memory ratio |bigip.module.memory.ratio[{#MODULE.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The ratio of available memory to allocate. Only valid if level is 'custom' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -6268,32 +6272,32 @@ ROW |35742 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.7.{#SNMPINDEX}
ROW |35743 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing packet, rate |bigip.net.out.pkts.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of packets transmitted out of the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |35744 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.14.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing QnQ packet, rate |bigip.net.out.qq.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of double tagged packets transmitted out of the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |35745 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.15.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Pause state |bigip.net.pause[{#IF.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |242 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The pause state of the specified interface.&eol;none - no pause;&eol;txrx - pause all data flow;&eol;tx - pause out going data flow;&eol;rx - pause in coming data flow. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35746 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Current connections |bigip.node.net.conn[{#NODE.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The current connections from server-side to the specified node address. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35747 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Incoming traffic, rate |bigip.node.net.in.bytes.rate[{#NODE.NAME}] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes received by the specified node address from server-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35748 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Incoming packet, rate |bigip.node.net.in.pkts.rate[{#NODE.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets received by the specified node address from server-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35749 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.6.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Outgoing traffic, rate |bigip.node.net.out.bytes.rate[{#NODE.NAME}] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes sent to server-side from the specified node address. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35750 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Outgoing packet, rate |bigip.node.net.out.pkts.rate[{#NODE.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets sent to server-side from the specified node address. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35751 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.21.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Current sessions |bigip.node.net.sessions[{#NODE.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The number of current sessions going through the specified node address. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35752 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.22.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Connections hit a rate limit |bigip.node.overlimit[{#NODE.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The last recorded value for the number of connections to the node address when connections hit a rate limit;&eol;this calculation is only maintained if rate limiting is configured for the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35753 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.23.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Duration of exceeding rate limit |bigip.node.overtime[{#NODE.NAME}] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;Duration of time in seconds the specified node address has exceeded the&eol;configured connection rate limit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35754 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Current connections |bigip.pool.net.conn[{#POOL.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The current connections from server-side to the specified pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35755 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Incoming traffic, rate |bigip.pool.net.in.bytes.rate[{#POOL.NAME}] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes received by the specified pool from server-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35756 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Incoming packet, rate |bigip.pool.net.in.pkts.rate[{#POOL.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets received by the specified pool from server-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35757 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Outgoing traffic, rate |bigip.pool.net.out.bytes.rate[{#POOL.NAME}] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes sent to server-side from the specified pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35758 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Outgoing packet, rate |bigip.pool.net.out.pkts.rate[{#POOL.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets sent to server-side from the specified pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35759 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.31.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Current sessions |bigip.pool.net.sessions[{#POOL.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The number of current sessions going through the specified pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35760 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.19.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Age of the oldest queue entry |bigip.pool.queue.age[{#POOL.NAME}] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;Age of the oldest queue entry, max. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35761 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.18.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Queue |bigip.pool.queue[{#POOL.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;Number of connections currently in queue, sum. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35762 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Current connections |bigip.vserver.net.conn[{#VSERVER.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The current connections from client-side to the specified virtual server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35763 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.7.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Incoming traffic, rate |bigip.vserver.net.in.bytes.rate[{#VSERVER.NAME}] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes received by the specified virtual server from client-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35764 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.6.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Incoming packet, rate |bigip.vserver.net.in.pkts.rate[{#VSERVER.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets received by the specified virtual server from client-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35765 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.9.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Outgoing traffic, rate |bigip.vserver.net.out.bytes.rate[{#VSERVER.NAME}] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes sent to client-side from the specified virtual server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35766 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.8.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Outgoing packet, rate |bigip.vserver.net.out.pkts.rate[{#VSERVER.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets sent to client-side from the specified virtual server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35767 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.34.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Connections hit a rate limit |bigip.vserver.overlimit[{#VSERVER.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The last recorded value for the number of connections to the virtual server when connections hit a rate limit;&eol;this calculation is only maintained if rate limiting is configured for the service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35768 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.35.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Duration of exceeding rate limit |bigip.vserver.overtime[{#VSERVER.NAME}] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;Duration of time in seconds the specified virtual server has exceeded the configured connection rate limit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35769 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.32.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 1m |bigip.vserver.usage.1m[{#VSERVER.NAME}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The percentage of time Virtual Server was busy over the last 1 minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35770 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.33.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 5m |bigip.vserver.usage.5m[{#VSERVER.NAME}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The percentage of time Virtual Server was busy over the last 5 minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35771 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.31.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 5s |bigip.vserver.usage.5s[{#VSERVER.NAME}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The percentage of time Virtual Server was busy over the last 5 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35746 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Current connections |bigip.node.net.conn[{#NODE.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The current connections from server-side to the specified node address. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35747 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Incoming traffic, rate |bigip.node.net.in.bytes.rate[{#NODE.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes received by the specified node address from server-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35748 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Incoming packet, rate |bigip.node.net.in.pkts.rate[{#NODE.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets received by the specified node address from server-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35749 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.6.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Outgoing traffic, rate |bigip.node.net.out.bytes.rate[{#NODE.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes sent to server-side from the specified node address. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35750 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Outgoing packet, rate |bigip.node.net.out.pkts.rate[{#NODE.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets sent to server-side from the specified node address. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35751 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.21.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Current sessions |bigip.node.net.sessions[{#NODE.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The number of current sessions going through the specified node address. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35752 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.22.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Connections hit a rate limit |bigip.node.overlimit[{#NODE.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The last recorded value for the number of connections to the node address when connections hit a rate limit;&eol;this calculation is only maintained if rate limiting is configured for the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35753 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.23.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Duration of exceeding rate limit |bigip.node.overtime[{#NODE.NAME}] |5m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;Duration of time in seconds the specified node address has exceeded the&eol;configured connection rate limit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35754 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Current connections |bigip.pool.net.conn[{#POOL.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The current connections from server-side to the specified pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35755 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Incoming traffic, rate |bigip.pool.net.in.bytes.rate[{#POOL.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes received by the specified pool from server-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35756 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Incoming packet, rate |bigip.pool.net.in.pkts.rate[{#POOL.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets received by the specified pool from server-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35757 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Outgoing traffic, rate |bigip.pool.net.out.bytes.rate[{#POOL.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes sent to server-side from the specified pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35758 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Outgoing packet, rate |bigip.pool.net.out.pkts.rate[{#POOL.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets sent to server-side from the specified pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35759 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.31.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Current sessions |bigip.pool.net.sessions[{#POOL.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The number of current sessions going through the specified pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35760 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.19.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Age of the oldest queue entry |bigip.pool.queue.age[{#POOL.NAME}] |5m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;Age of the oldest queue entry, max. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35761 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.18.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Queue |bigip.pool.queue[{#POOL.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;Number of connections currently in queue, sum. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35762 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Current connections |bigip.vserver.net.conn[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The current connections from client-side to the specified virtual server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35763 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.7.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Incoming traffic, rate |bigip.vserver.net.in.bytes.rate[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes received by the specified virtual server from client-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35764 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.6.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Incoming packet, rate |bigip.vserver.net.in.pkts.rate[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets received by the specified virtual server from client-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35765 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.9.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Outgoing traffic, rate |bigip.vserver.net.out.bytes.rate[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes sent to client-side from the specified virtual server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35766 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.8.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Outgoing packet, rate |bigip.vserver.net.out.pkts.rate[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets sent to client-side from the specified virtual server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35767 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.34.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Connections hit a rate limit |bigip.vserver.overlimit[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The last recorded value for the number of connections to the virtual server when connections hit a rate limit;&eol;this calculation is only maintained if rate limiting is configured for the service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35768 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.35.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Duration of exceeding rate limit |bigip.vserver.overtime[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;Duration of time in seconds the specified virtual server has exceeded the configured connection rate limit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35769 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.32.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 1m |bigip.vserver.usage.1m[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The percentage of time Virtual Server was busy over the last 1 minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35770 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.33.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 5m |bigip.vserver.usage.5m[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The percentage of time Virtual Server was busy over the last 5 minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35771 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.31.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 5s |bigip.vserver.usage.5s[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The percentage of time Virtual Server was busy over the last 5 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |35772 |0 | |10416 |Cert: Get |web.certificate.get[{$CERT.WEBSITE.HOSTNAME},{$CERT.WEBSITE.PORT},{$CERT.WEBSITE.IP}] |15m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns the JSON with attributes of a certificate of the requested site. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |35786 |15 | |10308 |HAProxy Frontend {#PXNAME}: Session utilization |haproxy.frontend.sutil[{#PXNAME},{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("haproxy.frontend.scur[{#PXNAME},{#SVNAME}]") / last("haproxy.frontend.slim[{#PXNAME},{#SVNAME}]") * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |35845 |15 | |10309 |HAProxy Frontend {#PXNAME}: Session utilization |haproxy.frontend.sutil[{#PXNAME},{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("haproxy.frontend.scur[{#PXNAME},{#SVNAME}]") / last("haproxy.frontend.slim[{#PXNAME},{#SVNAME}]") * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -6987,6 +6991,12 @@ ROW |36607 |7 |
ROW |36608 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFGUID}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |36609 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFGUID}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |36610 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFGUID}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36626 |20 |1.3.6.1.4.1.3375.2.1.14.1.1.0 |10415 |F5 BIG-IP: Sync Status |bigip.syncstatus |1m |7d |365d |0 |3 | | | | |NULL |254 | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The sync status ID on the system.&eol;unknown - the device is disconnected from the device group;&eol;syncing - the device is joining the device group or has requested changes from device group or inconsistent with the group;&eol;needManualSync - changes have been made on the device not syncd to the device group;&eol;inSync - the device is consistent with the device group;&eol;syncFailed - the device is inconsistent with the device group, requires user intervention;&eol;syncDisconnected - the device is not connected to any peers;&eol;standalone - the device is in a standalone configuration;&eol;awaitingInitialSync - the device is waiting for initial sync;&eol;incompatibleVersion - the device's version is incompatible with rest of the devices in the device group;&eol;partialSync - some but not all devices successfully received the last sync. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36627 |20 |1.3.6.1.4.1.3375.2.1.14.3.1.0 |10415 |F5 BIG-IP: Failover status |bigip.failover |1m |7d |365d |0 |3 | | | | |NULL |253 | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The failover status ID on the system.&eol;unknown - the failover status of the device is unknown;&eol;offline - the device is offline;&eol;forcedOffline - the device is forced offline;&eol;standby - the device is standby;&eol;active - the device is active. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36628 |20 |1.3.6.1.4.1.3375.2.2.5.5.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Status available |bigip.pool.available[{#POOL.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |252 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;none(0),&eol;green(1),&eol;tyellow(2),&eol;tred(3),&eol;tblue(4),&eol;tgrey(5) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36629 |20 |1.3.6.1.4.1.3375.2.2.5.5.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Status enabled |bigip.pool.enabled[{#POOL.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |251 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The activity status of the specified pool, as specified by the user.&eol;none(0),&eol;enabled(1),&eol;disabled(2),&eol;disabledbyparent(3) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36630 |0 | |10289 |{#DEVNAME}: Disk utilization by idle time |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Idle Time",60] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests based on idle time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36632 |7 | |10296 |{#DEVNAME}: Disk utilization by idle time |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Idle Time",60] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests based on idle time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
TABLE |items
FIELDS|itemid|type|snmp_oid|hostid|name |key_ |delay|history|trends|status|value_type|trapper_hosts|units |formula|logtimefmt|templateid|valuemapid|params|ipmi_sensor|authtype|username|password|publickey|privatekey|flags|interfaceid|description |inventory_link|lifetime|evaltype|jmx_endpoint|master_itemid|timeout|url |query_fields|posts|status_codes|follow_redirects|post_type|headers|retrieve_mode|request_method|output_format|verify_peer|verify_host|allow_traps|discover|
@@ -7205,7 +7215,7 @@ ROW |29398 |18 | |10285 |System local time
ROW |29399 |18 | |10285 |CPU steal time |system.cpu.steal[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of CPU 'stolen' from this virtual machine by the hypervisor for other tasks (such as running another virtual machine). |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29400 |18 | |10285 |Free swap space |system.swap.free[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29401 |18 | |10285 |Total swap space |system.swap.total[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29402 |18 | |10285 |Available memory |vm.memory.available[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29402 |18 | |10285 |Available memory |vm.memory.available[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29403 |18 | |10285 |Total memory |vm.memory.total[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29404 |18 | |10285 |System boot time |system.boottime[node_exporter] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29405 |18 | |10285 |Context switches per second |system.cpu.switches[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -7241,7 +7251,7 @@ ROW |29440 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Inbound pack
ROW |29441 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[node_exporter,"{#IFNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29442 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[node_exporter,"{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Sets value to 0 if metric is missing in node_exporter output. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29443 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[node_exporter,"{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |node_network_protocol_type protocol_type value of /sys/class/net/<iface>. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29444 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[node_exporter,"{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29444 |18 | |10285 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[node_exporter,"{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |255 | | |0 | | | | |2 |NULL |Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29445 |18 | |10285 |{#FSNAME}: Free space |vfs.fs.free[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29446 |18 | |10285 |{#FSNAME}: Total space |vfs.fs.total[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29447 |18 | |10285 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9092,6 +9102,7 @@ ROW |36618 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Operational
ROW |36619 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFGUID}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |36601 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |36623 |18 | |10355 |SMART [{#NAME}]: ID {#ID} {#ATTRNAME} raw value |smart.disk.attr.raw[{#NAME},{#ID}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |36624 |18 | |10356 |SMART [{#NAME}]: ID {#ID} {#ATTRNAME} raw value |smart.disk.attr.raw[{#NAME},{#ID}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36625 |18 | |10318 |Container {#NAME}: CPU percent usage |docker.container_stats.cpu_pct_usage["{#NAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30573 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
TABLE |items
FIELDS|itemid|type|snmp_oid|hostid|name |key_ |delay|history|trends|status|value_type|trapper_hosts|units|formula|logtimefmt|templateid|valuemapid|params|ipmi_sensor|authtype|username|password|publickey|privatekey|flags|interfaceid|description |inventory_link|lifetime|evaltype|jmx_endpoint|master_itemid|timeout|url |query_fields|posts|status_codes|follow_redirects|post_type|headers|retrieve_mode|request_method|output_format|verify_peer|verify_host|allow_traps|discover|
@@ -9186,9 +9197,9 @@ ROW |27188 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27189 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27190 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10207 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27191 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10207 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27195 |17 | |10207 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27199 |20 |1.3.6.1.2.1.1.5.0 |10207 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27202 |5 | |10207 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27195 |17 | |10207 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27199 |20 |1.3.6.1.2.1.1.5.0 |10207 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27202 |5 | |10207 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27215 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10208 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27216 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27217 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9199,9 +9210,9 @@ ROW |27221 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27222 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27223 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27224 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10208 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27228 |17 | |10208 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27232 |20 |1.3.6.1.2.1.1.5.0 |10208 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27235 |5 | |10208 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27228 |17 | |10208 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27232 |20 |1.3.6.1.2.1.1.5.0 |10208 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27235 |5 | |10208 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27251 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10210 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27252 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27253 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9212,9 +9223,9 @@ ROW |27257 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27258 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27259 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27260 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10210 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27264 |17 | |10210 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27268 |20 |1.3.6.1.2.1.1.5.0 |10210 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27271 |5 | |10210 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27264 |17 | |10210 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27268 |20 |1.3.6.1.2.1.1.5.0 |10210 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27271 |5 | |10210 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27272 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10211 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27273 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27274 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9225,9 +9236,9 @@ ROW |27278 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27279 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27280 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27281 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10211 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27285 |17 | |10211 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27289 |20 |1.3.6.1.2.1.1.5.0 |10211 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27292 |5 | |10211 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27285 |17 | |10211 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27289 |20 |1.3.6.1.2.1.1.5.0 |10211 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27292 |5 | |10211 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27299 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10210 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |27294 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27301 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10211 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |27294 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27321 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10218 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9242,12 +9253,12 @@ ROW |27329 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27330 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27331 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10218 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27332 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10218 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27336 |17 | |10218 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27340 |20 |1.3.6.1.2.1.1.5.0 |10218 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27343 |5 | |10218 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27368 |17 | |10220 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27372 |20 |1.3.6.1.2.1.1.5.0 |10220 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27375 |5 | |10220 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27336 |17 | |10218 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27340 |20 |1.3.6.1.2.1.1.5.0 |10218 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27343 |5 | |10218 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27368 |17 | |10220 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27372 |20 |1.3.6.1.2.1.1.5.0 |10220 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27375 |5 | |10220 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27380 |20 |1.3.6.1.4.1.9.2.1.58 |10220 |CPU utilization |system.cpu.util[avgBusy5] |5m |7d |365d |0 |0 | |% | | |27376 |NULL | | |0 | | | | |0 |NULL |MIB: OLD-CISCO-CPU-MIB&eol;5 minute exponentially-decayed moving average of the CPU busy percentage.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27382 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10220 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |27378 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27383 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10220 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9291,9 +9302,9 @@ ROW |27458 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27459 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27460 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10221 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27461 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10221 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27465 |17 | |10221 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27469 |20 |1.3.6.1.2.1.1.5.0 |10221 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27472 |5 | |10221 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27465 |17 | |10221 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27469 |20 |1.3.6.1.2.1.1.5.0 |10221 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27472 |5 | |10221 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27486 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10222 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27487 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27488 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9304,9 +9315,9 @@ ROW |27492 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27493 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27494 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27495 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10222 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27499 |17 | |10222 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27503 |20 |1.3.6.1.2.1.1.5.0 |10222 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27506 |5 | |10222 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27499 |17 | |10222 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27503 |20 |1.3.6.1.2.1.1.5.0 |10222 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27506 |5 | |10222 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27520 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10223 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27521 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27522 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9319,9 +9330,9 @@ ROW |27528 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27529 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27530 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10223 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27531 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10223 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27535 |17 | |10223 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27539 |20 |1.3.6.1.2.1.1.5.0 |10223 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27542 |5 | |10223 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27535 |17 | |10223 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27539 |20 |1.3.6.1.2.1.1.5.0 |10223 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27542 |5 | |10223 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27556 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10224 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27557 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27558 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9334,9 +9345,9 @@ ROW |27564 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27565 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27566 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10224 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27567 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10224 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27571 |17 | |10224 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27575 |20 |1.3.6.1.2.1.1.5.0 |10224 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27578 |5 | |10224 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27571 |17 | |10224 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27575 |20 |1.3.6.1.2.1.1.5.0 |10224 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27578 |5 | |10224 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27619 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10226 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27620 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27621 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9349,9 +9360,9 @@ ROW |27627 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27628 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10226 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27629 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10226 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27630 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10226 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27634 |17 | |10226 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27638 |20 |1.3.6.1.2.1.1.5.0 |10226 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27641 |5 | |10226 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27634 |17 | |10226 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27638 |20 |1.3.6.1.2.1.1.5.0 |10226 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27641 |5 | |10226 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27642 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10227 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27643 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27644 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9364,9 +9375,9 @@ ROW |27650 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27651 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27652 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10227 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27653 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10227 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27657 |17 | |10227 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27661 |20 |1.3.6.1.2.1.1.5.0 |10227 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27664 |5 | |10227 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27657 |17 | |10227 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27661 |20 |1.3.6.1.2.1.1.5.0 |10227 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27664 |5 | |10227 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27722 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10229 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27723 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27724 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9379,9 +9390,9 @@ ROW |27730 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27731 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27732 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10229 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27733 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10229 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27737 |17 | |10229 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27741 |20 |1.3.6.1.2.1.1.5.0 |10229 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27744 |5 | |10229 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27737 |17 | |10229 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27741 |20 |1.3.6.1.2.1.1.5.0 |10229 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27744 |5 | |10229 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27756 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10230 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27757 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27758 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9392,9 +9403,9 @@ ROW |27762 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27763 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27764 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27765 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10230 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27769 |17 | |10230 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27773 |20 |1.3.6.1.2.1.1.5.0 |10230 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27776 |5 | |10230 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27769 |17 | |10230 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27773 |20 |1.3.6.1.2.1.1.5.0 |10230 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27776 |5 | |10230 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27788 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10231 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27789 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27790 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9407,9 +9418,9 @@ ROW |27796 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27797 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27798 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10231 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27799 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10231 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27803 |17 | |10231 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27807 |20 |1.3.6.1.2.1.1.5.0 |10231 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27810 |5 | |10231 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27803 |17 | |10231 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27807 |20 |1.3.6.1.2.1.1.5.0 |10231 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27810 |5 | |10231 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27872 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10233 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27873 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27874 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9420,9 +9431,9 @@ ROW |27878 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27879 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27880 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27881 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27885 |17 | |10233 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27889 |20 |1.3.6.1.2.1.1.5.0 |10233 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27892 |5 | |10233 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27885 |17 | |10233 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27889 |20 |1.3.6.1.2.1.1.5.0 |10233 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27892 |5 | |10233 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27909 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10234 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27910 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27911 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9433,9 +9444,9 @@ ROW |27915 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |27916 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27917 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27918 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10234 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27922 |17 | |10234 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27926 |20 |1.3.6.1.2.1.1.5.0 |10234 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27929 |5 | |10234 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27922 |17 | |10234 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27926 |20 |1.3.6.1.2.1.1.5.0 |10234 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27929 |5 | |10234 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27944 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10235 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27945 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27946 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9448,9 +9459,9 @@ ROW |27952 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |27953 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27954 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10235 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27955 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10235 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27959 |17 | |10235 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27963 |20 |1.3.6.1.2.1.1.5.0 |10235 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27966 |5 | |10235 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27959 |17 | |10235 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27963 |20 |1.3.6.1.2.1.1.5.0 |10235 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27966 |5 | |10235 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27976 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10236 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27977 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27978 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9461,9 +9472,9 @@ ROW |27982 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}
ROW |27983 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27081 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27984 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27087 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27985 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10236 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27989 |17 | |10236 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27993 |20 |1.3.6.1.2.1.1.5.0 |10236 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27996 |5 | |10236 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27989 |17 | |10236 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27993 |20 |1.3.6.1.2.1.1.5.0 |10236 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27996 |5 | |10236 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28005 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFNAME},1.3.6.1.2.1.2.2.1.2,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10237 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27078 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28006 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27079 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28007 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27086 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9474,9 +9485,9 @@ ROW |28011 |20 |1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX}
ROW |28012 |20 |1.3.6.1.2.1.2.2.1.5.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Speed |net.if.speed[ifSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27081 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second.&eol;For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made,&eol;this object should contain the nominal bandwidth.&eol;If the bandwidth of the interface is greater than the maximum value reportable by this object then&eol;this object should report its maximum value (4,294,967,295) and ifHighSpeed must be used to report the interace's speed.&eol;For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28013 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27087 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28014 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10237 |Interface {#IFDESCR}: Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27080 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28018 |17 | |10237 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28022 |20 |1.3.6.1.2.1.1.5.0 |10237 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28025 |5 | |10237 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28018 |17 | |10237 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28022 |20 |1.3.6.1.2.1.1.5.0 |10237 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28025 |5 | |10237 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28118 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10250 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28119 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28120 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9489,9 +9500,9 @@ ROW |28126 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX}
ROW |28127 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28128 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10250 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28129 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10250 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28133 |17 | |10250 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28137 |20 |1.3.6.1.2.1.1.5.0 |10250 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28140 |5 | |10250 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28133 |17 | |10250 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28137 |20 |1.3.6.1.2.1.1.5.0 |10250 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28140 |5 | |10250 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28207 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10253 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |27393 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28208 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10253 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |27419 |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28209 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10253 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9516,17 +9527,17 @@ ROW |28229 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |28230 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28231 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28232 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10253 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28236 |17 | |10253 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28240 |20 |1.3.6.1.2.1.1.5.0 |10253 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28243 |5 | |10253 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28236 |17 | |10253 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28240 |20 |1.3.6.1.2.1.1.5.0 |10253 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28243 |5 | |10253 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28245 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10253 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |28244 |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28247 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX} |10253 |{#SNMPVALUE}: CPU utilization |system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |28246 |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The overall CPU busy percentage in the last 5 minute&eol;period. This object deprecates the avgBusy5 object from&eol;the OLD-CISCO-SYSTEM-MIB. This object is deprecated&eol;by cpmCPUTotal5minRev which has the changed range&eol;of value (0..100)&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28249 |5 | |10084 |Zabbix server: Preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |28248 |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28280 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10254 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28281 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28285 |17 | |10254 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28289 |20 |1.3.6.1.2.1.1.5.0 |10254 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28292 |5 | |10254 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28285 |17 | |10254 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28289 |20 |1.3.6.1.2.1.1.5.0 |10254 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28292 |5 | |10254 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28293 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10254 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28294 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28295 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9537,26 +9548,26 @@ ROW |28299 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |28300 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28301 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28302 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10254 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28333 |17 | |10255 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28337 |20 |1.3.6.1.2.1.1.5.0 |10255 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28340 |5 | |10255 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28380 |17 | |10256 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28384 |20 |1.3.6.1.2.1.1.5.0 |10256 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28387 |5 | |10256 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28457 |17 | |10258 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28461 |20 |1.3.6.1.2.1.1.5.0 |10258 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28464 |5 | |10258 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28485 |17 | |10259 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28489 |20 |1.3.6.1.2.1.1.5.0 |10259 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28492 |5 | |10259 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28333 |17 | |10255 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28337 |20 |1.3.6.1.2.1.1.5.0 |10255 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28340 |5 | |10255 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28380 |17 | |10256 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28384 |20 |1.3.6.1.2.1.1.5.0 |10256 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28387 |5 | |10256 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28457 |17 | |10258 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28461 |20 |1.3.6.1.2.1.1.5.0 |10258 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28464 |5 | |10258 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28485 |17 | |10259 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28489 |20 |1.3.6.1.2.1.1.5.0 |10259 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28492 |5 | |10259 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28534 |5 | |10084 |Zabbix server: LLD queue |zabbix[lld_queue] |1m |1w |365d |0 |3 | | | | |28533 |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the low-level discovery processing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28536 |5 | |10084 |Zabbix server: Utilization of LLD manager internal processes, in % |zabbix[process,lld manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |28535 |NULL | | |0 | | | | |0 |NULL |Average percentage of time lld manager processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28538 |5 | |10084 |Zabbix server: Utilization of LLD worker internal processes, in % |zabbix[process,lld worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |28537 |NULL | | |0 | | | | |0 |NULL |Average percentage of time lld worker processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28955 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.10.7.2.1.19,{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2] |10248 |EtherLike-MIB Discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |27031 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28956 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[dot3StatsDuplexStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |27032 |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;The current mode of operation of the MAC&eol;entity. 'unknown' indicates that the current&eol;duplex mode could not be determined.&eol;&eol;Management control of the duplex mode is&eol;accomplished through the MAU MIB. When&eol;an interface does not support autonegotiation,&eol;or when autonegotiation is not enabled, the&eol;duplex mode is controlled using&eol;ifMauDefaultType. When autonegotiation is&eol;supported and enabled, duplex mode is controlled&eol;using ifMauAutoNegAdvertisedBits. In either&eol;case, the currently operating duplex mode is&eol;reflected both in this object and in ifMauType.&eol;&eol;Note that this object provides redundant&eol;information with ifMauType. Normally, redundant&eol;objects are discouraged. However, in this&eol;instance, it allows a management application to&eol;determine the duplex status of an interface&eol;without having to know every possible value of&eol;ifMauType. This was felt to be sufficiently&eol;valuable to justify the redundancy.&eol;Reference: [IEEE 802.3 Std.], 30.3.1.1.32,aDuplexStatus.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28960 |17 | |10248 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28964 |20 |1.3.6.1.2.1.1.5.0 |10248 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28967 |5 | |10248 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28960 |17 | |10248 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28964 |20 |1.3.6.1.2.1.1.5.0 |10248 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28967 |5 | |10248 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28968 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10248 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28969 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28970 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9601,9 +9612,9 @@ ROW |29044 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}
ROW |29045 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10248 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |29028 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29046 |15 | |10248 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29029 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29047 |20 |1.3.6.1.4.1.2021.9.1.10["index","1.3.6.1.4.1.2021.9.1.2", "{#FSNAME}"] |10248 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[dskPercentNode.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29030 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;If having problems collecting this item make sure access to UCD-SNMP-MIB is allowed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29053 |17 | |10249 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29057 |20 |1.3.6.1.2.1.1.5.0 |10249 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29060 |5 | |10249 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29053 |17 | |10249 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29057 |20 |1.3.6.1.2.1.1.5.0 |10249 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29060 |5 | |10249 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29077 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10249 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27118 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29078 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27119 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29079 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10249 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27126 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9630,9 +9641,9 @@ ROW |29136 |0 |
ROW |29137 |0 | |10001 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |29100 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29138 |0 | |10001 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |29101 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29139 |0 | |10001 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |29102 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29140 |0 | |10001 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29103 |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29140 |0 | |10001 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29103 |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29141 |0 | |10001 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29104 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29142 |0 | |10001 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29105 |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29142 |0 | |10001 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29105 |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29143 |0 | |10001 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29106 |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29144 |0 | |10001 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29107 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29145 |0 | |10001 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29108 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9640,7 +9651,7 @@ ROW |29147 |0 |
ROW |29148 |0 | |10001 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29111 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29149 |0 | |10001 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29112 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29150 |0 | |10001 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29113 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29151 |0 | |10001 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29114 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29151 |0 | |10001 |System description |system.uname |15m |2w |0 |0 |1 | | | | |29114 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29152 |0 | |10001 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29115 |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29153 |0 | |10001 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29116 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29154 |0 | |10001 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29117 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9662,7 +9673,7 @@ ROW |29232 |0 |
ROW |29233 |0 | |10001 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29219 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29234 |0 | |10001 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29220 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29235 |0 | |10001 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29221 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29236 |0 | |10001 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |29222 |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29236 |0 | |10001 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |29222 |255 | | |0 | | | | |2 |NULL |Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29237 |0 | |10001 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |29223 |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29310 |7 | |10284 |Number of CPUs |system.cpu.num |1m |7d |365d |0 |3 | | | | |29273 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29311 |7 | |10284 |CPU iowait time |system.cpu.util[,iowait] |1m |7d |365d |0 |0 | |% | | |29274 |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9680,9 +9691,9 @@ ROW |29322 |7 |
ROW |29323 |7 | |10284 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |29286 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29324 |7 | |10284 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |29287 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29325 |7 | |10284 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |29288 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29326 |7 | |10284 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29289 |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29326 |7 | |10284 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29289 |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29327 |7 | |10284 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29290 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29328 |7 | |10284 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29291 |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29328 |7 | |10284 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29291 |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29329 |7 | |10284 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29292 |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29330 |7 | |10284 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29293 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29331 |7 | |10284 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29294 |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9690,7 +9701,7 @@ ROW |29333 |7 |
ROW |29334 |7 | |10284 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29297 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29335 |0 | |10284 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime| | |29298 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29336 |7 | |10284 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29299 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29337 |7 | |10284 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29300 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29337 |7 | |10284 |System description |system.uname |15m |2w |0 |0 |1 | | | | |29300 |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29338 |7 | |10284 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29301 |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29339 |7 | |10284 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29302 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29340 |7 | |10284 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29303 |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9712,7 +9723,7 @@ ROW |29377 |7 |
ROW |29378 |7 | |10284 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29364 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29379 |7 | |10284 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29365 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29380 |7 | |10284 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29366 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29381 |7 | |10284 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |29367 |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29381 |7 | |10284 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |29367 |255 | | |0 | | | | |2 |NULL |Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29382 |7 | |10284 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |29368 |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29480 |0 | |10081 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |29454 |NULL | | |0 | | | | |0 |NULL |CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29481 |0 | |10081 |CPU interrupt time |perf_counter_en["\Processor Information(_total)\% Interrupt Time"] |1m |7d |365d |0 |0 | |% | | |29455 |NULL | | |0 | | | | |0 |NULL |The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9732,7 +9743,7 @@ ROW |29496 |0 |
ROW |29498 |0 | |10081 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29472 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29499 |0 | |10081 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29473 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29500 |0 | |10081 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29474 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29501 |0 | |10081 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29475 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29501 |0 | |10081 |System description |system.uname |15m |2w |0 |0 |1 | | | | |29475 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29502 |0 | |10081 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |29476 |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29503 |0 | |10081 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |29477 |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29504 |0 | |10081 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29478 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9769,7 +9780,7 @@ ROW |29603 |7 |
ROW |29605 |7 | |10299 |Uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |29579 |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29606 |0 | |10299 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime| | |29580 |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29607 |7 | |10299 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29581 |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29608 |7 | |10299 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29582 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29608 |7 | |10299 |System description |system.uname |15m |2w |0 |0 |1 | | | | |29582 |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29609 |7 | |10299 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |29583 |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29610 |7 | |10299 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |29584 |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29611 |7 | |10299 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |29585 |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9779,161 +9790,161 @@ ROW |29629 |7 |
ROW |29630 |7 | |10299 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |29621 |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29823 |5 | |10084 |Zabbix server: Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |29822 |NULL | | |0 | | | | |0 |NULL |Average percentage of time alert syncer processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29834 |20 |1.3.6.1.2.1.1.3.0 |10237 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29835 |20 |1.3.6.1.2.1.1.6.0 |10237 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29836 |20 |1.3.6.1.2.1.1.4.0 |10237 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29835 |20 |1.3.6.1.2.1.1.6.0 |10237 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29836 |20 |1.3.6.1.2.1.1.4.0 |10237 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29837 |20 |1.3.6.1.2.1.1.2.0 |10237 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29838 |20 |1.3.6.1.2.1.1.1.0 |10237 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29838 |20 |1.3.6.1.2.1.1.1.0 |10237 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29849 |20 |1.3.6.1.2.1.1.3.0 |10207 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29850 |20 |1.3.6.1.2.1.1.6.0 |10207 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29851 |20 |1.3.6.1.2.1.1.4.0 |10207 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29850 |20 |1.3.6.1.2.1.1.6.0 |10207 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29851 |20 |1.3.6.1.2.1.1.4.0 |10207 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29852 |20 |1.3.6.1.2.1.1.2.0 |10207 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29853 |20 |1.3.6.1.2.1.1.1.0 |10207 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29853 |20 |1.3.6.1.2.1.1.1.0 |10207 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29854 |20 |1.3.6.1.2.1.1.3.0 |10208 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29855 |20 |1.3.6.1.2.1.1.6.0 |10208 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29856 |20 |1.3.6.1.2.1.1.4.0 |10208 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29855 |20 |1.3.6.1.2.1.1.6.0 |10208 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29856 |20 |1.3.6.1.2.1.1.4.0 |10208 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29857 |20 |1.3.6.1.2.1.1.2.0 |10208 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29858 |20 |1.3.6.1.2.1.1.1.0 |10208 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29858 |20 |1.3.6.1.2.1.1.1.0 |10208 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29859 |20 |1.3.6.1.2.1.1.3.0 |10210 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29860 |20 |1.3.6.1.2.1.1.6.0 |10210 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29861 |20 |1.3.6.1.2.1.1.4.0 |10210 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29860 |20 |1.3.6.1.2.1.1.6.0 |10210 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29861 |20 |1.3.6.1.2.1.1.4.0 |10210 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29862 |20 |1.3.6.1.2.1.1.2.0 |10210 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29863 |20 |1.3.6.1.2.1.1.1.0 |10210 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29863 |20 |1.3.6.1.2.1.1.1.0 |10210 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29864 |20 |1.3.6.1.2.1.1.3.0 |10211 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29865 |20 |1.3.6.1.2.1.1.6.0 |10211 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29866 |20 |1.3.6.1.2.1.1.4.0 |10211 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29865 |20 |1.3.6.1.2.1.1.6.0 |10211 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29866 |20 |1.3.6.1.2.1.1.4.0 |10211 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29867 |20 |1.3.6.1.2.1.1.2.0 |10211 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29868 |20 |1.3.6.1.2.1.1.1.0 |10211 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29868 |20 |1.3.6.1.2.1.1.1.0 |10211 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29869 |20 |1.3.6.1.2.1.1.3.0 |10218 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29870 |20 |1.3.6.1.2.1.1.6.0 |10218 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29871 |20 |1.3.6.1.2.1.1.4.0 |10218 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29870 |20 |1.3.6.1.2.1.1.6.0 |10218 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29871 |20 |1.3.6.1.2.1.1.4.0 |10218 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29872 |20 |1.3.6.1.2.1.1.2.0 |10218 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29873 |20 |1.3.6.1.2.1.1.1.0 |10218 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29873 |20 |1.3.6.1.2.1.1.1.0 |10218 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29874 |20 |1.3.6.1.2.1.1.3.0 |10220 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29875 |20 |1.3.6.1.2.1.1.6.0 |10220 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29876 |20 |1.3.6.1.2.1.1.4.0 |10220 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29875 |20 |1.3.6.1.2.1.1.6.0 |10220 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29876 |20 |1.3.6.1.2.1.1.4.0 |10220 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29877 |20 |1.3.6.1.2.1.1.2.0 |10220 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29878 |20 |1.3.6.1.2.1.1.1.0 |10220 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29878 |20 |1.3.6.1.2.1.1.1.0 |10220 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29879 |20 |1.3.6.1.2.1.1.3.0 |10221 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29880 |20 |1.3.6.1.2.1.1.6.0 |10221 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29881 |20 |1.3.6.1.2.1.1.4.0 |10221 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29880 |20 |1.3.6.1.2.1.1.6.0 |10221 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29881 |20 |1.3.6.1.2.1.1.4.0 |10221 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29882 |20 |1.3.6.1.2.1.1.2.0 |10221 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29883 |20 |1.3.6.1.2.1.1.1.0 |10221 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29883 |20 |1.3.6.1.2.1.1.1.0 |10221 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29884 |20 |1.3.6.1.2.1.1.3.0 |10222 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29885 |20 |1.3.6.1.2.1.1.6.0 |10222 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29886 |20 |1.3.6.1.2.1.1.4.0 |10222 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29885 |20 |1.3.6.1.2.1.1.6.0 |10222 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29886 |20 |1.3.6.1.2.1.1.4.0 |10222 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29887 |20 |1.3.6.1.2.1.1.2.0 |10222 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29888 |20 |1.3.6.1.2.1.1.1.0 |10222 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29888 |20 |1.3.6.1.2.1.1.1.0 |10222 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29889 |20 |1.3.6.1.2.1.1.3.0 |10223 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29890 |20 |1.3.6.1.2.1.1.6.0 |10223 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29891 |20 |1.3.6.1.2.1.1.4.0 |10223 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29890 |20 |1.3.6.1.2.1.1.6.0 |10223 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29891 |20 |1.3.6.1.2.1.1.4.0 |10223 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29892 |20 |1.3.6.1.2.1.1.2.0 |10223 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29893 |20 |1.3.6.1.2.1.1.1.0 |10223 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29893 |20 |1.3.6.1.2.1.1.1.0 |10223 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29894 |20 |1.3.6.1.2.1.1.3.0 |10224 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29895 |20 |1.3.6.1.2.1.1.6.0 |10224 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29896 |20 |1.3.6.1.2.1.1.4.0 |10224 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29895 |20 |1.3.6.1.2.1.1.6.0 |10224 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29896 |20 |1.3.6.1.2.1.1.4.0 |10224 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29897 |20 |1.3.6.1.2.1.1.2.0 |10224 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29898 |20 |1.3.6.1.2.1.1.1.0 |10224 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29898 |20 |1.3.6.1.2.1.1.1.0 |10224 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29899 |20 |1.3.6.1.2.1.1.3.0 |10226 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29900 |20 |1.3.6.1.2.1.1.6.0 |10226 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29901 |20 |1.3.6.1.2.1.1.4.0 |10226 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29900 |20 |1.3.6.1.2.1.1.6.0 |10226 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29901 |20 |1.3.6.1.2.1.1.4.0 |10226 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29902 |20 |1.3.6.1.2.1.1.2.0 |10226 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29903 |20 |1.3.6.1.2.1.1.1.0 |10226 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29903 |20 |1.3.6.1.2.1.1.1.0 |10226 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29904 |20 |1.3.6.1.2.1.1.3.0 |10227 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29905 |20 |1.3.6.1.2.1.1.6.0 |10227 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29906 |20 |1.3.6.1.2.1.1.4.0 |10227 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29905 |20 |1.3.6.1.2.1.1.6.0 |10227 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29906 |20 |1.3.6.1.2.1.1.4.0 |10227 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29907 |20 |1.3.6.1.2.1.1.2.0 |10227 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29908 |20 |1.3.6.1.2.1.1.1.0 |10227 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29908 |20 |1.3.6.1.2.1.1.1.0 |10227 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29909 |20 |1.3.6.1.2.1.1.3.0 |10229 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29910 |20 |1.3.6.1.2.1.1.6.0 |10229 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29911 |20 |1.3.6.1.2.1.1.4.0 |10229 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29910 |20 |1.3.6.1.2.1.1.6.0 |10229 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29911 |20 |1.3.6.1.2.1.1.4.0 |10229 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29912 |20 |1.3.6.1.2.1.1.2.0 |10229 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29913 |20 |1.3.6.1.2.1.1.1.0 |10229 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29913 |20 |1.3.6.1.2.1.1.1.0 |10229 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29914 |20 |1.3.6.1.2.1.1.3.0 |10230 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29915 |20 |1.3.6.1.2.1.1.6.0 |10230 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29916 |20 |1.3.6.1.2.1.1.4.0 |10230 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29915 |20 |1.3.6.1.2.1.1.6.0 |10230 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29916 |20 |1.3.6.1.2.1.1.4.0 |10230 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29917 |20 |1.3.6.1.2.1.1.2.0 |10230 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29918 |20 |1.3.6.1.2.1.1.1.0 |10230 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29918 |20 |1.3.6.1.2.1.1.1.0 |10230 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29919 |20 |1.3.6.1.2.1.1.3.0 |10231 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29920 |20 |1.3.6.1.2.1.1.6.0 |10231 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29921 |20 |1.3.6.1.2.1.1.4.0 |10231 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29920 |20 |1.3.6.1.2.1.1.6.0 |10231 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29921 |20 |1.3.6.1.2.1.1.4.0 |10231 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29922 |20 |1.3.6.1.2.1.1.2.0 |10231 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29923 |20 |1.3.6.1.2.1.1.1.0 |10231 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29923 |20 |1.3.6.1.2.1.1.1.0 |10231 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29924 |20 |1.3.6.1.2.1.1.3.0 |10233 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29925 |20 |1.3.6.1.2.1.1.6.0 |10233 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29926 |20 |1.3.6.1.2.1.1.4.0 |10233 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29925 |20 |1.3.6.1.2.1.1.6.0 |10233 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29926 |20 |1.3.6.1.2.1.1.4.0 |10233 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29927 |20 |1.3.6.1.2.1.1.2.0 |10233 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29928 |20 |1.3.6.1.2.1.1.1.0 |10233 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29928 |20 |1.3.6.1.2.1.1.1.0 |10233 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29929 |20 |1.3.6.1.2.1.1.3.0 |10234 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29930 |20 |1.3.6.1.2.1.1.6.0 |10234 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29931 |20 |1.3.6.1.2.1.1.4.0 |10234 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29930 |20 |1.3.6.1.2.1.1.6.0 |10234 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29931 |20 |1.3.6.1.2.1.1.4.0 |10234 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29932 |20 |1.3.6.1.2.1.1.2.0 |10234 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29933 |20 |1.3.6.1.2.1.1.1.0 |10234 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29933 |20 |1.3.6.1.2.1.1.1.0 |10234 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29934 |20 |1.3.6.1.2.1.1.3.0 |10235 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29935 |20 |1.3.6.1.2.1.1.6.0 |10235 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29936 |20 |1.3.6.1.2.1.1.4.0 |10235 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29935 |20 |1.3.6.1.2.1.1.6.0 |10235 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29936 |20 |1.3.6.1.2.1.1.4.0 |10235 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29937 |20 |1.3.6.1.2.1.1.2.0 |10235 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29938 |20 |1.3.6.1.2.1.1.1.0 |10235 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29938 |20 |1.3.6.1.2.1.1.1.0 |10235 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29939 |20 |1.3.6.1.2.1.1.3.0 |10236 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29940 |20 |1.3.6.1.2.1.1.6.0 |10236 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29941 |20 |1.3.6.1.2.1.1.4.0 |10236 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29940 |20 |1.3.6.1.2.1.1.6.0 |10236 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29941 |20 |1.3.6.1.2.1.1.4.0 |10236 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29942 |20 |1.3.6.1.2.1.1.2.0 |10236 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29943 |20 |1.3.6.1.2.1.1.1.0 |10236 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29943 |20 |1.3.6.1.2.1.1.1.0 |10236 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29944 |20 |1.3.6.1.2.1.1.3.0 |10250 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29945 |20 |1.3.6.1.2.1.1.6.0 |10250 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29946 |20 |1.3.6.1.2.1.1.4.0 |10250 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29945 |20 |1.3.6.1.2.1.1.6.0 |10250 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29946 |20 |1.3.6.1.2.1.1.4.0 |10250 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29947 |20 |1.3.6.1.2.1.1.2.0 |10250 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29948 |20 |1.3.6.1.2.1.1.1.0 |10250 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29948 |20 |1.3.6.1.2.1.1.1.0 |10250 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29954 |20 |1.3.6.1.2.1.1.3.0 |10253 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29955 |20 |1.3.6.1.2.1.1.6.0 |10253 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29956 |20 |1.3.6.1.2.1.1.4.0 |10253 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29955 |20 |1.3.6.1.2.1.1.6.0 |10253 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29956 |20 |1.3.6.1.2.1.1.4.0 |10253 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29957 |20 |1.3.6.1.2.1.1.2.0 |10253 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29958 |20 |1.3.6.1.2.1.1.1.0 |10253 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29958 |20 |1.3.6.1.2.1.1.1.0 |10253 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29959 |20 |1.3.6.1.2.1.1.3.0 |10254 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29960 |20 |1.3.6.1.2.1.1.6.0 |10254 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29961 |20 |1.3.6.1.2.1.1.4.0 |10254 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29960 |20 |1.3.6.1.2.1.1.6.0 |10254 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29961 |20 |1.3.6.1.2.1.1.4.0 |10254 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29962 |20 |1.3.6.1.2.1.1.2.0 |10254 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29963 |20 |1.3.6.1.2.1.1.1.0 |10254 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29963 |20 |1.3.6.1.2.1.1.1.0 |10254 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29964 |20 |1.3.6.1.2.1.1.3.0 |10255 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29965 |20 |1.3.6.1.2.1.1.6.0 |10255 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29966 |20 |1.3.6.1.2.1.1.4.0 |10255 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29965 |20 |1.3.6.1.2.1.1.6.0 |10255 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29966 |20 |1.3.6.1.2.1.1.4.0 |10255 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29967 |20 |1.3.6.1.2.1.1.2.0 |10255 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29968 |20 |1.3.6.1.2.1.1.1.0 |10255 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29968 |20 |1.3.6.1.2.1.1.1.0 |10255 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29969 |20 |1.3.6.1.2.1.1.3.0 |10256 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29970 |20 |1.3.6.1.2.1.1.6.0 |10256 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29971 |20 |1.3.6.1.2.1.1.4.0 |10256 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29970 |20 |1.3.6.1.2.1.1.6.0 |10256 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29971 |20 |1.3.6.1.2.1.1.4.0 |10256 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29972 |20 |1.3.6.1.2.1.1.2.0 |10256 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29973 |20 |1.3.6.1.2.1.1.1.0 |10256 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29973 |20 |1.3.6.1.2.1.1.1.0 |10256 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29974 |20 |1.3.6.1.2.1.1.3.0 |10258 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29975 |20 |1.3.6.1.2.1.1.6.0 |10258 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29976 |20 |1.3.6.1.2.1.1.4.0 |10258 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29975 |20 |1.3.6.1.2.1.1.6.0 |10258 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29976 |20 |1.3.6.1.2.1.1.4.0 |10258 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29977 |20 |1.3.6.1.2.1.1.2.0 |10258 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29978 |20 |1.3.6.1.2.1.1.1.0 |10258 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29978 |20 |1.3.6.1.2.1.1.1.0 |10258 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29979 |20 |1.3.6.1.2.1.1.3.0 |10259 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29980 |20 |1.3.6.1.2.1.1.6.0 |10259 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29981 |20 |1.3.6.1.2.1.1.4.0 |10259 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29980 |20 |1.3.6.1.2.1.1.6.0 |10259 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29981 |20 |1.3.6.1.2.1.1.4.0 |10259 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29982 |20 |1.3.6.1.2.1.1.2.0 |10259 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29983 |20 |1.3.6.1.2.1.1.1.0 |10259 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29983 |20 |1.3.6.1.2.1.1.1.0 |10259 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29984 |20 |1.3.6.1.2.1.1.3.0 |10248 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29985 |20 |1.3.6.1.2.1.1.6.0 |10248 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29986 |20 |1.3.6.1.2.1.1.4.0 |10248 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29985 |20 |1.3.6.1.2.1.1.6.0 |10248 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29986 |20 |1.3.6.1.2.1.1.4.0 |10248 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29987 |20 |1.3.6.1.2.1.1.2.0 |10248 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29988 |20 |1.3.6.1.2.1.1.1.0 |10248 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29988 |20 |1.3.6.1.2.1.1.1.0 |10248 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29989 |20 |1.3.6.1.2.1.1.3.0 |10249 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29990 |20 |1.3.6.1.2.1.1.6.0 |10249 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29991 |20 |1.3.6.1.2.1.1.4.0 |10249 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29990 |20 |1.3.6.1.2.1.1.6.0 |10249 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29991 |20 |1.3.6.1.2.1.1.4.0 |10249 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29992 |20 |1.3.6.1.2.1.1.2.0 |10249 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29993 |20 |1.3.6.1.2.1.1.1.0 |10249 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29993 |20 |1.3.6.1.2.1.1.1.0 |10249 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29995 |7 | |10284 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |29546 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29996 |7 | |10284 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |29547 |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29997 |7 | |10284 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |29545 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30049 |17 | |10304 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30050 |20 |1.3.6.1.2.1.1.4.0 |10304 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30051 |20 |1.3.6.1.2.1.1.1.0 |10304 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30052 |20 |1.3.6.1.2.1.1.6.0 |10304 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30053 |20 |1.3.6.1.2.1.1.5.0 |10304 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30049 |17 | |10304 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30050 |20 |1.3.6.1.2.1.1.4.0 |10304 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30051 |20 |1.3.6.1.2.1.1.1.0 |10304 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30052 |20 |1.3.6.1.2.1.1.6.0 |10304 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30053 |20 |1.3.6.1.2.1.1.5.0 |10304 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30054 |20 |1.3.6.1.2.1.1.2.0 |10304 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30055 |20 |1.3.6.1.2.1.1.3.0 |10304 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30056 |5 | |10304 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30056 |5 | |10304 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30095 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10210 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |30094 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30096 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0 |10211 |Memory utilization |vm.memory.util[snAgGblDynMemUtil.0] |1m |7d |365d |0 |0 | |% | | |30094 |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The system dynamic memory utilization, in unit of percentage.&eol;Deprecated: Refer to snAgSystemDRAMUtil.&eol;For NI platforms, refer to snAgentBrdMemoryUtil100thPercent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30098 |20 |1.3.6.1.2.1.1.1.0 |10218 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9969,7 +9980,6 @@ ROW |31328 |0 |
ROW |31329 |0 | |10081 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |31326 |NULL | | |0 | | | | |0 |NULL |The used space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31330 |15 | |10081 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |31327 |NULL |last("system.swap.size[,total]") - last("system.swap.size[,total]") / 100 * last("perf_counter_en[\"\Paging file(_Total)\% Usage\"]") | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31334 |0 | |10081 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |31333 |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31339 |0 | |10081 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |31335 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31340 |0 | |10081 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |7d |365d |0 |0 | | | | |31336 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31341 |0 | |10081 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |31337 |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31342 |0 | |10081 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |31338 |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9977,7 +9987,6 @@ ROW |31346 |7 |
ROW |31347 |7 | |10299 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |31344 |NULL | | |0 | | | | |0 |NULL |The used space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31348 |15 | |10299 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |31345 |NULL |last("system.swap.size[,total]") - last("system.swap.size[,total]") / 100 * last("perf_counter_en[\"\Paging file(_Total)\% Usage\"]") | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31352 |7 | |10299 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |31351 |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31357 |7 | |10299 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |31353 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31358 |7 | |10299 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |7d |365d |0 |0 | | | | |31354 |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31359 |7 | |10299 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |31355 |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31360 |7 | |10299 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |31356 |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -9989,22 +9998,22 @@ ROW |32457 |7 |
ROW |32458 |7 | |10299 |{#DEVNAME}: Disk read request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Read",60] |1m |7d |365d |0 |0 | |s | | |32454 |NULL | | |0 | | | | |2 |NULL |The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32459 |7 | |10299 |{#DEVNAME}: Disk write request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Write",60] |1m |7d |365d |0 |0 | |s | | |32455 |NULL | | |0 | | | | |2 |NULL |The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32460 |7 | |10299 |{#DEVNAME}: Average disk write queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Write Queue Length",60] |1m |7d |365d |0 |0 | | | | |32456 |NULL | | |0 | | | | |2 |NULL |Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32604 |17 | |10353 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32605 |20 |1.3.6.1.2.1.1.4.0 |10353 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32606 |20 |1.3.6.1.2.1.1.1.0 |10353 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32607 |20 |1.3.6.1.2.1.1.6.0 |10353 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32608 |20 |1.3.6.1.2.1.1.5.0 |10353 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32604 |17 | |10353 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32605 |20 |1.3.6.1.2.1.1.4.0 |10353 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32606 |20 |1.3.6.1.2.1.1.1.0 |10353 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32607 |20 |1.3.6.1.2.1.1.6.0 |10353 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32608 |20 |1.3.6.1.2.1.1.5.0 |10353 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32609 |20 |1.3.6.1.2.1.1.2.0 |10353 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32610 |20 |1.3.6.1.2.1.1.3.0 |10353 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32611 |5 | |10353 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32768 |17 | |10357 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32769 |20 |1.3.6.1.2.1.1.4.0 |10357 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32770 |20 |1.3.6.1.2.1.1.1.0 |10357 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32771 |20 |1.3.6.1.2.1.1.6.0 |10357 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32772 |20 |1.3.6.1.2.1.1.5.0 |10357 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32611 |5 | |10353 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32768 |17 | |10357 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32769 |20 |1.3.6.1.2.1.1.4.0 |10357 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32770 |20 |1.3.6.1.2.1.1.1.0 |10357 |System description |system.descr[sysDescr.0] |15m |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32771 |20 |1.3.6.1.2.1.1.6.0 |10357 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32772 |20 |1.3.6.1.2.1.1.5.0 |10357 |System name |system.name |15m |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32773 |20 |1.3.6.1.2.1.1.2.0 |10357 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32774 |20 |1.3.6.1.2.1.1.3.0 |10357 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32775 |5 | |10357 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32775 |5 | |10357 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34196 |5 | |10084 |Zabbix server: Version |zabbix[version] |1m |1w |0 |0 |1 | | | | |34189 |NULL | | |0 | | | | |0 |NULL |Version of Zabbix server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |36580 |0 | |10081 |Network interfaces WMI get |wmi.getall[root\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus,GUID from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"]|1m |0 |0 |0 |4 | | | | |36579 |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |36589 |0 | |10081 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFGUID}",dropped] |3m |7d |365d |0 |3 | | | | |36583 |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -10020,6 +10029,8 @@ ROW |36613 |7 |
ROW |36614 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFGUID}",dropped] |3m |7d |365d |0 |3 | | | | |36608 |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |36615 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFGUID}",errors] |3m |7d |365d |0 |3 | | | | |36609 |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |36616 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFGUID}"] |3m |7d |365d |0 |3 | |bps | | |36610 |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36631 |0 | |10081 |{#DEVNAME}: Disk utilization by idle time |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Idle Time",60] |1m |7d |365d |0 |0 | |% | | |36630 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests based on idle time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36633 |7 | |10299 |{#DEVNAME}: Disk utilization by idle time |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Idle Time",60] |1m |7d |365d |0 |0 | |% | | |36632 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests based on idle time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
TABLE |items
FIELDS|itemid|type|snmp_oid|hostid|name |key_ |delay|history|trends|status|value_type|trapper_hosts|units|formula|logtimefmt|templateid|valuemapid|params|ipmi_sensor|authtype|username|password|publickey|privatekey|flags|interfaceid|description |inventory_link|lifetime|evaltype|jmx_endpoint|master_itemid|timeout|url |query_fields|posts|status_codes|follow_redirects|post_type|headers|retrieve_mode|request_method|output_format|verify_peer|verify_host|allow_traps|discover|
@@ -10160,9 +10171,9 @@ ROW |29173 |0 |
ROW |29174 |0 | |10084 |Load average (15m avg) |system.cpu.load[all,avg15] |1m |7d |365d |0 |0 | | | | |29137 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29175 |0 | |10084 |Load average (5m avg) |system.cpu.load[all,avg5] |1m |7d |365d |0 |0 | | | | |29138 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29176 |0 | |10084 |Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |29139 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29177 |0 | |10084 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29140 |NULL | | |0 | | | | |0 |1 |Available memory as percentage of total. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29177 |0 | |10084 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |29140 |NULL | | |0 | | | | |0 |1 |Available memory as percentage of total. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29178 |0 | |10084 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29141 |NULL | | |0 | | | | |0 |1 |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29179 |0 | |10084 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29142 |NULL | | |0 | | | | |0 |1 |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29179 |0 | |10084 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |29142 |NULL | | |0 | | | | |0 |1 |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29180 |0 | |10084 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29143 |NULL | | |0 | | | | |0 |1 |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29181 |0 | |10084 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |29144 |NULL | | |0 | | | | |0 |1 |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29182 |0 | |10084 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |29145 |NULL | | |0 | | | | |0 |1 |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -10170,7 +10181,7 @@ ROW |29184 |0 |
ROW |29185 |0 | |10084 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime| | |29148 |NULL | | |0 | | | | |0 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29186 |0 | |10084 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime| | |29149 |NULL | | |0 | | | | |0 |1 |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29187 |0 | |10084 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |29150 |NULL | | |0 | | | | |0 |1 |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29188 |0 | |10084 |System description |system.uname |1h |2w |0 |0 |1 | | | | |29151 |NULL | | |0 | | | | |0 |1 |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29188 |0 | |10084 |System description |system.uname |15m |2w |0 |0 |1 | | | | |29151 |NULL | | |0 | | | | |0 |1 |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29189 |0 | |10084 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |29152 |NULL | | |0 | | | | |0 |1 |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29190 |0 | |10084 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |29153 |NULL | | |0 | | | | |0 |1 |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29191 |0 | |10084 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |29154 |NULL | | |0 | | | | |0 |1 |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -10192,7 +10203,7 @@ ROW |29246 |0 |
ROW |29247 |0 | |10084 |Interface {#IFNAME}: Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |29233 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29248 |0 | |10084 |Interface {#IFNAME}: Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29234 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29249 |0 | |10084 |Interface {#IFNAME}: Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |29235 |NULL | | |0 | | | | |2 |1 | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29250 |0 | |10084 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"]|1m |7d |0 |0 |3 | | | | |29236 |20 | | |0 | | | | |2 |1 |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29250 |0 | |10084 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"]|1m |7d |0 |0 |3 | | | | |29236 |255 | | |0 | | | | |2 |1 |Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29251 |0 | |10084 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |29237 |78 | | |0 | | | | |2 |1 |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29557 |5 | |10084 |Zabbix agent availability |zabbix[host,agent,available] |1m |7d |365d |0 |3 | | | | |29548 |22 | | |0 | | | | |0 |NULL |Monitoring agent availability status |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30046 |3 | |10304 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -10959,9 +10970,7 @@ ROW |16994 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19919}=2 and {19920}=1)
ROW |17001 |{19931} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19932} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m) | |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |0 |
ROW |17002 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19933}=2 and {19934}=1) |Interface {#IFNAME}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19933}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |17005 |{19939} - {19940} * 2 > {$CPU.QUEUE.CRIT.MAX} |CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m) | |0 |2 |The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro {$CPU.QUEUE.CRIT.MAX }. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17009 |{19947}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |NULL |0 |2 |0 | |0 | |1 | |0 |
ROW |17011 |{19949} - {19950} * 2 > {$CPU.QUEUE.CRIT.MAX} |CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m) | |0 |2 |The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro {$CPU.QUEUE.CRIT.MAX }. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17015 |{19957}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |NULL |0 |2 |0 | |0 | |1 | |0 |
ROW |17063 |{20054}>{20055} |GarbageCollector: Concurrent Mark Sweep in fire fighting mode | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |17064 |{20056}>{20057} |GarbageCollector: Mark Sweep Compact in fire fighting mode | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |17065 |{20058}>{20059} |GarbageCollector: PS Mark Sweep in fire fighting mode | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
@@ -11661,18 +11670,11 @@ ROW |17885 |{21154}>{$MEMORY.UTIL.MAX}
ROW |17886 |{21155}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |17887 |{21156}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |17888 |{21157}<{$SWAP.PFREE.MIN.WARN} and {21158}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17889 |{21159}<{$MEMORY.AVAILABLE.MIN} and {21160}>0 |Lack of available memory (< {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
ROW |17890 |{21161}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17897 |{21172}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21173}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21174}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21175}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
ROW |17900 |{21184}<{$SWAP.PFREE.MIN.WARN} and {21185}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17901 |{21186}<{$MEMORY.AVAILABLE.MIN} and {21187}>0 |Lack of available memory (< {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
ROW |17902 |{21188}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17906 |{21194}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21195}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21196}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21197}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
ROW |17908 |{21202}<{$SWAP.PFREE.MIN.WARN} and {21203}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17909 |{21204}<{$MEMORY.AVAILABLE.MIN} and {21205}>0 |Lack of available memory (< {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
ROW |17910 |{21206}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17911 |({21207}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21208} or&eol;{21209}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21208}) and&eol;{21208}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{21207}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21208} and&eol;{21209}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21208}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
-ROW |17912 |{21210}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21211}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21212}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21213}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
ROW |17913 |{21214}<{$SWAP.PFREE.MIN.WARN} and {21215}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
ROW |17914 |{21216}<{$MEMORY.AVAILABLE.MIN} and {21217}>0 |Lack of available memory (< {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
ROW |17915 |{21218}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
@@ -11904,8 +11906,6 @@ ROW |18163 |{21589}<10m
ROW |18164 |{21590}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |18165 |{21591}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |18166 |{21592}<0 and {21593}>0&eol;and (&eol;{21594}=6 or&eol;{21594}=7 or&eol;{21594}=11 or&eol;{21594}=62 or&eol;{21594}=69 or&eol;{21594}=117&eol;)&eol;and&eol;({21595}<>2) |Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({21592}>0 and {21596}>0) or&eol;({21595}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
-ROW |18167 |({21597}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21598} or&eol;{21599}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21598}) and&eol;{21598}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{21597}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21598} and&eol;{21599}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21598}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
-ROW |18168 |{21600}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21601}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21602}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21603}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
ROW |18169 |{$IFCONTROL:"{#IFNAME}"}=1 and ({21604}=2 and {21605}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{21604}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |18170 |{21606}=1 |{#ENT_NAME}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |18171 |{21607}>{$TEMP.MAX.WARN:"{#SENSOR_INFO}"}&eol;or&eol;{21608}={$TEMP.STATUS.WARN} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP.MAX.WARN:"{#SENSOR_INFO}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{21609}<{$TEMP.MAX.WARN:"{#SENSOR_INFO}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
@@ -11913,7 +11913,6 @@ ROW |18172 |{21610}>{$TEMP.MAX.CRIT:"{#SENSOR_INFO}"}
ROW |18173 |{21612}<{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"} | |0 |3 | |NULL |0 |2 |1 |{21613}>{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |18174 |{21614}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({21615}-{21616})<5G or {21617}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
ROW |18175 |{21618}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({21619}-{21620})<10G or {21621}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |18176 |{21622}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |18177 |{21623}=2 |Battery needs replacement | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18178 |{21624}=4 |Battery has an internal error condition | |0 |3 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18179 |{21625}=3 |Battery is Low | |0 |3 |The UPS will be unable to sustain the current load, and its services will be lost if power is not restored. |NULL |0 |0 |0 | |0 | |0 | |0 |
@@ -12966,11 +12965,10 @@ ROW |19413 |{23087}>0 and {23088}=0
ROW |19414 |{23089}=1 and {23090}>0 |F5 BIG-IP: Chassis has been replaced (new serial number received) | |0 |1 |Chassis serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |19415 |{23091}<10m |F5 BIG-IP: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |19416 |{23092}=0 |F5 BIG-IP: No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |19417 |{23093} + 86400 * {$BIGIP.CERT.MIN} < {23094} |F5 BIG-IP: Less than {$BIGIP.CERT.MIN} days left until the certificate expires ({#CERT.NAME}) | |0 |1 |Please check certificate |NULL |0 |2 |0 | |0 | |0 |Expires: {ITEM.VALUE} |0 |
+ROW |19417 |{23093} + 86400 * {$BIGIP.CERT.MIN} < {23094} |F5 BIG-IP: Less than {$BIGIP.CERT.MIN} days left until the certificate expires ({#CERT.NAME}) | |0 |2 |Please check certificate |NULL |0 |2 |0 | |0 | |0 |Expires: {ITEM.VALUE} |0 |
ROW |19418 |{23095}=0 |F5 BIG-IP: Fan[{#FAN.INDEX}] is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |19419 |{23096}=0 |F5 BIG-IP: Power supply [{#POWER.INDEX}] is in critical state | |0 |3 |Please check the power supply unit |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |19419 |{23096}=0 |F5 BIG-IP: Power supply [{#POWER.INDEX}] is in critical state | |0 |4 |Please check the power supply unit |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |19420 |{23097}>{$BIGIP.CPU.UTIL.WARN.MAX} |F5 BIG-IP: High CPU utilization (over {$BIGIP.CPU.UTIL.WARN.MAX}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |1 |{23097}<{$BIGIP.CPU.UTIL.WARN.MIN} |0 | |0 | |0 |
-ROW |19421 |{23098}/{23099}*100<{$BIGIP.FS.FREE.WARN.MIN} |F5 BIG-IP: Low free space in file system [{#PART.NAME}] (less than {$BIGIP.FS.FREE.WARN.MIN}% for 5m) | |0 |2 |The system is running out of free space. |NULL |0 |2 |1 |{23098}/{23099}*100>{$BIGIP.FS.FREE.WARN.MAX} |0 | |0 | |0 |
ROW |19422 |{23100}/{23101}*100>{$BIGIP.MEMORY.UTIL.WARN.MAX} |F5 BIG-IP: High memory utilization in host [{#HOST.ID}] (over {$BIGIP.MEMORY.UTIL.WARN.MAX}% for 5m) | |0 |2 |The system is running out of free memory. |NULL |0 |2 |1 |{23100}/{23101}*100<{$BIGIP.MEMORY.UTIL.WARN.MIN} |0 | |0 | |0 |
ROW |19423 |{23102}/{23103}*100>{$BIGIP.SWAP.UTIL.WARN.MAX} |F5 BIG-IP: High swap utilization in host [{#HOST.ID}] (over {$BIGIP.SWAP.UTIL.WARN.MAX}% for 5m) | |0 |2 |The system is running out of free swap memory. |NULL |0 |2 |1 |{23102}/{23103}*100>{$BIGIP.SWAP.UTIL.WARN.MIN} |0 | |0 | |0 |
ROW |19424 |{23104}>{23105} or {23106}>{23107} |F5 BIG-IP: There are errors on the network interface ({#IF.NAME}) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
@@ -13227,6 +13225,28 @@ ROW |19682 |{23464} > {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"}
ROW |19683 |{23465}<{$PG.FROZENXID_PCT_STOP.MIN.HIGH:"{#DBNAME}"} |DB {#DBNAME}: VACUUM FREEZE is required to prevent wraparound (frozen XID less then {$PG.FROZENXID_PCT_STOP.MIN.HIGH:"{#DBNAME}"} %) | |0 |3 |Preventing Transaction ID Wraparound Failures&eol;https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |19684 |{23466}>{$PG.LOCKS.MAX.WARN:"{#DBNAME}"} |DB {#DBNAME}: Number of locks is too high (over {$PG.LOCKS.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |19685 |{23467}>{$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} |DB {#DBNAME}: Too many slow queries (over {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |19686 |{23468}>8 and {23469}>6 |F5 BIG-IP: Cluster not in sync: {ITEM.VALUE} | |0 |2 | |NULL |0 |0 |0 | |0 | |1 |{ITEM.LASTVALUE} |0 |
+ROW |19687 |{23470}=2 |F5 BIG-IP: Changes have been made on the device not sync to the device group: {ITEM.VALUE} | |0 |2 |Changes have been made on the device not sync to the device group, requires user intervention |NULL |0 |0 |0 | |0 | |1 |{ITEM.LASTVALUE} |0 |
+ROW |19688 |{23471}=4 |F5 BIG-IP: The device is inconsistent with the device group: {ITEM.VALUE} | |0 |2 |The device is inconsistent with the device group, requires user intervention |NULL |0 |0 |0 | |0 | |1 |{ITEM.LASTVALUE} |0 |
+ROW |19689 |{23472}=2 |F5 BIG-IP: Fan[{#FAN.INDEX}] is not present | |0 |1 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |19690 |{23473}=2 |F5 BIG-IP: Power supply [{#POWER.INDEX}] is not present | |0 |1 |Please check the power supply unit |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |19691 |{23474}>{$BIGIP.TEMP.HIGH} |F5 BIG-IP: Chassis temperature ({ITEM.LASTVALUE}) of sensor {#TEMP.INDEX} exceeds threshold of {$BIGIP.TEMP.HIGH} °C | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |{ITEM.LASTVALUE} |0 |
+ROW |19692 |{23475}>{$BIGIP.TEMP.WARN} |F5 BIG-IP: Chassis temperature ({ITEM.LASTVALUE}) of sensor {#TEMP.INDEX} exceeds threshold of {$BIGIP.TEMP.WARN} °C | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |{ITEM.LASTVALUE} |0 |
+ROW |19693 |{23476}/{23477}*100<{$BIGIP.FS.FREE.WARN.MIN:"{#PART.NAME}"} |F5 BIG-IP: Low free space in file system [{#PART.NAME}] (less than {$BIGIP.FS.FREE.WARN.MIN}% for 5m) | |0 |2 |The system is running out of free space. |NULL |0 |2 |1 |{23476}/{23477}*100>{$BIGIP.FS.FREE.WARN.MAX:"{#PART.NAME}"} |0 | |1 | |0 |
+ROW |19694 |{23478}>20 |F5 BIG-IP: Pool {#POOL.NAME} is not available in some capacity: {ITEM.VALUE1} | |0 |3 | |NULL |0 |2 |0 | |0 | |0 |{ITEM.LASTVALUE} |0 |
+ROW |19695 |{23479}>4 |F5 BIG-IP: Pool {#POOL.NAME} is not enabled in some capacity: {ITEM.VALUE1} | |0 |3 | |NULL |0 |2 |0 | |0 | |0 |{ITEM.LASTVALUE} |0 |
+ROW |19696 |({23480}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23481} or&eol;{23482}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23481}) and&eol;{23481}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{23480}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23481} and&eol;{23482}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23481}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |19697 |{23483}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {23484}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{23485}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {23486}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |19698 |{23487}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |19699 |{23488}<{$MEMORY.AVAILABLE.MIN} and {23489}>0 |Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |19702 |{23494}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {23495}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{23496}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {23497}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |19705 |{23506}<{$MEMORY.AVAILABLE.MIN} and {23507}>0 |Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |19707 |{23510}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {23511}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{23512}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {23513}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |19709 |{23518}<{$MEMORY.AVAILABLE.MIN} and {23519}>0 |Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |19710 |({23520}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23521} or&eol;{23522}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23521}) and&eol;{23521}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{23520}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23521} and&eol;{23522}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23521}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |19711 |{23523}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {23524}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{23525}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {23526}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |19712 |{23527}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |19714 |{23529}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |NULL |0 |2 |0 | |0 | |1 | |0 |
TABLE |triggers
FIELDS|triggerid|expression |description |url |status|priority|comments |templateid|type|flags|recovery_mode|recovery_expression |correlation_mode|correlation_tag|manual_close|opdata |discover|
@@ -13489,9 +13509,7 @@ ROW |16997 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19925}=2 and {19926}=1)
ROW |17003 |{19935} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19936} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m)| |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |17001 |0 |2 |0 | |0 | |1 | |0 |
ROW |17004 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19937}=2 and {19938}=1) |Interface {#IFNAME}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |17002 |0 |2 |1 |{19937}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |17007 |{19943} - {19944} * 2 > {$CPU.QUEUE.CRIT.MAX} |CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m) | |0 |2 |The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro {$CPU.QUEUE.CRIT.MAX }. |17005 |0 |0 |0 | |0 | |0 | |0 |
-ROW |17010 |{19948}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |17009 |0 |2 |0 | |0 | |1 | |0 |
ROW |17013 |{19953} - {19954} * 2 > {$CPU.QUEUE.CRIT.MAX} |CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m) | |0 |2 |The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro {$CPU.QUEUE.CRIT.MAX }. |17011 |0 |0 |0 | |0 | |0 | |0 |
-ROW |17016 |{19958}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |17015 |0 |2 |0 | |0 | |1 | |0 |
ROW |17197 |{20225}>{$TEMP_CRIT:"{#SNMPVALUE}"}&eol;or&eol;{20226}={$TEMP_CRIT_STATUS}&eol;or&eol;{20226}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |17195 |0 |2 |1 |{20227}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |17198 |{20228}>{$TEMP_CRIT:"{#SNMPVALUE}"}&eol;or&eol;{20229}={$TEMP_CRIT_STATUS}&eol;or&eol;{20229}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |17195 |0 |2 |1 |{20230}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
ROW |17199 |{20231}>{$TEMP_CRIT:"{#SNMPVALUE}"}&eol;or&eol;{20232}={$TEMP_CRIT_STATUS}&eol;or&eol;{20232}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |17195 |0 |2 |1 |{20233}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
@@ -13560,13 +13578,9 @@ ROW |17872 |{21141}>{$MEMORY.UTIL.MAX}
ROW |17873 |{21142}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |17871 |0 |2 |0 | |0 | |0 | |0 |
ROW |17874 |{21143}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |17871 |0 |2 |0 | |0 | |0 | |0 |
ROW |17891 |{21162}<{$SWAP.PFREE.MIN.WARN} and {21163}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |17888 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17892 |{21164}<{$MEMORY.AVAILABLE.MIN} and {21165}>0 |Lack of available memory (< {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |17889 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
ROW |17893 |{21166}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |17890 |0 |0 |0 | |0 | |0 | |0 |
-ROW |17898 |{21176}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21177}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |17897 |0 |2 |1 |{21178}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21179}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
ROW |17903 |{21189}<{$SWAP.PFREE.MIN.WARN} and {21190}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |17900 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17904 |{21191}<{$MEMORY.AVAILABLE.MIN} and {21192}>0 |Lack of available memory (< {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |17901 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
ROW |17905 |{21193}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |17902 |0 |0 |0 | |0 | |0 | |0 |
-ROW |17907 |{21198}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21199}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |17906 |0 |2 |1 |{21200}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21201}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
ROW |17916 |{21219}<{$SWAP.PFREE.MIN.WARN} and {21220}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |17913 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
ROW |17917 |{21221}<{$MEMORY.AVAILABLE.MIN} and {21222}>0 |Lack of available memory (< {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |17914 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
ROW |17918 |{21223}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |17915 |0 |0 |0 | |0 | |0 | |0 |
@@ -13620,6 +13634,12 @@ ROW |19675 |{23449}<0 and&eol;{23450}>0 and&eol;{23451}=2
ROW |19676 |({23452}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23453} or&eol;{23454}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23453}) and&eol;{23453}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |19672 |0 |2 |1 |{23452}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23453} and&eol;{23454}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23453}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
ROW |19677 |{23455}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {23456}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |19673 |0 |2 |1 |{23457}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {23458}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
ROW |19678 |{$IFCONTROL:"{#IFNAME}"}=1 and ({23459}<>2 and {23460}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:\"{#IFNAME}\"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important.&eol; No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status is different from Connected(2).&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |19674 |0 |2 |1 |{23459}=2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |19700 |{23490}<{$MEMORY.AVAILABLE.MIN} and {23491}>0 |Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |19699 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |19703 |{23498}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {23499}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |19702 |0 |2 |1 |{23500}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {23501}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |19706 |{23508}<{$MEMORY.AVAILABLE.MIN} and {23509}>0 |Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |19705 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |19708 |{23514}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {23515}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |19707 |0 |2 |1 |{23516}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {23517}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |19713 |{23528}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |19712 |0 |2 |0 | |0 | |1 | |0 |
+ROW |19715 |{23530}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |19714 |0 |2 |0 | |0 | |1 | |0 |
TABLE |triggers
FIELDS|triggerid|expression |description |url |status|priority|comments |templateid|type|flags|recovery_mode|recovery_expression |correlation_mode|correlation_tag|manual_close|opdata |discover|
@@ -13743,12 +13763,12 @@ ROW |17722 |{20823}>{$ICMP_RESPONSE_TIME_WARN}
ROW |17796 |{20923}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |17794 |0 |2 |0 | |0 | |0 | |0 |
ROW |17797 |{20924}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |17794 |0 |2 |0 | |0 | |0 | |0 |
ROW |17894 |{21167}<{$SWAP.PFREE.MIN.WARN} and {21168}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |17891 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17895 |{21169}<{$MEMORY.AVAILABLE.MIN} and {21170}>0 |Lack of available memory (< {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |17892 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
ROW |17896 |{21171}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |17893 |0 |0 |0 | |0 | |0 | |0 |
-ROW |17899 |{21180}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21181}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |17898 |0 |2 |1 |{21182}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21183}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8|0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
ROW |17935 |{21264}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |0 |
ROW |17936 |{21265}>{$ICMP_LOSS_WARN} and {21265}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
ROW |17937 |{21266}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+ROW |19701 |{23492}<{$MEMORY.AVAILABLE.MIN} and {23493}>0 |Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |19700 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |19704 |{23502}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {23503}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (>{$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |19703 |0 |2 |1 |{23504}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {23505}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8|0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
TABLE |trigger_depends
FIELDS|triggerdepid|triggerid_down|triggerid_up|
@@ -13766,902 +13786,904 @@ ROW |21343 |16443 |16256 |
ROW |21344 |16270 |16269 |
ROW |21345 |16448 |16269 |
ROW |21346 |16265 |16269 |
-ROW |29523 |17682 |17683 |
-ROW |29524 |17684 |17685 |
-ROW |29525 |17686 |17687 |
-ROW |29526 |15944 |15947 |
-ROW |29527 |15944 |15943 |
-ROW |29528 |15943 |15947 |
-ROW |29529 |16888 |15947 |
-ROW |29530 |16888 |15943 |
-ROW |29531 |15948 |15949 |
-ROW |29532 |15950 |15949 |
-ROW |29533 |17219 |17218 |
-ROW |29534 |17222 |17221 |
-ROW |29535 |19426 |19428 |
-ROW |29536 |16743 |16744 |
-ROW |29537 |16784 |16785 |
-ROW |29538 |16790 |16791 |
-ROW |29539 |16892 |16900 |
-ROW |29540 |16894 |16900 |
-ROW |29541 |17267 |17275 |
-ROW |29542 |17272 |17276 |
-ROW |29543 |17273 |17275 |
-ROW |29544 |17274 |17276 |
-ROW |29545 |17279 |17277 |
-ROW |29546 |17282 |17280 |
-ROW |29547 |16646 |16647 |
-ROW |29548 |19437 |19442 |
-ROW |29549 |16809 |16810 |
-ROW |29550 |19451 |19456 |
-ROW |29551 |16902 |16904 |
-ROW |29552 |16904 |16905 |
-ROW |29553 |16909 |16906 |
-ROW |29554 |16910 |16912 |
-ROW |29555 |16912 |16913 |
-ROW |29556 |16917 |16914 |
-ROW |29557 |16752 |16753 |
-ROW |29558 |15955 |15957 |
-ROW |29559 |15955 |15954 |
-ROW |29560 |15954 |15957 |
-ROW |29561 |15956 |15957 |
-ROW |29562 |15956 |15954 |
-ROW |29563 |16678 |15957 |
-ROW |29564 |16678 |15954 |
-ROW |29565 |15961 |15960 |
-ROW |29566 |15962 |15960 |
-ROW |29567 |16679 |15960 |
-ROW |29568 |17225 |17231 |
-ROW |29569 |17228 |17231 |
-ROW |29570 |17236 |17233 |
-ROW |29571 |17966 |17968 |
-ROW |29572 |17966 |17967 |
-ROW |29573 |17967 |17968 |
-ROW |29574 |17973 |17968 |
-ROW |29575 |17973 |17967 |
-ROW |29576 |17975 |17968 |
-ROW |29577 |17975 |17967 |
-ROW |29578 |17985 |17986 |
-ROW |29579 |17987 |17986 |
-ROW |29580 |17992 |17986 |
-ROW |29581 |17081 |17083 |
-ROW |29582 |17082 |17081 |
-ROW |29583 |17082 |17083 |
-ROW |29584 |17082 |17084 |
-ROW |29585 |17084 |17083 |
-ROW |29586 |18615 |18614 |
-ROW |29587 |17117 |17127 |
-ROW |29588 |17118 |17117 |
-ROW |29589 |17118 |17127 |
-ROW |29590 |17119 |17127 |
-ROW |29591 |17120 |17119 |
-ROW |29592 |17120 |17127 |
-ROW |29593 |17122 |17121 |
-ROW |29594 |17123 |17127 |
-ROW |29595 |17124 |17123 |
-ROW |29596 |17124 |17127 |
-ROW |29597 |17126 |17125 |
-ROW |29598 |17128 |17144 |
-ROW |29599 |17129 |17128 |
-ROW |29600 |17129 |17144 |
-ROW |29601 |17130 |17144 |
-ROW |29602 |17131 |17130 |
-ROW |29603 |17131 |17144 |
-ROW |29604 |17132 |17144 |
-ROW |29605 |17133 |17132 |
-ROW |29606 |17133 |17144 |
-ROW |29607 |17134 |17144 |
-ROW |29608 |17135 |17134 |
-ROW |29609 |17135 |17144 |
-ROW |29610 |17136 |17144 |
-ROW |29611 |17137 |17136 |
-ROW |29612 |17137 |17144 |
-ROW |29613 |17139 |17138 |
-ROW |29614 |17140 |17144 |
-ROW |29615 |17141 |17140 |
-ROW |29616 |17141 |17144 |
-ROW |29617 |17142 |17144 |
-ROW |29618 |17143 |17142 |
-ROW |29619 |17143 |17144 |
-ROW |29620 |17145 |17144 |
-ROW |29621 |17146 |17144 |
-ROW |29622 |17146 |17145 |
-ROW |29623 |17147 |17144 |
-ROW |29624 |17148 |17144 |
-ROW |29625 |17148 |17147 |
-ROW |29626 |17306 |17307 |
-ROW |29627 |16920 |16921 |
-ROW |29628 |16833 |16920 |
-ROW |29629 |19395 |19394 |
-ROW |29630 |19397 |19396 |
-ROW |29631 |19400 |19401 |
-ROW |29632 |19402 |19401 |
-ROW |29633 |19412 |19413 |
-ROW |29634 |17748 |17747 |
-ROW |29635 |17750 |17749 |
-ROW |29636 |17753 |17754 |
-ROW |29637 |17755 |17754 |
-ROW |29638 |17765 |17766 |
-ROW |29639 |18007 |18005 |
-ROW |29640 |18019 |18017 |
-ROW |29641 |16929 |16928 |
-ROW |29642 |16940 |17153 |
-ROW |29643 |18627 |18626 |
-ROW |29644 |18629 |18628 |
-ROW |29645 |18631 |18630 |
-ROW |29646 |16719 |16721 |
-ROW |29647 |16975 |16723 |
-ROW |29648 |16729 |16728 |
-ROW |29649 |16730 |16728 |
-ROW |29650 |16756 |16758 |
-ROW |29651 |16979 |16759 |
-ROW |29652 |16765 |16764 |
-ROW |29653 |16766 |16764 |
-ROW |29654 |16734 |16736 |
-ROW |29655 |16983 |16732 |
-ROW |29656 |16741 |16740 |
-ROW |29657 |16742 |16740 |
-ROW |29658 |17173 |17172 |
-ROW |29659 |17175 |17176 |
-ROW |29660 |17180 |17179 |
-ROW |29661 |17711 |17712 |
-ROW |29662 |17713 |17714 |
-ROW |29663 |15928 |15933 |
-ROW |29664 |15931 |15933 |
-ROW |29665 |16683 |16687 |
-ROW |29666 |14252 |14251 |
-ROW |29667 |14294 |14293 |
-ROW |29668 |14312 |14311 |
-ROW |29669 |14328 |14327 |
-ROW |29670 |14348 |14347 |
-ROW |29671 |14357 |14356 |
-ROW |29672 |14390 |14389 |
-ROW |29673 |14404 |14403 |
-ROW |29674 |14452 |14451 |
-ROW |29675 |14469 |14468 |
-ROW |29676 |14487 |14486 |
-ROW |29677 |14506 |14505 |
-ROW |29678 |14535 |14534 |
-ROW |29679 |14545 |14544 |
-ROW |29680 |14583 |14582 |
-ROW |29681 |14599 |14598 |
-ROW |29682 |14616 |14615 |
-ROW |29683 |14653 |14652 |
-ROW |29684 |14674 |14673 |
-ROW |29685 |14692 |14691 |
-ROW |29686 |14705 |14704 |
-ROW |29687 |14718 |14717 |
-ROW |29688 |14907 |14906 |
-ROW |29689 |15221 |15220 |
-ROW |29690 |15702 |15701 |
-ROW |29691 |15724 |15723 |
-ROW |29692 |15756 |15755 |
-ROW |29693 |15820 |15819 |
-ROW |29694 |15841 |15840 |
-ROW |29695 |15991 |15990 |
-ROW |29696 |16018 |16017 |
-ROW |29697 |16454 |16453 |
-ROW |29698 |17721 |17720 |
-ROW |29699 |17936 |17935 |
-ROW |29700 |14253 |14252 |
-ROW |29701 |14295 |14294 |
-ROW |29702 |14313 |14312 |
-ROW |29703 |14329 |14328 |
-ROW |29704 |14349 |14348 |
-ROW |29705 |14358 |14357 |
-ROW |29706 |14391 |14390 |
-ROW |29707 |14405 |14404 |
-ROW |29708 |14453 |14452 |
-ROW |29709 |14470 |14469 |
-ROW |29710 |14488 |14487 |
-ROW |29711 |14507 |14506 |
-ROW |29712 |14536 |14535 |
-ROW |29713 |14546 |14545 |
-ROW |29714 |14584 |14583 |
-ROW |29715 |14600 |14599 |
-ROW |29716 |14617 |14616 |
-ROW |29717 |14654 |14653 |
-ROW |29718 |14675 |14674 |
-ROW |29719 |14693 |14692 |
-ROW |29720 |14706 |14705 |
-ROW |29721 |14719 |14718 |
-ROW |29722 |14908 |14907 |
-ROW |29723 |15222 |15221 |
-ROW |29724 |15703 |15702 |
-ROW |29725 |15725 |15724 |
-ROW |29726 |15757 |15756 |
-ROW |29727 |15821 |15820 |
-ROW |29728 |15842 |15841 |
-ROW |29729 |15992 |15991 |
-ROW |29730 |16019 |16018 |
-ROW |29731 |16455 |16454 |
-ROW |29732 |17722 |17721 |
-ROW |29733 |17937 |17936 |
-ROW |29734 |14253 |14251 |
-ROW |29735 |14295 |14293 |
-ROW |29736 |14313 |14311 |
-ROW |29737 |14329 |14327 |
-ROW |29738 |14349 |14347 |
-ROW |29739 |14358 |14356 |
-ROW |29740 |14391 |14389 |
-ROW |29741 |14405 |14403 |
-ROW |29742 |14453 |14451 |
-ROW |29743 |14470 |14468 |
-ROW |29744 |14488 |14486 |
-ROW |29745 |14507 |14505 |
-ROW |29746 |14536 |14534 |
-ROW |29747 |14546 |14544 |
-ROW |29748 |14584 |14582 |
-ROW |29749 |14600 |14598 |
-ROW |29750 |14617 |14615 |
-ROW |29751 |14654 |14652 |
-ROW |29752 |14675 |14673 |
-ROW |29753 |14693 |14691 |
-ROW |29754 |14706 |14704 |
-ROW |29755 |14719 |14717 |
-ROW |29756 |14908 |14906 |
-ROW |29757 |15222 |15220 |
-ROW |29758 |15703 |15701 |
-ROW |29759 |15725 |15723 |
-ROW |29760 |15757 |15755 |
-ROW |29761 |15821 |15819 |
-ROW |29762 |15842 |15840 |
-ROW |29763 |15992 |15990 |
-ROW |29764 |16019 |16017 |
-ROW |29765 |16455 |16453 |
-ROW |29766 |17722 |17720 |
-ROW |29767 |17937 |17935 |
-ROW |29768 |16287 |16289 |
-ROW |29769 |16279 |16285 |
-ROW |29770 |16290 |16348 |
-ROW |29771 |16291 |16349 |
-ROW |29772 |16292 |16350 |
-ROW |29773 |16293 |16351 |
-ROW |29774 |16294 |16352 |
-ROW |29775 |16295 |16353 |
-ROW |29776 |16296 |16354 |
-ROW |29777 |16297 |16355 |
-ROW |29778 |16298 |16356 |
-ROW |29779 |16299 |16357 |
-ROW |29780 |16300 |16358 |
-ROW |29781 |16301 |16359 |
-ROW |29782 |16302 |16360 |
-ROW |29783 |16303 |16361 |
-ROW |29784 |16304 |16362 |
-ROW |29785 |16305 |16363 |
-ROW |29786 |16306 |16364 |
-ROW |29787 |16307 |16365 |
-ROW |29788 |16308 |16366 |
-ROW |29789 |16309 |16367 |
-ROW |29790 |16311 |16369 |
-ROW |29791 |16312 |16370 |
-ROW |29792 |16313 |16371 |
-ROW |29793 |16314 |16372 |
-ROW |29794 |16315 |16373 |
-ROW |29795 |16316 |16374 |
-ROW |29796 |16317 |16375 |
-ROW |29797 |16318 |16376 |
-ROW |29798 |16457 |16458 |
-ROW |29799 |17724 |17725 |
-ROW |29800 |17939 |17940 |
-ROW |29801 |16289 |14293 |
-ROW |29802 |16285 |14717 |
-ROW |29803 |16348 |14311 |
-ROW |29804 |16349 |14327 |
-ROW |29805 |16350 |14347 |
-ROW |29806 |16351 |14356 |
-ROW |29807 |16352 |14389 |
-ROW |29808 |16353 |14403 |
-ROW |29809 |16354 |14451 |
-ROW |29810 |16355 |14468 |
-ROW |29811 |16356 |14486 |
-ROW |29812 |16357 |14505 |
-ROW |29813 |16358 |14534 |
-ROW |29814 |16359 |14544 |
-ROW |29815 |16360 |14582 |
-ROW |29816 |16361 |14598 |
-ROW |29817 |16362 |14615 |
-ROW |29818 |16363 |14652 |
-ROW |29819 |16364 |14673 |
-ROW |29820 |16365 |14691 |
-ROW |29821 |16366 |14704 |
-ROW |29822 |16367 |14906 |
-ROW |29823 |16369 |15220 |
-ROW |29824 |16370 |15701 |
-ROW |29825 |16371 |15723 |
-ROW |29826 |16372 |15755 |
-ROW |29827 |16373 |15819 |
-ROW |29828 |16374 |15840 |
-ROW |29829 |16375 |15990 |
-ROW |29830 |16376 |16017 |
-ROW |29831 |16458 |16453 |
-ROW |29832 |17725 |17720 |
-ROW |29833 |17940 |17935 |
-ROW |29834 |16631 |16630 |
-ROW |29835 |16640 |16636 |
-ROW |29836 |16642 |16638 |
-ROW |29837 |16643 |16639 |
-ROW |29838 |15695 |16863 |
-ROW |29839 |17798 |16863 |
-ROW |29840 |17799 |16863 |
-ROW |29841 |15694 |16868 |
-ROW |29842 |15696 |16864 |
-ROW |29843 |15697 |16865 |
-ROW |29844 |17800 |16864 |
-ROW |29845 |17801 |16865 |
-ROW |29846 |17802 |16868 |
-ROW |29847 |17803 |16864 |
-ROW |29848 |17804 |16865 |
-ROW |29849 |17805 |16868 |
-ROW |29850 |15671 |16841 |
-ROW |29851 |17806 |16841 |
-ROW |29852 |17807 |16841 |
-ROW |29853 |15672 |16842 |
-ROW |29854 |15673 |16843 |
-ROW |29855 |15674 |16844 |
-ROW |29856 |15675 |16845 |
-ROW |29857 |15676 |16846 |
-ROW |29858 |15677 |16847 |
-ROW |29859 |15678 |16848 |
-ROW |29860 |15679 |16849 |
-ROW |29861 |15680 |16850 |
-ROW |29862 |15681 |16851 |
-ROW |29863 |15682 |16852 |
-ROW |29864 |15683 |16853 |
-ROW |29865 |15684 |16854 |
-ROW |29866 |15685 |16855 |
-ROW |29867 |15686 |16856 |
-ROW |29868 |15687 |16857 |
-ROW |29869 |15689 |16858 |
-ROW |29870 |15691 |16860 |
-ROW |29871 |15708 |16861 |
-ROW |29872 |15997 |16862 |
-ROW |29873 |17808 |16842 |
-ROW |29874 |17809 |16843 |
-ROW |29875 |17810 |16844 |
-ROW |29876 |17811 |16845 |
-ROW |29877 |17812 |16846 |
-ROW |29878 |17813 |16847 |
-ROW |29879 |17814 |16848 |
-ROW |29880 |17815 |16849 |
-ROW |29881 |17816 |16850 |
-ROW |29882 |17817 |16851 |
-ROW |29883 |17818 |16852 |
-ROW |29884 |17819 |16853 |
-ROW |29885 |17820 |16854 |
-ROW |29886 |17821 |16855 |
-ROW |29887 |17822 |16856 |
-ROW |29888 |17823 |16857 |
-ROW |29889 |17824 |16858 |
-ROW |29890 |17826 |16860 |
-ROW |29891 |17827 |16861 |
-ROW |29892 |17828 |16862 |
-ROW |29893 |17829 |16842 |
-ROW |29894 |17830 |16843 |
-ROW |29895 |17831 |16844 |
-ROW |29896 |17832 |16845 |
-ROW |29897 |17833 |16846 |
-ROW |29898 |17834 |16847 |
-ROW |29899 |17835 |16848 |
-ROW |29900 |17836 |16849 |
-ROW |29901 |17837 |16850 |
-ROW |29902 |17838 |16851 |
-ROW |29903 |17839 |16852 |
-ROW |29904 |17840 |16853 |
-ROW |29905 |17841 |16854 |
-ROW |29906 |17842 |16855 |
-ROW |29907 |17843 |16856 |
-ROW |29908 |17844 |16857 |
-ROW |29909 |17845 |16858 |
-ROW |29910 |17847 |16860 |
-ROW |29911 |17848 |16861 |
-ROW |29912 |17849 |16862 |
-ROW |29913 |15698 |16866 |
-ROW |29914 |17850 |16866 |
-ROW |29915 |17851 |16866 |
-ROW |29916 |16028 |16867 |
-ROW |29917 |17852 |16867 |
-ROW |29918 |17853 |16867 |
-ROW |29919 |17857 |17858 |
-ROW |29920 |17863 |17864 |
-ROW |29921 |14318 |14319 |
-ROW |29922 |17311 |15717 |
-ROW |29923 |17311 |17312 |
-ROW |29924 |17312 |15717 |
-ROW |29925 |17313 |15717 |
-ROW |29926 |17313 |17314 |
-ROW |29927 |17314 |15717 |
-ROW |29928 |17315 |17316 |
-ROW |29929 |17317 |17318 |
-ROW |29930 |17319 |17320 |
-ROW |29931 |17321 |17322 |
-ROW |29932 |15721 |15720 |
-ROW |29933 |15394 |15393 |
-ROW |29934 |15392 |15391 |
-ROW |29935 |17194 |14339 |
-ROW |29936 |15382 |15381 |
-ROW |29937 |15380 |15379 |
-ROW |29938 |16504 |16505 |
-ROW |29939 |14372 |14373 |
-ROW |29940 |15386 |15385 |
-ROW |29941 |15384 |15383 |
-ROW |29942 |14380 |14381 |
-ROW |29943 |18024 |18023 |
-ROW |29944 |18025 |18024 |
-ROW |29945 |18025 |18023 |
-ROW |29946 |18028 |18027 |
-ROW |29947 |18034 |18033 |
-ROW |29948 |18036 |18041 |
-ROW |29949 |18037 |18041 |
-ROW |29950 |18038 |18041 |
-ROW |29951 |18039 |18041 |
-ROW |29952 |18040 |18041 |
-ROW |29953 |18044 |18043 |
-ROW |29954 |18046 |18045 |
-ROW |29955 |18048 |18047 |
-ROW |29956 |18051 |18050 |
-ROW |29957 |18052 |18051 |
-ROW |29958 |18052 |18050 |
-ROW |29959 |18055 |18054 |
-ROW |29960 |18061 |18060 |
-ROW |29961 |18063 |18068 |
-ROW |29962 |18064 |18068 |
-ROW |29963 |18065 |18068 |
-ROW |29964 |18066 |18068 |
-ROW |29965 |18067 |18068 |
-ROW |29966 |18071 |18070 |
-ROW |29967 |18073 |18072 |
-ROW |29968 |18075 |18074 |
-ROW |29969 |18078 |18077 |
-ROW |29970 |18079 |18078 |
-ROW |29971 |18079 |18077 |
-ROW |29972 |18082 |18081 |
-ROW |29973 |18088 |18087 |
-ROW |29974 |18090 |18095 |
-ROW |29975 |18091 |18095 |
-ROW |29976 |18092 |18095 |
-ROW |29977 |18093 |18095 |
-ROW |29978 |18094 |18095 |
-ROW |29979 |18098 |18097 |
-ROW |29980 |18100 |18099 |
-ROW |29981 |18102 |18101 |
-ROW |29982 |18105 |18104 |
-ROW |29983 |18106 |18105 |
-ROW |29984 |18106 |18104 |
-ROW |29985 |18109 |18108 |
-ROW |29986 |18115 |18114 |
-ROW |29987 |18117 |18122 |
-ROW |29988 |18118 |18122 |
-ROW |29989 |18119 |18122 |
-ROW |29990 |18120 |18122 |
-ROW |29991 |18121 |18122 |
-ROW |29992 |18125 |18124 |
-ROW |29993 |18127 |18126 |
-ROW |29994 |18129 |18128 |
-ROW |29995 |18132 |18131 |
-ROW |29996 |18133 |18132 |
-ROW |29997 |18133 |18131 |
-ROW |29998 |18136 |18135 |
-ROW |29999 |18142 |18141 |
-ROW |30000 |18144 |18149 |
-ROW |30001 |18145 |18149 |
-ROW |30002 |18146 |18149 |
-ROW |30003 |18147 |18149 |
-ROW |30004 |18148 |18149 |
-ROW |30005 |18152 |18151 |
-ROW |30006 |18154 |18153 |
-ROW |30007 |18156 |18155 |
-ROW |30008 |15347 |15346 |
-ROW |30009 |15345 |15344 |
-ROW |30010 |17196 |17195 |
-ROW |30011 |15363 |15360 |
-ROW |30012 |15364 |15361 |
-ROW |30013 |15365 |15362 |
-ROW |30014 |15357 |15354 |
-ROW |30015 |15358 |15355 |
-ROW |30016 |15359 |15356 |
-ROW |30017 |17200 |17197 |
-ROW |30018 |17201 |17198 |
-ROW |30019 |17202 |17199 |
-ROW |30020 |15334 |15333 |
-ROW |30021 |15332 |15331 |
-ROW |30022 |14460 |14461 |
-ROW |30023 |14476 |14477 |
-ROW |30024 |14495 |14496 |
-ROW |30025 |14511 |17203 |
-ROW |30026 |14551 |14552 |
-ROW |30027 |15374 |15373 |
-ROW |30028 |15376 |15375 |
-ROW |30029 |14914 |14915 |
-ROW |30030 |14589 |14590 |
-ROW |30031 |15338 |15337 |
-ROW |30032 |17205 |17204 |
-ROW |30033 |14624 |14625 |
-ROW |30034 |18159 |18158 |
-ROW |30035 |18160 |18159 |
-ROW |30036 |18160 |18158 |
-ROW |30037 |18163 |18164 |
-ROW |30038 |18164 |18158 |
-ROW |30039 |18166 |18169 |
-ROW |30040 |18167 |18169 |
-ROW |30041 |18168 |18169 |
-ROW |30042 |18171 |18172 |
-ROW |30043 |18175 |18174 |
-ROW |30044 |14664 |14665 |
-ROW |30045 |17207 |17208 |
-ROW |30046 |16547 |16546 |
-ROW |30047 |17323 |17324 |
-ROW |30048 |17325 |17326 |
-ROW |30049 |17374 |17375 |
-ROW |30050 |17376 |17377 |
-ROW |30051 |17378 |17379 |
-ROW |30052 |17380 |17381 |
-ROW |30053 |17382 |17383 |
-ROW |30054 |17384 |17385 |
-ROW |30055 |17432 |17433 |
-ROW |30056 |17434 |17435 |
-ROW |30057 |17436 |17437 |
-ROW |30058 |17438 |17439 |
-ROW |30059 |17440 |17441 |
-ROW |30060 |17442 |17443 |
-ROW |30061 |17476 |17477 |
-ROW |30062 |17478 |17479 |
-ROW |30063 |17480 |17481 |
-ROW |30064 |17482 |17483 |
-ROW |30065 |17484 |17485 |
-ROW |30066 |17500 |17501 |
-ROW |30067 |17502 |17503 |
-ROW |30068 |17504 |17505 |
-ROW |30069 |17565 |17566 |
-ROW |30070 |17567 |17568 |
-ROW |30071 |17569 |17570 |
-ROW |30072 |17571 |17572 |
-ROW |30073 |17573 |17574 |
-ROW |30074 |17606 |17607 |
-ROW |30075 |17608 |17609 |
-ROW |30076 |17610 |17611 |
-ROW |30077 |17612 |17613 |
-ROW |30078 |17645 |17646 |
-ROW |30079 |17647 |17648 |
-ROW |30080 |17649 |17650 |
-ROW |30081 |17651 |17652 |
-ROW |30082 |17653 |17654 |
-ROW |30083 |17655 |17656 |
-ROW |30084 |17212 |17211 |
-ROW |30085 |16551 |16552 |
-ROW |30086 |17888 |17890 |
-ROW |30087 |17891 |17893 |
-ROW |30088 |17894 |17896 |
-ROW |30089 |17888 |17889 |
-ROW |30090 |17891 |17892 |
-ROW |30091 |17894 |17895 |
-ROW |30092 |16031 |16563 |
-ROW |30093 |16045 |16564 |
-ROW |30094 |16046 |16565 |
-ROW |30095 |16039 |16040 |
-ROW |30096 |16061 |16063 |
-ROW |30097 |16062 |16064 |
-ROW |30098 |16042 |16579 |
-ROW |30099 |16067 |16580 |
-ROW |30100 |16068 |16581 |
-ROW |30101 |16041 |16042 |
-ROW |30102 |16065 |16067 |
-ROW |30103 |16066 |16068 |
-ROW |30104 |16041 |16579 |
-ROW |30105 |16065 |16580 |
-ROW |30106 |16066 |16581 |
-ROW |30107 |17890 |17889 |
-ROW |30108 |17893 |17892 |
-ROW |30109 |17896 |17895 |
-ROW |30110 |16070 |16069 |
-ROW |30111 |16072 |16071 |
-ROW |30112 |16076 |16994 |
-ROW |30113 |17897 |16994 |
-ROW |30114 |16079 |16077 |
-ROW |30115 |16080 |16078 |
-ROW |30116 |16083 |16081 |
-ROW |30117 |16084 |16082 |
-ROW |30118 |16091 |16997 |
-ROW |30119 |16092 |16998 |
-ROW |30120 |17898 |16997 |
-ROW |30121 |17899 |16998 |
-ROW |30122 |17900 |17902 |
-ROW |30123 |17903 |17905 |
-ROW |30124 |17900 |17901 |
-ROW |30125 |17903 |17904 |
-ROW |30126 |16097 |16569 |
-ROW |30127 |16110 |16570 |
-ROW |30128 |16105 |16106 |
-ROW |30129 |16118 |16119 |
-ROW |30130 |16108 |16582 |
-ROW |30131 |16121 |16583 |
-ROW |30132 |16107 |16108 |
-ROW |30133 |16120 |16121 |
-ROW |30134 |16107 |16582 |
-ROW |30135 |16120 |16583 |
-ROW |30136 |17902 |17901 |
-ROW |30137 |17905 |17904 |
-ROW |30138 |16123 |16122 |
-ROW |30139 |16125 |16124 |
-ROW |30140 |16129 |17002 |
-ROW |30141 |17906 |17002 |
-ROW |30142 |16131 |16130 |
-ROW |30143 |16133 |16132 |
-ROW |30144 |16137 |17004 |
-ROW |30145 |17907 |17004 |
-ROW |30146 |17908 |17910 |
-ROW |30147 |17908 |17909 |
-ROW |30148 |16141 |16142 |
-ROW |30149 |16146 |16573 |
-ROW |30150 |16143 |16584 |
-ROW |30151 |17910 |17909 |
-ROW |30152 |16152 |16883 |
-ROW |30153 |16153 |16883 |
-ROW |30154 |17911 |16883 |
-ROW |30155 |17912 |16883 |
-ROW |30156 |16156 |16155 |
-ROW |30157 |16158 |16157 |
-ROW |30158 |17913 |17915 |
-ROW |30159 |17916 |17918 |
-ROW |30160 |17913 |17914 |
-ROW |30161 |17916 |17917 |
-ROW |30162 |17915 |17914 |
-ROW |30163 |17918 |17917 |
-ROW |30164 |16009 |16008 |
-ROW |30165 |16011 |16010 |
-ROW |30166 |16014 |16013 |
-ROW |30167 |16016 |16015 |
-ROW |30168 |17005 |16160 |
-ROW |30169 |17007 |16171 |
-ROW |30170 |17919 |17920 |
-ROW |30171 |17921 |17922 |
-ROW |30172 |16161 |16160 |
-ROW |30173 |16172 |16171 |
-ROW |30174 |16162 |16161 |
-ROW |30175 |16173 |16172 |
-ROW |30176 |16162 |16160 |
-ROW |30177 |16173 |16171 |
-ROW |30178 |16166 |17920 |
-ROW |30179 |16177 |17922 |
-ROW |30180 |16167 |17920 |
-ROW |30181 |16178 |17922 |
-ROW |30182 |16183 |16182 |
-ROW |30183 |19663 |19666 |
-ROW |30184 |19664 |19666 |
-ROW |30185 |19665 |19666 |
-ROW |30186 |17009 |17662 |
-ROW |30187 |17009 |17661 |
-ROW |30188 |16190 |16189 |
-ROW |30189 |19667 |19670 |
-ROW |30190 |19668 |19670 |
-ROW |30191 |19669 |19670 |
-ROW |30192 |17010 |17664 |
-ROW |30193 |17010 |17663 |
-ROW |30194 |17011 |16209 |
-ROW |30195 |17013 |16220 |
-ROW |30196 |17927 |17928 |
-ROW |30197 |17929 |17930 |
-ROW |30198 |16210 |16209 |
-ROW |30199 |16221 |16220 |
-ROW |30200 |16211 |16210 |
-ROW |30201 |16222 |16221 |
-ROW |30202 |16211 |16209 |
-ROW |30203 |16222 |16220 |
-ROW |30204 |16215 |17928 |
-ROW |30205 |16226 |17930 |
-ROW |30206 |16216 |17928 |
-ROW |30207 |16227 |17930 |
-ROW |30208 |16232 |16231 |
-ROW |30209 |19671 |19674 |
-ROW |30210 |19672 |19674 |
-ROW |30211 |19673 |19674 |
-ROW |30212 |17015 |17666 |
-ROW |30213 |17015 |17665 |
-ROW |30214 |16239 |16238 |
-ROW |30215 |19675 |19678 |
-ROW |30216 |19676 |19678 |
-ROW |30217 |19677 |19678 |
-ROW |30218 |17016 |17668 |
-ROW |30219 |17016 |17667 |
-ROW |30220 |18256 |18257 |
-ROW |30221 |18292 |18293 |
-ROW |30222 |18328 |18329 |
-ROW |30223 |18364 |18365 |
-ROW |30224 |18400 |18401 |
-ROW |30225 |18436 |18437 |
-ROW |30226 |18472 |18473 |
-ROW |30227 |18199 |18200 |
-ROW |30228 |18511 |18512 |
-ROW |30229 |18547 |18548 |
-ROW |30230 |18583 |18584 |
-ROW |30231 |16768 |16769 |
-ROW |30232 |16768 |16770 |
-ROW |30233 |16769 |16770 |
-ROW |30234 |16771 |16772 |
-ROW |30235 |16771 |16773 |
-ROW |30236 |16772 |16773 |
-ROW |30237 |18966 |18967 |
-ROW |30238 |18969 |18968 |
-ROW |30239 |18971 |18970 |
-ROW |30240 |18972 |18970 |
-ROW |30241 |18972 |18971 |
-ROW |30242 |18974 |18973 |
-ROW |30243 |18975 |18976 |
-ROW |30244 |18979 |18978 |
-ROW |30245 |18981 |18980 |
-ROW |30246 |18982 |18983 |
-ROW |30247 |18984 |18987 |
-ROW |30248 |18984 |18989 |
-ROW |30249 |18984 |18985 |
-ROW |30250 |18984 |18991 |
-ROW |30251 |18986 |18987 |
-ROW |30252 |18986 |18989 |
-ROW |30253 |18986 |18985 |
-ROW |30254 |18986 |18991 |
-ROW |30255 |18988 |18987 |
-ROW |30256 |18988 |18989 |
-ROW |30257 |18988 |18985 |
-ROW |30258 |18988 |18991 |
-ROW |30259 |18990 |18987 |
-ROW |30260 |18990 |18989 |
-ROW |30261 |18990 |18985 |
-ROW |30262 |18990 |18991 |
-ROW |30263 |18994 |18993 |
-ROW |30264 |16488 |16487 |
-ROW |30265 |16485 |16484 |
-ROW |30266 |16486 |16484 |
-ROW |30267 |16486 |16485 |
-ROW |30268 |16480 |16479 |
-ROW |30269 |16482 |16481 |
-ROW |30270 |16475 |16474 |
-ROW |30271 |16471 |16472 |
-ROW |30272 |16468 |16469 |
-ROW |30273 |16459 |16460 |
-ROW |30274 |16462 |16463 |
-ROW |30275 |16465 |16466 |
-ROW |30276 |16477 |16476 |
-ROW |30277 |19024 |19023 |
-ROW |30278 |19029 |19028 |
-ROW |30279 |19030 |19028 |
-ROW |30280 |19030 |19029 |
-ROW |30281 |19032 |19031 |
-ROW |30282 |19033 |19032 |
-ROW |30283 |19033 |19031 |
-ROW |30284 |19035 |19034 |
-ROW |30285 |19037 |19038 |
-ROW |30286 |19039 |19038 |
-ROW |30287 |19041 |19040 |
-ROW |30288 |19043 |19042 |
-ROW |30289 |19044 |19042 |
-ROW |30290 |19044 |19043 |
-ROW |30291 |19046 |19045 |
-ROW |30292 |19075 |19074 |
-ROW |30293 |19080 |19079 |
-ROW |30294 |19081 |19079 |
-ROW |30295 |19081 |19080 |
-ROW |30296 |19083 |19082 |
-ROW |30297 |19084 |19083 |
-ROW |30298 |19084 |19082 |
-ROW |30299 |19086 |19085 |
-ROW |30300 |19088 |19089 |
-ROW |30301 |19090 |19089 |
-ROW |30302 |19092 |19091 |
-ROW |30303 |19094 |19093 |
-ROW |30304 |19095 |19093 |
-ROW |30305 |19095 |19094 |
-ROW |30306 |19097 |19096 |
-ROW |30307 |19126 |19125 |
-ROW |30308 |19131 |19130 |
-ROW |30309 |19132 |19130 |
-ROW |30310 |19132 |19131 |
-ROW |30311 |19134 |19133 |
-ROW |30312 |19135 |19134 |
-ROW |30313 |19135 |19133 |
-ROW |30314 |19137 |19136 |
-ROW |30315 |19139 |19140 |
-ROW |30316 |19141 |19140 |
-ROW |30317 |19143 |19142 |
-ROW |30318 |19145 |19144 |
-ROW |30319 |19146 |19144 |
-ROW |30320 |19146 |19145 |
-ROW |30321 |19148 |19147 |
-ROW |30322 |19177 |19176 |
-ROW |30323 |19182 |19181 |
-ROW |30324 |19183 |19181 |
-ROW |30325 |19183 |19182 |
-ROW |30326 |19185 |19184 |
-ROW |30327 |19186 |19185 |
-ROW |30328 |19186 |19184 |
-ROW |30329 |19188 |19187 |
-ROW |30330 |19190 |19191 |
-ROW |30331 |19192 |19191 |
-ROW |30332 |19194 |19193 |
-ROW |30333 |19196 |19195 |
-ROW |30334 |19197 |19195 |
-ROW |30335 |19197 |19196 |
-ROW |30336 |19199 |19198 |
-ROW |30337 |15729 |15728 |
-ROW |30338 |15730 |15728 |
-ROW |30339 |15730 |15729 |
-ROW |30340 |15752 |15754 |
-ROW |30341 |15753 |15754 |
-ROW |30342 |15753 |15752 |
-ROW |30343 |15742 |15741 |
-ROW |30344 |15750 |15749 |
-ROW |30345 |15751 |15750 |
-ROW |30346 |15751 |15749 |
-ROW |30347 |15746 |15743 |
-ROW |30348 |15744 |15743 |
-ROW |30349 |15740 |15739 |
-ROW |30350 |17214 |17213 |
-ROW |30351 |17216 |17215 |
-ROW |30352 |15748 |15747 |
-ROW |30353 |19203 |19202 |
-ROW |30354 |19207 |19206 |
-ROW |30355 |19209 |19208 |
-ROW |30356 |19210 |19208 |
-ROW |30357 |19210 |19209 |
-ROW |30358 |19212 |19211 |
-ROW |30359 |19214 |19213 |
-ROW |30360 |19216 |19215 |
-ROW |30361 |19218 |19219 |
-ROW |30362 |19220 |19219 |
-ROW |30363 |19222 |19221 |
-ROW |30364 |19245 |19244 |
-ROW |30365 |19249 |19248 |
-ROW |30366 |19253 |19252 |
-ROW |30367 |19255 |19254 |
-ROW |30368 |19256 |19254 |
-ROW |30369 |19256 |19255 |
-ROW |30370 |19258 |19257 |
-ROW |30371 |19260 |19259 |
-ROW |30372 |19262 |19261 |
-ROW |30373 |19264 |19265 |
-ROW |30374 |19266 |19265 |
-ROW |30375 |19268 |19267 |
-ROW |30376 |19291 |19290 |
-ROW |30377 |19295 |19294 |
-ROW |30378 |19299 |19298 |
-ROW |30379 |19301 |19300 |
-ROW |30380 |19302 |19300 |
-ROW |30381 |19302 |19301 |
-ROW |30382 |19304 |19303 |
-ROW |30383 |19306 |19305 |
-ROW |30384 |19308 |19307 |
-ROW |30385 |19310 |19311 |
-ROW |30386 |19312 |19311 |
-ROW |30387 |19314 |19313 |
-ROW |30388 |19337 |19336 |
-ROW |30389 |19341 |19340 |
-ROW |30390 |19345 |19344 |
-ROW |30391 |19347 |19346 |
-ROW |30392 |19348 |19346 |
-ROW |30393 |19348 |19347 |
-ROW |30394 |19350 |19349 |
-ROW |30395 |19352 |19351 |
-ROW |30396 |19354 |19353 |
-ROW |30397 |19356 |19357 |
-ROW |30398 |19358 |19357 |
-ROW |30399 |19360 |19359 |
-ROW |30400 |19383 |19382 |
-ROW |30401 |16440 |16439 |
-ROW |30402 |17768 |15790 |
-ROW |30403 |17769 |15787 |
-ROW |30404 |17770 |15787 |
-ROW |30405 |17770 |17769 |
-ROW |30406 |15786 |15785 |
-ROW |30407 |15784 |15783 |
-ROW |30408 |15794 |15792 |
-ROW |30409 |15793 |15792 |
-ROW |30410 |15782 |15781 |
-ROW |30411 |15797 |15796 |
-ROW |30412 |15825 |15824 |
-ROW |30413 |15826 |15824 |
-ROW |30414 |15826 |15825 |
-ROW |30415 |15828 |15829 |
-ROW |30416 |15831 |15832 |
-ROW |30417 |15834 |15835 |
-ROW |30418 |15845 |15846 |
+ROW |30419 |17682 |17683 |
+ROW |30420 |17684 |17685 |
+ROW |30421 |17686 |17687 |
+ROW |30422 |15944 |15947 |
+ROW |30423 |15944 |15943 |
+ROW |30424 |15943 |15947 |
+ROW |30425 |16888 |15947 |
+ROW |30426 |16888 |15943 |
+ROW |30427 |15948 |15949 |
+ROW |30428 |15950 |15949 |
+ROW |30429 |17219 |17218 |
+ROW |30430 |17222 |17221 |
+ROW |30431 |19426 |19428 |
+ROW |30432 |16743 |16744 |
+ROW |30433 |16784 |16785 |
+ROW |30434 |16790 |16791 |
+ROW |30435 |16892 |16900 |
+ROW |30436 |16894 |16900 |
+ROW |30437 |17267 |17275 |
+ROW |30438 |17272 |17276 |
+ROW |30439 |17273 |17275 |
+ROW |30440 |17274 |17276 |
+ROW |30441 |17279 |17277 |
+ROW |30442 |17282 |17280 |
+ROW |30443 |16646 |16647 |
+ROW |30444 |19437 |19442 |
+ROW |30445 |16809 |16810 |
+ROW |30446 |19451 |19456 |
+ROW |30447 |16902 |16904 |
+ROW |30448 |16904 |16905 |
+ROW |30449 |16909 |16906 |
+ROW |30450 |16910 |16912 |
+ROW |30451 |16912 |16913 |
+ROW |30452 |16917 |16914 |
+ROW |30453 |16752 |16753 |
+ROW |30454 |15955 |15957 |
+ROW |30455 |15955 |15954 |
+ROW |30456 |15954 |15957 |
+ROW |30457 |15956 |15957 |
+ROW |30458 |15956 |15954 |
+ROW |30459 |16678 |15957 |
+ROW |30460 |16678 |15954 |
+ROW |30461 |15961 |15960 |
+ROW |30462 |15962 |15960 |
+ROW |30463 |16679 |15960 |
+ROW |30464 |17225 |17231 |
+ROW |30465 |17228 |17231 |
+ROW |30466 |17236 |17233 |
+ROW |30467 |17966 |17968 |
+ROW |30468 |17966 |17967 |
+ROW |30469 |17967 |17968 |
+ROW |30470 |17973 |17968 |
+ROW |30471 |17973 |17967 |
+ROW |30472 |17975 |17968 |
+ROW |30473 |17975 |17967 |
+ROW |30474 |17985 |17986 |
+ROW |30475 |17987 |17986 |
+ROW |30476 |17992 |17986 |
+ROW |30477 |17081 |17083 |
+ROW |30478 |17082 |17081 |
+ROW |30479 |17082 |17083 |
+ROW |30480 |17082 |17084 |
+ROW |30481 |17084 |17083 |
+ROW |30482 |18615 |18614 |
+ROW |30483 |17117 |17127 |
+ROW |30484 |17118 |17117 |
+ROW |30485 |17118 |17127 |
+ROW |30486 |17119 |17127 |
+ROW |30487 |17120 |17119 |
+ROW |30488 |17120 |17127 |
+ROW |30489 |17122 |17121 |
+ROW |30490 |17123 |17127 |
+ROW |30491 |17124 |17123 |
+ROW |30492 |17124 |17127 |
+ROW |30493 |17126 |17125 |
+ROW |30494 |17128 |17144 |
+ROW |30495 |17129 |17128 |
+ROW |30496 |17129 |17144 |
+ROW |30497 |17130 |17144 |
+ROW |30498 |17131 |17130 |
+ROW |30499 |17131 |17144 |
+ROW |30500 |17132 |17144 |
+ROW |30501 |17133 |17132 |
+ROW |30502 |17133 |17144 |
+ROW |30503 |17134 |17144 |
+ROW |30504 |17135 |17134 |
+ROW |30505 |17135 |17144 |
+ROW |30506 |17136 |17144 |
+ROW |30507 |17137 |17136 |
+ROW |30508 |17137 |17144 |
+ROW |30509 |17139 |17138 |
+ROW |30510 |17140 |17144 |
+ROW |30511 |17141 |17140 |
+ROW |30512 |17141 |17144 |
+ROW |30513 |17142 |17144 |
+ROW |30514 |17143 |17142 |
+ROW |30515 |17143 |17144 |
+ROW |30516 |17145 |17144 |
+ROW |30517 |17146 |17144 |
+ROW |30518 |17146 |17145 |
+ROW |30519 |17147 |17144 |
+ROW |30520 |17148 |17144 |
+ROW |30521 |17148 |17147 |
+ROW |30522 |17306 |17307 |
+ROW |30523 |16920 |16921 |
+ROW |30524 |16833 |16920 |
+ROW |30525 |19395 |19394 |
+ROW |30526 |19397 |19396 |
+ROW |30527 |19400 |19401 |
+ROW |30528 |19402 |19401 |
+ROW |30529 |19412 |19413 |
+ROW |30530 |17748 |17747 |
+ROW |30531 |17750 |17749 |
+ROW |30532 |17753 |17754 |
+ROW |30533 |17755 |17754 |
+ROW |30534 |17765 |17766 |
+ROW |30535 |18007 |18005 |
+ROW |30536 |18019 |18017 |
+ROW |30537 |16929 |16928 |
+ROW |30538 |16940 |17153 |
+ROW |30539 |18627 |18626 |
+ROW |30540 |18629 |18628 |
+ROW |30541 |18631 |18630 |
+ROW |30542 |16719 |16721 |
+ROW |30543 |16975 |16723 |
+ROW |30544 |16729 |16728 |
+ROW |30545 |16730 |16728 |
+ROW |30546 |16756 |16758 |
+ROW |30547 |16979 |16759 |
+ROW |30548 |16765 |16764 |
+ROW |30549 |16766 |16764 |
+ROW |30550 |16734 |16736 |
+ROW |30551 |16983 |16732 |
+ROW |30552 |16741 |16740 |
+ROW |30553 |16742 |16740 |
+ROW |30554 |17173 |17172 |
+ROW |30555 |17175 |17176 |
+ROW |30556 |17180 |17179 |
+ROW |30557 |17711 |17712 |
+ROW |30558 |17713 |17714 |
+ROW |30559 |15928 |15933 |
+ROW |30560 |15931 |15933 |
+ROW |30561 |16683 |16687 |
+ROW |30562 |14252 |14251 |
+ROW |30563 |14294 |14293 |
+ROW |30564 |14312 |14311 |
+ROW |30565 |14328 |14327 |
+ROW |30566 |14348 |14347 |
+ROW |30567 |14357 |14356 |
+ROW |30568 |14390 |14389 |
+ROW |30569 |14404 |14403 |
+ROW |30570 |14452 |14451 |
+ROW |30571 |14469 |14468 |
+ROW |30572 |14487 |14486 |
+ROW |30573 |14506 |14505 |
+ROW |30574 |14535 |14534 |
+ROW |30575 |14545 |14544 |
+ROW |30576 |14583 |14582 |
+ROW |30577 |14599 |14598 |
+ROW |30578 |14616 |14615 |
+ROW |30579 |14653 |14652 |
+ROW |30580 |14674 |14673 |
+ROW |30581 |14692 |14691 |
+ROW |30582 |14705 |14704 |
+ROW |30583 |14718 |14717 |
+ROW |30584 |14907 |14906 |
+ROW |30585 |15221 |15220 |
+ROW |30586 |15702 |15701 |
+ROW |30587 |15724 |15723 |
+ROW |30588 |15756 |15755 |
+ROW |30589 |15820 |15819 |
+ROW |30590 |15841 |15840 |
+ROW |30591 |15991 |15990 |
+ROW |30592 |16018 |16017 |
+ROW |30593 |16454 |16453 |
+ROW |30594 |17721 |17720 |
+ROW |30595 |17936 |17935 |
+ROW |30596 |14253 |14252 |
+ROW |30597 |14295 |14294 |
+ROW |30598 |14313 |14312 |
+ROW |30599 |14329 |14328 |
+ROW |30600 |14349 |14348 |
+ROW |30601 |14358 |14357 |
+ROW |30602 |14391 |14390 |
+ROW |30603 |14405 |14404 |
+ROW |30604 |14453 |14452 |
+ROW |30605 |14470 |14469 |
+ROW |30606 |14488 |14487 |
+ROW |30607 |14507 |14506 |
+ROW |30608 |14536 |14535 |
+ROW |30609 |14546 |14545 |
+ROW |30610 |14584 |14583 |
+ROW |30611 |14600 |14599 |
+ROW |30612 |14617 |14616 |
+ROW |30613 |14654 |14653 |
+ROW |30614 |14675 |14674 |
+ROW |30615 |14693 |14692 |
+ROW |30616 |14706 |14705 |
+ROW |30617 |14719 |14718 |
+ROW |30618 |14908 |14907 |
+ROW |30619 |15222 |15221 |
+ROW |30620 |15703 |15702 |
+ROW |30621 |15725 |15724 |
+ROW |30622 |15757 |15756 |
+ROW |30623 |15821 |15820 |
+ROW |30624 |15842 |15841 |
+ROW |30625 |15992 |15991 |
+ROW |30626 |16019 |16018 |
+ROW |30627 |16455 |16454 |
+ROW |30628 |17722 |17721 |
+ROW |30629 |17937 |17936 |
+ROW |30630 |14253 |14251 |
+ROW |30631 |14295 |14293 |
+ROW |30632 |14313 |14311 |
+ROW |30633 |14329 |14327 |
+ROW |30634 |14349 |14347 |
+ROW |30635 |14358 |14356 |
+ROW |30636 |14391 |14389 |
+ROW |30637 |14405 |14403 |
+ROW |30638 |14453 |14451 |
+ROW |30639 |14470 |14468 |
+ROW |30640 |14488 |14486 |
+ROW |30641 |14507 |14505 |
+ROW |30642 |14536 |14534 |
+ROW |30643 |14546 |14544 |
+ROW |30644 |14584 |14582 |
+ROW |30645 |14600 |14598 |
+ROW |30646 |14617 |14615 |
+ROW |30647 |14654 |14652 |
+ROW |30648 |14675 |14673 |
+ROW |30649 |14693 |14691 |
+ROW |30650 |14706 |14704 |
+ROW |30651 |14719 |14717 |
+ROW |30652 |14908 |14906 |
+ROW |30653 |15222 |15220 |
+ROW |30654 |15703 |15701 |
+ROW |30655 |15725 |15723 |
+ROW |30656 |15757 |15755 |
+ROW |30657 |15821 |15819 |
+ROW |30658 |15842 |15840 |
+ROW |30659 |15992 |15990 |
+ROW |30660 |16019 |16017 |
+ROW |30661 |16455 |16453 |
+ROW |30662 |17722 |17720 |
+ROW |30663 |17937 |17935 |
+ROW |30664 |16287 |16289 |
+ROW |30665 |16279 |16285 |
+ROW |30666 |16290 |16348 |
+ROW |30667 |16291 |16349 |
+ROW |30668 |16292 |16350 |
+ROW |30669 |16293 |16351 |
+ROW |30670 |16294 |16352 |
+ROW |30671 |16295 |16353 |
+ROW |30672 |16296 |16354 |
+ROW |30673 |16297 |16355 |
+ROW |30674 |16298 |16356 |
+ROW |30675 |16299 |16357 |
+ROW |30676 |16300 |16358 |
+ROW |30677 |16301 |16359 |
+ROW |30678 |16302 |16360 |
+ROW |30679 |16303 |16361 |
+ROW |30680 |16304 |16362 |
+ROW |30681 |16305 |16363 |
+ROW |30682 |16306 |16364 |
+ROW |30683 |16307 |16365 |
+ROW |30684 |16308 |16366 |
+ROW |30685 |16309 |16367 |
+ROW |30686 |16311 |16369 |
+ROW |30687 |16312 |16370 |
+ROW |30688 |16313 |16371 |
+ROW |30689 |16314 |16372 |
+ROW |30690 |16315 |16373 |
+ROW |30691 |16316 |16374 |
+ROW |30692 |16317 |16375 |
+ROW |30693 |16318 |16376 |
+ROW |30694 |16457 |16458 |
+ROW |30695 |17724 |17725 |
+ROW |30696 |17939 |17940 |
+ROW |30697 |16289 |14293 |
+ROW |30698 |16285 |14717 |
+ROW |30699 |16348 |14311 |
+ROW |30700 |16349 |14327 |
+ROW |30701 |16350 |14347 |
+ROW |30702 |16351 |14356 |
+ROW |30703 |16352 |14389 |
+ROW |30704 |16353 |14403 |
+ROW |30705 |16354 |14451 |
+ROW |30706 |16355 |14468 |
+ROW |30707 |16356 |14486 |
+ROW |30708 |16357 |14505 |
+ROW |30709 |16358 |14534 |
+ROW |30710 |16359 |14544 |
+ROW |30711 |16360 |14582 |
+ROW |30712 |16361 |14598 |
+ROW |30713 |16362 |14615 |
+ROW |30714 |16363 |14652 |
+ROW |30715 |16364 |14673 |
+ROW |30716 |16365 |14691 |
+ROW |30717 |16366 |14704 |
+ROW |30718 |16367 |14906 |
+ROW |30719 |16369 |15220 |
+ROW |30720 |16370 |15701 |
+ROW |30721 |16371 |15723 |
+ROW |30722 |16372 |15755 |
+ROW |30723 |16373 |15819 |
+ROW |30724 |16374 |15840 |
+ROW |30725 |16375 |15990 |
+ROW |30726 |16376 |16017 |
+ROW |30727 |16458 |16453 |
+ROW |30728 |17725 |17720 |
+ROW |30729 |17940 |17935 |
+ROW |30730 |16631 |16630 |
+ROW |30731 |16640 |16636 |
+ROW |30732 |16642 |16638 |
+ROW |30733 |16643 |16639 |
+ROW |30734 |15695 |16863 |
+ROW |30735 |17798 |16863 |
+ROW |30736 |17799 |16863 |
+ROW |30737 |15694 |16868 |
+ROW |30738 |15696 |16864 |
+ROW |30739 |15697 |16865 |
+ROW |30740 |17800 |16864 |
+ROW |30741 |17801 |16865 |
+ROW |30742 |17802 |16868 |
+ROW |30743 |17803 |16864 |
+ROW |30744 |17804 |16865 |
+ROW |30745 |17805 |16868 |
+ROW |30746 |15671 |16841 |
+ROW |30747 |17806 |16841 |
+ROW |30748 |17807 |16841 |
+ROW |30749 |15672 |16842 |
+ROW |30750 |15673 |16843 |
+ROW |30751 |15674 |16844 |
+ROW |30752 |15675 |16845 |
+ROW |30753 |15676 |16846 |
+ROW |30754 |15677 |16847 |
+ROW |30755 |15678 |16848 |
+ROW |30756 |15679 |16849 |
+ROW |30757 |15680 |16850 |
+ROW |30758 |15681 |16851 |
+ROW |30759 |15682 |16852 |
+ROW |30760 |15683 |16853 |
+ROW |30761 |15684 |16854 |
+ROW |30762 |15685 |16855 |
+ROW |30763 |15686 |16856 |
+ROW |30764 |15687 |16857 |
+ROW |30765 |15689 |16858 |
+ROW |30766 |15691 |16860 |
+ROW |30767 |15708 |16861 |
+ROW |30768 |15997 |16862 |
+ROW |30769 |17808 |16842 |
+ROW |30770 |17809 |16843 |
+ROW |30771 |17810 |16844 |
+ROW |30772 |17811 |16845 |
+ROW |30773 |17812 |16846 |
+ROW |30774 |17813 |16847 |
+ROW |30775 |17814 |16848 |
+ROW |30776 |17815 |16849 |
+ROW |30777 |17816 |16850 |
+ROW |30778 |17817 |16851 |
+ROW |30779 |17818 |16852 |
+ROW |30780 |17819 |16853 |
+ROW |30781 |17820 |16854 |
+ROW |30782 |17821 |16855 |
+ROW |30783 |17822 |16856 |
+ROW |30784 |17823 |16857 |
+ROW |30785 |17824 |16858 |
+ROW |30786 |17826 |16860 |
+ROW |30787 |17827 |16861 |
+ROW |30788 |17828 |16862 |
+ROW |30789 |17829 |16842 |
+ROW |30790 |17830 |16843 |
+ROW |30791 |17831 |16844 |
+ROW |30792 |17832 |16845 |
+ROW |30793 |17833 |16846 |
+ROW |30794 |17834 |16847 |
+ROW |30795 |17835 |16848 |
+ROW |30796 |17836 |16849 |
+ROW |30797 |17837 |16850 |
+ROW |30798 |17838 |16851 |
+ROW |30799 |17839 |16852 |
+ROW |30800 |17840 |16853 |
+ROW |30801 |17841 |16854 |
+ROW |30802 |17842 |16855 |
+ROW |30803 |17843 |16856 |
+ROW |30804 |17844 |16857 |
+ROW |30805 |17845 |16858 |
+ROW |30806 |17847 |16860 |
+ROW |30807 |17848 |16861 |
+ROW |30808 |17849 |16862 |
+ROW |30809 |15698 |16866 |
+ROW |30810 |17850 |16866 |
+ROW |30811 |17851 |16866 |
+ROW |30812 |16028 |16867 |
+ROW |30813 |17852 |16867 |
+ROW |30814 |17853 |16867 |
+ROW |30815 |17857 |17858 |
+ROW |30816 |17863 |17864 |
+ROW |30817 |14318 |14319 |
+ROW |30818 |17311 |15717 |
+ROW |30819 |17311 |17312 |
+ROW |30820 |17312 |15717 |
+ROW |30821 |17313 |15717 |
+ROW |30822 |17313 |17314 |
+ROW |30823 |17314 |15717 |
+ROW |30824 |17315 |17316 |
+ROW |30825 |17317 |17318 |
+ROW |30826 |17319 |17320 |
+ROW |30827 |17321 |17322 |
+ROW |30828 |15721 |15720 |
+ROW |30829 |15394 |15393 |
+ROW |30830 |15392 |15391 |
+ROW |30831 |17194 |14339 |
+ROW |30832 |15382 |15381 |
+ROW |30833 |15380 |15379 |
+ROW |30834 |16504 |16505 |
+ROW |30835 |14372 |14373 |
+ROW |30836 |15386 |15385 |
+ROW |30837 |15384 |15383 |
+ROW |30838 |14380 |14381 |
+ROW |30839 |18024 |18023 |
+ROW |30840 |18025 |18024 |
+ROW |30841 |18025 |18023 |
+ROW |30842 |18028 |18027 |
+ROW |30843 |18034 |18033 |
+ROW |30844 |18036 |18041 |
+ROW |30845 |18037 |18041 |
+ROW |30846 |18038 |18041 |
+ROW |30847 |18039 |18041 |
+ROW |30848 |18040 |18041 |
+ROW |30849 |18044 |18043 |
+ROW |30850 |18046 |18045 |
+ROW |30851 |18048 |18047 |
+ROW |30852 |18051 |18050 |
+ROW |30853 |18052 |18051 |
+ROW |30854 |18052 |18050 |
+ROW |30855 |18055 |18054 |
+ROW |30856 |18061 |18060 |
+ROW |30857 |18063 |18068 |
+ROW |30858 |18064 |18068 |
+ROW |30859 |18065 |18068 |
+ROW |30860 |18066 |18068 |
+ROW |30861 |18067 |18068 |
+ROW |30862 |18071 |18070 |
+ROW |30863 |18073 |18072 |
+ROW |30864 |18075 |18074 |
+ROW |30865 |18078 |18077 |
+ROW |30866 |18079 |18078 |
+ROW |30867 |18079 |18077 |
+ROW |30868 |18082 |18081 |
+ROW |30869 |18088 |18087 |
+ROW |30870 |18090 |18095 |
+ROW |30871 |18091 |18095 |
+ROW |30872 |18092 |18095 |
+ROW |30873 |18093 |18095 |
+ROW |30874 |18094 |18095 |
+ROW |30875 |18098 |18097 |
+ROW |30876 |18100 |18099 |
+ROW |30877 |18102 |18101 |
+ROW |30878 |18105 |18104 |
+ROW |30879 |18106 |18105 |
+ROW |30880 |18106 |18104 |
+ROW |30881 |18109 |18108 |
+ROW |30882 |18115 |18114 |
+ROW |30883 |18117 |18122 |
+ROW |30884 |18118 |18122 |
+ROW |30885 |18119 |18122 |
+ROW |30886 |18120 |18122 |
+ROW |30887 |18121 |18122 |
+ROW |30888 |18125 |18124 |
+ROW |30889 |18127 |18126 |
+ROW |30890 |18129 |18128 |
+ROW |30891 |18132 |18131 |
+ROW |30892 |18133 |18132 |
+ROW |30893 |18133 |18131 |
+ROW |30894 |18136 |18135 |
+ROW |30895 |18142 |18141 |
+ROW |30896 |18144 |18149 |
+ROW |30897 |18145 |18149 |
+ROW |30898 |18146 |18149 |
+ROW |30899 |18147 |18149 |
+ROW |30900 |18148 |18149 |
+ROW |30901 |18152 |18151 |
+ROW |30902 |18154 |18153 |
+ROW |30903 |18156 |18155 |
+ROW |30904 |15347 |15346 |
+ROW |30905 |15345 |15344 |
+ROW |30906 |17196 |17195 |
+ROW |30907 |15363 |15360 |
+ROW |30908 |15364 |15361 |
+ROW |30909 |15365 |15362 |
+ROW |30910 |15357 |15354 |
+ROW |30911 |15358 |15355 |
+ROW |30912 |15359 |15356 |
+ROW |30913 |17200 |17197 |
+ROW |30914 |17201 |17198 |
+ROW |30915 |17202 |17199 |
+ROW |30916 |15334 |15333 |
+ROW |30917 |15332 |15331 |
+ROW |30918 |14460 |14461 |
+ROW |30919 |14476 |14477 |
+ROW |30920 |14495 |14496 |
+ROW |30921 |14511 |17203 |
+ROW |30922 |19692 |19691 |
+ROW |30923 |19694 |19695 |
+ROW |30924 |14551 |14552 |
+ROW |30925 |15374 |15373 |
+ROW |30926 |15376 |15375 |
+ROW |30927 |14914 |14915 |
+ROW |30928 |14589 |14590 |
+ROW |30929 |15338 |15337 |
+ROW |30930 |17205 |17204 |
+ROW |30931 |14624 |14625 |
+ROW |30932 |18159 |18158 |
+ROW |30933 |18160 |18159 |
+ROW |30934 |18160 |18158 |
+ROW |30935 |18163 |18164 |
+ROW |30936 |18164 |18158 |
+ROW |30937 |18166 |18169 |
+ROW |30938 |19696 |18169 |
+ROW |30939 |19697 |18169 |
+ROW |30940 |18171 |18172 |
+ROW |30941 |18175 |18174 |
+ROW |30942 |14664 |14665 |
+ROW |30943 |17207 |17208 |
+ROW |30944 |16547 |16546 |
+ROW |30945 |17323 |17324 |
+ROW |30946 |17325 |17326 |
+ROW |30947 |17374 |17375 |
+ROW |30948 |17376 |17377 |
+ROW |30949 |17378 |17379 |
+ROW |30950 |17380 |17381 |
+ROW |30951 |17382 |17383 |
+ROW |30952 |17384 |17385 |
+ROW |30953 |17432 |17433 |
+ROW |30954 |17434 |17435 |
+ROW |30955 |17436 |17437 |
+ROW |30956 |17438 |17439 |
+ROW |30957 |17440 |17441 |
+ROW |30958 |17442 |17443 |
+ROW |30959 |17476 |17477 |
+ROW |30960 |17478 |17479 |
+ROW |30961 |17480 |17481 |
+ROW |30962 |17482 |17483 |
+ROW |30963 |17484 |17485 |
+ROW |30964 |17500 |17501 |
+ROW |30965 |17502 |17503 |
+ROW |30966 |17504 |17505 |
+ROW |30967 |17565 |17566 |
+ROW |30968 |17567 |17568 |
+ROW |30969 |17569 |17570 |
+ROW |30970 |17571 |17572 |
+ROW |30971 |17573 |17574 |
+ROW |30972 |17606 |17607 |
+ROW |30973 |17608 |17609 |
+ROW |30974 |17610 |17611 |
+ROW |30975 |17612 |17613 |
+ROW |30976 |17645 |17646 |
+ROW |30977 |17647 |17648 |
+ROW |30978 |17649 |17650 |
+ROW |30979 |17651 |17652 |
+ROW |30980 |17653 |17654 |
+ROW |30981 |17655 |17656 |
+ROW |30982 |17212 |17211 |
+ROW |30983 |16551 |16552 |
+ROW |30984 |17888 |17890 |
+ROW |30985 |17891 |17893 |
+ROW |30986 |17894 |17896 |
+ROW |30987 |17888 |19699 |
+ROW |30988 |17891 |19700 |
+ROW |30989 |17894 |19701 |
+ROW |30990 |16031 |16563 |
+ROW |30991 |16045 |16564 |
+ROW |30992 |16046 |16565 |
+ROW |30993 |16039 |16040 |
+ROW |30994 |16061 |16063 |
+ROW |30995 |16062 |16064 |
+ROW |30996 |16042 |16579 |
+ROW |30997 |16067 |16580 |
+ROW |30998 |16068 |16581 |
+ROW |30999 |16041 |16042 |
+ROW |31000 |16065 |16067 |
+ROW |31001 |16066 |16068 |
+ROW |31002 |16041 |16579 |
+ROW |31003 |16065 |16580 |
+ROW |31004 |16066 |16581 |
+ROW |31005 |17890 |19699 |
+ROW |31006 |17893 |19700 |
+ROW |31007 |17896 |19701 |
+ROW |31008 |16070 |16069 |
+ROW |31009 |16072 |16071 |
+ROW |31010 |16076 |16994 |
+ROW |31011 |19702 |16994 |
+ROW |31012 |16079 |16077 |
+ROW |31013 |16080 |16078 |
+ROW |31014 |16083 |16081 |
+ROW |31015 |16084 |16082 |
+ROW |31016 |16091 |16997 |
+ROW |31017 |16092 |16998 |
+ROW |31018 |19703 |16997 |
+ROW |31019 |19704 |16998 |
+ROW |31020 |17900 |17902 |
+ROW |31021 |17903 |17905 |
+ROW |31022 |17900 |19705 |
+ROW |31023 |17903 |19706 |
+ROW |31024 |16097 |16569 |
+ROW |31025 |16110 |16570 |
+ROW |31026 |16105 |16106 |
+ROW |31027 |16118 |16119 |
+ROW |31028 |16108 |16582 |
+ROW |31029 |16121 |16583 |
+ROW |31030 |16107 |16108 |
+ROW |31031 |16120 |16121 |
+ROW |31032 |16107 |16582 |
+ROW |31033 |16120 |16583 |
+ROW |31034 |17902 |19705 |
+ROW |31035 |17905 |19706 |
+ROW |31036 |16123 |16122 |
+ROW |31037 |16125 |16124 |
+ROW |31038 |16129 |17002 |
+ROW |31039 |19707 |17002 |
+ROW |31040 |16131 |16130 |
+ROW |31041 |16133 |16132 |
+ROW |31042 |16137 |17004 |
+ROW |31043 |19708 |17004 |
+ROW |31044 |17908 |17910 |
+ROW |31045 |17908 |19709 |
+ROW |31046 |16141 |16142 |
+ROW |31047 |16146 |16573 |
+ROW |31048 |16143 |16584 |
+ROW |31049 |17910 |19709 |
+ROW |31050 |16152 |16883 |
+ROW |31051 |16153 |16883 |
+ROW |31052 |19710 |16883 |
+ROW |31053 |19711 |16883 |
+ROW |31054 |16156 |16155 |
+ROW |31055 |16158 |16157 |
+ROW |31056 |17913 |17915 |
+ROW |31057 |17916 |17918 |
+ROW |31058 |17913 |17914 |
+ROW |31059 |17916 |17917 |
+ROW |31060 |17915 |17914 |
+ROW |31061 |17918 |17917 |
+ROW |31062 |16009 |16008 |
+ROW |31063 |16011 |16010 |
+ROW |31064 |16014 |16013 |
+ROW |31065 |16016 |16015 |
+ROW |31066 |17005 |16160 |
+ROW |31067 |17007 |16171 |
+ROW |31068 |17919 |17920 |
+ROW |31069 |17921 |17922 |
+ROW |31070 |16161 |16160 |
+ROW |31071 |16172 |16171 |
+ROW |31072 |16162 |16161 |
+ROW |31073 |16173 |16172 |
+ROW |31074 |16162 |16160 |
+ROW |31075 |16173 |16171 |
+ROW |31076 |16166 |17920 |
+ROW |31077 |16177 |17922 |
+ROW |31078 |16167 |17920 |
+ROW |31079 |16178 |17922 |
+ROW |31080 |16183 |16182 |
+ROW |31081 |19663 |19666 |
+ROW |31082 |19664 |19666 |
+ROW |31083 |19665 |19666 |
+ROW |31084 |19712 |17662 |
+ROW |31085 |19712 |17661 |
+ROW |31086 |16190 |16189 |
+ROW |31087 |19667 |19670 |
+ROW |31088 |19668 |19670 |
+ROW |31089 |19669 |19670 |
+ROW |31090 |19713 |17664 |
+ROW |31091 |19713 |17663 |
+ROW |31092 |17011 |16209 |
+ROW |31093 |17013 |16220 |
+ROW |31094 |17927 |17928 |
+ROW |31095 |17929 |17930 |
+ROW |31096 |16210 |16209 |
+ROW |31097 |16221 |16220 |
+ROW |31098 |16211 |16210 |
+ROW |31099 |16222 |16221 |
+ROW |31100 |16211 |16209 |
+ROW |31101 |16222 |16220 |
+ROW |31102 |16215 |17928 |
+ROW |31103 |16226 |17930 |
+ROW |31104 |16216 |17928 |
+ROW |31105 |16227 |17930 |
+ROW |31106 |16232 |16231 |
+ROW |31107 |19671 |19674 |
+ROW |31108 |19672 |19674 |
+ROW |31109 |19673 |19674 |
+ROW |31110 |19714 |17666 |
+ROW |31111 |19714 |17665 |
+ROW |31112 |16239 |16238 |
+ROW |31113 |19675 |19678 |
+ROW |31114 |19676 |19678 |
+ROW |31115 |19677 |19678 |
+ROW |31116 |19715 |17668 |
+ROW |31117 |19715 |17667 |
+ROW |31118 |18256 |18257 |
+ROW |31119 |18292 |18293 |
+ROW |31120 |18328 |18329 |
+ROW |31121 |18364 |18365 |
+ROW |31122 |18400 |18401 |
+ROW |31123 |18436 |18437 |
+ROW |31124 |18472 |18473 |
+ROW |31125 |18199 |18200 |
+ROW |31126 |18511 |18512 |
+ROW |31127 |18547 |18548 |
+ROW |31128 |18583 |18584 |
+ROW |31129 |16768 |16769 |
+ROW |31130 |16768 |16770 |
+ROW |31131 |16769 |16770 |
+ROW |31132 |16771 |16772 |
+ROW |31133 |16771 |16773 |
+ROW |31134 |16772 |16773 |
+ROW |31135 |18966 |18967 |
+ROW |31136 |18969 |18968 |
+ROW |31137 |18971 |18970 |
+ROW |31138 |18972 |18970 |
+ROW |31139 |18972 |18971 |
+ROW |31140 |18974 |18973 |
+ROW |31141 |18975 |18976 |
+ROW |31142 |18979 |18978 |
+ROW |31143 |18981 |18980 |
+ROW |31144 |18982 |18983 |
+ROW |31145 |18984 |18987 |
+ROW |31146 |18984 |18989 |
+ROW |31147 |18984 |18985 |
+ROW |31148 |18984 |18991 |
+ROW |31149 |18986 |18987 |
+ROW |31150 |18986 |18989 |
+ROW |31151 |18986 |18985 |
+ROW |31152 |18986 |18991 |
+ROW |31153 |18988 |18987 |
+ROW |31154 |18988 |18989 |
+ROW |31155 |18988 |18985 |
+ROW |31156 |18988 |18991 |
+ROW |31157 |18990 |18987 |
+ROW |31158 |18990 |18989 |
+ROW |31159 |18990 |18985 |
+ROW |31160 |18990 |18991 |
+ROW |31161 |18994 |18993 |
+ROW |31162 |16488 |16487 |
+ROW |31163 |16485 |16484 |
+ROW |31164 |16486 |16484 |
+ROW |31165 |16486 |16485 |
+ROW |31166 |16480 |16479 |
+ROW |31167 |16482 |16481 |
+ROW |31168 |16475 |16474 |
+ROW |31169 |16471 |16472 |
+ROW |31170 |16468 |16469 |
+ROW |31171 |16459 |16460 |
+ROW |31172 |16462 |16463 |
+ROW |31173 |16465 |16466 |
+ROW |31174 |16477 |16476 |
+ROW |31175 |19024 |19023 |
+ROW |31176 |19029 |19028 |
+ROW |31177 |19030 |19028 |
+ROW |31178 |19030 |19029 |
+ROW |31179 |19032 |19031 |
+ROW |31180 |19033 |19032 |
+ROW |31181 |19033 |19031 |
+ROW |31182 |19035 |19034 |
+ROW |31183 |19037 |19038 |
+ROW |31184 |19039 |19038 |
+ROW |31185 |19041 |19040 |
+ROW |31186 |19043 |19042 |
+ROW |31187 |19044 |19042 |
+ROW |31188 |19044 |19043 |
+ROW |31189 |19046 |19045 |
+ROW |31190 |19075 |19074 |
+ROW |31191 |19080 |19079 |
+ROW |31192 |19081 |19079 |
+ROW |31193 |19081 |19080 |
+ROW |31194 |19083 |19082 |
+ROW |31195 |19084 |19083 |
+ROW |31196 |19084 |19082 |
+ROW |31197 |19086 |19085 |
+ROW |31198 |19088 |19089 |
+ROW |31199 |19090 |19089 |
+ROW |31200 |19092 |19091 |
+ROW |31201 |19094 |19093 |
+ROW |31202 |19095 |19093 |
+ROW |31203 |19095 |19094 |
+ROW |31204 |19097 |19096 |
+ROW |31205 |19126 |19125 |
+ROW |31206 |19131 |19130 |
+ROW |31207 |19132 |19130 |
+ROW |31208 |19132 |19131 |
+ROW |31209 |19134 |19133 |
+ROW |31210 |19135 |19134 |
+ROW |31211 |19135 |19133 |
+ROW |31212 |19137 |19136 |
+ROW |31213 |19139 |19140 |
+ROW |31214 |19141 |19140 |
+ROW |31215 |19143 |19142 |
+ROW |31216 |19145 |19144 |
+ROW |31217 |19146 |19144 |
+ROW |31218 |19146 |19145 |
+ROW |31219 |19148 |19147 |
+ROW |31220 |19177 |19176 |
+ROW |31221 |19182 |19181 |
+ROW |31222 |19183 |19181 |
+ROW |31223 |19183 |19182 |
+ROW |31224 |19185 |19184 |
+ROW |31225 |19186 |19185 |
+ROW |31226 |19186 |19184 |
+ROW |31227 |19188 |19187 |
+ROW |31228 |19190 |19191 |
+ROW |31229 |19192 |19191 |
+ROW |31230 |19194 |19193 |
+ROW |31231 |19196 |19195 |
+ROW |31232 |19197 |19195 |
+ROW |31233 |19197 |19196 |
+ROW |31234 |19199 |19198 |
+ROW |31235 |15729 |15728 |
+ROW |31236 |15730 |15728 |
+ROW |31237 |15730 |15729 |
+ROW |31238 |15752 |15754 |
+ROW |31239 |15753 |15754 |
+ROW |31240 |15753 |15752 |
+ROW |31241 |15742 |15741 |
+ROW |31242 |15750 |15749 |
+ROW |31243 |15751 |15750 |
+ROW |31244 |15751 |15749 |
+ROW |31245 |15746 |15743 |
+ROW |31246 |15744 |15743 |
+ROW |31247 |15740 |15739 |
+ROW |31248 |17214 |17213 |
+ROW |31249 |17216 |17215 |
+ROW |31250 |15748 |15747 |
+ROW |31251 |19203 |19202 |
+ROW |31252 |19207 |19206 |
+ROW |31253 |19209 |19208 |
+ROW |31254 |19210 |19208 |
+ROW |31255 |19210 |19209 |
+ROW |31256 |19212 |19211 |
+ROW |31257 |19214 |19213 |
+ROW |31258 |19216 |19215 |
+ROW |31259 |19218 |19219 |
+ROW |31260 |19220 |19219 |
+ROW |31261 |19222 |19221 |
+ROW |31262 |19245 |19244 |
+ROW |31263 |19249 |19248 |
+ROW |31264 |19253 |19252 |
+ROW |31265 |19255 |19254 |
+ROW |31266 |19256 |19254 |
+ROW |31267 |19256 |19255 |
+ROW |31268 |19258 |19257 |
+ROW |31269 |19260 |19259 |
+ROW |31270 |19262 |19261 |
+ROW |31271 |19264 |19265 |
+ROW |31272 |19266 |19265 |
+ROW |31273 |19268 |19267 |
+ROW |31274 |19291 |19290 |
+ROW |31275 |19295 |19294 |
+ROW |31276 |19299 |19298 |
+ROW |31277 |19301 |19300 |
+ROW |31278 |19302 |19300 |
+ROW |31279 |19302 |19301 |
+ROW |31280 |19304 |19303 |
+ROW |31281 |19306 |19305 |
+ROW |31282 |19308 |19307 |
+ROW |31283 |19310 |19311 |
+ROW |31284 |19312 |19311 |
+ROW |31285 |19314 |19313 |
+ROW |31286 |19337 |19336 |
+ROW |31287 |19341 |19340 |
+ROW |31288 |19345 |19344 |
+ROW |31289 |19347 |19346 |
+ROW |31290 |19348 |19346 |
+ROW |31291 |19348 |19347 |
+ROW |31292 |19350 |19349 |
+ROW |31293 |19352 |19351 |
+ROW |31294 |19354 |19353 |
+ROW |31295 |19356 |19357 |
+ROW |31296 |19358 |19357 |
+ROW |31297 |19360 |19359 |
+ROW |31298 |19383 |19382 |
+ROW |31299 |16440 |16439 |
+ROW |31300 |17768 |15790 |
+ROW |31301 |17769 |15787 |
+ROW |31302 |17770 |15787 |
+ROW |31303 |17770 |17769 |
+ROW |31304 |15786 |15785 |
+ROW |31305 |15784 |15783 |
+ROW |31306 |15794 |15792 |
+ROW |31307 |15793 |15792 |
+ROW |31308 |15782 |15781 |
+ROW |31309 |15797 |15796 |
+ROW |31310 |15825 |15824 |
+ROW |31311 |15826 |15824 |
+ROW |31312 |15826 |15825 |
+ROW |31313 |15828 |15829 |
+ROW |31314 |15831 |15832 |
+ROW |31315 |15834 |15835 |
+ROW |31316 |15845 |15846 |
TABLE |functions
FIELDS|functionid|itemid|triggerid|name |parameter |
@@ -16319,14 +16341,10 @@ ROW |19939 |29459 |17005 |min |5m
ROW |19940 |31325 |17005 |last | |
ROW |19943 |29485 |17007 |min |5m |
ROW |19944 |31328 |17007 |last | |
-ROW |19947 |31335 |17009 |min |15m |
-ROW |19948 |31339 |17010 |min |15m |
ROW |19949 |29566 |17011 |min |5m |
ROW |19950 |31343 |17011 |last | |
ROW |19953 |29592 |17013 |min |5m |
ROW |19954 |31346 |17013 |last | |
-ROW |19957 |31353 |17015 |min |15m |
-ROW |19958 |31357 |17016 |min |15m |
ROW |20054 |31532 |17063 |last | |
ROW |20055 |31538 |17063 |last | |
ROW |20056 |31536 |17064 |last | |
@@ -17346,61 +17364,22 @@ ROW |21155 |30131 |17886 |min |5m
ROW |21156 |30136 |17887 |min |5m |
ROW |21157 |29108 |17888 |min |5m |
ROW |21158 |29106 |17888 |last | |
-ROW |21159 |29105 |17889 |min |5m |
-ROW |21160 |29104 |17889 |last | |
ROW |21161 |31270 |17890 |min |5m |
ROW |21162 |29145 |17891 |min |5m |
ROW |21163 |29143 |17891 |last | |
-ROW |21164 |29142 |17892 |min |5m |
-ROW |21165 |29141 |17892 |last | |
ROW |21166 |31271 |17893 |min |5m |
ROW |21167 |29182 |17894 |min |5m |
ROW |21168 |29180 |17894 |last | |
-ROW |21169 |29179 |17895 |min |5m |
-ROW |21170 |29178 |17895 |last | |
ROW |21171 |31272 |17896 |min |5m |
-ROW |21172 |29219 |17897 |min |5m |
-ROW |21173 |29218 |17897 |min |5m |
-ROW |21174 |29219 |17897 |max |5m |
-ROW |21175 |29218 |17897 |max |5m |
-ROW |21176 |29233 |17898 |min |5m |
-ROW |21177 |29232 |17898 |min |5m |
-ROW |21178 |29233 |17898 |max |5m |
-ROW |21179 |29232 |17898 |max |5m |
-ROW |21180 |29247 |17899 |min |5m |
-ROW |21181 |29246 |17899 |min |5m |
-ROW |21182 |29247 |17899 |max |5m |
-ROW |21183 |29246 |17899 |max |5m |
ROW |21184 |29294 |17900 |min |5m |
ROW |21185 |29292 |17900 |last | |
-ROW |21186 |29291 |17901 |min |5m |
-ROW |21187 |29290 |17901 |last | |
ROW |21188 |31303 |17902 |min |5m |
ROW |21189 |29331 |17903 |min |5m |
ROW |21190 |29329 |17903 |last | |
-ROW |21191 |29328 |17904 |min |5m |
-ROW |21192 |29327 |17904 |last | |
ROW |21193 |31304 |17905 |min |5m |
-ROW |21194 |29364 |17906 |min |5m |
-ROW |21195 |29363 |17906 |min |5m |
-ROW |21196 |29364 |17906 |max |5m |
-ROW |21197 |29363 |17906 |max |5m |
-ROW |21198 |29378 |17907 |min |5m |
-ROW |21199 |29377 |17907 |min |5m |
-ROW |21200 |29378 |17907 |max |5m |
-ROW |21201 |29377 |17907 |max |5m |
ROW |21202 |29397 |17908 |min |5m |
ROW |21203 |29401 |17908 |last | |
-ROW |21204 |29402 |17909 |min |5m |
-ROW |21205 |29403 |17909 |last | |
ROW |21206 |29396 |17910 |min |5m |
-ROW |21207 |29436 |17911 |avg |15m |
-ROW |21208 |29442 |17911 |last | |
-ROW |21209 |29437 |17911 |avg |15m |
-ROW |21210 |29439 |17912 |min |5m |
-ROW |21211 |29438 |17912 |min |5m |
-ROW |21212 |29439 |17912 |max |5m |
-ROW |21213 |29438 |17912 |max |5m |
ROW |21214 |28986 |17913 |min |5m |
ROW |21215 |28984 |17913 |last | |
ROW |21216 |28983 |17914 |min |5m |
@@ -17751,13 +17730,6 @@ ROW |21593 |33423 |18166 |last |
ROW |21594 |33425 |18166 |last | |
ROW |21595 |33424 |18166 |last | |
ROW |21596 |33423 |18166 |prev | |
-ROW |21597 |33419 |18167 |avg |15m |
-ROW |21598 |33423 |18167 |last | |
-ROW |21599 |33422 |18167 |avg |15m |
-ROW |21600 |33418 |18168 |min |5m |
-ROW |21601 |33421 |18168 |min |5m |
-ROW |21602 |33418 |18168 |max |5m |
-ROW |21603 |33421 |18168 |max |5m |
ROW |21604 |33424 |18169 |last | |
ROW |21605 |33424 |18169 |diff | |
ROW |21606 |28206 |18170 |count |#1,{$PSU.STATUS.CRIT},eq |
@@ -17776,7 +17748,6 @@ ROW |21618 |33426 |18175 |last |
ROW |21619 |33427 |18175 |last | |
ROW |21620 |33428 |18175 |last | |
ROW |21621 |33426 |18175 |timeleft |1h,,100 |
-ROW |21622 |33431 |18176 |min |5m |
ROW |21623 |33457 |18177 |last | |
ROW |21624 |33455 |18178 |last | |
ROW |21625 |33455 |18179 |last | |
@@ -19072,8 +19043,6 @@ ROW |23094 |35682 |19417 |now |
ROW |23095 |35684 |19418 |last | |
ROW |23096 |35685 |19419 |last | |
ROW |23097 |35692 |19420 |last | |
-ROW |23098 |35718 |19421 |max |5m |
-ROW |23099 |35720 |19421 |min |5m |
ROW |23100 |35727 |19422 |max |5m |
ROW |23101 |35724 |19422 |min |5m |
ROW |23102 |35726 |19423 |max |5m |
@@ -19442,6 +19411,69 @@ ROW |23464 |28729 |19682 |min |5m
ROW |23465 |28741 |19683 |last | |
ROW |23466 |28716 |19684 |min |5m |
ROW |23467 |28724 |19685 |min |5m |
+ROW |23468 |36627 |19686 |count |10m,3,ne |
+ROW |23469 |36627 |19686 |count |10m,4,ne |
+ROW |23470 |36626 |19687 |last | |
+ROW |23471 |36626 |19688 |last | |
+ROW |23472 |35684 |19689 |last | |
+ROW |23473 |35685 |19690 |last | |
+ROW |23474 |35686 |19691 |last | |
+ROW |23475 |35686 |19692 |last | |
+ROW |23476 |35718 |19693 |last | |
+ROW |23477 |35720 |19693 |last | |
+ROW |23478 |36628 |19694 |count |120m,1,ne |
+ROW |23479 |36629 |19695 |count |120m,1,ne |
+ROW |23480 |33419 |19696 |avg |15m |
+ROW |23481 |33423 |19696 |last | |
+ROW |23482 |33422 |19696 |avg |15m |
+ROW |23483 |33418 |19697 |min |5m |
+ROW |23484 |33421 |19697 |min |5m |
+ROW |23485 |33418 |19697 |max |5m |
+ROW |23486 |33421 |19697 |max |5m |
+ROW |23487 |33431 |19698 |min |5m |
+ROW |23488 |29105 |19699 |min |5m |
+ROW |23489 |29104 |19699 |last | |
+ROW |23490 |29142 |19700 |min |5m |
+ROW |23491 |29141 |19700 |last | |
+ROW |23492 |29179 |19701 |min |5m |
+ROW |23493 |29178 |19701 |last | |
+ROW |23494 |29219 |19702 |min |5m |
+ROW |23495 |29218 |19702 |min |5m |
+ROW |23496 |29219 |19702 |max |5m |
+ROW |23497 |29218 |19702 |max |5m |
+ROW |23498 |29233 |19703 |min |5m |
+ROW |23499 |29232 |19703 |min |5m |
+ROW |23500 |29233 |19703 |max |5m |
+ROW |23501 |29232 |19703 |max |5m |
+ROW |23502 |29247 |19704 |min |5m |
+ROW |23503 |29246 |19704 |min |5m |
+ROW |23504 |29247 |19704 |max |5m |
+ROW |23505 |29246 |19704 |max |5m |
+ROW |23506 |29291 |19705 |min |5m |
+ROW |23507 |29290 |19705 |last | |
+ROW |23508 |29328 |19706 |min |5m |
+ROW |23509 |29327 |19706 |last | |
+ROW |23510 |29364 |19707 |min |5m |
+ROW |23511 |29363 |19707 |min |5m |
+ROW |23512 |29364 |19707 |max |5m |
+ROW |23513 |29363 |19707 |max |5m |
+ROW |23514 |29378 |19708 |min |5m |
+ROW |23515 |29377 |19708 |min |5m |
+ROW |23516 |29378 |19708 |max |5m |
+ROW |23517 |29377 |19708 |max |5m |
+ROW |23518 |29402 |19709 |min |5m |
+ROW |23519 |29403 |19709 |last | |
+ROW |23520 |29436 |19710 |avg |15m |
+ROW |23521 |29442 |19710 |last | |
+ROW |23522 |29437 |19710 |avg |15m |
+ROW |23523 |29439 |19711 |min |5m |
+ROW |23524 |29438 |19711 |min |5m |
+ROW |23525 |29439 |19711 |max |5m |
+ROW |23526 |29438 |19711 |max |5m |
+ROW |23527 |36630 |19712 |min |15m |
+ROW |23528 |36631 |19713 |min |15m |
+ROW |23529 |36632 |19714 |min |15m |
+ROW |23530 |36633 |19715 |min |15m |
TABLE |graphs
FIELDS|graphid|name |width|height|yaxismin|yaxismax|templateid|show_work_period|show_triggers|graphtype|show_legend|show_3d|percent_left|percent_right|ymin_type|ymax_type|ymin_itemid|ymax_itemid|flags|discover|
@@ -20792,2518 +20824,2518 @@ ROW |61801 |1658 |34825 |0 |0 |1A7C11|0 |2 |0 |
ROW |61802 |1659 |34833 |0 |0 |1A7C11|0 |2 |0 |
ROW |61803 |1660 |34834 |0 |0 |1A7C11|0 |2 |0 |
ROW |61804 |1661 |34791 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67311 |1374 |32471 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67312 |1375 |32469 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67313 |1375 |32468 |5 |1 |2774A4|0 |2 |0 |
-ROW |67314 |1376 |32472 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67315 |1376 |32467 |5 |1 |2774A4|0 |2 |0 |
-ROW |67316 |1377 |32483 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67317 |1377 |32482 |5 |1 |2774A4|0 |2 |0 |
-ROW |67318 |1378 |32484 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67319 |1378 |32481 |5 |1 |2774A4|0 |2 |0 |
-ROW |67320 |1379 |32476 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67321 |1379 |32478 |5 |1 |2774A4|0 |2 |0 |
-ROW |67322 |1379 |32480 |5 |2 |F63100|0 |2 |0 |
-ROW |67323 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67324 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
-ROW |67325 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
-ROW |67326 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
-ROW |67327 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67328 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67329 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
-ROW |67330 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67331 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67332 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
-ROW |67333 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
-ROW |67334 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
-ROW |67335 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67336 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67337 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
-ROW |67338 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
-ROW |67339 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
-ROW |67340 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
-ROW |67341 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
-ROW |67342 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67343 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
-ROW |67344 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67345 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
-ROW |67346 |836 |28800 |0 |2 |F63100|0 |2 |0 |
-ROW |67347 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
-ROW |67348 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67349 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67350 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67351 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
-ROW |67352 |840 |28782 |0 |2 |F63100|0 |2 |0 |
-ROW |67353 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
-ROW |67354 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67355 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67356 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
-ROW |67357 |840 |28785 |0 |7 |611F27|0 |2 |0 |
-ROW |67358 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
-ROW |67359 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
-ROW |67360 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
-ROW |67361 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67362 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
-ROW |67363 |1278 |31855 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67364 |1278 |31856 |0 |1 |2774A4|0 |2 |0 |
-ROW |67365 |1304 |32007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67366 |1304 |32010 |0 |1 |2774A4|0 |2 |0 |
-ROW |67367 |1305 |32008 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67368 |1305 |32011 |0 |1 |2774A4|0 |2 |0 |
-ROW |67369 |1306 |32003 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67370 |1306 |32004 |0 |1 |2774A4|0 |2 |0 |
-ROW |67371 |1306 |32009 |0 |2 |F63100|0 |2 |0 |
-ROW |67372 |1282 |31818 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67373 |1282 |31825 |0 |1 |2774A4|0 |2 |0 |
-ROW |67374 |1283 |31850 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67375 |1283 |31819 |0 |1 |2774A4|0 |2 |0 |
-ROW |67376 |1284 |31824 |1 |0 |1A7C11|0 |2 |0 |
-ROW |67377 |1284 |31821 |1 |1 |2774A4|0 |2 |0 |
-ROW |67378 |1285 |31839 |2 |0 |1A7C11|0 |2 |0 |
-ROW |67379 |1285 |31841 |0 |1 |2774A4|0 |2 |0 |
-ROW |67380 |1285 |31842 |0 |2 |F63100|0 |2 |0 |
-ROW |67381 |1285 |31837 |2 |3 |A54F10|0 |2 |0 |
-ROW |67382 |1285 |31838 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67383 |1285 |31829 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67384 |1286 |31833 |2 |0 |1A7C11|0 |2 |0 |
-ROW |67385 |1286 |31834 |0 |1 |2774A4|0 |2 |0 |
-ROW |67386 |1286 |31835 |0 |2 |F63100|0 |2 |0 |
-ROW |67387 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67388 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
-ROW |67389 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
-ROW |67390 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67391 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
-ROW |67392 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
-ROW |67393 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
-ROW |67394 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
-ROW |67395 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
-ROW |67396 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |67397 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
-ROW |67398 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
-ROW |67399 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
-ROW |67400 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67401 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
-ROW |67402 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
-ROW |67403 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
-ROW |67404 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67405 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
-ROW |67406 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
-ROW |67407 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
-ROW |67408 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
-ROW |67409 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
-ROW |67410 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
-ROW |67411 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
-ROW |67412 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67413 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
-ROW |67414 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
-ROW |67415 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
-ROW |67416 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67417 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
-ROW |67418 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67419 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
-ROW |67420 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
-ROW |67421 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
-ROW |67422 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67423 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
-ROW |67424 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
-ROW |67425 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
-ROW |67426 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67427 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
-ROW |67428 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
-ROW |67429 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
-ROW |67430 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67431 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
-ROW |67432 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
-ROW |67433 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
-ROW |67434 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67435 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67436 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
-ROW |67437 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67438 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
-ROW |67439 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67440 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
-ROW |67441 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67442 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
-ROW |67443 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
-ROW |67444 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67445 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
-ROW |67446 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
-ROW |67447 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67448 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
-ROW |67449 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67450 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
-ROW |67451 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
-ROW |67452 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
-ROW |67453 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67454 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
-ROW |67455 |1380 |32498 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67456 |1380 |32499 |0 |1 |2774A4|0 |2 |0 |
-ROW |67457 |1381 |32505 |0 |0 |1A7C11|1 |2 |0 |
-ROW |67458 |1381 |32508 |0 |1 |2774A4|1 |2 |0 |
-ROW |67459 |1381 |32506 |0 |2 |F63100|0 |2 |0 |
-ROW |67460 |1381 |32507 |0 |3 |A54F10|0 |2 |0 |
-ROW |67461 |1381 |32509 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67462 |1381 |32510 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67463 |1382 |32488 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67464 |1382 |32491 |0 |1 |2774A4|0 |2 |0 |
-ROW |67465 |1382 |32493 |0 |2 |F63100|0 |2 |0 |
-ROW |67466 |1382 |32494 |0 |3 |A54F10|0 |2 |0 |
-ROW |67467 |1383 |32528 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67468 |1383 |32529 |0 |1 |2774A4|0 |2 |0 |
-ROW |67469 |1384 |32535 |0 |0 |1A7C11|1 |2 |0 |
-ROW |67470 |1384 |32538 |0 |1 |2774A4|1 |2 |0 |
-ROW |67471 |1384 |32536 |0 |2 |F63100|0 |2 |0 |
-ROW |67472 |1384 |32537 |0 |3 |A54F10|0 |2 |0 |
-ROW |67473 |1384 |32539 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67474 |1384 |32540 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67475 |1385 |32518 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67476 |1385 |32521 |0 |1 |2774A4|0 |2 |0 |
-ROW |67477 |1385 |32523 |0 |2 |F63100|0 |2 |0 |
-ROW |67478 |1385 |32524 |0 |3 |A54F10|0 |2 |0 |
-ROW |67479 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67480 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
-ROW |67481 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
-ROW |67482 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67483 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
-ROW |67484 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
-ROW |67485 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
-ROW |67486 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67487 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67488 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67489 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
-ROW |67490 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
-ROW |67491 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67492 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
-ROW |67493 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
-ROW |67494 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67495 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
-ROW |67496 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
-ROW |67497 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67498 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
-ROW |67499 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
-ROW |67500 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67501 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
-ROW |67502 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
-ROW |67503 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67504 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
-ROW |67505 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
-ROW |67506 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67507 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
-ROW |67508 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
-ROW |67509 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67510 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
-ROW |67511 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67512 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
-ROW |67513 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
-ROW |67514 |1307 |32051 |1 |0 |1A7C11|0 |2 |0 |
-ROW |67515 |1307 |32057 |1 |1 |2774A4|0 |2 |0 |
-ROW |67516 |1709 |35805 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67517 |1709 |35804 |5 |1 |2774A4|0 |2 |0 |
-ROW |67518 |1710 |35789 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67519 |1710 |35806 |0 |1 |2774A4|0 |2 |0 |
-ROW |67520 |1711 |35800 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67521 |1711 |35799 |0 |1 |2774A4|0 |2 |0 |
-ROW |67522 |1711 |35798 |0 |2 |F63100|0 |2 |0 |
-ROW |67523 |1711 |35796 |0 |3 |A54F10|0 |2 |0 |
-ROW |67524 |1711 |35788 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67525 |1712 |35810 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67526 |1712 |35809 |0 |1 |2774A4|0 |2 |0 |
-ROW |67527 |1713 |35807 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67528 |1713 |35808 |5 |1 |2774A4|0 |2 |0 |
-ROW |67529 |1714 |35817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67530 |1714 |35816 |0 |1 |2774A4|0 |2 |0 |
-ROW |67531 |1715 |35811 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67532 |1715 |35812 |0 |1 |2774A4|0 |2 |0 |
-ROW |67533 |1715 |35813 |0 |2 |F63100|0 |2 |0 |
-ROW |67534 |1715 |35814 |0 |3 |A54F10|0 |2 |0 |
-ROW |67535 |1715 |35815 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67536 |1716 |35842 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67537 |1716 |35841 |5 |1 |2774A4|0 |2 |0 |
-ROW |67538 |1717 |35836 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67539 |1717 |35835 |0 |1 |2774A4|0 |2 |0 |
-ROW |67540 |1717 |35834 |0 |2 |F63100|0 |2 |0 |
-ROW |67541 |1717 |35832 |0 |3 |A54F10|0 |2 |0 |
-ROW |67542 |1717 |35822 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67543 |1718 |35827 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67544 |1718 |35828 |0 |1 |2774A4|0 |2 |0 |
-ROW |67545 |1719 |35864 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67546 |1719 |35863 |5 |1 |2774A4|0 |2 |0 |
-ROW |67547 |1720 |35848 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67548 |1720 |35865 |0 |1 |2774A4|0 |2 |0 |
-ROW |67549 |1721 |35859 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67550 |1721 |35858 |0 |1 |2774A4|0 |2 |0 |
-ROW |67551 |1721 |35857 |0 |2 |F63100|0 |2 |0 |
-ROW |67552 |1721 |35855 |0 |3 |A54F10|0 |2 |0 |
-ROW |67553 |1721 |35847 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67554 |1722 |35869 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67555 |1722 |35868 |0 |1 |2774A4|0 |2 |0 |
-ROW |67556 |1723 |35866 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67557 |1723 |35867 |5 |1 |2774A4|0 |2 |0 |
-ROW |67558 |1724 |35876 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67559 |1724 |35875 |0 |1 |2774A4|0 |2 |0 |
-ROW |67560 |1725 |35870 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67561 |1725 |35871 |0 |1 |2774A4|0 |2 |0 |
-ROW |67562 |1725 |35872 |0 |2 |F63100|0 |2 |0 |
-ROW |67563 |1725 |35873 |0 |3 |A54F10|0 |2 |0 |
-ROW |67564 |1725 |35874 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67565 |1726 |35901 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67566 |1726 |35900 |5 |1 |2774A4|0 |2 |0 |
-ROW |67567 |1727 |35895 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67568 |1727 |35894 |0 |1 |2774A4|0 |2 |0 |
-ROW |67569 |1727 |35893 |0 |2 |F63100|0 |2 |0 |
-ROW |67570 |1727 |35891 |0 |3 |A54F10|0 |2 |0 |
-ROW |67571 |1727 |35881 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67572 |1728 |35886 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67573 |1728 |35887 |0 |1 |2774A4|0 |2 |0 |
-ROW |67574 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67575 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
-ROW |67576 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67577 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
-ROW |67578 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67579 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
-ROW |67580 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
-ROW |67581 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
-ROW |67582 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67583 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67584 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
-ROW |67585 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
-ROW |67586 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67587 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
-ROW |67588 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67589 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
-ROW |67590 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67591 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
-ROW |67592 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
-ROW |67593 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
-ROW |67594 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67595 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67596 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
-ROW |67597 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
-ROW |67598 |1308 |32078 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67599 |1308 |32077 |0 |1 |2774A4|0 |2 |0 |
-ROW |67600 |1309 |32088 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67601 |1309 |32087 |0 |1 |2774A4|0 |2 |0 |
-ROW |67602 |1310 |32071 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67603 |1310 |32102 |0 |1 |2774A4|0 |2 |0 |
-ROW |67604 |1311 |32108 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67605 |1311 |32109 |0 |1 |2774A4|0 |2 |0 |
-ROW |67606 |1311 |32106 |0 |2 |F63100|0 |2 |0 |
-ROW |67607 |1311 |32107 |0 |3 |A54F10|0 |2 |0 |
-ROW |67608 |1312 |32083 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67609 |1312 |32084 |0 |1 |2774A4|0 |2 |0 |
-ROW |67610 |1313 |32080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67611 |1313 |32081 |0 |1 |2774A4|0 |2 |0 |
-ROW |67612 |1314 |32086 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67613 |1314 |32100 |2 |1 |2774A4|0 |2 |0 |
-ROW |67614 |1314 |32073 |0 |2 |F63100|0 |2 |0 |
-ROW |67615 |1314 |32131 |0 |3 |A54F10|0 |2 |0 |
-ROW |67616 |1314 |32118 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |67617 |1314 |32101 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67618 |1314 |32125 |0 |6 |AC8C14|0 |2 |0 |
-ROW |67619 |1314 |32126 |2 |7 |611F27|0 |2 |0 |
-ROW |67620 |1314 |32127 |0 |8 |F230E0|0 |2 |0 |
-ROW |67621 |1314 |32128 |0 |9 |FFAD40|0 |2 |0 |
-ROW |67622 |1314 |32129 |2 |10 |40CDFF|0 |2 |0 |
-ROW |67623 |1314 |32130 |0 |11 |40FFA0|0 |2 |0 |
-ROW |67624 |1315 |32124 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67625 |1315 |32123 |2 |1 |2774A4|0 |2 |0 |
-ROW |67626 |1315 |32122 |0 |2 |F63100|0 |2 |0 |
-ROW |67627 |1315 |32121 |0 |3 |A54F10|0 |2 |0 |
-ROW |67628 |1315 |32121 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |67629 |1315 |32120 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67630 |1316 |32098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67631 |1316 |32099 |0 |1 |2774A4|0 |2 |0 |
-ROW |67632 |1316 |32097 |0 |2 |F63100|0 |2 |0 |
-ROW |67633 |1316 |32096 |0 |3 |A54F10|0 |2 |0 |
-ROW |67634 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67635 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
-ROW |67636 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
-ROW |67637 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67638 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
-ROW |67639 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
-ROW |67640 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
-ROW |67641 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
-ROW |67642 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
-ROW |67643 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67644 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
-ROW |67645 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67646 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
-ROW |67647 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67648 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
-ROW |67649 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
-ROW |67650 |841 |28812 |0 |2 |F63100|0 |2 |0 |
-ROW |67651 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
-ROW |67652 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67653 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
-ROW |67654 |842 |28816 |0 |2 |F63100|0 |2 |0 |
-ROW |67655 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67656 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
-ROW |67657 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67658 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
-ROW |67659 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
-ROW |67660 |845 |28832 |0 |2 |F63100|0 |2 |0 |
-ROW |67661 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
-ROW |67662 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67663 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
-ROW |67664 |846 |28827 |0 |2 |F63100|0 |2 |0 |
-ROW |67665 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67666 |1662 |34869 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67667 |1663 |34871 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67668 |1663 |34870 |5 |1 |2774A4|0 |2 |0 |
-ROW |67669 |1663 |34872 |5 |2 |F63100|0 |2 |0 |
-ROW |67670 |1663 |34873 |5 |3 |A54F10|0 |2 |0 |
-ROW |67671 |1663 |34874 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |67672 |1664 |34880 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67673 |1665 |34882 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67674 |1665 |34881 |5 |1 |2774A4|0 |2 |0 |
-ROW |67675 |1665 |34883 |5 |2 |F63100|0 |2 |0 |
-ROW |67676 |1665 |34884 |5 |3 |A54F10|0 |2 |0 |
-ROW |67677 |1665 |34885 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |67678 |1666 |34903 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67679 |1666 |34902 |5 |1 |2774A4|0 |2 |0 |
-ROW |67680 |1666 |34901 |5 |2 |F63100|0 |2 |0 |
-ROW |67681 |1667 |34889 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67682 |1667 |34896 |5 |1 |2774A4|0 |2 |0 |
-ROW |67683 |1667 |34895 |5 |2 |F63100|0 |2 |0 |
-ROW |67684 |1667 |34894 |5 |3 |A54F10|0 |2 |0 |
-ROW |67685 |1667 |34893 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |67686 |1668 |34910 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67687 |1668 |34911 |5 |1 |2774A4|0 |2 |0 |
-ROW |67688 |1668 |34909 |5 |2 |F63100|0 |2 |0 |
-ROW |67689 |1669 |34913 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67690 |1669 |34912 |5 |1 |2774A4|0 |2 |0 |
-ROW |67691 |1669 |34917 |5 |2 |F63100|0 |2 |0 |
-ROW |67692 |1669 |34915 |5 |3 |A54F10|0 |2 |0 |
-ROW |67693 |1669 |34914 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |67694 |1669 |34916 |5 |5 |6C59DC|0 |2 |0 |
-ROW |67695 |1669 |34918 |5 |6 |AC8C14|0 |2 |0 |
-ROW |67696 |1669 |34919 |5 |7 |611F27|0 |2 |0 |
-ROW |67697 |1670 |34925 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67698 |1670 |34926 |5 |1 |2774A4|0 |2 |0 |
-ROW |67699 |1670 |34927 |5 |2 |F63100|0 |2 |0 |
-ROW |67700 |1671 |34934 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67701 |1671 |34935 |5 |1 |2774A4|0 |2 |0 |
-ROW |67702 |1671 |34936 |5 |2 |F63100|0 |2 |0 |
-ROW |67703 |1672 |34854 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67704 |1672 |34850 |5 |1 |2774A4|0 |2 |0 |
-ROW |67705 |1672 |34846 |5 |2 |F63100|0 |2 |0 |
-ROW |67706 |1672 |34845 |5 |3 |A54F10|0 |2 |0 |
-ROW |67707 |1673 |34852 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67708 |1674 |34848 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67709 |1674 |34849 |5 |1 |2774A4|0 |2 |0 |
-ROW |67710 |1674 |34847 |5 |2 |F63100|0 |2 |0 |
-ROW |67711 |1675 |34858 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67712 |1287 |31890 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67713 |1287 |31882 |0 |1 |2774A4|0 |2 |0 |
-ROW |67714 |1287 |31880 |0 |2 |F63100|0 |2 |0 |
-ROW |67715 |1287 |31883 |0 |3 |A54F10|0 |2 |0 |
-ROW |67716 |1288 |31889 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67717 |1288 |31881 |0 |1 |2774A4|0 |2 |0 |
-ROW |67718 |1288 |31888 |0 |2 |F63100|0 |2 |0 |
-ROW |67719 |1289 |31900 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67720 |1289 |31895 |0 |1 |2774A4|0 |2 |0 |
-ROW |67721 |1289 |31899 |0 |2 |F63100|0 |2 |0 |
-ROW |67722 |1289 |31902 |0 |3 |A54F10|0 |2 |0 |
-ROW |67723 |1290 |31907 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67724 |1290 |31908 |0 |1 |2774A4|0 |2 |0 |
-ROW |67725 |1290 |31906 |0 |2 |F63100|0 |2 |0 |
-ROW |67726 |1412 |32908 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67727 |1412 |32923 |0 |1 |2774A4|0 |2 |0 |
-ROW |67728 |1412 |32921 |0 |2 |F63100|0 |2 |0 |
-ROW |67729 |1412 |32919 |0 |3 |A54F10|0 |2 |0 |
-ROW |67730 |1412 |32917 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67731 |1412 |32911 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67732 |1412 |32914 |0 |6 |AC8C14|0 |2 |0 |
-ROW |67733 |1412 |32909 |0 |7 |611F27|0 |2 |0 |
-ROW |67734 |1413 |32912 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67735 |1413 |32922 |0 |1 |2774A4|0 |2 |0 |
-ROW |67736 |1413 |32920 |0 |2 |F63100|0 |2 |0 |
-ROW |67737 |1413 |32918 |0 |3 |A54F10|0 |2 |0 |
-ROW |67738 |1413 |32915 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67739 |1413 |32910 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67740 |1413 |32913 |0 |6 |AC8C14|0 |2 |0 |
-ROW |67741 |1413 |32924 |0 |7 |611F27|0 |2 |0 |
-ROW |67742 |1414 |32847 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67743 |1414 |32848 |0 |1 |2774A4|0 |2 |0 |
-ROW |67744 |1414 |32846 |0 |2 |F63100|0 |2 |0 |
-ROW |67745 |1415 |32871 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67746 |1415 |32876 |2 |1 |FF0000|0 |2 |0 |
-ROW |67747 |1416 |32875 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67748 |1417 |32839 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67749 |1417 |32838 |0 |1 |2774A4|0 |2 |0 |
-ROW |67750 |1418 |32878 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67751 |1418 |32873 |2 |1 |FF0000|0 |2 |0 |
-ROW |67752 |1419 |32843 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67753 |1419 |32842 |0 |1 |2774A4|0 |2 |0 |
-ROW |67754 |1419 |32841 |0 |2 |F63100|0 |2 |0 |
-ROW |67755 |1420 |32857 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67756 |1420 |32851 |0 |1 |2774A4|0 |2 |0 |
-ROW |67757 |1420 |32861 |0 |2 |F63100|0 |2 |0 |
-ROW |67758 |1420 |32859 |0 |3 |A54F10|0 |2 |0 |
-ROW |67759 |1420 |32855 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67760 |1420 |32853 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67761 |1420 |32863 |0 |6 |AC8C14|0 |2 |0 |
-ROW |67762 |1420 |32849 |0 |7 |611F27|0 |2 |0 |
-ROW |67763 |1421 |32858 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67764 |1421 |32850 |0 |1 |2774A4|0 |2 |0 |
-ROW |67765 |1421 |32862 |0 |2 |F63100|0 |2 |0 |
-ROW |67766 |1421 |32860 |0 |3 |A54F10|0 |2 |0 |
-ROW |67767 |1421 |32856 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67768 |1421 |32854 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67769 |1421 |32852 |0 |6 |AC8C14|0 |2 |0 |
-ROW |67770 |1421 |32840 |0 |7 |611F27|0 |2 |0 |
-ROW |67771 |1422 |32864 |2 |0 |1A7C11|0 |2 |0 |
-ROW |67772 |1423 |32844 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67773 |1424 |32866 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67774 |1424 |32867 |0 |1 |2774A4|0 |2 |0 |
-ROW |67775 |1425 |32865 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67776 |1426 |33000 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67777 |1426 |33015 |0 |1 |2774A4|0 |2 |0 |
-ROW |67778 |1426 |33013 |0 |2 |F63100|0 |2 |0 |
-ROW |67779 |1426 |33011 |0 |3 |A54F10|0 |2 |0 |
-ROW |67780 |1426 |33009 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67781 |1426 |33003 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67782 |1426 |33006 |0 |6 |AC8C14|0 |2 |0 |
-ROW |67783 |1426 |33001 |0 |7 |611F27|0 |2 |0 |
-ROW |67784 |1427 |33004 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67785 |1427 |33014 |0 |1 |2774A4|0 |2 |0 |
-ROW |67786 |1427 |33012 |0 |2 |F63100|0 |2 |0 |
-ROW |67787 |1427 |33010 |0 |3 |A54F10|0 |2 |0 |
-ROW |67788 |1427 |33007 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67789 |1427 |33002 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67790 |1427 |33005 |0 |6 |AC8C14|0 |2 |0 |
-ROW |67791 |1427 |33016 |0 |7 |611F27|0 |2 |0 |
-ROW |67792 |1428 |32937 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67793 |1428 |32938 |0 |1 |2774A4|0 |2 |0 |
-ROW |67794 |1428 |32936 |0 |2 |F63100|0 |2 |0 |
-ROW |67795 |1429 |32969 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67796 |1429 |32967 |2 |1 |FF0000|0 |2 |0 |
-ROW |67797 |1430 |32966 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67798 |1431 |32964 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67799 |1431 |32962 |2 |1 |FF0000|0 |2 |0 |
-ROW |67800 |1432 |32933 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67801 |1432 |32932 |0 |1 |2774A4|0 |2 |0 |
-ROW |67802 |1432 |32955 |0 |2 |F63100|0 |2 |0 |
-ROW |67803 |1433 |32947 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67804 |1433 |32953 |0 |1 |2774A4|0 |2 |0 |
-ROW |67805 |1433 |32951 |0 |2 |F63100|0 |2 |0 |
-ROW |67806 |1433 |32949 |0 |3 |A54F10|0 |2 |0 |
-ROW |67807 |1433 |32945 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67808 |1433 |32943 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67809 |1433 |32941 |0 |6 |AC8C14|0 |2 |0 |
-ROW |67810 |1433 |32939 |0 |7 |611F27|0 |2 |0 |
-ROW |67811 |1434 |32948 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67812 |1434 |32954 |0 |1 |2774A4|0 |2 |0 |
-ROW |67813 |1434 |32952 |0 |2 |F63100|0 |2 |0 |
-ROW |67814 |1434 |32950 |0 |3 |A54F10|0 |2 |0 |
-ROW |67815 |1434 |32946 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67816 |1434 |32944 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67817 |1434 |32942 |0 |6 |AC8C14|0 |2 |0 |
-ROW |67818 |1434 |32940 |0 |7 |611F27|0 |2 |0 |
-ROW |67819 |1435 |32960 |2 |0 |1A7C11|0 |2 |0 |
-ROW |67820 |1436 |32934 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67821 |1437 |32957 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67822 |1437 |32958 |0 |1 |2774A4|0 |2 |0 |
-ROW |67823 |1438 |32970 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67824 |1291 |31947 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67825 |1291 |31946 |0 |1 |2774A4|0 |2 |0 |
-ROW |67826 |1292 |31952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67827 |1292 |31938 |0 |1 |2774A4|0 |2 |0 |
-ROW |67828 |1292 |31950 |0 |2 |F63100|0 |2 |0 |
-ROW |67829 |1293 |31939 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67830 |1293 |31945 |0 |1 |2774A4|0 |2 |0 |
-ROW |67831 |1293 |31942 |0 |2 |F63100|0 |2 |0 |
-ROW |67832 |1294 |31959 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67833 |1294 |31962 |0 |1 |2774A4|0 |2 |0 |
-ROW |67834 |1295 |31918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67835 |1295 |31916 |0 |1 |2774A4|0 |2 |0 |
-ROW |67836 |1295 |31917 |0 |2 |F63100|0 |2 |0 |
-ROW |67837 |1296 |31919 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67838 |1296 |31920 |0 |1 |2774A4|0 |2 |0 |
-ROW |67839 |1296 |31921 |0 |2 |F63100|0 |2 |0 |
-ROW |67840 |1297 |31911 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67841 |1297 |31944 |0 |1 |2774A4|0 |2 |0 |
-ROW |67842 |1298 |31953 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67843 |1298 |31954 |0 |1 |2774A4|0 |2 |0 |
-ROW |67844 |1298 |31960 |0 |2 |F63100|0 |2 |0 |
-ROW |67845 |1298 |31961 |0 |3 |A54F10|0 |2 |0 |
-ROW |67846 |1298 |31957 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67847 |1298 |31958 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67848 |1298 |31912 |0 |6 |AC8C14|0 |2 |0 |
-ROW |67849 |1298 |31913 |0 |7 |611F27|0 |2 |0 |
-ROW |67850 |1298 |31914 |0 |8 |F230E0|0 |2 |0 |
-ROW |67851 |1298 |31915 |0 |9 |FFAD40|0 |2 |0 |
-ROW |67852 |1298 |31948 |0 |10 |40CDFF|0 |2 |0 |
-ROW |67853 |1298 |31949 |0 |11 |40FFA0|0 |2 |0 |
-ROW |67854 |1317 |32146 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67855 |1317 |32145 |5 |1 |2774A4|0 |2 |0 |
-ROW |67856 |1318 |32151 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67857 |1318 |32150 |5 |1 |2774A4|0 |2 |0 |
-ROW |67858 |1318 |32153 |5 |2 |F63100|0 |2 |0 |
-ROW |67859 |1318 |32152 |5 |3 |A54F10|0 |2 |0 |
-ROW |67860 |1319 |32157 |5 |0 |1A7C11|0 |2 |0 |
-ROW |67861 |1319 |32155 |5 |1 |2774A4|0 |2 |0 |
-ROW |67862 |1319 |32156 |5 |2 |F63100|0 |2 |0 |
-ROW |67863 |1520 |34128 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67864 |1520 |34127 |0 |1 |2774A4|0 |2 |0 |
-ROW |67865 |1520 |34130 |0 |2 |F63100|0 |2 |0 |
-ROW |67866 |1520 |34131 |0 |3 |A54F10|0 |2 |0 |
-ROW |67867 |1520 |34132 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67868 |1521 |34134 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67869 |1521 |34149 |0 |1 |2774A4|0 |2 |0 |
-ROW |67870 |1521 |34153 |0 |2 |F63100|0 |2 |0 |
-ROW |67871 |1521 |34152 |0 |3 |A54F10|0 |2 |0 |
-ROW |67872 |1521 |34150 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67873 |1521 |34148 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67874 |1522 |34167 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67875 |1522 |34166 |0 |1 |2774A4|0 |2 |0 |
-ROW |67876 |1523 |34164 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67877 |1523 |34165 |0 |1 |2774A4|0 |2 |0 |
-ROW |67878 |1524 |34108 |0 |0 |1A7C11|0 |2 |0 |
-ROW |67879 |1524 |34109 |0 |1 |2774A4|0 |2 |0 |
-ROW |67880 |1524 |34110 |0 |2 |F63100|0 |2 |0 |
-ROW |67881 |1524 |34111 |0 |3 |A54F10|0 |2 |0 |
-ROW |67882 |1524 |34113 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |67883 |1524 |34107 |0 |5 |6C59DC|0 |2 |0 |
-ROW |67884 |1524 |34114 |0 |6 |AC8C14|0 |2 |0 |
-ROW |67885 |1524 |34116 |0 |7 |611F27|0 |2 |0 |
-ROW |67886 |1524 |34122 |0 |8 |F230E0|0 |2 |0 |
-ROW |67887 |1525 |22404 |0 |0 |990099|0 |2 |0 |
-ROW |67888 |1525 |22399 |0 |1 |990000|0 |2 |0 |
-ROW |67889 |1525 |22416 |0 |2 |0000EE|0 |2 |0 |
-ROW |67890 |1525 |25366 |0 |3 |FF33FF|0 |2 |0 |
-ROW |67891 |1525 |22418 |0 |4 |009600|0 |2 |0 |
-ROW |67892 |1525 |22402 |0 |5 |003300|0 |2 |0 |
-ROW |67893 |1525 |22400 |0 |6 |33FFFF|0 |2 |0 |
-ROW |67894 |1525 |22689 |0 |7 |DD0000|0 |2 |0 |
-ROW |67895 |1525 |23171 |0 |8 |000099|0 |2 |0 |
-ROW |67896 |1525 |22401 |0 |9 |00FF00|0 |2 |0 |
-ROW |67897 |1526 |23269 |0 |0 |990099|0 |2 |0 |
-ROW |67898 |1526 |23264 |0 |1 |990000|0 |2 |0 |
-ROW |67899 |1526 |23261 |0 |2 |0000EE|0 |2 |0 |
-ROW |67900 |1526 |25367 |0 |3 |FF33FF|0 |2 |0 |
-ROW |67901 |1526 |23260 |0 |4 |009600|0 |2 |0 |
-ROW |67902 |1526 |23259 |0 |5 |003300|0 |2 |0 |
-ROW |67903 |1526 |23270 |0 |6 |33FFFF|0 |2 |0 |
-ROW |67904 |1526 |23262 |0 |7 |DD0000|0 |2 |0 |
-ROW |67905 |1526 |23267 |0 |8 |000099|0 |2 |0 |
-ROW |67906 |1526 |23328 |0 |9 |00FF00|0 |2 |0 |
-ROW |67907 |1527 |22406 |0 |0 |00EE00|0 |2 |0 |
-ROW |67908 |1527 |25665 |0 |1 |0000EE|0 |2 |0 |
-ROW |67909 |1527 |25666 |0 |2 |FFAA00|0 |2 |0 |
-ROW |67910 |1527 |28537 |0 |3 |00EEEE|0 |2 |0 |
-ROW |67911 |1527 |28535 |0 |4 |990099|0 |2 |0 |
-ROW |67912 |1528 |23257 |0 |0 |00EE00|0 |2 |0 |
-ROW |67913 |1528 |25667 |0 |1 |0000EE|0 |2 |0 |
-ROW |67914 |1528 |25668 |0 |2 |FFAA00|0 |2 |0 |
-ROW |67915 |1528 |28538 |0 |3 |00EEEE|0 |2 |0 |
-ROW |67916 |1528 |28536 |0 |4 |990099|0 |2 |0 |
-ROW |67917 |1529 |22426 |0 |0 |00EE00|0 |2 |0 |
-ROW |67918 |1529 |22408 |0 |1 |FFAA00|0 |2 |0 |
-ROW |67919 |1529 |22412 |0 |2 |990099|0 |2 |0 |
-ROW |67920 |1529 |22414 |0 |3 |FF66FF|0 |2 |0 |
-ROW |67921 |1529 |23663 |0 |4 |009999|0 |2 |0 |
-ROW |67922 |1529 |22430 |0 |6 |8048B4|0 |2 |0 |
-ROW |67923 |1529 |22420 |0 |7 |FD5434|0 |2 |0 |
-ROW |67924 |1530 |23268 |0 |0 |00EE00|0 |2 |0 |
-ROW |67925 |1530 |23258 |0 |1 |FFAA00|0 |2 |0 |
-ROW |67926 |1530 |23253 |0 |2 |990099|0 |2 |0 |
-ROW |67927 |1530 |23266 |0 |3 |FF66FF|0 |2 |0 |
-ROW |67928 |1530 |23664 |0 |4 |009999|0 |2 |0 |
-ROW |67929 |1530 |23255 |0 |6 |8048B4|0 |2 |0 |
-ROW |67930 |1530 |23265 |0 |7 |FD5434|0 |2 |0 |
-ROW |67931 |1531 |22422 |0 |0 |00EE00|0 |2 |0 |
-ROW |67932 |1531 |22424 |0 |1 |0000EE|0 |2 |0 |
-ROW |67933 |1531 |25370 |0 |2 |FFAA00|0 |2 |0 |
-ROW |67934 |1531 |29822 |0 |3 |00EEEE|0 |2 |0 |
-ROW |67935 |1532 |23256 |0 |0 |00EE00|0 |2 |0 |
-ROW |67936 |1532 |23252 |0 |1 |0000EE|0 |2 |0 |
-ROW |67937 |1532 |25371 |0 |2 |FFAA00|0 |2 |0 |
-ROW |67938 |1532 |29823 |0 |3 |00EEEE|0 |2 |0 |
-ROW |67939 |1535 |22199 |0 |0 |C80000|0 |2 |0 |
-ROW |67940 |1535 |22196 |0 |1 |00C800|0 |2 |0 |
-ROW |67941 |1536 |23628 |0 |0 |C80000|0 |2 |0 |
-ROW |67942 |1536 |23625 |0 |1 |00C800|0 |2 |0 |
-ROW |67943 |1537 |22185 |0 |0 |009900|0 |2 |0 |
-ROW |67944 |1537 |22189 |0 |1 |DD0000|0 |2 |0 |
-ROW |67945 |1537 |22396 |0 |2 |00DDDD|0 |2 |0 |
-ROW |67946 |1537 |22183 |0 |3 |3333FF|0 |2 |0 |
-ROW |67947 |1537 |22191 |0 |4 |999900|0 |2 |0 |
-ROW |67948 |1537 |23634 |0 |5 |00FF00|0 |2 |0 |
-ROW |67949 |1538 |23276 |0 |0 |009900|0 |2 |0 |
-ROW |67950 |1538 |23273 |0 |1 |DD0000|0 |2 |0 |
-ROW |67951 |1538 |23275 |0 |2 |00DDDD|0 |2 |0 |
-ROW |67952 |1538 |23274 |0 |3 |3333FF|0 |2 |0 |
-ROW |67953 |1538 |23620 |0 |4 |999900|0 |2 |0 |
-ROW |67954 |1538 |23635 |0 |5 |00FF00|0 |2 |0 |
-ROW |67955 |1539 |22404 |0 |0 |990099|0 |2 |0 |
-ROW |67956 |1539 |22399 |0 |1 |990000|0 |2 |0 |
-ROW |67957 |1539 |22416 |0 |2 |0000EE|0 |2 |0 |
-ROW |67958 |1539 |22430 |0 |3 |FF33FF|0 |2 |0 |
-ROW |67959 |1539 |22418 |0 |4 |009600|0 |2 |0 |
-ROW |67960 |1539 |22402 |0 |5 |003300|0 |2 |0 |
-ROW |67961 |1539 |22420 |0 |6 |CCCC00|0 |2 |0 |
-ROW |67962 |1539 |22400 |0 |7 |33FFFF|0 |2 |0 |
-ROW |67963 |1539 |22689 |0 |8 |DD0000|0 |2 |0 |
-ROW |67964 |1539 |23171 |0 |9 |000099|0 |2 |0 |
-ROW |67965 |1539 |22401 |0 |10 |00FF00|0 |2 |0 |
-ROW |67966 |1540 |23269 |0 |0 |990099|0 |2 |0 |
-ROW |67967 |1540 |23264 |0 |1 |990000|0 |2 |0 |
-ROW |67968 |1540 |23261 |0 |2 |0000EE|0 |2 |0 |
-ROW |67969 |1540 |23255 |0 |3 |FF33FF|0 |2 |0 |
-ROW |67970 |1540 |23260 |0 |4 |009600|0 |2 |0 |
-ROW |67971 |1540 |23259 |0 |5 |003300|0 |2 |0 |
-ROW |67972 |1540 |23265 |0 |6 |CCCC00|0 |2 |0 |
-ROW |67973 |1540 |23270 |0 |7 |33FFFF|0 |2 |0 |
-ROW |67974 |1540 |23262 |0 |8 |DD0000|0 |2 |0 |
-ROW |67975 |1540 |23267 |0 |9 |000099|0 |2 |0 |
-ROW |67976 |1540 |23328 |0 |10 |00FF00|0 |2 |0 |
-ROW |67977 |1541 |22426 |0 |0 |00EE00|0 |2 |0 |
-ROW |67978 |1541 |22422 |0 |1 |0000EE|0 |2 |0 |
-ROW |67979 |1541 |22408 |0 |2 |FFAA00|0 |2 |0 |
-ROW |67980 |1541 |22424 |0 |3 |00EEEE|0 |2 |0 |
-ROW |67981 |1541 |22412 |0 |4 |990099|0 |2 |0 |
-ROW |67982 |1541 |22406 |0 |5 |EE0000|0 |2 |0 |
-ROW |67983 |1541 |22414 |0 |6 |FF66FF|0 |2 |0 |
-ROW |67984 |1541 |23663 |0 |7 |009999|0 |2 |0 |
-ROW |67985 |1541 |25366 |0 |8 |BBBB00|0 |2 |0 |
-ROW |67986 |1541 |25370 |0 |9 |AA0000|0 |2 |0 |
-ROW |67987 |1541 |25665 |0 |10 |990000|0 |2 |0 |
-ROW |67988 |1541 |25666 |0 |11 |008800|0 |2 |0 |
-ROW |67989 |1541 |28535 |0 |12 |80B0E0|0 |2 |0 |
-ROW |67990 |1541 |28537 |0 |13 |4080B0|0 |2 |0 |
-ROW |67991 |1541 |29822 |0 |14 |8000FF|0 |2 |0 |
-ROW |67992 |1542 |23268 |0 |0 |00EE00|0 |2 |0 |
-ROW |67993 |1542 |23256 |0 |1 |0000EE|0 |2 |0 |
-ROW |67994 |1542 |23258 |0 |2 |FFAA00|0 |2 |0 |
-ROW |67995 |1542 |23252 |0 |3 |00EEEE|0 |2 |0 |
-ROW |67996 |1542 |23253 |0 |4 |990099|0 |2 |0 |
-ROW |67997 |1542 |23257 |0 |5 |EE0000|0 |2 |0 |
-ROW |67998 |1542 |23266 |0 |6 |FF66FF|0 |2 |0 |
-ROW |67999 |1542 |23664 |0 |7 |009999|0 |2 |0 |
-ROW |68000 |1542 |25367 |0 |8 |BBBB00|0 |2 |0 |
-ROW |68001 |1542 |25371 |0 |9 |AA0000|0 |2 |0 |
-ROW |68002 |1542 |25667 |0 |10 |990000|0 |2 |0 |
-ROW |68003 |1542 |25668 |0 |11 |008800|0 |2 |0 |
-ROW |68004 |1542 |28536 |0 |12 |80B0E0|0 |2 |0 |
-ROW |68005 |1542 |28538 |0 |13 |4080B0|0 |2 |0 |
-ROW |68006 |1542 |29823 |0 |14 |8000FF|0 |2 |0 |
-ROW |68007 |1543 |28248 |0 |0 |008800|0 |2 |0 |
-ROW |68008 |1543 |28533 |0 |1 |EE0000|0 |2 |0 |
-ROW |68009 |1544 |28249 |0 |0 |008800|0 |2 |0 |
-ROW |68010 |1544 |28534 |0 |1 |EE0000|0 |2 |0 |
-ROW |68011 |1545 |22187 |5 |0 |00C800|0 |2 |0 |
-ROW |68012 |1545 |23251 |0 |1 |F63100|0 |2 |0 |
-ROW |68013 |1546 |23277 |5 |0 |00C800|0 |2 |0 |
-ROW |68014 |1546 |23272 |0 |1 |F63100|0 |2 |0 |
-ROW |68015 |1547 |28581 |0 |0 |990099|0 |2 |0 |
-ROW |68016 |1547 |28574 |0 |1 |990000|0 |2 |0 |
-ROW |68017 |1547 |28571 |0 |2 |0000EE|0 |2 |0 |
-ROW |68018 |1547 |28562 |0 |3 |FF33FF|0 |2 |0 |
-ROW |68019 |1547 |28570 |0 |4 |009600|0 |2 |0 |
-ROW |68020 |1547 |28569 |0 |5 |003300|0 |2 |0 |
-ROW |68021 |1547 |28552 |0 |6 |33FFFF|0 |2 |0 |
-ROW |68022 |1547 |28573 |0 |7 |DD0000|0 |2 |0 |
-ROW |68023 |1547 |28579 |0 |8 |000099|0 |2 |0 |
-ROW |68024 |1547 |28559 |0 |9 |00FF00|0 |2 |0 |
-ROW |68025 |1548 |28567 |0 |0 |00EE00|0 |2 |0 |
-ROW |68026 |1548 |28575 |0 |1 |0000EE|0 |2 |0 |
-ROW |68027 |1548 |28576 |0 |2 |FFAA00|0 |2 |0 |
-ROW |68028 |1548 |28583 |0 |3 |00EEEE|0 |2 |0 |
-ROW |68029 |1548 |28582 |0 |4 |990099|0 |2 |0 |
-ROW |68030 |1549 |28572 |0 |0 |00EE00|0 |2 |0 |
-ROW |68031 |1549 |28568 |0 |1 |FFAA00|0 |2 |0 |
-ROW |68032 |1549 |28564 |0 |2 |990099|0 |2 |0 |
-ROW |68033 |1549 |28578 |0 |3 |FF66FF|0 |2 |0 |
-ROW |68034 |1549 |28580 |0 |4 |009999|0 |2 |0 |
-ROW |68035 |1549 |28565 |0 |6 |8048B4|0 |2 |0 |
-ROW |68036 |1549 |28577 |0 |7 |FD5434|0 |2 |0 |
-ROW |68037 |1550 |28566 |0 |0 |00EE00|0 |2 |0 |
-ROW |68038 |1550 |28561 |0 |1 |0000EE|0 |2 |0 |
-ROW |68039 |1550 |28563 |0 |2 |FFAA00|0 |2 |0 |
-ROW |68040 |1550 |29821 |0 |3 |00EEEE|0 |2 |0 |
-ROW |68041 |1552 |28546 |0 |0 |C80000|0 |2 |0 |
-ROW |68042 |1552 |28545 |0 |1 |00C800|0 |2 |0 |
-ROW |68043 |1553 |28551 |0 |0 |009900|0 |2 |0 |
-ROW |68044 |1553 |28543 |0 |1 |DD0000|0 |2 |0 |
-ROW |68045 |1553 |28542 |0 |2 |00DDDD|0 |2 |0 |
-ROW |68046 |1553 |28549 |0 |3 |3333FF|0 |2 |0 |
-ROW |68047 |1553 |28544 |0 |4 |999900|0 |2 |0 |
-ROW |68048 |1553 |28548 |0 |5 |00FF00|0 |2 |0 |
-ROW |68049 |1554 |28581 |0 |0 |990099|0 |2 |0 |
-ROW |68050 |1554 |28574 |0 |1 |990000|0 |2 |0 |
-ROW |68051 |1554 |28571 |0 |2 |0000EE|0 |2 |0 |
-ROW |68052 |1554 |28565 |0 |3 |FF33FF|0 |2 |0 |
-ROW |68053 |1554 |28570 |0 |4 |009600|0 |2 |0 |
-ROW |68054 |1554 |28569 |0 |5 |003300|0 |2 |0 |
-ROW |68055 |1554 |28577 |0 |6 |CCCC00|0 |2 |0 |
-ROW |68056 |1554 |28552 |0 |7 |33FFFF|0 |2 |0 |
-ROW |68057 |1554 |28573 |0 |8 |DD0000|0 |2 |0 |
-ROW |68058 |1554 |28579 |0 |9 |000099|0 |2 |0 |
-ROW |68059 |1554 |28559 |0 |10 |00FF00|0 |2 |0 |
-ROW |68060 |1555 |28572 |0 |0 |00EE00|0 |2 |0 |
-ROW |68061 |1555 |28566 |0 |1 |0000EE|0 |2 |0 |
-ROW |68062 |1555 |28568 |0 |2 |FFAA00|0 |2 |0 |
-ROW |68063 |1555 |28561 |0 |3 |00EEEE|0 |2 |0 |
-ROW |68064 |1555 |28564 |0 |4 |990099|0 |2 |0 |
-ROW |68065 |1555 |28567 |0 |5 |EE0000|0 |2 |0 |
-ROW |68066 |1555 |28578 |0 |6 |FF66FF|0 |2 |0 |
-ROW |68067 |1555 |28580 |0 |7 |009999|0 |2 |0 |
-ROW |68068 |1555 |28562 |0 |8 |BBBB00|0 |2 |0 |
-ROW |68069 |1555 |28563 |0 |9 |AA0000|0 |2 |0 |
-ROW |68070 |1555 |28575 |0 |10 |990000|0 |2 |0 |
-ROW |68071 |1555 |28576 |0 |11 |008800|0 |2 |0 |
-ROW |68072 |1555 |28582 |0 |12 |80B0E0|0 |2 |0 |
-ROW |68073 |1555 |28583 |0 |13 |4080B0|0 |2 |0 |
-ROW |68074 |1555 |29821 |0 |14 |8000FF|0 |2 |0 |
-ROW |68075 |1556 |28560 |0 |0 |008800|0 |2 |0 |
-ROW |68076 |1556 |28584 |0 |1 |EE0000|0 |2 |0 |
-ROW |68077 |1557 |28550 |5 |0 |00C800|0 |2 |0 |
-ROW |68078 |1557 |28540 |0 |1 |F63100|0 |2 |0 |
-ROW |68079 |1320 |32196 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68080 |1320 |32197 |0 |1 |2774A4|0 |2 |0 |
-ROW |68081 |1320 |32195 |2 |2 |F63100|0 |2 |0 |
-ROW |68082 |1321 |32200 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68083 |1321 |32199 |0 |1 |2774A4|0 |2 |0 |
-ROW |68084 |1322 |32175 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68085 |1322 |32165 |0 |1 |2774A4|0 |2 |0 |
-ROW |68086 |1323 |32162 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68087 |1323 |32163 |0 |1 |2774A4|0 |2 |0 |
-ROW |68088 |1323 |32190 |2 |2 |F63100|0 |2 |0 |
-ROW |68089 |1324 |32192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68090 |1324 |32179 |0 |1 |2774A4|0 |2 |0 |
-ROW |68091 |1325 |32168 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68092 |1325 |32166 |0 |1 |2774A4|0 |2 |0 |
-ROW |68093 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
-ROW |68094 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
-ROW |68095 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
-ROW |68096 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
-ROW |68097 |804 |28602 |0 |0 |990099|0 |2 |0 |
-ROW |68098 |804 |28606 |0 |1 |990000|0 |2 |0 |
-ROW |68099 |804 |28608 |0 |2 |0000EE|0 |2 |0 |
-ROW |68100 |804 |28615 |0 |3 |FF33FF|0 |2 |0 |
-ROW |68101 |804 |28610 |0 |4 |00EE00|0 |2 |0 |
-ROW |68102 |804 |28611 |0 |5 |003300|0 |2 |0 |
-ROW |68103 |804 |28616 |0 |6 |33FFFF|0 |2 |0 |
-ROW |68104 |804 |28607 |0 |7 |DD0000|0 |2 |0 |
-ROW |68105 |804 |28604 |0 |8 |000099|0 |2 |0 |
-ROW |68106 |804 |28588 |0 |9 |00FF00|0 |2 |0 |
-ROW |68107 |805 |28612 |0 |0 |FFAA00|0 |2 |0 |
-ROW |68108 |805 |28600 |0 |1 |990099|0 |2 |0 |
-ROW |68109 |805 |28613 |0 |2 |EE0000|0 |2 |0 |
-ROW |68110 |805 |28605 |0 |3 |FF66FF|0 |2 |0 |
-ROW |68111 |805 |28614 |0 |4 |960000|0 |2 |0 |
-ROW |68112 |805 |28601 |0 |5 |009600|0 |2 |0 |
-ROW |68113 |805 |28603 |0 |6 |009999|0 |2 |0 |
-ROW |68114 |805 |28609 |0 |7 |BBBB00|0 |2 |0 |
-ROW |68115 |806 |28595 |0 |0 |00C800|0 |2 |0 |
-ROW |68116 |806 |28586 |0 |1 |C80000|0 |2 |0 |
-ROW |68117 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
-ROW |68118 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
-ROW |68119 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
-ROW |68120 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
-ROW |68121 |530 |23345 |0 |0 |990099|0 |2 |0 |
-ROW |68122 |530 |23348 |0 |1 |990000|0 |2 |0 |
-ROW |68123 |530 |23355 |0 |2 |0000EE|0 |2 |0 |
-ROW |68124 |530 |23352 |0 |3 |FF33FF|0 |2 |0 |
-ROW |68125 |530 |23356 |0 |4 |007700|0 |2 |0 |
-ROW |68126 |530 |23354 |0 |5 |003300|0 |2 |0 |
-ROW |68127 |530 |23346 |0 |6 |33FFFF|0 |2 |0 |
-ROW |68128 |530 |23349 |0 |7 |DD0000|0 |2 |0 |
-ROW |68129 |530 |23344 |0 |8 |000099|0 |7 |0 |
-ROW |68130 |530 |28250 |0 |9 |00FF00|0 |2 |0 |
-ROW |68131 |531 |23353 |0 |0 |FFAA00|0 |2 |0 |
-ROW |68132 |531 |23347 |0 |1 |990099|0 |2 |0 |
-ROW |68133 |531 |23350 |0 |2 |EE0000|0 |2 |0 |
-ROW |68134 |531 |23343 |0 |3 |FF66FF|0 |2 |0 |
-ROW |68135 |531 |23351 |0 |4 |0000EE|0 |2 |0 |
-ROW |68136 |531 |23360 |0 |5 |00EE00|0 |2 |0 |
-ROW |68137 |531 |25369 |0 |6 |009999|0 |2 |0 |
-ROW |68138 |531 |25368 |0 |7 |BBBB00|0 |2 |0 |
-ROW |68139 |531 |28618 |0 |8 |990000|0 |2 |0 |
-ROW |68140 |531 |28619 |0 |9 |008800|0 |2 |0 |
-ROW |68141 |807 |28617 |0 |0 |008800|0 |2 |0 |
-ROW |68142 |532 |23340 |5 |0 |00C800|0 |2 |0 |
-ROW |68143 |532 |23358 |5 |1 |C80000|1 |2 |0 |
-ROW |68144 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
-ROW |68145 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
-ROW |68146 |473 |22950 |0 |0 |C80000|0 |2 |2 |
-ROW |68147 |473 |22948 |0 |1 |00C800|0 |2 |0 |
-ROW |68148 |471 |22924 |0 |0 |009900|0 |2 |0 |
-ROW |68149 |471 |22920 |0 |1 |000099|0 |2 |0 |
-ROW |68150 |469 |22922 |0 |0 |009900|0 |2 |0 |
-ROW |68151 |469 |22923 |0 |1 |000099|0 |2 |0 |
-ROW |68152 |469 |22921 |0 |2 |990000|0 |2 |0 |
-ROW |68153 |498 |23109 |0 |0 |009999|0 |2 |0 |
-ROW |68154 |498 |23112 |0 |1 |990099|0 |2 |0 |
-ROW |68155 |498 |23115 |0 |2 |999900|0 |2 |0 |
-ROW |68156 |498 |23113 |0 |3 |990000|0 |2 |0 |
-ROW |68157 |498 |23114 |0 |4 |000099|0 |2 |0 |
-ROW |68158 |498 |23110 |0 |5 |009900|0 |2 |0 |
-ROW |68159 |540 |22942 |5 |0 |00C800|0 |2 |0 |
-ROW |68160 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
-ROW |68161 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
-ROW |68162 |467 |22910 |0 |0 |C80000|0 |2 |2 |
-ROW |68163 |467 |22908 |0 |1 |00C800|0 |2 |0 |
-ROW |68164 |465 |22884 |0 |0 |009900|0 |2 |0 |
-ROW |68165 |465 |22880 |0 |1 |000099|0 |2 |0 |
-ROW |68166 |463 |22882 |0 |0 |009900|0 |2 |0 |
-ROW |68167 |463 |22883 |0 |1 |000099|0 |2 |0 |
-ROW |68168 |463 |22881 |0 |2 |990000|0 |2 |0 |
-ROW |68169 |462 |22886 |1 |0 |009999|0 |2 |0 |
-ROW |68170 |462 |22888 |1 |1 |990099|0 |2 |0 |
-ROW |68171 |462 |22891 |1 |2 |990000|0 |2 |0 |
-ROW |68172 |462 |22892 |1 |3 |000099|0 |2 |0 |
-ROW |68173 |462 |22885 |1 |4 |009900|0 |2 |0 |
-ROW |68174 |541 |22902 |5 |0 |00C800|0 |2 |0 |
-ROW |68175 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
-ROW |68176 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
-ROW |68177 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
-ROW |68178 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
-ROW |68179 |479 |22990 |0 |0 |C80000|0 |2 |2 |
-ROW |68180 |479 |22988 |0 |1 |00C800|0 |2 |0 |
-ROW |68181 |475 |22962 |0 |0 |009900|0 |2 |0 |
-ROW |68182 |475 |22963 |0 |1 |000099|0 |2 |0 |
-ROW |68183 |475 |22961 |0 |2 |990000|0 |2 |0 |
-ROW |68184 |474 |22968 |1 |0 |990099|0 |2 |0 |
-ROW |68185 |474 |22971 |1 |1 |990000|0 |2 |0 |
-ROW |68186 |474 |22972 |1 |2 |000099|0 |2 |0 |
-ROW |68187 |474 |22965 |1 |3 |009900|0 |2 |0 |
-ROW |68188 |542 |22982 |5 |0 |00C800|0 |2 |0 |
-ROW |68189 |491 |23070 |0 |0 |C80000|0 |2 |2 |
-ROW |68190 |491 |23068 |0 |1 |00C800|0 |2 |0 |
-ROW |68191 |487 |23042 |0 |0 |009900|0 |2 |0 |
-ROW |68192 |487 |23043 |0 |1 |000099|0 |2 |0 |
-ROW |68193 |487 |23041 |0 |2 |990000|0 |2 |0 |
-ROW |68194 |543 |23062 |5 |0 |00C800|0 |2 |0 |
-ROW |68195 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
-ROW |68196 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
-ROW |68197 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
-ROW |68198 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
-ROW |68199 |461 |22870 |0 |0 |C80000|0 |2 |2 |
-ROW |68200 |461 |22868 |0 |1 |00C800|0 |2 |0 |
-ROW |68201 |459 |22844 |0 |0 |009900|0 |2 |0 |
-ROW |68202 |459 |22840 |0 |1 |000099|0 |2 |0 |
-ROW |68203 |457 |22842 |0 |0 |009900|0 |2 |0 |
-ROW |68204 |457 |22843 |0 |1 |000099|0 |2 |0 |
-ROW |68205 |457 |22841 |0 |2 |990000|0 |2 |0 |
-ROW |68206 |456 |22846 |1 |0 |009999|0 |2 |0 |
-ROW |68207 |456 |22848 |1 |1 |990099|0 |2 |0 |
-ROW |68208 |456 |22851 |1 |2 |990000|0 |2 |0 |
-ROW |68209 |456 |22852 |1 |3 |000099|0 |2 |0 |
-ROW |68210 |456 |22845 |1 |4 |009900|0 |2 |0 |
-ROW |68211 |544 |22862 |5 |0 |00C800|0 |2 |0 |
-ROW |68212 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
-ROW |68213 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
-ROW |68214 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
-ROW |68215 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
-ROW |68216 |485 |23030 |0 |0 |C80000|0 |2 |2 |
-ROW |68217 |485 |23028 |0 |1 |00C800|0 |2 |0 |
-ROW |68218 |483 |23004 |0 |0 |009900|0 |2 |0 |
-ROW |68219 |483 |23000 |0 |1 |000099|0 |2 |0 |
-ROW |68220 |481 |23002 |0 |0 |009900|0 |2 |0 |
-ROW |68221 |481 |23003 |0 |1 |000099|0 |2 |0 |
-ROW |68222 |481 |23001 |0 |2 |990000|0 |2 |0 |
-ROW |68223 |480 |23007 |1 |0 |999900|0 |2 |0 |
-ROW |68224 |480 |23011 |1 |1 |990000|0 |2 |0 |
-ROW |68225 |480 |23012 |1 |2 |000099|0 |2 |0 |
-ROW |68226 |480 |23005 |1 |3 |009900|0 |2 |0 |
-ROW |68227 |545 |23022 |5 |0 |00C800|0 |2 |0 |
-ROW |68228 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
-ROW |68229 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
-ROW |68230 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
-ROW |68231 |651 |26927 |0 |1 |000000|1 |2 |0 |
-ROW |68232 |652 |26925 |2 |0 |880000|0 |2 |0 |
-ROW |68233 |652 |26932 |0 |1 |009900|0 |2 |0 |
-ROW |68234 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
-ROW |68235 |652 |26931 |0 |3 |000000|0 |2 |0 |
-ROW |68236 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
-ROW |68237 |652 |26926 |0 |5 |777700|0 |2 |0 |
-ROW |68238 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
-ROW |68239 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
-ROW |68240 |653 |26935 |0 |2 |000000|1 |2 |0 |
-ROW |68241 |653 |26936 |4 |3 |000000|1 |2 |0 |
-ROW |68242 |654 |26934 |2 |0 |880000|0 |2 |0 |
-ROW |68243 |654 |26939 |0 |1 |009900|0 |2 |0 |
-ROW |68244 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
-ROW |68245 |654 |26938 |0 |3 |000000|0 |2 |0 |
-ROW |68246 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
-ROW |68247 |1326 |32292 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68248 |1326 |32291 |0 |1 |2774A4|0 |2 |0 |
-ROW |68249 |1326 |32278 |0 |2 |F63100|0 |2 |0 |
-ROW |68250 |1326 |32277 |0 |3 |A54F10|0 |2 |0 |
-ROW |68251 |1327 |32304 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68252 |1327 |32289 |0 |1 |2774A4|0 |2 |0 |
-ROW |68253 |1328 |32259 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68254 |1328 |32260 |2 |1 |2774A4|0 |2 |0 |
-ROW |68255 |1329 |32268 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68256 |1329 |32264 |2 |1 |2774A4|0 |2 |0 |
-ROW |68257 |1330 |32261 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68258 |1330 |32265 |2 |1 |2774A4|0 |2 |0 |
-ROW |68259 |1330 |32262 |0 |2 |F63100|0 |2 |0 |
-ROW |68260 |1330 |32263 |0 |3 |A54F10|0 |2 |0 |
-ROW |68261 |1330 |32266 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68262 |1330 |32267 |0 |5 |6C59DC|0 |2 |0 |
-ROW |68263 |1331 |32272 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68264 |1331 |32271 |2 |1 |2774A4|0 |2 |0 |
-ROW |68265 |1332 |32256 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68266 |1332 |32242 |2 |1 |2774A4|0 |2 |0 |
-ROW |68267 |1333 |32273 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68268 |1333 |32238 |0 |1 |2774A4|0 |2 |0 |
-ROW |68269 |1334 |32245 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68270 |1334 |32250 |2 |1 |2774A4|0 |2 |0 |
-ROW |68271 |1334 |32246 |0 |2 |F63100|0 |2 |0 |
-ROW |68272 |1334 |32247 |0 |3 |A54F10|0 |2 |0 |
-ROW |68273 |1334 |32251 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68274 |1334 |32252 |0 |5 |6C59DC|0 |2 |0 |
-ROW |68275 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68276 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
-ROW |68277 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68278 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
-ROW |68279 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
-ROW |68280 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
-ROW |68281 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68282 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68283 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
-ROW |68284 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68285 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
-ROW |68286 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
-ROW |68287 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
-ROW |68288 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |68289 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68290 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
-ROW |68291 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
-ROW |68292 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68293 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
-ROW |68294 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68295 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
-ROW |68296 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68297 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
-ROW |68298 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
-ROW |68299 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
-ROW |68300 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68301 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68302 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
-ROW |68303 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
-ROW |68304 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68305 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
-ROW |68306 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
-ROW |68307 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68308 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
-ROW |68309 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68310 |1488 |30840 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68311 |1488 |30845 |0 |1 |2774A4|0 |2 |0 |
-ROW |68312 |1488 |30842 |0 |2 |F63100|0 |2 |0 |
-ROW |68313 |1488 |30873 |2 |3 |A54F10|1 |2 |0 |
-ROW |68314 |1677 |35580 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68315 |1677 |35583 |0 |1 |2774A4|0 |2 |0 |
-ROW |68316 |1677 |35581 |0 |2 |F63100|0 |2 |0 |
-ROW |68317 |1677 |35582 |0 |3 |A54F10|0 |2 |0 |
-ROW |68318 |1678 |35589 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68319 |1678 |35588 |0 |1 |2774A4|0 |2 |0 |
-ROW |68320 |1678 |35587 |0 |2 |F63100|0 |2 |0 |
-ROW |68321 |1679 |35592 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68322 |1679 |35601 |0 |1 |2774A4|0 |2 |0 |
-ROW |68323 |1680 |35596 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68324 |1680 |35597 |0 |1 |2774A4|0 |2 |0 |
-ROW |68325 |1681 |35602 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68326 |1681 |35607 |0 |1 |2774A4|0 |2 |0 |
-ROW |68327 |1681 |35605 |0 |2 |F63100|0 |2 |0 |
-ROW |68328 |1681 |35603 |0 |3 |A54F10|0 |2 |0 |
-ROW |68329 |1682 |35609 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68330 |1682 |35611 |0 |1 |2774A4|0 |2 |0 |
-ROW |68331 |1682 |35610 |0 |2 |F63100|0 |2 |0 |
-ROW |68332 |1683 |35623 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68333 |1683 |35621 |0 |1 |2774A4|0 |2 |0 |
-ROW |68334 |1684 |35630 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68335 |1684 |35631 |0 |1 |2774A4|0 |2 |0 |
-ROW |68336 |1685 |35633 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68337 |1685 |35635 |0 |1 |2774A4|0 |2 |0 |
-ROW |68338 |1686 |35636 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68339 |1686 |35634 |0 |1 |2774A4|0 |2 |0 |
-ROW |68340 |1687 |35638 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68341 |1687 |35639 |0 |1 |2774A4|0 |2 |0 |
-ROW |68342 |1688 |35637 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68343 |1688 |35640 |0 |1 |2774A4|0 |2 |0 |
-ROW |68344 |1688 |35641 |0 |2 |F63100|0 |2 |0 |
-ROW |68345 |1689 |35643 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68346 |1689 |35644 |0 |1 |2774A4|0 |2 |0 |
-ROW |68347 |1390 |32665 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68348 |1390 |32668 |0 |1 |2774A4|0 |2 |0 |
-ROW |68349 |1390 |32666 |0 |2 |F63100|0 |2 |0 |
-ROW |68350 |1390 |32667 |0 |3 |A54F10|0 |2 |0 |
-ROW |68351 |1391 |32674 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68352 |1391 |32673 |0 |1 |2774A4|0 |2 |0 |
-ROW |68353 |1391 |32672 |0 |2 |F63100|0 |2 |0 |
-ROW |68354 |1392 |32677 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68355 |1392 |32686 |0 |1 |2774A4|0 |2 |0 |
-ROW |68356 |1393 |32681 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68357 |1393 |32682 |0 |1 |2774A4|0 |2 |0 |
-ROW |68358 |1394 |32687 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68359 |1394 |32692 |0 |1 |2774A4|0 |2 |0 |
-ROW |68360 |1394 |32690 |0 |2 |F63100|0 |2 |0 |
-ROW |68361 |1394 |32688 |0 |3 |A54F10|0 |2 |0 |
-ROW |68362 |1395 |32694 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68363 |1395 |32696 |0 |1 |2774A4|0 |2 |0 |
-ROW |68364 |1395 |32695 |0 |2 |F63100|0 |2 |0 |
-ROW |68365 |1396 |32708 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68366 |1396 |32706 |0 |1 |2774A4|0 |2 |0 |
-ROW |68367 |1397 |32715 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68368 |1397 |32716 |0 |1 |2774A4|0 |2 |0 |
-ROW |68369 |1398 |32718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68370 |1398 |32720 |0 |1 |2774A4|0 |2 |0 |
-ROW |68371 |1399 |32721 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68372 |1399 |32719 |0 |1 |2774A4|0 |2 |0 |
-ROW |68373 |1400 |32723 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68374 |1400 |32724 |0 |1 |2774A4|0 |2 |0 |
-ROW |68375 |1401 |32722 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68376 |1401 |32725 |0 |1 |2774A4|0 |2 |0 |
-ROW |68377 |1401 |32726 |0 |2 |F63100|0 |2 |0 |
-ROW |68378 |1402 |32728 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68379 |1402 |32729 |0 |1 |2774A4|0 |2 |0 |
-ROW |68380 |1439 |33072 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68381 |1439 |33092 |0 |1 |2774A4|0 |2 |0 |
-ROW |68382 |1440 |33073 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68383 |1440 |33069 |0 |1 |2774A4|0 |2 |0 |
-ROW |68384 |1441 |33079 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68385 |1441 |33084 |0 |1 |2774A4|0 |2 |0 |
-ROW |68386 |1441 |33082 |0 |2 |F63100|0 |2 |0 |
-ROW |68387 |1441 |33074 |0 |3 |A54F10|0 |2 |0 |
-ROW |68388 |1441 |33078 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68389 |1441 |33086 |0 |5 |6C59DC|0 |2 |0 |
-ROW |68390 |1441 |33076 |2 |6 |AC8C14|0 |2 |0 |
-ROW |68391 |1442 |33081 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68392 |1442 |33085 |0 |1 |2774A4|0 |2 |0 |
-ROW |68393 |1442 |33083 |0 |2 |F63100|0 |2 |0 |
-ROW |68394 |1442 |33075 |0 |3 |A54F10|0 |2 |0 |
-ROW |68395 |1442 |33068 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68396 |1442 |33087 |0 |5 |6C59DC|0 |2 |0 |
-ROW |68397 |1442 |33077 |2 |6 |AC8C14|0 |2 |0 |
-ROW |68398 |1443 |33093 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68399 |1443 |33098 |0 |1 |2774A4|0 |2 |0 |
-ROW |68400 |1444 |33097 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68401 |1444 |33100 |0 |1 |2774A4|0 |2 |0 |
-ROW |68402 |1444 |33096 |0 |2 |F63100|0 |2 |0 |
-ROW |68403 |1444 |33094 |0 |3 |A54F10|0 |2 |0 |
-ROW |68404 |1445 |33116 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68405 |1446 |33045 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68406 |1446 |33044 |0 |1 |2774A4|0 |2 |0 |
-ROW |68407 |1446 |33046 |0 |2 |F63100|0 |2 |0 |
-ROW |68408 |1447 |33055 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68409 |1447 |33023 |0 |1 |2774A4|0 |2 |0 |
-ROW |68410 |1448 |33053 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68411 |1448 |33052 |0 |1 |2774A4|0 |2 |0 |
-ROW |68412 |1448 |33054 |0 |2 |F63100|0 |2 |0 |
-ROW |68413 |1449 |33051 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68414 |1449 |33059 |0 |1 |2774A4|0 |2 |0 |
-ROW |68415 |1449 |33027 |0 |2 |F63100|0 |2 |0 |
-ROW |68416 |1450 |33022 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68417 |1450 |33040 |0 |1 |2774A4|0 |2 |0 |
-ROW |68418 |1450 |33042 |0 |2 |F63100|0 |2 |0 |
-ROW |68419 |1450 |33043 |0 |3 |A54F10|0 |2 |0 |
-ROW |68420 |1451 |33038 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68421 |1451 |33025 |0 |1 |2774A4|0 |2 |0 |
-ROW |68422 |1451 |33026 |0 |2 |F63100|0 |2 |0 |
-ROW |68423 |1451 |33024 |0 |3 |A54F10|0 |2 |0 |
-ROW |68424 |1452 |33029 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68425 |1452 |33028 |0 |1 |2774A4|0 |2 |0 |
-ROW |68426 |1453 |33035 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68427 |1453 |33034 |0 |1 |2774A4|0 |2 |0 |
-ROW |68428 |1453 |33033 |0 |2 |F63100|0 |2 |0 |
-ROW |68429 |1453 |33036 |0 |3 |A54F10|0 |2 |0 |
-ROW |68430 |1453 |33030 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68431 |1453 |33031 |0 |5 |6C59DC|0 |2 |0 |
-ROW |68432 |1454 |33057 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68433 |1454 |33056 |2 |1 |2774A4|0 |2 |0 |
-ROW |68434 |1454 |33058 |2 |2 |F63100|0 |2 |0 |
-ROW |68435 |1455 |33190 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68436 |1455 |33193 |0 |1 |2774A4|0 |2 |0 |
-ROW |68437 |1455 |33189 |0 |2 |F63100|0 |2 |0 |
-ROW |68438 |1455 |33187 |0 |3 |A54F10|0 |2 |0 |
-ROW |68439 |1456 |33158 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68440 |1456 |33168 |0 |1 |2774A4|0 |2 |0 |
-ROW |68441 |1456 |33169 |0 |2 |F63100|0 |2 |0 |
-ROW |68442 |1456 |33167 |0 |3 |A54F10|0 |2 |0 |
-ROW |68443 |1456 |33171 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68444 |1457 |33165 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68445 |1457 |33166 |0 |1 |2774A4|0 |2 |0 |
-ROW |68446 |1457 |33164 |0 |2 |F63100|0 |2 |0 |
-ROW |68447 |1457 |33163 |2 |3 |A54F10|1 |2 |0 |
-ROW |68448 |1458 |33161 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68449 |1458 |33162 |0 |1 |2774A4|0 |2 |0 |
-ROW |68450 |1458 |33155 |0 |2 |F63100|0 |2 |0 |
-ROW |68451 |1459 |33146 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68452 |1459 |33145 |0 |1 |2774A4|0 |2 |0 |
-ROW |68453 |1460 |33152 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68454 |1460 |33151 |2 |1 |2774A4|0 |2 |0 |
-ROW |68455 |1460 |33148 |2 |2 |F63100|0 |2 |0 |
-ROW |68456 |1460 |33153 |2 |3 |A54F10|0 |2 |0 |
-ROW |68457 |1460 |33149 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |68458 |1460 |33144 |2 |5 |6C59DC|0 |2 |0 |
-ROW |68459 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68460 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
-ROW |68461 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68462 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
-ROW |68463 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
-ROW |68464 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68465 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68466 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
-ROW |68467 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68468 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
-ROW |68469 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
-ROW |68470 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
-ROW |68471 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68472 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
-ROW |68473 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68474 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
-ROW |68475 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
-ROW |68476 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
-ROW |68477 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68478 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
-ROW |68479 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68480 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
-ROW |68481 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68482 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
-ROW |68483 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68484 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
-ROW |68485 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
-ROW |68486 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
-ROW |68487 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68488 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68489 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
-ROW |68490 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
-ROW |68491 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
-ROW |68492 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68493 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68494 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
-ROW |68495 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68496 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
-ROW |68497 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68498 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
-ROW |68499 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68500 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68501 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
-ROW |68502 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
-ROW |68503 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
-ROW |68504 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68505 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
-ROW |68506 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
-ROW |68507 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68508 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68509 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
-ROW |68510 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
-ROW |68511 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
-ROW |68512 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68513 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
-ROW |68514 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68515 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
-ROW |68516 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68517 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
-ROW |68518 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
-ROW |68519 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
-ROW |68520 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68521 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
-ROW |68522 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68523 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
-ROW |68524 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
-ROW |68525 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
-ROW |68526 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68527 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
-ROW |68528 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
-ROW |68529 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
-ROW |68530 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68531 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
-ROW |68532 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
-ROW |68533 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
-ROW |68534 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68535 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
-ROW |68536 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
-ROW |68537 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68538 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
-ROW |68539 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
-ROW |68540 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
-ROW |68541 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68542 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
-ROW |68543 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68544 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
-ROW |68545 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
-ROW |68546 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
-ROW |68547 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68548 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
-ROW |68549 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
-ROW |68550 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
-ROW |68551 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68552 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
-ROW |68553 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
-ROW |68554 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
-ROW |68555 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68556 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
-ROW |68557 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
-ROW |68558 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68559 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
-ROW |68560 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
-ROW |68561 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
-ROW |68562 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68563 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
-ROW |68564 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68565 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
-ROW |68566 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
-ROW |68567 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
-ROW |68568 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68569 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
-ROW |68570 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
-ROW |68571 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
-ROW |68572 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68573 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
-ROW |68574 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
-ROW |68575 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
-ROW |68576 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68577 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
-ROW |68578 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
-ROW |68579 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68580 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
-ROW |68581 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
-ROW |68582 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
-ROW |68583 |1262 |31718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68584 |1262 |31719 |0 |1 |2774A4|0 |2 |0 |
-ROW |68585 |1263 |31722 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68586 |1263 |31724 |0 |1 |2774A4|0 |2 |0 |
-ROW |68587 |1263 |32588 |0 |2 |F63100|0 |2 |0 |
-ROW |68588 |1264 |31630 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68589 |1264 |31683 |0 |1 |2774A4|0 |2 |0 |
-ROW |68590 |1265 |31668 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68591 |1265 |31702 |0 |1 |2774A4|0 |2 |0 |
-ROW |68592 |1265 |31666 |0 |2 |F63100|0 |2 |0 |
-ROW |68593 |1266 |31673 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68594 |1266 |31704 |0 |1 |2774A4|0 |2 |0 |
-ROW |68595 |1267 |31690 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68596 |1267 |31672 |0 |1 |2774A4|0 |2 |0 |
-ROW |68597 |1268 |31632 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68598 |1268 |31655 |0 |1 |2774A4|0 |2 |0 |
-ROW |68599 |1269 |31650 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68600 |1269 |31648 |0 |1 |2774A4|0 |2 |0 |
-ROW |68601 |1269 |31651 |0 |2 |F63100|0 |2 |0 |
-ROW |68602 |1269 |31646 |0 |3 |A54F10|0 |2 |0 |
-ROW |68603 |1269 |31653 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68604 |1270 |31660 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68605 |1270 |31671 |0 |1 |2774A4|0 |2 |0 |
-ROW |68606 |1270 |31662 |0 |2 |F63100|0 |2 |0 |
-ROW |68607 |1270 |31661 |0 |3 |A54F10|0 |2 |0 |
-ROW |68608 |1270 |31659 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68609 |1270 |31658 |0 |5 |6C59DC|0 |2 |0 |
-ROW |68610 |814 |28730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68611 |814 |28728 |0 |1 |2774A4|0 |2 |0 |
-ROW |68612 |815 |28712 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68613 |816 |28733 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68614 |816 |28715 |0 |1 |2774A4|0 |2 |0 |
-ROW |68615 |816 |28729 |0 |2 |F63100|0 |2 |0 |
-ROW |68616 |816 |28732 |0 |3 |A54F10|0 |2 |0 |
-ROW |68617 |817 |28716 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68618 |818 |28726 |0 |0 |1A7C11|1 |2 |0 |
-ROW |68619 |818 |28723 |0 |1 |2774A4|1 |2 |0 |
-ROW |68620 |818 |28720 |0 |2 |F63100|1 |2 |0 |
-ROW |68621 |818 |28725 |5 |3 |A54F10|0 |2 |0 |
-ROW |68622 |818 |28722 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |68623 |818 |28719 |5 |5 |6C59DC|0 |2 |0 |
-ROW |68624 |819 |28727 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68625 |819 |28724 |0 |1 |2774A4|0 |2 |0 |
-ROW |68626 |819 |28721 |0 |2 |F63100|0 |2 |0 |
-ROW |68627 |820 |28740 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68628 |820 |28739 |0 |1 |2774A4|1 |2 |0 |
-ROW |68629 |821 |28738 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68630 |821 |28737 |0 |1 |2774A4|0 |2 |0 |
-ROW |68631 |821 |28736 |0 |2 |F63100|0 |2 |0 |
-ROW |68632 |821 |28735 |0 |3 |A54F10|0 |2 |0 |
-ROW |68633 |821 |28734 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68634 |822 |28693 |0 |0 |1A7C11|1 |2 |0 |
-ROW |68635 |822 |28698 |0 |1 |2774A4|1 |2 |0 |
-ROW |68636 |822 |28694 |0 |2 |F63100|1 |2 |0 |
-ROW |68637 |822 |28697 |0 |3 |A54F10|1 |2 |0 |
-ROW |68638 |822 |28702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68639 |822 |28696 |0 |5 |6C59DC|0 |2 |0 |
-ROW |68640 |823 |28700 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68641 |823 |28699 |0 |1 |2774A4|0 |2 |0 |
-ROW |68642 |823 |28701 |0 |2 |F63100|1 |2 |0 |
-ROW |68643 |823 |28695 |0 |3 |A54F10|1 |2 |0 |
-ROW |68644 |824 |28708 |5 |0 |1A7C11|1 |2 |0 |
-ROW |68645 |824 |28709 |0 |1 |2774A4|0 |2 |0 |
-ROW |68646 |824 |28704 |0 |2 |F63100|1 |2 |0 |
-ROW |68647 |824 |28705 |0 |3 |A54F10|1 |2 |0 |
-ROW |68648 |824 |28706 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68649 |824 |28707 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68650 |824 |28703 |0 |6 |AC8C14|1 |2 |0 |
-ROW |68651 |825 |28674 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68652 |825 |28673 |0 |1 |2774A4|1 |2 |0 |
-ROW |68653 |826 |28677 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68654 |827 |28689 |0 |0 |1A7C11|1 |2 |0 |
-ROW |68655 |827 |28688 |0 |1 |2774A4|1 |2 |0 |
-ROW |68656 |827 |28690 |0 |2 |F63100|1 |2 |0 |
-ROW |68657 |827 |28691 |0 |3 |A54F10|1 |2 |0 |
-ROW |68658 |828 |28684 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68659 |828 |28681 |0 |1 |2774A4|1 |2 |0 |
-ROW |68660 |829 |28710 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68661 |829 |28692 |0 |1 |2774A4|1 |2 |0 |
-ROW |68662 |1210 |31269 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68663 |1210 |31252 |0 |1 |2774A4|0 |2 |0 |
-ROW |68664 |1210 |31251 |0 |2 |F63100|0 |2 |0 |
-ROW |68665 |1210 |31250 |0 |3 |A54F10|0 |2 |0 |
-ROW |68666 |1210 |31249 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68667 |1210 |31248 |0 |5 |6C59DC|0 |2 |0 |
-ROW |68668 |1210 |31246 |0 |6 |AC8C14|0 |2 |0 |
-ROW |68669 |1210 |31245 |0 |7 |611F27|0 |2 |0 |
-ROW |68670 |1210 |31247 |0 |8 |F230E0|0 |2 |0 |
-ROW |68671 |1210 |31247 |0 |9 |FFAD40|0 |2 |0 |
-ROW |68672 |1211 |31243 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68673 |1212 |31266 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68674 |1212 |31265 |0 |1 |2774A4|0 |2 |0 |
-ROW |68675 |1212 |31263 |0 |2 |F63100|0 |2 |0 |
-ROW |68676 |1212 |31262 |0 |3 |A54F10|0 |2 |0 |
-ROW |68677 |1212 |31260 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68678 |1212 |31259 |0 |5 |6C59DC|0 |2 |0 |
-ROW |68679 |1212 |31258 |0 |6 |AC8C14|0 |2 |0 |
-ROW |68680 |1212 |31256 |0 |7 |611F27|0 |2 |0 |
-ROW |68681 |1212 |31257 |0 |8 |F230E0|0 |2 |0 |
-ROW |68682 |1212 |31244 |0 |9 |FFAD40|0 |2 |0 |
-ROW |68683 |1212 |31255 |0 |10 |40CDFF|0 |2 |0 |
-ROW |68684 |1212 |31254 |0 |11 |40FFA0|0 |2 |0 |
-ROW |68685 |1212 |31253 |0 |12 |AE4500|0 |2 |0 |
-ROW |68686 |1213 |31242 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68687 |1386 |32598 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68688 |1386 |32599 |0 |1 |2774A4|0 |2 |0 |
-ROW |68689 |1386 |32600 |0 |2 |F63100|0 |2 |0 |
-ROW |68690 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68691 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
-ROW |68692 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68693 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
-ROW |68694 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68695 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68696 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68697 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
-ROW |68698 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68699 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68700 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
-ROW |68701 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
-ROW |68702 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
-ROW |68703 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68704 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
-ROW |68705 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68706 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
-ROW |68707 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68708 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
-ROW |68709 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
-ROW |68710 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68711 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68712 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
-ROW |68713 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68714 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
-ROW |68715 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68716 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68717 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68718 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68719 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68720 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68721 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68722 |1065 |30161 |0 |0 |969696|0 |9 |2 |
-ROW |68723 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
-ROW |68724 |1066 |30167 |0 |0 |969696|0 |9 |2 |
-ROW |68725 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
-ROW |68726 |1068 |30179 |0 |0 |969696|0 |9 |2 |
-ROW |68727 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
-ROW |68728 |1069 |30185 |0 |0 |969696|0 |9 |2 |
-ROW |68729 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
-ROW |68730 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68731 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68732 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68733 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68734 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68735 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
-ROW |68736 |741 |27083 |0 |2 |F63100|1 |2 |0 |
-ROW |68737 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
-ROW |68738 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68739 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68740 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68741 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
-ROW |68742 |742 |27624 |0 |2 |F63100|1 |2 |0 |
-ROW |68743 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
-ROW |68744 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68745 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68746 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68747 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
-ROW |68748 |743 |27981 |0 |2 |F63100|1 |2 |0 |
-ROW |68749 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
-ROW |68750 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68751 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68752 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68753 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
-ROW |68754 |740 |28010 |0 |2 |F63100|1 |2 |0 |
-ROW |68755 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
-ROW |68756 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68757 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68758 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68759 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
-ROW |68760 |745 |27103 |0 |2 |F63100|1 |2 |0 |
-ROW |68761 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
-ROW |68762 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68763 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68764 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68765 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
-ROW |68766 |746 |27185 |0 |2 |F63100|1 |2 |0 |
-ROW |68767 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
-ROW |68768 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68769 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68770 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68771 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
-ROW |68772 |747 |27220 |0 |2 |F63100|1 |2 |0 |
-ROW |68773 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
-ROW |68774 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68775 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68776 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68777 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
-ROW |68778 |748 |27256 |0 |2 |F63100|1 |2 |0 |
-ROW |68779 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
-ROW |68780 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68781 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68782 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68783 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
-ROW |68784 |749 |27277 |0 |2 |F63100|1 |2 |0 |
-ROW |68785 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
-ROW |68786 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68787 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68788 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68789 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
-ROW |68790 |750 |27326 |0 |2 |F63100|1 |2 |0 |
-ROW |68791 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
-ROW |68792 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68793 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68794 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68795 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
-ROW |68796 |752 |27455 |0 |2 |F63100|1 |2 |0 |
-ROW |68797 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
-ROW |68798 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68799 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68800 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68801 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
-ROW |68802 |753 |27491 |0 |2 |F63100|1 |2 |0 |
-ROW |68803 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
-ROW |68804 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68805 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68806 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68807 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
-ROW |68808 |754 |27525 |0 |2 |F63100|1 |2 |0 |
-ROW |68809 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
-ROW |68810 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68811 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68812 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68813 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
-ROW |68814 |755 |27561 |0 |2 |F63100|1 |2 |0 |
-ROW |68815 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
-ROW |68816 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68817 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68818 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68819 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
-ROW |68820 |756 |27647 |0 |2 |F63100|1 |2 |0 |
-ROW |68821 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
-ROW |68822 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68823 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68824 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68825 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
-ROW |68826 |758 |27727 |0 |2 |F63100|1 |2 |0 |
-ROW |68827 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
-ROW |68828 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68829 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68830 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68831 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
-ROW |68832 |759 |27761 |0 |2 |F63100|1 |2 |0 |
-ROW |68833 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
-ROW |68834 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68835 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68836 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68837 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
-ROW |68838 |760 |27793 |0 |2 |F63100|1 |2 |0 |
-ROW |68839 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
-ROW |68840 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68841 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68842 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68843 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
-ROW |68844 |762 |27877 |0 |2 |F63100|1 |2 |0 |
-ROW |68845 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
-ROW |68846 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68847 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68848 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68849 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
-ROW |68850 |763 |27914 |0 |2 |F63100|1 |2 |0 |
-ROW |68851 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
-ROW |68852 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68853 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68854 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68855 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
-ROW |68856 |764 |27949 |0 |2 |F63100|1 |2 |0 |
-ROW |68857 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
-ROW |68858 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68859 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68860 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68861 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
-ROW |68862 |773 |28123 |0 |2 |F63100|1 |2 |0 |
-ROW |68863 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
-ROW |68864 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68865 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68866 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68867 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
-ROW |68868 |785 |28228 |0 |2 |F63100|1 |2 |0 |
-ROW |68869 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
-ROW |68870 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68871 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68872 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68873 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
-ROW |68874 |790 |28298 |0 |2 |F63100|1 |2 |0 |
-ROW |68875 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
-ROW |68876 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68877 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68878 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68879 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
-ROW |68880 |865 |28973 |0 |2 |F63100|1 |2 |0 |
-ROW |68881 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
-ROW |68882 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68883 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68884 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68885 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
-ROW |68886 |766 |27123 |0 |2 |F63100|1 |2 |0 |
-ROW |68887 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
-ROW |68888 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68889 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68890 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68891 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
-ROW |68892 |886 |29082 |0 |2 |F63100|1 |2 |0 |
-ROW |68893 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
-ROW |68894 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68895 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68896 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68897 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68898 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
-ROW |68899 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68900 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68901 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68902 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68903 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68904 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68905 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68906 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68907 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68908 |1729 |35914 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68909 |1730 |35917 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68910 |1731 |35924 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68911 |1731 |35931 |0 |1 |2774A4|0 |2 |0 |
-ROW |68912 |1731 |35922 |0 |2 |F63100|0 |2 |0 |
-ROW |68913 |1731 |35929 |0 |3 |A54F10|0 |2 |0 |
-ROW |68914 |1731 |35921 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68915 |1731 |35928 |0 |5 |6C59DC|0 |2 |0 |
-ROW |68916 |1732 |35932 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68917 |1732 |35925 |0 |1 |2774A4|0 |2 |0 |
-ROW |68918 |1733 |35923 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68919 |1733 |35930 |0 |1 |2774A4|0 |2 |0 |
-ROW |68920 |1734 |35948 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68921 |1734 |35949 |0 |1 |2774A4|0 |2 |0 |
-ROW |68922 |1461 |33219 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68923 |1462 |33224 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68924 |1463 |33227 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68925 |1463 |33230 |2 |1 |2774A4|0 |2 |0 |
-ROW |68926 |1463 |33229 |0 |2 |F63100|1 |2 |0 |
-ROW |68927 |1463 |33226 |0 |3 |A54F10|1 |2 |0 |
-ROW |68928 |1463 |33228 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68929 |1463 |33225 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68930 |1464 |33260 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68931 |1465 |33265 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68932 |1466 |33268 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68933 |1466 |33271 |2 |1 |2774A4|0 |2 |0 |
-ROW |68934 |1466 |33270 |0 |2 |F63100|1 |2 |0 |
-ROW |68935 |1466 |33267 |0 |3 |A54F10|1 |2 |0 |
-ROW |68936 |1466 |33269 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68937 |1466 |33266 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68938 |1467 |33301 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68939 |1468 |33306 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68940 |1469 |33309 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68941 |1469 |33312 |2 |1 |2774A4|0 |2 |0 |
-ROW |68942 |1469 |33311 |0 |2 |F63100|1 |2 |0 |
-ROW |68943 |1469 |33308 |0 |3 |A54F10|1 |2 |0 |
-ROW |68944 |1469 |33310 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68945 |1469 |33307 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68946 |1470 |33342 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68947 |1471 |33347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68948 |1472 |33350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68949 |1472 |33353 |2 |1 |2774A4|0 |2 |0 |
-ROW |68950 |1472 |33352 |0 |2 |F63100|1 |2 |0 |
-ROW |68951 |1472 |33349 |0 |3 |A54F10|1 |2 |0 |
-ROW |68952 |1472 |33351 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68953 |1472 |33348 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68954 |1473 |33383 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68955 |1474 |33388 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68956 |1475 |33391 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68957 |1475 |33394 |2 |1 |2774A4|0 |2 |0 |
-ROW |68958 |1475 |33393 |0 |2 |F63100|1 |2 |0 |
-ROW |68959 |1475 |33390 |0 |3 |A54F10|1 |2 |0 |
-ROW |68960 |1475 |33392 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |68961 |1475 |33389 |0 |5 |6C59DC|1 |2 |0 |
-ROW |68962 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68963 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68964 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68965 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68966 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68967 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68968 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68969 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68970 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68971 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68972 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68973 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68974 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68975 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68976 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68977 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68978 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
-ROW |68979 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
-ROW |68980 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68981 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
-ROW |68982 |1690 |35679 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68983 |1691 |35681 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68984 |1692 |35683 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68985 |1693 |35686 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68986 |1694 |35690 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68987 |1694 |35705 |0 |1 |2774A4|0 |2 |0 |
-ROW |68988 |1694 |35696 |0 |2 |F63100|0 |2 |0 |
-ROW |68989 |1694 |35687 |0 |3 |A54F10|0 |2 |0 |
-ROW |68990 |1694 |35708 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68991 |1694 |35711 |0 |5 |6C59DC|0 |2 |0 |
-ROW |68992 |1694 |35699 |0 |6 |AC8C14|0 |2 |0 |
-ROW |68993 |1695 |35689 |0 |0 |1A7C11|0 |2 |0 |
-ROW |68994 |1695 |35704 |0 |1 |2774A4|0 |2 |0 |
-ROW |68995 |1695 |35695 |0 |2 |F63100|0 |2 |0 |
-ROW |68996 |1695 |35701 |0 |3 |A54F10|0 |2 |0 |
-ROW |68997 |1695 |35707 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |68998 |1695 |35710 |0 |5 |6C59DC|0 |2 |0 |
-ROW |68999 |1695 |35697 |0 |6 |AC8C14|0 |2 |0 |
-ROW |69000 |1696 |35713 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69001 |1696 |35703 |0 |1 |2774A4|0 |2 |0 |
-ROW |69002 |1696 |35694 |0 |2 |F63100|0 |2 |0 |
-ROW |69003 |1696 |35712 |0 |3 |A54F10|0 |2 |0 |
-ROW |69004 |1696 |35706 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69005 |1696 |35709 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69006 |1696 |35698 |0 |6 |AC8C14|0 |2 |0 |
-ROW |69007 |1697 |35714 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69008 |1698 |35716 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69009 |1699 |35718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69010 |1699 |35720 |0 |1 |2774A4|0 |2 |0 |
-ROW |69011 |1700 |35727 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69012 |1700 |35724 |0 |1 |2774A4|0 |2 |0 |
-ROW |69013 |1701 |35726 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69014 |1701 |35723 |0 |1 |2774A4|0 |2 |0 |
-ROW |69015 |1702 |35730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69016 |1702 |35728 |0 |1 |2774A4|0 |2 |0 |
-ROW |69017 |1702 |35729 |0 |2 |F63100|0 |2 |0 |
-ROW |69018 |1703 |35737 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69019 |1703 |35733 |0 |1 |2774A4|1 |2 |0 |
-ROW |69020 |1703 |35743 |0 |2 |F63100|0 |2 |0 |
-ROW |69021 |1703 |35739 |0 |3 |A54F10|1 |2 |0 |
-ROW |69022 |1703 |35736 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69023 |1703 |35742 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69024 |1704 |35748 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69025 |1704 |35747 |0 |1 |2774A4|1 |2 |0 |
-ROW |69026 |1704 |35750 |0 |2 |F63100|0 |2 |0 |
-ROW |69027 |1704 |35749 |0 |3 |A54F10|1 |2 |0 |
-ROW |69028 |1705 |35756 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69029 |1705 |35755 |0 |1 |2774A4|1 |2 |0 |
-ROW |69030 |1705 |35758 |0 |2 |F63100|0 |2 |0 |
-ROW |69031 |1705 |35757 |0 |3 |A54F10|1 |2 |0 |
-ROW |69032 |1843 |35764 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69033 |1843 |35763 |0 |1 |2774A4|1 |2 |0 |
-ROW |69034 |1843 |35766 |0 |2 |F63100|0 |2 |0 |
-ROW |69035 |1843 |35765 |0 |3 |A54F10|1 |2 |0 |
-ROW |69036 |1844 |35771 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69037 |1844 |35769 |0 |1 |2774A4|0 |2 |0 |
-ROW |69038 |1844 |35770 |0 |2 |F63100|0 |2 |0 |
-ROW |69039 |1708 |35651 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69040 |1708 |35649 |0 |1 |2774A4|0 |2 |0 |
-ROW |69041 |1708 |35647 |0 |2 |F63100|0 |2 |0 |
-ROW |69042 |1708 |35653 |0 |3 |A54F10|0 |2 |0 |
-ROW |69043 |1708 |35652 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69044 |1708 |35650 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69045 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69046 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69047 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69048 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
-ROW |69049 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69050 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69051 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69052 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69053 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69054 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69055 |1476 |33419 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69056 |1476 |33422 |2 |1 |2774A4|0 |2 |0 |
-ROW |69057 |1476 |33421 |0 |2 |F63100|1 |2 |0 |
-ROW |69058 |1476 |33418 |0 |3 |A54F10|1 |2 |0 |
-ROW |69059 |1476 |33420 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |69060 |1476 |33417 |0 |5 |6C59DC|1 |2 |0 |
-ROW |69061 |1477 |33427 |0 |0 |969696|0 |9 |2 |
-ROW |69062 |1477 |33428 |0 |1 |C80000|0 |9 |0 |
-ROW |69063 |1478 |33431 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69064 |1479 |33407 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69065 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69066 |1299 |31968 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69067 |1299 |31966 |0 |1 |2774A4|0 |2 |0 |
-ROW |69068 |1299 |31965 |0 |2 |F63100|0 |2 |0 |
-ROW |69069 |1299 |31967 |0 |3 |A54F10|0 |2 |0 |
-ROW |69070 |1052 |27907 |0 |0 |969696|0 |9 |2 |
-ROW |69071 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
-ROW |69072 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69073 |1335 |32330 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69074 |1335 |32317 |5 |1 |2774A4|0 |2 |0 |
-ROW |69075 |1336 |32319 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69076 |1336 |32327 |5 |1 |2774A4|0 |2 |0 |
-ROW |69077 |1336 |32326 |5 |2 |F63100|0 |2 |0 |
-ROW |69078 |1337 |32324 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69079 |1337 |32318 |5 |1 |2774A4|0 |2 |0 |
-ROW |69080 |1338 |32311 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69081 |1338 |32310 |5 |1 |2774A4|0 |2 |0 |
-ROW |69082 |1338 |32328 |5 |2 |F63100|0 |2 |0 |
-ROW |69083 |1339 |32350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69084 |1339 |32339 |5 |1 |2774A4|0 |2 |0 |
-ROW |69085 |1340 |32331 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69086 |1341 |32347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69087 |1341 |32342 |5 |1 |2774A4|0 |2 |0 |
-ROW |69088 |1342 |32334 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69089 |1342 |32333 |5 |1 |2774A4|0 |2 |0 |
-ROW |69090 |1342 |32348 |5 |2 |F63100|0 |2 |0 |
-ROW |69091 |1343 |32373 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69092 |1343 |32360 |5 |1 |2774A4|0 |2 |0 |
-ROW |69093 |1344 |32362 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69094 |1344 |32370 |5 |1 |2774A4|0 |2 |0 |
-ROW |69095 |1344 |32369 |5 |2 |F63100|0 |2 |0 |
-ROW |69096 |1345 |32367 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69097 |1345 |32361 |5 |1 |2774A4|0 |2 |0 |
-ROW |69098 |1346 |32354 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69099 |1346 |32353 |5 |1 |2774A4|0 |2 |0 |
-ROW |69100 |1346 |32371 |5 |2 |F63100|0 |2 |0 |
-ROW |69101 |1347 |32382 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69102 |1348 |32375 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69103 |1349 |32380 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69104 |1350 |32401 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69105 |1351 |32398 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69106 |1351 |32397 |5 |1 |2774A4|0 |2 |0 |
-ROW |69107 |1351 |32396 |5 |2 |F63100|0 |2 |0 |
-ROW |69108 |1352 |32394 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69109 |1353 |32393 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69110 |1354 |32385 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69111 |1354 |32399 |5 |1 |2774A4|0 |2 |0 |
-ROW |69112 |1355 |32420 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69113 |1356 |32417 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69114 |1356 |32416 |5 |1 |2774A4|0 |2 |0 |
-ROW |69115 |1356 |32415 |5 |2 |F63100|0 |2 |0 |
-ROW |69116 |1357 |32413 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69117 |1358 |32412 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69118 |1359 |32404 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69119 |1359 |32418 |5 |1 |2774A4|0 |2 |0 |
-ROW |69120 |1360 |32436 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69121 |1361 |32439 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69122 |1362 |32440 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69123 |1363 |32442 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69124 |1364 |32443 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69125 |1365 |32428 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69126 |1365 |32429 |5 |1 |2774A4|0 |2 |0 |
-ROW |69127 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69128 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69129 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
-ROW |69130 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69131 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69132 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69133 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69134 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69135 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69136 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69137 |1735 |35972 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69138 |1735 |35975 |0 |1 |2774A4|0 |2 |0 |
-ROW |69139 |1736 |35977 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69140 |1736 |35980 |0 |1 |2774A4|0 |2 |0 |
-ROW |69141 |1737 |35981 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69142 |1738 |35982 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69143 |1739 |36011 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69144 |1739 |36003 |0 |1 |2774A4|0 |2 |0 |
-ROW |69145 |1739 |36013 |0 |2 |F63100|0 |2 |0 |
-ROW |69146 |1739 |36005 |0 |3 |A54F10|0 |2 |0 |
-ROW |69147 |1739 |36014 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69148 |1739 |36006 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69149 |1740 |36012 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69150 |1740 |36004 |0 |1 |2774A4|0 |2 |0 |
-ROW |69151 |1741 |36002 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69152 |1741 |36010 |0 |1 |2774A4|0 |2 |0 |
-ROW |69153 |1742 |36017 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69154 |1743 |36025 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69155 |1744 |36026 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69156 |1745 |35985 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69157 |1746 |36041 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69158 |1747 |36053 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69159 |1747 |36045 |0 |1 |2774A4|0 |2 |0 |
-ROW |69160 |1747 |36055 |0 |2 |F63100|0 |2 |0 |
-ROW |69161 |1747 |36047 |0 |3 |A54F10|0 |2 |0 |
-ROW |69162 |1747 |36056 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69163 |1747 |36048 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69164 |1748 |36054 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69165 |1748 |36046 |0 |1 |2774A4|0 |2 |0 |
-ROW |69166 |1749 |36044 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69167 |1749 |36052 |0 |1 |2774A4|0 |2 |0 |
-ROW |69168 |1750 |36059 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69169 |1751 |36060 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69170 |1752 |36029 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69171 |1753 |36077 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69172 |1754 |36078 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69173 |1755 |36079 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69174 |1756 |36080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69175 |1757 |36088 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69176 |1757 |36098 |0 |1 |2774A4|0 |2 |0 |
-ROW |69177 |1757 |36089 |0 |2 |F63100|0 |2 |0 |
-ROW |69178 |1757 |36084 |0 |3 |A54F10|0 |2 |0 |
-ROW |69179 |1757 |36091 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69180 |1757 |36085 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69181 |1758 |36082 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69182 |1758 |36083 |0 |1 |2774A4|0 |2 |0 |
-ROW |69183 |1759 |36105 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69184 |1759 |36112 |0 |1 |2774A4|0 |2 |0 |
-ROW |69185 |1759 |36103 |0 |2 |F63100|0 |2 |0 |
-ROW |69186 |1759 |36110 |0 |3 |A54F10|0 |2 |0 |
-ROW |69187 |1759 |36102 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69188 |1759 |36109 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69189 |1760 |36104 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69190 |1760 |36111 |0 |1 |2774A4|0 |2 |0 |
-ROW |69191 |1761 |36113 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69192 |1761 |36106 |0 |1 |2774A4|0 |2 |0 |
-ROW |69193 |1762 |36126 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69194 |1763 |36127 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69195 |1764 |36144 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69196 |1765 |36145 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69197 |1766 |36146 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69198 |1767 |36147 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69199 |1768 |36155 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69200 |1768 |36165 |0 |1 |2774A4|0 |2 |0 |
-ROW |69201 |1768 |36156 |0 |2 |F63100|0 |2 |0 |
-ROW |69202 |1768 |36151 |0 |3 |A54F10|0 |2 |0 |
-ROW |69203 |1768 |36158 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69204 |1768 |36152 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69205 |1769 |36149 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69206 |1769 |36150 |0 |1 |2774A4|0 |2 |0 |
-ROW |69207 |1770 |36172 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69208 |1770 |36179 |0 |1 |2774A4|0 |2 |0 |
-ROW |69209 |1770 |36170 |0 |2 |F63100|0 |2 |0 |
-ROW |69210 |1770 |36177 |0 |3 |A54F10|0 |2 |0 |
-ROW |69211 |1770 |36169 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69212 |1770 |36176 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69213 |1771 |36171 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69214 |1771 |36178 |0 |1 |2774A4|0 |2 |0 |
-ROW |69215 |1772 |36180 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69216 |1772 |36173 |0 |1 |2774A4|0 |2 |0 |
-ROW |69217 |1773 |36193 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69218 |1774 |36194 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69219 |1775 |36210 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69220 |1776 |36218 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69221 |1776 |36221 |0 |1 |2774A4|0 |2 |0 |
-ROW |69222 |1777 |36223 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69223 |1777 |36226 |0 |1 |2774A4|0 |2 |0 |
-ROW |69224 |1778 |36227 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69225 |1779 |36228 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69226 |1780 |36253 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69227 |1780 |36245 |0 |1 |2774A4|0 |2 |0 |
-ROW |69228 |1780 |36255 |0 |2 |F63100|0 |2 |0 |
-ROW |69229 |1780 |36247 |0 |3 |A54F10|0 |2 |0 |
-ROW |69230 |1780 |36256 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69231 |1780 |36248 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69232 |1781 |36254 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69233 |1781 |36246 |0 |1 |2774A4|0 |2 |0 |
-ROW |69234 |1782 |36244 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69235 |1782 |36252 |0 |1 |2774A4|0 |2 |0 |
-ROW |69236 |1783 |36259 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69237 |1784 |36231 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69238 |1785 |36295 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69239 |1785 |36287 |0 |1 |2774A4|0 |2 |0 |
-ROW |69240 |1785 |36297 |0 |2 |F63100|0 |2 |0 |
-ROW |69241 |1785 |36289 |0 |3 |A54F10|0 |2 |0 |
-ROW |69242 |1785 |36298 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69243 |1785 |36290 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69244 |1786 |36296 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69245 |1786 |36288 |0 |1 |2774A4|0 |2 |0 |
-ROW |69246 |1787 |36286 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69247 |1787 |36294 |0 |1 |2774A4|0 |2 |0 |
-ROW |69248 |1788 |36301 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69249 |1789 |36309 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69250 |1790 |36310 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69251 |1791 |36269 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69252 |1792 |36339 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69253 |1792 |36331 |0 |1 |2774A4|0 |2 |0 |
-ROW |69254 |1792 |36341 |0 |2 |F63100|0 |2 |0 |
-ROW |69255 |1792 |36333 |0 |3 |A54F10|0 |2 |0 |
-ROW |69256 |1792 |36342 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69257 |1792 |36334 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69258 |1793 |36340 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69259 |1793 |36332 |0 |1 |2774A4|0 |2 |0 |
-ROW |69260 |1794 |36330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69261 |1794 |36338 |0 |1 |2774A4|0 |2 |0 |
-ROW |69262 |1795 |36345 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69263 |1796 |36353 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69264 |1797 |36354 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69265 |1798 |36313 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69266 |1799 |36371 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69267 |1800 |36383 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69268 |1800 |36375 |0 |1 |2774A4|0 |2 |0 |
-ROW |69269 |1800 |36385 |0 |2 |F63100|0 |2 |0 |
-ROW |69270 |1800 |36377 |0 |3 |A54F10|0 |2 |0 |
-ROW |69271 |1800 |36386 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69272 |1800 |36378 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69273 |1801 |36384 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69274 |1801 |36376 |0 |1 |2774A4|0 |2 |0 |
-ROW |69275 |1802 |36374 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69276 |1802 |36382 |0 |1 |2774A4|0 |2 |0 |
-ROW |69277 |1803 |36389 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69278 |1804 |36397 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69279 |1805 |36398 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69280 |1806 |36357 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69281 |1807 |36415 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69282 |1808 |36427 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69283 |1808 |36419 |0 |1 |2774A4|0 |2 |0 |
-ROW |69284 |1808 |36429 |0 |2 |F63100|0 |2 |0 |
-ROW |69285 |1808 |36421 |0 |3 |A54F10|0 |2 |0 |
-ROW |69286 |1808 |36430 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69287 |1808 |36422 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69288 |1809 |36428 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69289 |1809 |36420 |0 |1 |2774A4|0 |2 |0 |
-ROW |69290 |1810 |36418 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69291 |1810 |36426 |0 |1 |2774A4|0 |2 |0 |
-ROW |69292 |1811 |36433 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69293 |1812 |36441 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69294 |1813 |36442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69295 |1814 |36401 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69296 |1815 |36460 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69297 |1816 |36472 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69298 |1816 |36464 |0 |1 |2774A4|0 |2 |0 |
-ROW |69299 |1816 |36474 |0 |2 |F63100|0 |2 |0 |
-ROW |69300 |1816 |36466 |0 |3 |A54F10|0 |2 |0 |
-ROW |69301 |1816 |36475 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69302 |1816 |36467 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69303 |1817 |36473 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69304 |1817 |36465 |0 |1 |2774A4|0 |2 |0 |
-ROW |69305 |1818 |36463 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69306 |1818 |36471 |0 |1 |2774A4|0 |2 |0 |
-ROW |69307 |1819 |36478 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69308 |1820 |36486 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69309 |1821 |36487 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69310 |1822 |36445 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69311 |1823 |36505 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69312 |1824 |36517 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69313 |1824 |36509 |0 |1 |2774A4|0 |2 |0 |
-ROW |69314 |1824 |36519 |0 |2 |F63100|0 |2 |0 |
-ROW |69315 |1824 |36511 |0 |3 |A54F10|0 |2 |0 |
-ROW |69316 |1824 |36520 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69317 |1824 |36512 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69318 |1825 |36518 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69319 |1825 |36510 |0 |1 |2774A4|0 |2 |0 |
-ROW |69320 |1826 |36508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69321 |1826 |36516 |0 |1 |2774A4|0 |2 |0 |
-ROW |69322 |1827 |36523 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69323 |1828 |36531 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69324 |1829 |36532 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69325 |1830 |36490 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69326 |1831 |36550 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69327 |1832 |36563 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69328 |1832 |36555 |0 |1 |2774A4|0 |2 |0 |
-ROW |69329 |1832 |36565 |0 |2 |F63100|0 |2 |0 |
-ROW |69330 |1832 |36557 |0 |3 |A54F10|0 |2 |0 |
-ROW |69331 |1832 |36566 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69332 |1832 |36558 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69333 |1833 |36564 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69334 |1833 |36556 |0 |1 |2774A4|0 |2 |0 |
-ROW |69335 |1834 |36554 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69336 |1834 |36562 |0 |1 |2774A4|0 |2 |0 |
-ROW |69337 |1835 |36569 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69338 |1836 |36577 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69339 |1837 |36578 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69340 |1838 |36535 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69341 |1214 |31276 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69342 |1214 |31277 |5 |1 |2774A4|0 |2 |0 |
-ROW |69343 |1215 |31279 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69344 |1215 |31280 |5 |1 |2774A4|0 |2 |0 |
-ROW |69345 |1216 |31282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69346 |1216 |31283 |5 |1 |2774A4|0 |2 |0 |
-ROW |69347 |1217 |31286 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69348 |1217 |31289 |5 |1 |2774A4|0 |2 |0 |
-ROW |69349 |1218 |31292 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69350 |1218 |31295 |5 |1 |2774A4|0 |2 |0 |
-ROW |69351 |1219 |31298 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69352 |1219 |31301 |5 |1 |2774A4|0 |2 |0 |
-ROW |69353 |1220 |31285 |0 |0 |1A7C11|1 |2 |0 |
-ROW |69354 |1220 |31288 |5 |1 |2774A4|0 |2 |0 |
-ROW |69355 |1221 |31291 |0 |0 |1A7C11|1 |2 |0 |
-ROW |69356 |1221 |31294 |5 |1 |2774A4|0 |2 |0 |
-ROW |69357 |1222 |31297 |0 |0 |1A7C11|1 |2 |0 |
-ROW |69358 |1222 |31300 |5 |1 |2774A4|0 |2 |0 |
-ROW |69359 |887 |29211 |0 |0 |969696|0 |9 |2 |
-ROW |69360 |887 |29210 |0 |1 |C80000|0 |9 |0 |
-ROW |69361 |888 |29225 |0 |0 |969696|0 |9 |2 |
-ROW |69362 |888 |29224 |0 |1 |C80000|0 |9 |0 |
-ROW |69363 |889 |29239 |0 |0 |969696|0 |9 |2 |
-ROW |69364 |889 |29238 |0 |1 |C80000|0 |9 |0 |
-ROW |69365 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69366 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
-ROW |69367 |899 |29218 |0 |2 |F63100|1 |2 |0 |
-ROW |69368 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
-ROW |69369 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |69370 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
-ROW |69371 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69372 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
-ROW |69373 |900 |29232 |0 |2 |F63100|1 |2 |0 |
-ROW |69374 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
-ROW |69375 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |69376 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
-ROW |69377 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69378 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
-ROW |69379 |901 |29246 |0 |2 |F63100|1 |2 |0 |
-ROW |69380 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
-ROW |69381 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |69382 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
-ROW |69383 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69384 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
-ROW |69385 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69386 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
-ROW |69387 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69388 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
-ROW |69389 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69390 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
-ROW |69391 |908 |29095 |0 |2 |F63100|0 |2 |0 |
-ROW |69392 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
-ROW |69393 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69394 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69395 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
-ROW |69396 |908 |29091 |0 |7 |611F27|0 |2 |0 |
-ROW |69397 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
-ROW |69398 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69399 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
-ROW |69400 |909 |29132 |0 |2 |F63100|0 |2 |0 |
-ROW |69401 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
-ROW |69402 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69403 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69404 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
-ROW |69405 |909 |29128 |0 |7 |611F27|0 |2 |0 |
-ROW |69406 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
-ROW |69407 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69408 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
-ROW |69409 |910 |29169 |0 |2 |F63100|0 |2 |0 |
-ROW |69410 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
-ROW |69411 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69412 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69413 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
-ROW |69414 |910 |29165 |0 |7 |611F27|0 |2 |0 |
-ROW |69415 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
-ROW |69416 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69417 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69418 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69419 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69420 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
-ROW |69421 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69422 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
-ROW |69423 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69424 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
-ROW |69425 |914 |31270 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69426 |915 |31271 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69427 |916 |31272 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69428 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69429 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
-ROW |69430 |923 |29117 |0 |2 |F63100|0 |2 |0 |
-ROW |69431 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69432 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
-ROW |69433 |924 |29154 |0 |2 |F63100|0 |2 |0 |
-ROW |69434 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69435 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
-ROW |69436 |925 |29191 |0 |2 |F63100|0 |2 |0 |
-ROW |69437 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69438 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
-ROW |69439 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69440 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
-ROW |69441 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69442 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
-ROW |69443 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69444 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
-ROW |69445 |902 |29100 |0 |2 |F63100|0 |2 |0 |
-ROW |69446 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
-ROW |69447 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69448 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
-ROW |69449 |903 |29137 |0 |2 |F63100|0 |2 |0 |
-ROW |69450 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
-ROW |69451 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69452 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
-ROW |69453 |904 |29174 |0 |2 |F63100|0 |2 |0 |
-ROW |69454 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
-ROW |69455 |1223 |31307 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69456 |1223 |31308 |5 |1 |2774A4|0 |2 |0 |
-ROW |69457 |1224 |31310 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69458 |1224 |31311 |5 |1 |2774A4|0 |2 |0 |
-ROW |69459 |1225 |31314 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69460 |1225 |31317 |5 |1 |2774A4|0 |2 |0 |
-ROW |69461 |1226 |31320 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69462 |1226 |31323 |5 |1 |2774A4|0 |2 |0 |
-ROW |69463 |1227 |31313 |0 |0 |1A7C11|1 |2 |0 |
-ROW |69464 |1227 |31316 |5 |1 |2774A4|0 |2 |0 |
-ROW |69465 |1228 |31319 |0 |0 |1A7C11|1 |2 |0 |
-ROW |69466 |1228 |31322 |5 |1 |2774A4|0 |2 |0 |
-ROW |69467 |926 |29356 |0 |0 |969696|0 |9 |2 |
-ROW |69468 |926 |29355 |0 |1 |C80000|0 |9 |0 |
-ROW |69469 |927 |29370 |0 |0 |969696|0 |9 |2 |
-ROW |69470 |927 |29369 |0 |1 |C80000|0 |9 |0 |
-ROW |69471 |934 |29361 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69472 |934 |29362 |2 |1 |2774A4|0 |2 |0 |
-ROW |69473 |934 |29363 |0 |2 |F63100|1 |2 |0 |
-ROW |69474 |934 |29364 |0 |3 |A54F10|1 |2 |0 |
-ROW |69475 |934 |29365 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |69476 |934 |29366 |0 |5 |6C59DC|1 |2 |0 |
-ROW |69477 |935 |29375 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69478 |935 |29376 |2 |1 |2774A4|0 |2 |0 |
-ROW |69479 |935 |29377 |0 |2 |F63100|1 |2 |0 |
-ROW |69480 |935 |29378 |0 |3 |A54F10|1 |2 |0 |
-ROW |69481 |935 |29379 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |69482 |935 |29380 |0 |5 |6C59DC|1 |2 |0 |
-ROW |69483 |942 |29275 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69484 |942 |29288 |0 |1 |2774A4|0 |2 |0 |
-ROW |69485 |943 |29312 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69486 |943 |29325 |0 |1 |2774A4|0 |2 |0 |
-ROW |69487 |940 |29284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69488 |940 |29283 |0 |1 |2774A4|0 |2 |0 |
-ROW |69489 |940 |29281 |0 |2 |F63100|0 |2 |0 |
-ROW |69490 |940 |29274 |0 |3 |A54F10|0 |2 |0 |
-ROW |69491 |940 |29280 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69492 |940 |29279 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69493 |940 |29278 |0 |6 |AC8C14|0 |2 |0 |
-ROW |69494 |940 |29277 |0 |7 |611F27|0 |2 |0 |
-ROW |69495 |940 |29276 |0 |8 |F230E0|0 |2 |0 |
-ROW |69496 |941 |29321 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69497 |941 |29320 |0 |1 |2774A4|0 |2 |0 |
-ROW |69498 |941 |29318 |0 |2 |F63100|0 |2 |0 |
-ROW |69499 |941 |29311 |0 |3 |A54F10|0 |2 |0 |
-ROW |69500 |941 |29317 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69501 |941 |29316 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69502 |941 |29315 |0 |6 |AC8C14|0 |2 |0 |
-ROW |69503 |941 |29314 |0 |7 |611F27|0 |2 |0 |
-ROW |69504 |941 |29313 |0 |8 |F230E0|0 |2 |0 |
-ROW |69505 |938 |29347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69506 |939 |29348 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69507 |946 |29290 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69508 |946 |29291 |5 |1 |2774A4|0 |2 |0 |
-ROW |69509 |947 |29327 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69510 |947 |29328 |5 |1 |2774A4|0 |2 |0 |
-ROW |69511 |944 |31303 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69512 |945 |31304 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69513 |950 |29304 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69514 |950 |29305 |0 |1 |2774A4|0 |2 |0 |
-ROW |69515 |950 |29303 |0 |2 |F63100|0 |2 |0 |
-ROW |69516 |951 |29341 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69517 |951 |29342 |0 |1 |2774A4|0 |2 |0 |
-ROW |69518 |951 |29340 |0 |2 |F63100|0 |2 |0 |
-ROW |69519 |948 |29293 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69520 |948 |29292 |0 |1 |2774A4|0 |2 |0 |
-ROW |69521 |949 |29330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69522 |949 |29329 |0 |1 |2774A4|0 |2 |0 |
-ROW |69523 |936 |29282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69524 |936 |29287 |0 |1 |2774A4|0 |2 |0 |
-ROW |69525 |936 |29286 |0 |2 |F63100|0 |2 |0 |
-ROW |69526 |936 |29273 |0 |3 |A54F10|1 |2 |0 |
-ROW |69527 |937 |29319 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69528 |937 |29324 |0 |1 |2774A4|0 |2 |0 |
-ROW |69529 |937 |29323 |0 |2 |F63100|0 |2 |0 |
-ROW |69530 |937 |29310 |0 |3 |A54F10|1 |2 |0 |
-ROW |69531 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69532 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
-ROW |69533 |952 |29438 |0 |2 |F63100|1 |2 |0 |
-ROW |69534 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
-ROW |69535 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |69536 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
-ROW |69537 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69538 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
-ROW |69539 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69540 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
-ROW |69541 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
-ROW |69542 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
-ROW |69543 |953 |29446 |0 |0 |969696|0 |9 |2 |
-ROW |69544 |953 |29432 |0 |1 |C80000|0 |9 |0 |
-ROW |69545 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69546 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
-ROW |69547 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69548 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
-ROW |69549 |959 |29411 |0 |2 |F63100|0 |2 |0 |
-ROW |69550 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
-ROW |69551 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69552 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69553 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
-ROW |69554 |959 |29408 |0 |7 |611F27|0 |2 |0 |
-ROW |69555 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
-ROW |69556 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69557 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69558 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
-ROW |69559 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69560 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69561 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
-ROW |69562 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69563 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
-ROW |69564 |957 |29418 |0 |2 |F63100|0 |2 |0 |
-ROW |69565 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
-ROW |69566 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69567 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
-ROW |69568 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69569 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
-ROW |69570 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69571 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
-ROW |69572 |868 |29022 |0 |2 |F63100|0 |2 |0 |
-ROW |69573 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
-ROW |69574 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69575 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69576 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
-ROW |69577 |868 |29025 |0 |7 |611F27|0 |2 |0 |
-ROW |69578 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
-ROW |69579 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69580 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
-ROW |69581 |869 |29039 |0 |2 |F63100|0 |2 |0 |
-ROW |69582 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
-ROW |69583 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |69584 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
-ROW |69585 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
-ROW |69586 |869 |29042 |0 |7 |611F27|0 |2 |0 |
-ROW |69587 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
-ROW |69588 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69589 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69590 |872 |29028 |0 |0 |969696|0 |9 |2 |
-ROW |69591 |872 |29027 |0 |1 |C80000|0 |9 |0 |
-ROW |69592 |873 |29045 |0 |0 |969696|0 |9 |2 |
-ROW |69593 |873 |29044 |0 |1 |C80000|0 |9 |0 |
-ROW |69594 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69595 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
-ROW |69596 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69597 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
-ROW |69598 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69599 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
-ROW |69600 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
-ROW |69601 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
-ROW |69602 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69603 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69604 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69605 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
-ROW |69606 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69607 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
-ROW |69608 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69609 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
-ROW |69610 |880 |28989 |0 |2 |F63100|0 |2 |0 |
-ROW |69611 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
-ROW |69612 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69613 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
-ROW |69614 |881 |29004 |0 |2 |F63100|0 |2 |0 |
-ROW |69615 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
-ROW |69616 |964 |29513 |0 |0 |969696|0 |9 |2 |
-ROW |69617 |964 |29512 |0 |1 |C80000|0 |9 |0 |
-ROW |69618 |965 |29522 |0 |0 |969696|0 |9 |2 |
-ROW |69619 |965 |29521 |0 |1 |C80000|0 |9 |0 |
-ROW |69620 |1839 |36585 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69621 |1839 |36588 |2 |1 |2774A4|0 |2 |0 |
-ROW |69622 |1839 |36587 |0 |2 |F63100|1 |2 |0 |
-ROW |69623 |1839 |36584 |0 |3 |A54F10|1 |2 |0 |
-ROW |69624 |1839 |36586 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |69625 |1839 |36583 |0 |5 |6C59DC|1 |2 |0 |
-ROW |69626 |1840 |36591 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69627 |1840 |36594 |2 |1 |2774A4|0 |2 |0 |
-ROW |69628 |1840 |36593 |0 |2 |F63100|1 |2 |0 |
-ROW |69629 |1840 |36590 |0 |3 |A54F10|1 |2 |0 |
-ROW |69630 |1840 |36592 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |69631 |1840 |36589 |0 |5 |6C59DC|1 |2 |0 |
-ROW |69632 |1366 |32445 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69633 |1366 |32448 |0 |1 |2774A4|0 |2 |0 |
-ROW |69634 |1367 |32449 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69635 |1367 |32452 |0 |1 |2774A4|0 |2 |0 |
-ROW |69636 |1368 |32446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69637 |1368 |32447 |5 |1 |2774A4|0 |2 |0 |
-ROW |69638 |1369 |32450 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69639 |1369 |32451 |5 |1 |2774A4|0 |2 |0 |
-ROW |69640 |1229 |31337 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69641 |1229 |31338 |5 |1 |2774A4|0 |2 |0 |
-ROW |69642 |1230 |31341 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69643 |1230 |31342 |5 |1 |2774A4|0 |2 |0 |
-ROW |69644 |1231 |31336 |0 |0 |1A7C11|1 |2 |0 |
-ROW |69645 |1231 |31335 |5 |1 |2774A4|0 |2 |0 |
-ROW |69646 |1232 |31340 |0 |0 |1A7C11|1 |2 |0 |
-ROW |69647 |1232 |31339 |5 |1 |2774A4|0 |2 |0 |
-ROW |69648 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69649 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
-ROW |69650 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69651 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
-ROW |69652 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69653 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
-ROW |69654 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69655 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
-ROW |69656 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69657 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69658 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69659 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69660 |980 |31327 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69661 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
-ROW |69662 |981 |31330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69663 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
-ROW |69664 |982 |29620 |0 |0 |969696|0 |9 |2 |
-ROW |69665 |982 |29619 |0 |1 |C80000|0 |9 |0 |
-ROW |69666 |983 |29629 |0 |0 |969696|0 |9 |2 |
-ROW |69667 |983 |29628 |0 |1 |C80000|0 |9 |0 |
-ROW |69668 |1841 |36607 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69669 |1841 |36610 |2 |1 |2774A4|0 |2 |0 |
-ROW |69670 |1841 |36609 |0 |2 |F63100|1 |2 |0 |
-ROW |69671 |1841 |36606 |0 |3 |A54F10|1 |2 |0 |
-ROW |69672 |1841 |36608 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |69673 |1841 |36605 |0 |5 |6C59DC|1 |2 |0 |
-ROW |69674 |1842 |36613 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69675 |1842 |36616 |2 |1 |2774A4|0 |2 |0 |
-ROW |69676 |1842 |36615 |0 |2 |F63100|1 |2 |0 |
-ROW |69677 |1842 |36612 |0 |3 |A54F10|1 |2 |0 |
-ROW |69678 |1842 |36614 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |69679 |1842 |36611 |0 |5 |6C59DC|1 |2 |0 |
-ROW |69680 |1370 |32453 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69681 |1370 |32456 |0 |1 |2774A4|0 |2 |0 |
-ROW |69682 |1371 |32457 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69683 |1371 |32460 |0 |1 |2774A4|0 |2 |0 |
-ROW |69684 |1372 |32454 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69685 |1372 |32455 |5 |1 |2774A4|0 |2 |0 |
-ROW |69686 |1373 |32458 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69687 |1373 |32459 |5 |1 |2774A4|0 |2 |0 |
-ROW |69688 |1233 |31355 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69689 |1233 |31356 |5 |1 |2774A4|0 |2 |0 |
-ROW |69690 |1234 |31359 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69691 |1234 |31360 |5 |1 |2774A4|0 |2 |0 |
-ROW |69692 |1235 |31354 |0 |0 |1A7C11|1 |2 |0 |
-ROW |69693 |1235 |31353 |5 |1 |2774A4|0 |2 |0 |
-ROW |69694 |1236 |31358 |0 |0 |1A7C11|1 |2 |0 |
-ROW |69695 |1236 |31357 |5 |1 |2774A4|0 |2 |0 |
-ROW |69696 |992 |29563 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69697 |992 |29562 |0 |1 |2774A4|0 |2 |0 |
-ROW |69698 |993 |29589 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69699 |993 |29588 |0 |1 |2774A4|0 |2 |0 |
-ROW |69700 |994 |29565 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69701 |994 |29564 |0 |1 |2774A4|0 |2 |0 |
-ROW |69702 |995 |29591 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69703 |995 |29590 |0 |1 |2774A4|0 |2 |0 |
-ROW |69704 |990 |29561 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69705 |991 |29587 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69706 |996 |29569 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69707 |997 |29595 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69708 |998 |31345 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69709 |998 |29573 |0 |1 |2774A4|0 |2 |0 |
-ROW |69710 |999 |31348 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69711 |999 |29599 |0 |1 |2774A4|0 |2 |0 |
-ROW |69712 |1489 |33568 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69713 |1490 |33581 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69714 |1490 |33569 |0 |1 |2774A4|0 |2 |0 |
-ROW |69715 |1491 |33583 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69716 |1491 |33579 |0 |1 |2774A4|0 |2 |0 |
-ROW |69717 |1492 |33619 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69718 |1493 |33632 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69719 |1493 |33620 |0 |1 |2774A4|0 |2 |0 |
-ROW |69720 |1494 |33634 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69721 |1494 |33630 |0 |1 |2774A4|0 |2 |0 |
-ROW |69722 |1495 |33670 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69723 |1496 |33683 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69724 |1496 |33671 |0 |1 |2774A4|0 |2 |0 |
-ROW |69725 |1497 |33685 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69726 |1497 |33681 |0 |1 |2774A4|0 |2 |0 |
-ROW |69727 |1498 |33721 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69728 |1499 |33734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69729 |1499 |33722 |0 |1 |2774A4|0 |2 |0 |
-ROW |69730 |1500 |33736 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69731 |1500 |33732 |0 |1 |2774A4|0 |2 |0 |
-ROW |69732 |1501 |33772 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69733 |1502 |33785 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69734 |1502 |33773 |0 |1 |2774A4|0 |2 |0 |
-ROW |69735 |1503 |33787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69736 |1503 |33783 |0 |1 |2774A4|0 |2 |0 |
-ROW |69737 |1504 |33823 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69738 |1505 |33836 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69739 |1505 |33824 |0 |1 |2774A4|0 |2 |0 |
-ROW |69740 |1506 |33838 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69741 |1506 |33834 |0 |1 |2774A4|0 |2 |0 |
-ROW |69742 |1507 |33874 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69743 |1508 |33887 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69744 |1508 |33875 |0 |1 |2774A4|0 |2 |0 |
-ROW |69745 |1509 |33889 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69746 |1509 |33885 |0 |1 |2774A4|0 |2 |0 |
-ROW |69747 |1510 |33925 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69748 |1481 |33445 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69749 |1481 |33433 |0 |1 |2774A4|0 |2 |0 |
-ROW |69750 |1482 |33447 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69751 |1482 |33443 |0 |1 |2774A4|0 |2 |0 |
-ROW |69752 |1511 |33930 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69753 |1512 |33943 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69754 |1512 |33931 |0 |1 |2774A4|0 |2 |0 |
-ROW |69755 |1513 |33945 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69756 |1513 |33941 |0 |1 |2774A4|0 |2 |0 |
-ROW |69757 |1514 |33981 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69758 |1515 |33994 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69759 |1515 |33982 |0 |1 |2774A4|0 |2 |0 |
-ROW |69760 |1516 |33996 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69761 |1516 |33992 |0 |1 |2774A4|0 |2 |0 |
-ROW |69762 |1517 |34032 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69763 |1518 |34045 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69764 |1518 |34033 |0 |1 |2774A4|0 |2 |0 |
-ROW |69765 |1519 |34047 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69766 |1519 |34043 |0 |1 |2774A4|0 |2 |0 |
-ROW |69767 |1403 |32790 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69768 |1404 |32809 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69769 |1404 |32807 |0 |1 |2774A4|0 |2 |0 |
-ROW |69770 |1404 |32811 |0 |2 |F63100|0 |2 |0 |
-ROW |69771 |1405 |32804 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69772 |1405 |32805 |0 |1 |2774A4|0 |2 |0 |
-ROW |69773 |1405 |32806 |0 |2 |F63100|0 |2 |0 |
-ROW |69774 |1406 |32810 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69775 |1406 |32808 |0 |1 |2774A4|0 |2 |0 |
-ROW |69776 |1406 |32812 |0 |2 |F63100|0 |2 |0 |
-ROW |69777 |1407 |32815 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69778 |1408 |32819 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69779 |1408 |32817 |0 |1 |2774A4|0 |2 |0 |
-ROW |69780 |1408 |32821 |0 |2 |F63100|0 |2 |0 |
-ROW |69781 |1409 |32820 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69782 |1409 |32818 |0 |1 |2774A4|0 |2 |0 |
-ROW |69783 |1409 |32822 |0 |2 |F63100|0 |2 |0 |
-ROW |69784 |1410 |32828 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69785 |1410 |32827 |0 |1 |2774A4|0 |2 |0 |
-ROW |69786 |1410 |32823 |0 |2 |F63100|0 |2 |0 |
-ROW |69787 |1411 |32777 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69788 |1411 |32778 |0 |1 |2774A4|0 |2 |0 |
-ROW |69789 |1483 |33525 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69790 |1483 |33524 |0 |1 |2774A4|0 |2 |0 |
-ROW |69791 |1483 |33523 |0 |2 |F63100|0 |2 |0 |
-ROW |69792 |1483 |33522 |0 |3 |A54F10|0 |2 |0 |
-ROW |69793 |1484 |33564 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69794 |1484 |33554 |0 |1 |2774A4|0 |2 |0 |
-ROW |69795 |1485 |33500 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69796 |1485 |33507 |0 |1 |2774A4|0 |2 |0 |
-ROW |69797 |1485 |33509 |0 |2 |F63100|0 |2 |0 |
-ROW |69798 |1485 |33508 |0 |3 |A54F10|0 |2 |0 |
-ROW |69799 |1486 |33480 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69800 |1486 |33491 |0 |1 |2774A4|0 |2 |0 |
-ROW |69801 |1486 |33488 |0 |2 |F63100|0 |2 |0 |
-ROW |69802 |1486 |33489 |0 |3 |A54F10|0 |2 |0 |
-ROW |69803 |1487 |33506 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69804 |1487 |33505 |0 |1 |2774A4|0 |2 |0 |
-ROW |69805 |1487 |33512 |0 |2 |F63100|0 |2 |0 |
-ROW |69806 |1487 |33504 |0 |3 |A54F10|0 |2 |0 |
-ROW |69807 |1387 |32632 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69808 |1388 |32635 |1 |0 |1A7C11|0 |2 |0 |
-ROW |69809 |1388 |32635 |1 |1 |2774A4|0 |2 |0 |
-ROW |69810 |1389 |32643 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69811 |1389 |32646 |2 |1 |2774A4|0 |2 |0 |
-ROW |69812 |1389 |32645 |0 |2 |F63100|1 |2 |0 |
-ROW |69813 |1389 |32642 |0 |3 |A54F10|1 |2 |0 |
-ROW |69814 |1389 |32644 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |69815 |1389 |32641 |0 |5 |6C59DC|1 |2 |0 |
-ROW |69816 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
-ROW |69817 |1676 |34973 |5 |0 |1A7C11|0 |2 |0 |
-ROW |69818 |1676 |34978 |2 |1 |2774A4|0 |2 |0 |
-ROW |69819 |1676 |34976 |0 |2 |F63100|1 |2 |0 |
-ROW |69820 |1676 |34971 |0 |3 |A54F10|1 |2 |0 |
-ROW |69821 |1676 |34975 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |69822 |1676 |34970 |0 |5 |6C59DC|1 |2 |0 |
+ROW |69823 |1374 |32471 |5 |0 |1A7C11|0 |2 |0 |
+ROW |69824 |1375 |32469 |5 |0 |1A7C11|0 |2 |0 |
+ROW |69825 |1375 |32468 |5 |1 |2774A4|0 |2 |0 |
+ROW |69826 |1376 |32472 |5 |0 |1A7C11|0 |2 |0 |
+ROW |69827 |1376 |32467 |5 |1 |2774A4|0 |2 |0 |
+ROW |69828 |1377 |32483 |5 |0 |1A7C11|0 |2 |0 |
+ROW |69829 |1377 |32482 |5 |1 |2774A4|0 |2 |0 |
+ROW |69830 |1378 |32484 |5 |0 |1A7C11|0 |2 |0 |
+ROW |69831 |1378 |32481 |5 |1 |2774A4|0 |2 |0 |
+ROW |69832 |1379 |32476 |5 |0 |1A7C11|0 |2 |0 |
+ROW |69833 |1379 |32478 |5 |1 |2774A4|0 |2 |0 |
+ROW |69834 |1379 |32480 |5 |2 |F63100|0 |2 |0 |
+ROW |69835 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69836 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
+ROW |69837 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
+ROW |69838 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
+ROW |69839 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
+ROW |69840 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69841 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
+ROW |69842 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
+ROW |69843 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69844 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
+ROW |69845 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
+ROW |69846 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
+ROW |69847 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |69848 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
+ROW |69849 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
+ROW |69850 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
+ROW |69851 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
+ROW |69852 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
+ROW |69853 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
+ROW |69854 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69855 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
+ROW |69856 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69857 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
+ROW |69858 |836 |28800 |0 |2 |F63100|0 |2 |0 |
+ROW |69859 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
+ROW |69860 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
+ROW |69861 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
+ROW |69862 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69863 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
+ROW |69864 |840 |28782 |0 |2 |F63100|0 |2 |0 |
+ROW |69865 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
+ROW |69866 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |69867 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
+ROW |69868 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
+ROW |69869 |840 |28785 |0 |7 |611F27|0 |2 |0 |
+ROW |69870 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
+ROW |69871 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
+ROW |69872 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
+ROW |69873 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69874 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
+ROW |69875 |1278 |31855 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69876 |1278 |31856 |0 |1 |2774A4|0 |2 |0 |
+ROW |69877 |1304 |32007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69878 |1304 |32010 |0 |1 |2774A4|0 |2 |0 |
+ROW |69879 |1305 |32008 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69880 |1305 |32011 |0 |1 |2774A4|0 |2 |0 |
+ROW |69881 |1306 |32003 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69882 |1306 |32004 |0 |1 |2774A4|0 |2 |0 |
+ROW |69883 |1306 |32009 |0 |2 |F63100|0 |2 |0 |
+ROW |69884 |1282 |31818 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69885 |1282 |31825 |0 |1 |2774A4|0 |2 |0 |
+ROW |69886 |1283 |31850 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69887 |1283 |31819 |0 |1 |2774A4|0 |2 |0 |
+ROW |69888 |1284 |31824 |1 |0 |1A7C11|0 |2 |0 |
+ROW |69889 |1284 |31821 |1 |1 |2774A4|0 |2 |0 |
+ROW |69890 |1285 |31839 |2 |0 |1A7C11|0 |2 |0 |
+ROW |69891 |1285 |31841 |0 |1 |2774A4|0 |2 |0 |
+ROW |69892 |1285 |31842 |0 |2 |F63100|0 |2 |0 |
+ROW |69893 |1285 |31837 |2 |3 |A54F10|0 |2 |0 |
+ROW |69894 |1285 |31838 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |69895 |1285 |31829 |0 |5 |6C59DC|0 |2 |0 |
+ROW |69896 |1286 |31833 |2 |0 |1A7C11|0 |2 |0 |
+ROW |69897 |1286 |31834 |0 |1 |2774A4|0 |2 |0 |
+ROW |69898 |1286 |31835 |0 |2 |F63100|0 |2 |0 |
+ROW |69899 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
+ROW |69900 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
+ROW |69901 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
+ROW |69902 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
+ROW |69903 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
+ROW |69904 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
+ROW |69905 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
+ROW |69906 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
+ROW |69907 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
+ROW |69908 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |69909 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
+ROW |69910 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
+ROW |69911 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
+ROW |69912 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
+ROW |69913 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
+ROW |69914 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
+ROW |69915 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
+ROW |69916 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
+ROW |69917 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
+ROW |69918 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
+ROW |69919 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
+ROW |69920 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
+ROW |69921 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
+ROW |69922 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
+ROW |69923 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
+ROW |69924 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69925 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
+ROW |69926 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
+ROW |69927 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
+ROW |69928 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69929 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
+ROW |69930 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69931 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
+ROW |69932 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
+ROW |69933 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
+ROW |69934 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69935 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
+ROW |69936 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
+ROW |69937 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
+ROW |69938 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69939 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
+ROW |69940 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
+ROW |69941 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
+ROW |69942 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69943 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
+ROW |69944 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
+ROW |69945 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
+ROW |69946 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |69947 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
+ROW |69948 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
+ROW |69949 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
+ROW |69950 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
+ROW |69951 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69952 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
+ROW |69953 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69954 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
+ROW |69955 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
+ROW |69956 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69957 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
+ROW |69958 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
+ROW |69959 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |69960 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
+ROW |69961 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69962 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
+ROW |69963 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
+ROW |69964 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
+ROW |69965 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69966 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
+ROW |69967 |1380 |32498 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69968 |1380 |32499 |0 |1 |2774A4|0 |2 |0 |
+ROW |69969 |1381 |32505 |0 |0 |1A7C11|1 |2 |0 |
+ROW |69970 |1381 |32508 |0 |1 |2774A4|1 |2 |0 |
+ROW |69971 |1381 |32506 |0 |2 |F63100|0 |2 |0 |
+ROW |69972 |1381 |32507 |0 |3 |A54F10|0 |2 |0 |
+ROW |69973 |1381 |32509 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |69974 |1381 |32510 |0 |5 |6C59DC|0 |2 |0 |
+ROW |69975 |1382 |32488 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69976 |1382 |32491 |0 |1 |2774A4|0 |2 |0 |
+ROW |69977 |1382 |32493 |0 |2 |F63100|0 |2 |0 |
+ROW |69978 |1382 |32494 |0 |3 |A54F10|0 |2 |0 |
+ROW |69979 |1383 |32528 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69980 |1383 |32529 |0 |1 |2774A4|0 |2 |0 |
+ROW |69981 |1384 |32535 |0 |0 |1A7C11|1 |2 |0 |
+ROW |69982 |1384 |32538 |0 |1 |2774A4|1 |2 |0 |
+ROW |69983 |1384 |32536 |0 |2 |F63100|0 |2 |0 |
+ROW |69984 |1384 |32537 |0 |3 |A54F10|0 |2 |0 |
+ROW |69985 |1384 |32539 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |69986 |1384 |32540 |0 |5 |6C59DC|0 |2 |0 |
+ROW |69987 |1385 |32518 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69988 |1385 |32521 |0 |1 |2774A4|0 |2 |0 |
+ROW |69989 |1385 |32523 |0 |2 |F63100|0 |2 |0 |
+ROW |69990 |1385 |32524 |0 |3 |A54F10|0 |2 |0 |
+ROW |69991 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69992 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
+ROW |69993 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
+ROW |69994 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
+ROW |69995 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
+ROW |69996 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
+ROW |69997 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
+ROW |69998 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |69999 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70000 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70001 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
+ROW |70002 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
+ROW |70003 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70004 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
+ROW |70005 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
+ROW |70006 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70007 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
+ROW |70008 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
+ROW |70009 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70010 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
+ROW |70011 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
+ROW |70012 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70013 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
+ROW |70014 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
+ROW |70015 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70016 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
+ROW |70017 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
+ROW |70018 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70019 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
+ROW |70020 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
+ROW |70021 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70022 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
+ROW |70023 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70024 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
+ROW |70025 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
+ROW |70026 |1307 |32051 |1 |0 |1A7C11|0 |2 |0 |
+ROW |70027 |1307 |32057 |1 |1 |2774A4|0 |2 |0 |
+ROW |70028 |1709 |35805 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70029 |1709 |35804 |5 |1 |2774A4|0 |2 |0 |
+ROW |70030 |1710 |35789 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70031 |1710 |35806 |0 |1 |2774A4|0 |2 |0 |
+ROW |70032 |1711 |35800 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70033 |1711 |35799 |0 |1 |2774A4|0 |2 |0 |
+ROW |70034 |1711 |35798 |0 |2 |F63100|0 |2 |0 |
+ROW |70035 |1711 |35796 |0 |3 |A54F10|0 |2 |0 |
+ROW |70036 |1711 |35788 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70037 |1712 |35810 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70038 |1712 |35809 |0 |1 |2774A4|0 |2 |0 |
+ROW |70039 |1713 |35807 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70040 |1713 |35808 |5 |1 |2774A4|0 |2 |0 |
+ROW |70041 |1714 |35817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70042 |1714 |35816 |0 |1 |2774A4|0 |2 |0 |
+ROW |70043 |1715 |35811 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70044 |1715 |35812 |0 |1 |2774A4|0 |2 |0 |
+ROW |70045 |1715 |35813 |0 |2 |F63100|0 |2 |0 |
+ROW |70046 |1715 |35814 |0 |3 |A54F10|0 |2 |0 |
+ROW |70047 |1715 |35815 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70048 |1716 |35842 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70049 |1716 |35841 |5 |1 |2774A4|0 |2 |0 |
+ROW |70050 |1717 |35836 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70051 |1717 |35835 |0 |1 |2774A4|0 |2 |0 |
+ROW |70052 |1717 |35834 |0 |2 |F63100|0 |2 |0 |
+ROW |70053 |1717 |35832 |0 |3 |A54F10|0 |2 |0 |
+ROW |70054 |1717 |35822 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70055 |1718 |35827 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70056 |1718 |35828 |0 |1 |2774A4|0 |2 |0 |
+ROW |70057 |1719 |35864 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70058 |1719 |35863 |5 |1 |2774A4|0 |2 |0 |
+ROW |70059 |1720 |35848 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70060 |1720 |35865 |0 |1 |2774A4|0 |2 |0 |
+ROW |70061 |1721 |35859 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70062 |1721 |35858 |0 |1 |2774A4|0 |2 |0 |
+ROW |70063 |1721 |35857 |0 |2 |F63100|0 |2 |0 |
+ROW |70064 |1721 |35855 |0 |3 |A54F10|0 |2 |0 |
+ROW |70065 |1721 |35847 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70066 |1722 |35869 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70067 |1722 |35868 |0 |1 |2774A4|0 |2 |0 |
+ROW |70068 |1723 |35866 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70069 |1723 |35867 |5 |1 |2774A4|0 |2 |0 |
+ROW |70070 |1724 |35876 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70071 |1724 |35875 |0 |1 |2774A4|0 |2 |0 |
+ROW |70072 |1725 |35870 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70073 |1725 |35871 |0 |1 |2774A4|0 |2 |0 |
+ROW |70074 |1725 |35872 |0 |2 |F63100|0 |2 |0 |
+ROW |70075 |1725 |35873 |0 |3 |A54F10|0 |2 |0 |
+ROW |70076 |1725 |35874 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70077 |1726 |35901 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70078 |1726 |35900 |5 |1 |2774A4|0 |2 |0 |
+ROW |70079 |1727 |35895 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70080 |1727 |35894 |0 |1 |2774A4|0 |2 |0 |
+ROW |70081 |1727 |35893 |0 |2 |F63100|0 |2 |0 |
+ROW |70082 |1727 |35891 |0 |3 |A54F10|0 |2 |0 |
+ROW |70083 |1727 |35881 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70084 |1728 |35886 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70085 |1728 |35887 |0 |1 |2774A4|0 |2 |0 |
+ROW |70086 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70087 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
+ROW |70088 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70089 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
+ROW |70090 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70091 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
+ROW |70092 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
+ROW |70093 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
+ROW |70094 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70095 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70096 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
+ROW |70097 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
+ROW |70098 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70099 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
+ROW |70100 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70101 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
+ROW |70102 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70103 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
+ROW |70104 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
+ROW |70105 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
+ROW |70106 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70107 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70108 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
+ROW |70109 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
+ROW |70110 |1308 |32078 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70111 |1308 |32077 |0 |1 |2774A4|0 |2 |0 |
+ROW |70112 |1309 |32088 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70113 |1309 |32087 |0 |1 |2774A4|0 |2 |0 |
+ROW |70114 |1310 |32071 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70115 |1310 |32102 |0 |1 |2774A4|0 |2 |0 |
+ROW |70116 |1311 |32108 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70117 |1311 |32109 |0 |1 |2774A4|0 |2 |0 |
+ROW |70118 |1311 |32106 |0 |2 |F63100|0 |2 |0 |
+ROW |70119 |1311 |32107 |0 |3 |A54F10|0 |2 |0 |
+ROW |70120 |1312 |32083 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70121 |1312 |32084 |0 |1 |2774A4|0 |2 |0 |
+ROW |70122 |1313 |32080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70123 |1313 |32081 |0 |1 |2774A4|0 |2 |0 |
+ROW |70124 |1314 |32086 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70125 |1314 |32100 |2 |1 |2774A4|0 |2 |0 |
+ROW |70126 |1314 |32073 |0 |2 |F63100|0 |2 |0 |
+ROW |70127 |1314 |32131 |0 |3 |A54F10|0 |2 |0 |
+ROW |70128 |1314 |32118 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |70129 |1314 |32101 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70130 |1314 |32125 |0 |6 |AC8C14|0 |2 |0 |
+ROW |70131 |1314 |32126 |2 |7 |611F27|0 |2 |0 |
+ROW |70132 |1314 |32127 |0 |8 |F230E0|0 |2 |0 |
+ROW |70133 |1314 |32128 |0 |9 |FFAD40|0 |2 |0 |
+ROW |70134 |1314 |32129 |2 |10 |40CDFF|0 |2 |0 |
+ROW |70135 |1314 |32130 |0 |11 |40FFA0|0 |2 |0 |
+ROW |70136 |1315 |32124 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70137 |1315 |32123 |2 |1 |2774A4|0 |2 |0 |
+ROW |70138 |1315 |32122 |0 |2 |F63100|0 |2 |0 |
+ROW |70139 |1315 |32121 |0 |3 |A54F10|0 |2 |0 |
+ROW |70140 |1315 |32121 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |70141 |1315 |32120 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70142 |1316 |32098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70143 |1316 |32099 |0 |1 |2774A4|0 |2 |0 |
+ROW |70144 |1316 |32097 |0 |2 |F63100|0 |2 |0 |
+ROW |70145 |1316 |32096 |0 |3 |A54F10|0 |2 |0 |
+ROW |70146 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70147 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
+ROW |70148 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
+ROW |70149 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70150 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
+ROW |70151 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
+ROW |70152 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70153 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
+ROW |70154 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
+ROW |70155 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70156 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
+ROW |70157 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70158 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
+ROW |70159 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70160 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70161 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
+ROW |70162 |841 |28812 |0 |2 |F63100|0 |2 |0 |
+ROW |70163 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
+ROW |70164 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70165 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
+ROW |70166 |842 |28816 |0 |2 |F63100|0 |2 |0 |
+ROW |70167 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70168 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
+ROW |70169 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70170 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70171 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
+ROW |70172 |845 |28832 |0 |2 |F63100|0 |2 |0 |
+ROW |70173 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
+ROW |70174 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70175 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
+ROW |70176 |846 |28827 |0 |2 |F63100|0 |2 |0 |
+ROW |70177 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70178 |1662 |34869 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70179 |1663 |34871 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70180 |1663 |34870 |5 |1 |2774A4|0 |2 |0 |
+ROW |70181 |1663 |34872 |5 |2 |F63100|0 |2 |0 |
+ROW |70182 |1663 |34873 |5 |3 |A54F10|0 |2 |0 |
+ROW |70183 |1663 |34874 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |70184 |1664 |34880 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70185 |1665 |34882 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70186 |1665 |34881 |5 |1 |2774A4|0 |2 |0 |
+ROW |70187 |1665 |34883 |5 |2 |F63100|0 |2 |0 |
+ROW |70188 |1665 |34884 |5 |3 |A54F10|0 |2 |0 |
+ROW |70189 |1665 |34885 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |70190 |1666 |34903 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70191 |1666 |34902 |5 |1 |2774A4|0 |2 |0 |
+ROW |70192 |1666 |34901 |5 |2 |F63100|0 |2 |0 |
+ROW |70193 |1667 |34889 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70194 |1667 |34896 |5 |1 |2774A4|0 |2 |0 |
+ROW |70195 |1667 |34895 |5 |2 |F63100|0 |2 |0 |
+ROW |70196 |1667 |34894 |5 |3 |A54F10|0 |2 |0 |
+ROW |70197 |1667 |34893 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |70198 |1668 |34910 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70199 |1668 |34911 |5 |1 |2774A4|0 |2 |0 |
+ROW |70200 |1668 |34909 |5 |2 |F63100|0 |2 |0 |
+ROW |70201 |1669 |34913 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70202 |1669 |34912 |5 |1 |2774A4|0 |2 |0 |
+ROW |70203 |1669 |34917 |5 |2 |F63100|0 |2 |0 |
+ROW |70204 |1669 |34915 |5 |3 |A54F10|0 |2 |0 |
+ROW |70205 |1669 |34914 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |70206 |1669 |34916 |5 |5 |6C59DC|0 |2 |0 |
+ROW |70207 |1669 |34918 |5 |6 |AC8C14|0 |2 |0 |
+ROW |70208 |1669 |34919 |5 |7 |611F27|0 |2 |0 |
+ROW |70209 |1670 |34925 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70210 |1670 |34926 |5 |1 |2774A4|0 |2 |0 |
+ROW |70211 |1670 |34927 |5 |2 |F63100|0 |2 |0 |
+ROW |70212 |1671 |34934 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70213 |1671 |34935 |5 |1 |2774A4|0 |2 |0 |
+ROW |70214 |1671 |34936 |5 |2 |F63100|0 |2 |0 |
+ROW |70215 |1672 |34854 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70216 |1672 |34850 |5 |1 |2774A4|0 |2 |0 |
+ROW |70217 |1672 |34846 |5 |2 |F63100|0 |2 |0 |
+ROW |70218 |1672 |34845 |5 |3 |A54F10|0 |2 |0 |
+ROW |70219 |1673 |34852 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70220 |1674 |34848 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70221 |1674 |34849 |5 |1 |2774A4|0 |2 |0 |
+ROW |70222 |1674 |34847 |5 |2 |F63100|0 |2 |0 |
+ROW |70223 |1675 |34858 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70224 |1287 |31890 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70225 |1287 |31882 |0 |1 |2774A4|0 |2 |0 |
+ROW |70226 |1287 |31880 |0 |2 |F63100|0 |2 |0 |
+ROW |70227 |1287 |31883 |0 |3 |A54F10|0 |2 |0 |
+ROW |70228 |1288 |31889 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70229 |1288 |31881 |0 |1 |2774A4|0 |2 |0 |
+ROW |70230 |1288 |31888 |0 |2 |F63100|0 |2 |0 |
+ROW |70231 |1289 |31900 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70232 |1289 |31895 |0 |1 |2774A4|0 |2 |0 |
+ROW |70233 |1289 |31899 |0 |2 |F63100|0 |2 |0 |
+ROW |70234 |1289 |31902 |0 |3 |A54F10|0 |2 |0 |
+ROW |70235 |1290 |31907 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70236 |1290 |31908 |0 |1 |2774A4|0 |2 |0 |
+ROW |70237 |1290 |31906 |0 |2 |F63100|0 |2 |0 |
+ROW |70238 |1412 |32908 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70239 |1412 |32923 |0 |1 |2774A4|0 |2 |0 |
+ROW |70240 |1412 |32921 |0 |2 |F63100|0 |2 |0 |
+ROW |70241 |1412 |32919 |0 |3 |A54F10|0 |2 |0 |
+ROW |70242 |1412 |32917 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70243 |1412 |32911 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70244 |1412 |32914 |0 |6 |AC8C14|0 |2 |0 |
+ROW |70245 |1412 |32909 |0 |7 |611F27|0 |2 |0 |
+ROW |70246 |1413 |32912 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70247 |1413 |32922 |0 |1 |2774A4|0 |2 |0 |
+ROW |70248 |1413 |32920 |0 |2 |F63100|0 |2 |0 |
+ROW |70249 |1413 |32918 |0 |3 |A54F10|0 |2 |0 |
+ROW |70250 |1413 |32915 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70251 |1413 |32910 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70252 |1413 |32913 |0 |6 |AC8C14|0 |2 |0 |
+ROW |70253 |1413 |32924 |0 |7 |611F27|0 |2 |0 |
+ROW |70254 |1414 |32847 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70255 |1414 |32848 |0 |1 |2774A4|0 |2 |0 |
+ROW |70256 |1414 |32846 |0 |2 |F63100|0 |2 |0 |
+ROW |70257 |1415 |32871 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70258 |1415 |32876 |2 |1 |FF0000|0 |2 |0 |
+ROW |70259 |1416 |32875 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70260 |1417 |32839 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70261 |1417 |32838 |0 |1 |2774A4|0 |2 |0 |
+ROW |70262 |1418 |32878 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70263 |1418 |32873 |2 |1 |FF0000|0 |2 |0 |
+ROW |70264 |1419 |32843 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70265 |1419 |32842 |0 |1 |2774A4|0 |2 |0 |
+ROW |70266 |1419 |32841 |0 |2 |F63100|0 |2 |0 |
+ROW |70267 |1420 |32857 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70268 |1420 |32851 |0 |1 |2774A4|0 |2 |0 |
+ROW |70269 |1420 |32861 |0 |2 |F63100|0 |2 |0 |
+ROW |70270 |1420 |32859 |0 |3 |A54F10|0 |2 |0 |
+ROW |70271 |1420 |32855 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70272 |1420 |32853 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70273 |1420 |32863 |0 |6 |AC8C14|0 |2 |0 |
+ROW |70274 |1420 |32849 |0 |7 |611F27|0 |2 |0 |
+ROW |70275 |1421 |32858 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70276 |1421 |32850 |0 |1 |2774A4|0 |2 |0 |
+ROW |70277 |1421 |32862 |0 |2 |F63100|0 |2 |0 |
+ROW |70278 |1421 |32860 |0 |3 |A54F10|0 |2 |0 |
+ROW |70279 |1421 |32856 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70280 |1421 |32854 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70281 |1421 |32852 |0 |6 |AC8C14|0 |2 |0 |
+ROW |70282 |1421 |32840 |0 |7 |611F27|0 |2 |0 |
+ROW |70283 |1422 |32864 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70284 |1423 |32844 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70285 |1424 |32866 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70286 |1424 |32867 |0 |1 |2774A4|0 |2 |0 |
+ROW |70287 |1425 |32865 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70288 |1426 |33000 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70289 |1426 |33015 |0 |1 |2774A4|0 |2 |0 |
+ROW |70290 |1426 |33013 |0 |2 |F63100|0 |2 |0 |
+ROW |70291 |1426 |33011 |0 |3 |A54F10|0 |2 |0 |
+ROW |70292 |1426 |33009 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70293 |1426 |33003 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70294 |1426 |33006 |0 |6 |AC8C14|0 |2 |0 |
+ROW |70295 |1426 |33001 |0 |7 |611F27|0 |2 |0 |
+ROW |70296 |1427 |33004 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70297 |1427 |33014 |0 |1 |2774A4|0 |2 |0 |
+ROW |70298 |1427 |33012 |0 |2 |F63100|0 |2 |0 |
+ROW |70299 |1427 |33010 |0 |3 |A54F10|0 |2 |0 |
+ROW |70300 |1427 |33007 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70301 |1427 |33002 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70302 |1427 |33005 |0 |6 |AC8C14|0 |2 |0 |
+ROW |70303 |1427 |33016 |0 |7 |611F27|0 |2 |0 |
+ROW |70304 |1428 |32937 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70305 |1428 |32938 |0 |1 |2774A4|0 |2 |0 |
+ROW |70306 |1428 |32936 |0 |2 |F63100|0 |2 |0 |
+ROW |70307 |1429 |32969 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70308 |1429 |32967 |2 |1 |FF0000|0 |2 |0 |
+ROW |70309 |1430 |32966 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70310 |1431 |32964 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70311 |1431 |32962 |2 |1 |FF0000|0 |2 |0 |
+ROW |70312 |1432 |32933 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70313 |1432 |32932 |0 |1 |2774A4|0 |2 |0 |
+ROW |70314 |1432 |32955 |0 |2 |F63100|0 |2 |0 |
+ROW |70315 |1433 |32947 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70316 |1433 |32953 |0 |1 |2774A4|0 |2 |0 |
+ROW |70317 |1433 |32951 |0 |2 |F63100|0 |2 |0 |
+ROW |70318 |1433 |32949 |0 |3 |A54F10|0 |2 |0 |
+ROW |70319 |1433 |32945 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70320 |1433 |32943 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70321 |1433 |32941 |0 |6 |AC8C14|0 |2 |0 |
+ROW |70322 |1433 |32939 |0 |7 |611F27|0 |2 |0 |
+ROW |70323 |1434 |32948 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70324 |1434 |32954 |0 |1 |2774A4|0 |2 |0 |
+ROW |70325 |1434 |32952 |0 |2 |F63100|0 |2 |0 |
+ROW |70326 |1434 |32950 |0 |3 |A54F10|0 |2 |0 |
+ROW |70327 |1434 |32946 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70328 |1434 |32944 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70329 |1434 |32942 |0 |6 |AC8C14|0 |2 |0 |
+ROW |70330 |1434 |32940 |0 |7 |611F27|0 |2 |0 |
+ROW |70331 |1435 |32960 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70332 |1436 |32934 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70333 |1437 |32957 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70334 |1437 |32958 |0 |1 |2774A4|0 |2 |0 |
+ROW |70335 |1438 |32970 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70336 |1291 |31947 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70337 |1291 |31946 |0 |1 |2774A4|0 |2 |0 |
+ROW |70338 |1292 |31952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70339 |1292 |31938 |0 |1 |2774A4|0 |2 |0 |
+ROW |70340 |1292 |31950 |0 |2 |F63100|0 |2 |0 |
+ROW |70341 |1293 |31939 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70342 |1293 |31945 |0 |1 |2774A4|0 |2 |0 |
+ROW |70343 |1293 |31942 |0 |2 |F63100|0 |2 |0 |
+ROW |70344 |1294 |31959 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70345 |1294 |31962 |0 |1 |2774A4|0 |2 |0 |
+ROW |70346 |1295 |31918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70347 |1295 |31916 |0 |1 |2774A4|0 |2 |0 |
+ROW |70348 |1295 |31917 |0 |2 |F63100|0 |2 |0 |
+ROW |70349 |1296 |31919 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70350 |1296 |31920 |0 |1 |2774A4|0 |2 |0 |
+ROW |70351 |1296 |31921 |0 |2 |F63100|0 |2 |0 |
+ROW |70352 |1297 |31911 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70353 |1297 |31944 |0 |1 |2774A4|0 |2 |0 |
+ROW |70354 |1298 |31953 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70355 |1298 |31954 |0 |1 |2774A4|0 |2 |0 |
+ROW |70356 |1298 |31960 |0 |2 |F63100|0 |2 |0 |
+ROW |70357 |1298 |31961 |0 |3 |A54F10|0 |2 |0 |
+ROW |70358 |1298 |31957 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70359 |1298 |31958 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70360 |1298 |31912 |0 |6 |AC8C14|0 |2 |0 |
+ROW |70361 |1298 |31913 |0 |7 |611F27|0 |2 |0 |
+ROW |70362 |1298 |31914 |0 |8 |F230E0|0 |2 |0 |
+ROW |70363 |1298 |31915 |0 |9 |FFAD40|0 |2 |0 |
+ROW |70364 |1298 |31948 |0 |10 |40CDFF|0 |2 |0 |
+ROW |70365 |1298 |31949 |0 |11 |40FFA0|0 |2 |0 |
+ROW |70366 |1317 |32146 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70367 |1317 |32145 |5 |1 |2774A4|0 |2 |0 |
+ROW |70368 |1318 |32151 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70369 |1318 |32150 |5 |1 |2774A4|0 |2 |0 |
+ROW |70370 |1318 |32153 |5 |2 |F63100|0 |2 |0 |
+ROW |70371 |1318 |32152 |5 |3 |A54F10|0 |2 |0 |
+ROW |70372 |1319 |32157 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70373 |1319 |32155 |5 |1 |2774A4|0 |2 |0 |
+ROW |70374 |1319 |32156 |5 |2 |F63100|0 |2 |0 |
+ROW |70375 |1520 |34128 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70376 |1520 |34127 |0 |1 |2774A4|0 |2 |0 |
+ROW |70377 |1520 |34130 |0 |2 |F63100|0 |2 |0 |
+ROW |70378 |1520 |34131 |0 |3 |A54F10|0 |2 |0 |
+ROW |70379 |1520 |34132 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70380 |1521 |34134 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70381 |1521 |34149 |0 |1 |2774A4|0 |2 |0 |
+ROW |70382 |1521 |34153 |0 |2 |F63100|0 |2 |0 |
+ROW |70383 |1521 |34152 |0 |3 |A54F10|0 |2 |0 |
+ROW |70384 |1521 |34150 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70385 |1521 |34148 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70386 |1522 |34167 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70387 |1522 |34166 |0 |1 |2774A4|0 |2 |0 |
+ROW |70388 |1523 |34164 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70389 |1523 |34165 |0 |1 |2774A4|0 |2 |0 |
+ROW |70390 |1524 |34108 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70391 |1524 |34109 |0 |1 |2774A4|0 |2 |0 |
+ROW |70392 |1524 |34110 |0 |2 |F63100|0 |2 |0 |
+ROW |70393 |1524 |34111 |0 |3 |A54F10|0 |2 |0 |
+ROW |70394 |1524 |34113 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70395 |1524 |34107 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70396 |1524 |34114 |0 |6 |AC8C14|0 |2 |0 |
+ROW |70397 |1524 |34116 |0 |7 |611F27|0 |2 |0 |
+ROW |70398 |1524 |34122 |0 |8 |F230E0|0 |2 |0 |
+ROW |70399 |1525 |22404 |0 |0 |990099|0 |2 |0 |
+ROW |70400 |1525 |22399 |0 |1 |990000|0 |2 |0 |
+ROW |70401 |1525 |22416 |0 |2 |0000EE|0 |2 |0 |
+ROW |70402 |1525 |25366 |0 |3 |FF33FF|0 |2 |0 |
+ROW |70403 |1525 |22418 |0 |4 |009600|0 |2 |0 |
+ROW |70404 |1525 |22402 |0 |5 |003300|0 |2 |0 |
+ROW |70405 |1525 |22400 |0 |6 |33FFFF|0 |2 |0 |
+ROW |70406 |1525 |22689 |0 |7 |DD0000|0 |2 |0 |
+ROW |70407 |1525 |23171 |0 |8 |000099|0 |2 |0 |
+ROW |70408 |1525 |22401 |0 |9 |00FF00|0 |2 |0 |
+ROW |70409 |1526 |23269 |0 |0 |990099|0 |2 |0 |
+ROW |70410 |1526 |23264 |0 |1 |990000|0 |2 |0 |
+ROW |70411 |1526 |23261 |0 |2 |0000EE|0 |2 |0 |
+ROW |70412 |1526 |25367 |0 |3 |FF33FF|0 |2 |0 |
+ROW |70413 |1526 |23260 |0 |4 |009600|0 |2 |0 |
+ROW |70414 |1526 |23259 |0 |5 |003300|0 |2 |0 |
+ROW |70415 |1526 |23270 |0 |6 |33FFFF|0 |2 |0 |
+ROW |70416 |1526 |23262 |0 |7 |DD0000|0 |2 |0 |
+ROW |70417 |1526 |23267 |0 |8 |000099|0 |2 |0 |
+ROW |70418 |1526 |23328 |0 |9 |00FF00|0 |2 |0 |
+ROW |70419 |1527 |22406 |0 |0 |00EE00|0 |2 |0 |
+ROW |70420 |1527 |25665 |0 |1 |0000EE|0 |2 |0 |
+ROW |70421 |1527 |25666 |0 |2 |FFAA00|0 |2 |0 |
+ROW |70422 |1527 |28537 |0 |3 |00EEEE|0 |2 |0 |
+ROW |70423 |1527 |28535 |0 |4 |990099|0 |2 |0 |
+ROW |70424 |1528 |23257 |0 |0 |00EE00|0 |2 |0 |
+ROW |70425 |1528 |25667 |0 |1 |0000EE|0 |2 |0 |
+ROW |70426 |1528 |25668 |0 |2 |FFAA00|0 |2 |0 |
+ROW |70427 |1528 |28538 |0 |3 |00EEEE|0 |2 |0 |
+ROW |70428 |1528 |28536 |0 |4 |990099|0 |2 |0 |
+ROW |70429 |1529 |22426 |0 |0 |00EE00|0 |2 |0 |
+ROW |70430 |1529 |22408 |0 |1 |FFAA00|0 |2 |0 |
+ROW |70431 |1529 |22412 |0 |2 |990099|0 |2 |0 |
+ROW |70432 |1529 |22414 |0 |3 |FF66FF|0 |2 |0 |
+ROW |70433 |1529 |23663 |0 |4 |009999|0 |2 |0 |
+ROW |70434 |1529 |22430 |0 |6 |8048B4|0 |2 |0 |
+ROW |70435 |1529 |22420 |0 |7 |FD5434|0 |2 |0 |
+ROW |70436 |1530 |23268 |0 |0 |00EE00|0 |2 |0 |
+ROW |70437 |1530 |23258 |0 |1 |FFAA00|0 |2 |0 |
+ROW |70438 |1530 |23253 |0 |2 |990099|0 |2 |0 |
+ROW |70439 |1530 |23266 |0 |3 |FF66FF|0 |2 |0 |
+ROW |70440 |1530 |23664 |0 |4 |009999|0 |2 |0 |
+ROW |70441 |1530 |23255 |0 |6 |8048B4|0 |2 |0 |
+ROW |70442 |1530 |23265 |0 |7 |FD5434|0 |2 |0 |
+ROW |70443 |1531 |22422 |0 |0 |00EE00|0 |2 |0 |
+ROW |70444 |1531 |22424 |0 |1 |0000EE|0 |2 |0 |
+ROW |70445 |1531 |25370 |0 |2 |FFAA00|0 |2 |0 |
+ROW |70446 |1531 |29822 |0 |3 |00EEEE|0 |2 |0 |
+ROW |70447 |1532 |23256 |0 |0 |00EE00|0 |2 |0 |
+ROW |70448 |1532 |23252 |0 |1 |0000EE|0 |2 |0 |
+ROW |70449 |1532 |25371 |0 |2 |FFAA00|0 |2 |0 |
+ROW |70450 |1532 |29823 |0 |3 |00EEEE|0 |2 |0 |
+ROW |70451 |1535 |22199 |0 |0 |C80000|0 |2 |0 |
+ROW |70452 |1535 |22196 |0 |1 |00C800|0 |2 |0 |
+ROW |70453 |1536 |23628 |0 |0 |C80000|0 |2 |0 |
+ROW |70454 |1536 |23625 |0 |1 |00C800|0 |2 |0 |
+ROW |70455 |1537 |22185 |0 |0 |009900|0 |2 |0 |
+ROW |70456 |1537 |22189 |0 |1 |DD0000|0 |2 |0 |
+ROW |70457 |1537 |22396 |0 |2 |00DDDD|0 |2 |0 |
+ROW |70458 |1537 |22183 |0 |3 |3333FF|0 |2 |0 |
+ROW |70459 |1537 |22191 |0 |4 |999900|0 |2 |0 |
+ROW |70460 |1537 |23634 |0 |5 |00FF00|0 |2 |0 |
+ROW |70461 |1538 |23276 |0 |0 |009900|0 |2 |0 |
+ROW |70462 |1538 |23273 |0 |1 |DD0000|0 |2 |0 |
+ROW |70463 |1538 |23275 |0 |2 |00DDDD|0 |2 |0 |
+ROW |70464 |1538 |23274 |0 |3 |3333FF|0 |2 |0 |
+ROW |70465 |1538 |23620 |0 |4 |999900|0 |2 |0 |
+ROW |70466 |1538 |23635 |0 |5 |00FF00|0 |2 |0 |
+ROW |70467 |1539 |22404 |0 |0 |990099|0 |2 |0 |
+ROW |70468 |1539 |22399 |0 |1 |990000|0 |2 |0 |
+ROW |70469 |1539 |22416 |0 |2 |0000EE|0 |2 |0 |
+ROW |70470 |1539 |22430 |0 |3 |FF33FF|0 |2 |0 |
+ROW |70471 |1539 |22418 |0 |4 |009600|0 |2 |0 |
+ROW |70472 |1539 |22402 |0 |5 |003300|0 |2 |0 |
+ROW |70473 |1539 |22420 |0 |6 |CCCC00|0 |2 |0 |
+ROW |70474 |1539 |22400 |0 |7 |33FFFF|0 |2 |0 |
+ROW |70475 |1539 |22689 |0 |8 |DD0000|0 |2 |0 |
+ROW |70476 |1539 |23171 |0 |9 |000099|0 |2 |0 |
+ROW |70477 |1539 |22401 |0 |10 |00FF00|0 |2 |0 |
+ROW |70478 |1540 |23269 |0 |0 |990099|0 |2 |0 |
+ROW |70479 |1540 |23264 |0 |1 |990000|0 |2 |0 |
+ROW |70480 |1540 |23261 |0 |2 |0000EE|0 |2 |0 |
+ROW |70481 |1540 |23255 |0 |3 |FF33FF|0 |2 |0 |
+ROW |70482 |1540 |23260 |0 |4 |009600|0 |2 |0 |
+ROW |70483 |1540 |23259 |0 |5 |003300|0 |2 |0 |
+ROW |70484 |1540 |23265 |0 |6 |CCCC00|0 |2 |0 |
+ROW |70485 |1540 |23270 |0 |7 |33FFFF|0 |2 |0 |
+ROW |70486 |1540 |23262 |0 |8 |DD0000|0 |2 |0 |
+ROW |70487 |1540 |23267 |0 |9 |000099|0 |2 |0 |
+ROW |70488 |1540 |23328 |0 |10 |00FF00|0 |2 |0 |
+ROW |70489 |1541 |22426 |0 |0 |00EE00|0 |2 |0 |
+ROW |70490 |1541 |22422 |0 |1 |0000EE|0 |2 |0 |
+ROW |70491 |1541 |22408 |0 |2 |FFAA00|0 |2 |0 |
+ROW |70492 |1541 |22424 |0 |3 |00EEEE|0 |2 |0 |
+ROW |70493 |1541 |22412 |0 |4 |990099|0 |2 |0 |
+ROW |70494 |1541 |22406 |0 |5 |EE0000|0 |2 |0 |
+ROW |70495 |1541 |22414 |0 |6 |FF66FF|0 |2 |0 |
+ROW |70496 |1541 |23663 |0 |7 |009999|0 |2 |0 |
+ROW |70497 |1541 |25366 |0 |8 |BBBB00|0 |2 |0 |
+ROW |70498 |1541 |25370 |0 |9 |AA0000|0 |2 |0 |
+ROW |70499 |1541 |25665 |0 |10 |990000|0 |2 |0 |
+ROW |70500 |1541 |25666 |0 |11 |008800|0 |2 |0 |
+ROW |70501 |1541 |28535 |0 |12 |80B0E0|0 |2 |0 |
+ROW |70502 |1541 |28537 |0 |13 |4080B0|0 |2 |0 |
+ROW |70503 |1541 |29822 |0 |14 |8000FF|0 |2 |0 |
+ROW |70504 |1542 |23268 |0 |0 |00EE00|0 |2 |0 |
+ROW |70505 |1542 |23256 |0 |1 |0000EE|0 |2 |0 |
+ROW |70506 |1542 |23258 |0 |2 |FFAA00|0 |2 |0 |
+ROW |70507 |1542 |23252 |0 |3 |00EEEE|0 |2 |0 |
+ROW |70508 |1542 |23253 |0 |4 |990099|0 |2 |0 |
+ROW |70509 |1542 |23257 |0 |5 |EE0000|0 |2 |0 |
+ROW |70510 |1542 |23266 |0 |6 |FF66FF|0 |2 |0 |
+ROW |70511 |1542 |23664 |0 |7 |009999|0 |2 |0 |
+ROW |70512 |1542 |25367 |0 |8 |BBBB00|0 |2 |0 |
+ROW |70513 |1542 |25371 |0 |9 |AA0000|0 |2 |0 |
+ROW |70514 |1542 |25667 |0 |10 |990000|0 |2 |0 |
+ROW |70515 |1542 |25668 |0 |11 |008800|0 |2 |0 |
+ROW |70516 |1542 |28536 |0 |12 |80B0E0|0 |2 |0 |
+ROW |70517 |1542 |28538 |0 |13 |4080B0|0 |2 |0 |
+ROW |70518 |1542 |29823 |0 |14 |8000FF|0 |2 |0 |
+ROW |70519 |1543 |28248 |0 |0 |008800|0 |2 |0 |
+ROW |70520 |1543 |28533 |0 |1 |EE0000|0 |2 |0 |
+ROW |70521 |1544 |28249 |0 |0 |008800|0 |2 |0 |
+ROW |70522 |1544 |28534 |0 |1 |EE0000|0 |2 |0 |
+ROW |70523 |1545 |22187 |5 |0 |00C800|0 |2 |0 |
+ROW |70524 |1545 |23251 |0 |1 |F63100|0 |2 |0 |
+ROW |70525 |1546 |23277 |5 |0 |00C800|0 |2 |0 |
+ROW |70526 |1546 |23272 |0 |1 |F63100|0 |2 |0 |
+ROW |70527 |1547 |28581 |0 |0 |990099|0 |2 |0 |
+ROW |70528 |1547 |28574 |0 |1 |990000|0 |2 |0 |
+ROW |70529 |1547 |28571 |0 |2 |0000EE|0 |2 |0 |
+ROW |70530 |1547 |28562 |0 |3 |FF33FF|0 |2 |0 |
+ROW |70531 |1547 |28570 |0 |4 |009600|0 |2 |0 |
+ROW |70532 |1547 |28569 |0 |5 |003300|0 |2 |0 |
+ROW |70533 |1547 |28552 |0 |6 |33FFFF|0 |2 |0 |
+ROW |70534 |1547 |28573 |0 |7 |DD0000|0 |2 |0 |
+ROW |70535 |1547 |28579 |0 |8 |000099|0 |2 |0 |
+ROW |70536 |1547 |28559 |0 |9 |00FF00|0 |2 |0 |
+ROW |70537 |1548 |28567 |0 |0 |00EE00|0 |2 |0 |
+ROW |70538 |1548 |28575 |0 |1 |0000EE|0 |2 |0 |
+ROW |70539 |1548 |28576 |0 |2 |FFAA00|0 |2 |0 |
+ROW |70540 |1548 |28583 |0 |3 |00EEEE|0 |2 |0 |
+ROW |70541 |1548 |28582 |0 |4 |990099|0 |2 |0 |
+ROW |70542 |1549 |28572 |0 |0 |00EE00|0 |2 |0 |
+ROW |70543 |1549 |28568 |0 |1 |FFAA00|0 |2 |0 |
+ROW |70544 |1549 |28564 |0 |2 |990099|0 |2 |0 |
+ROW |70545 |1549 |28578 |0 |3 |FF66FF|0 |2 |0 |
+ROW |70546 |1549 |28580 |0 |4 |009999|0 |2 |0 |
+ROW |70547 |1549 |28565 |0 |6 |8048B4|0 |2 |0 |
+ROW |70548 |1549 |28577 |0 |7 |FD5434|0 |2 |0 |
+ROW |70549 |1550 |28566 |0 |0 |00EE00|0 |2 |0 |
+ROW |70550 |1550 |28561 |0 |1 |0000EE|0 |2 |0 |
+ROW |70551 |1550 |28563 |0 |2 |FFAA00|0 |2 |0 |
+ROW |70552 |1550 |29821 |0 |3 |00EEEE|0 |2 |0 |
+ROW |70553 |1552 |28546 |0 |0 |C80000|0 |2 |0 |
+ROW |70554 |1552 |28545 |0 |1 |00C800|0 |2 |0 |
+ROW |70555 |1553 |28551 |0 |0 |009900|0 |2 |0 |
+ROW |70556 |1553 |28543 |0 |1 |DD0000|0 |2 |0 |
+ROW |70557 |1553 |28542 |0 |2 |00DDDD|0 |2 |0 |
+ROW |70558 |1553 |28549 |0 |3 |3333FF|0 |2 |0 |
+ROW |70559 |1553 |28544 |0 |4 |999900|0 |2 |0 |
+ROW |70560 |1553 |28548 |0 |5 |00FF00|0 |2 |0 |
+ROW |70561 |1554 |28581 |0 |0 |990099|0 |2 |0 |
+ROW |70562 |1554 |28574 |0 |1 |990000|0 |2 |0 |
+ROW |70563 |1554 |28571 |0 |2 |0000EE|0 |2 |0 |
+ROW |70564 |1554 |28565 |0 |3 |FF33FF|0 |2 |0 |
+ROW |70565 |1554 |28570 |0 |4 |009600|0 |2 |0 |
+ROW |70566 |1554 |28569 |0 |5 |003300|0 |2 |0 |
+ROW |70567 |1554 |28577 |0 |6 |CCCC00|0 |2 |0 |
+ROW |70568 |1554 |28552 |0 |7 |33FFFF|0 |2 |0 |
+ROW |70569 |1554 |28573 |0 |8 |DD0000|0 |2 |0 |
+ROW |70570 |1554 |28579 |0 |9 |000099|0 |2 |0 |
+ROW |70571 |1554 |28559 |0 |10 |00FF00|0 |2 |0 |
+ROW |70572 |1555 |28572 |0 |0 |00EE00|0 |2 |0 |
+ROW |70573 |1555 |28566 |0 |1 |0000EE|0 |2 |0 |
+ROW |70574 |1555 |28568 |0 |2 |FFAA00|0 |2 |0 |
+ROW |70575 |1555 |28561 |0 |3 |00EEEE|0 |2 |0 |
+ROW |70576 |1555 |28564 |0 |4 |990099|0 |2 |0 |
+ROW |70577 |1555 |28567 |0 |5 |EE0000|0 |2 |0 |
+ROW |70578 |1555 |28578 |0 |6 |FF66FF|0 |2 |0 |
+ROW |70579 |1555 |28580 |0 |7 |009999|0 |2 |0 |
+ROW |70580 |1555 |28562 |0 |8 |BBBB00|0 |2 |0 |
+ROW |70581 |1555 |28563 |0 |9 |AA0000|0 |2 |0 |
+ROW |70582 |1555 |28575 |0 |10 |990000|0 |2 |0 |
+ROW |70583 |1555 |28576 |0 |11 |008800|0 |2 |0 |
+ROW |70584 |1555 |28582 |0 |12 |80B0E0|0 |2 |0 |
+ROW |70585 |1555 |28583 |0 |13 |4080B0|0 |2 |0 |
+ROW |70586 |1555 |29821 |0 |14 |8000FF|0 |2 |0 |
+ROW |70587 |1556 |28560 |0 |0 |008800|0 |2 |0 |
+ROW |70588 |1556 |28584 |0 |1 |EE0000|0 |2 |0 |
+ROW |70589 |1557 |28550 |5 |0 |00C800|0 |2 |0 |
+ROW |70590 |1557 |28540 |0 |1 |F63100|0 |2 |0 |
+ROW |70591 |1320 |32196 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70592 |1320 |32197 |0 |1 |2774A4|0 |2 |0 |
+ROW |70593 |1320 |32195 |2 |2 |F63100|0 |2 |0 |
+ROW |70594 |1321 |32200 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70595 |1321 |32199 |0 |1 |2774A4|0 |2 |0 |
+ROW |70596 |1322 |32175 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70597 |1322 |32165 |0 |1 |2774A4|0 |2 |0 |
+ROW |70598 |1323 |32162 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70599 |1323 |32163 |0 |1 |2774A4|0 |2 |0 |
+ROW |70600 |1323 |32190 |2 |2 |F63100|0 |2 |0 |
+ROW |70601 |1324 |32192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70602 |1324 |32179 |0 |1 |2774A4|0 |2 |0 |
+ROW |70603 |1325 |32168 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70604 |1325 |32166 |0 |1 |2774A4|0 |2 |0 |
+ROW |70605 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
+ROW |70606 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
+ROW |70607 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
+ROW |70608 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
+ROW |70609 |804 |28602 |0 |0 |990099|0 |2 |0 |
+ROW |70610 |804 |28606 |0 |1 |990000|0 |2 |0 |
+ROW |70611 |804 |28608 |0 |2 |0000EE|0 |2 |0 |
+ROW |70612 |804 |28615 |0 |3 |FF33FF|0 |2 |0 |
+ROW |70613 |804 |28610 |0 |4 |00EE00|0 |2 |0 |
+ROW |70614 |804 |28611 |0 |5 |003300|0 |2 |0 |
+ROW |70615 |804 |28616 |0 |6 |33FFFF|0 |2 |0 |
+ROW |70616 |804 |28607 |0 |7 |DD0000|0 |2 |0 |
+ROW |70617 |804 |28604 |0 |8 |000099|0 |2 |0 |
+ROW |70618 |804 |28588 |0 |9 |00FF00|0 |2 |0 |
+ROW |70619 |805 |28612 |0 |0 |FFAA00|0 |2 |0 |
+ROW |70620 |805 |28600 |0 |1 |990099|0 |2 |0 |
+ROW |70621 |805 |28613 |0 |2 |EE0000|0 |2 |0 |
+ROW |70622 |805 |28605 |0 |3 |FF66FF|0 |2 |0 |
+ROW |70623 |805 |28614 |0 |4 |960000|0 |2 |0 |
+ROW |70624 |805 |28601 |0 |5 |009600|0 |2 |0 |
+ROW |70625 |805 |28603 |0 |6 |009999|0 |2 |0 |
+ROW |70626 |805 |28609 |0 |7 |BBBB00|0 |2 |0 |
+ROW |70627 |806 |28595 |0 |0 |00C800|0 |2 |0 |
+ROW |70628 |806 |28586 |0 |1 |C80000|0 |2 |0 |
+ROW |70629 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
+ROW |70630 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
+ROW |70631 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
+ROW |70632 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
+ROW |70633 |530 |23345 |0 |0 |990099|0 |2 |0 |
+ROW |70634 |530 |23348 |0 |1 |990000|0 |2 |0 |
+ROW |70635 |530 |23355 |0 |2 |0000EE|0 |2 |0 |
+ROW |70636 |530 |23352 |0 |3 |FF33FF|0 |2 |0 |
+ROW |70637 |530 |23356 |0 |4 |007700|0 |2 |0 |
+ROW |70638 |530 |23354 |0 |5 |003300|0 |2 |0 |
+ROW |70639 |530 |23346 |0 |6 |33FFFF|0 |2 |0 |
+ROW |70640 |530 |23349 |0 |7 |DD0000|0 |2 |0 |
+ROW |70641 |530 |23344 |0 |8 |000099|0 |7 |0 |
+ROW |70642 |530 |28250 |0 |9 |00FF00|0 |2 |0 |
+ROW |70643 |531 |23353 |0 |0 |FFAA00|0 |2 |0 |
+ROW |70644 |531 |23347 |0 |1 |990099|0 |2 |0 |
+ROW |70645 |531 |23350 |0 |2 |EE0000|0 |2 |0 |
+ROW |70646 |531 |23343 |0 |3 |FF66FF|0 |2 |0 |
+ROW |70647 |531 |23351 |0 |4 |0000EE|0 |2 |0 |
+ROW |70648 |531 |23360 |0 |5 |00EE00|0 |2 |0 |
+ROW |70649 |531 |25369 |0 |6 |009999|0 |2 |0 |
+ROW |70650 |531 |25368 |0 |7 |BBBB00|0 |2 |0 |
+ROW |70651 |531 |28618 |0 |8 |990000|0 |2 |0 |
+ROW |70652 |531 |28619 |0 |9 |008800|0 |2 |0 |
+ROW |70653 |807 |28617 |0 |0 |008800|0 |2 |0 |
+ROW |70654 |532 |23340 |5 |0 |00C800|0 |2 |0 |
+ROW |70655 |532 |23358 |5 |1 |C80000|1 |2 |0 |
+ROW |70656 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
+ROW |70657 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
+ROW |70658 |473 |22950 |0 |0 |C80000|0 |2 |2 |
+ROW |70659 |473 |22948 |0 |1 |00C800|0 |2 |0 |
+ROW |70660 |471 |22924 |0 |0 |009900|0 |2 |0 |
+ROW |70661 |471 |22920 |0 |1 |000099|0 |2 |0 |
+ROW |70662 |469 |22922 |0 |0 |009900|0 |2 |0 |
+ROW |70663 |469 |22923 |0 |1 |000099|0 |2 |0 |
+ROW |70664 |469 |22921 |0 |2 |990000|0 |2 |0 |
+ROW |70665 |498 |23109 |0 |0 |009999|0 |2 |0 |
+ROW |70666 |498 |23112 |0 |1 |990099|0 |2 |0 |
+ROW |70667 |498 |23115 |0 |2 |999900|0 |2 |0 |
+ROW |70668 |498 |23113 |0 |3 |990000|0 |2 |0 |
+ROW |70669 |498 |23114 |0 |4 |000099|0 |2 |0 |
+ROW |70670 |498 |23110 |0 |5 |009900|0 |2 |0 |
+ROW |70671 |540 |22942 |5 |0 |00C800|0 |2 |0 |
+ROW |70672 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
+ROW |70673 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
+ROW |70674 |467 |22910 |0 |0 |C80000|0 |2 |2 |
+ROW |70675 |467 |22908 |0 |1 |00C800|0 |2 |0 |
+ROW |70676 |465 |22884 |0 |0 |009900|0 |2 |0 |
+ROW |70677 |465 |22880 |0 |1 |000099|0 |2 |0 |
+ROW |70678 |463 |22882 |0 |0 |009900|0 |2 |0 |
+ROW |70679 |463 |22883 |0 |1 |000099|0 |2 |0 |
+ROW |70680 |463 |22881 |0 |2 |990000|0 |2 |0 |
+ROW |70681 |462 |22886 |1 |0 |009999|0 |2 |0 |
+ROW |70682 |462 |22888 |1 |1 |990099|0 |2 |0 |
+ROW |70683 |462 |22891 |1 |2 |990000|0 |2 |0 |
+ROW |70684 |462 |22892 |1 |3 |000099|0 |2 |0 |
+ROW |70685 |462 |22885 |1 |4 |009900|0 |2 |0 |
+ROW |70686 |541 |22902 |5 |0 |00C800|0 |2 |0 |
+ROW |70687 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
+ROW |70688 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
+ROW |70689 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
+ROW |70690 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
+ROW |70691 |479 |22990 |0 |0 |C80000|0 |2 |2 |
+ROW |70692 |479 |22988 |0 |1 |00C800|0 |2 |0 |
+ROW |70693 |475 |22962 |0 |0 |009900|0 |2 |0 |
+ROW |70694 |475 |22963 |0 |1 |000099|0 |2 |0 |
+ROW |70695 |475 |22961 |0 |2 |990000|0 |2 |0 |
+ROW |70696 |474 |22968 |1 |0 |990099|0 |2 |0 |
+ROW |70697 |474 |22971 |1 |1 |990000|0 |2 |0 |
+ROW |70698 |474 |22972 |1 |2 |000099|0 |2 |0 |
+ROW |70699 |474 |22965 |1 |3 |009900|0 |2 |0 |
+ROW |70700 |542 |22982 |5 |0 |00C800|0 |2 |0 |
+ROW |70701 |491 |23070 |0 |0 |C80000|0 |2 |2 |
+ROW |70702 |491 |23068 |0 |1 |00C800|0 |2 |0 |
+ROW |70703 |487 |23042 |0 |0 |009900|0 |2 |0 |
+ROW |70704 |487 |23043 |0 |1 |000099|0 |2 |0 |
+ROW |70705 |487 |23041 |0 |2 |990000|0 |2 |0 |
+ROW |70706 |543 |23062 |5 |0 |00C800|0 |2 |0 |
+ROW |70707 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
+ROW |70708 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
+ROW |70709 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
+ROW |70710 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
+ROW |70711 |461 |22870 |0 |0 |C80000|0 |2 |2 |
+ROW |70712 |461 |22868 |0 |1 |00C800|0 |2 |0 |
+ROW |70713 |459 |22844 |0 |0 |009900|0 |2 |0 |
+ROW |70714 |459 |22840 |0 |1 |000099|0 |2 |0 |
+ROW |70715 |457 |22842 |0 |0 |009900|0 |2 |0 |
+ROW |70716 |457 |22843 |0 |1 |000099|0 |2 |0 |
+ROW |70717 |457 |22841 |0 |2 |990000|0 |2 |0 |
+ROW |70718 |456 |22846 |1 |0 |009999|0 |2 |0 |
+ROW |70719 |456 |22848 |1 |1 |990099|0 |2 |0 |
+ROW |70720 |456 |22851 |1 |2 |990000|0 |2 |0 |
+ROW |70721 |456 |22852 |1 |3 |000099|0 |2 |0 |
+ROW |70722 |456 |22845 |1 |4 |009900|0 |2 |0 |
+ROW |70723 |544 |22862 |5 |0 |00C800|0 |2 |0 |
+ROW |70724 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
+ROW |70725 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
+ROW |70726 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
+ROW |70727 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
+ROW |70728 |485 |23030 |0 |0 |C80000|0 |2 |2 |
+ROW |70729 |485 |23028 |0 |1 |00C800|0 |2 |0 |
+ROW |70730 |483 |23004 |0 |0 |009900|0 |2 |0 |
+ROW |70731 |483 |23000 |0 |1 |000099|0 |2 |0 |
+ROW |70732 |481 |23002 |0 |0 |009900|0 |2 |0 |
+ROW |70733 |481 |23003 |0 |1 |000099|0 |2 |0 |
+ROW |70734 |481 |23001 |0 |2 |990000|0 |2 |0 |
+ROW |70735 |480 |23007 |1 |0 |999900|0 |2 |0 |
+ROW |70736 |480 |23011 |1 |1 |990000|0 |2 |0 |
+ROW |70737 |480 |23012 |1 |2 |000099|0 |2 |0 |
+ROW |70738 |480 |23005 |1 |3 |009900|0 |2 |0 |
+ROW |70739 |545 |23022 |5 |0 |00C800|0 |2 |0 |
+ROW |70740 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
+ROW |70741 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
+ROW |70742 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
+ROW |70743 |651 |26927 |0 |1 |000000|1 |2 |0 |
+ROW |70744 |652 |26925 |2 |0 |880000|0 |2 |0 |
+ROW |70745 |652 |26932 |0 |1 |009900|0 |2 |0 |
+ROW |70746 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
+ROW |70747 |652 |26931 |0 |3 |000000|0 |2 |0 |
+ROW |70748 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
+ROW |70749 |652 |26926 |0 |5 |777700|0 |2 |0 |
+ROW |70750 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
+ROW |70751 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
+ROW |70752 |653 |26935 |0 |2 |000000|1 |2 |0 |
+ROW |70753 |653 |26936 |4 |3 |000000|1 |2 |0 |
+ROW |70754 |654 |26934 |2 |0 |880000|0 |2 |0 |
+ROW |70755 |654 |26939 |0 |1 |009900|0 |2 |0 |
+ROW |70756 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
+ROW |70757 |654 |26938 |0 |3 |000000|0 |2 |0 |
+ROW |70758 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
+ROW |70759 |1326 |32292 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70760 |1326 |32291 |0 |1 |2774A4|0 |2 |0 |
+ROW |70761 |1326 |32278 |0 |2 |F63100|0 |2 |0 |
+ROW |70762 |1326 |32277 |0 |3 |A54F10|0 |2 |0 |
+ROW |70763 |1327 |32304 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70764 |1327 |32289 |0 |1 |2774A4|0 |2 |0 |
+ROW |70765 |1328 |32259 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70766 |1328 |32260 |2 |1 |2774A4|0 |2 |0 |
+ROW |70767 |1329 |32268 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70768 |1329 |32264 |2 |1 |2774A4|0 |2 |0 |
+ROW |70769 |1330 |32261 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70770 |1330 |32265 |2 |1 |2774A4|0 |2 |0 |
+ROW |70771 |1330 |32262 |0 |2 |F63100|0 |2 |0 |
+ROW |70772 |1330 |32263 |0 |3 |A54F10|0 |2 |0 |
+ROW |70773 |1330 |32266 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70774 |1330 |32267 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70775 |1331 |32272 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70776 |1331 |32271 |2 |1 |2774A4|0 |2 |0 |
+ROW |70777 |1332 |32256 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70778 |1332 |32242 |2 |1 |2774A4|0 |2 |0 |
+ROW |70779 |1333 |32273 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70780 |1333 |32238 |0 |1 |2774A4|0 |2 |0 |
+ROW |70781 |1334 |32245 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70782 |1334 |32250 |2 |1 |2774A4|0 |2 |0 |
+ROW |70783 |1334 |32246 |0 |2 |F63100|0 |2 |0 |
+ROW |70784 |1334 |32247 |0 |3 |A54F10|0 |2 |0 |
+ROW |70785 |1334 |32251 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70786 |1334 |32252 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70787 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70788 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
+ROW |70789 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70790 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
+ROW |70791 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
+ROW |70792 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
+ROW |70793 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70794 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70795 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
+ROW |70796 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70797 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
+ROW |70798 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
+ROW |70799 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
+ROW |70800 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |70801 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70802 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
+ROW |70803 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
+ROW |70804 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70805 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
+ROW |70806 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70807 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
+ROW |70808 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70809 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
+ROW |70810 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
+ROW |70811 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
+ROW |70812 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70813 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
+ROW |70814 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
+ROW |70815 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
+ROW |70816 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70817 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
+ROW |70818 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
+ROW |70819 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70820 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
+ROW |70821 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70822 |1488 |30840 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70823 |1488 |30845 |0 |1 |2774A4|0 |2 |0 |
+ROW |70824 |1488 |30842 |0 |2 |F63100|0 |2 |0 |
+ROW |70825 |1488 |30873 |2 |3 |A54F10|1 |2 |0 |
+ROW |70826 |1677 |35580 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70827 |1677 |35583 |0 |1 |2774A4|0 |2 |0 |
+ROW |70828 |1677 |35581 |0 |2 |F63100|0 |2 |0 |
+ROW |70829 |1677 |35582 |0 |3 |A54F10|0 |2 |0 |
+ROW |70830 |1678 |35589 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70831 |1678 |35588 |0 |1 |2774A4|0 |2 |0 |
+ROW |70832 |1678 |35587 |0 |2 |F63100|0 |2 |0 |
+ROW |70833 |1679 |35592 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70834 |1679 |35601 |0 |1 |2774A4|0 |2 |0 |
+ROW |70835 |1680 |35596 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70836 |1680 |35597 |0 |1 |2774A4|0 |2 |0 |
+ROW |70837 |1681 |35602 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70838 |1681 |35607 |0 |1 |2774A4|0 |2 |0 |
+ROW |70839 |1681 |35605 |0 |2 |F63100|0 |2 |0 |
+ROW |70840 |1681 |35603 |0 |3 |A54F10|0 |2 |0 |
+ROW |70841 |1682 |35609 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70842 |1682 |35611 |0 |1 |2774A4|0 |2 |0 |
+ROW |70843 |1682 |35610 |0 |2 |F63100|0 |2 |0 |
+ROW |70844 |1683 |35623 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70845 |1683 |35621 |0 |1 |2774A4|0 |2 |0 |
+ROW |70846 |1684 |35630 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70847 |1684 |35631 |0 |1 |2774A4|0 |2 |0 |
+ROW |70848 |1685 |35633 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70849 |1685 |35635 |0 |1 |2774A4|0 |2 |0 |
+ROW |70850 |1686 |35636 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70851 |1686 |35634 |0 |1 |2774A4|0 |2 |0 |
+ROW |70852 |1687 |35638 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70853 |1687 |35639 |0 |1 |2774A4|0 |2 |0 |
+ROW |70854 |1688 |35637 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70855 |1688 |35640 |0 |1 |2774A4|0 |2 |0 |
+ROW |70856 |1688 |35641 |0 |2 |F63100|0 |2 |0 |
+ROW |70857 |1689 |35643 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70858 |1689 |35644 |0 |1 |2774A4|0 |2 |0 |
+ROW |70859 |1390 |32665 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70860 |1390 |32668 |0 |1 |2774A4|0 |2 |0 |
+ROW |70861 |1390 |32666 |0 |2 |F63100|0 |2 |0 |
+ROW |70862 |1390 |32667 |0 |3 |A54F10|0 |2 |0 |
+ROW |70863 |1391 |32674 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70864 |1391 |32673 |0 |1 |2774A4|0 |2 |0 |
+ROW |70865 |1391 |32672 |0 |2 |F63100|0 |2 |0 |
+ROW |70866 |1392 |32677 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70867 |1392 |32686 |0 |1 |2774A4|0 |2 |0 |
+ROW |70868 |1393 |32681 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70869 |1393 |32682 |0 |1 |2774A4|0 |2 |0 |
+ROW |70870 |1394 |32687 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70871 |1394 |32692 |0 |1 |2774A4|0 |2 |0 |
+ROW |70872 |1394 |32690 |0 |2 |F63100|0 |2 |0 |
+ROW |70873 |1394 |32688 |0 |3 |A54F10|0 |2 |0 |
+ROW |70874 |1395 |32694 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70875 |1395 |32696 |0 |1 |2774A4|0 |2 |0 |
+ROW |70876 |1395 |32695 |0 |2 |F63100|0 |2 |0 |
+ROW |70877 |1396 |32708 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70878 |1396 |32706 |0 |1 |2774A4|0 |2 |0 |
+ROW |70879 |1397 |32715 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70880 |1397 |32716 |0 |1 |2774A4|0 |2 |0 |
+ROW |70881 |1398 |32718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70882 |1398 |32720 |0 |1 |2774A4|0 |2 |0 |
+ROW |70883 |1399 |32721 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70884 |1399 |32719 |0 |1 |2774A4|0 |2 |0 |
+ROW |70885 |1400 |32723 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70886 |1400 |32724 |0 |1 |2774A4|0 |2 |0 |
+ROW |70887 |1401 |32722 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70888 |1401 |32725 |0 |1 |2774A4|0 |2 |0 |
+ROW |70889 |1401 |32726 |0 |2 |F63100|0 |2 |0 |
+ROW |70890 |1402 |32728 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70891 |1402 |32729 |0 |1 |2774A4|0 |2 |0 |
+ROW |70892 |1439 |33072 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70893 |1439 |33092 |0 |1 |2774A4|0 |2 |0 |
+ROW |70894 |1440 |33073 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70895 |1440 |33069 |0 |1 |2774A4|0 |2 |0 |
+ROW |70896 |1441 |33079 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70897 |1441 |33084 |0 |1 |2774A4|0 |2 |0 |
+ROW |70898 |1441 |33082 |0 |2 |F63100|0 |2 |0 |
+ROW |70899 |1441 |33074 |0 |3 |A54F10|0 |2 |0 |
+ROW |70900 |1441 |33078 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70901 |1441 |33086 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70902 |1441 |33076 |2 |6 |AC8C14|0 |2 |0 |
+ROW |70903 |1442 |33081 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70904 |1442 |33085 |0 |1 |2774A4|0 |2 |0 |
+ROW |70905 |1442 |33083 |0 |2 |F63100|0 |2 |0 |
+ROW |70906 |1442 |33075 |0 |3 |A54F10|0 |2 |0 |
+ROW |70907 |1442 |33068 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70908 |1442 |33087 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70909 |1442 |33077 |2 |6 |AC8C14|0 |2 |0 |
+ROW |70910 |1443 |33093 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70911 |1443 |33098 |0 |1 |2774A4|0 |2 |0 |
+ROW |70912 |1444 |33097 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70913 |1444 |33100 |0 |1 |2774A4|0 |2 |0 |
+ROW |70914 |1444 |33096 |0 |2 |F63100|0 |2 |0 |
+ROW |70915 |1444 |33094 |0 |3 |A54F10|0 |2 |0 |
+ROW |70916 |1445 |33116 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70917 |1446 |33045 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70918 |1446 |33044 |0 |1 |2774A4|0 |2 |0 |
+ROW |70919 |1446 |33046 |0 |2 |F63100|0 |2 |0 |
+ROW |70920 |1447 |33055 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70921 |1447 |33023 |0 |1 |2774A4|0 |2 |0 |
+ROW |70922 |1448 |33053 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70923 |1448 |33052 |0 |1 |2774A4|0 |2 |0 |
+ROW |70924 |1448 |33054 |0 |2 |F63100|0 |2 |0 |
+ROW |70925 |1449 |33051 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70926 |1449 |33059 |0 |1 |2774A4|0 |2 |0 |
+ROW |70927 |1449 |33027 |0 |2 |F63100|0 |2 |0 |
+ROW |70928 |1450 |33022 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70929 |1450 |33040 |0 |1 |2774A4|0 |2 |0 |
+ROW |70930 |1450 |33042 |0 |2 |F63100|0 |2 |0 |
+ROW |70931 |1450 |33043 |0 |3 |A54F10|0 |2 |0 |
+ROW |70932 |1451 |33038 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70933 |1451 |33025 |0 |1 |2774A4|0 |2 |0 |
+ROW |70934 |1451 |33026 |0 |2 |F63100|0 |2 |0 |
+ROW |70935 |1451 |33024 |0 |3 |A54F10|0 |2 |0 |
+ROW |70936 |1452 |33029 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70937 |1452 |33028 |0 |1 |2774A4|0 |2 |0 |
+ROW |70938 |1453 |33035 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70939 |1453 |33034 |0 |1 |2774A4|0 |2 |0 |
+ROW |70940 |1453 |33033 |0 |2 |F63100|0 |2 |0 |
+ROW |70941 |1453 |33036 |0 |3 |A54F10|0 |2 |0 |
+ROW |70942 |1453 |33030 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70943 |1453 |33031 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70944 |1454 |33057 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70945 |1454 |33056 |2 |1 |2774A4|0 |2 |0 |
+ROW |70946 |1454 |33058 |2 |2 |F63100|0 |2 |0 |
+ROW |70947 |1455 |33190 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70948 |1455 |33193 |0 |1 |2774A4|0 |2 |0 |
+ROW |70949 |1455 |33189 |0 |2 |F63100|0 |2 |0 |
+ROW |70950 |1455 |33187 |0 |3 |A54F10|0 |2 |0 |
+ROW |70951 |1456 |33158 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70952 |1456 |33168 |0 |1 |2774A4|0 |2 |0 |
+ROW |70953 |1456 |33169 |0 |2 |F63100|0 |2 |0 |
+ROW |70954 |1456 |33167 |0 |3 |A54F10|0 |2 |0 |
+ROW |70955 |1456 |33171 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70956 |1457 |33165 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70957 |1457 |33166 |0 |1 |2774A4|0 |2 |0 |
+ROW |70958 |1457 |33164 |0 |2 |F63100|0 |2 |0 |
+ROW |70959 |1457 |33163 |2 |3 |A54F10|1 |2 |0 |
+ROW |70960 |1458 |33161 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70961 |1458 |33162 |0 |1 |2774A4|0 |2 |0 |
+ROW |70962 |1458 |33155 |0 |2 |F63100|0 |2 |0 |
+ROW |70963 |1459 |33146 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70964 |1459 |33145 |0 |1 |2774A4|0 |2 |0 |
+ROW |70965 |1460 |33152 |2 |0 |1A7C11|0 |2 |0 |
+ROW |70966 |1460 |33151 |2 |1 |2774A4|0 |2 |0 |
+ROW |70967 |1460 |33148 |2 |2 |F63100|0 |2 |0 |
+ROW |70968 |1460 |33153 |2 |3 |A54F10|0 |2 |0 |
+ROW |70969 |1460 |33149 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |70970 |1460 |33144 |2 |5 |6C59DC|0 |2 |0 |
+ROW |70971 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70972 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
+ROW |70973 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70974 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
+ROW |70975 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
+ROW |70976 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70977 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70978 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
+ROW |70979 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70980 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
+ROW |70981 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
+ROW |70982 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
+ROW |70983 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |70984 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
+ROW |70985 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70986 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
+ROW |70987 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
+ROW |70988 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
+ROW |70989 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70990 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
+ROW |70991 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70992 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
+ROW |70993 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70994 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
+ROW |70995 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
+ROW |70996 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
+ROW |70997 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
+ROW |70998 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
+ROW |70999 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71000 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71001 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
+ROW |71002 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
+ROW |71003 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
+ROW |71004 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71005 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71006 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
+ROW |71007 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71008 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
+ROW |71009 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71010 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
+ROW |71011 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71012 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71013 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
+ROW |71014 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
+ROW |71015 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
+ROW |71016 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71017 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71018 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
+ROW |71019 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71020 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71021 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
+ROW |71022 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
+ROW |71023 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
+ROW |71024 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71025 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
+ROW |71026 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71027 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
+ROW |71028 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71029 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
+ROW |71030 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
+ROW |71031 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
+ROW |71032 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71033 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
+ROW |71034 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71035 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
+ROW |71036 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
+ROW |71037 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
+ROW |71038 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71039 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
+ROW |71040 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
+ROW |71041 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
+ROW |71042 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71043 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
+ROW |71044 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
+ROW |71045 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
+ROW |71046 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71047 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
+ROW |71048 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
+ROW |71049 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71050 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
+ROW |71051 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
+ROW |71052 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
+ROW |71053 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71054 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
+ROW |71055 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71056 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
+ROW |71057 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
+ROW |71058 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
+ROW |71059 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71060 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
+ROW |71061 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
+ROW |71062 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
+ROW |71063 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71064 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
+ROW |71065 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
+ROW |71066 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
+ROW |71067 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71068 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
+ROW |71069 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
+ROW |71070 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71071 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
+ROW |71072 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
+ROW |71073 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
+ROW |71074 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71075 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
+ROW |71076 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71077 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
+ROW |71078 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
+ROW |71079 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
+ROW |71080 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71081 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
+ROW |71082 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
+ROW |71083 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
+ROW |71084 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71085 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
+ROW |71086 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
+ROW |71087 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
+ROW |71088 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71089 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
+ROW |71090 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
+ROW |71091 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71092 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
+ROW |71093 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
+ROW |71094 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
+ROW |71095 |1262 |31718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71096 |1262 |31719 |0 |1 |2774A4|0 |2 |0 |
+ROW |71097 |1263 |31722 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71098 |1263 |31724 |0 |1 |2774A4|0 |2 |0 |
+ROW |71099 |1263 |32588 |0 |2 |F63100|0 |2 |0 |
+ROW |71100 |1264 |31630 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71101 |1264 |31683 |0 |1 |2774A4|0 |2 |0 |
+ROW |71102 |1265 |31668 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71103 |1265 |31702 |0 |1 |2774A4|0 |2 |0 |
+ROW |71104 |1265 |31666 |0 |2 |F63100|0 |2 |0 |
+ROW |71105 |1266 |31673 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71106 |1266 |31704 |0 |1 |2774A4|0 |2 |0 |
+ROW |71107 |1267 |31690 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71108 |1267 |31672 |0 |1 |2774A4|0 |2 |0 |
+ROW |71109 |1268 |31632 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71110 |1268 |31655 |0 |1 |2774A4|0 |2 |0 |
+ROW |71111 |1269 |31650 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71112 |1269 |31648 |0 |1 |2774A4|0 |2 |0 |
+ROW |71113 |1269 |31651 |0 |2 |F63100|0 |2 |0 |
+ROW |71114 |1269 |31646 |0 |3 |A54F10|0 |2 |0 |
+ROW |71115 |1269 |31653 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71116 |1270 |31660 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71117 |1270 |31671 |0 |1 |2774A4|0 |2 |0 |
+ROW |71118 |1270 |31662 |0 |2 |F63100|0 |2 |0 |
+ROW |71119 |1270 |31661 |0 |3 |A54F10|0 |2 |0 |
+ROW |71120 |1270 |31659 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71121 |1270 |31658 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71122 |814 |28730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71123 |814 |28728 |0 |1 |2774A4|0 |2 |0 |
+ROW |71124 |815 |28712 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71125 |816 |28733 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71126 |816 |28715 |0 |1 |2774A4|0 |2 |0 |
+ROW |71127 |816 |28729 |0 |2 |F63100|0 |2 |0 |
+ROW |71128 |816 |28732 |0 |3 |A54F10|0 |2 |0 |
+ROW |71129 |817 |28716 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71130 |818 |28726 |0 |0 |1A7C11|1 |2 |0 |
+ROW |71131 |818 |28723 |0 |1 |2774A4|1 |2 |0 |
+ROW |71132 |818 |28720 |0 |2 |F63100|1 |2 |0 |
+ROW |71133 |818 |28725 |5 |3 |A54F10|0 |2 |0 |
+ROW |71134 |818 |28722 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |71135 |818 |28719 |5 |5 |6C59DC|0 |2 |0 |
+ROW |71136 |819 |28727 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71137 |819 |28724 |0 |1 |2774A4|0 |2 |0 |
+ROW |71138 |819 |28721 |0 |2 |F63100|0 |2 |0 |
+ROW |71139 |820 |28740 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71140 |820 |28739 |0 |1 |2774A4|1 |2 |0 |
+ROW |71141 |821 |28738 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71142 |821 |28737 |0 |1 |2774A4|0 |2 |0 |
+ROW |71143 |821 |28736 |0 |2 |F63100|0 |2 |0 |
+ROW |71144 |821 |28735 |0 |3 |A54F10|0 |2 |0 |
+ROW |71145 |821 |28734 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71146 |822 |28693 |0 |0 |1A7C11|1 |2 |0 |
+ROW |71147 |822 |28698 |0 |1 |2774A4|1 |2 |0 |
+ROW |71148 |822 |28694 |0 |2 |F63100|1 |2 |0 |
+ROW |71149 |822 |28697 |0 |3 |A54F10|1 |2 |0 |
+ROW |71150 |822 |28702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71151 |822 |28696 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71152 |823 |28700 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71153 |823 |28699 |0 |1 |2774A4|0 |2 |0 |
+ROW |71154 |823 |28701 |0 |2 |F63100|1 |2 |0 |
+ROW |71155 |823 |28695 |0 |3 |A54F10|1 |2 |0 |
+ROW |71156 |824 |28708 |5 |0 |1A7C11|1 |2 |0 |
+ROW |71157 |824 |28709 |0 |1 |2774A4|0 |2 |0 |
+ROW |71158 |824 |28704 |0 |2 |F63100|1 |2 |0 |
+ROW |71159 |824 |28705 |0 |3 |A54F10|1 |2 |0 |
+ROW |71160 |824 |28706 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71161 |824 |28707 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71162 |824 |28703 |0 |6 |AC8C14|1 |2 |0 |
+ROW |71163 |825 |28674 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71164 |825 |28673 |0 |1 |2774A4|1 |2 |0 |
+ROW |71165 |826 |28677 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71166 |827 |28689 |0 |0 |1A7C11|1 |2 |0 |
+ROW |71167 |827 |28688 |0 |1 |2774A4|1 |2 |0 |
+ROW |71168 |827 |28690 |0 |2 |F63100|1 |2 |0 |
+ROW |71169 |827 |28691 |0 |3 |A54F10|1 |2 |0 |
+ROW |71170 |828 |28684 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71171 |828 |28681 |0 |1 |2774A4|1 |2 |0 |
+ROW |71172 |829 |28710 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71173 |829 |28692 |0 |1 |2774A4|1 |2 |0 |
+ROW |71174 |1210 |31269 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71175 |1210 |31252 |0 |1 |2774A4|0 |2 |0 |
+ROW |71176 |1210 |31251 |0 |2 |F63100|0 |2 |0 |
+ROW |71177 |1210 |31250 |0 |3 |A54F10|0 |2 |0 |
+ROW |71178 |1210 |31249 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71179 |1210 |31248 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71180 |1210 |31246 |0 |6 |AC8C14|0 |2 |0 |
+ROW |71181 |1210 |31245 |0 |7 |611F27|0 |2 |0 |
+ROW |71182 |1210 |31247 |0 |8 |F230E0|0 |2 |0 |
+ROW |71183 |1210 |31247 |0 |9 |FFAD40|0 |2 |0 |
+ROW |71184 |1211 |31243 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71185 |1212 |31266 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71186 |1212 |31265 |0 |1 |2774A4|0 |2 |0 |
+ROW |71187 |1212 |31263 |0 |2 |F63100|0 |2 |0 |
+ROW |71188 |1212 |31262 |0 |3 |A54F10|0 |2 |0 |
+ROW |71189 |1212 |31260 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71190 |1212 |31259 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71191 |1212 |31258 |0 |6 |AC8C14|0 |2 |0 |
+ROW |71192 |1212 |31256 |0 |7 |611F27|0 |2 |0 |
+ROW |71193 |1212 |31257 |0 |8 |F230E0|0 |2 |0 |
+ROW |71194 |1212 |31244 |0 |9 |FFAD40|0 |2 |0 |
+ROW |71195 |1212 |31255 |0 |10 |40CDFF|0 |2 |0 |
+ROW |71196 |1212 |31254 |0 |11 |40FFA0|0 |2 |0 |
+ROW |71197 |1212 |31253 |0 |12 |AE4500|0 |2 |0 |
+ROW |71198 |1213 |31242 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71199 |1386 |32598 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71200 |1386 |32599 |0 |1 |2774A4|0 |2 |0 |
+ROW |71201 |1386 |32600 |0 |2 |F63100|0 |2 |0 |
+ROW |71202 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71203 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
+ROW |71204 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71205 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
+ROW |71206 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
+ROW |71207 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
+ROW |71208 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71209 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
+ROW |71210 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71211 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71212 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
+ROW |71213 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
+ROW |71214 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
+ROW |71215 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
+ROW |71216 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
+ROW |71217 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71218 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
+ROW |71219 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71220 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
+ROW |71221 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
+ROW |71222 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
+ROW |71223 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71224 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
+ROW |71225 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
+ROW |71226 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
+ROW |71227 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71228 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71229 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71230 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71231 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71232 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71233 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71234 |1065 |30161 |0 |0 |969696|0 |9 |2 |
+ROW |71235 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
+ROW |71236 |1066 |30167 |0 |0 |969696|0 |9 |2 |
+ROW |71237 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
+ROW |71238 |1068 |30179 |0 |0 |969696|0 |9 |2 |
+ROW |71239 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
+ROW |71240 |1069 |30185 |0 |0 |969696|0 |9 |2 |
+ROW |71241 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
+ROW |71242 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71243 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71244 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71245 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71246 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71247 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
+ROW |71248 |741 |27083 |0 |2 |F63100|1 |2 |0 |
+ROW |71249 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
+ROW |71250 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71251 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71252 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71253 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
+ROW |71254 |742 |27624 |0 |2 |F63100|1 |2 |0 |
+ROW |71255 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
+ROW |71256 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71257 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71258 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71259 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
+ROW |71260 |743 |27981 |0 |2 |F63100|1 |2 |0 |
+ROW |71261 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
+ROW |71262 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71263 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71264 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71265 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
+ROW |71266 |740 |28010 |0 |2 |F63100|1 |2 |0 |
+ROW |71267 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
+ROW |71268 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71269 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71270 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71271 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
+ROW |71272 |745 |27103 |0 |2 |F63100|1 |2 |0 |
+ROW |71273 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
+ROW |71274 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71275 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71276 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71277 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
+ROW |71278 |746 |27185 |0 |2 |F63100|1 |2 |0 |
+ROW |71279 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
+ROW |71280 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71281 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71282 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71283 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
+ROW |71284 |747 |27220 |0 |2 |F63100|1 |2 |0 |
+ROW |71285 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
+ROW |71286 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71287 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71288 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71289 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
+ROW |71290 |748 |27256 |0 |2 |F63100|1 |2 |0 |
+ROW |71291 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
+ROW |71292 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71293 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71294 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71295 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
+ROW |71296 |749 |27277 |0 |2 |F63100|1 |2 |0 |
+ROW |71297 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
+ROW |71298 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71299 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71300 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71301 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
+ROW |71302 |750 |27326 |0 |2 |F63100|1 |2 |0 |
+ROW |71303 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
+ROW |71304 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71305 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71306 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71307 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
+ROW |71308 |752 |27455 |0 |2 |F63100|1 |2 |0 |
+ROW |71309 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
+ROW |71310 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71311 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71312 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71313 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
+ROW |71314 |753 |27491 |0 |2 |F63100|1 |2 |0 |
+ROW |71315 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
+ROW |71316 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71317 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71318 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71319 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
+ROW |71320 |754 |27525 |0 |2 |F63100|1 |2 |0 |
+ROW |71321 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
+ROW |71322 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71323 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71324 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71325 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
+ROW |71326 |755 |27561 |0 |2 |F63100|1 |2 |0 |
+ROW |71327 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
+ROW |71328 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71329 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71330 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71331 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
+ROW |71332 |756 |27647 |0 |2 |F63100|1 |2 |0 |
+ROW |71333 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
+ROW |71334 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71335 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71336 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71337 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
+ROW |71338 |758 |27727 |0 |2 |F63100|1 |2 |0 |
+ROW |71339 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
+ROW |71340 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71341 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71342 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71343 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
+ROW |71344 |759 |27761 |0 |2 |F63100|1 |2 |0 |
+ROW |71345 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
+ROW |71346 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71347 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71348 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71349 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
+ROW |71350 |760 |27793 |0 |2 |F63100|1 |2 |0 |
+ROW |71351 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
+ROW |71352 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71353 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71354 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71355 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
+ROW |71356 |762 |27877 |0 |2 |F63100|1 |2 |0 |
+ROW |71357 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
+ROW |71358 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71359 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71360 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71361 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
+ROW |71362 |763 |27914 |0 |2 |F63100|1 |2 |0 |
+ROW |71363 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
+ROW |71364 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71365 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71366 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71367 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
+ROW |71368 |764 |27949 |0 |2 |F63100|1 |2 |0 |
+ROW |71369 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
+ROW |71370 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71371 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71372 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71373 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
+ROW |71374 |773 |28123 |0 |2 |F63100|1 |2 |0 |
+ROW |71375 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
+ROW |71376 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71377 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71378 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71379 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
+ROW |71380 |785 |28228 |0 |2 |F63100|1 |2 |0 |
+ROW |71381 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
+ROW |71382 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71383 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71384 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71385 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
+ROW |71386 |790 |28298 |0 |2 |F63100|1 |2 |0 |
+ROW |71387 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
+ROW |71388 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71389 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71390 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71391 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
+ROW |71392 |865 |28973 |0 |2 |F63100|1 |2 |0 |
+ROW |71393 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
+ROW |71394 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71395 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71396 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71397 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
+ROW |71398 |766 |27123 |0 |2 |F63100|1 |2 |0 |
+ROW |71399 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
+ROW |71400 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71401 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71402 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71403 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
+ROW |71404 |886 |29082 |0 |2 |F63100|1 |2 |0 |
+ROW |71405 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
+ROW |71406 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71407 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71408 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71409 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
+ROW |71410 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
+ROW |71411 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71412 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71413 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71414 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71415 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71416 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71417 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71418 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71419 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71420 |1729 |35914 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71421 |1730 |35917 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71422 |1731 |35924 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71423 |1731 |35931 |0 |1 |2774A4|0 |2 |0 |
+ROW |71424 |1731 |35922 |0 |2 |F63100|0 |2 |0 |
+ROW |71425 |1731 |35929 |0 |3 |A54F10|0 |2 |0 |
+ROW |71426 |1731 |35921 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71427 |1731 |35928 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71428 |1732 |35932 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71429 |1732 |35925 |0 |1 |2774A4|0 |2 |0 |
+ROW |71430 |1733 |35923 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71431 |1733 |35930 |0 |1 |2774A4|0 |2 |0 |
+ROW |71432 |1734 |35948 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71433 |1734 |35949 |0 |1 |2774A4|0 |2 |0 |
+ROW |71434 |1461 |33219 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71435 |1462 |33224 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71436 |1463 |33227 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71437 |1463 |33230 |2 |1 |2774A4|0 |2 |0 |
+ROW |71438 |1463 |33229 |0 |2 |F63100|1 |2 |0 |
+ROW |71439 |1463 |33226 |0 |3 |A54F10|1 |2 |0 |
+ROW |71440 |1463 |33228 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71441 |1463 |33225 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71442 |1464 |33260 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71443 |1465 |33265 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71444 |1466 |33268 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71445 |1466 |33271 |2 |1 |2774A4|0 |2 |0 |
+ROW |71446 |1466 |33270 |0 |2 |F63100|1 |2 |0 |
+ROW |71447 |1466 |33267 |0 |3 |A54F10|1 |2 |0 |
+ROW |71448 |1466 |33269 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71449 |1466 |33266 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71450 |1467 |33301 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71451 |1468 |33306 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71452 |1469 |33309 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71453 |1469 |33312 |2 |1 |2774A4|0 |2 |0 |
+ROW |71454 |1469 |33311 |0 |2 |F63100|1 |2 |0 |
+ROW |71455 |1469 |33308 |0 |3 |A54F10|1 |2 |0 |
+ROW |71456 |1469 |33310 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71457 |1469 |33307 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71458 |1470 |33342 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71459 |1471 |33347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71460 |1472 |33350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71461 |1472 |33353 |2 |1 |2774A4|0 |2 |0 |
+ROW |71462 |1472 |33352 |0 |2 |F63100|1 |2 |0 |
+ROW |71463 |1472 |33349 |0 |3 |A54F10|1 |2 |0 |
+ROW |71464 |1472 |33351 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71465 |1472 |33348 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71466 |1473 |33383 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71467 |1474 |33388 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71468 |1475 |33391 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71469 |1475 |33394 |2 |1 |2774A4|0 |2 |0 |
+ROW |71470 |1475 |33393 |0 |2 |F63100|1 |2 |0 |
+ROW |71471 |1475 |33390 |0 |3 |A54F10|1 |2 |0 |
+ROW |71472 |1475 |33392 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71473 |1475 |33389 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71474 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71475 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71476 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71477 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71478 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71479 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71480 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71481 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71482 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71483 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71484 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71485 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71486 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71487 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71488 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71489 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71490 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
+ROW |71491 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
+ROW |71492 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71493 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71494 |1690 |35679 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71495 |1691 |35681 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71496 |1692 |35683 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71497 |1693 |35686 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71498 |1694 |35690 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71499 |1694 |35705 |0 |1 |2774A4|0 |2 |0 |
+ROW |71500 |1694 |35696 |0 |2 |F63100|0 |2 |0 |
+ROW |71501 |1694 |35687 |0 |3 |A54F10|0 |2 |0 |
+ROW |71502 |1694 |35708 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71503 |1694 |35711 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71504 |1694 |35699 |0 |6 |AC8C14|0 |2 |0 |
+ROW |71505 |1695 |35689 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71506 |1695 |35704 |0 |1 |2774A4|0 |2 |0 |
+ROW |71507 |1695 |35695 |0 |2 |F63100|0 |2 |0 |
+ROW |71508 |1695 |35701 |0 |3 |A54F10|0 |2 |0 |
+ROW |71509 |1695 |35707 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71510 |1695 |35710 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71511 |1695 |35697 |0 |6 |AC8C14|0 |2 |0 |
+ROW |71512 |1696 |35713 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71513 |1696 |35703 |0 |1 |2774A4|0 |2 |0 |
+ROW |71514 |1696 |35694 |0 |2 |F63100|0 |2 |0 |
+ROW |71515 |1696 |35712 |0 |3 |A54F10|0 |2 |0 |
+ROW |71516 |1696 |35706 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71517 |1696 |35709 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71518 |1696 |35698 |0 |6 |AC8C14|0 |2 |0 |
+ROW |71519 |1697 |35714 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71520 |1698 |35716 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71521 |1699 |35718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71522 |1699 |35720 |0 |1 |2774A4|0 |2 |0 |
+ROW |71523 |1700 |35727 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71524 |1700 |35724 |0 |1 |2774A4|0 |2 |0 |
+ROW |71525 |1701 |35726 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71526 |1701 |35723 |0 |1 |2774A4|0 |2 |0 |
+ROW |71527 |1702 |35730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71528 |1702 |35728 |0 |1 |2774A4|0 |2 |0 |
+ROW |71529 |1702 |35729 |0 |2 |F63100|0 |2 |0 |
+ROW |71530 |1703 |35737 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71531 |1703 |35733 |0 |1 |2774A4|1 |2 |0 |
+ROW |71532 |1703 |35743 |0 |2 |F63100|0 |2 |0 |
+ROW |71533 |1703 |35739 |0 |3 |A54F10|1 |2 |0 |
+ROW |71534 |1703 |35736 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71535 |1703 |35742 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71536 |1704 |35748 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71537 |1704 |35747 |0 |1 |2774A4|1 |2 |0 |
+ROW |71538 |1704 |35750 |0 |2 |F63100|0 |2 |0 |
+ROW |71539 |1704 |35749 |0 |3 |A54F10|1 |2 |0 |
+ROW |71540 |1705 |35756 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71541 |1705 |35755 |0 |1 |2774A4|1 |2 |0 |
+ROW |71542 |1705 |35758 |0 |2 |F63100|0 |2 |0 |
+ROW |71543 |1705 |35757 |0 |3 |A54F10|1 |2 |0 |
+ROW |71544 |1843 |35764 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71545 |1843 |35763 |0 |1 |2774A4|1 |2 |0 |
+ROW |71546 |1843 |35766 |0 |2 |F63100|0 |2 |0 |
+ROW |71547 |1843 |35765 |0 |3 |A54F10|1 |2 |0 |
+ROW |71548 |1844 |35771 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71549 |1844 |35769 |0 |1 |2774A4|0 |2 |0 |
+ROW |71550 |1844 |35770 |0 |2 |F63100|0 |2 |0 |
+ROW |71551 |1708 |35651 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71552 |1708 |35649 |0 |1 |2774A4|0 |2 |0 |
+ROW |71553 |1708 |35647 |0 |2 |F63100|0 |2 |0 |
+ROW |71554 |1708 |35653 |0 |3 |A54F10|0 |2 |0 |
+ROW |71555 |1708 |35652 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71556 |1708 |35650 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71557 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71558 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71559 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
+ROW |71560 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
+ROW |71561 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71562 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71563 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71564 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71565 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71566 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71567 |1476 |33419 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71568 |1476 |33422 |2 |1 |2774A4|0 |2 |0 |
+ROW |71569 |1476 |33421 |0 |2 |F63100|1 |2 |0 |
+ROW |71570 |1476 |33418 |0 |3 |A54F10|1 |2 |0 |
+ROW |71571 |1476 |33420 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71572 |1476 |33417 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71573 |1477 |33427 |0 |0 |969696|0 |9 |2 |
+ROW |71574 |1477 |33428 |0 |1 |C80000|0 |9 |0 |
+ROW |71575 |1478 |33431 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71576 |1479 |33407 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71577 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71578 |1299 |31968 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71579 |1299 |31966 |0 |1 |2774A4|0 |2 |0 |
+ROW |71580 |1299 |31965 |0 |2 |F63100|0 |2 |0 |
+ROW |71581 |1299 |31967 |0 |3 |A54F10|0 |2 |0 |
+ROW |71582 |1052 |27907 |0 |0 |969696|0 |9 |2 |
+ROW |71583 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
+ROW |71584 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71585 |1335 |32330 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71586 |1335 |32317 |5 |1 |2774A4|0 |2 |0 |
+ROW |71587 |1336 |32319 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71588 |1336 |32327 |5 |1 |2774A4|0 |2 |0 |
+ROW |71589 |1336 |32326 |5 |2 |F63100|0 |2 |0 |
+ROW |71590 |1337 |32324 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71591 |1337 |32318 |5 |1 |2774A4|0 |2 |0 |
+ROW |71592 |1338 |32311 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71593 |1338 |32310 |5 |1 |2774A4|0 |2 |0 |
+ROW |71594 |1338 |32328 |5 |2 |F63100|0 |2 |0 |
+ROW |71595 |1339 |32350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71596 |1339 |32339 |5 |1 |2774A4|0 |2 |0 |
+ROW |71597 |1340 |32331 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71598 |1341 |32347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71599 |1341 |32342 |5 |1 |2774A4|0 |2 |0 |
+ROW |71600 |1342 |32334 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71601 |1342 |32333 |5 |1 |2774A4|0 |2 |0 |
+ROW |71602 |1342 |32348 |5 |2 |F63100|0 |2 |0 |
+ROW |71603 |1343 |32373 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71604 |1343 |32360 |5 |1 |2774A4|0 |2 |0 |
+ROW |71605 |1344 |32362 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71606 |1344 |32370 |5 |1 |2774A4|0 |2 |0 |
+ROW |71607 |1344 |32369 |5 |2 |F63100|0 |2 |0 |
+ROW |71608 |1345 |32367 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71609 |1345 |32361 |5 |1 |2774A4|0 |2 |0 |
+ROW |71610 |1346 |32354 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71611 |1346 |32353 |5 |1 |2774A4|0 |2 |0 |
+ROW |71612 |1346 |32371 |5 |2 |F63100|0 |2 |0 |
+ROW |71613 |1347 |32382 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71614 |1348 |32375 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71615 |1349 |32380 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71616 |1350 |32401 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71617 |1351 |32398 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71618 |1351 |32397 |5 |1 |2774A4|0 |2 |0 |
+ROW |71619 |1351 |32396 |5 |2 |F63100|0 |2 |0 |
+ROW |71620 |1352 |32394 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71621 |1353 |32393 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71622 |1354 |32385 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71623 |1354 |32399 |5 |1 |2774A4|0 |2 |0 |
+ROW |71624 |1355 |32420 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71625 |1356 |32417 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71626 |1356 |32416 |5 |1 |2774A4|0 |2 |0 |
+ROW |71627 |1356 |32415 |5 |2 |F63100|0 |2 |0 |
+ROW |71628 |1357 |32413 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71629 |1358 |32412 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71630 |1359 |32404 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71631 |1359 |32418 |5 |1 |2774A4|0 |2 |0 |
+ROW |71632 |1360 |32436 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71633 |1361 |32439 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71634 |1362 |32440 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71635 |1363 |32442 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71636 |1364 |32443 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71637 |1365 |32428 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71638 |1365 |32429 |5 |1 |2774A4|0 |2 |0 |
+ROW |71639 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71640 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
+ROW |71641 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
+ROW |71642 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71643 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71644 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71645 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71646 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71647 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71648 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71649 |1735 |35972 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71650 |1735 |35975 |0 |1 |2774A4|0 |2 |0 |
+ROW |71651 |1736 |35977 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71652 |1736 |35980 |0 |1 |2774A4|0 |2 |0 |
+ROW |71653 |1737 |35981 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71654 |1738 |35982 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71655 |1739 |36011 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71656 |1739 |36003 |0 |1 |2774A4|0 |2 |0 |
+ROW |71657 |1739 |36013 |0 |2 |F63100|0 |2 |0 |
+ROW |71658 |1739 |36005 |0 |3 |A54F10|0 |2 |0 |
+ROW |71659 |1739 |36014 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71660 |1739 |36006 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71661 |1740 |36012 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71662 |1740 |36004 |0 |1 |2774A4|0 |2 |0 |
+ROW |71663 |1741 |36002 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71664 |1741 |36010 |0 |1 |2774A4|0 |2 |0 |
+ROW |71665 |1742 |36017 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71666 |1743 |36025 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71667 |1744 |36026 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71668 |1745 |35985 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71669 |1746 |36041 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71670 |1747 |36053 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71671 |1747 |36045 |0 |1 |2774A4|0 |2 |0 |
+ROW |71672 |1747 |36055 |0 |2 |F63100|0 |2 |0 |
+ROW |71673 |1747 |36047 |0 |3 |A54F10|0 |2 |0 |
+ROW |71674 |1747 |36056 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71675 |1747 |36048 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71676 |1748 |36054 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71677 |1748 |36046 |0 |1 |2774A4|0 |2 |0 |
+ROW |71678 |1749 |36044 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71679 |1749 |36052 |0 |1 |2774A4|0 |2 |0 |
+ROW |71680 |1750 |36059 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71681 |1751 |36060 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71682 |1752 |36029 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71683 |1753 |36077 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71684 |1754 |36078 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71685 |1755 |36079 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71686 |1756 |36080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71687 |1757 |36088 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71688 |1757 |36098 |0 |1 |2774A4|0 |2 |0 |
+ROW |71689 |1757 |36089 |0 |2 |F63100|0 |2 |0 |
+ROW |71690 |1757 |36084 |0 |3 |A54F10|0 |2 |0 |
+ROW |71691 |1757 |36091 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71692 |1757 |36085 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71693 |1758 |36082 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71694 |1758 |36083 |0 |1 |2774A4|0 |2 |0 |
+ROW |71695 |1759 |36105 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71696 |1759 |36112 |0 |1 |2774A4|0 |2 |0 |
+ROW |71697 |1759 |36103 |0 |2 |F63100|0 |2 |0 |
+ROW |71698 |1759 |36110 |0 |3 |A54F10|0 |2 |0 |
+ROW |71699 |1759 |36102 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71700 |1759 |36109 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71701 |1760 |36104 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71702 |1760 |36111 |0 |1 |2774A4|0 |2 |0 |
+ROW |71703 |1761 |36113 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71704 |1761 |36106 |0 |1 |2774A4|0 |2 |0 |
+ROW |71705 |1762 |36126 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71706 |1763 |36127 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71707 |1764 |36144 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71708 |1765 |36145 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71709 |1766 |36146 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71710 |1767 |36147 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71711 |1768 |36155 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71712 |1768 |36165 |0 |1 |2774A4|0 |2 |0 |
+ROW |71713 |1768 |36156 |0 |2 |F63100|0 |2 |0 |
+ROW |71714 |1768 |36151 |0 |3 |A54F10|0 |2 |0 |
+ROW |71715 |1768 |36158 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71716 |1768 |36152 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71717 |1769 |36149 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71718 |1769 |36150 |0 |1 |2774A4|0 |2 |0 |
+ROW |71719 |1770 |36172 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71720 |1770 |36179 |0 |1 |2774A4|0 |2 |0 |
+ROW |71721 |1770 |36170 |0 |2 |F63100|0 |2 |0 |
+ROW |71722 |1770 |36177 |0 |3 |A54F10|0 |2 |0 |
+ROW |71723 |1770 |36169 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71724 |1770 |36176 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71725 |1771 |36171 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71726 |1771 |36178 |0 |1 |2774A4|0 |2 |0 |
+ROW |71727 |1772 |36180 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71728 |1772 |36173 |0 |1 |2774A4|0 |2 |0 |
+ROW |71729 |1773 |36193 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71730 |1774 |36194 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71731 |1775 |36210 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71732 |1776 |36218 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71733 |1776 |36221 |0 |1 |2774A4|0 |2 |0 |
+ROW |71734 |1777 |36223 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71735 |1777 |36226 |0 |1 |2774A4|0 |2 |0 |
+ROW |71736 |1778 |36227 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71737 |1779 |36228 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71738 |1780 |36253 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71739 |1780 |36245 |0 |1 |2774A4|0 |2 |0 |
+ROW |71740 |1780 |36255 |0 |2 |F63100|0 |2 |0 |
+ROW |71741 |1780 |36247 |0 |3 |A54F10|0 |2 |0 |
+ROW |71742 |1780 |36256 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71743 |1780 |36248 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71744 |1781 |36254 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71745 |1781 |36246 |0 |1 |2774A4|0 |2 |0 |
+ROW |71746 |1782 |36244 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71747 |1782 |36252 |0 |1 |2774A4|0 |2 |0 |
+ROW |71748 |1783 |36259 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71749 |1784 |36231 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71750 |1785 |36295 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71751 |1785 |36287 |0 |1 |2774A4|0 |2 |0 |
+ROW |71752 |1785 |36297 |0 |2 |F63100|0 |2 |0 |
+ROW |71753 |1785 |36289 |0 |3 |A54F10|0 |2 |0 |
+ROW |71754 |1785 |36298 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71755 |1785 |36290 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71756 |1786 |36296 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71757 |1786 |36288 |0 |1 |2774A4|0 |2 |0 |
+ROW |71758 |1787 |36286 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71759 |1787 |36294 |0 |1 |2774A4|0 |2 |0 |
+ROW |71760 |1788 |36301 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71761 |1789 |36309 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71762 |1790 |36310 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71763 |1791 |36269 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71764 |1792 |36339 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71765 |1792 |36331 |0 |1 |2774A4|0 |2 |0 |
+ROW |71766 |1792 |36341 |0 |2 |F63100|0 |2 |0 |
+ROW |71767 |1792 |36333 |0 |3 |A54F10|0 |2 |0 |
+ROW |71768 |1792 |36342 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71769 |1792 |36334 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71770 |1793 |36340 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71771 |1793 |36332 |0 |1 |2774A4|0 |2 |0 |
+ROW |71772 |1794 |36330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71773 |1794 |36338 |0 |1 |2774A4|0 |2 |0 |
+ROW |71774 |1795 |36345 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71775 |1796 |36353 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71776 |1797 |36354 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71777 |1798 |36313 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71778 |1799 |36371 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71779 |1800 |36383 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71780 |1800 |36375 |0 |1 |2774A4|0 |2 |0 |
+ROW |71781 |1800 |36385 |0 |2 |F63100|0 |2 |0 |
+ROW |71782 |1800 |36377 |0 |3 |A54F10|0 |2 |0 |
+ROW |71783 |1800 |36386 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71784 |1800 |36378 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71785 |1801 |36384 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71786 |1801 |36376 |0 |1 |2774A4|0 |2 |0 |
+ROW |71787 |1802 |36374 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71788 |1802 |36382 |0 |1 |2774A4|0 |2 |0 |
+ROW |71789 |1803 |36389 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71790 |1804 |36397 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71791 |1805 |36398 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71792 |1806 |36357 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71793 |1807 |36415 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71794 |1808 |36427 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71795 |1808 |36419 |0 |1 |2774A4|0 |2 |0 |
+ROW |71796 |1808 |36429 |0 |2 |F63100|0 |2 |0 |
+ROW |71797 |1808 |36421 |0 |3 |A54F10|0 |2 |0 |
+ROW |71798 |1808 |36430 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71799 |1808 |36422 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71800 |1809 |36428 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71801 |1809 |36420 |0 |1 |2774A4|0 |2 |0 |
+ROW |71802 |1810 |36418 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71803 |1810 |36426 |0 |1 |2774A4|0 |2 |0 |
+ROW |71804 |1811 |36433 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71805 |1812 |36441 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71806 |1813 |36442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71807 |1814 |36401 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71808 |1815 |36460 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71809 |1816 |36472 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71810 |1816 |36464 |0 |1 |2774A4|0 |2 |0 |
+ROW |71811 |1816 |36474 |0 |2 |F63100|0 |2 |0 |
+ROW |71812 |1816 |36466 |0 |3 |A54F10|0 |2 |0 |
+ROW |71813 |1816 |36475 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71814 |1816 |36467 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71815 |1817 |36473 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71816 |1817 |36465 |0 |1 |2774A4|0 |2 |0 |
+ROW |71817 |1818 |36463 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71818 |1818 |36471 |0 |1 |2774A4|0 |2 |0 |
+ROW |71819 |1819 |36478 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71820 |1820 |36486 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71821 |1821 |36487 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71822 |1822 |36445 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71823 |1823 |36505 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71824 |1824 |36517 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71825 |1824 |36509 |0 |1 |2774A4|0 |2 |0 |
+ROW |71826 |1824 |36519 |0 |2 |F63100|0 |2 |0 |
+ROW |71827 |1824 |36511 |0 |3 |A54F10|0 |2 |0 |
+ROW |71828 |1824 |36520 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71829 |1824 |36512 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71830 |1825 |36518 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71831 |1825 |36510 |0 |1 |2774A4|0 |2 |0 |
+ROW |71832 |1826 |36508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71833 |1826 |36516 |0 |1 |2774A4|0 |2 |0 |
+ROW |71834 |1827 |36523 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71835 |1828 |36531 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71836 |1829 |36532 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71837 |1830 |36490 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71838 |1831 |36550 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71839 |1832 |36563 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71840 |1832 |36555 |0 |1 |2774A4|0 |2 |0 |
+ROW |71841 |1832 |36565 |0 |2 |F63100|0 |2 |0 |
+ROW |71842 |1832 |36557 |0 |3 |A54F10|0 |2 |0 |
+ROW |71843 |1832 |36566 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71844 |1832 |36558 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71845 |1833 |36564 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71846 |1833 |36556 |0 |1 |2774A4|0 |2 |0 |
+ROW |71847 |1834 |36554 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71848 |1834 |36562 |0 |1 |2774A4|0 |2 |0 |
+ROW |71849 |1835 |36569 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71850 |1836 |36577 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71851 |1837 |36578 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71852 |1838 |36535 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71853 |1214 |31276 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71854 |1214 |31277 |5 |1 |2774A4|0 |2 |0 |
+ROW |71855 |1215 |31279 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71856 |1215 |31280 |5 |1 |2774A4|0 |2 |0 |
+ROW |71857 |1216 |31282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71858 |1216 |31283 |5 |1 |2774A4|0 |2 |0 |
+ROW |71859 |1217 |31286 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71860 |1217 |31289 |5 |1 |2774A4|0 |2 |0 |
+ROW |71861 |1218 |31292 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71862 |1218 |31295 |5 |1 |2774A4|0 |2 |0 |
+ROW |71863 |1219 |31298 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71864 |1219 |31301 |5 |1 |2774A4|0 |2 |0 |
+ROW |71865 |1220 |31285 |0 |0 |1A7C11|1 |2 |0 |
+ROW |71866 |1220 |31288 |5 |1 |2774A4|0 |2 |0 |
+ROW |71867 |1221 |31291 |0 |0 |1A7C11|1 |2 |0 |
+ROW |71868 |1221 |31294 |5 |1 |2774A4|0 |2 |0 |
+ROW |71869 |1222 |31297 |0 |0 |1A7C11|1 |2 |0 |
+ROW |71870 |1222 |31300 |5 |1 |2774A4|0 |2 |0 |
+ROW |71871 |887 |29211 |0 |0 |969696|0 |9 |2 |
+ROW |71872 |887 |29210 |0 |1 |C80000|0 |9 |0 |
+ROW |71873 |888 |29225 |0 |0 |969696|0 |9 |2 |
+ROW |71874 |888 |29224 |0 |1 |C80000|0 |9 |0 |
+ROW |71875 |889 |29239 |0 |0 |969696|0 |9 |2 |
+ROW |71876 |889 |29238 |0 |1 |C80000|0 |9 |0 |
+ROW |71877 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71878 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
+ROW |71879 |899 |29218 |0 |2 |F63100|1 |2 |0 |
+ROW |71880 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
+ROW |71881 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71882 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71883 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71884 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
+ROW |71885 |900 |29232 |0 |2 |F63100|1 |2 |0 |
+ROW |71886 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
+ROW |71887 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71888 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71889 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71890 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
+ROW |71891 |901 |29246 |0 |2 |F63100|1 |2 |0 |
+ROW |71892 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
+ROW |71893 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71894 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71895 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71896 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
+ROW |71897 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71898 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
+ROW |71899 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71900 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
+ROW |71901 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71902 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
+ROW |71903 |908 |29095 |0 |2 |F63100|0 |2 |0 |
+ROW |71904 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
+ROW |71905 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71906 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71907 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
+ROW |71908 |908 |29091 |0 |7 |611F27|0 |2 |0 |
+ROW |71909 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
+ROW |71910 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71911 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
+ROW |71912 |909 |29132 |0 |2 |F63100|0 |2 |0 |
+ROW |71913 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
+ROW |71914 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71915 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71916 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
+ROW |71917 |909 |29128 |0 |7 |611F27|0 |2 |0 |
+ROW |71918 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
+ROW |71919 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71920 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
+ROW |71921 |910 |29169 |0 |2 |F63100|0 |2 |0 |
+ROW |71922 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
+ROW |71923 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |71924 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
+ROW |71925 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
+ROW |71926 |910 |29165 |0 |7 |611F27|0 |2 |0 |
+ROW |71927 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
+ROW |71928 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71929 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71930 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71931 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
+ROW |71932 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
+ROW |71933 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
+ROW |71934 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
+ROW |71935 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
+ROW |71936 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
+ROW |71937 |914 |31270 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71938 |915 |31271 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71939 |916 |31272 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71940 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71941 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
+ROW |71942 |923 |29117 |0 |2 |F63100|0 |2 |0 |
+ROW |71943 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71944 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
+ROW |71945 |924 |29154 |0 |2 |F63100|0 |2 |0 |
+ROW |71946 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71947 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
+ROW |71948 |925 |29191 |0 |2 |F63100|0 |2 |0 |
+ROW |71949 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71950 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
+ROW |71951 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71952 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
+ROW |71953 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71954 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
+ROW |71955 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71956 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
+ROW |71957 |902 |29100 |0 |2 |F63100|0 |2 |0 |
+ROW |71958 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
+ROW |71959 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71960 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
+ROW |71961 |903 |29137 |0 |2 |F63100|0 |2 |0 |
+ROW |71962 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
+ROW |71963 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71964 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
+ROW |71965 |904 |29174 |0 |2 |F63100|0 |2 |0 |
+ROW |71966 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
+ROW |71967 |1223 |31307 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71968 |1223 |31308 |5 |1 |2774A4|0 |2 |0 |
+ROW |71969 |1224 |31310 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71970 |1224 |31311 |5 |1 |2774A4|0 |2 |0 |
+ROW |71971 |1225 |31314 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71972 |1225 |31317 |5 |1 |2774A4|0 |2 |0 |
+ROW |71973 |1226 |31320 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71974 |1226 |31323 |5 |1 |2774A4|0 |2 |0 |
+ROW |71975 |1227 |31313 |0 |0 |1A7C11|1 |2 |0 |
+ROW |71976 |1227 |31316 |5 |1 |2774A4|0 |2 |0 |
+ROW |71977 |1228 |31319 |0 |0 |1A7C11|1 |2 |0 |
+ROW |71978 |1228 |31322 |5 |1 |2774A4|0 |2 |0 |
+ROW |71979 |926 |29356 |0 |0 |969696|0 |9 |2 |
+ROW |71980 |926 |29355 |0 |1 |C80000|0 |9 |0 |
+ROW |71981 |927 |29370 |0 |0 |969696|0 |9 |2 |
+ROW |71982 |927 |29369 |0 |1 |C80000|0 |9 |0 |
+ROW |71983 |934 |29361 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71984 |934 |29362 |2 |1 |2774A4|0 |2 |0 |
+ROW |71985 |934 |29363 |0 |2 |F63100|1 |2 |0 |
+ROW |71986 |934 |29364 |0 |3 |A54F10|1 |2 |0 |
+ROW |71987 |934 |29365 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71988 |934 |29366 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71989 |935 |29375 |5 |0 |1A7C11|0 |2 |0 |
+ROW |71990 |935 |29376 |2 |1 |2774A4|0 |2 |0 |
+ROW |71991 |935 |29377 |0 |2 |F63100|1 |2 |0 |
+ROW |71992 |935 |29378 |0 |3 |A54F10|1 |2 |0 |
+ROW |71993 |935 |29379 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |71994 |935 |29380 |0 |5 |6C59DC|1 |2 |0 |
+ROW |71995 |942 |29275 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71996 |942 |29288 |0 |1 |2774A4|0 |2 |0 |
+ROW |71997 |943 |29312 |0 |0 |1A7C11|0 |2 |0 |
+ROW |71998 |943 |29325 |0 |1 |2774A4|0 |2 |0 |
+ROW |71999 |940 |29284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72000 |940 |29283 |0 |1 |2774A4|0 |2 |0 |
+ROW |72001 |940 |29281 |0 |2 |F63100|0 |2 |0 |
+ROW |72002 |940 |29274 |0 |3 |A54F10|0 |2 |0 |
+ROW |72003 |940 |29280 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |72004 |940 |29279 |0 |5 |6C59DC|0 |2 |0 |
+ROW |72005 |940 |29278 |0 |6 |AC8C14|0 |2 |0 |
+ROW |72006 |940 |29277 |0 |7 |611F27|0 |2 |0 |
+ROW |72007 |940 |29276 |0 |8 |F230E0|0 |2 |0 |
+ROW |72008 |941 |29321 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72009 |941 |29320 |0 |1 |2774A4|0 |2 |0 |
+ROW |72010 |941 |29318 |0 |2 |F63100|0 |2 |0 |
+ROW |72011 |941 |29311 |0 |3 |A54F10|0 |2 |0 |
+ROW |72012 |941 |29317 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |72013 |941 |29316 |0 |5 |6C59DC|0 |2 |0 |
+ROW |72014 |941 |29315 |0 |6 |AC8C14|0 |2 |0 |
+ROW |72015 |941 |29314 |0 |7 |611F27|0 |2 |0 |
+ROW |72016 |941 |29313 |0 |8 |F230E0|0 |2 |0 |
+ROW |72017 |938 |29347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72018 |939 |29348 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72019 |946 |29290 |2 |0 |1A7C11|0 |2 |0 |
+ROW |72020 |946 |29291 |5 |1 |2774A4|0 |2 |0 |
+ROW |72021 |947 |29327 |2 |0 |1A7C11|0 |2 |0 |
+ROW |72022 |947 |29328 |5 |1 |2774A4|0 |2 |0 |
+ROW |72023 |944 |31303 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72024 |945 |31304 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72025 |950 |29304 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72026 |950 |29305 |0 |1 |2774A4|0 |2 |0 |
+ROW |72027 |950 |29303 |0 |2 |F63100|0 |2 |0 |
+ROW |72028 |951 |29341 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72029 |951 |29342 |0 |1 |2774A4|0 |2 |0 |
+ROW |72030 |951 |29340 |0 |2 |F63100|0 |2 |0 |
+ROW |72031 |948 |29293 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72032 |948 |29292 |0 |1 |2774A4|0 |2 |0 |
+ROW |72033 |949 |29330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72034 |949 |29329 |0 |1 |2774A4|0 |2 |0 |
+ROW |72035 |936 |29282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72036 |936 |29287 |0 |1 |2774A4|0 |2 |0 |
+ROW |72037 |936 |29286 |0 |2 |F63100|0 |2 |0 |
+ROW |72038 |936 |29273 |0 |3 |A54F10|1 |2 |0 |
+ROW |72039 |937 |29319 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72040 |937 |29324 |0 |1 |2774A4|0 |2 |0 |
+ROW |72041 |937 |29323 |0 |2 |F63100|0 |2 |0 |
+ROW |72042 |937 |29310 |0 |3 |A54F10|1 |2 |0 |
+ROW |72043 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72044 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
+ROW |72045 |952 |29438 |0 |2 |F63100|1 |2 |0 |
+ROW |72046 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
+ROW |72047 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |72048 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
+ROW |72049 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72050 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
+ROW |72051 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72052 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
+ROW |72053 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
+ROW |72054 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
+ROW |72055 |953 |29446 |0 |0 |969696|0 |9 |2 |
+ROW |72056 |953 |29432 |0 |1 |C80000|0 |9 |0 |
+ROW |72057 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72058 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
+ROW |72059 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72060 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
+ROW |72061 |959 |29411 |0 |2 |F63100|0 |2 |0 |
+ROW |72062 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
+ROW |72063 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |72064 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
+ROW |72065 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
+ROW |72066 |959 |29408 |0 |7 |611F27|0 |2 |0 |
+ROW |72067 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
+ROW |72068 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72069 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
+ROW |72070 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
+ROW |72071 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72072 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72073 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
+ROW |72074 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72075 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
+ROW |72076 |957 |29418 |0 |2 |F63100|0 |2 |0 |
+ROW |72077 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
+ROW |72078 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72079 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
+ROW |72080 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72081 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
+ROW |72082 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72083 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
+ROW |72084 |868 |29022 |0 |2 |F63100|0 |2 |0 |
+ROW |72085 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
+ROW |72086 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |72087 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
+ROW |72088 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
+ROW |72089 |868 |29025 |0 |7 |611F27|0 |2 |0 |
+ROW |72090 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
+ROW |72091 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72092 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
+ROW |72093 |869 |29039 |0 |2 |F63100|0 |2 |0 |
+ROW |72094 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
+ROW |72095 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |72096 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
+ROW |72097 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
+ROW |72098 |869 |29042 |0 |7 |611F27|0 |2 |0 |
+ROW |72099 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
+ROW |72100 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72101 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72102 |872 |29028 |0 |0 |969696|0 |9 |2 |
+ROW |72103 |872 |29027 |0 |1 |C80000|0 |9 |0 |
+ROW |72104 |873 |29045 |0 |0 |969696|0 |9 |2 |
+ROW |72105 |873 |29044 |0 |1 |C80000|0 |9 |0 |
+ROW |72106 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72107 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
+ROW |72108 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72109 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
+ROW |72110 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
+ROW |72111 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
+ROW |72112 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
+ROW |72113 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
+ROW |72114 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72115 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72116 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72117 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
+ROW |72118 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72119 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
+ROW |72120 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72121 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
+ROW |72122 |880 |28989 |0 |2 |F63100|0 |2 |0 |
+ROW |72123 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
+ROW |72124 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72125 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
+ROW |72126 |881 |29004 |0 |2 |F63100|0 |2 |0 |
+ROW |72127 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
+ROW |72128 |964 |29513 |0 |0 |969696|0 |9 |2 |
+ROW |72129 |964 |29512 |0 |1 |C80000|0 |9 |0 |
+ROW |72130 |965 |29522 |0 |0 |969696|0 |9 |2 |
+ROW |72131 |965 |29521 |0 |1 |C80000|0 |9 |0 |
+ROW |72132 |1839 |36585 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72133 |1839 |36588 |2 |1 |2774A4|0 |2 |0 |
+ROW |72134 |1839 |36587 |0 |2 |F63100|1 |2 |0 |
+ROW |72135 |1839 |36584 |0 |3 |A54F10|1 |2 |0 |
+ROW |72136 |1839 |36586 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |72137 |1839 |36583 |0 |5 |6C59DC|1 |2 |0 |
+ROW |72138 |1840 |36591 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72139 |1840 |36594 |2 |1 |2774A4|0 |2 |0 |
+ROW |72140 |1840 |36593 |0 |2 |F63100|1 |2 |0 |
+ROW |72141 |1840 |36590 |0 |3 |A54F10|1 |2 |0 |
+ROW |72142 |1840 |36592 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |72143 |1840 |36589 |0 |5 |6C59DC|1 |2 |0 |
+ROW |72144 |1366 |32445 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72145 |1366 |32448 |0 |1 |2774A4|0 |2 |0 |
+ROW |72146 |1367 |32449 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72147 |1367 |32452 |0 |1 |2774A4|0 |2 |0 |
+ROW |72148 |1368 |32446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72149 |1368 |32447 |5 |1 |2774A4|0 |2 |0 |
+ROW |72150 |1369 |32450 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72151 |1369 |32451 |5 |1 |2774A4|0 |2 |0 |
+ROW |72152 |1229 |31337 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72153 |1229 |31338 |5 |1 |2774A4|0 |2 |0 |
+ROW |72154 |1230 |31341 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72155 |1230 |31342 |5 |1 |2774A4|0 |2 |0 |
+ROW |72156 |1231 |31336 |0 |0 |1A7C11|1 |2 |0 |
+ROW |72157 |1231 |36630 |5 |1 |2774A4|0 |2 |0 |
+ROW |72158 |1232 |31340 |0 |0 |1A7C11|1 |2 |0 |
+ROW |72159 |1232 |36631 |5 |1 |2774A4|0 |2 |0 |
+ROW |72160 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72161 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
+ROW |72162 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72163 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
+ROW |72164 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72165 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
+ROW |72166 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72167 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
+ROW |72168 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72169 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72170 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72171 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72172 |980 |31327 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72173 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
+ROW |72174 |981 |31330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72175 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
+ROW |72176 |982 |29620 |0 |0 |969696|0 |9 |2 |
+ROW |72177 |982 |29619 |0 |1 |C80000|0 |9 |0 |
+ROW |72178 |983 |29629 |0 |0 |969696|0 |9 |2 |
+ROW |72179 |983 |29628 |0 |1 |C80000|0 |9 |0 |
+ROW |72180 |1841 |36607 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72181 |1841 |36610 |2 |1 |2774A4|0 |2 |0 |
+ROW |72182 |1841 |36609 |0 |2 |F63100|1 |2 |0 |
+ROW |72183 |1841 |36606 |0 |3 |A54F10|1 |2 |0 |
+ROW |72184 |1841 |36608 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |72185 |1841 |36605 |0 |5 |6C59DC|1 |2 |0 |
+ROW |72186 |1842 |36613 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72187 |1842 |36616 |2 |1 |2774A4|0 |2 |0 |
+ROW |72188 |1842 |36615 |0 |2 |F63100|1 |2 |0 |
+ROW |72189 |1842 |36612 |0 |3 |A54F10|1 |2 |0 |
+ROW |72190 |1842 |36614 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |72191 |1842 |36611 |0 |5 |6C59DC|1 |2 |0 |
+ROW |72192 |1370 |32453 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72193 |1370 |32456 |0 |1 |2774A4|0 |2 |0 |
+ROW |72194 |1371 |32457 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72195 |1371 |32460 |0 |1 |2774A4|0 |2 |0 |
+ROW |72196 |1372 |32454 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72197 |1372 |32455 |5 |1 |2774A4|0 |2 |0 |
+ROW |72198 |1373 |32458 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72199 |1373 |32459 |5 |1 |2774A4|0 |2 |0 |
+ROW |72200 |1233 |31355 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72201 |1233 |31356 |5 |1 |2774A4|0 |2 |0 |
+ROW |72202 |1234 |31359 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72203 |1234 |31360 |5 |1 |2774A4|0 |2 |0 |
+ROW |72204 |1235 |31354 |0 |0 |1A7C11|1 |2 |0 |
+ROW |72205 |1235 |36632 |5 |1 |2774A4|0 |2 |0 |
+ROW |72206 |1236 |31358 |0 |0 |1A7C11|1 |2 |0 |
+ROW |72207 |1236 |36633 |5 |1 |2774A4|0 |2 |0 |
+ROW |72208 |992 |29563 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72209 |992 |29562 |0 |1 |2774A4|0 |2 |0 |
+ROW |72210 |993 |29589 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72211 |993 |29588 |0 |1 |2774A4|0 |2 |0 |
+ROW |72212 |994 |29565 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72213 |994 |29564 |0 |1 |2774A4|0 |2 |0 |
+ROW |72214 |995 |29591 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72215 |995 |29590 |0 |1 |2774A4|0 |2 |0 |
+ROW |72216 |990 |29561 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72217 |991 |29587 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72218 |996 |29569 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72219 |997 |29595 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72220 |998 |31345 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72221 |998 |29573 |0 |1 |2774A4|0 |2 |0 |
+ROW |72222 |999 |31348 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72223 |999 |29599 |0 |1 |2774A4|0 |2 |0 |
+ROW |72224 |1489 |33568 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72225 |1490 |33581 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72226 |1490 |33569 |0 |1 |2774A4|0 |2 |0 |
+ROW |72227 |1491 |33583 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72228 |1491 |33579 |0 |1 |2774A4|0 |2 |0 |
+ROW |72229 |1492 |33619 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72230 |1493 |33632 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72231 |1493 |33620 |0 |1 |2774A4|0 |2 |0 |
+ROW |72232 |1494 |33634 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72233 |1494 |33630 |0 |1 |2774A4|0 |2 |0 |
+ROW |72234 |1495 |33670 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72235 |1496 |33683 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72236 |1496 |33671 |0 |1 |2774A4|0 |2 |0 |
+ROW |72237 |1497 |33685 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72238 |1497 |33681 |0 |1 |2774A4|0 |2 |0 |
+ROW |72239 |1498 |33721 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72240 |1499 |33734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72241 |1499 |33722 |0 |1 |2774A4|0 |2 |0 |
+ROW |72242 |1500 |33736 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72243 |1500 |33732 |0 |1 |2774A4|0 |2 |0 |
+ROW |72244 |1501 |33772 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72245 |1502 |33785 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72246 |1502 |33773 |0 |1 |2774A4|0 |2 |0 |
+ROW |72247 |1503 |33787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72248 |1503 |33783 |0 |1 |2774A4|0 |2 |0 |
+ROW |72249 |1504 |33823 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72250 |1505 |33836 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72251 |1505 |33824 |0 |1 |2774A4|0 |2 |0 |
+ROW |72252 |1506 |33838 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72253 |1506 |33834 |0 |1 |2774A4|0 |2 |0 |
+ROW |72254 |1507 |33874 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72255 |1508 |33887 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72256 |1508 |33875 |0 |1 |2774A4|0 |2 |0 |
+ROW |72257 |1509 |33889 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72258 |1509 |33885 |0 |1 |2774A4|0 |2 |0 |
+ROW |72259 |1510 |33925 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72260 |1481 |33445 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72261 |1481 |33433 |0 |1 |2774A4|0 |2 |0 |
+ROW |72262 |1482 |33447 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72263 |1482 |33443 |0 |1 |2774A4|0 |2 |0 |
+ROW |72264 |1511 |33930 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72265 |1512 |33943 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72266 |1512 |33931 |0 |1 |2774A4|0 |2 |0 |
+ROW |72267 |1513 |33945 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72268 |1513 |33941 |0 |1 |2774A4|0 |2 |0 |
+ROW |72269 |1514 |33981 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72270 |1515 |33994 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72271 |1515 |33982 |0 |1 |2774A4|0 |2 |0 |
+ROW |72272 |1516 |33996 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72273 |1516 |33992 |0 |1 |2774A4|0 |2 |0 |
+ROW |72274 |1517 |34032 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72275 |1518 |34045 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72276 |1518 |34033 |0 |1 |2774A4|0 |2 |0 |
+ROW |72277 |1519 |34047 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72278 |1519 |34043 |0 |1 |2774A4|0 |2 |0 |
+ROW |72279 |1403 |32790 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72280 |1404 |32809 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72281 |1404 |32807 |0 |1 |2774A4|0 |2 |0 |
+ROW |72282 |1404 |32811 |0 |2 |F63100|0 |2 |0 |
+ROW |72283 |1405 |32804 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72284 |1405 |32805 |0 |1 |2774A4|0 |2 |0 |
+ROW |72285 |1405 |32806 |0 |2 |F63100|0 |2 |0 |
+ROW |72286 |1406 |32810 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72287 |1406 |32808 |0 |1 |2774A4|0 |2 |0 |
+ROW |72288 |1406 |32812 |0 |2 |F63100|0 |2 |0 |
+ROW |72289 |1407 |32815 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72290 |1408 |32819 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72291 |1408 |32817 |0 |1 |2774A4|0 |2 |0 |
+ROW |72292 |1408 |32821 |0 |2 |F63100|0 |2 |0 |
+ROW |72293 |1409 |32820 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72294 |1409 |32818 |0 |1 |2774A4|0 |2 |0 |
+ROW |72295 |1409 |32822 |0 |2 |F63100|0 |2 |0 |
+ROW |72296 |1410 |32828 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72297 |1410 |32827 |0 |1 |2774A4|0 |2 |0 |
+ROW |72298 |1410 |32823 |0 |2 |F63100|0 |2 |0 |
+ROW |72299 |1411 |32777 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72300 |1411 |32778 |0 |1 |2774A4|0 |2 |0 |
+ROW |72301 |1483 |33525 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72302 |1483 |33524 |0 |1 |2774A4|0 |2 |0 |
+ROW |72303 |1483 |33523 |0 |2 |F63100|0 |2 |0 |
+ROW |72304 |1483 |33522 |0 |3 |A54F10|0 |2 |0 |
+ROW |72305 |1484 |33564 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72306 |1484 |33554 |0 |1 |2774A4|0 |2 |0 |
+ROW |72307 |1485 |33500 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72308 |1485 |33507 |0 |1 |2774A4|0 |2 |0 |
+ROW |72309 |1485 |33509 |0 |2 |F63100|0 |2 |0 |
+ROW |72310 |1485 |33508 |0 |3 |A54F10|0 |2 |0 |
+ROW |72311 |1486 |33480 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72312 |1486 |33491 |0 |1 |2774A4|0 |2 |0 |
+ROW |72313 |1486 |33488 |0 |2 |F63100|0 |2 |0 |
+ROW |72314 |1486 |33489 |0 |3 |A54F10|0 |2 |0 |
+ROW |72315 |1487 |33506 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72316 |1487 |33505 |0 |1 |2774A4|0 |2 |0 |
+ROW |72317 |1487 |33512 |0 |2 |F63100|0 |2 |0 |
+ROW |72318 |1487 |33504 |0 |3 |A54F10|0 |2 |0 |
+ROW |72319 |1387 |32632 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72320 |1388 |32635 |1 |0 |1A7C11|0 |2 |0 |
+ROW |72321 |1388 |32635 |1 |1 |2774A4|0 |2 |0 |
+ROW |72322 |1389 |32643 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72323 |1389 |32646 |2 |1 |2774A4|0 |2 |0 |
+ROW |72324 |1389 |32645 |0 |2 |F63100|1 |2 |0 |
+ROW |72325 |1389 |32642 |0 |3 |A54F10|1 |2 |0 |
+ROW |72326 |1389 |32644 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |72327 |1389 |32641 |0 |5 |6C59DC|1 |2 |0 |
+ROW |72328 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
+ROW |72329 |1676 |34973 |5 |0 |1A7C11|0 |2 |0 |
+ROW |72330 |1676 |34978 |2 |1 |2774A4|0 |2 |0 |
+ROW |72331 |1676 |34976 |0 |2 |F63100|1 |2 |0 |
+ROW |72332 |1676 |34971 |0 |3 |A54F10|1 |2 |0 |
+ROW |72333 |1676 |34975 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |72334 |1676 |34970 |0 |5 |6C59DC|1 |2 |0 |
TABLE |hostmacro
FIELDS|hostmacroid|hostid|macro |value |description |type|
@@ -23591,7 +23623,7 @@ ROW |863 |10275 |{$VFS.DEV.WRITE.AWAIT.WARN}
ROW |864 |10276 |{$IF.ERRORS.WARN} |2 | |0 |
ROW |866 |10276 |{$IFCONTROL} |1 | |0 |
ROW |867 |10276 |{$NET.IF.IFNAME.MATCHES} |^.*$ | |0 |
-ROW |868 |10276 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9a-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
+ROW |868 |10276 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9A-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
ROW |869 |10277 |{$KERNEL.MAXFILES.MIN} |256 | |0 |
ROW |870 |10277 |{$KERNEL.MAXPROC.MIN} |1024 | |0 |
ROW |871 |10277 |{$SYSTEM.FUZZYTIME.MAX} |60 | |0 |
@@ -23615,7 +23647,7 @@ ROW |888 |10281 |{$VFS.DEV.WRITE.AWAIT.WARN}
ROW |889 |10282 |{$IF.ERRORS.WARN} |2 | |0 |
ROW |891 |10282 |{$IFCONTROL} |1 | |0 |
ROW |892 |10282 |{$NET.IF.IFNAME.MATCHES} |^.*$ | |0 |
-ROW |893 |10282 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9a-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
+ROW |893 |10282 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9A-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
ROW |894 |10283 |{$KERNEL.MAXFILES.MIN} |256 | |0 |
ROW |895 |10283 |{$KERNEL.MAXPROC.MIN} |1024 | |0 |
ROW |896 |10283 |{$SYSTEM.FUZZYTIME.MAX} |60 | |0 |
@@ -23630,7 +23662,7 @@ ROW |904 |10285 |{$MEMORY.UTIL.MAX}
ROW |905 |10285 |{$NET.IF.IFALIAS.MATCHES} |^.*$ | |0 |
ROW |906 |10285 |{$NET.IF.IFALIAS.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
ROW |907 |10285 |{$NET.IF.IFNAME.MATCHES} |^.*$ | |0 |
-ROW |908 |10285 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9a-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
+ROW |908 |10285 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9A-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
ROW |909 |10285 |{$NET.IF.IFOPERSTATUS.MATCHES} |^.*$ | |0 |
ROW |910 |10285 |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |^7$ |Ignore notPresent(7) |0 |
ROW |911 |10285 |{$NODE_EXPORTER_PORT} |9100 |TCP Port node_exporter is listening on. |0 |
@@ -25359,6 +25391,8 @@ ROW |2760 |10431 |{$ZYXEL.LLD.FILTER.SFP.STATUS.NOT_MATCHES}
ROW |2761 |10431 |{$ZYXEL.LLD.FILTER.SFPDDM.DESC.MATCHES} |.* |Filter by discoverable SFP modules name. |0 |
ROW |2762 |10431 |{$ZYXEL.LLD.FILTER.SFPDDM.DESC.NOT_MATCHES} |N/A |Filter to exclude discovered SFP modules by name. |0 |
ROW |2763 |10431 |{$ZYXEL.LLD.SFP.UPDATE} |10m |Receiving data from the SFP module is slow, we do not recommend setting the interval less than 10 minutes. |0 |
+ROW |2764 |10415 |{$BIGIP.TEMP.HIGH} |50 |The critical threshold of the temperature in °C |0 |
+ROW |2765 |10415 |{$BIGIP.TEMP.WARN} |45 |The warning threshold of the temperature in °C |0 |
TABLE |hosts_groups
FIELDS|hostgroupid|hostid|groupid|
@@ -26052,4750 +26086,4752 @@ ROW |127511 |1605 |34806 |
ROW |127512 |1607 |34807 |
ROW |127513 |1611 |34833 |
ROW |127514 |1609 |34834 |
-ROW |138695 |1116 |28743 |
-ROW |138696 |1116 |28744 |
-ROW |138697 |1116 |28745 |
-ROW |138698 |1116 |28746 |
-ROW |138699 |1116 |28747 |
-ROW |138700 |1116 |28748 |
-ROW |138701 |1117 |30896 |
-ROW |138702 |1116 |30897 |
-ROW |138703 |1116 |30898 |
-ROW |138704 |1116 |30899 |
-ROW |138705 |1116 |30900 |
-ROW |138706 |1116 |30901 |
-ROW |138707 |1116 |30902 |
-ROW |138708 |1116 |30903 |
-ROW |138709 |1116 |30904 |
-ROW |138710 |1116 |30905 |
-ROW |138711 |1116 |30906 |
-ROW |138712 |1116 |30907 |
-ROW |138713 |1116 |30908 |
-ROW |138714 |1116 |30909 |
-ROW |138715 |1116 |30910 |
-ROW |138716 |1116 |30911 |
-ROW |138717 |1116 |30912 |
-ROW |138718 |1116 |30913 |
-ROW |138719 |1116 |30914 |
-ROW |138720 |1116 |30915 |
-ROW |138721 |1116 |30917 |
-ROW |138722 |1116 |30918 |
-ROW |138723 |1116 |30919 |
-ROW |138724 |1116 |30920 |
-ROW |138725 |1116 |30921 |
-ROW |138726 |1116 |30922 |
-ROW |138727 |1119 |28775 |
-ROW |138728 |1118 |28776 |
-ROW |138729 |1118 |28777 |
-ROW |138730 |1118 |28778 |
-ROW |138731 |1118 |28779 |
-ROW |138732 |1118 |28780 |
-ROW |138733 |1118 |28781 |
-ROW |138734 |1118 |28782 |
-ROW |138735 |1118 |28783 |
-ROW |138736 |1118 |28784 |
-ROW |138737 |1118 |28785 |
-ROW |138738 |1118 |28786 |
-ROW |138739 |1118 |28787 |
-ROW |138740 |1118 |28788 |
-ROW |138741 |1118 |28789 |
-ROW |138742 |1118 |28790 |
-ROW |138743 |1118 |28791 |
-ROW |138744 |1118 |28792 |
-ROW |138745 |1118 |28793 |
-ROW |138746 |1118 |28794 |
-ROW |138747 |1118 |28795 |
-ROW |138748 |1118 |28796 |
-ROW |138749 |1118 |28798 |
-ROW |138750 |1118 |28799 |
-ROW |138751 |1118 |28800 |
-ROW |138752 |1118 |28801 |
-ROW |138753 |1118 |28802 |
-ROW |138754 |1118 |28803 |
-ROW |138755 |1349 |31800 |
-ROW |138756 |1349 |31801 |
-ROW |138757 |1349 |31802 |
-ROW |138758 |1348 |31803 |
-ROW |138759 |1349 |31804 |
-ROW |138760 |1348 |31805 |
-ROW |138761 |1348 |31806 |
-ROW |138762 |1348 |31807 |
-ROW |138763 |1348 |31808 |
-ROW |138764 |1348 |31809 |
-ROW |138765 |1348 |31810 |
-ROW |138766 |1348 |31811 |
-ROW |138767 |1348 |31812 |
-ROW |138768 |1348 |31813 |
-ROW |138769 |1348 |31814 |
-ROW |138770 |1348 |31815 |
-ROW |138771 |1348 |31816 |
-ROW |138772 |1348 |31817 |
-ROW |138773 |1348 |31818 |
-ROW |138774 |1348 |31819 |
-ROW |138775 |1348 |31820 |
-ROW |138776 |1348 |31821 |
-ROW |138777 |1348 |31822 |
-ROW |138778 |1348 |31823 |
-ROW |138779 |1348 |31824 |
-ROW |138780 |1348 |31825 |
-ROW |138781 |1348 |31826 |
-ROW |138782 |1348 |31827 |
-ROW |138783 |1348 |31828 |
-ROW |138784 |1348 |31829 |
-ROW |138785 |1348 |31830 |
-ROW |138786 |1348 |31831 |
-ROW |138787 |1348 |31832 |
-ROW |138788 |1348 |31833 |
-ROW |138789 |1348 |31834 |
-ROW |138790 |1348 |31835 |
-ROW |138791 |1348 |31836 |
-ROW |138792 |1348 |31837 |
-ROW |138793 |1348 |31838 |
-ROW |138794 |1348 |31839 |
-ROW |138795 |1348 |31840 |
-ROW |138796 |1348 |31841 |
-ROW |138797 |1348 |31842 |
-ROW |138798 |1348 |31843 |
-ROW |138799 |1348 |31844 |
-ROW |138800 |1348 |31845 |
-ROW |138801 |1348 |31846 |
-ROW |138802 |1348 |31847 |
-ROW |138803 |1348 |31848 |
-ROW |138804 |1348 |31849 |
-ROW |138805 |1348 |31850 |
-ROW |138806 |1753 |35772 |
-ROW |138807 |1752 |35773 |
-ROW |138808 |1752 |35774 |
-ROW |138809 |1752 |35775 |
-ROW |138810 |1752 |35776 |
-ROW |138811 |1752 |35777 |
-ROW |138812 |1752 |35778 |
-ROW |138813 |1752 |35779 |
-ROW |138814 |1752 |35780 |
-ROW |138815 |1752 |35781 |
-ROW |138816 |1752 |35782 |
-ROW |138817 |1752 |35783 |
-ROW |138818 |1752 |35784 |
-ROW |138819 |1319 |30527 |
-ROW |138820 |1319 |30528 |
-ROW |138821 |1319 |30529 |
-ROW |138822 |1318 |30530 |
-ROW |138823 |1319 |30531 |
-ROW |138824 |1318 |30532 |
-ROW |138825 |1318 |30533 |
-ROW |138826 |1318 |30534 |
-ROW |138827 |1318 |30535 |
-ROW |138828 |1318 |30536 |
-ROW |138829 |1318 |30537 |
-ROW |138830 |1318 |30538 |
-ROW |138831 |1318 |30539 |
-ROW |138832 |1318 |30540 |
-ROW |138833 |1318 |30541 |
-ROW |138834 |1318 |30542 |
-ROW |138835 |1318 |30543 |
-ROW |138836 |1318 |30544 |
-ROW |138837 |1318 |30545 |
-ROW |138838 |1318 |30546 |
-ROW |138839 |1318 |30547 |
-ROW |138840 |1318 |30548 |
-ROW |138841 |1318 |30549 |
-ROW |138842 |1318 |30550 |
-ROW |138843 |1318 |30551 |
-ROW |138844 |1318 |30552 |
-ROW |138845 |1318 |30553 |
-ROW |138846 |1318 |30554 |
-ROW |138847 |1318 |30555 |
-ROW |138848 |1318 |30556 |
-ROW |138849 |1318 |30557 |
-ROW |138850 |1318 |30558 |
-ROW |138851 |1318 |30559 |
-ROW |138852 |1318 |30560 |
-ROW |138853 |1318 |30561 |
-ROW |138854 |1318 |30562 |
-ROW |138855 |1318 |30563 |
-ROW |138856 |1318 |30564 |
-ROW |138857 |1318 |30565 |
-ROW |138858 |1318 |30566 |
-ROW |138859 |1318 |30567 |
-ROW |138860 |1318 |30568 |
-ROW |138861 |1318 |30569 |
-ROW |138862 |1318 |30570 |
-ROW |138863 |1326 |30690 |
-ROW |138864 |1327 |30691 |
-ROW |138865 |1326 |30692 |
-ROW |138866 |1327 |30693 |
-ROW |138867 |1327 |30694 |
-ROW |138868 |1326 |30695 |
-ROW |138869 |1326 |30696 |
-ROW |138870 |1326 |30697 |
-ROW |138871 |1326 |30698 |
-ROW |138872 |1326 |30699 |
-ROW |138873 |1326 |30700 |
-ROW |138874 |1326 |30701 |
-ROW |138875 |1326 |30702 |
-ROW |138876 |1326 |30703 |
-ROW |138877 |1326 |30704 |
-ROW |138878 |1326 |30705 |
-ROW |138879 |1326 |30706 |
-ROW |138880 |1326 |30707 |
-ROW |138881 |1326 |30708 |
-ROW |138882 |1326 |30709 |
-ROW |138883 |1326 |30710 |
-ROW |138884 |1326 |30711 |
-ROW |138885 |1326 |30712 |
-ROW |138886 |1327 |30719 |
-ROW |138887 |1327 |30739 |
-ROW |138888 |1327 |30743 |
-ROW |138889 |1327 |30744 |
-ROW |138890 |1327 |30746 |
-ROW |138891 |1327 |30747 |
-ROW |138892 |1327 |30754 |
-ROW |138893 |1327 |30756 |
-ROW |138894 |1331 |30923 |
-ROW |138895 |1331 |30924 |
-ROW |138896 |1332 |30925 |
-ROW |138897 |1332 |30926 |
-ROW |138898 |1331 |30927 |
-ROW |138899 |1331 |30928 |
-ROW |138900 |1331 |30929 |
-ROW |138901 |1331 |30930 |
-ROW |138902 |1331 |30931 |
-ROW |138903 |1331 |30932 |
-ROW |138904 |1331 |30933 |
-ROW |138905 |1331 |30934 |
-ROW |138906 |1331 |30935 |
-ROW |138907 |1331 |30936 |
-ROW |138908 |1331 |30937 |
-ROW |138909 |1331 |30938 |
-ROW |138910 |1331 |30939 |
-ROW |138911 |1331 |30940 |
-ROW |138912 |1331 |30941 |
-ROW |138913 |1331 |30942 |
-ROW |138914 |1331 |30943 |
-ROW |138915 |1331 |30944 |
-ROW |138916 |1331 |30945 |
-ROW |138917 |1331 |30946 |
-ROW |138918 |1331 |30947 |
-ROW |138919 |1331 |30948 |
-ROW |138920 |1331 |30949 |
-ROW |138921 |1331 |30950 |
-ROW |138922 |1331 |30951 |
-ROW |138923 |1331 |30952 |
-ROW |138924 |1331 |30953 |
-ROW |138925 |1331 |30954 |
-ROW |138926 |1331 |30955 |
-ROW |138927 |1331 |30956 |
-ROW |138928 |1331 |30957 |
-ROW |138929 |1331 |30958 |
-ROW |138930 |1331 |30959 |
-ROW |138931 |1331 |30960 |
-ROW |138932 |1331 |30963 |
-ROW |138933 |1411 |32486 |
-ROW |138934 |1411 |32487 |
-ROW |138935 |1411 |32488 |
-ROW |138936 |1411 |32489 |
-ROW |138937 |1411 |32490 |
-ROW |138938 |1411 |32491 |
-ROW |138939 |1411 |32492 |
-ROW |138940 |1411 |32493 |
-ROW |138941 |1411 |32494 |
-ROW |138942 |1411 |32498 |
-ROW |138943 |1411 |32499 |
-ROW |138944 |1411 |32500 |
-ROW |138945 |1412 |32516 |
-ROW |138946 |1412 |32517 |
-ROW |138947 |1412 |32518 |
-ROW |138948 |1412 |32519 |
-ROW |138949 |1412 |32520 |
-ROW |138950 |1412 |32521 |
-ROW |138951 |1412 |32522 |
-ROW |138952 |1412 |32523 |
-ROW |138953 |1412 |32524 |
-ROW |138954 |1412 |32528 |
-ROW |138955 |1412 |32529 |
-ROW |138956 |1412 |32530 |
-ROW |138957 |1341 |31499 |
-ROW |138958 |1341 |31500 |
-ROW |138959 |1341 |31501 |
-ROW |138960 |1341 |31502 |
-ROW |138961 |1341 |31503 |
-ROW |138962 |1341 |31504 |
-ROW |138963 |1341 |31505 |
-ROW |138964 |1341 |31506 |
-ROW |138965 |1341 |31507 |
-ROW |138966 |1341 |31508 |
-ROW |138967 |1341 |31509 |
-ROW |138968 |1341 |31510 |
-ROW |138969 |1341 |31511 |
-ROW |138970 |1341 |31512 |
-ROW |138971 |1341 |31513 |
-ROW |138972 |1341 |31514 |
-ROW |138973 |1341 |31515 |
-ROW |138974 |1341 |31516 |
-ROW |138975 |1341 |31517 |
-ROW |138976 |1341 |31518 |
-ROW |138977 |1341 |31519 |
-ROW |138978 |1341 |31520 |
-ROW |138979 |1341 |31521 |
-ROW |138980 |1341 |31522 |
-ROW |138981 |1341 |31523 |
-ROW |138982 |1341 |31524 |
-ROW |138983 |1341 |31525 |
-ROW |138984 |1341 |31526 |
-ROW |138985 |1341 |31527 |
-ROW |138986 |1341 |31528 |
-ROW |138987 |1341 |31529 |
-ROW |138988 |1341 |31530 |
-ROW |138989 |1341 |31531 |
-ROW |138990 |1341 |31532 |
-ROW |138991 |1341 |31533 |
-ROW |138992 |1341 |31534 |
-ROW |138993 |1341 |31535 |
-ROW |138994 |1341 |31536 |
-ROW |138995 |1341 |31537 |
-ROW |138996 |1341 |31538 |
-ROW |138997 |1341 |31539 |
-ROW |138998 |1341 |31540 |
-ROW |138999 |1341 |31541 |
-ROW |139000 |1341 |31542 |
-ROW |139001 |1341 |31543 |
-ROW |139002 |1341 |31544 |
-ROW |139003 |1341 |31545 |
-ROW |139004 |1341 |31546 |
-ROW |139005 |1341 |31547 |
-ROW |139006 |1341 |31548 |
-ROW |139007 |1341 |31549 |
-ROW |139008 |1341 |31550 |
-ROW |139009 |1341 |31551 |
-ROW |139010 |1341 |31552 |
-ROW |139011 |1341 |31553 |
-ROW |139012 |1358 |32012 |
-ROW |139013 |1358 |32013 |
-ROW |139014 |1357 |32014 |
-ROW |139015 |1357 |32015 |
-ROW |139016 |1357 |32016 |
-ROW |139017 |1358 |32017 |
-ROW |139018 |1357 |32018 |
-ROW |139019 |1358 |32019 |
-ROW |139020 |1357 |32020 |
-ROW |139021 |1357 |32021 |
-ROW |139022 |1357 |32022 |
-ROW |139023 |1357 |32023 |
-ROW |139024 |1357 |32024 |
-ROW |139025 |1357 |32025 |
-ROW |139026 |1357 |32026 |
-ROW |139027 |1357 |32027 |
-ROW |139028 |1357 |32028 |
-ROW |139029 |1357 |32029 |
-ROW |139030 |1357 |32030 |
-ROW |139031 |1357 |32031 |
-ROW |139032 |1357 |32032 |
-ROW |139033 |1357 |32033 |
-ROW |139034 |1357 |32034 |
-ROW |139035 |1357 |32035 |
-ROW |139036 |1357 |32036 |
-ROW |139037 |1357 |32037 |
-ROW |139038 |1357 |32038 |
-ROW |139039 |1357 |32039 |
-ROW |139040 |1357 |32040 |
-ROW |139041 |1357 |32041 |
-ROW |139042 |1357 |32042 |
-ROW |139043 |1357 |32043 |
-ROW |139044 |1357 |32044 |
-ROW |139045 |1357 |32045 |
-ROW |139046 |1358 |32048 |
-ROW |139047 |1358 |32049 |
-ROW |139048 |1298 |30187 |
-ROW |139049 |1298 |30188 |
-ROW |139050 |1299 |30189 |
-ROW |139051 |1299 |30190 |
-ROW |139052 |1298 |30191 |
-ROW |139053 |1298 |30192 |
-ROW |139054 |1299 |35785 |
-ROW |139055 |1301 |30230 |
-ROW |139056 |1301 |30231 |
-ROW |139057 |1300 |30789 |
-ROW |139058 |1300 |30790 |
-ROW |139059 |1300 |30234 |
-ROW |139060 |1300 |30235 |
-ROW |139061 |1301 |35844 |
-ROW |139062 |1333 |30968 |
-ROW |139063 |1333 |30969 |
-ROW |139064 |1333 |30970 |
-ROW |139065 |1333 |30971 |
-ROW |139066 |1333 |30972 |
-ROW |139067 |1333 |30973 |
-ROW |139068 |1333 |30974 |
-ROW |139069 |1333 |30975 |
-ROW |139070 |1333 |30976 |
-ROW |139071 |1333 |30977 |
-ROW |139072 |1333 |30978 |
-ROW |139073 |1333 |30979 |
-ROW |139074 |1333 |30980 |
-ROW |139075 |1333 |30981 |
-ROW |139076 |1333 |30982 |
-ROW |139077 |1333 |30983 |
-ROW |139078 |1333 |30984 |
-ROW |139079 |1333 |30985 |
-ROW |139080 |1333 |30986 |
-ROW |139081 |1333 |30987 |
-ROW |139082 |1333 |30988 |
-ROW |139083 |1333 |30989 |
-ROW |139084 |1333 |30990 |
-ROW |139085 |1333 |30991 |
-ROW |139086 |1333 |30992 |
-ROW |139087 |1333 |30993 |
-ROW |139088 |1333 |30994 |
-ROW |139089 |1333 |30995 |
-ROW |139090 |1333 |30996 |
-ROW |139091 |1333 |30997 |
-ROW |139092 |1333 |30998 |
-ROW |139093 |1333 |30999 |
-ROW |139094 |1333 |31000 |
-ROW |139095 |1333 |31001 |
-ROW |139096 |1333 |31002 |
-ROW |139097 |1333 |31003 |
-ROW |139098 |1333 |31004 |
-ROW |139099 |1334 |31010 |
-ROW |139100 |1334 |31011 |
-ROW |139101 |1334 |31012 |
-ROW |139102 |1334 |31013 |
-ROW |139103 |1334 |31014 |
-ROW |139104 |1334 |31015 |
-ROW |139105 |1334 |31016 |
-ROW |139106 |1334 |31017 |
-ROW |139107 |1334 |31018 |
-ROW |139108 |1334 |31019 |
-ROW |139109 |1334 |31020 |
-ROW |139110 |1334 |31021 |
-ROW |139111 |1334 |31022 |
-ROW |139112 |1334 |31023 |
-ROW |139113 |1334 |31024 |
-ROW |139114 |1334 |31025 |
-ROW |139115 |1334 |31026 |
-ROW |139116 |1334 |31027 |
-ROW |139117 |1334 |31028 |
-ROW |139118 |1334 |31029 |
-ROW |139119 |1334 |31030 |
-ROW |139120 |1334 |31031 |
-ROW |139121 |1334 |31032 |
-ROW |139122 |1334 |31033 |
-ROW |139123 |1334 |31034 |
-ROW |139124 |1334 |31035 |
-ROW |139125 |1334 |31036 |
-ROW |139126 |1334 |31037 |
-ROW |139127 |1334 |31038 |
-ROW |139128 |1334 |31039 |
-ROW |139129 |1334 |31040 |
-ROW |139130 |1334 |31041 |
-ROW |139131 |1334 |31042 |
-ROW |139132 |1334 |31043 |
-ROW |139133 |1334 |31044 |
-ROW |139134 |1334 |31045 |
-ROW |139135 |1334 |31046 |
-ROW |139136 |1359 |32071 |
-ROW |139137 |1359 |32072 |
-ROW |139138 |1359 |32073 |
-ROW |139139 |1359 |32074 |
-ROW |139140 |1359 |32075 |
-ROW |139141 |1359 |32076 |
-ROW |139142 |1359 |32077 |
-ROW |139143 |1359 |32078 |
-ROW |139144 |1359 |32079 |
-ROW |139145 |1359 |32080 |
-ROW |139146 |1359 |32081 |
-ROW |139147 |1359 |32082 |
-ROW |139148 |1359 |32083 |
-ROW |139149 |1359 |32084 |
-ROW |139150 |1359 |32085 |
-ROW |139151 |1359 |32086 |
-ROW |139152 |1359 |32087 |
-ROW |139153 |1359 |32088 |
-ROW |139154 |1359 |32089 |
-ROW |139155 |1359 |32090 |
-ROW |139156 |1359 |32091 |
-ROW |139157 |1359 |32092 |
-ROW |139158 |1359 |32093 |
-ROW |139159 |1359 |32094 |
-ROW |139160 |1359 |32095 |
-ROW |139161 |1359 |32096 |
-ROW |139162 |1359 |32097 |
-ROW |139163 |1359 |32098 |
-ROW |139164 |1359 |32099 |
-ROW |139165 |1359 |32100 |
-ROW |139166 |1359 |32101 |
-ROW |139167 |1359 |32102 |
-ROW |139168 |1359 |32103 |
-ROW |139169 |1359 |32104 |
-ROW |139170 |1359 |32105 |
-ROW |139171 |1359 |32106 |
-ROW |139172 |1359 |32107 |
-ROW |139173 |1359 |32108 |
-ROW |139174 |1359 |32109 |
-ROW |139175 |1359 |32110 |
-ROW |139176 |1359 |32111 |
-ROW |139177 |1359 |32112 |
-ROW |139178 |1359 |32113 |
-ROW |139179 |1359 |32114 |
-ROW |139180 |1359 |32115 |
-ROW |139181 |1359 |32116 |
-ROW |139182 |1359 |32117 |
-ROW |139183 |1359 |32118 |
-ROW |139184 |1359 |32119 |
-ROW |139185 |1359 |32120 |
-ROW |139186 |1359 |32121 |
-ROW |139187 |1359 |32122 |
-ROW |139188 |1359 |32123 |
-ROW |139189 |1359 |32124 |
-ROW |139190 |1359 |32125 |
-ROW |139191 |1359 |32126 |
-ROW |139192 |1359 |32127 |
-ROW |139193 |1359 |32128 |
-ROW |139194 |1359 |32129 |
-ROW |139195 |1359 |32130 |
-ROW |139196 |1359 |32131 |
-ROW |139197 |1359 |32132 |
-ROW |139198 |1320 |30611 |
-ROW |139199 |1321 |30612 |
-ROW |139200 |1320 |30613 |
-ROW |139201 |1320 |30614 |
-ROW |139202 |1320 |30615 |
-ROW |139203 |1320 |30616 |
-ROW |139204 |1320 |30617 |
-ROW |139205 |1320 |30618 |
-ROW |139206 |1320 |30619 |
-ROW |139207 |1320 |30620 |
-ROW |139208 |1320 |30621 |
-ROW |139209 |1320 |30622 |
-ROW |139210 |1320 |30623 |
-ROW |139211 |1320 |30624 |
-ROW |139212 |1320 |30625 |
-ROW |139213 |1320 |30626 |
-ROW |139214 |1320 |30627 |
-ROW |139215 |1320 |30628 |
-ROW |139216 |1320 |30629 |
-ROW |139217 |1320 |30630 |
-ROW |139218 |1320 |30631 |
-ROW |139219 |1320 |30632 |
-ROW |139220 |1320 |30633 |
-ROW |139221 |1320 |30634 |
-ROW |139222 |1320 |30635 |
-ROW |139223 |1320 |30636 |
-ROW |139224 |1121 |28804 |
-ROW |139225 |1120 |28805 |
-ROW |139226 |1120 |28806 |
-ROW |139227 |1120 |28807 |
-ROW |139228 |1120 |28808 |
-ROW |139229 |1120 |28809 |
-ROW |139230 |1120 |28810 |
-ROW |139231 |1120 |28811 |
-ROW |139232 |1120 |28812 |
-ROW |139233 |1120 |28813 |
-ROW |139234 |1120 |28814 |
-ROW |139235 |1120 |28815 |
-ROW |139236 |1120 |28816 |
-ROW |139237 |1120 |28817 |
-ROW |139238 |1120 |28818 |
-ROW |139239 |1120 |28819 |
-ROW |139240 |1120 |28820 |
-ROW |139241 |1123 |28821 |
-ROW |139242 |1122 |28822 |
-ROW |139243 |1122 |28823 |
-ROW |139244 |1122 |28824 |
-ROW |139245 |1122 |28825 |
-ROW |139246 |1122 |28826 |
-ROW |139247 |1122 |28827 |
-ROW |139248 |1122 |28828 |
-ROW |139249 |1122 |28829 |
-ROW |139250 |1122 |28830 |
-ROW |139251 |1122 |28831 |
-ROW |139252 |1122 |28832 |
-ROW |139253 |1122 |28833 |
-ROW |139254 |1613 |34835 |
-ROW |139255 |1613 |34836 |
-ROW |139256 |1613 |34837 |
-ROW |139257 |1613 |34838 |
-ROW |139258 |1613 |34839 |
-ROW |139259 |1613 |34840 |
-ROW |139260 |1613 |34841 |
-ROW |139261 |1613 |34842 |
-ROW |139262 |1613 |34843 |
-ROW |139263 |1613 |34844 |
-ROW |139264 |1612 |34845 |
-ROW |139265 |1612 |34846 |
-ROW |139266 |1612 |34847 |
-ROW |139267 |1612 |34848 |
-ROW |139268 |1612 |34849 |
-ROW |139269 |1612 |34850 |
-ROW |139270 |1612 |34851 |
-ROW |139271 |1612 |34852 |
-ROW |139272 |1612 |34853 |
-ROW |139273 |1612 |34854 |
-ROW |139274 |1612 |34855 |
-ROW |139275 |1612 |34856 |
-ROW |139276 |1612 |34857 |
-ROW |139277 |1612 |34858 |
-ROW |139278 |1351 |31868 |
-ROW |139279 |1351 |31869 |
-ROW |139280 |1350 |31870 |
-ROW |139281 |1350 |31871 |
-ROW |139282 |1350 |31872 |
-ROW |139283 |1350 |31873 |
-ROW |139284 |1350 |31874 |
-ROW |139285 |1350 |31875 |
-ROW |139286 |1350 |31876 |
-ROW |139287 |1350 |31877 |
-ROW |139288 |1350 |31878 |
-ROW |139289 |1350 |31879 |
-ROW |139290 |1350 |31880 |
-ROW |139291 |1350 |31881 |
-ROW |139292 |1350 |31882 |
-ROW |139293 |1350 |31883 |
-ROW |139294 |1350 |31884 |
-ROW |139295 |1350 |31885 |
-ROW |139296 |1350 |31886 |
-ROW |139297 |1350 |31887 |
-ROW |139298 |1350 |31888 |
-ROW |139299 |1350 |31889 |
-ROW |139300 |1350 |31890 |
-ROW |139301 |1352 |31891 |
-ROW |139302 |1353 |31892 |
-ROW |139303 |1353 |31893 |
-ROW |139304 |1352 |31894 |
-ROW |139305 |1352 |31895 |
-ROW |139306 |1352 |31896 |
-ROW |139307 |1352 |31897 |
-ROW |139308 |1352 |31898 |
-ROW |139309 |1352 |31899 |
-ROW |139310 |1352 |31900 |
-ROW |139311 |1352 |31901 |
-ROW |139312 |1352 |31902 |
-ROW |139313 |1352 |31903 |
-ROW |139314 |1352 |31904 |
-ROW |139315 |1352 |31905 |
-ROW |139316 |1352 |31906 |
-ROW |139317 |1352 |31907 |
-ROW |139318 |1352 |31908 |
-ROW |139319 |1352 |31909 |
-ROW |139320 |1426 |32829 |
-ROW |139321 |1426 |32830 |
-ROW |139322 |1427 |32831 |
-ROW |139323 |1427 |32832 |
-ROW |139324 |1428 |32833 |
-ROW |139325 |1428 |32834 |
-ROW |139326 |1428 |32835 |
-ROW |139327 |1427 |32836 |
-ROW |139328 |1427 |32837 |
-ROW |139329 |1427 |32838 |
-ROW |139330 |1427 |32839 |
-ROW |139331 |1425 |32840 |
-ROW |139332 |1425 |32841 |
-ROW |139333 |1425 |32842 |
-ROW |139334 |1425 |32843 |
-ROW |139335 |1425 |32844 |
-ROW |139336 |1425 |32845 |
-ROW |139337 |1425 |32846 |
-ROW |139338 |1425 |32847 |
-ROW |139339 |1425 |32848 |
-ROW |139340 |1425 |32849 |
-ROW |139341 |1425 |32850 |
-ROW |139342 |1425 |32851 |
-ROW |139343 |1425 |32852 |
-ROW |139344 |1425 |32853 |
-ROW |139345 |1425 |32854 |
-ROW |139346 |1425 |32855 |
-ROW |139347 |1425 |32856 |
-ROW |139348 |1425 |32857 |
-ROW |139349 |1425 |32858 |
-ROW |139350 |1425 |32859 |
-ROW |139351 |1425 |32860 |
-ROW |139352 |1425 |32861 |
-ROW |139353 |1425 |32862 |
-ROW |139354 |1425 |32863 |
-ROW |139355 |1427 |32864 |
-ROW |139356 |1427 |32865 |
-ROW |139357 |1427 |32866 |
-ROW |139358 |1427 |32867 |
-ROW |139359 |1427 |32868 |
-ROW |139360 |1427 |32869 |
-ROW |139361 |1427 |32870 |
-ROW |139362 |1427 |32871 |
-ROW |139363 |1427 |32872 |
-ROW |139364 |1427 |32873 |
-ROW |139365 |1427 |32874 |
-ROW |139366 |1427 |32875 |
-ROW |139367 |1427 |32876 |
-ROW |139368 |1427 |32877 |
-ROW |139369 |1427 |32878 |
-ROW |139370 |1425 |32884 |
-ROW |139371 |1427 |32885 |
-ROW |139372 |1427 |32886 |
-ROW |139373 |1427 |32887 |
-ROW |139374 |1427 |32888 |
-ROW |139375 |1427 |32889 |
-ROW |139376 |1427 |32890 |
-ROW |139377 |1430 |32925 |
-ROW |139378 |1430 |32926 |
-ROW |139379 |1431 |32927 |
-ROW |139380 |1432 |32928 |
-ROW |139381 |1432 |32929 |
-ROW |139382 |1432 |32930 |
-ROW |139383 |1431 |32931 |
-ROW |139384 |1429 |32932 |
-ROW |139385 |1429 |32933 |
-ROW |139386 |1429 |32934 |
-ROW |139387 |1429 |32935 |
-ROW |139388 |1429 |32936 |
-ROW |139389 |1429 |32937 |
-ROW |139390 |1429 |32938 |
-ROW |139391 |1429 |32939 |
-ROW |139392 |1429 |32940 |
-ROW |139393 |1429 |32941 |
-ROW |139394 |1429 |32942 |
-ROW |139395 |1429 |32943 |
-ROW |139396 |1429 |32944 |
-ROW |139397 |1429 |32945 |
-ROW |139398 |1429 |32946 |
-ROW |139399 |1429 |32947 |
-ROW |139400 |1429 |32948 |
-ROW |139401 |1429 |32949 |
-ROW |139402 |1429 |32950 |
-ROW |139403 |1429 |32951 |
-ROW |139404 |1429 |32952 |
-ROW |139405 |1429 |32953 |
-ROW |139406 |1429 |32954 |
-ROW |139407 |1429 |32955 |
-ROW |139408 |1431 |32956 |
-ROW |139409 |1431 |32957 |
-ROW |139410 |1431 |32958 |
-ROW |139411 |1431 |32959 |
-ROW |139412 |1431 |32960 |
-ROW |139413 |1431 |32961 |
-ROW |139414 |1431 |32962 |
-ROW |139415 |1431 |32963 |
-ROW |139416 |1431 |32964 |
-ROW |139417 |1431 |32965 |
-ROW |139418 |1431 |32966 |
-ROW |139419 |1431 |32967 |
-ROW |139420 |1431 |32968 |
-ROW |139421 |1431 |32969 |
-ROW |139422 |1431 |32970 |
-ROW |139423 |1429 |32976 |
-ROW |139424 |1431 |32977 |
-ROW |139425 |1431 |32978 |
-ROW |139426 |1431 |32979 |
-ROW |139427 |1431 |32980 |
-ROW |139428 |1431 |32981 |
-ROW |139429 |1431 |32982 |
-ROW |139430 |1354 |31910 |
-ROW |139431 |1354 |31911 |
-ROW |139432 |1354 |31912 |
-ROW |139433 |1354 |31913 |
-ROW |139434 |1354 |31914 |
-ROW |139435 |1354 |31915 |
-ROW |139436 |1354 |31916 |
-ROW |139437 |1354 |31917 |
-ROW |139438 |1354 |31918 |
-ROW |139439 |1354 |31919 |
-ROW |139440 |1354 |31920 |
-ROW |139441 |1354 |31921 |
-ROW |139442 |1354 |31922 |
-ROW |139443 |1354 |31923 |
-ROW |139444 |1354 |31924 |
-ROW |139445 |1354 |31925 |
-ROW |139446 |1354 |31926 |
-ROW |139447 |1354 |31927 |
-ROW |139448 |1354 |31928 |
-ROW |139449 |1354 |31929 |
-ROW |139450 |1354 |31930 |
-ROW |139451 |1354 |31931 |
-ROW |139452 |1354 |31932 |
-ROW |139453 |1354 |31933 |
-ROW |139454 |1354 |31934 |
-ROW |139455 |1354 |31935 |
-ROW |139456 |1354 |31936 |
-ROW |139457 |1354 |31937 |
-ROW |139458 |1354 |31938 |
-ROW |139459 |1354 |31939 |
-ROW |139460 |1354 |31940 |
-ROW |139461 |1354 |31941 |
-ROW |139462 |1354 |31942 |
-ROW |139463 |1354 |31943 |
-ROW |139464 |1354 |31944 |
-ROW |139465 |1354 |31945 |
-ROW |139466 |1354 |31946 |
-ROW |139467 |1354 |31947 |
-ROW |139468 |1354 |31948 |
-ROW |139469 |1354 |31949 |
-ROW |139470 |1354 |31950 |
-ROW |139471 |1354 |31951 |
-ROW |139472 |1354 |31952 |
-ROW |139473 |1354 |31953 |
-ROW |139474 |1354 |31954 |
-ROW |139475 |1354 |31955 |
-ROW |139476 |1354 |31956 |
-ROW |139477 |1354 |31957 |
-ROW |139478 |1354 |31958 |
-ROW |139479 |1354 |31959 |
-ROW |139480 |1354 |31960 |
-ROW |139481 |1354 |31961 |
-ROW |139482 |1354 |31962 |
-ROW |139483 |1354 |31963 |
-ROW |139484 |1737 |35560 |
-ROW |139485 |1737 |35561 |
-ROW |139486 |1109 |28511 |
-ROW |139487 |1342 |31554 |
-ROW |139488 |1342 |31555 |
-ROW |139489 |1342 |31556 |
-ROW |139490 |1343 |31557 |
-ROW |139491 |1343 |31558 |
-ROW |139492 |1343 |31559 |
-ROW |139493 |1343 |31560 |
-ROW |139494 |1343 |31561 |
-ROW |139495 |1343 |31562 |
-ROW |139496 |1343 |31563 |
-ROW |139497 |1343 |31564 |
-ROW |139498 |1343 |31565 |
-ROW |139499 |1343 |31566 |
-ROW |139500 |1343 |31567 |
-ROW |139501 |1343 |31568 |
-ROW |139502 |1343 |31569 |
-ROW |139503 |1343 |31570 |
-ROW |139504 |1343 |31571 |
-ROW |139505 |1343 |31572 |
-ROW |139506 |1343 |31573 |
-ROW |139507 |1343 |31574 |
-ROW |139508 |1343 |31575 |
-ROW |139509 |1344 |31576 |
-ROW |139510 |1344 |31577 |
-ROW |139511 |1344 |31578 |
-ROW |139512 |1344 |31579 |
-ROW |139513 |1344 |31580 |
-ROW |139514 |1344 |31581 |
-ROW |139515 |1344 |31582 |
-ROW |139516 |1344 |31583 |
-ROW |139517 |1344 |31584 |
-ROW |139518 |1344 |31585 |
-ROW |139519 |1344 |31586 |
-ROW |139520 |1344 |31587 |
-ROW |139521 |1344 |31588 |
-ROW |139522 |1344 |31589 |
-ROW |139523 |1344 |31590 |
-ROW |139524 |1344 |31591 |
-ROW |139525 |1344 |31592 |
-ROW |139526 |1344 |31593 |
-ROW |139527 |1344 |31594 |
-ROW |139528 |1344 |31595 |
-ROW |139529 |1344 |31596 |
-ROW |139530 |1342 |31605 |
-ROW |139531 |1342 |31606 |
-ROW |139532 |1342 |31607 |
-ROW |139533 |1342 |31608 |
-ROW |139534 |1342 |31609 |
-ROW |139535 |1343 |31610 |
-ROW |139536 |1343 |31611 |
-ROW |139537 |1343 |31612 |
-ROW |139538 |1343 |31613 |
-ROW |139539 |1343 |31614 |
-ROW |139540 |1343 |31615 |
-ROW |139541 |1343 |31616 |
-ROW |139542 |1343 |31617 |
-ROW |139543 |1343 |31618 |
-ROW |139544 |1343 |31619 |
-ROW |139545 |1343 |31620 |
-ROW |139546 |1343 |31621 |
-ROW |139547 |1344 |31622 |
-ROW |139548 |1344 |31623 |
-ROW |139549 |1344 |31624 |
-ROW |139550 |1344 |31625 |
-ROW |139551 |1512 |34094 |
-ROW |139552 |1512 |34095 |
-ROW |139553 |1512 |34096 |
-ROW |139554 |1512 |34097 |
-ROW |139555 |1512 |34098 |
-ROW |139556 |1513 |34106 |
-ROW |139557 |1513 |34107 |
-ROW |139558 |1513 |34108 |
-ROW |139559 |1513 |34109 |
-ROW |139560 |1513 |34110 |
-ROW |139561 |1513 |34111 |
-ROW |139562 |1513 |34112 |
-ROW |139563 |1513 |34113 |
-ROW |139564 |1513 |34114 |
-ROW |139565 |1513 |34115 |
-ROW |139566 |1513 |34116 |
-ROW |139567 |1513 |34117 |
-ROW |139568 |1513 |34118 |
-ROW |139569 |1513 |34119 |
-ROW |139570 |1513 |34120 |
-ROW |139571 |1513 |34121 |
-ROW |139572 |1513 |34122 |
-ROW |139573 |179 |10061 |
-ROW |139574 |179 |10062 |
-ROW |139575 |179 |10063 |
-ROW |139576 |179 |10064 |
-ROW |139577 |179 |10065 |
-ROW |139578 |179 |10066 |
-ROW |139579 |179 |22183 |
-ROW |139580 |179 |22185 |
-ROW |139581 |179 |22187 |
-ROW |139582 |179 |22189 |
-ROW |139583 |179 |22191 |
-ROW |139584 |179 |22196 |
-ROW |139585 |179 |22199 |
-ROW |139586 |179 |22219 |
-ROW |139587 |179 |22396 |
-ROW |139588 |179 |22399 |
-ROW |139589 |179 |22400 |
-ROW |139590 |179 |22401 |
-ROW |139591 |179 |22402 |
-ROW |139592 |179 |22404 |
-ROW |139593 |179 |22406 |
-ROW |139594 |179 |22408 |
-ROW |139595 |179 |22412 |
-ROW |139596 |179 |22414 |
-ROW |139597 |179 |22416 |
-ROW |139598 |179 |22418 |
-ROW |139599 |179 |22420 |
-ROW |139600 |179 |22422 |
-ROW |139601 |179 |22424 |
-ROW |139602 |179 |22426 |
-ROW |139603 |179 |22430 |
-ROW |139604 |179 |22689 |
-ROW |139605 |179 |23171 |
-ROW |139606 |179 |23251 |
-ROW |139607 |179 |23634 |
-ROW |139608 |179 |23661 |
-ROW |139609 |179 |23663 |
-ROW |139610 |179 |25366 |
-ROW |139611 |179 |25370 |
-ROW |139612 |179 |25665 |
-ROW |139613 |179 |25666 |
-ROW |139614 |179 |28248 |
-ROW |139615 |179 |28533 |
-ROW |139616 |179 |28535 |
-ROW |139617 |179 |28537 |
-ROW |139618 |179 |29822 |
-ROW |139619 |179 |34189 |
-ROW |139620 |345 |10073 |
-ROW |139621 |345 |10074 |
-ROW |139622 |345 |10075 |
-ROW |139623 |345 |10076 |
-ROW |139624 |345 |10077 |
-ROW |139625 |345 |10078 |
-ROW |139626 |345 |23252 |
-ROW |139627 |345 |23253 |
-ROW |139628 |345 |23255 |
-ROW |139629 |345 |23256 |
-ROW |139630 |345 |23257 |
-ROW |139631 |345 |23258 |
-ROW |139632 |345 |23259 |
-ROW |139633 |345 |23260 |
-ROW |139634 |345 |23261 |
-ROW |139635 |345 |23262 |
-ROW |139636 |345 |23264 |
-ROW |139637 |345 |23265 |
-ROW |139638 |345 |23266 |
-ROW |139639 |345 |23267 |
-ROW |139640 |345 |23268 |
-ROW |139641 |345 |23269 |
-ROW |139642 |345 |23270 |
-ROW |139643 |345 |23271 |
-ROW |139644 |345 |23272 |
-ROW |139645 |345 |23273 |
-ROW |139646 |345 |23274 |
-ROW |139647 |345 |23275 |
-ROW |139648 |345 |23276 |
-ROW |139649 |345 |23277 |
-ROW |139650 |345 |23328 |
-ROW |139651 |345 |23620 |
-ROW |139652 |345 |23625 |
-ROW |139653 |345 |23628 |
-ROW |139654 |345 |23635 |
-ROW |139655 |345 |23662 |
-ROW |139656 |345 |23664 |
-ROW |139657 |345 |25367 |
-ROW |139658 |345 |25371 |
-ROW |139659 |345 |25667 |
-ROW |139660 |345 |25668 |
-ROW |139661 |345 |28249 |
-ROW |139662 |345 |28534 |
-ROW |139663 |345 |28536 |
-ROW |139664 |345 |28538 |
-ROW |139665 |345 |29823 |
-ROW |139666 |345 |34196 |
-ROW |139667 |1514 |28539 |
-ROW |139668 |1110 |28540 |
-ROW |139669 |1110 |28541 |
-ROW |139670 |1110 |28542 |
-ROW |139671 |1110 |28543 |
-ROW |139672 |1110 |28544 |
-ROW |139673 |1110 |28545 |
-ROW |139674 |1110 |28546 |
-ROW |139675 |1110 |28547 |
-ROW |139676 |1110 |28548 |
-ROW |139677 |1110 |28549 |
-ROW |139678 |1110 |28550 |
-ROW |139679 |1110 |28551 |
-ROW |139680 |1110 |28552 |
-ROW |139681 |1110 |28553 |
-ROW |139682 |1110 |28554 |
-ROW |139683 |1110 |28555 |
-ROW |139684 |1110 |28556 |
-ROW |139685 |1110 |28557 |
-ROW |139686 |1110 |28558 |
-ROW |139687 |1110 |28559 |
-ROW |139688 |1110 |28560 |
-ROW |139689 |1110 |28561 |
-ROW |139690 |1110 |28562 |
-ROW |139691 |1110 |28563 |
-ROW |139692 |1110 |28564 |
-ROW |139693 |1110 |28565 |
-ROW |139694 |1110 |28566 |
-ROW |139695 |1110 |28567 |
-ROW |139696 |1110 |28568 |
-ROW |139697 |1110 |28569 |
-ROW |139698 |1110 |28570 |
-ROW |139699 |1110 |28571 |
-ROW |139700 |1110 |28572 |
-ROW |139701 |1110 |28573 |
-ROW |139702 |1110 |28574 |
-ROW |139703 |1110 |28575 |
-ROW |139704 |1110 |28576 |
-ROW |139705 |1110 |28577 |
-ROW |139706 |1110 |28578 |
-ROW |139707 |1110 |28579 |
-ROW |139708 |1110 |28580 |
-ROW |139709 |1110 |28581 |
-ROW |139710 |1110 |28582 |
-ROW |139711 |1110 |28583 |
-ROW |139712 |1110 |28584 |
-ROW |139713 |1110 |29821 |
-ROW |139714 |1110 |31053 |
-ROW |139715 |1360 |32158 |
-ROW |139716 |1360 |32159 |
-ROW |139717 |1361 |32160 |
-ROW |139718 |1361 |32161 |
-ROW |139719 |1361 |32162 |
-ROW |139720 |1361 |32163 |
-ROW |139721 |1361 |32164 |
-ROW |139722 |1361 |32165 |
-ROW |139723 |1361 |32166 |
-ROW |139724 |1361 |32167 |
-ROW |139725 |1361 |32168 |
-ROW |139726 |1361 |32169 |
-ROW |139727 |1361 |32170 |
-ROW |139728 |1361 |32171 |
-ROW |139729 |1361 |32172 |
-ROW |139730 |1361 |32173 |
-ROW |139731 |1361 |32174 |
-ROW |139732 |1361 |32175 |
-ROW |139733 |1361 |32176 |
-ROW |139734 |1361 |32177 |
-ROW |139735 |1361 |32178 |
-ROW |139736 |1361 |32179 |
-ROW |139737 |1361 |32180 |
-ROW |139738 |1361 |32181 |
-ROW |139739 |1361 |32182 |
-ROW |139740 |1361 |32183 |
-ROW |139741 |1361 |32184 |
-ROW |139742 |1361 |32185 |
-ROW |139743 |1361 |32186 |
-ROW |139744 |1361 |32187 |
-ROW |139745 |1361 |32188 |
-ROW |139746 |1361 |32189 |
-ROW |139747 |1361 |32190 |
-ROW |139748 |1361 |32191 |
-ROW |139749 |1361 |32192 |
-ROW |139750 |1361 |32201 |
-ROW |139751 |1361 |32202 |
-ROW |139752 |1361 |32203 |
-ROW |139753 |1361 |32204 |
-ROW |139754 |1361 |32205 |
-ROW |139755 |1361 |32206 |
-ROW |139756 |446 |23644 |
-ROW |139757 |447 |23645 |
-ROW |139758 |448 |23646 |
-ROW |139759 |449 |23647 |
-ROW |139760 |450 |23648 |
-ROW |139761 |451 |23649 |
-ROW |139762 |452 |23650 |
-ROW |139763 |453 |23651 |
-ROW |139764 |1111 |28585 |
-ROW |139765 |1111 |28586 |
-ROW |139766 |1111 |28587 |
-ROW |139767 |1111 |28588 |
-ROW |139768 |1111 |28589 |
-ROW |139769 |1111 |28590 |
-ROW |139770 |1111 |28591 |
-ROW |139771 |1111 |28592 |
-ROW |139772 |1111 |28593 |
-ROW |139773 |1111 |28594 |
-ROW |139774 |1111 |28595 |
-ROW |139775 |1111 |28596 |
-ROW |139776 |1111 |28597 |
-ROW |139777 |1111 |28598 |
-ROW |139778 |1111 |28599 |
-ROW |139779 |1111 |28600 |
-ROW |139780 |1111 |28601 |
-ROW |139781 |1111 |28602 |
-ROW |139782 |1111 |28603 |
-ROW |139783 |1111 |28604 |
-ROW |139784 |1111 |28605 |
-ROW |139785 |1111 |28606 |
-ROW |139786 |1111 |28607 |
-ROW |139787 |1111 |28608 |
-ROW |139788 |1111 |28609 |
-ROW |139789 |1111 |28610 |
-ROW |139790 |1111 |28611 |
-ROW |139791 |1111 |28612 |
-ROW |139792 |1111 |28613 |
-ROW |139793 |1111 |28614 |
-ROW |139794 |1111 |28615 |
-ROW |139795 |1111 |28616 |
-ROW |139796 |1111 |31052 |
-ROW |139797 |454 |23652 |
-ROW |139798 |455 |23653 |
-ROW |139799 |456 |23654 |
-ROW |139800 |356 |10067 |
-ROW |139801 |356 |10068 |
-ROW |139802 |356 |10069 |
-ROW |139803 |356 |10070 |
-ROW |139804 |356 |10071 |
-ROW |139805 |356 |10072 |
-ROW |139806 |356 |23340 |
-ROW |139807 |356 |23341 |
-ROW |139808 |356 |23342 |
-ROW |139809 |356 |23343 |
-ROW |139810 |356 |23344 |
-ROW |139811 |356 |23345 |
-ROW |139812 |356 |23346 |
-ROW |139813 |356 |23347 |
-ROW |139814 |356 |23348 |
-ROW |139815 |356 |23349 |
-ROW |139816 |356 |23350 |
-ROW |139817 |356 |23351 |
-ROW |139818 |356 |23352 |
-ROW |139819 |356 |23353 |
-ROW |139820 |356 |23354 |
-ROW |139821 |356 |23355 |
-ROW |139822 |356 |23356 |
-ROW |139823 |356 |23357 |
-ROW |139824 |356 |23358 |
-ROW |139825 |356 |23359 |
-ROW |139826 |356 |23360 |
-ROW |139827 |356 |25368 |
-ROW |139828 |356 |25369 |
-ROW |139829 |356 |28250 |
-ROW |139830 |356 |28251 |
-ROW |139831 |356 |28617 |
-ROW |139832 |356 |28618 |
-ROW |139833 |356 |28619 |
-ROW |139834 |280 |22917 |
-ROW |139835 |280 |22918 |
-ROW |139836 |273 |22920 |
-ROW |139837 |279 |22920 |
-ROW |139838 |273 |22921 |
-ROW |139839 |279 |22921 |
-ROW |139840 |273 |22922 |
-ROW |139841 |279 |22922 |
-ROW |139842 |273 |22923 |
-ROW |139843 |279 |22923 |
-ROW |139844 |273 |22924 |
-ROW |139845 |279 |22924 |
-ROW |139846 |275 |22933 |
-ROW |139847 |278 |22933 |
-ROW |139848 |275 |22934 |
-ROW |139849 |278 |22934 |
-ROW |139850 |275 |22938 |
-ROW |139851 |278 |22938 |
-ROW |139852 |275 |22939 |
-ROW |139853 |278 |22939 |
-ROW |139854 |278 |22940 |
-ROW |139855 |281 |22940 |
-ROW |139856 |281 |22941 |
-ROW |139857 |276 |22942 |
-ROW |139858 |276 |22943 |
-ROW |139859 |273 |23108 |
-ROW |139860 |331 |23108 |
-ROW |139861 |279 |23108 |
-ROW |139862 |273 |23109 |
-ROW |139863 |331 |23109 |
-ROW |139864 |279 |23109 |
-ROW |139865 |273 |23110 |
-ROW |139866 |279 |23110 |
-ROW |139867 |273 |23111 |
-ROW |139868 |331 |23111 |
-ROW |139869 |279 |23111 |
-ROW |139870 |273 |23112 |
-ROW |139871 |331 |23112 |
-ROW |139872 |279 |23112 |
-ROW |139873 |273 |23113 |
-ROW |139874 |279 |23113 |
-ROW |139875 |273 |23114 |
-ROW |139876 |279 |23114 |
-ROW |139877 |273 |23115 |
-ROW |139878 |279 |23115 |
-ROW |139879 |274 |23116 |
-ROW |139880 |279 |23116 |
-ROW |139881 |274 |23117 |
-ROW |139882 |279 |23117 |
-ROW |139883 |273 |23118 |
-ROW |139884 |331 |23118 |
-ROW |139885 |273 |23119 |
-ROW |139886 |279 |23119 |
-ROW |139887 |273 |23120 |
-ROW |139888 |279 |23120 |
-ROW |139889 |273 |23121 |
-ROW |139890 |279 |23121 |
-ROW |139891 |276 |23122 |
-ROW |139892 |279 |23122 |
-ROW |139893 |273 |23123 |
-ROW |139894 |279 |23123 |
-ROW |139895 |276 |23124 |
-ROW |139896 |276 |23125 |
-ROW |139897 |276 |23126 |
-ROW |139898 |276 |23127 |
-ROW |139899 |276 |23128 |
-ROW |139900 |276 |23129 |
-ROW |139901 |276 |23130 |
-ROW |139902 |276 |23131 |
-ROW |139903 |277 |22945 |
-ROW |139904 |277 |22946 |
-ROW |139905 |274 |22948 |
-ROW |139906 |274 |22949 |
-ROW |139907 |274 |22950 |
-ROW |139908 |274 |22951 |
-ROW |139909 |274 |22952 |
-ROW |139910 |268 |22875 |
-ROW |139911 |268 |22876 |
-ROW |139912 |270 |22877 |
-ROW |139913 |270 |22878 |
-ROW |139914 |265 |22879 |
-ROW |139915 |268 |22879 |
-ROW |139916 |263 |22880 |
-ROW |139917 |269 |22880 |
-ROW |139918 |263 |22881 |
-ROW |139919 |269 |22881 |
-ROW |139920 |263 |22882 |
-ROW |139921 |269 |22882 |
-ROW |139922 |263 |22883 |
-ROW |139923 |269 |22883 |
-ROW |139924 |263 |22884 |
-ROW |139925 |269 |22884 |
-ROW |139926 |263 |22885 |
-ROW |139927 |269 |22885 |
-ROW |139928 |263 |22886 |
-ROW |139929 |269 |22886 |
-ROW |139930 |263 |22888 |
-ROW |139931 |269 |22888 |
-ROW |139932 |263 |22891 |
-ROW |139933 |269 |22891 |
-ROW |139934 |263 |22892 |
-ROW |139935 |269 |22892 |
-ROW |139936 |265 |22893 |
-ROW |139937 |268 |22893 |
-ROW |139938 |265 |22894 |
-ROW |139939 |268 |22894 |
-ROW |139940 |266 |22895 |
-ROW |139941 |266 |22896 |
-ROW |139942 |266 |22897 |
-ROW |139943 |265 |22898 |
-ROW |139944 |268 |22898 |
-ROW |139945 |265 |22899 |
-ROW |139946 |268 |22899 |
-ROW |139947 |268 |22900 |
-ROW |139948 |271 |22900 |
-ROW |139949 |271 |22901 |
-ROW |139950 |266 |22902 |
-ROW |139951 |266 |22903 |
-ROW |139952 |264 |22908 |
-ROW |139953 |264 |22909 |
-ROW |139954 |264 |22910 |
-ROW |139955 |264 |22911 |
-ROW |139956 |264 |22912 |
-ROW |139957 |267 |23073 |
-ROW |139958 |267 |23074 |
-ROW |139959 |283 |22961 |
-ROW |139960 |289 |22961 |
-ROW |139961 |283 |22962 |
-ROW |139962 |289 |22962 |
-ROW |139963 |283 |22963 |
-ROW |139964 |289 |22963 |
-ROW |139965 |283 |22965 |
-ROW |139966 |289 |22965 |
-ROW |139967 |283 |22968 |
-ROW |139968 |289 |22968 |
-ROW |139969 |283 |22971 |
-ROW |139970 |289 |22971 |
-ROW |139971 |283 |22972 |
-ROW |139972 |289 |22972 |
-ROW |139973 |285 |22973 |
-ROW |139974 |288 |22973 |
-ROW |139975 |285 |22974 |
-ROW |139976 |288 |22974 |
-ROW |139977 |285 |22978 |
-ROW |139978 |288 |22978 |
-ROW |139979 |288 |22980 |
-ROW |139980 |291 |22980 |
-ROW |139981 |291 |22981 |
-ROW |139982 |286 |22982 |
-ROW |139983 |286 |22983 |
-ROW |139984 |287 |22985 |
-ROW |139985 |287 |22986 |
-ROW |139986 |284 |22988 |
-ROW |139987 |284 |22989 |
-ROW |139988 |284 |22990 |
-ROW |139989 |284 |22991 |
-ROW |139990 |284 |22992 |
-ROW |139991 |308 |23035 |
-ROW |139992 |308 |23036 |
-ROW |139993 |305 |23039 |
-ROW |139994 |308 |23039 |
-ROW |139995 |303 |23041 |
-ROW |139996 |309 |23041 |
-ROW |139997 |303 |23042 |
-ROW |139998 |309 |23042 |
-ROW |139999 |303 |23043 |
-ROW |140000 |309 |23043 |
-ROW |140001 |305 |23053 |
-ROW |140002 |308 |23053 |
-ROW |140003 |305 |23054 |
-ROW |140004 |308 |23054 |
-ROW |140005 |305 |23058 |
-ROW |140006 |308 |23058 |
-ROW |140007 |305 |23059 |
-ROW |140008 |308 |23059 |
-ROW |140009 |308 |23060 |
-ROW |140010 |311 |23060 |
-ROW |140011 |311 |23061 |
-ROW |140012 |306 |23062 |
-ROW |140013 |306 |23063 |
-ROW |140014 |307 |23077 |
-ROW |140015 |307 |23078 |
-ROW |140016 |304 |23068 |
-ROW |140017 |304 |23069 |
-ROW |140018 |304 |23070 |
-ROW |140019 |304 |23071 |
-ROW |140020 |304 |23072 |
-ROW |140021 |258 |22835 |
-ROW |140022 |258 |22836 |
-ROW |140023 |260 |22837 |
-ROW |140024 |260 |22838 |
-ROW |140025 |255 |22839 |
-ROW |140026 |258 |22839 |
-ROW |140027 |253 |22840 |
-ROW |140028 |259 |22840 |
-ROW |140029 |253 |22841 |
-ROW |140030 |259 |22841 |
-ROW |140031 |253 |22842 |
-ROW |140032 |259 |22842 |
-ROW |140033 |253 |22843 |
-ROW |140034 |259 |22843 |
-ROW |140035 |253 |22844 |
-ROW |140036 |259 |22844 |
-ROW |140037 |253 |22845 |
-ROW |140038 |259 |22845 |
-ROW |140039 |253 |22846 |
-ROW |140040 |259 |22846 |
-ROW |140041 |253 |22848 |
-ROW |140042 |259 |22848 |
-ROW |140043 |253 |22851 |
-ROW |140044 |259 |22851 |
-ROW |140045 |253 |22852 |
-ROW |140046 |259 |22852 |
-ROW |140047 |255 |22853 |
-ROW |140048 |258 |22853 |
-ROW |140049 |255 |22854 |
-ROW |140050 |258 |22854 |
-ROW |140051 |256 |22855 |
-ROW |140052 |256 |22856 |
-ROW |140053 |256 |22857 |
-ROW |140054 |255 |22858 |
-ROW |140055 |258 |22858 |
-ROW |140056 |255 |22859 |
-ROW |140057 |258 |22859 |
-ROW |140058 |258 |22860 |
-ROW |140059 |261 |22860 |
-ROW |140060 |261 |22861 |
-ROW |140061 |256 |22862 |
-ROW |140062 |256 |22863 |
-ROW |140063 |254 |22868 |
-ROW |140064 |254 |22869 |
-ROW |140065 |254 |22870 |
-ROW |140066 |254 |22871 |
-ROW |140067 |254 |22872 |
-ROW |140068 |257 |23075 |
-ROW |140069 |257 |23076 |
-ROW |140070 |298 |22996 |
-ROW |140071 |300 |22997 |
-ROW |140072 |300 |22998 |
-ROW |140073 |295 |22999 |
-ROW |140074 |298 |22999 |
-ROW |140075 |293 |23000 |
-ROW |140076 |299 |23000 |
-ROW |140077 |293 |23001 |
-ROW |140078 |299 |23001 |
-ROW |140079 |293 |23002 |
-ROW |140080 |299 |23002 |
-ROW |140081 |293 |23003 |
-ROW |140082 |299 |23003 |
-ROW |140083 |293 |23004 |
-ROW |140084 |299 |23004 |
-ROW |140085 |293 |23005 |
-ROW |140086 |299 |23005 |
-ROW |140087 |293 |23007 |
-ROW |140088 |299 |23007 |
-ROW |140089 |293 |23011 |
-ROW |140090 |299 |23011 |
-ROW |140091 |293 |23012 |
-ROW |140092 |299 |23012 |
-ROW |140093 |295 |23013 |
-ROW |140094 |298 |23013 |
-ROW |140095 |295 |23014 |
-ROW |140096 |298 |23014 |
-ROW |140097 |296 |23015 |
-ROW |140098 |296 |23016 |
-ROW |140099 |296 |23017 |
-ROW |140100 |295 |23018 |
-ROW |140101 |298 |23018 |
-ROW |140102 |295 |23019 |
-ROW |140103 |298 |23019 |
-ROW |140104 |298 |23020 |
-ROW |140105 |301 |23020 |
-ROW |140106 |301 |23021 |
-ROW |140107 |296 |23022 |
-ROW |140108 |296 |23023 |
-ROW |140109 |297 |23025 |
-ROW |140110 |297 |23026 |
-ROW |140111 |294 |23028 |
-ROW |140112 |294 |23029 |
-ROW |140113 |294 |23030 |
-ROW |140114 |294 |23031 |
-ROW |140115 |294 |23032 |
-ROW |140116 |743 |26925 |
-ROW |140117 |743 |26926 |
-ROW |140118 |741 |26927 |
-ROW |140119 |742 |26928 |
-ROW |140120 |743 |26929 |
-ROW |140121 |743 |26930 |
-ROW |140122 |743 |26931 |
-ROW |140123 |743 |26932 |
-ROW |140124 |745 |26933 |
-ROW |140125 |746 |26934 |
-ROW |140126 |744 |26935 |
-ROW |140127 |744 |26936 |
-ROW |140128 |746 |26937 |
-ROW |140129 |746 |26938 |
-ROW |140130 |746 |26939 |
-ROW |140131 |746 |26940 |
-ROW |140132 |746 |26941 |
-ROW |140133 |746 |26942 |
-ROW |140134 |745 |26943 |
-ROW |140135 |1362 |32207 |
-ROW |140136 |1362 |32208 |
-ROW |140137 |1362 |32209 |
-ROW |140138 |1362 |32210 |
-ROW |140139 |1362 |32211 |
-ROW |140140 |1362 |32212 |
-ROW |140141 |1362 |32213 |
-ROW |140142 |1362 |32214 |
-ROW |140143 |1362 |32215 |
-ROW |140144 |1362 |32216 |
-ROW |140145 |1362 |32217 |
-ROW |140146 |1362 |32218 |
-ROW |140147 |1362 |32219 |
-ROW |140148 |1362 |32220 |
-ROW |140149 |1362 |32221 |
-ROW |140150 |1362 |32222 |
-ROW |140151 |1362 |32223 |
-ROW |140152 |1362 |32224 |
-ROW |140153 |1362 |32225 |
-ROW |140154 |1362 |32226 |
-ROW |140155 |1362 |32227 |
-ROW |140156 |1362 |32228 |
-ROW |140157 |1362 |32229 |
-ROW |140158 |1362 |32230 |
-ROW |140159 |1362 |32231 |
-ROW |140160 |1362 |32232 |
-ROW |140161 |1362 |32233 |
-ROW |140162 |1362 |32234 |
-ROW |140163 |1362 |32235 |
-ROW |140164 |1362 |32236 |
-ROW |140165 |1362 |32237 |
-ROW |140166 |1362 |32238 |
-ROW |140167 |1362 |32239 |
-ROW |140168 |1362 |32240 |
-ROW |140169 |1362 |32241 |
-ROW |140170 |1362 |32242 |
-ROW |140171 |1362 |32243 |
-ROW |140172 |1362 |32244 |
-ROW |140173 |1362 |32245 |
-ROW |140174 |1362 |32246 |
-ROW |140175 |1362 |32247 |
-ROW |140176 |1362 |32248 |
-ROW |140177 |1362 |32249 |
-ROW |140178 |1362 |32250 |
-ROW |140179 |1362 |32251 |
-ROW |140180 |1362 |32252 |
-ROW |140181 |1362 |32253 |
-ROW |140182 |1362 |32254 |
-ROW |140183 |1362 |32255 |
-ROW |140184 |1362 |32256 |
-ROW |140185 |1362 |32257 |
-ROW |140186 |1362 |32258 |
-ROW |140187 |1362 |32259 |
-ROW |140188 |1362 |32260 |
-ROW |140189 |1362 |32261 |
-ROW |140190 |1362 |32262 |
-ROW |140191 |1362 |32263 |
-ROW |140192 |1362 |32264 |
-ROW |140193 |1362 |32265 |
-ROW |140194 |1362 |32266 |
-ROW |140195 |1362 |32267 |
-ROW |140196 |1362 |32268 |
-ROW |140197 |1362 |32269 |
-ROW |140198 |1362 |32270 |
-ROW |140199 |1362 |32271 |
-ROW |140200 |1362 |32272 |
-ROW |140201 |1362 |32273 |
-ROW |140202 |1328 |30821 |
-ROW |140203 |1328 |30822 |
-ROW |140204 |1330 |30823 |
-ROW |140205 |1330 |30824 |
-ROW |140206 |1330 |30825 |
-ROW |140207 |1330 |30826 |
-ROW |140208 |1328 |30827 |
-ROW |140209 |1330 |30828 |
-ROW |140210 |1330 |30829 |
-ROW |140211 |1330 |30830 |
-ROW |140212 |1328 |31054 |
-ROW |140213 |1328 |30831 |
-ROW |140214 |1328 |30832 |
-ROW |140215 |1328 |30833 |
-ROW |140216 |1328 |30834 |
-ROW |140217 |1328 |30835 |
-ROW |140218 |1329 |30836 |
-ROW |140219 |1328 |30837 |
-ROW |140220 |1328 |30838 |
-ROW |140221 |1328 |30839 |
-ROW |140222 |1329 |30840 |
-ROW |140223 |1328 |30841 |
-ROW |140224 |1329 |30842 |
-ROW |140225 |1329 |30843 |
-ROW |140226 |1329 |30844 |
-ROW |140227 |1329 |30845 |
-ROW |140228 |1328 |30846 |
-ROW |140229 |1328 |30847 |
-ROW |140230 |1328 |30848 |
-ROW |140231 |1328 |30849 |
-ROW |140232 |1328 |30850 |
-ROW |140233 |1328 |30851 |
-ROW |140234 |1328 |30852 |
-ROW |140235 |1328 |30853 |
-ROW |140236 |1328 |30854 |
-ROW |140237 |1328 |30855 |
-ROW |140238 |1328 |30856 |
-ROW |140239 |1328 |30857 |
-ROW |140240 |1328 |30858 |
-ROW |140241 |1328 |30859 |
-ROW |140242 |1328 |30860 |
-ROW |140243 |1328 |30861 |
-ROW |140244 |1328 |30862 |
-ROW |140245 |1328 |30863 |
-ROW |140246 |1328 |30864 |
-ROW |140247 |1328 |30865 |
-ROW |140248 |1328 |30866 |
-ROW |140249 |1328 |30867 |
-ROW |140250 |1328 |30868 |
-ROW |140251 |1328 |30869 |
-ROW |140252 |1328 |30870 |
-ROW |140253 |1328 |30871 |
-ROW |140254 |1328 |30872 |
-ROW |140255 |1329 |30873 |
-ROW |140256 |1434 |33017 |
-ROW |140257 |1434 |33018 |
-ROW |140258 |1433 |33019 |
-ROW |140259 |1434 |33020 |
-ROW |140260 |1434 |33021 |
-ROW |140261 |1433 |33022 |
-ROW |140262 |1433 |33023 |
-ROW |140263 |1433 |33024 |
-ROW |140264 |1433 |33025 |
-ROW |140265 |1433 |33026 |
-ROW |140266 |1433 |33027 |
-ROW |140267 |1433 |33028 |
-ROW |140268 |1433 |33029 |
-ROW |140269 |1433 |33030 |
-ROW |140270 |1433 |33031 |
-ROW |140271 |1433 |33032 |
-ROW |140272 |1433 |33033 |
-ROW |140273 |1433 |33034 |
-ROW |140274 |1433 |33035 |
-ROW |140275 |1433 |33036 |
-ROW |140276 |1433 |33037 |
-ROW |140277 |1433 |33038 |
-ROW |140278 |1433 |33039 |
-ROW |140279 |1433 |33040 |
-ROW |140280 |1433 |33041 |
-ROW |140281 |1433 |33042 |
-ROW |140282 |1433 |33043 |
-ROW |140283 |1433 |33044 |
-ROW |140284 |1433 |33045 |
-ROW |140285 |1433 |33046 |
-ROW |140286 |1433 |33047 |
-ROW |140287 |1433 |33048 |
-ROW |140288 |1433 |33049 |
-ROW |140289 |1433 |33050 |
-ROW |140290 |1433 |33051 |
-ROW |140291 |1433 |33052 |
-ROW |140292 |1433 |33053 |
-ROW |140293 |1433 |33054 |
-ROW |140294 |1433 |33055 |
-ROW |140295 |1433 |33056 |
-ROW |140296 |1433 |33057 |
-ROW |140297 |1433 |33058 |
-ROW |140298 |1433 |33059 |
-ROW |140299 |1433 |33060 |
-ROW |140300 |1434 |33065 |
-ROW |140301 |1434 |33066 |
-ROW |140302 |1433 |33122 |
-ROW |140303 |1433 |33123 |
-ROW |140304 |1433 |33124 |
-ROW |140305 |1433 |33125 |
-ROW |140306 |1433 |33126 |
-ROW |140307 |1433 |33127 |
-ROW |140308 |1433 |33128 |
-ROW |140309 |1433 |33129 |
-ROW |140310 |1433 |33130 |
-ROW |140311 |1433 |33131 |
-ROW |140312 |1433 |33132 |
-ROW |140313 |1433 |33133 |
-ROW |140314 |1433 |33134 |
-ROW |140315 |1433 |33135 |
-ROW |140316 |1433 |33136 |
-ROW |140317 |1433 |33137 |
-ROW |140318 |1433 |33138 |
-ROW |140319 |1435 |33139 |
-ROW |140320 |1436 |33140 |
-ROW |140321 |1435 |33141 |
-ROW |140322 |1436 |33142 |
-ROW |140323 |1435 |33144 |
-ROW |140324 |1435 |33145 |
-ROW |140325 |1435 |33146 |
-ROW |140326 |1435 |33147 |
-ROW |140327 |1435 |33148 |
-ROW |140328 |1435 |33149 |
-ROW |140329 |1435 |33150 |
-ROW |140330 |1435 |33151 |
-ROW |140331 |1435 |33152 |
-ROW |140332 |1435 |33153 |
-ROW |140333 |1435 |33154 |
-ROW |140334 |1435 |33155 |
-ROW |140335 |1435 |33156 |
-ROW |140336 |1435 |33157 |
-ROW |140337 |1435 |33158 |
-ROW |140338 |1435 |33159 |
-ROW |140339 |1435 |33160 |
-ROW |140340 |1435 |33161 |
-ROW |140341 |1435 |33162 |
-ROW |140342 |1435 |33163 |
-ROW |140343 |1435 |33164 |
-ROW |140344 |1435 |33165 |
-ROW |140345 |1435 |33166 |
-ROW |140346 |1435 |33167 |
-ROW |140347 |1435 |33168 |
-ROW |140348 |1435 |33169 |
-ROW |140349 |1435 |33170 |
-ROW |140350 |1435 |33171 |
-ROW |140351 |1435 |33172 |
-ROW |140352 |1435 |33567 |
-ROW |140353 |1436 |33177 |
-ROW |140354 |1436 |33178 |
-ROW |140355 |1336 |31055 |
-ROW |140356 |1335 |31056 |
-ROW |140357 |1335 |31057 |
-ROW |140358 |1335 |31058 |
-ROW |140359 |1335 |31626 |
-ROW |140360 |1335 |31627 |
-ROW |140361 |1335 |31628 |
-ROW |140362 |1336 |34173 |
-ROW |140363 |1336 |34174 |
-ROW |140364 |1336 |31059 |
-ROW |140365 |1335 |31060 |
-ROW |140366 |1335 |31061 |
-ROW |140367 |1335 |31062 |
-ROW |140368 |1335 |31063 |
-ROW |140369 |1335 |31064 |
-ROW |140370 |1335 |31065 |
-ROW |140371 |1335 |31066 |
-ROW |140372 |1335 |31067 |
-ROW |140373 |1335 |31068 |
-ROW |140374 |1335 |31069 |
-ROW |140375 |1335 |31070 |
-ROW |140376 |1335 |31071 |
-ROW |140377 |1335 |31072 |
-ROW |140378 |1335 |31073 |
-ROW |140379 |1335 |31074 |
-ROW |140380 |1335 |31075 |
-ROW |140381 |1335 |31076 |
-ROW |140382 |1335 |31077 |
-ROW |140383 |1335 |31078 |
-ROW |140384 |1335 |31079 |
-ROW |140385 |1335 |31080 |
-ROW |140386 |1335 |31081 |
-ROW |140387 |1335 |31082 |
-ROW |140388 |1335 |31083 |
-ROW |140389 |1335 |31084 |
-ROW |140390 |1335 |31085 |
-ROW |140391 |1335 |31086 |
-ROW |140392 |1335 |31087 |
-ROW |140393 |1335 |31088 |
-ROW |140394 |1335 |31089 |
-ROW |140395 |1335 |31090 |
-ROW |140396 |1336 |31091 |
-ROW |140397 |1335 |31092 |
-ROW |140398 |1336 |31093 |
-ROW |140399 |1336 |31094 |
-ROW |140400 |1335 |31095 |
-ROW |140401 |1335 |31096 |
-ROW |140402 |1335 |31097 |
-ROW |140403 |1335 |31098 |
-ROW |140404 |1335 |31099 |
-ROW |140405 |1335 |31100 |
-ROW |140406 |1335 |31101 |
-ROW |140407 |1335 |31102 |
-ROW |140408 |1335 |31103 |
-ROW |140409 |1335 |31104 |
-ROW |140410 |1335 |31105 |
-ROW |140411 |1335 |31106 |
-ROW |140412 |1335 |31107 |
-ROW |140413 |1335 |31108 |
-ROW |140414 |1335 |31109 |
-ROW |140415 |1335 |31110 |
-ROW |140416 |1335 |31111 |
-ROW |140417 |1335 |31112 |
-ROW |140418 |1335 |31113 |
-ROW |140419 |1335 |31114 |
-ROW |140420 |1335 |31115 |
-ROW |140421 |1335 |31116 |
-ROW |140422 |1335 |31117 |
-ROW |140423 |1335 |31118 |
-ROW |140424 |1335 |31119 |
-ROW |140425 |1335 |31120 |
-ROW |140426 |1335 |31121 |
-ROW |140427 |1336 |31128 |
-ROW |140428 |1336 |31129 |
-ROW |140429 |1336 |31130 |
-ROW |140430 |1336 |31132 |
-ROW |140431 |1336 |33194 |
-ROW |140432 |1314 |30431 |
-ROW |140433 |1314 |30432 |
-ROW |140434 |1315 |30433 |
-ROW |140435 |1314 |30434 |
-ROW |140436 |1314 |30435 |
-ROW |140437 |1314 |32546 |
-ROW |140438 |1315 |30436 |
-ROW |140439 |1314 |30437 |
-ROW |140440 |1314 |30438 |
-ROW |140441 |1314 |30439 |
-ROW |140442 |1314 |30440 |
-ROW |140443 |1314 |30441 |
-ROW |140444 |1314 |30442 |
-ROW |140445 |1315 |30443 |
-ROW |140446 |1314 |30444 |
-ROW |140447 |1314 |30445 |
-ROW |140448 |1314 |30446 |
-ROW |140449 |1314 |30447 |
-ROW |140450 |1314 |30449 |
-ROW |140451 |1314 |30450 |
-ROW |140452 |1314 |30451 |
-ROW |140453 |1314 |30452 |
-ROW |140454 |1314 |30453 |
-ROW |140455 |1314 |30454 |
-ROW |140456 |1314 |30455 |
-ROW |140457 |1314 |30456 |
-ROW |140458 |1314 |30457 |
-ROW |140459 |1314 |30458 |
-ROW |140460 |1314 |30459 |
-ROW |140461 |1314 |30460 |
-ROW |140462 |1314 |30461 |
-ROW |140463 |1314 |30462 |
-ROW |140464 |1314 |30463 |
-ROW |140465 |1314 |30464 |
-ROW |140466 |1314 |30465 |
-ROW |140467 |1314 |30466 |
-ROW |140468 |1314 |30470 |
-ROW |140469 |1314 |30471 |
-ROW |140470 |1314 |31168 |
-ROW |140471 |1314 |31169 |
-ROW |140472 |1314 |31170 |
-ROW |140473 |1314 |31171 |
-ROW |140474 |1314 |32547 |
-ROW |140475 |1314 |32548 |
-ROW |140476 |1314 |32549 |
-ROW |140477 |1314 |32550 |
-ROW |140478 |1314 |32551 |
-ROW |140479 |1314 |32552 |
-ROW |140480 |1314 |30474 |
-ROW |140481 |1315 |30475 |
-ROW |140482 |1314 |30476 |
-ROW |140483 |1314 |30477 |
-ROW |140484 |1314 |30478 |
-ROW |140485 |1314 |32554 |
-ROW |140486 |1314 |32555 |
-ROW |140487 |1314 |32556 |
-ROW |140488 |1314 |32557 |
-ROW |140489 |1314 |32558 |
-ROW |140490 |1314 |32559 |
-ROW |140491 |1322 |30637 |
-ROW |140492 |1322 |30638 |
-ROW |140493 |1323 |30639 |
-ROW |140494 |1322 |30640 |
-ROW |140495 |1322 |30641 |
-ROW |140496 |1322 |32560 |
-ROW |140497 |1323 |30642 |
-ROW |140498 |1322 |30643 |
-ROW |140499 |1322 |30644 |
-ROW |140500 |1322 |30645 |
-ROW |140501 |1322 |30646 |
-ROW |140502 |1322 |30647 |
-ROW |140503 |1322 |30648 |
-ROW |140504 |1323 |30649 |
-ROW |140505 |1322 |30650 |
-ROW |140506 |1322 |30651 |
-ROW |140507 |1322 |30652 |
-ROW |140508 |1322 |30653 |
-ROW |140509 |1322 |30655 |
-ROW |140510 |1322 |30656 |
-ROW |140511 |1322 |30657 |
-ROW |140512 |1322 |30658 |
-ROW |140513 |1322 |30659 |
-ROW |140514 |1322 |30660 |
-ROW |140515 |1322 |30661 |
-ROW |140516 |1322 |30662 |
-ROW |140517 |1322 |30663 |
-ROW |140518 |1322 |30664 |
-ROW |140519 |1322 |30665 |
-ROW |140520 |1322 |30666 |
-ROW |140521 |1322 |30667 |
-ROW |140522 |1322 |30668 |
-ROW |140523 |1322 |30669 |
-ROW |140524 |1322 |30670 |
-ROW |140525 |1322 |30671 |
-ROW |140526 |1322 |30672 |
-ROW |140527 |1322 |30676 |
-ROW |140528 |1322 |30677 |
-ROW |140529 |1322 |31172 |
-ROW |140530 |1322 |31173 |
-ROW |140531 |1322 |31174 |
-ROW |140532 |1322 |31175 |
-ROW |140533 |1322 |32561 |
-ROW |140534 |1322 |32562 |
-ROW |140535 |1322 |32563 |
-ROW |140536 |1322 |32564 |
-ROW |140537 |1322 |32565 |
-ROW |140538 |1322 |32566 |
-ROW |140539 |1322 |30680 |
-ROW |140540 |1323 |30681 |
-ROW |140541 |1322 |30682 |
-ROW |140542 |1322 |30683 |
-ROW |140543 |1322 |30684 |
-ROW |140544 |1322 |32568 |
-ROW |140545 |1322 |32569 |
-ROW |140546 |1322 |32570 |
-ROW |140547 |1322 |32571 |
-ROW |140548 |1322 |32572 |
-ROW |140549 |1322 |32573 |
-ROW |140550 |1317 |30479 |
-ROW |140551 |1316 |30480 |
-ROW |140552 |1316 |30481 |
-ROW |140553 |1316 |30482 |
-ROW |140554 |1316 |30483 |
-ROW |140555 |1316 |32574 |
-ROW |140556 |1316 |30484 |
-ROW |140557 |1317 |30485 |
-ROW |140558 |1316 |30486 |
-ROW |140559 |1317 |30487 |
-ROW |140560 |1316 |30488 |
-ROW |140561 |1316 |30489 |
-ROW |140562 |1316 |30490 |
-ROW |140563 |1316 |30491 |
-ROW |140564 |1316 |30492 |
-ROW |140565 |1316 |30493 |
-ROW |140566 |1316 |30494 |
-ROW |140567 |1316 |30495 |
-ROW |140568 |1316 |30496 |
-ROW |140569 |1316 |30497 |
-ROW |140570 |1316 |30499 |
-ROW |140571 |1316 |30500 |
-ROW |140572 |1316 |30503 |
-ROW |140573 |1316 |30504 |
-ROW |140574 |1316 |30505 |
-ROW |140575 |1316 |30506 |
-ROW |140576 |1316 |30507 |
-ROW |140577 |1316 |30508 |
-ROW |140578 |1316 |30509 |
-ROW |140579 |1316 |30510 |
-ROW |140580 |1316 |30512 |
-ROW |140581 |1316 |30513 |
-ROW |140582 |1316 |30514 |
-ROW |140583 |1316 |30515 |
-ROW |140584 |1316 |30516 |
-ROW |140585 |1316 |30517 |
-ROW |140586 |1316 |30518 |
-ROW |140587 |1316 |30519 |
-ROW |140588 |1316 |31176 |
-ROW |140589 |1316 |31177 |
-ROW |140590 |1316 |31178 |
-ROW |140591 |1316 |31179 |
-ROW |140592 |1316 |32575 |
-ROW |140593 |1316 |32576 |
-ROW |140594 |1316 |32577 |
-ROW |140595 |1316 |32578 |
-ROW |140596 |1316 |32579 |
-ROW |140597 |1316 |32580 |
-ROW |140598 |1316 |30522 |
-ROW |140599 |1317 |30523 |
-ROW |140600 |1316 |30524 |
-ROW |140601 |1316 |30525 |
-ROW |140602 |1316 |30526 |
-ROW |140603 |1316 |32582 |
-ROW |140604 |1316 |32583 |
-ROW |140605 |1316 |32584 |
-ROW |140606 |1316 |32585 |
-ROW |140607 |1316 |32586 |
-ROW |140608 |1316 |32587 |
-ROW |140609 |1345 |31629 |
-ROW |140610 |1345 |31630 |
-ROW |140611 |1346 |31631 |
-ROW |140612 |1345 |31632 |
-ROW |140613 |1346 |31633 |
-ROW |140614 |1346 |31634 |
-ROW |140615 |1346 |31635 |
-ROW |140616 |1346 |31636 |
-ROW |140617 |1346 |31637 |
-ROW |140618 |1346 |31638 |
-ROW |140619 |1346 |31639 |
-ROW |140620 |1345 |31640 |
-ROW |140621 |1345 |31641 |
-ROW |140622 |1346 |31642 |
-ROW |140623 |1346 |31643 |
-ROW |140624 |1346 |31644 |
-ROW |140625 |1346 |31645 |
-ROW |140626 |1345 |31646 |
-ROW |140627 |1345 |31647 |
-ROW |140628 |1345 |31648 |
-ROW |140629 |1345 |31649 |
-ROW |140630 |1345 |31650 |
-ROW |140631 |1345 |31651 |
-ROW |140632 |1345 |31652 |
-ROW |140633 |1345 |31653 |
-ROW |140634 |1345 |31654 |
-ROW |140635 |1345 |31655 |
-ROW |140636 |1345 |31656 |
-ROW |140637 |1345 |31657 |
-ROW |140638 |1345 |31658 |
-ROW |140639 |1345 |31659 |
-ROW |140640 |1345 |31660 |
-ROW |140641 |1345 |31661 |
-ROW |140642 |1345 |31662 |
-ROW |140643 |1345 |31663 |
-ROW |140644 |1345 |31664 |
-ROW |140645 |1345 |31665 |
-ROW |140646 |1345 |31666 |
-ROW |140647 |1345 |31667 |
-ROW |140648 |1345 |31668 |
-ROW |140649 |1345 |31669 |
-ROW |140650 |1345 |31670 |
-ROW |140651 |1345 |31671 |
-ROW |140652 |1345 |31672 |
-ROW |140653 |1345 |31673 |
-ROW |140654 |1345 |31674 |
-ROW |140655 |1345 |31675 |
-ROW |140656 |1345 |31676 |
-ROW |140657 |1345 |31677 |
-ROW |140658 |1345 |31678 |
-ROW |140659 |1345 |31679 |
-ROW |140660 |1345 |31680 |
-ROW |140661 |1345 |31681 |
-ROW |140662 |1345 |31682 |
-ROW |140663 |1345 |31683 |
-ROW |140664 |1345 |31684 |
-ROW |140665 |1345 |31685 |
-ROW |140666 |1345 |31686 |
-ROW |140667 |1345 |31687 |
-ROW |140668 |1345 |31688 |
-ROW |140669 |1345 |31689 |
-ROW |140670 |1345 |31690 |
-ROW |140671 |1345 |31691 |
-ROW |140672 |1345 |31692 |
-ROW |140673 |1345 |31693 |
-ROW |140674 |1345 |31694 |
-ROW |140675 |1345 |31695 |
-ROW |140676 |1345 |31696 |
-ROW |140677 |1345 |31697 |
-ROW |140678 |1345 |31698 |
-ROW |140679 |1345 |31699 |
-ROW |140680 |1345 |31700 |
-ROW |140681 |1345 |31701 |
-ROW |140682 |1345 |31702 |
-ROW |140683 |1345 |31703 |
-ROW |140684 |1345 |31704 |
-ROW |140685 |1345 |31705 |
-ROW |140686 |1115 |28671 |
-ROW |140687 |1115 |28672 |
-ROW |140688 |1114 |28673 |
-ROW |140689 |1114 |28674 |
-ROW |140690 |1115 |28675 |
-ROW |140691 |1114 |28676 |
-ROW |140692 |1114 |28677 |
-ROW |140693 |1114 |28678 |
-ROW |140694 |1114 |28679 |
-ROW |140695 |1114 |28680 |
-ROW |140696 |1114 |28681 |
-ROW |140697 |1115 |28682 |
-ROW |140698 |1115 |28683 |
-ROW |140699 |1114 |28684 |
-ROW |140700 |1114 |28685 |
-ROW |140701 |1115 |28686 |
-ROW |140702 |1115 |28687 |
-ROW |140703 |1114 |28688 |
-ROW |140704 |1114 |28689 |
-ROW |140705 |1114 |28690 |
-ROW |140706 |1114 |28691 |
-ROW |140707 |1114 |28692 |
-ROW |140708 |1114 |28693 |
-ROW |140709 |1114 |28694 |
-ROW |140710 |1114 |28695 |
-ROW |140711 |1114 |28696 |
-ROW |140712 |1114 |28697 |
-ROW |140713 |1114 |28698 |
-ROW |140714 |1114 |28699 |
-ROW |140715 |1114 |28700 |
-ROW |140716 |1114 |28701 |
-ROW |140717 |1114 |28702 |
-ROW |140718 |1114 |28703 |
-ROW |140719 |1114 |28704 |
-ROW |140720 |1114 |28705 |
-ROW |140721 |1114 |28706 |
-ROW |140722 |1114 |28707 |
-ROW |140723 |1114 |28708 |
-ROW |140724 |1114 |28709 |
-ROW |140725 |1114 |28710 |
-ROW |140726 |1115 |28713 |
-ROW |140727 |1115 |28714 |
-ROW |140728 |1338 |31180 |
-ROW |140729 |1337 |31181 |
-ROW |140730 |1338 |31182 |
-ROW |140731 |1338 |31183 |
-ROW |140732 |1338 |31185 |
-ROW |140733 |1338 |31186 |
-ROW |140734 |1337 |31188 |
-ROW |140735 |1337 |31189 |
-ROW |140736 |1337 |31190 |
-ROW |140737 |1337 |31191 |
-ROW |140738 |1337 |31192 |
-ROW |140739 |1337 |31193 |
-ROW |140740 |1337 |31194 |
-ROW |140741 |1338 |31195 |
-ROW |140742 |1338 |31196 |
-ROW |140743 |1337 |32592 |
-ROW |140744 |1338 |32595 |
-ROW |140745 |1337 |34944 |
-ROW |140746 |1337 |34945 |
-ROW |140747 |1337 |31197 |
-ROW |140748 |1337 |31199 |
-ROW |140749 |1337 |31200 |
-ROW |140750 |1337 |31201 |
-ROW |140751 |1337 |31202 |
-ROW |140752 |1337 |31203 |
-ROW |140753 |1337 |31204 |
-ROW |140754 |1337 |31205 |
-ROW |140755 |1337 |31206 |
-ROW |140756 |1337 |31207 |
-ROW |140757 |1337 |31208 |
-ROW |140758 |1337 |31209 |
-ROW |140759 |1337 |31210 |
-ROW |140760 |1337 |31211 |
-ROW |140761 |1337 |31212 |
-ROW |140762 |1337 |31213 |
-ROW |140763 |1337 |31215 |
-ROW |140764 |1337 |31216 |
-ROW |140765 |1337 |31217 |
-ROW |140766 |1337 |31218 |
-ROW |140767 |1337 |31219 |
-ROW |140768 |1337 |31220 |
-ROW |140769 |1337 |31221 |
-ROW |140770 |1337 |31222 |
-ROW |140771 |1337 |31223 |
-ROW |140772 |1337 |31224 |
-ROW |140773 |1337 |31225 |
-ROW |140774 |1337 |31226 |
-ROW |140775 |1337 |31227 |
-ROW |140776 |1337 |31228 |
-ROW |140777 |1337 |31229 |
-ROW |140778 |1337 |31230 |
-ROW |140779 |1337 |31231 |
-ROW |140780 |1337 |31232 |
-ROW |140781 |1337 |31233 |
-ROW |140782 |1337 |31234 |
-ROW |140783 |1337 |31235 |
-ROW |140784 |1337 |31236 |
-ROW |140785 |1337 |31237 |
-ROW |140786 |1337 |31238 |
-ROW |140787 |1337 |31239 |
-ROW |140788 |1337 |32596 |
-ROW |140789 |1302 |30273 |
-ROW |140790 |1302 |30274 |
-ROW |140791 |1303 |30275 |
-ROW |140792 |1303 |30276 |
-ROW |140793 |1302 |30277 |
-ROW |140794 |1302 |30278 |
-ROW |140795 |1302 |30279 |
-ROW |140796 |1302 |30280 |
-ROW |140797 |1302 |30281 |
-ROW |140798 |1302 |30282 |
-ROW |140799 |1302 |30283 |
-ROW |140800 |1302 |30284 |
-ROW |140801 |1302 |30285 |
-ROW |140802 |1302 |30286 |
-ROW |140803 |1302 |30287 |
-ROW |140804 |1302 |30288 |
-ROW |140805 |1302 |30289 |
-ROW |140806 |1302 |30290 |
-ROW |140807 |1302 |30291 |
-ROW |140808 |1302 |30292 |
-ROW |140809 |1302 |30293 |
-ROW |140810 |1302 |30294 |
-ROW |140811 |1302 |30295 |
-ROW |140812 |1302 |30296 |
-ROW |140813 |1302 |30297 |
-ROW |140814 |1302 |30298 |
-ROW |140815 |1302 |30299 |
-ROW |140816 |1302 |30300 |
-ROW |140817 |1302 |30301 |
-ROW |140818 |1302 |30302 |
-ROW |140819 |1302 |30303 |
-ROW |140820 |1302 |30304 |
-ROW |140821 |1302 |30305 |
-ROW |140822 |1302 |30306 |
-ROW |140823 |1302 |30307 |
-ROW |140824 |1302 |30308 |
-ROW |140825 |1302 |30309 |
-ROW |140826 |1302 |30310 |
-ROW |140827 |1302 |30311 |
-ROW |140828 |1302 |30312 |
-ROW |140829 |1302 |30313 |
-ROW |140830 |1302 |30314 |
-ROW |140831 |1302 |30315 |
-ROW |140832 |1302 |30316 |
-ROW |140833 |1302 |30317 |
-ROW |140834 |1302 |30318 |
-ROW |140835 |1302 |30319 |
-ROW |140836 |1302 |30320 |
-ROW |140837 |1302 |30321 |
-ROW |140838 |1302 |30322 |
-ROW |140839 |1302 |30323 |
-ROW |140840 |1302 |30324 |
-ROW |140841 |1302 |30325 |
-ROW |140842 |1302 |30326 |
-ROW |140843 |1302 |30327 |
-ROW |140844 |1302 |30328 |
-ROW |140845 |1302 |30329 |
-ROW |140846 |1302 |30330 |
-ROW |140847 |1302 |30331 |
-ROW |140848 |1302 |30332 |
-ROW |140849 |1302 |30333 |
-ROW |140850 |1302 |30334 |
-ROW |140851 |1302 |30335 |
-ROW |140852 |1302 |30336 |
-ROW |140853 |1302 |30344 |
-ROW |140854 |1302 |30345 |
-ROW |140855 |1302 |30346 |
-ROW |140856 |1302 |30347 |
-ROW |140857 |1302 |30351 |
-ROW |140858 |1302 |30352 |
-ROW |140859 |1302 |30353 |
-ROW |140860 |1302 |30354 |
-ROW |140861 |1302 |30355 |
-ROW |140862 |1302 |30356 |
-ROW |140863 |1302 |30357 |
-ROW |140864 |1302 |30358 |
-ROW |140865 |1302 |30359 |
-ROW |140866 |1302 |30360 |
-ROW |140867 |1302 |30361 |
-ROW |140868 |1302 |30362 |
-ROW |140869 |1302 |30363 |
-ROW |140870 |1302 |30364 |
-ROW |140871 |1302 |30365 |
-ROW |140872 |1302 |30366 |
-ROW |140873 |1302 |30367 |
-ROW |140874 |1302 |30368 |
-ROW |140875 |1302 |30369 |
-ROW |140876 |1302 |30370 |
-ROW |140877 |1302 |30371 |
-ROW |140878 |1302 |30372 |
-ROW |140879 |1302 |30373 |
-ROW |140880 |1302 |30374 |
-ROW |140881 |1302 |30375 |
-ROW |140882 |1302 |30376 |
-ROW |140883 |1302 |30377 |
-ROW |140884 |1302 |30378 |
-ROW |140885 |1302 |30379 |
-ROW |140886 |1302 |30380 |
-ROW |140887 |1302 |30381 |
-ROW |140888 |1302 |30382 |
-ROW |140889 |1302 |30383 |
-ROW |140890 |1302 |30384 |
-ROW |140891 |1302 |30385 |
-ROW |140892 |1302 |30386 |
-ROW |140893 |1302 |30387 |
-ROW |140894 |1302 |30388 |
-ROW |140895 |1302 |30389 |
-ROW |140896 |1302 |30390 |
-ROW |140897 |1302 |30391 |
-ROW |140898 |1302 |30392 |
-ROW |140899 |1302 |30393 |
-ROW |140900 |1302 |30394 |
-ROW |140901 |1302 |30395 |
-ROW |140902 |1302 |30397 |
-ROW |140903 |1302 |30398 |
-ROW |140904 |1302 |30399 |
-ROW |140905 |1302 |30400 |
-ROW |140906 |1302 |30401 |
-ROW |140907 |1302 |30402 |
-ROW |140908 |1302 |30403 |
-ROW |140909 |1302 |30404 |
-ROW |140910 |780 |27065 |
-ROW |140911 |780 |27066 |
-ROW |140912 |780 |27067 |
-ROW |140913 |799 |27149 |
-ROW |140914 |799 |27150 |
-ROW |140915 |799 |27151 |
-ROW |140916 |805 |27192 |
-ROW |140917 |805 |27193 |
-ROW |140918 |805 |27194 |
-ROW |140919 |813 |27225 |
-ROW |140920 |813 |27226 |
-ROW |140921 |813 |27227 |
-ROW |140922 |822 |27261 |
-ROW |140923 |822 |27262 |
-ROW |140924 |822 |27263 |
-ROW |140925 |825 |27282 |
-ROW |140926 |825 |27283 |
-ROW |140927 |825 |27284 |
-ROW |140928 |842 |27333 |
-ROW |140929 |842 |27334 |
-ROW |140930 |842 |27335 |
-ROW |140931 |847 |27365 |
-ROW |140932 |847 |27366 |
-ROW |140933 |847 |27367 |
-ROW |140934 |876 |27462 |
-ROW |140935 |876 |27463 |
-ROW |140936 |876 |27464 |
-ROW |140937 |885 |27496 |
-ROW |140938 |885 |27497 |
-ROW |140939 |885 |27498 |
-ROW |140940 |894 |27532 |
-ROW |140941 |894 |27533 |
-ROW |140942 |894 |27534 |
-ROW |140943 |903 |27568 |
-ROW |140944 |903 |27569 |
-ROW |140945 |903 |27570 |
-ROW |140946 |915 |27631 |
-ROW |140947 |915 |27632 |
-ROW |140948 |915 |27633 |
-ROW |140949 |918 |27654 |
-ROW |140950 |918 |27655 |
-ROW |140951 |918 |27656 |
-ROW |140952 |936 |27734 |
-ROW |140953 |936 |27735 |
-ROW |140954 |936 |27736 |
-ROW |140955 |944 |27766 |
-ROW |140956 |944 |27767 |
-ROW |140957 |944 |27768 |
-ROW |140958 |951 |27800 |
-ROW |140959 |951 |27801 |
-ROW |140960 |951 |27802 |
-ROW |140961 |971 |27882 |
-ROW |140962 |971 |27883 |
-ROW |140963 |971 |27884 |
-ROW |140964 |979 |27919 |
-ROW |140965 |979 |27920 |
-ROW |140966 |979 |27921 |
-ROW |140967 |988 |27956 |
-ROW |140968 |988 |27957 |
-ROW |140969 |988 |27958 |
-ROW |140970 |994 |27986 |
-ROW |140971 |994 |27987 |
-ROW |140972 |994 |27988 |
-ROW |140973 |1000 |28015 |
-ROW |140974 |1000 |28016 |
-ROW |140975 |1000 |28017 |
-ROW |140976 |1030 |28130 |
-ROW |140977 |1030 |28131 |
-ROW |140978 |1030 |28132 |
-ROW |140979 |1055 |28233 |
-ROW |140980 |1055 |28234 |
-ROW |140981 |1055 |28235 |
-ROW |140982 |1060 |28282 |
-ROW |140983 |1060 |28283 |
-ROW |140984 |1060 |28284 |
-ROW |140985 |1070 |28330 |
-ROW |140986 |1070 |28331 |
-ROW |140987 |1070 |28332 |
-ROW |140988 |1079 |28377 |
-ROW |140989 |1079 |28378 |
-ROW |140990 |1079 |28379 |
-ROW |140991 |1095 |28454 |
-ROW |140992 |1095 |28455 |
-ROW |140993 |1095 |28456 |
-ROW |140994 |1102 |28482 |
-ROW |140995 |1102 |28483 |
-ROW |140996 |1102 |28484 |
-ROW |140997 |1127 |28957 |
-ROW |140998 |1127 |28958 |
-ROW |140999 |1127 |28959 |
-ROW |141000 |1136 |29050 |
-ROW |141001 |1136 |29051 |
-ROW |141002 |1136 |29052 |
-ROW |141003 |1271 |30046 |
-ROW |141004 |1271 |30047 |
-ROW |141005 |1271 |30048 |
-ROW |141006 |1414 |32601 |
-ROW |141007 |1414 |32602 |
-ROW |141008 |1414 |32603 |
-ROW |141009 |1422 |32765 |
-ROW |141010 |1422 |32766 |
-ROW |141011 |1422 |32767 |
-ROW |141012 |800 |27152 |
-ROW |141013 |799 |27154 |
-ROW |141014 |800 |27157 |
-ROW |141015 |799 |29844 |
-ROW |141016 |800 |29845 |
-ROW |141017 |800 |29846 |
-ROW |141018 |800 |29847 |
-ROW |141019 |800 |29848 |
-ROW |141020 |804 |27195 |
-ROW |141021 |804 |27199 |
-ROW |141022 |805 |27202 |
-ROW |141023 |812 |27228 |
-ROW |141024 |812 |27232 |
-ROW |141025 |813 |27235 |
-ROW |141026 |821 |27264 |
-ROW |141027 |821 |27268 |
-ROW |141028 |822 |27271 |
-ROW |141029 |824 |27285 |
-ROW |141030 |824 |27289 |
-ROW |141031 |825 |27292 |
-ROW |141032 |841 |27336 |
-ROW |141033 |841 |27340 |
-ROW |141034 |842 |27343 |
-ROW |141035 |846 |27368 |
-ROW |141036 |846 |27372 |
-ROW |141037 |847 |27375 |
-ROW |141038 |875 |27465 |
-ROW |141039 |875 |27469 |
-ROW |141040 |876 |27472 |
-ROW |141041 |884 |27499 |
-ROW |141042 |884 |27503 |
-ROW |141043 |885 |27506 |
-ROW |141044 |893 |27535 |
-ROW |141045 |893 |27539 |
-ROW |141046 |894 |27542 |
-ROW |141047 |902 |27571 |
-ROW |141048 |902 |27575 |
-ROW |141049 |903 |27578 |
-ROW |141050 |914 |27634 |
-ROW |141051 |914 |27638 |
-ROW |141052 |915 |27641 |
-ROW |141053 |917 |27657 |
-ROW |141054 |917 |27661 |
-ROW |141055 |918 |27664 |
-ROW |141056 |935 |27737 |
-ROW |141057 |935 |27741 |
-ROW |141058 |936 |27744 |
-ROW |141059 |943 |27769 |
-ROW |141060 |943 |27773 |
-ROW |141061 |944 |27776 |
-ROW |141062 |950 |27803 |
-ROW |141063 |950 |27807 |
-ROW |141064 |951 |27810 |
-ROW |141065 |970 |27885 |
-ROW |141066 |970 |27889 |
-ROW |141067 |971 |27892 |
-ROW |141068 |978 |27922 |
-ROW |141069 |978 |27926 |
-ROW |141070 |979 |27929 |
-ROW |141071 |987 |27959 |
-ROW |141072 |987 |27963 |
-ROW |141073 |988 |27966 |
-ROW |141074 |993 |27989 |
-ROW |141075 |993 |27993 |
-ROW |141076 |994 |27996 |
-ROW |141077 |999 |28018 |
-ROW |141078 |999 |28022 |
-ROW |141079 |1000 |28025 |
-ROW |141080 |1029 |28133 |
-ROW |141081 |1029 |28137 |
-ROW |141082 |1030 |28140 |
-ROW |141083 |1054 |28236 |
-ROW |141084 |1054 |28240 |
-ROW |141085 |1055 |28243 |
-ROW |141086 |1059 |28285 |
-ROW |141087 |1059 |28289 |
-ROW |141088 |1060 |28292 |
-ROW |141089 |1069 |28333 |
-ROW |141090 |1069 |28337 |
-ROW |141091 |1070 |28340 |
-ROW |141092 |1078 |28380 |
-ROW |141093 |1078 |28384 |
-ROW |141094 |1079 |28387 |
-ROW |141095 |1094 |28457 |
-ROW |141096 |1094 |28461 |
-ROW |141097 |1095 |28464 |
-ROW |141098 |1101 |28485 |
-ROW |141099 |1101 |28489 |
-ROW |141100 |1102 |28492 |
-ROW |141101 |1126 |28960 |
-ROW |141102 |1126 |28964 |
-ROW |141103 |1127 |28967 |
-ROW |141104 |1135 |29053 |
-ROW |141105 |1135 |29057 |
-ROW |141106 |1136 |29060 |
-ROW |141107 |1000 |29834 |
-ROW |141108 |999 |29835 |
-ROW |141109 |999 |29836 |
-ROW |141110 |999 |29837 |
-ROW |141111 |999 |29838 |
-ROW |141112 |805 |29849 |
-ROW |141113 |804 |29850 |
-ROW |141114 |804 |29851 |
-ROW |141115 |804 |29852 |
-ROW |141116 |804 |29853 |
-ROW |141117 |813 |29854 |
-ROW |141118 |812 |29855 |
-ROW |141119 |812 |29856 |
-ROW |141120 |812 |29857 |
-ROW |141121 |812 |29858 |
-ROW |141122 |822 |29859 |
-ROW |141123 |821 |29860 |
-ROW |141124 |821 |29861 |
-ROW |141125 |821 |29862 |
-ROW |141126 |821 |29863 |
-ROW |141127 |825 |29864 |
-ROW |141128 |824 |29865 |
-ROW |141129 |824 |29866 |
-ROW |141130 |824 |29867 |
-ROW |141131 |824 |29868 |
-ROW |141132 |842 |29869 |
-ROW |141133 |841 |29870 |
-ROW |141134 |841 |29871 |
-ROW |141135 |841 |29872 |
-ROW |141136 |841 |29873 |
-ROW |141137 |847 |29874 |
-ROW |141138 |846 |29875 |
-ROW |141139 |846 |29876 |
-ROW |141140 |846 |29877 |
-ROW |141141 |846 |29878 |
-ROW |141142 |876 |29879 |
-ROW |141143 |875 |29880 |
-ROW |141144 |875 |29881 |
-ROW |141145 |875 |29882 |
-ROW |141146 |875 |29883 |
-ROW |141147 |885 |29884 |
-ROW |141148 |884 |29885 |
-ROW |141149 |884 |29886 |
-ROW |141150 |884 |29887 |
-ROW |141151 |884 |29888 |
-ROW |141152 |894 |29889 |
-ROW |141153 |893 |29890 |
-ROW |141154 |893 |29891 |
-ROW |141155 |893 |29892 |
-ROW |141156 |893 |29893 |
-ROW |141157 |903 |29894 |
-ROW |141158 |902 |29895 |
-ROW |141159 |902 |29896 |
-ROW |141160 |902 |29897 |
-ROW |141161 |902 |29898 |
-ROW |141162 |915 |29899 |
-ROW |141163 |914 |29900 |
-ROW |141164 |914 |29901 |
-ROW |141165 |914 |29902 |
-ROW |141166 |914 |29903 |
-ROW |141167 |918 |29904 |
-ROW |141168 |917 |29905 |
-ROW |141169 |917 |29906 |
-ROW |141170 |917 |29907 |
-ROW |141171 |917 |29908 |
-ROW |141172 |936 |29909 |
-ROW |141173 |935 |29910 |
-ROW |141174 |935 |29911 |
-ROW |141175 |935 |29912 |
-ROW |141176 |935 |29913 |
-ROW |141177 |944 |29914 |
-ROW |141178 |943 |29915 |
-ROW |141179 |943 |29916 |
-ROW |141180 |943 |29917 |
-ROW |141181 |943 |29918 |
-ROW |141182 |951 |29919 |
-ROW |141183 |950 |29920 |
-ROW |141184 |950 |29921 |
-ROW |141185 |950 |29922 |
-ROW |141186 |950 |29923 |
-ROW |141187 |971 |29924 |
-ROW |141188 |970 |29925 |
-ROW |141189 |970 |29926 |
-ROW |141190 |970 |29927 |
-ROW |141191 |970 |29928 |
-ROW |141192 |979 |29929 |
-ROW |141193 |978 |29930 |
-ROW |141194 |978 |29931 |
-ROW |141195 |978 |29932 |
-ROW |141196 |978 |29933 |
-ROW |141197 |988 |29934 |
-ROW |141198 |987 |29935 |
-ROW |141199 |987 |29936 |
-ROW |141200 |987 |29937 |
-ROW |141201 |987 |29938 |
-ROW |141202 |994 |29939 |
-ROW |141203 |993 |29940 |
-ROW |141204 |993 |29941 |
-ROW |141205 |993 |29942 |
-ROW |141206 |993 |29943 |
-ROW |141207 |1030 |29944 |
-ROW |141208 |1029 |29945 |
-ROW |141209 |1029 |29946 |
-ROW |141210 |1029 |29947 |
-ROW |141211 |1029 |29948 |
-ROW |141212 |1055 |29954 |
-ROW |141213 |1054 |29955 |
-ROW |141214 |1054 |29956 |
-ROW |141215 |1054 |29957 |
-ROW |141216 |1054 |29958 |
-ROW |141217 |1060 |29959 |
-ROW |141218 |1059 |29960 |
-ROW |141219 |1059 |29961 |
-ROW |141220 |1059 |29962 |
-ROW |141221 |1059 |29963 |
-ROW |141222 |1070 |29964 |
-ROW |141223 |1069 |29965 |
-ROW |141224 |1069 |29966 |
-ROW |141225 |1069 |29967 |
-ROW |141226 |1069 |29968 |
-ROW |141227 |1079 |29969 |
-ROW |141228 |1078 |29970 |
-ROW |141229 |1078 |29971 |
-ROW |141230 |1078 |29972 |
-ROW |141231 |1078 |29973 |
-ROW |141232 |1095 |29974 |
-ROW |141233 |1094 |29975 |
-ROW |141234 |1094 |29976 |
-ROW |141235 |1094 |29977 |
-ROW |141236 |1094 |29978 |
-ROW |141237 |1102 |29979 |
-ROW |141238 |1101 |29980 |
-ROW |141239 |1101 |29981 |
-ROW |141240 |1101 |29982 |
-ROW |141241 |1101 |29983 |
-ROW |141242 |1127 |29984 |
-ROW |141243 |1126 |29985 |
-ROW |141244 |1126 |29986 |
-ROW |141245 |1126 |29987 |
-ROW |141246 |1126 |29988 |
-ROW |141247 |1136 |29989 |
-ROW |141248 |1135 |29990 |
-ROW |141249 |1135 |29991 |
-ROW |141250 |1135 |29992 |
-ROW |141251 |1135 |29993 |
-ROW |141252 |1270 |30049 |
-ROW |141253 |1270 |30050 |
-ROW |141254 |1270 |30051 |
-ROW |141255 |1270 |30052 |
-ROW |141256 |1270 |30053 |
-ROW |141257 |1270 |30054 |
-ROW |141258 |1271 |30055 |
-ROW |141259 |1271 |30056 |
-ROW |141260 |1413 |32604 |
-ROW |141261 |1413 |32605 |
-ROW |141262 |1413 |32606 |
-ROW |141263 |1413 |32607 |
-ROW |141264 |1413 |32608 |
-ROW |141265 |1413 |32609 |
-ROW |141266 |1414 |32610 |
-ROW |141267 |1414 |32611 |
-ROW |141268 |1421 |32768 |
-ROW |141269 |1421 |32769 |
-ROW |141270 |1421 |32770 |
-ROW |141271 |1421 |32771 |
-ROW |141272 |1421 |32772 |
-ROW |141273 |1421 |32773 |
-ROW |141274 |1422 |32774 |
-ROW |141275 |1422 |32775 |
-ROW |141276 |1283 |30142 |
-ROW |141277 |1286 |30143 |
-ROW |141278 |1292 |30145 |
-ROW |141279 |1295 |30146 |
-ROW |141280 |1284 |30157 |
-ROW |141281 |1284 |30158 |
-ROW |141282 |1284 |30159 |
-ROW |141283 |1287 |30163 |
-ROW |141284 |1287 |30164 |
-ROW |141285 |1287 |30165 |
-ROW |141286 |1293 |30175 |
-ROW |141287 |1293 |30176 |
-ROW |141288 |1293 |30177 |
-ROW |141289 |1296 |30181 |
-ROW |141290 |1296 |30182 |
-ROW |141291 |1296 |30183 |
-ROW |141292 |1419 |32741 |
-ROW |141293 |1420 |32753 |
-ROW |141294 |1221 |22231 |
-ROW |141295 |1221 |22232 |
-ROW |141296 |1221 |23318 |
-ROW |141297 |1222 |29544 |
-ROW |141298 |1223 |29545 |
-ROW |141299 |1223 |29546 |
-ROW |141300 |1224 |29547 |
-ROW |141301 |1225 |10020 |
-ROW |141302 |1225 |10059 |
-ROW |141303 |1226 |22833 |
-ROW |141304 |1226 |22834 |
-ROW |141305 |1228 |22873 |
-ROW |141306 |1228 |22874 |
-ROW |141307 |1230 |22913 |
-ROW |141308 |1230 |22914 |
-ROW |141309 |1232 |22953 |
-ROW |141310 |1232 |22954 |
-ROW |141311 |1234 |22993 |
-ROW |141312 |1234 |22994 |
-ROW |141313 |1236 |23033 |
-ROW |141314 |1236 |23034 |
-ROW |141315 |1238 |23160 |
-ROW |141316 |1238 |23161 |
-ROW |141317 |1225 |23319 |
-ROW |141318 |1226 |23320 |
-ROW |141319 |1228 |23321 |
-ROW |141320 |1230 |23322 |
-ROW |141321 |1232 |23323 |
-ROW |141322 |1234 |23324 |
-ROW |141323 |1236 |23325 |
-ROW |141324 |1238 |23326 |
-ROW |141325 |1161 |29548 |
-ROW |141326 |1227 |29549 |
-ROW |141327 |1229 |29550 |
-ROW |141328 |1231 |29551 |
-ROW |141329 |1233 |29552 |
-ROW |141330 |1235 |29553 |
-ROW |141331 |1237 |29554 |
-ROW |141332 |1219 |29555 |
-ROW |141333 |1241 |29558 |
-ROW |141334 |1242 |29559 |
-ROW |141335 |1241 |29560 |
-ROW |141336 |1269 |29995 |
-ROW |141337 |1192 |29996 |
-ROW |141338 |1269 |29997 |
-ROW |141339 |1240 |23287 |
-ROW |141340 |1240 |23288 |
-ROW |141341 |1240 |23327 |
-ROW |141342 |1171 |29557 |
-ROW |141343 |810 |27203 |
-ROW |141344 |807 |27207 |
-ROW |141345 |806 |27208 |
-ROW |141346 |810 |30086 |
-ROW |141347 |807 |30087 |
-ROW |141348 |807 |30088 |
-ROW |141349 |807 |30089 |
-ROW |141350 |808 |27212 |
-ROW |141351 |809 |27213 |
-ROW |141352 |810 |27214 |
-ROW |141353 |1279 |30091 |
-ROW |141354 |1279 |30092 |
-ROW |141355 |1364 |28305 |
-ROW |141356 |1068 |28323 |
-ROW |141357 |1068 |28324 |
-ROW |141358 |1062 |28325 |
-ROW |141359 |1062 |28326 |
-ROW |141360 |1064 |28327 |
-ROW |141361 |1064 |28328 |
-ROW |141362 |1066 |28329 |
-ROW |141363 |1363 |32307 |
-ROW |141364 |819 |27236 |
-ROW |141365 |819 |27237 |
-ROW |141366 |813 |27238 |
-ROW |141367 |814 |27240 |
-ROW |141368 |815 |30093 |
-ROW |141369 |816 |27246 |
-ROW |141370 |816 |27247 |
-ROW |141371 |817 |27248 |
-ROW |141372 |818 |27249 |
-ROW |141373 |818 |27250 |
-ROW |141374 |826 |27294 |
-ROW |141375 |831 |27295 |
-ROW |141376 |831 |27296 |
-ROW |141377 |835 |27297 |
-ROW |141378 |827 |30094 |
-ROW |141379 |836 |27299 |
-ROW |141380 |838 |27301 |
-ROW |141381 |837 |30095 |
-ROW |141382 |839 |30096 |
-ROW |141383 |829 |27312 |
-ROW |141384 |830 |27313 |
-ROW |141385 |828 |27314 |
-ROW |141386 |828 |27315 |
-ROW |141387 |833 |27316 |
-ROW |141388 |834 |27317 |
-ROW |141389 |832 |27318 |
-ROW |141390 |835 |27319 |
-ROW |141391 |835 |27320 |
-ROW |141392 |1755 |35903 |
-ROW |141393 |1755 |35904 |
-ROW |141394 |1755 |35905 |
-ROW |141395 |1755 |35906 |
-ROW |141396 |1757 |35907 |
-ROW |141397 |1757 |35908 |
-ROW |141398 |1754 |35914 |
-ROW |141399 |1756 |35915 |
-ROW |141400 |1756 |35916 |
-ROW |141401 |1756 |35917 |
-ROW |141402 |1444 |33197 |
-ROW |141403 |1444 |33198 |
-ROW |141404 |1444 |33199 |
-ROW |141405 |1439 |33200 |
-ROW |141406 |1439 |33201 |
-ROW |141407 |1439 |33202 |
-ROW |141408 |1440 |33203 |
-ROW |141409 |1440 |33204 |
-ROW |141410 |1439 |33205 |
-ROW |141411 |1439 |33206 |
-ROW |141412 |1439 |33207 |
-ROW |141413 |1440 |33208 |
-ROW |141414 |1444 |33209 |
-ROW |141415 |1444 |33210 |
-ROW |141416 |1437 |33219 |
-ROW |141417 |1440 |33220 |
-ROW |141418 |1438 |33221 |
-ROW |141419 |1441 |33222 |
-ROW |141420 |1441 |33223 |
-ROW |141421 |1441 |33224 |
-ROW |141422 |1443 |33235 |
-ROW |141423 |1445 |33236 |
-ROW |141424 |1445 |33237 |
-ROW |141425 |1453 |33238 |
-ROW |141426 |1453 |33239 |
-ROW |141427 |1453 |33240 |
-ROW |141428 |1448 |33241 |
-ROW |141429 |1448 |33242 |
-ROW |141430 |1448 |33243 |
-ROW |141431 |1449 |33244 |
-ROW |141432 |1449 |33245 |
-ROW |141433 |1448 |33246 |
-ROW |141434 |1448 |33247 |
-ROW |141435 |1448 |33248 |
-ROW |141436 |1449 |33249 |
-ROW |141437 |1453 |33250 |
-ROW |141438 |1453 |33251 |
-ROW |141439 |1446 |33260 |
-ROW |141440 |1449 |33261 |
-ROW |141441 |1447 |33262 |
-ROW |141442 |1450 |33263 |
-ROW |141443 |1450 |33264 |
-ROW |141444 |1450 |33265 |
-ROW |141445 |1452 |33276 |
-ROW |141446 |1454 |33277 |
-ROW |141447 |1454 |33278 |
-ROW |141448 |1462 |33279 |
-ROW |141449 |1462 |33280 |
-ROW |141450 |1462 |33281 |
-ROW |141451 |1457 |33282 |
-ROW |141452 |1457 |33283 |
-ROW |141453 |1457 |33284 |
-ROW |141454 |1458 |33285 |
-ROW |141455 |1458 |33286 |
-ROW |141456 |1457 |33287 |
-ROW |141457 |1457 |33288 |
-ROW |141458 |1457 |33289 |
-ROW |141459 |1458 |33290 |
-ROW |141460 |1462 |33291 |
-ROW |141461 |1462 |33292 |
-ROW |141462 |1455 |33301 |
-ROW |141463 |1458 |33302 |
-ROW |141464 |1456 |33303 |
-ROW |141465 |1459 |33304 |
-ROW |141466 |1459 |33305 |
-ROW |141467 |1459 |33306 |
-ROW |141468 |1461 |33317 |
-ROW |141469 |1463 |33318 |
-ROW |141470 |1463 |33319 |
-ROW |141471 |1471 |33320 |
-ROW |141472 |1471 |33321 |
-ROW |141473 |1471 |33322 |
-ROW |141474 |1466 |33323 |
-ROW |141475 |1466 |33324 |
-ROW |141476 |1466 |33325 |
-ROW |141477 |1467 |33326 |
-ROW |141478 |1467 |33327 |
-ROW |141479 |1466 |33328 |
-ROW |141480 |1466 |33329 |
-ROW |141481 |1466 |33330 |
-ROW |141482 |1467 |33331 |
-ROW |141483 |1471 |33332 |
-ROW |141484 |1471 |33333 |
-ROW |141485 |1464 |33342 |
-ROW |141486 |1467 |33343 |
-ROW |141487 |1465 |33344 |
-ROW |141488 |1468 |33345 |
-ROW |141489 |1468 |33346 |
-ROW |141490 |1468 |33347 |
-ROW |141491 |1470 |33358 |
-ROW |141492 |1472 |33359 |
-ROW |141493 |1472 |33360 |
-ROW |141494 |1480 |33361 |
-ROW |141495 |1480 |33362 |
-ROW |141496 |1480 |33363 |
-ROW |141497 |1475 |33364 |
-ROW |141498 |1475 |33365 |
-ROW |141499 |1475 |33366 |
-ROW |141500 |1476 |33367 |
-ROW |141501 |1476 |33368 |
-ROW |141502 |1475 |33369 |
-ROW |141503 |1475 |33370 |
-ROW |141504 |1475 |33371 |
-ROW |141505 |1476 |33372 |
-ROW |141506 |1480 |33373 |
-ROW |141507 |1480 |33374 |
-ROW |141508 |1473 |33383 |
-ROW |141509 |1476 |33384 |
-ROW |141510 |1474 |33385 |
-ROW |141511 |1477 |33386 |
-ROW |141512 |1477 |33387 |
-ROW |141513 |1477 |33388 |
-ROW |141514 |1479 |33399 |
-ROW |141515 |1481 |33400 |
-ROW |141516 |1481 |33401 |
-ROW |141517 |851 |27376 |
-ROW |141518 |852 |27378 |
-ROW |141519 |852 |27379 |
-ROW |141520 |852 |30097 |
-ROW |141521 |869 |27380 |
-ROW |141522 |870 |27382 |
-ROW |141523 |870 |27383 |
-ROW |141524 |858 |27385 |
-ROW |141525 |858 |27386 |
-ROW |141526 |1048 |28209 |
-ROW |141527 |1048 |28210 |
-ROW |141528 |858 |30098 |
-ROW |141529 |870 |30099 |
-ROW |141530 |1048 |30100 |
-ROW |141531 |848 |27415 |
-ROW |141532 |848 |27416 |
-ROW |141533 |849 |27417 |
-ROW |141534 |852 |27419 |
-ROW |141535 |853 |27420 |
-ROW |141536 |853 |27421 |
-ROW |141537 |854 |27422 |
-ROW |141538 |855 |27423 |
-ROW |141539 |1056 |28246 |
-ROW |141540 |848 |30101 |
-ROW |141541 |856 |27425 |
-ROW |141542 |856 |27426 |
-ROW |141543 |857 |27427 |
-ROW |141544 |858 |27428 |
-ROW |141545 |859 |27429 |
-ROW |141546 |859 |27430 |
-ROW |141547 |860 |27431 |
-ROW |141548 |861 |27432 |
-ROW |141549 |868 |27443 |
-ROW |141550 |868 |27444 |
-ROW |141551 |870 |27445 |
-ROW |141552 |871 |27446 |
-ROW |141553 |871 |27447 |
-ROW |141554 |872 |27448 |
-ROW |141555 |873 |27449 |
-ROW |141556 |1048 |28208 |
-ROW |141557 |1049 |28215 |
-ROW |141558 |1050 |28216 |
-ROW |141559 |1051 |28217 |
-ROW |141560 |1051 |28218 |
-ROW |141561 |1052 |28220 |
-ROW |141562 |1052 |28222 |
-ROW |141563 |1057 |28247 |
-ROW |141564 |856 |30102 |
-ROW |141565 |868 |30103 |
-ROW |141566 |1052 |30104 |
-ROW |141567 |877 |27478 |
-ROW |141568 |880 |27479 |
-ROW |141569 |881 |27480 |
-ROW |141570 |882 |27481 |
-ROW |141571 |882 |27482 |
-ROW |141572 |882 |27483 |
-ROW |141573 |882 |27484 |
-ROW |141574 |879 |27485 |
-ROW |141575 |878 |30105 |
-ROW |141576 |891 |27508 |
-ROW |141577 |891 |27509 |
-ROW |141578 |891 |27510 |
-ROW |141579 |886 |27511 |
-ROW |141580 |891 |30106 |
-ROW |141581 |888 |27517 |
-ROW |141582 |890 |27518 |
-ROW |141583 |889 |27519 |
-ROW |141584 |887 |30107 |
-ROW |141585 |900 |27543 |
-ROW |141586 |900 |27544 |
-ROW |141587 |900 |27545 |
-ROW |141588 |900 |27546 |
-ROW |141589 |895 |27547 |
-ROW |141590 |897 |27553 |
-ROW |141591 |899 |27554 |
-ROW |141592 |898 |27555 |
-ROW |141593 |896 |30108 |
-ROW |141594 |909 |27579 |
-ROW |141595 |909 |27580 |
-ROW |141596 |909 |27582 |
-ROW |141597 |909 |27583 |
-ROW |141598 |906 |27584 |
-ROW |141599 |906 |27585 |
-ROW |141600 |904 |27586 |
-ROW |141601 |909 |30109 |
-ROW |141602 |905 |27591 |
-ROW |141603 |907 |27593 |
-ROW |141604 |908 |27594 |
-ROW |141605 |908 |27595 |
-ROW |141606 |905 |30110 |
-ROW |141607 |905 |30111 |
-ROW |141608 |1742 |35646 |
-ROW |141609 |1749 |35647 |
-ROW |141610 |1748 |35648 |
-ROW |141611 |1749 |35649 |
-ROW |141612 |1749 |35650 |
-ROW |141613 |1749 |35651 |
-ROW |141614 |1749 |35652 |
-ROW |141615 |1749 |35653 |
-ROW |141616 |1742 |35654 |
-ROW |141617 |1742 |35655 |
-ROW |141618 |1742 |35656 |
-ROW |141619 |1742 |35657 |
-ROW |141620 |1742 |35658 |
-ROW |141621 |1742 |35659 |
-ROW |141622 |1742 |35660 |
-ROW |141623 |1742 |35661 |
-ROW |141624 |1742 |35662 |
-ROW |141625 |1748 |35663 |
-ROW |141626 |1750 |35679 |
-ROW |141627 |1751 |35680 |
-ROW |141628 |1751 |35681 |
-ROW |141629 |1747 |35682 |
-ROW |141630 |1740 |35683 |
-ROW |141631 |1740 |35684 |
-ROW |141632 |1746 |35685 |
-ROW |141633 |1750 |35686 |
-ROW |141634 |1739 |35687 |
-ROW |141635 |1739 |35688 |
-ROW |141636 |1739 |35689 |
-ROW |141637 |1739 |35690 |
-ROW |141638 |1739 |35691 |
-ROW |141639 |1739 |35692 |
-ROW |141640 |1739 |35693 |
-ROW |141641 |1739 |35694 |
-ROW |141642 |1739 |35695 |
-ROW |141643 |1739 |35696 |
-ROW |141644 |1739 |35697 |
-ROW |141645 |1739 |35698 |
-ROW |141646 |1739 |35699 |
-ROW |141647 |1739 |35700 |
-ROW |141648 |1739 |35701 |
-ROW |141649 |1739 |35702 |
-ROW |141650 |1739 |35703 |
-ROW |141651 |1739 |35704 |
-ROW |141652 |1739 |35705 |
-ROW |141653 |1739 |35706 |
-ROW |141654 |1739 |35707 |
-ROW |141655 |1739 |35708 |
-ROW |141656 |1739 |35709 |
-ROW |141657 |1739 |35710 |
-ROW |141658 |1739 |35711 |
-ROW |141659 |1739 |35712 |
-ROW |141660 |1739 |35713 |
-ROW |141661 |1739 |35714 |
-ROW |141662 |1739 |35715 |
-ROW |141663 |1739 |35716 |
-ROW |141664 |1743 |35722 |
-ROW |141665 |1743 |35723 |
-ROW |141666 |1743 |35724 |
-ROW |141667 |1743 |35725 |
-ROW |141668 |1743 |35726 |
-ROW |141669 |1743 |35727 |
-ROW |141670 |1744 |35728 |
-ROW |141671 |1744 |35729 |
-ROW |141672 |1744 |35730 |
-ROW |141673 |1744 |35731 |
-ROW |141674 |919 |27671 |
-ROW |141675 |921 |27672 |
-ROW |141676 |922 |27673 |
-ROW |141677 |923 |27674 |
-ROW |141678 |924 |27675 |
-ROW |141679 |924 |27676 |
-ROW |141680 |924 |27677 |
-ROW |141681 |924 |27678 |
-ROW |141682 |924 |27679 |
-ROW |141683 |920 |30112 |
-ROW |141684 |1036 |28141 |
-ROW |141685 |1036 |28142 |
-ROW |141686 |1031 |28143 |
-ROW |141687 |1033 |28150 |
-ROW |141688 |1032 |28153 |
-ROW |141689 |1034 |28154 |
-ROW |141690 |1035 |28155 |
-ROW |141691 |1033 |28156 |
-ROW |141692 |1036 |28157 |
-ROW |141693 |1036 |28158 |
-ROW |141694 |1032 |30113 |
-ROW |141695 |1032 |30114 |
-ROW |141696 |1032 |30115 |
-ROW |141697 |941 |27748 |
-ROW |141698 |941 |27749 |
-ROW |141699 |941 |27750 |
-ROW |141700 |939 |27751 |
-ROW |141701 |937 |27753 |
-ROW |141702 |941 |27754 |
-ROW |141703 |940 |27755 |
-ROW |141704 |938 |30116 |
-ROW |141705 |948 |27777 |
-ROW |141706 |948 |27778 |
-ROW |141707 |945 |27783 |
-ROW |141708 |945 |27784 |
-ROW |141709 |948 |27785 |
-ROW |141710 |946 |27786 |
-ROW |141711 |947 |27787 |
-ROW |141712 |957 |27812 |
-ROW |141713 |957 |27813 |
-ROW |141714 |951 |27814 |
-ROW |141715 |957 |30117 |
-ROW |141716 |954 |27821 |
-ROW |141717 |956 |27822 |
-ROW |141718 |955 |27823 |
-ROW |141719 |952 |28894 |
-ROW |141720 |953 |30118 |
-ROW |141721 |1486 |33402 |
-ROW |141722 |1486 |33403 |
-ROW |141723 |1486 |33404 |
-ROW |141724 |1483 |33405 |
-ROW |141725 |1483 |33406 |
-ROW |141726 |1482 |33407 |
-ROW |141727 |1483 |33408 |
-ROW |141728 |1483 |33409 |
-ROW |141729 |1483 |33410 |
-ROW |141730 |1483 |33411 |
-ROW |141731 |1486 |33412 |
-ROW |141732 |1486 |33413 |
-ROW |141733 |1044 |28200 |
-ROW |141734 |1044 |28201 |
-ROW |141735 |1045 |28202 |
-ROW |141736 |1045 |28203 |
-ROW |141737 |1047 |28204 |
-ROW |141738 |1047 |28205 |
-ROW |141739 |1046 |28206 |
-ROW |141740 |1484 |33429 |
-ROW |141741 |1484 |33430 |
-ROW |141742 |1484 |33431 |
-ROW |141743 |976 |27893 |
-ROW |141744 |976 |27894 |
-ROW |141745 |976 |27895 |
-ROW |141746 |973 |27898 |
-ROW |141747 |973 |27900 |
-ROW |141748 |976 |30119 |
-ROW |141749 |973 |30120 |
-ROW |141750 |972 |27904 |
-ROW |141751 |974 |27905 |
-ROW |141752 |975 |27906 |
-ROW |141753 |975 |27907 |
-ROW |141754 |975 |27908 |
-ROW |141755 |974 |31790 |
-ROW |141756 |1365 |32308 |
-ROW |141757 |1368 |32309 |
-ROW |141758 |1370 |32310 |
-ROW |141759 |1370 |32311 |
-ROW |141760 |1366 |32312 |
-ROW |141761 |1369 |32313 |
-ROW |141762 |1369 |32314 |
-ROW |141763 |1369 |32315 |
-ROW |141764 |1369 |32316 |
-ROW |141765 |1368 |32317 |
-ROW |141766 |1368 |32318 |
-ROW |141767 |1365 |32319 |
-ROW |141768 |1367 |32320 |
-ROW |141769 |1367 |32321 |
-ROW |141770 |1367 |32322 |
-ROW |141771 |1366 |32323 |
-ROW |141772 |1366 |32324 |
-ROW |141773 |1371 |32325 |
-ROW |141774 |1365 |32326 |
-ROW |141775 |1365 |32327 |
-ROW |141776 |1370 |32328 |
-ROW |141777 |1366 |32330 |
-ROW |141778 |1372 |32331 |
-ROW |141779 |1376 |32332 |
-ROW |141780 |1377 |32333 |
-ROW |141781 |1377 |32334 |
-ROW |141782 |1373 |32335 |
-ROW |141783 |1376 |32336 |
-ROW |141784 |1376 |32337 |
-ROW |141785 |1376 |32338 |
-ROW |141786 |1375 |32339 |
-ROW |141787 |1378 |32340 |
-ROW |141788 |1375 |32341 |
-ROW |141789 |1375 |32342 |
-ROW |141790 |1374 |32343 |
-ROW |141791 |1374 |32344 |
-ROW |141792 |1374 |32345 |
-ROW |141793 |1373 |32346 |
-ROW |141794 |1373 |32347 |
-ROW |141795 |1377 |32348 |
-ROW |141796 |1373 |32350 |
-ROW |141797 |1379 |32351 |
-ROW |141798 |1382 |32352 |
-ROW |141799 |1384 |32353 |
-ROW |141800 |1384 |32354 |
-ROW |141801 |1380 |32355 |
-ROW |141802 |1383 |32356 |
-ROW |141803 |1383 |32357 |
-ROW |141804 |1383 |32358 |
-ROW |141805 |1383 |32359 |
-ROW |141806 |1382 |32360 |
-ROW |141807 |1382 |32361 |
-ROW |141808 |1379 |32362 |
-ROW |141809 |1381 |32363 |
-ROW |141810 |1381 |32364 |
-ROW |141811 |1381 |32365 |
-ROW |141812 |1380 |32366 |
-ROW |141813 |1380 |32367 |
-ROW |141814 |1385 |32368 |
-ROW |141815 |1379 |32369 |
-ROW |141816 |1379 |32370 |
-ROW |141817 |1384 |32371 |
-ROW |141818 |1380 |32373 |
-ROW |141819 |1390 |32374 |
-ROW |141820 |1387 |32375 |
-ROW |141821 |1387 |32376 |
-ROW |141822 |1388 |32377 |
-ROW |141823 |1388 |32378 |
-ROW |141824 |1388 |32379 |
-ROW |141825 |1389 |32380 |
-ROW |141826 |1386 |32382 |
-ROW |141827 |1391 |32383 |
-ROW |141828 |1393 |32384 |
-ROW |141829 |1395 |32385 |
-ROW |141830 |1392 |32386 |
-ROW |141831 |1394 |32387 |
-ROW |141832 |1394 |32388 |
-ROW |141833 |1394 |32389 |
-ROW |141834 |1393 |32390 |
-ROW |141835 |1392 |32391 |
-ROW |141836 |1391 |32392 |
-ROW |141837 |1392 |32393 |
-ROW |141838 |1392 |32394 |
-ROW |141839 |1396 |32395 |
-ROW |141840 |1391 |32396 |
-ROW |141841 |1391 |32397 |
-ROW |141842 |1391 |32398 |
-ROW |141843 |1395 |32399 |
-ROW |141844 |1392 |32401 |
-ROW |141845 |1397 |32402 |
-ROW |141846 |1399 |32403 |
-ROW |141847 |1401 |32404 |
-ROW |141848 |1398 |32405 |
-ROW |141849 |1400 |32406 |
-ROW |141850 |1400 |32407 |
-ROW |141851 |1400 |32408 |
-ROW |141852 |1399 |32409 |
-ROW |141853 |1398 |32410 |
-ROW |141854 |1397 |32411 |
-ROW |141855 |1398 |32412 |
-ROW |141856 |1398 |32413 |
-ROW |141857 |1402 |32414 |
-ROW |141858 |1397 |32415 |
-ROW |141859 |1397 |32416 |
-ROW |141860 |1397 |32417 |
-ROW |141861 |1401 |32418 |
-ROW |141862 |1398 |32420 |
-ROW |141863 |1409 |32421 |
-ROW |141864 |1407 |32422 |
-ROW |141865 |1405 |32423 |
-ROW |141866 |1405 |32424 |
-ROW |141867 |1407 |32425 |
-ROW |141868 |1407 |32426 |
-ROW |141869 |1407 |32427 |
-ROW |141870 |1408 |32428 |
-ROW |141871 |1408 |32429 |
-ROW |141872 |1404 |32436 |
-ROW |141873 |1404 |32437 |
-ROW |141874 |1404 |32438 |
-ROW |141875 |1403 |32439 |
-ROW |141876 |1404 |32440 |
-ROW |141877 |1406 |32441 |
-ROW |141878 |1406 |32442 |
-ROW |141879 |1406 |32443 |
-ROW |141880 |1406 |32444 |
-ROW |141881 |985 |27930 |
-ROW |141882 |985 |27931 |
-ROW |141883 |981 |27935 |
-ROW |141884 |980 |27936 |
-ROW |141885 |985 |30121 |
-ROW |141886 |981 |30122 |
-ROW |141887 |981 |30123 |
-ROW |141888 |982 |27940 |
-ROW |141889 |982 |27941 |
-ROW |141890 |984 |27942 |
-ROW |141891 |983 |27943 |
-ROW |141892 |991 |27967 |
-ROW |141893 |991 |27968 |
-ROW |141894 |991 |27970 |
-ROW |141895 |991 |27971 |
-ROW |141896 |990 |27972 |
-ROW |141897 |990 |27973 |
-ROW |141898 |989 |27975 |
-ROW |141899 |1282 |30124 |
-ROW |141900 |991 |30125 |
-ROW |141901 |990 |30126 |
-ROW |141902 |1280 |30129 |
-ROW |141903 |1281 |30130 |
-ROW |141904 |997 |27997 |
-ROW |141905 |997 |27998 |
-ROW |141906 |997 |27999 |
-ROW |141907 |997 |28000 |
-ROW |141908 |995 |28003 |
-ROW |141909 |996 |30131 |
-ROW |141910 |1003 |28026 |
-ROW |141911 |1003 |28027 |
-ROW |141912 |1001 |28031 |
-ROW |141913 |1002 |30132 |
-ROW |141914 |1002 |30133 |
-ROW |141915 |1002 |30134 |
-ROW |141916 |1002 |30135 |
-ROW |141917 |1002 |30136 |
-ROW |141918 |1761 |35951 |
-ROW |141919 |1758 |35952 |
-ROW |141920 |1758 |35953 |
-ROW |141921 |1758 |35954 |
-ROW |141922 |1758 |35955 |
-ROW |141923 |1758 |35956 |
-ROW |141924 |1758 |35957 |
-ROW |141925 |1758 |35958 |
-ROW |141926 |1761 |35959 |
-ROW |141927 |1761 |35960 |
-ROW |141928 |1762 |35981 |
-ROW |141929 |1760 |35982 |
-ROW |141930 |1768 |35983 |
-ROW |141931 |1764 |35984 |
-ROW |141932 |1763 |35985 |
-ROW |141933 |1764 |35986 |
-ROW |141934 |1764 |35987 |
-ROW |141935 |1764 |35988 |
-ROW |141936 |1764 |35989 |
-ROW |141937 |1764 |35990 |
-ROW |141938 |1764 |35991 |
-ROW |141939 |1768 |35992 |
-ROW |141940 |1765 |35999 |
-ROW |141941 |1769 |36025 |
-ROW |141942 |1767 |36026 |
-ROW |141943 |1775 |36027 |
-ROW |141944 |1772 |36028 |
-ROW |141945 |1770 |36029 |
-ROW |141946 |1772 |36030 |
-ROW |141947 |1772 |36031 |
-ROW |141948 |1772 |36032 |
-ROW |141949 |1772 |36033 |
-ROW |141950 |1772 |36034 |
-ROW |141951 |1772 |36035 |
-ROW |141952 |1775 |36036 |
-ROW |141953 |1771 |36041 |
-ROW |141954 |1776 |36059 |
-ROW |141955 |1774 |36060 |
-ROW |141956 |1783 |36061 |
-ROW |141957 |1779 |36062 |
-ROW |141958 |1779 |36063 |
-ROW |141959 |1779 |36064 |
-ROW |141960 |1779 |36065 |
-ROW |141961 |1779 |36066 |
-ROW |141962 |1783 |36067 |
-ROW |141963 |1778 |36079 |
-ROW |141964 |1791 |36128 |
-ROW |141965 |1787 |36129 |
-ROW |141966 |1787 |36130 |
-ROW |141967 |1787 |36131 |
-ROW |141968 |1787 |36132 |
-ROW |141969 |1787 |36133 |
-ROW |141970 |1791 |36134 |
-ROW |141971 |1786 |36146 |
-ROW |141972 |1797 |36195 |
-ROW |141973 |1794 |36196 |
-ROW |141974 |1794 |36197 |
-ROW |141975 |1794 |36198 |
-ROW |141976 |1794 |36199 |
-ROW |141977 |1794 |36200 |
-ROW |141978 |1794 |36201 |
-ROW |141979 |1794 |36202 |
-ROW |141980 |1797 |36203 |
-ROW |141981 |1797 |36204 |
-ROW |141982 |1793 |36210 |
-ROW |141983 |1798 |36227 |
-ROW |141984 |1796 |36228 |
-ROW |141985 |1802 |36229 |
-ROW |141986 |1800 |36230 |
-ROW |141987 |1799 |36231 |
-ROW |141988 |1800 |36232 |
-ROW |141989 |1800 |36233 |
-ROW |141990 |1800 |36234 |
-ROW |141991 |1800 |36235 |
-ROW |141992 |1800 |36236 |
-ROW |141993 |1800 |36237 |
-ROW |141994 |1802 |36238 |
-ROW |141995 |1808 |36267 |
-ROW |141996 |1804 |36268 |
-ROW |141997 |1803 |36269 |
-ROW |141998 |1804 |36270 |
-ROW |141999 |1804 |36271 |
-ROW |142000 |1804 |36272 |
-ROW |142001 |1804 |36273 |
-ROW |142002 |1804 |36274 |
-ROW |142003 |1804 |36275 |
-ROW |142004 |1808 |36276 |
-ROW |142005 |1805 |36283 |
-ROW |142006 |1809 |36309 |
-ROW |142007 |1807 |36310 |
-ROW |142008 |1815 |36311 |
-ROW |142009 |1811 |36312 |
-ROW |142010 |1810 |36313 |
-ROW |142011 |1811 |36314 |
-ROW |142012 |1811 |36315 |
-ROW |142013 |1811 |36316 |
-ROW |142014 |1811 |36317 |
-ROW |142015 |1811 |36318 |
-ROW |142016 |1811 |36319 |
-ROW |142017 |1815 |36320 |
-ROW |142018 |1812 |36327 |
-ROW |142019 |1816 |36353 |
-ROW |142020 |1814 |36354 |
-ROW |142021 |1822 |36355 |
-ROW |142022 |1819 |36356 |
-ROW |142023 |1817 |36357 |
-ROW |142024 |1819 |36358 |
-ROW |142025 |1819 |36359 |
-ROW |142026 |1819 |36360 |
-ROW |142027 |1819 |36361 |
-ROW |142028 |1819 |36362 |
-ROW |142029 |1819 |36363 |
-ROW |142030 |1822 |36364 |
-ROW |142031 |1818 |36371 |
-ROW |142032 |1823 |36397 |
-ROW |142033 |1821 |36398 |
-ROW |142034 |1829 |36399 |
-ROW |142035 |1826 |36400 |
-ROW |142036 |1824 |36401 |
-ROW |142037 |1826 |36402 |
-ROW |142038 |1826 |36403 |
-ROW |142039 |1826 |36404 |
-ROW |142040 |1826 |36405 |
-ROW |142041 |1826 |36406 |
-ROW |142042 |1826 |36407 |
-ROW |142043 |1829 |36408 |
-ROW |142044 |1825 |36415 |
-ROW |142045 |1830 |36441 |
-ROW |142046 |1828 |36442 |
-ROW |142047 |1837 |36443 |
-ROW |142048 |1833 |36444 |
-ROW |142049 |1831 |36445 |
-ROW |142050 |1833 |36446 |
-ROW |142051 |1833 |36447 |
-ROW |142052 |1833 |36448 |
-ROW |142053 |1834 |36449 |
-ROW |142054 |1833 |36450 |
-ROW |142055 |1833 |36451 |
-ROW |142056 |1833 |36452 |
-ROW |142057 |1837 |36453 |
-ROW |142058 |1832 |36460 |
-ROW |142059 |1838 |36486 |
-ROW |142060 |1836 |36487 |
-ROW |142061 |1845 |36488 |
-ROW |142062 |1841 |36489 |
-ROW |142063 |1839 |36490 |
-ROW |142064 |1841 |36491 |
-ROW |142065 |1841 |36492 |
-ROW |142066 |1841 |36493 |
-ROW |142067 |1842 |36494 |
-ROW |142068 |1841 |36495 |
-ROW |142069 |1841 |36496 |
-ROW |142070 |1841 |36497 |
-ROW |142071 |1845 |36498 |
-ROW |142072 |1840 |36505 |
-ROW |142073 |1846 |36531 |
-ROW |142074 |1844 |36532 |
-ROW |142075 |1853 |36533 |
-ROW |142076 |1849 |36534 |
-ROW |142077 |1847 |36535 |
-ROW |142078 |1849 |36536 |
-ROW |142079 |1849 |36537 |
-ROW |142080 |1849 |36538 |
-ROW |142081 |1849 |36539 |
-ROW |142082 |1849 |36540 |
-ROW |142083 |1849 |36541 |
-ROW |142084 |1853 |36542 |
-ROW |142085 |1848 |36550 |
-ROW |142086 |1850 |36551 |
-ROW |142087 |1854 |36577 |
-ROW |142088 |1852 |36578 |
-ROW |142089 |1142 |29087 |
-ROW |142090 |1142 |29088 |
-ROW |142091 |1142 |29089 |
-ROW |142092 |1142 |29090 |
-ROW |142093 |1142 |29091 |
-ROW |142094 |1142 |29092 |
-ROW |142095 |1142 |29093 |
-ROW |142096 |1142 |29094 |
-ROW |142097 |1142 |29095 |
-ROW |142098 |1142 |29096 |
-ROW |142099 |1142 |29097 |
-ROW |142100 |1142 |29098 |
-ROW |142101 |1142 |29099 |
-ROW |142102 |1142 |29100 |
-ROW |142103 |1142 |29101 |
-ROW |142104 |1142 |29102 |
-ROW |142105 |1144 |29103 |
-ROW |142106 |1144 |29104 |
-ROW |142107 |1144 |29105 |
-ROW |142108 |1144 |29106 |
-ROW |142109 |1144 |29107 |
-ROW |142110 |1144 |29108 |
-ROW |142111 |1151 |29110 |
-ROW |142112 |1148 |29111 |
-ROW |142113 |1148 |29112 |
-ROW |142114 |1148 |29113 |
-ROW |142115 |1148 |29114 |
-ROW |142116 |1148 |29115 |
-ROW |142117 |1148 |29116 |
-ROW |142118 |1148 |29117 |
-ROW |142119 |1148 |29118 |
-ROW |142120 |1148 |29119 |
-ROW |142121 |1150 |29120 |
-ROW |142122 |1149 |29121 |
-ROW |142123 |1149 |29122 |
-ROW |142124 |1149 |29123 |
-ROW |142125 |1152 |29124 |
-ROW |142126 |1152 |29125 |
-ROW |142127 |1152 |29126 |
-ROW |142128 |1152 |29127 |
-ROW |142129 |1152 |29128 |
-ROW |142130 |1152 |29129 |
-ROW |142131 |1152 |29130 |
-ROW |142132 |1152 |29131 |
-ROW |142133 |1152 |29132 |
-ROW |142134 |1152 |29133 |
-ROW |142135 |1152 |29134 |
-ROW |142136 |1152 |29135 |
-ROW |142137 |1152 |29136 |
-ROW |142138 |1152 |29137 |
-ROW |142139 |1152 |29138 |
-ROW |142140 |1152 |29139 |
-ROW |142141 |1154 |29140 |
-ROW |142142 |1154 |29141 |
-ROW |142143 |1154 |29142 |
-ROW |142144 |1154 |29143 |
-ROW |142145 |1154 |29144 |
-ROW |142146 |1154 |29145 |
-ROW |142147 |1161 |29147 |
-ROW |142148 |1158 |29148 |
-ROW |142149 |1158 |29149 |
-ROW |142150 |1158 |29150 |
-ROW |142151 |1158 |29151 |
-ROW |142152 |1158 |29152 |
-ROW |142153 |1158 |29153 |
-ROW |142154 |1158 |29154 |
-ROW |142155 |1158 |29155 |
-ROW |142156 |1158 |29156 |
-ROW |142157 |1160 |29157 |
-ROW |142158 |1159 |29158 |
-ROW |142159 |1159 |29159 |
-ROW |142160 |1159 |29160 |
-ROW |142161 |1162 |29161 |
-ROW |142162 |1162 |29162 |
-ROW |142163 |1162 |29163 |
-ROW |142164 |1162 |29164 |
-ROW |142165 |1162 |29165 |
-ROW |142166 |1162 |29166 |
-ROW |142167 |1162 |29167 |
-ROW |142168 |1162 |29168 |
-ROW |142169 |1162 |29169 |
-ROW |142170 |1162 |29170 |
-ROW |142171 |1162 |29171 |
-ROW |142172 |1162 |29172 |
-ROW |142173 |1162 |29173 |
-ROW |142174 |1162 |29174 |
-ROW |142175 |1162 |29175 |
-ROW |142176 |1162 |29176 |
-ROW |142177 |1164 |29177 |
-ROW |142178 |1164 |29178 |
-ROW |142179 |1164 |29179 |
-ROW |142180 |1164 |29180 |
-ROW |142181 |1164 |29181 |
-ROW |142182 |1164 |29182 |
-ROW |142183 |1171 |29184 |
-ROW |142184 |1168 |29185 |
-ROW |142185 |1168 |29186 |
-ROW |142186 |1168 |29187 |
-ROW |142187 |1168 |29188 |
-ROW |142188 |1168 |29189 |
-ROW |142189 |1168 |29190 |
-ROW |142190 |1168 |29191 |
-ROW |142191 |1168 |29192 |
-ROW |142192 |1168 |29193 |
-ROW |142193 |1170 |29194 |
-ROW |142194 |1169 |29195 |
-ROW |142195 |1169 |29196 |
-ROW |142196 |1169 |29197 |
-ROW |142197 |1142 |29198 |
-ROW |142198 |1144 |31270 |
-ROW |142199 |1152 |29199 |
-ROW |142200 |1154 |31271 |
-ROW |142201 |1162 |29200 |
-ROW |142202 |1164 |31272 |
-ROW |142203 |1146 |31278 |
-ROW |142204 |1156 |31281 |
-ROW |142205 |1166 |31284 |
-ROW |142206 |1146 |31287 |
-ROW |142207 |1146 |31290 |
-ROW |142208 |1156 |31293 |
-ROW |142209 |1156 |31296 |
-ROW |142210 |1166 |31299 |
-ROW |142211 |1166 |31302 |
-ROW |142212 |1173 |29273 |
-ROW |142213 |1173 |29274 |
-ROW |142214 |1173 |29275 |
-ROW |142215 |1173 |29276 |
-ROW |142216 |1173 |29277 |
-ROW |142217 |1173 |29278 |
-ROW |142218 |1173 |29279 |
-ROW |142219 |1173 |29280 |
-ROW |142220 |1173 |29281 |
-ROW |142221 |1173 |29282 |
-ROW |142222 |1173 |29283 |
-ROW |142223 |1173 |29284 |
-ROW |142224 |1173 |29285 |
-ROW |142225 |1173 |29286 |
-ROW |142226 |1173 |29287 |
-ROW |142227 |1173 |29288 |
-ROW |142228 |1175 |29289 |
-ROW |142229 |1175 |29290 |
-ROW |142230 |1175 |29291 |
-ROW |142231 |1175 |29292 |
-ROW |142232 |1175 |29293 |
-ROW |142233 |1175 |29294 |
-ROW |142234 |1182 |29296 |
-ROW |142235 |1179 |29297 |
-ROW |142236 |1179 |29298 |
-ROW |142237 |1179 |29299 |
-ROW |142238 |1179 |29300 |
-ROW |142239 |1179 |29301 |
-ROW |142240 |1179 |29302 |
-ROW |142241 |1179 |29303 |
-ROW |142242 |1179 |29304 |
-ROW |142243 |1179 |29305 |
-ROW |142244 |1181 |29306 |
-ROW |142245 |1180 |29307 |
-ROW |142246 |1180 |29308 |
-ROW |142247 |1180 |29309 |
-ROW |142248 |1183 |29310 |
-ROW |142249 |1183 |29311 |
-ROW |142250 |1183 |29312 |
-ROW |142251 |1183 |29313 |
-ROW |142252 |1183 |29314 |
-ROW |142253 |1183 |29315 |
-ROW |142254 |1183 |29316 |
-ROW |142255 |1183 |29317 |
-ROW |142256 |1183 |29318 |
-ROW |142257 |1183 |29319 |
-ROW |142258 |1183 |29320 |
-ROW |142259 |1183 |29321 |
-ROW |142260 |1183 |29322 |
-ROW |142261 |1183 |29323 |
-ROW |142262 |1183 |29324 |
-ROW |142263 |1183 |29325 |
-ROW |142264 |1185 |29326 |
-ROW |142265 |1185 |29327 |
-ROW |142266 |1185 |29328 |
-ROW |142267 |1185 |29329 |
-ROW |142268 |1185 |29330 |
-ROW |142269 |1185 |29331 |
-ROW |142270 |1192 |29333 |
-ROW |142271 |1189 |29334 |
-ROW |142272 |1189 |29335 |
-ROW |142273 |1189 |29336 |
-ROW |142274 |1189 |29337 |
-ROW |142275 |1189 |29338 |
-ROW |142276 |1189 |29339 |
-ROW |142277 |1189 |29340 |
-ROW |142278 |1189 |29341 |
-ROW |142279 |1189 |29342 |
-ROW |142280 |1191 |29343 |
-ROW |142281 |1190 |29344 |
-ROW |142282 |1190 |29345 |
-ROW |142283 |1190 |29346 |
-ROW |142284 |1173 |29347 |
-ROW |142285 |1175 |31303 |
-ROW |142286 |1183 |29348 |
-ROW |142287 |1185 |31304 |
-ROW |142288 |1177 |31309 |
-ROW |142289 |1187 |31312 |
-ROW |142290 |1177 |31315 |
-ROW |142291 |1177 |31318 |
-ROW |142292 |1187 |31321 |
-ROW |142293 |1187 |31324 |
-ROW |142294 |1201 |29395 |
-ROW |142295 |1196 |29396 |
-ROW |142296 |1196 |29397 |
-ROW |142297 |1194 |29398 |
-ROW |142298 |1193 |29399 |
-ROW |142299 |1196 |29400 |
-ROW |142300 |1196 |29401 |
-ROW |142301 |1196 |29402 |
-ROW |142302 |1196 |29403 |
-ROW |142303 |1194 |29404 |
-ROW |142304 |1193 |29405 |
-ROW |142305 |1193 |29406 |
-ROW |142306 |1193 |29407 |
-ROW |142307 |1193 |29408 |
-ROW |142308 |1193 |29409 |
-ROW |142309 |1193 |29410 |
-ROW |142310 |1193 |29411 |
-ROW |142311 |1193 |29412 |
-ROW |142312 |1193 |29413 |
-ROW |142313 |1194 |29414 |
-ROW |142314 |1197 |29415 |
-ROW |142315 |1193 |29416 |
-ROW |142316 |1193 |29417 |
-ROW |142317 |1193 |29418 |
-ROW |142318 |1193 |29419 |
-ROW |142319 |1193 |29420 |
-ROW |142320 |1199 |29421 |
-ROW |142321 |1195 |29422 |
-ROW |142322 |1194 |29423 |
-ROW |142323 |1194 |29424 |
-ROW |142324 |1194 |29425 |
-ROW |142325 |1193 |29426 |
-ROW |142326 |1193 |29427 |
-ROW |142327 |1195 |29428 |
-ROW |142328 |1201 |29450 |
-ROW |142329 |1201 |29451 |
-ROW |142330 |1128 |28978 |
-ROW |142331 |1128 |28979 |
-ROW |142332 |1128 |28980 |
-ROW |142333 |1128 |28981 |
-ROW |142334 |1128 |28982 |
-ROW |142335 |1128 |28983 |
-ROW |142336 |1128 |28984 |
-ROW |142337 |1128 |28985 |
-ROW |142338 |1128 |28986 |
-ROW |142339 |1130 |28987 |
-ROW |142340 |1130 |28988 |
-ROW |142341 |1130 |28989 |
-ROW |142342 |1130 |28990 |
-ROW |142343 |1130 |28991 |
-ROW |142344 |1130 |28992 |
-ROW |142345 |1132 |28993 |
-ROW |142346 |1132 |28994 |
-ROW |142347 |1132 |28995 |
-ROW |142348 |1132 |28996 |
-ROW |142349 |1132 |28997 |
-ROW |142350 |1132 |28998 |
-ROW |142351 |1132 |28999 |
-ROW |142352 |1132 |29000 |
-ROW |142353 |1132 |29001 |
-ROW |142354 |1134 |29002 |
-ROW |142355 |1134 |29003 |
-ROW |142356 |1134 |29004 |
-ROW |142357 |1134 |29005 |
-ROW |142358 |1134 |29006 |
-ROW |142359 |1134 |29007 |
-ROW |142360 |1130 |29017 |
-ROW |142361 |1130 |29018 |
-ROW |142362 |1130 |29019 |
-ROW |142363 |1130 |29020 |
-ROW |142364 |1130 |29021 |
-ROW |142365 |1130 |29022 |
-ROW |142366 |1130 |29023 |
-ROW |142367 |1130 |29024 |
-ROW |142368 |1130 |29025 |
-ROW |142369 |1130 |29026 |
-ROW |142370 |1134 |29034 |
-ROW |142371 |1134 |29035 |
-ROW |142372 |1134 |29036 |
-ROW |142373 |1134 |29037 |
-ROW |142374 |1134 |29038 |
-ROW |142375 |1134 |29039 |
-ROW |142376 |1134 |29040 |
-ROW |142377 |1134 |29041 |
-ROW |142378 |1134 |29042 |
-ROW |142379 |1134 |29043 |
-ROW |142380 |1130 |29048 |
-ROW |142381 |1134 |29049 |
-ROW |142382 |1202 |29454 |
-ROW |142383 |1202 |29455 |
-ROW |142384 |1202 |29456 |
-ROW |142385 |1202 |29457 |
-ROW |142386 |1202 |29458 |
-ROW |142387 |1202 |29459 |
-ROW |142388 |1203 |29460 |
-ROW |142389 |1203 |29461 |
-ROW |142390 |1203 |29462 |
-ROW |142391 |1203 |29463 |
-ROW |142392 |1203 |29466 |
-ROW |142393 |1203 |29467 |
-ROW |142394 |1203 |29468 |
-ROW |142395 |1203 |29469 |
-ROW |142396 |1203 |29470 |
-ROW |142397 |1209 |29472 |
-ROW |142398 |1207 |29473 |
-ROW |142399 |1207 |29474 |
-ROW |142400 |1207 |29475 |
-ROW |142401 |1207 |29476 |
-ROW |142402 |1207 |29477 |
-ROW |142403 |1208 |29478 |
-ROW |142404 |1202 |30137 |
-ROW |142405 |1202 |31325 |
-ROW |142406 |1203 |31326 |
-ROW |142407 |1203 |31327 |
-ROW |142408 |1211 |36579 |
-ROW |142409 |1212 |29480 |
-ROW |142410 |1212 |29481 |
-ROW |142411 |1212 |29482 |
-ROW |142412 |1212 |29483 |
-ROW |142413 |1212 |29484 |
-ROW |142414 |1212 |29485 |
-ROW |142415 |1213 |29486 |
-ROW |142416 |1213 |29487 |
-ROW |142417 |1213 |29488 |
-ROW |142418 |1213 |29489 |
-ROW |142419 |1213 |29492 |
-ROW |142420 |1213 |29493 |
-ROW |142421 |1213 |29494 |
-ROW |142422 |1213 |29495 |
-ROW |142423 |1213 |29496 |
-ROW |142424 |1219 |29498 |
-ROW |142425 |1217 |29499 |
-ROW |142426 |1217 |29500 |
-ROW |142427 |1217 |29501 |
-ROW |142428 |1217 |29502 |
-ROW |142429 |1217 |29503 |
-ROW |142430 |1218 |29504 |
-ROW |142431 |1212 |30138 |
-ROW |142432 |1212 |31328 |
-ROW |142433 |1213 |31329 |
-ROW |142434 |1213 |31330 |
-ROW |142435 |1216 |36580 |
-ROW |142436 |1203 |31331 |
-ROW |142437 |1213 |31332 |
-ROW |142438 |1310 |30425 |
-ROW |142439 |1311 |30426 |
-ROW |142440 |1243 |29561 |
-ROW |142441 |1243 |29562 |
-ROW |142442 |1243 |29563 |
-ROW |142443 |1243 |29564 |
-ROW |142444 |1243 |29565 |
-ROW |142445 |1243 |29566 |
-ROW |142446 |1244 |29567 |
-ROW |142447 |1244 |29568 |
-ROW |142448 |1244 |29569 |
-ROW |142449 |1244 |29570 |
-ROW |142450 |1244 |29573 |
-ROW |142451 |1244 |29574 |
-ROW |142452 |1244 |29575 |
-ROW |142453 |1244 |29576 |
-ROW |142454 |1244 |29577 |
-ROW |142455 |1250 |29579 |
-ROW |142456 |1248 |29580 |
-ROW |142457 |1248 |29581 |
-ROW |142458 |1248 |29582 |
-ROW |142459 |1248 |29583 |
-ROW |142460 |1248 |29584 |
-ROW |142461 |1249 |29585 |
-ROW |142462 |1243 |30139 |
-ROW |142463 |1243 |31343 |
-ROW |142464 |1244 |31344 |
-ROW |142465 |1244 |31345 |
-ROW |142466 |1252 |36601 |
-ROW |142467 |1253 |29587 |
-ROW |142468 |1253 |29588 |
-ROW |142469 |1253 |29589 |
-ROW |142470 |1253 |29590 |
-ROW |142471 |1253 |29591 |
-ROW |142472 |1253 |29592 |
-ROW |142473 |1254 |29593 |
-ROW |142474 |1254 |29594 |
-ROW |142475 |1254 |29595 |
-ROW |142476 |1254 |29596 |
-ROW |142477 |1254 |29599 |
-ROW |142478 |1254 |29600 |
-ROW |142479 |1254 |29601 |
-ROW |142480 |1254 |29602 |
-ROW |142481 |1254 |29603 |
-ROW |142482 |1242 |29605 |
-ROW |142483 |1258 |29606 |
-ROW |142484 |1258 |29607 |
-ROW |142485 |1258 |29608 |
-ROW |142486 |1258 |29609 |
-ROW |142487 |1258 |29610 |
-ROW |142488 |1259 |29611 |
-ROW |142489 |1253 |30140 |
-ROW |142490 |1253 |31346 |
-ROW |142491 |1254 |31347 |
-ROW |142492 |1254 |31348 |
-ROW |142493 |1257 |36602 |
-ROW |142494 |1244 |31349 |
-ROW |142495 |1254 |31350 |
-ROW |142496 |1312 |30429 |
-ROW |142497 |1313 |30430 |
-ROW |142498 |1493 |33568 |
-ROW |142499 |1493 |33569 |
-ROW |142500 |1493 |33570 |
-ROW |142501 |1492 |33571 |
-ROW |142502 |1492 |33572 |
-ROW |142503 |1492 |33574 |
-ROW |142504 |1492 |33575 |
-ROW |142505 |1492 |33576 |
-ROW |142506 |1492 |33577 |
-ROW |142507 |1492 |33578 |
-ROW |142508 |1493 |33579 |
-ROW |142509 |1493 |33580 |
-ROW |142510 |1493 |33581 |
-ROW |142511 |1493 |33582 |
-ROW |142512 |1493 |33583 |
-ROW |142513 |1493 |33584 |
-ROW |142514 |1493 |33585 |
-ROW |142515 |1493 |33589 |
-ROW |142516 |1493 |33590 |
-ROW |142517 |1493 |33591 |
-ROW |142518 |1493 |33592 |
-ROW |142519 |1493 |33593 |
-ROW |142520 |1493 |33594 |
-ROW |142521 |1493 |33595 |
-ROW |142522 |1492 |34083 |
-ROW |142523 |1493 |33602 |
-ROW |142524 |1493 |33603 |
-ROW |142525 |1493 |33604 |
-ROW |142526 |1493 |33605 |
-ROW |142527 |1493 |33606 |
-ROW |142528 |1492 |33607 |
-ROW |142529 |1493 |33608 |
-ROW |142530 |1493 |33609 |
-ROW |142531 |1493 |33610 |
-ROW |142532 |1493 |33611 |
-ROW |142533 |1493 |33612 |
-ROW |142534 |1493 |33613 |
-ROW |142535 |1493 |33614 |
-ROW |142536 |1493 |33615 |
-ROW |142537 |1493 |33616 |
-ROW |142538 |1493 |33617 |
-ROW |142539 |1493 |33618 |
-ROW |142540 |1495 |33619 |
-ROW |142541 |1495 |33620 |
-ROW |142542 |1495 |33621 |
-ROW |142543 |1494 |33622 |
-ROW |142544 |1494 |33623 |
-ROW |142545 |1494 |33625 |
-ROW |142546 |1494 |33626 |
-ROW |142547 |1494 |33627 |
-ROW |142548 |1494 |33628 |
-ROW |142549 |1494 |33629 |
-ROW |142550 |1495 |33630 |
-ROW |142551 |1495 |33631 |
-ROW |142552 |1495 |33632 |
-ROW |142553 |1495 |33633 |
-ROW |142554 |1495 |33634 |
-ROW |142555 |1495 |33635 |
-ROW |142556 |1495 |33636 |
-ROW |142557 |1495 |33640 |
-ROW |142558 |1495 |33641 |
-ROW |142559 |1495 |33642 |
-ROW |142560 |1495 |33643 |
-ROW |142561 |1495 |33644 |
-ROW |142562 |1495 |33645 |
-ROW |142563 |1495 |33646 |
-ROW |142564 |1494 |34084 |
-ROW |142565 |1495 |33653 |
-ROW |142566 |1495 |33654 |
-ROW |142567 |1495 |33655 |
-ROW |142568 |1495 |33656 |
-ROW |142569 |1495 |33657 |
-ROW |142570 |1494 |33658 |
-ROW |142571 |1495 |33659 |
-ROW |142572 |1495 |33660 |
-ROW |142573 |1495 |33661 |
-ROW |142574 |1495 |33662 |
-ROW |142575 |1495 |33663 |
-ROW |142576 |1495 |33664 |
-ROW |142577 |1495 |33665 |
-ROW |142578 |1495 |33666 |
-ROW |142579 |1495 |33667 |
-ROW |142580 |1495 |33668 |
-ROW |142581 |1495 |33669 |
-ROW |142582 |1497 |33670 |
-ROW |142583 |1497 |33671 |
-ROW |142584 |1497 |33672 |
-ROW |142585 |1496 |33673 |
-ROW |142586 |1496 |33674 |
-ROW |142587 |1496 |33676 |
-ROW |142588 |1496 |33677 |
-ROW |142589 |1496 |33678 |
-ROW |142590 |1496 |33679 |
-ROW |142591 |1496 |33680 |
-ROW |142592 |1497 |33681 |
-ROW |142593 |1497 |33682 |
-ROW |142594 |1497 |33683 |
-ROW |142595 |1497 |33684 |
-ROW |142596 |1497 |33685 |
-ROW |142597 |1497 |33686 |
-ROW |142598 |1497 |33687 |
-ROW |142599 |1497 |33691 |
-ROW |142600 |1497 |33692 |
-ROW |142601 |1497 |33693 |
-ROW |142602 |1497 |33694 |
-ROW |142603 |1497 |33695 |
-ROW |142604 |1497 |33696 |
-ROW |142605 |1497 |33697 |
-ROW |142606 |1496 |34085 |
-ROW |142607 |1497 |33704 |
-ROW |142608 |1497 |33705 |
-ROW |142609 |1497 |33706 |
-ROW |142610 |1497 |33707 |
-ROW |142611 |1497 |33708 |
-ROW |142612 |1496 |33709 |
-ROW |142613 |1497 |33710 |
-ROW |142614 |1497 |33711 |
-ROW |142615 |1497 |33712 |
-ROW |142616 |1497 |33713 |
-ROW |142617 |1497 |33714 |
-ROW |142618 |1497 |33715 |
-ROW |142619 |1497 |33716 |
-ROW |142620 |1497 |33717 |
-ROW |142621 |1497 |33718 |
-ROW |142622 |1497 |33719 |
-ROW |142623 |1497 |33720 |
-ROW |142624 |1499 |33721 |
-ROW |142625 |1499 |33722 |
-ROW |142626 |1499 |33723 |
-ROW |142627 |1498 |33724 |
-ROW |142628 |1498 |33725 |
-ROW |142629 |1498 |33727 |
-ROW |142630 |1498 |33728 |
-ROW |142631 |1498 |33729 |
-ROW |142632 |1498 |33730 |
-ROW |142633 |1498 |33731 |
-ROW |142634 |1499 |33732 |
-ROW |142635 |1499 |33733 |
-ROW |142636 |1499 |33734 |
-ROW |142637 |1499 |33735 |
-ROW |142638 |1499 |33736 |
-ROW |142639 |1499 |33737 |
-ROW |142640 |1499 |33738 |
-ROW |142641 |1499 |33742 |
-ROW |142642 |1499 |33743 |
-ROW |142643 |1499 |33744 |
-ROW |142644 |1499 |33745 |
-ROW |142645 |1499 |33746 |
-ROW |142646 |1499 |33747 |
-ROW |142647 |1499 |33748 |
-ROW |142648 |1498 |34086 |
-ROW |142649 |1499 |33755 |
-ROW |142650 |1499 |33756 |
-ROW |142651 |1499 |33757 |
-ROW |142652 |1499 |33758 |
-ROW |142653 |1499 |33759 |
-ROW |142654 |1498 |33760 |
-ROW |142655 |1499 |33761 |
-ROW |142656 |1499 |33762 |
-ROW |142657 |1499 |33763 |
-ROW |142658 |1499 |33764 |
-ROW |142659 |1499 |33765 |
-ROW |142660 |1499 |33766 |
-ROW |142661 |1499 |33767 |
-ROW |142662 |1499 |33768 |
-ROW |142663 |1499 |33769 |
-ROW |142664 |1499 |33770 |
-ROW |142665 |1499 |33771 |
-ROW |142666 |1501 |33772 |
-ROW |142667 |1501 |33773 |
-ROW |142668 |1501 |33774 |
-ROW |142669 |1500 |33775 |
-ROW |142670 |1500 |33776 |
-ROW |142671 |1500 |33778 |
-ROW |142672 |1500 |33779 |
-ROW |142673 |1500 |33780 |
-ROW |142674 |1500 |33781 |
-ROW |142675 |1500 |33782 |
-ROW |142676 |1501 |33783 |
-ROW |142677 |1501 |33784 |
-ROW |142678 |1501 |33785 |
-ROW |142679 |1501 |33786 |
-ROW |142680 |1501 |33787 |
-ROW |142681 |1501 |33788 |
-ROW |142682 |1501 |33789 |
-ROW |142683 |1501 |33793 |
-ROW |142684 |1501 |33794 |
-ROW |142685 |1501 |33795 |
-ROW |142686 |1501 |33796 |
-ROW |142687 |1501 |33797 |
-ROW |142688 |1501 |33798 |
-ROW |142689 |1501 |33799 |
-ROW |142690 |1500 |34087 |
-ROW |142691 |1501 |33806 |
-ROW |142692 |1501 |33807 |
-ROW |142693 |1501 |33808 |
-ROW |142694 |1501 |33809 |
-ROW |142695 |1501 |33810 |
-ROW |142696 |1500 |33811 |
-ROW |142697 |1501 |33812 |
-ROW |142698 |1501 |33813 |
-ROW |142699 |1501 |33814 |
-ROW |142700 |1501 |33815 |
-ROW |142701 |1501 |33816 |
-ROW |142702 |1501 |33817 |
-ROW |142703 |1501 |33818 |
-ROW |142704 |1501 |33819 |
-ROW |142705 |1501 |33820 |
-ROW |142706 |1501 |33821 |
-ROW |142707 |1501 |33822 |
-ROW |142708 |1503 |33823 |
-ROW |142709 |1503 |33824 |
-ROW |142710 |1503 |33825 |
-ROW |142711 |1502 |33826 |
-ROW |142712 |1502 |33827 |
-ROW |142713 |1502 |33829 |
-ROW |142714 |1502 |33830 |
-ROW |142715 |1502 |33831 |
-ROW |142716 |1502 |33832 |
-ROW |142717 |1502 |33833 |
-ROW |142718 |1503 |33834 |
-ROW |142719 |1503 |33835 |
-ROW |142720 |1503 |33836 |
-ROW |142721 |1503 |33837 |
-ROW |142722 |1503 |33838 |
-ROW |142723 |1503 |33839 |
-ROW |142724 |1503 |33840 |
-ROW |142725 |1503 |33844 |
-ROW |142726 |1503 |33845 |
-ROW |142727 |1503 |33846 |
-ROW |142728 |1503 |33847 |
-ROW |142729 |1503 |33848 |
-ROW |142730 |1503 |33849 |
-ROW |142731 |1503 |33850 |
-ROW |142732 |1502 |34088 |
-ROW |142733 |1503 |33857 |
-ROW |142734 |1503 |33858 |
-ROW |142735 |1503 |33859 |
-ROW |142736 |1503 |33860 |
-ROW |142737 |1503 |33861 |
-ROW |142738 |1502 |33862 |
-ROW |142739 |1503 |33863 |
-ROW |142740 |1503 |33864 |
-ROW |142741 |1503 |33865 |
-ROW |142742 |1503 |33866 |
-ROW |142743 |1503 |33867 |
-ROW |142744 |1503 |33868 |
-ROW |142745 |1503 |33869 |
-ROW |142746 |1503 |33870 |
-ROW |142747 |1503 |33871 |
-ROW |142748 |1503 |33872 |
-ROW |142749 |1503 |33873 |
-ROW |142750 |1505 |33874 |
-ROW |142751 |1505 |33875 |
-ROW |142752 |1505 |33876 |
-ROW |142753 |1504 |33877 |
-ROW |142754 |1504 |33878 |
-ROW |142755 |1504 |33880 |
-ROW |142756 |1504 |33881 |
-ROW |142757 |1504 |33882 |
-ROW |142758 |1504 |33883 |
-ROW |142759 |1504 |33884 |
-ROW |142760 |1505 |33885 |
-ROW |142761 |1505 |33886 |
-ROW |142762 |1505 |33887 |
-ROW |142763 |1505 |33888 |
-ROW |142764 |1505 |33889 |
-ROW |142765 |1505 |33890 |
-ROW |142766 |1505 |33891 |
-ROW |142767 |1505 |33895 |
-ROW |142768 |1505 |33896 |
-ROW |142769 |1505 |33897 |
-ROW |142770 |1505 |33898 |
-ROW |142771 |1505 |33899 |
-ROW |142772 |1505 |33900 |
-ROW |142773 |1505 |33901 |
-ROW |142774 |1504 |34089 |
-ROW |142775 |1505 |33908 |
-ROW |142776 |1505 |33909 |
-ROW |142777 |1505 |33910 |
-ROW |142778 |1505 |33911 |
-ROW |142779 |1505 |33912 |
-ROW |142780 |1504 |33913 |
-ROW |142781 |1505 |33914 |
-ROW |142782 |1505 |33915 |
-ROW |142783 |1505 |33916 |
-ROW |142784 |1505 |33917 |
-ROW |142785 |1505 |33918 |
-ROW |142786 |1505 |33919 |
-ROW |142787 |1505 |33920 |
-ROW |142788 |1505 |33921 |
-ROW |142789 |1505 |33922 |
-ROW |142790 |1505 |33923 |
-ROW |142791 |1505 |33924 |
-ROW |142792 |1489 |33433 |
-ROW |142793 |1489 |33434 |
-ROW |142794 |1488 |33435 |
-ROW |142795 |1488 |33436 |
-ROW |142796 |1488 |33438 |
-ROW |142797 |1488 |33439 |
-ROW |142798 |1488 |33440 |
-ROW |142799 |1488 |33441 |
-ROW |142800 |1488 |33442 |
-ROW |142801 |1489 |33443 |
-ROW |142802 |1489 |33444 |
-ROW |142803 |1489 |33445 |
-ROW |142804 |1489 |33446 |
-ROW |142805 |1489 |33447 |
-ROW |142806 |1489 |33448 |
-ROW |142807 |1489 |33449 |
-ROW |142808 |1489 |33453 |
-ROW |142809 |1489 |33454 |
-ROW |142810 |1489 |33455 |
-ROW |142811 |1489 |33456 |
-ROW |142812 |1489 |33457 |
-ROW |142813 |1489 |33458 |
-ROW |142814 |1489 |33459 |
-ROW |142815 |1489 |33925 |
-ROW |142816 |1488 |34090 |
-ROW |142817 |1489 |33465 |
-ROW |142818 |1489 |33466 |
-ROW |142819 |1489 |33467 |
-ROW |142820 |1489 |33468 |
-ROW |142821 |1489 |33469 |
-ROW |142822 |1488 |33470 |
-ROW |142823 |1489 |33471 |
-ROW |142824 |1489 |33472 |
-ROW |142825 |1489 |33473 |
-ROW |142826 |1489 |33474 |
-ROW |142827 |1489 |33475 |
-ROW |142828 |1489 |33476 |
-ROW |142829 |1489 |33477 |
-ROW |142830 |1489 |33478 |
-ROW |142831 |1489 |33927 |
-ROW |142832 |1489 |33928 |
-ROW |142833 |1489 |33929 |
-ROW |142834 |1507 |33930 |
-ROW |142835 |1507 |33931 |
-ROW |142836 |1507 |33932 |
-ROW |142837 |1506 |33933 |
-ROW |142838 |1506 |33934 |
-ROW |142839 |1506 |33936 |
-ROW |142840 |1506 |33937 |
-ROW |142841 |1506 |33938 |
-ROW |142842 |1506 |33939 |
-ROW |142843 |1506 |33940 |
-ROW |142844 |1507 |33941 |
-ROW |142845 |1507 |33942 |
-ROW |142846 |1507 |33943 |
-ROW |142847 |1507 |33944 |
-ROW |142848 |1507 |33945 |
-ROW |142849 |1507 |33946 |
-ROW |142850 |1507 |33947 |
-ROW |142851 |1507 |33951 |
-ROW |142852 |1507 |33952 |
-ROW |142853 |1507 |33953 |
-ROW |142854 |1507 |33954 |
-ROW |142855 |1507 |33955 |
-ROW |142856 |1507 |33956 |
-ROW |142857 |1507 |33957 |
-ROW |142858 |1506 |34091 |
-ROW |142859 |1507 |33964 |
-ROW |142860 |1507 |33965 |
-ROW |142861 |1507 |33966 |
-ROW |142862 |1507 |33967 |
-ROW |142863 |1507 |33968 |
-ROW |142864 |1506 |33969 |
-ROW |142865 |1507 |33970 |
-ROW |142866 |1507 |33971 |
-ROW |142867 |1507 |33972 |
-ROW |142868 |1507 |33973 |
-ROW |142869 |1507 |33974 |
-ROW |142870 |1507 |33975 |
-ROW |142871 |1507 |33976 |
-ROW |142872 |1507 |33977 |
-ROW |142873 |1507 |33978 |
-ROW |142874 |1507 |33979 |
-ROW |142875 |1507 |33980 |
-ROW |142876 |1509 |33981 |
-ROW |142877 |1509 |33982 |
-ROW |142878 |1509 |33983 |
-ROW |142879 |1508 |33984 |
-ROW |142880 |1508 |33985 |
-ROW |142881 |1508 |33987 |
-ROW |142882 |1508 |33988 |
-ROW |142883 |1508 |33989 |
-ROW |142884 |1508 |33990 |
-ROW |142885 |1508 |33991 |
-ROW |142886 |1509 |33992 |
-ROW |142887 |1509 |33993 |
-ROW |142888 |1509 |33994 |
-ROW |142889 |1509 |33995 |
-ROW |142890 |1509 |33996 |
-ROW |142891 |1509 |33997 |
-ROW |142892 |1509 |33998 |
-ROW |142893 |1509 |34002 |
-ROW |142894 |1509 |34003 |
-ROW |142895 |1509 |34004 |
-ROW |142896 |1509 |34005 |
-ROW |142897 |1509 |34006 |
-ROW |142898 |1509 |34007 |
-ROW |142899 |1509 |34008 |
-ROW |142900 |1508 |34092 |
-ROW |142901 |1509 |34015 |
-ROW |142902 |1509 |34016 |
-ROW |142903 |1509 |34017 |
-ROW |142904 |1509 |34018 |
-ROW |142905 |1509 |34019 |
-ROW |142906 |1508 |34020 |
-ROW |142907 |1509 |34021 |
-ROW |142908 |1509 |34022 |
-ROW |142909 |1509 |34023 |
-ROW |142910 |1509 |34024 |
-ROW |142911 |1509 |34025 |
-ROW |142912 |1509 |34026 |
-ROW |142913 |1509 |34027 |
-ROW |142914 |1509 |34028 |
-ROW |142915 |1509 |34029 |
-ROW |142916 |1509 |34030 |
-ROW |142917 |1509 |34031 |
-ROW |142918 |1511 |34032 |
-ROW |142919 |1511 |34033 |
-ROW |142920 |1511 |34034 |
-ROW |142921 |1510 |34035 |
-ROW |142922 |1510 |34036 |
-ROW |142923 |1510 |34038 |
-ROW |142924 |1510 |34039 |
-ROW |142925 |1510 |34040 |
-ROW |142926 |1510 |34041 |
-ROW |142927 |1510 |34042 |
-ROW |142928 |1511 |34043 |
-ROW |142929 |1511 |34044 |
-ROW |142930 |1511 |34045 |
-ROW |142931 |1511 |34046 |
-ROW |142932 |1511 |34047 |
-ROW |142933 |1511 |34048 |
-ROW |142934 |1511 |34049 |
-ROW |142935 |1511 |34053 |
-ROW |142936 |1511 |34054 |
-ROW |142937 |1511 |34055 |
-ROW |142938 |1511 |34056 |
-ROW |142939 |1511 |34057 |
-ROW |142940 |1511 |34058 |
-ROW |142941 |1511 |34059 |
-ROW |142942 |1510 |34093 |
-ROW |142943 |1511 |34066 |
-ROW |142944 |1511 |34067 |
-ROW |142945 |1511 |34068 |
-ROW |142946 |1511 |34069 |
-ROW |142947 |1511 |34070 |
-ROW |142948 |1510 |34071 |
-ROW |142949 |1511 |34072 |
-ROW |142950 |1511 |34073 |
-ROW |142951 |1511 |34074 |
-ROW |142952 |1511 |34075 |
-ROW |142953 |1511 |34076 |
-ROW |142954 |1511 |34077 |
-ROW |142955 |1511 |34078 |
-ROW |142956 |1511 |34079 |
-ROW |142957 |1511 |34080 |
-ROW |142958 |1511 |34081 |
-ROW |142959 |1511 |34082 |
-ROW |142960 |1424 |32776 |
-ROW |142961 |1424 |32777 |
-ROW |142962 |1424 |32778 |
-ROW |142963 |1424 |32779 |
-ROW |142964 |1491 |33479 |
-ROW |142965 |1490 |33480 |
-ROW |142966 |1491 |33481 |
-ROW |142967 |1491 |33482 |
-ROW |142968 |1491 |33483 |
-ROW |142969 |1491 |33484 |
-ROW |142970 |1491 |33485 |
-ROW |142971 |1491 |33486 |
-ROW |142972 |1491 |33487 |
-ROW |142973 |1490 |33488 |
-ROW |142974 |1490 |33489 |
-ROW |142975 |1491 |33490 |
-ROW |142976 |1490 |33491 |
-ROW |142977 |1491 |33492 |
-ROW |142978 |1490 |33493 |
-ROW |142979 |1490 |33494 |
-ROW |142980 |1490 |33495 |
-ROW |142981 |1491 |33496 |
-ROW |142982 |1491 |33497 |
-ROW |142983 |1491 |33498 |
-ROW |142984 |1491 |33499 |
-ROW |142985 |1490 |33500 |
-ROW |142986 |1490 |33501 |
-ROW |142987 |1491 |33502 |
-ROW |142988 |1491 |33503 |
-ROW |142989 |1490 |33504 |
-ROW |142990 |1490 |33505 |
-ROW |142991 |1490 |33506 |
-ROW |142992 |1490 |33507 |
-ROW |142993 |1490 |33508 |
-ROW |142994 |1490 |33509 |
-ROW |142995 |1491 |33510 |
-ROW |142996 |1491 |33511 |
-ROW |142997 |1490 |33512 |
-ROW |142998 |1491 |33545 |
-ROW |142999 |1491 |33551 |
-ROW |143000 |1491 |33552 |
-ROW |143001 |1491 |33553 |
-ROW |143002 |1491 |33559 |
-ROW |143003 |1491 |33560 |
-ROW |143004 |1491 |33561 |
-ROW |143005 |1491 |33562 |
-ROW |143006 |1416 |32612 |
-ROW |143007 |1416 |32613 |
-ROW |143008 |1416 |32614 |
-ROW |143009 |1416 |32615 |
-ROW |143010 |1325 |30685 |
-ROW |143011 |1616 |34946 |
-ROW |143012 |1616 |34947 |
-ROW |143013 |1616 |34948 |
-ROW |143014 |1616 |34949 |
-ROW |143015 |1616 |34950 |
-ROW |143016 |1621 |34951 |
-ROW |143017 |1616 |34952 |
-ROW |143018 |1621 |34953 |
-ROW |143019 |1614 |34964 |
-ROW |143020 |1614 |34965 |
-ROW |143021 |1614 |34966 |
-ROW |143022 |1615 |34967 |
-ROW |143023 |1619 |34982 |
-ROW |143024 |1619 |34983 |
-ROW |143025 |1619 |34984 |
-ROW |143026 |1619 |34985 |
-ROW |143027 |1619 |34986 |
-ROW |143028 |1620 |34987 |
-ROW |143029 |1622 |34988 |
-ROW |143030 |1622 |34989 |
-ROW |143031 |1622 |34990 |
-ROW |143032 |1622 |34991 |
-ROW |143033 |1622 |34992 |
-ROW |143034 |1617 |34993 |
-ROW |143035 |1617 |34994 |
-ROW |143036 |1621 |34995 |
-ROW |143037 |1623 |34996 |
-ROW |143038 |1623 |34997 |
-ROW |143039 |1623 |34998 |
-ROW |143040 |1277 |30066 |
-ROW |143041 |1277 |30067 |
-ROW |143042 |1277 |30068 |
-ROW |143043 |1277 |30069 |
-ROW |143044 |1277 |30070 |
-ROW |143045 |1276 |30071 |
-ROW |143046 |1271 |30072 |
-ROW |143047 |1274 |30073 |
-ROW |143048 |1274 |30074 |
-ROW |143049 |1273 |30075 |
-ROW |143050 |1275 |30076 |
-ROW |143051 |1275 |30077 |
-ROW |143052 |1275 |30078 |
-ROW |143053 |1275 |30079 |
-ROW |143054 |1278 |30080 |
-ROW |143055 |1278 |30081 |
-ROW |143056 |1278 |30082 |
-ROW |143057 |1272 |30083 |
-ROW |143058 |1272 |30084 |
-ROW |143059 |1272 |30085 |
-ROW |143060 |1635 |35041 |
-ROW |143061 |1635 |35042 |
-ROW |143062 |1636 |35043 |
-ROW |143063 |1636 |35044 |
-ROW |143064 |1636 |35045 |
-ROW |143065 |1635 |35046 |
-ROW |143066 |1635 |35047 |
-ROW |143067 |1635 |35048 |
-ROW |143068 |1639 |35049 |
-ROW |143069 |1636 |35050 |
-ROW |143070 |1639 |35051 |
-ROW |143071 |1635 |35052 |
-ROW |143072 |1639 |35053 |
-ROW |143073 |1633 |35061 |
-ROW |143074 |1633 |35062 |
-ROW |143075 |1633 |35063 |
-ROW |143076 |1634 |35064 |
-ROW |143077 |1634 |35065 |
-ROW |143078 |1637 |35066 |
-ROW |143079 |1637 |35067 |
-ROW |143080 |1637 |35068 |
-ROW |143081 |1637 |35069 |
-ROW |143082 |1637 |35070 |
-ROW |143083 |1637 |35071 |
-ROW |143084 |1638 |35072 |
-ROW |143085 |1640 |35073 |
-ROW |143086 |1640 |35074 |
-ROW |143087 |1641 |35075 |
-ROW |143088 |1641 |35076 |
-ROW |143089 |1641 |35077 |
-ROW |143090 |1641 |35078 |
-ROW |143091 |1641 |35079 |
-ROW |143092 |1641 |35080 |
-ROW |143093 |1653 |35123 |
-ROW |143094 |1653 |35124 |
-ROW |143095 |1654 |35125 |
-ROW |143096 |1654 |35126 |
-ROW |143097 |1654 |35127 |
-ROW |143098 |1653 |35128 |
-ROW |143099 |1653 |35129 |
-ROW |143100 |1653 |35130 |
-ROW |143101 |1657 |35131 |
-ROW |143102 |1654 |35132 |
-ROW |143103 |1657 |35133 |
-ROW |143104 |1653 |35134 |
-ROW |143105 |1657 |35135 |
-ROW |143106 |1651 |35143 |
-ROW |143107 |1651 |35144 |
-ROW |143108 |1651 |35145 |
-ROW |143109 |1652 |35146 |
-ROW |143110 |1652 |35147 |
-ROW |143111 |1655 |35148 |
-ROW |143112 |1655 |35149 |
-ROW |143113 |1655 |35150 |
-ROW |143114 |1655 |35151 |
-ROW |143115 |1655 |35152 |
-ROW |143116 |1655 |35153 |
-ROW |143117 |1656 |35154 |
-ROW |143118 |1658 |35155 |
-ROW |143119 |1658 |35156 |
-ROW |143120 |1659 |35157 |
-ROW |143121 |1659 |35158 |
-ROW |143122 |1659 |35159 |
-ROW |143123 |1659 |35160 |
-ROW |143124 |1659 |35161 |
-ROW |143125 |1659 |35162 |
-ROW |143126 |1671 |35205 |
-ROW |143127 |1671 |35206 |
-ROW |143128 |1672 |35207 |
-ROW |143129 |1672 |35208 |
-ROW |143130 |1672 |35209 |
-ROW |143131 |1671 |35210 |
-ROW |143132 |1671 |35211 |
-ROW |143133 |1671 |35212 |
-ROW |143134 |1675 |35213 |
-ROW |143135 |1672 |35214 |
-ROW |143136 |1675 |35215 |
-ROW |143137 |1671 |35216 |
-ROW |143138 |1675 |35217 |
-ROW |143139 |1669 |35225 |
-ROW |143140 |1669 |35226 |
-ROW |143141 |1669 |35227 |
-ROW |143142 |1670 |35228 |
-ROW |143143 |1670 |35229 |
-ROW |143144 |1673 |35230 |
-ROW |143145 |1673 |35231 |
-ROW |143146 |1673 |35232 |
-ROW |143147 |1673 |35233 |
-ROW |143148 |1673 |35234 |
-ROW |143149 |1673 |35235 |
-ROW |143150 |1674 |35236 |
-ROW |143151 |1676 |35237 |
-ROW |143152 |1676 |35238 |
-ROW |143153 |1677 |35239 |
-ROW |143154 |1677 |35240 |
-ROW |143155 |1677 |35241 |
-ROW |143156 |1677 |35242 |
-ROW |143157 |1677 |35243 |
-ROW |143158 |1677 |35244 |
-ROW |143159 |1689 |35287 |
-ROW |143160 |1689 |35288 |
-ROW |143161 |1690 |35289 |
-ROW |143162 |1690 |35290 |
-ROW |143163 |1690 |35291 |
-ROW |143164 |1689 |35292 |
-ROW |143165 |1689 |35293 |
-ROW |143166 |1689 |35294 |
-ROW |143167 |1693 |35295 |
-ROW |143168 |1690 |35296 |
-ROW |143169 |1693 |35297 |
-ROW |143170 |1689 |35298 |
-ROW |143171 |1693 |35299 |
-ROW |143172 |1687 |35307 |
-ROW |143173 |1687 |35308 |
-ROW |143174 |1687 |35309 |
-ROW |143175 |1688 |35310 |
-ROW |143176 |1688 |35311 |
-ROW |143177 |1691 |35312 |
-ROW |143178 |1691 |35313 |
-ROW |143179 |1691 |35314 |
-ROW |143180 |1691 |35315 |
-ROW |143181 |1691 |35316 |
-ROW |143182 |1691 |35317 |
-ROW |143183 |1692 |35318 |
-ROW |143184 |1694 |35319 |
-ROW |143185 |1694 |35320 |
-ROW |143186 |1695 |35321 |
-ROW |143187 |1695 |35322 |
-ROW |143188 |1695 |35323 |
-ROW |143189 |1695 |35324 |
-ROW |143190 |1695 |35325 |
-ROW |143191 |1695 |35326 |
-ROW |143192 |1070 |28341 |
-ROW |143193 |1073 |28342 |
-ROW |143194 |1073 |28344 |
-ROW |143195 |1073 |28345 |
-ROW |143196 |1073 |30141 |
-ROW |143197 |1076 |28354 |
-ROW |143198 |1076 |28355 |
-ROW |143199 |1076 |28356 |
-ROW |143200 |1076 |28357 |
-ROW |143201 |1075 |28358 |
-ROW |143202 |1072 |28359 |
-ROW |143203 |1072 |28360 |
-ROW |143204 |1074 |28361 |
-ROW |143205 |1074 |28362 |
-ROW |143206 |1074 |28363 |
-ROW |143207 |1074 |28364 |
-ROW |143208 |1074 |28365 |
-ROW |143209 |1074 |28366 |
-ROW |143210 |1074 |28367 |
-ROW |143211 |1077 |28368 |
-ROW |143212 |1077 |28369 |
-ROW |143213 |1077 |28370 |
-ROW |143214 |1077 |28371 |
-ROW |143215 |1077 |28372 |
-ROW |143216 |1077 |28373 |
-ROW |143217 |1071 |28374 |
-ROW |143218 |1071 |28375 |
-ROW |143219 |1071 |28376 |
-ROW |143220 |1698 |35327 |
-ROW |143221 |1698 |35328 |
-ROW |143222 |1699 |35329 |
-ROW |143223 |1699 |35330 |
-ROW |143224 |1698 |35331 |
-ROW |143225 |1698 |35332 |
-ROW |143226 |1698 |35333 |
-ROW |143227 |1704 |35334 |
-ROW |143228 |1703 |35335 |
-ROW |143229 |1703 |35336 |
-ROW |143230 |1698 |35337 |
-ROW |143231 |1703 |35338 |
-ROW |143232 |1696 |35353 |
-ROW |143233 |1696 |35354 |
-ROW |143234 |1696 |35355 |
-ROW |143235 |1696 |35356 |
-ROW |143236 |1697 |35357 |
-ROW |143237 |1700 |35358 |
-ROW |143238 |1701 |35359 |
-ROW |143239 |1701 |35360 |
-ROW |143240 |1701 |35361 |
-ROW |143241 |1701 |35362 |
-ROW |143242 |1701 |35363 |
-ROW |143243 |1701 |35364 |
-ROW |143244 |1702 |35365 |
-ROW |143245 |1704 |35366 |
-ROW |143246 |1704 |35367 |
-ROW |143247 |1704 |35368 |
-ROW |143248 |1704 |35369 |
-ROW |143249 |1704 |35370 |
-ROW |143250 |1704 |35371 |
-ROW |143251 |1704 |35372 |
-ROW |143252 |1704 |35373 |
-ROW |143253 |1704 |35374 |
-ROW |143254 |1704 |35375 |
-ROW |143255 |1704 |35376 |
-ROW |143256 |1704 |35377 |
-ROW |143257 |1704 |35378 |
-ROW |143258 |1704 |35379 |
-ROW |143259 |1704 |35380 |
-ROW |143260 |1705 |35381 |
-ROW |143261 |1705 |35382 |
-ROW |143262 |1705 |35383 |
-ROW |143263 |1708 |35384 |
-ROW |143264 |1708 |35385 |
-ROW |143265 |1709 |35386 |
-ROW |143266 |1709 |35387 |
-ROW |143267 |1708 |35388 |
-ROW |143268 |1708 |35389 |
-ROW |143269 |1708 |35390 |
-ROW |143270 |1714 |35391 |
-ROW |143271 |1713 |35392 |
-ROW |143272 |1713 |35393 |
-ROW |143273 |1708 |35394 |
-ROW |143274 |1713 |35395 |
-ROW |143275 |1706 |35410 |
-ROW |143276 |1706 |35411 |
-ROW |143277 |1706 |35412 |
-ROW |143278 |1706 |35413 |
-ROW |143279 |1707 |35414 |
-ROW |143280 |1710 |35415 |
-ROW |143281 |1711 |35416 |
-ROW |143282 |1711 |35417 |
-ROW |143283 |1711 |35418 |
-ROW |143284 |1711 |35419 |
-ROW |143285 |1711 |35420 |
-ROW |143286 |1711 |35421 |
-ROW |143287 |1712 |35422 |
-ROW |143288 |1714 |35423 |
-ROW |143289 |1714 |35424 |
-ROW |143290 |1714 |35425 |
-ROW |143291 |1714 |35426 |
-ROW |143292 |1714 |35427 |
-ROW |143293 |1714 |35428 |
-ROW |143294 |1714 |35429 |
-ROW |143295 |1714 |35430 |
-ROW |143296 |1714 |35431 |
-ROW |143297 |1714 |35432 |
-ROW |143298 |1714 |35433 |
-ROW |143299 |1714 |35434 |
-ROW |143300 |1714 |35435 |
-ROW |143301 |1714 |35436 |
-ROW |143302 |1714 |35437 |
-ROW |143303 |1715 |35438 |
-ROW |143304 |1715 |35439 |
-ROW |143305 |1715 |35440 |
-ROW |143306 |1718 |35441 |
-ROW |143307 |1718 |35442 |
-ROW |143308 |1719 |35443 |
-ROW |143309 |1719 |35444 |
-ROW |143310 |1718 |35445 |
-ROW |143311 |1718 |35446 |
-ROW |143312 |1718 |35447 |
-ROW |143313 |1724 |35448 |
-ROW |143314 |1723 |35449 |
-ROW |143315 |1723 |35450 |
-ROW |143316 |1718 |35451 |
-ROW |143317 |1723 |35452 |
-ROW |143318 |1716 |35467 |
-ROW |143319 |1716 |35468 |
-ROW |143320 |1716 |35469 |
-ROW |143321 |1716 |35470 |
-ROW |143322 |1717 |35471 |
-ROW |143323 |1720 |35472 |
-ROW |143324 |1721 |35473 |
-ROW |143325 |1721 |35474 |
-ROW |143326 |1721 |35475 |
-ROW |143327 |1721 |35476 |
-ROW |143328 |1721 |35477 |
-ROW |143329 |1721 |35478 |
-ROW |143330 |1722 |35479 |
-ROW |143331 |1724 |35480 |
-ROW |143332 |1724 |35481 |
-ROW |143333 |1724 |35482 |
-ROW |143334 |1724 |35483 |
-ROW |143335 |1724 |35484 |
-ROW |143336 |1724 |35485 |
-ROW |143337 |1724 |35486 |
-ROW |143338 |1724 |35487 |
-ROW |143339 |1724 |35488 |
-ROW |143340 |1724 |35489 |
-ROW |143341 |1724 |35490 |
-ROW |143342 |1724 |35491 |
-ROW |143343 |1724 |35492 |
-ROW |143344 |1724 |35493 |
-ROW |143345 |1724 |35494 |
-ROW |143346 |1725 |35495 |
-ROW |143347 |1725 |35496 |
-ROW |143348 |1725 |35497 |
-ROW |143349 |1728 |35498 |
-ROW |143350 |1728 |35499 |
-ROW |143351 |1729 |35500 |
-ROW |143352 |1729 |35501 |
-ROW |143353 |1728 |35502 |
-ROW |143354 |1728 |35503 |
-ROW |143355 |1728 |35504 |
-ROW |143356 |1734 |35505 |
-ROW |143357 |1733 |35506 |
-ROW |143358 |1733 |35507 |
-ROW |143359 |1728 |35508 |
-ROW |143360 |1733 |35509 |
-ROW |143361 |1726 |35524 |
-ROW |143362 |1726 |35525 |
-ROW |143363 |1726 |35526 |
-ROW |143364 |1726 |35527 |
-ROW |143365 |1727 |35528 |
-ROW |143366 |1730 |35529 |
-ROW |143367 |1731 |35530 |
-ROW |143368 |1731 |35531 |
-ROW |143369 |1731 |35532 |
-ROW |143370 |1731 |35533 |
-ROW |143371 |1731 |35534 |
-ROW |143372 |1731 |35535 |
-ROW |143373 |1732 |35536 |
-ROW |143374 |1734 |35537 |
-ROW |143375 |1734 |35538 |
-ROW |143376 |1734 |35539 |
-ROW |143377 |1734 |35540 |
-ROW |143378 |1734 |35541 |
-ROW |143379 |1734 |35542 |
-ROW |143380 |1734 |35543 |
-ROW |143381 |1734 |35544 |
-ROW |143382 |1734 |35545 |
-ROW |143383 |1734 |35546 |
-ROW |143384 |1734 |35547 |
-ROW |143385 |1734 |35548 |
-ROW |143386 |1734 |35549 |
-ROW |143387 |1734 |35550 |
-ROW |143388 |1734 |35551 |
-ROW |143389 |1735 |35552 |
-ROW |143390 |1735 |35553 |
-ROW |143391 |1735 |35554 |
-ROW |143392 |1085 |28388 |
-ROW |143393 |1082 |28390 |
-ROW |143394 |1082 |28391 |
-ROW |143395 |1079 |29994 |
-ROW |143396 |1085 |28404 |
-ROW |143397 |1085 |28405 |
-ROW |143398 |1085 |28406 |
-ROW |143399 |1085 |28407 |
-ROW |143400 |1085 |28408 |
-ROW |143401 |1085 |28409 |
-ROW |143402 |1084 |28411 |
-ROW |143403 |1081 |28412 |
-ROW |143404 |1080 |28413 |
-ROW |143405 |1080 |28414 |
-ROW |143406 |1080 |28415 |
-ROW |143407 |1080 |28416 |
-ROW |143408 |1083 |28417 |
-ROW |143409 |1083 |28418 |
-ROW |143410 |1083 |28419 |
-ROW |143411 |1083 |28420 |
-ROW |143412 |1083 |28421 |
-ROW |143413 |1083 |28422 |
-ROW |143414 |1086 |28423 |
-ROW |143415 |1086 |28424 |
-ROW |143416 |1086 |28425 |
-ROW |143417 |1085 |32732 |
-ROW |143418 |1085 |32733 |
-ROW |143419 |1085 |32734 |
-ROW |143420 |1085 |32735 |
-ROW |143421 |1085 |32736 |
-ROW |143422 |1085 |32737 |
-ROW |143423 |1085 |32738 |
-ROW |143424 |1085 |32739 |
-ROW |143425 |1085 |32740 |
-ROW |143426 |1095 |28465 |
-ROW |143427 |1097 |28466 |
-ROW |143428 |1097 |28467 |
-ROW |143429 |1100 |28474 |
-ROW |143430 |1100 |28475 |
-ROW |143431 |1100 |28476 |
-ROW |143432 |1099 |28477 |
-ROW |143433 |1096 |28478 |
-ROW |143434 |1096 |28479 |
-ROW |143435 |1098 |28480 |
-ROW |143436 |1098 |28481 |
-ROW |143437 |1104 |28495 |
-ROW |143438 |1103 |28496 |
+ROW |143439 |1116 |28743 |
+ROW |143440 |1116 |28744 |
+ROW |143441 |1116 |28745 |
+ROW |143442 |1116 |28746 |
+ROW |143443 |1116 |28747 |
+ROW |143444 |1116 |28748 |
+ROW |143445 |1117 |30896 |
+ROW |143446 |1116 |30897 |
+ROW |143447 |1116 |30898 |
+ROW |143448 |1116 |30899 |
+ROW |143449 |1116 |30900 |
+ROW |143450 |1116 |30901 |
+ROW |143451 |1116 |30902 |
+ROW |143452 |1116 |30903 |
+ROW |143453 |1116 |30904 |
+ROW |143454 |1116 |30905 |
+ROW |143455 |1116 |30906 |
+ROW |143456 |1116 |30907 |
+ROW |143457 |1116 |30908 |
+ROW |143458 |1116 |30909 |
+ROW |143459 |1116 |30910 |
+ROW |143460 |1116 |30911 |
+ROW |143461 |1116 |30912 |
+ROW |143462 |1116 |30913 |
+ROW |143463 |1116 |30914 |
+ROW |143464 |1116 |30915 |
+ROW |143465 |1116 |30917 |
+ROW |143466 |1116 |30918 |
+ROW |143467 |1116 |30919 |
+ROW |143468 |1116 |30920 |
+ROW |143469 |1116 |30921 |
+ROW |143470 |1116 |30922 |
+ROW |143471 |1119 |28775 |
+ROW |143472 |1118 |28776 |
+ROW |143473 |1118 |28777 |
+ROW |143474 |1118 |28778 |
+ROW |143475 |1118 |28779 |
+ROW |143476 |1118 |28780 |
+ROW |143477 |1118 |28781 |
+ROW |143478 |1118 |28782 |
+ROW |143479 |1118 |28783 |
+ROW |143480 |1118 |28784 |
+ROW |143481 |1118 |28785 |
+ROW |143482 |1118 |28786 |
+ROW |143483 |1118 |28787 |
+ROW |143484 |1118 |28788 |
+ROW |143485 |1118 |28789 |
+ROW |143486 |1118 |28790 |
+ROW |143487 |1118 |28791 |
+ROW |143488 |1118 |28792 |
+ROW |143489 |1118 |28793 |
+ROW |143490 |1118 |28794 |
+ROW |143491 |1118 |28795 |
+ROW |143492 |1118 |28796 |
+ROW |143493 |1118 |28798 |
+ROW |143494 |1118 |28799 |
+ROW |143495 |1118 |28800 |
+ROW |143496 |1118 |28801 |
+ROW |143497 |1118 |28802 |
+ROW |143498 |1118 |28803 |
+ROW |143499 |1349 |31800 |
+ROW |143500 |1349 |31801 |
+ROW |143501 |1349 |31802 |
+ROW |143502 |1348 |31803 |
+ROW |143503 |1349 |31804 |
+ROW |143504 |1348 |31805 |
+ROW |143505 |1348 |31806 |
+ROW |143506 |1348 |31807 |
+ROW |143507 |1348 |31808 |
+ROW |143508 |1348 |31809 |
+ROW |143509 |1348 |31810 |
+ROW |143510 |1348 |31811 |
+ROW |143511 |1348 |31812 |
+ROW |143512 |1348 |31813 |
+ROW |143513 |1348 |31814 |
+ROW |143514 |1348 |31815 |
+ROW |143515 |1348 |31816 |
+ROW |143516 |1348 |31817 |
+ROW |143517 |1348 |31818 |
+ROW |143518 |1348 |31819 |
+ROW |143519 |1348 |31820 |
+ROW |143520 |1348 |31821 |
+ROW |143521 |1348 |31822 |
+ROW |143522 |1348 |31823 |
+ROW |143523 |1348 |31824 |
+ROW |143524 |1348 |31825 |
+ROW |143525 |1348 |31826 |
+ROW |143526 |1348 |31827 |
+ROW |143527 |1348 |31828 |
+ROW |143528 |1348 |31829 |
+ROW |143529 |1348 |31830 |
+ROW |143530 |1348 |31831 |
+ROW |143531 |1348 |31832 |
+ROW |143532 |1348 |31833 |
+ROW |143533 |1348 |31834 |
+ROW |143534 |1348 |31835 |
+ROW |143535 |1348 |31836 |
+ROW |143536 |1348 |31837 |
+ROW |143537 |1348 |31838 |
+ROW |143538 |1348 |31839 |
+ROW |143539 |1348 |31840 |
+ROW |143540 |1348 |31841 |
+ROW |143541 |1348 |31842 |
+ROW |143542 |1348 |31843 |
+ROW |143543 |1348 |31844 |
+ROW |143544 |1348 |31845 |
+ROW |143545 |1348 |31846 |
+ROW |143546 |1348 |31847 |
+ROW |143547 |1348 |31848 |
+ROW |143548 |1348 |31849 |
+ROW |143549 |1348 |31850 |
+ROW |143550 |1753 |35772 |
+ROW |143551 |1752 |35773 |
+ROW |143552 |1752 |35774 |
+ROW |143553 |1752 |35775 |
+ROW |143554 |1752 |35776 |
+ROW |143555 |1752 |35777 |
+ROW |143556 |1752 |35778 |
+ROW |143557 |1752 |35779 |
+ROW |143558 |1752 |35780 |
+ROW |143559 |1752 |35781 |
+ROW |143560 |1752 |35782 |
+ROW |143561 |1752 |35783 |
+ROW |143562 |1752 |35784 |
+ROW |143563 |1319 |30527 |
+ROW |143564 |1319 |30528 |
+ROW |143565 |1319 |30529 |
+ROW |143566 |1318 |30530 |
+ROW |143567 |1319 |30531 |
+ROW |143568 |1318 |30532 |
+ROW |143569 |1318 |30533 |
+ROW |143570 |1318 |30534 |
+ROW |143571 |1318 |30535 |
+ROW |143572 |1318 |30536 |
+ROW |143573 |1318 |30537 |
+ROW |143574 |1318 |30538 |
+ROW |143575 |1318 |30539 |
+ROW |143576 |1318 |30540 |
+ROW |143577 |1318 |30541 |
+ROW |143578 |1318 |30542 |
+ROW |143579 |1318 |30543 |
+ROW |143580 |1318 |30544 |
+ROW |143581 |1318 |30545 |
+ROW |143582 |1318 |30546 |
+ROW |143583 |1318 |30547 |
+ROW |143584 |1318 |30548 |
+ROW |143585 |1318 |30549 |
+ROW |143586 |1318 |30550 |
+ROW |143587 |1318 |30551 |
+ROW |143588 |1318 |30552 |
+ROW |143589 |1318 |30553 |
+ROW |143590 |1318 |30554 |
+ROW |143591 |1318 |30555 |
+ROW |143592 |1318 |30556 |
+ROW |143593 |1318 |30557 |
+ROW |143594 |1318 |30558 |
+ROW |143595 |1318 |30559 |
+ROW |143596 |1318 |30560 |
+ROW |143597 |1318 |30561 |
+ROW |143598 |1318 |30562 |
+ROW |143599 |1318 |30563 |
+ROW |143600 |1318 |30564 |
+ROW |143601 |1318 |30565 |
+ROW |143602 |1318 |30566 |
+ROW |143603 |1318 |30567 |
+ROW |143604 |1318 |30568 |
+ROW |143605 |1318 |30569 |
+ROW |143606 |1318 |30570 |
+ROW |143607 |1326 |30690 |
+ROW |143608 |1327 |30691 |
+ROW |143609 |1326 |30692 |
+ROW |143610 |1327 |30693 |
+ROW |143611 |1327 |30694 |
+ROW |143612 |1326 |30695 |
+ROW |143613 |1326 |30696 |
+ROW |143614 |1326 |30697 |
+ROW |143615 |1326 |30698 |
+ROW |143616 |1326 |30699 |
+ROW |143617 |1326 |30700 |
+ROW |143618 |1326 |30701 |
+ROW |143619 |1326 |30702 |
+ROW |143620 |1326 |30703 |
+ROW |143621 |1326 |30704 |
+ROW |143622 |1326 |30705 |
+ROW |143623 |1326 |30706 |
+ROW |143624 |1326 |30707 |
+ROW |143625 |1326 |30708 |
+ROW |143626 |1326 |30709 |
+ROW |143627 |1326 |30710 |
+ROW |143628 |1326 |30711 |
+ROW |143629 |1326 |30712 |
+ROW |143630 |1327 |30719 |
+ROW |143631 |1327 |30739 |
+ROW |143632 |1327 |30743 |
+ROW |143633 |1327 |30744 |
+ROW |143634 |1327 |30746 |
+ROW |143635 |1327 |30747 |
+ROW |143636 |1327 |30754 |
+ROW |143637 |1327 |30756 |
+ROW |143638 |1331 |30923 |
+ROW |143639 |1331 |30924 |
+ROW |143640 |1332 |30925 |
+ROW |143641 |1332 |30926 |
+ROW |143642 |1331 |30927 |
+ROW |143643 |1331 |30928 |
+ROW |143644 |1331 |30929 |
+ROW |143645 |1331 |30930 |
+ROW |143646 |1331 |30931 |
+ROW |143647 |1331 |30932 |
+ROW |143648 |1331 |30933 |
+ROW |143649 |1331 |30934 |
+ROW |143650 |1331 |30935 |
+ROW |143651 |1331 |30936 |
+ROW |143652 |1331 |30937 |
+ROW |143653 |1331 |30938 |
+ROW |143654 |1331 |30939 |
+ROW |143655 |1331 |30940 |
+ROW |143656 |1331 |30941 |
+ROW |143657 |1331 |30942 |
+ROW |143658 |1331 |30943 |
+ROW |143659 |1331 |30944 |
+ROW |143660 |1331 |30945 |
+ROW |143661 |1331 |30946 |
+ROW |143662 |1331 |30947 |
+ROW |143663 |1331 |30948 |
+ROW |143664 |1331 |30949 |
+ROW |143665 |1331 |30950 |
+ROW |143666 |1331 |30951 |
+ROW |143667 |1331 |30952 |
+ROW |143668 |1331 |30953 |
+ROW |143669 |1331 |30954 |
+ROW |143670 |1331 |30955 |
+ROW |143671 |1331 |30956 |
+ROW |143672 |1331 |30957 |
+ROW |143673 |1331 |30958 |
+ROW |143674 |1331 |30959 |
+ROW |143675 |1331 |30960 |
+ROW |143676 |1331 |30963 |
+ROW |143677 |1411 |32486 |
+ROW |143678 |1411 |32487 |
+ROW |143679 |1411 |32488 |
+ROW |143680 |1411 |32489 |
+ROW |143681 |1411 |32490 |
+ROW |143682 |1411 |32491 |
+ROW |143683 |1411 |32492 |
+ROW |143684 |1411 |32493 |
+ROW |143685 |1411 |32494 |
+ROW |143686 |1411 |32498 |
+ROW |143687 |1411 |32499 |
+ROW |143688 |1411 |32500 |
+ROW |143689 |1412 |32516 |
+ROW |143690 |1412 |32517 |
+ROW |143691 |1412 |32518 |
+ROW |143692 |1412 |32519 |
+ROW |143693 |1412 |32520 |
+ROW |143694 |1412 |32521 |
+ROW |143695 |1412 |32522 |
+ROW |143696 |1412 |32523 |
+ROW |143697 |1412 |32524 |
+ROW |143698 |1412 |32528 |
+ROW |143699 |1412 |32529 |
+ROW |143700 |1412 |32530 |
+ROW |143701 |1341 |31499 |
+ROW |143702 |1341 |31500 |
+ROW |143703 |1341 |31501 |
+ROW |143704 |1341 |31502 |
+ROW |143705 |1341 |31503 |
+ROW |143706 |1341 |31504 |
+ROW |143707 |1341 |31505 |
+ROW |143708 |1341 |31506 |
+ROW |143709 |1341 |31507 |
+ROW |143710 |1341 |31508 |
+ROW |143711 |1341 |31509 |
+ROW |143712 |1341 |31510 |
+ROW |143713 |1341 |31511 |
+ROW |143714 |1341 |31512 |
+ROW |143715 |1341 |31513 |
+ROW |143716 |1341 |31514 |
+ROW |143717 |1341 |31515 |
+ROW |143718 |1341 |31516 |
+ROW |143719 |1341 |31517 |
+ROW |143720 |1341 |31518 |
+ROW |143721 |1341 |31519 |
+ROW |143722 |1341 |31520 |
+ROW |143723 |1341 |31521 |
+ROW |143724 |1341 |31522 |
+ROW |143725 |1341 |31523 |
+ROW |143726 |1341 |31524 |
+ROW |143727 |1341 |31525 |
+ROW |143728 |1341 |31526 |
+ROW |143729 |1341 |31527 |
+ROW |143730 |1341 |31528 |
+ROW |143731 |1341 |31529 |
+ROW |143732 |1341 |31530 |
+ROW |143733 |1341 |31531 |
+ROW |143734 |1341 |31532 |
+ROW |143735 |1341 |31533 |
+ROW |143736 |1341 |31534 |
+ROW |143737 |1341 |31535 |
+ROW |143738 |1341 |31536 |
+ROW |143739 |1341 |31537 |
+ROW |143740 |1341 |31538 |
+ROW |143741 |1341 |31539 |
+ROW |143742 |1341 |31540 |
+ROW |143743 |1341 |31541 |
+ROW |143744 |1341 |31542 |
+ROW |143745 |1341 |31543 |
+ROW |143746 |1341 |31544 |
+ROW |143747 |1341 |31545 |
+ROW |143748 |1341 |31546 |
+ROW |143749 |1341 |31547 |
+ROW |143750 |1341 |31548 |
+ROW |143751 |1341 |31549 |
+ROW |143752 |1341 |31550 |
+ROW |143753 |1341 |31551 |
+ROW |143754 |1341 |31552 |
+ROW |143755 |1341 |31553 |
+ROW |143756 |1358 |32012 |
+ROW |143757 |1358 |32013 |
+ROW |143758 |1357 |32014 |
+ROW |143759 |1357 |32015 |
+ROW |143760 |1357 |32016 |
+ROW |143761 |1358 |32017 |
+ROW |143762 |1357 |32018 |
+ROW |143763 |1358 |32019 |
+ROW |143764 |1357 |32020 |
+ROW |143765 |1357 |32021 |
+ROW |143766 |1357 |32022 |
+ROW |143767 |1357 |32023 |
+ROW |143768 |1357 |32024 |
+ROW |143769 |1357 |32025 |
+ROW |143770 |1357 |32026 |
+ROW |143771 |1357 |32027 |
+ROW |143772 |1357 |32028 |
+ROW |143773 |1357 |32029 |
+ROW |143774 |1357 |32030 |
+ROW |143775 |1357 |32031 |
+ROW |143776 |1357 |32032 |
+ROW |143777 |1357 |32033 |
+ROW |143778 |1357 |32034 |
+ROW |143779 |1357 |32035 |
+ROW |143780 |1357 |32036 |
+ROW |143781 |1357 |32037 |
+ROW |143782 |1357 |32038 |
+ROW |143783 |1357 |32039 |
+ROW |143784 |1357 |32040 |
+ROW |143785 |1357 |32041 |
+ROW |143786 |1357 |32042 |
+ROW |143787 |1357 |32043 |
+ROW |143788 |1357 |32044 |
+ROW |143789 |1357 |32045 |
+ROW |143790 |1358 |32048 |
+ROW |143791 |1358 |32049 |
+ROW |143792 |1298 |30187 |
+ROW |143793 |1298 |30188 |
+ROW |143794 |1299 |30189 |
+ROW |143795 |1299 |30190 |
+ROW |143796 |1298 |30191 |
+ROW |143797 |1298 |30192 |
+ROW |143798 |1299 |35785 |
+ROW |143799 |1301 |30230 |
+ROW |143800 |1301 |30231 |
+ROW |143801 |1300 |30789 |
+ROW |143802 |1300 |30790 |
+ROW |143803 |1300 |30234 |
+ROW |143804 |1300 |30235 |
+ROW |143805 |1301 |35844 |
+ROW |143806 |1333 |30968 |
+ROW |143807 |1333 |30969 |
+ROW |143808 |1333 |30970 |
+ROW |143809 |1333 |30971 |
+ROW |143810 |1333 |30972 |
+ROW |143811 |1333 |30973 |
+ROW |143812 |1333 |30974 |
+ROW |143813 |1333 |30975 |
+ROW |143814 |1333 |30976 |
+ROW |143815 |1333 |30977 |
+ROW |143816 |1333 |30978 |
+ROW |143817 |1333 |30979 |
+ROW |143818 |1333 |30980 |
+ROW |143819 |1333 |30981 |
+ROW |143820 |1333 |30982 |
+ROW |143821 |1333 |30983 |
+ROW |143822 |1333 |30984 |
+ROW |143823 |1333 |30985 |
+ROW |143824 |1333 |30986 |
+ROW |143825 |1333 |30987 |
+ROW |143826 |1333 |30988 |
+ROW |143827 |1333 |30989 |
+ROW |143828 |1333 |30990 |
+ROW |143829 |1333 |30991 |
+ROW |143830 |1333 |30992 |
+ROW |143831 |1333 |30993 |
+ROW |143832 |1333 |30994 |
+ROW |143833 |1333 |30995 |
+ROW |143834 |1333 |30996 |
+ROW |143835 |1333 |30997 |
+ROW |143836 |1333 |30998 |
+ROW |143837 |1333 |30999 |
+ROW |143838 |1333 |31000 |
+ROW |143839 |1333 |31001 |
+ROW |143840 |1333 |31002 |
+ROW |143841 |1333 |31003 |
+ROW |143842 |1333 |31004 |
+ROW |143843 |1334 |31010 |
+ROW |143844 |1334 |31011 |
+ROW |143845 |1334 |31012 |
+ROW |143846 |1334 |31013 |
+ROW |143847 |1334 |31014 |
+ROW |143848 |1334 |31015 |
+ROW |143849 |1334 |31016 |
+ROW |143850 |1334 |31017 |
+ROW |143851 |1334 |31018 |
+ROW |143852 |1334 |31019 |
+ROW |143853 |1334 |31020 |
+ROW |143854 |1334 |31021 |
+ROW |143855 |1334 |31022 |
+ROW |143856 |1334 |31023 |
+ROW |143857 |1334 |31024 |
+ROW |143858 |1334 |31025 |
+ROW |143859 |1334 |31026 |
+ROW |143860 |1334 |31027 |
+ROW |143861 |1334 |31028 |
+ROW |143862 |1334 |31029 |
+ROW |143863 |1334 |31030 |
+ROW |143864 |1334 |31031 |
+ROW |143865 |1334 |31032 |
+ROW |143866 |1334 |31033 |
+ROW |143867 |1334 |31034 |
+ROW |143868 |1334 |31035 |
+ROW |143869 |1334 |31036 |
+ROW |143870 |1334 |31037 |
+ROW |143871 |1334 |31038 |
+ROW |143872 |1334 |31039 |
+ROW |143873 |1334 |31040 |
+ROW |143874 |1334 |31041 |
+ROW |143875 |1334 |31042 |
+ROW |143876 |1334 |31043 |
+ROW |143877 |1334 |31044 |
+ROW |143878 |1334 |31045 |
+ROW |143879 |1334 |31046 |
+ROW |143880 |1359 |32071 |
+ROW |143881 |1359 |32072 |
+ROW |143882 |1359 |32073 |
+ROW |143883 |1359 |32074 |
+ROW |143884 |1359 |32075 |
+ROW |143885 |1359 |32076 |
+ROW |143886 |1359 |32077 |
+ROW |143887 |1359 |32078 |
+ROW |143888 |1359 |32079 |
+ROW |143889 |1359 |32080 |
+ROW |143890 |1359 |32081 |
+ROW |143891 |1359 |32082 |
+ROW |143892 |1359 |32083 |
+ROW |143893 |1359 |32084 |
+ROW |143894 |1359 |32085 |
+ROW |143895 |1359 |32086 |
+ROW |143896 |1359 |32087 |
+ROW |143897 |1359 |32088 |
+ROW |143898 |1359 |32089 |
+ROW |143899 |1359 |32090 |
+ROW |143900 |1359 |32091 |
+ROW |143901 |1359 |32092 |
+ROW |143902 |1359 |32093 |
+ROW |143903 |1359 |32094 |
+ROW |143904 |1359 |32095 |
+ROW |143905 |1359 |32096 |
+ROW |143906 |1359 |32097 |
+ROW |143907 |1359 |32098 |
+ROW |143908 |1359 |32099 |
+ROW |143909 |1359 |32100 |
+ROW |143910 |1359 |32101 |
+ROW |143911 |1359 |32102 |
+ROW |143912 |1359 |32103 |
+ROW |143913 |1359 |32104 |
+ROW |143914 |1359 |32105 |
+ROW |143915 |1359 |32106 |
+ROW |143916 |1359 |32107 |
+ROW |143917 |1359 |32108 |
+ROW |143918 |1359 |32109 |
+ROW |143919 |1359 |32110 |
+ROW |143920 |1359 |32111 |
+ROW |143921 |1359 |32112 |
+ROW |143922 |1359 |32113 |
+ROW |143923 |1359 |32114 |
+ROW |143924 |1359 |32115 |
+ROW |143925 |1359 |32116 |
+ROW |143926 |1359 |32117 |
+ROW |143927 |1359 |32118 |
+ROW |143928 |1359 |32119 |
+ROW |143929 |1359 |32120 |
+ROW |143930 |1359 |32121 |
+ROW |143931 |1359 |32122 |
+ROW |143932 |1359 |32123 |
+ROW |143933 |1359 |32124 |
+ROW |143934 |1359 |32125 |
+ROW |143935 |1359 |32126 |
+ROW |143936 |1359 |32127 |
+ROW |143937 |1359 |32128 |
+ROW |143938 |1359 |32129 |
+ROW |143939 |1359 |32130 |
+ROW |143940 |1359 |32131 |
+ROW |143941 |1359 |32132 |
+ROW |143942 |1320 |30611 |
+ROW |143943 |1321 |30612 |
+ROW |143944 |1320 |30613 |
+ROW |143945 |1320 |30614 |
+ROW |143946 |1320 |30615 |
+ROW |143947 |1320 |30616 |
+ROW |143948 |1320 |30617 |
+ROW |143949 |1320 |30618 |
+ROW |143950 |1320 |30619 |
+ROW |143951 |1320 |30620 |
+ROW |143952 |1320 |30621 |
+ROW |143953 |1320 |30622 |
+ROW |143954 |1320 |30623 |
+ROW |143955 |1320 |30624 |
+ROW |143956 |1320 |30625 |
+ROW |143957 |1320 |30626 |
+ROW |143958 |1320 |30627 |
+ROW |143959 |1320 |30628 |
+ROW |143960 |1320 |30629 |
+ROW |143961 |1320 |30630 |
+ROW |143962 |1320 |30631 |
+ROW |143963 |1320 |30632 |
+ROW |143964 |1320 |30633 |
+ROW |143965 |1320 |30634 |
+ROW |143966 |1320 |30635 |
+ROW |143967 |1320 |30636 |
+ROW |143968 |1121 |28804 |
+ROW |143969 |1120 |28805 |
+ROW |143970 |1120 |28806 |
+ROW |143971 |1120 |28807 |
+ROW |143972 |1120 |28808 |
+ROW |143973 |1120 |28809 |
+ROW |143974 |1120 |28810 |
+ROW |143975 |1120 |28811 |
+ROW |143976 |1120 |28812 |
+ROW |143977 |1120 |28813 |
+ROW |143978 |1120 |28814 |
+ROW |143979 |1120 |28815 |
+ROW |143980 |1120 |28816 |
+ROW |143981 |1120 |28817 |
+ROW |143982 |1120 |28818 |
+ROW |143983 |1120 |28819 |
+ROW |143984 |1120 |28820 |
+ROW |143985 |1123 |28821 |
+ROW |143986 |1122 |28822 |
+ROW |143987 |1122 |28823 |
+ROW |143988 |1122 |28824 |
+ROW |143989 |1122 |28825 |
+ROW |143990 |1122 |28826 |
+ROW |143991 |1122 |28827 |
+ROW |143992 |1122 |28828 |
+ROW |143993 |1122 |28829 |
+ROW |143994 |1122 |28830 |
+ROW |143995 |1122 |28831 |
+ROW |143996 |1122 |28832 |
+ROW |143997 |1122 |28833 |
+ROW |143998 |1613 |34835 |
+ROW |143999 |1613 |34836 |
+ROW |144000 |1613 |34837 |
+ROW |144001 |1613 |34838 |
+ROW |144002 |1613 |34839 |
+ROW |144003 |1613 |34840 |
+ROW |144004 |1613 |34841 |
+ROW |144005 |1613 |34842 |
+ROW |144006 |1613 |34843 |
+ROW |144007 |1613 |34844 |
+ROW |144008 |1612 |34845 |
+ROW |144009 |1612 |34846 |
+ROW |144010 |1612 |34847 |
+ROW |144011 |1612 |34848 |
+ROW |144012 |1612 |34849 |
+ROW |144013 |1612 |34850 |
+ROW |144014 |1612 |34851 |
+ROW |144015 |1612 |34852 |
+ROW |144016 |1612 |34853 |
+ROW |144017 |1612 |34854 |
+ROW |144018 |1612 |34855 |
+ROW |144019 |1612 |34856 |
+ROW |144020 |1612 |34857 |
+ROW |144021 |1612 |34858 |
+ROW |144022 |1351 |31868 |
+ROW |144023 |1351 |31869 |
+ROW |144024 |1350 |31870 |
+ROW |144025 |1350 |31871 |
+ROW |144026 |1350 |31872 |
+ROW |144027 |1350 |31873 |
+ROW |144028 |1350 |31874 |
+ROW |144029 |1350 |31875 |
+ROW |144030 |1350 |31876 |
+ROW |144031 |1350 |31877 |
+ROW |144032 |1350 |31878 |
+ROW |144033 |1350 |31879 |
+ROW |144034 |1350 |31880 |
+ROW |144035 |1350 |31881 |
+ROW |144036 |1350 |31882 |
+ROW |144037 |1350 |31883 |
+ROW |144038 |1350 |31884 |
+ROW |144039 |1350 |31885 |
+ROW |144040 |1350 |31886 |
+ROW |144041 |1350 |31887 |
+ROW |144042 |1350 |31888 |
+ROW |144043 |1350 |31889 |
+ROW |144044 |1350 |31890 |
+ROW |144045 |1352 |31891 |
+ROW |144046 |1353 |31892 |
+ROW |144047 |1353 |31893 |
+ROW |144048 |1352 |31894 |
+ROW |144049 |1352 |31895 |
+ROW |144050 |1352 |31896 |
+ROW |144051 |1352 |31897 |
+ROW |144052 |1352 |31898 |
+ROW |144053 |1352 |31899 |
+ROW |144054 |1352 |31900 |
+ROW |144055 |1352 |31901 |
+ROW |144056 |1352 |31902 |
+ROW |144057 |1352 |31903 |
+ROW |144058 |1352 |31904 |
+ROW |144059 |1352 |31905 |
+ROW |144060 |1352 |31906 |
+ROW |144061 |1352 |31907 |
+ROW |144062 |1352 |31908 |
+ROW |144063 |1352 |31909 |
+ROW |144064 |1426 |32829 |
+ROW |144065 |1426 |32830 |
+ROW |144066 |1427 |32831 |
+ROW |144067 |1427 |32832 |
+ROW |144068 |1428 |32833 |
+ROW |144069 |1428 |32834 |
+ROW |144070 |1428 |32835 |
+ROW |144071 |1427 |32836 |
+ROW |144072 |1427 |32837 |
+ROW |144073 |1427 |32838 |
+ROW |144074 |1427 |32839 |
+ROW |144075 |1425 |32840 |
+ROW |144076 |1425 |32841 |
+ROW |144077 |1425 |32842 |
+ROW |144078 |1425 |32843 |
+ROW |144079 |1425 |32844 |
+ROW |144080 |1425 |32845 |
+ROW |144081 |1425 |32846 |
+ROW |144082 |1425 |32847 |
+ROW |144083 |1425 |32848 |
+ROW |144084 |1425 |32849 |
+ROW |144085 |1425 |32850 |
+ROW |144086 |1425 |32851 |
+ROW |144087 |1425 |32852 |
+ROW |144088 |1425 |32853 |
+ROW |144089 |1425 |32854 |
+ROW |144090 |1425 |32855 |
+ROW |144091 |1425 |32856 |
+ROW |144092 |1425 |32857 |
+ROW |144093 |1425 |32858 |
+ROW |144094 |1425 |32859 |
+ROW |144095 |1425 |32860 |
+ROW |144096 |1425 |32861 |
+ROW |144097 |1425 |32862 |
+ROW |144098 |1425 |32863 |
+ROW |144099 |1427 |32864 |
+ROW |144100 |1427 |32865 |
+ROW |144101 |1427 |32866 |
+ROW |144102 |1427 |32867 |
+ROW |144103 |1427 |32868 |
+ROW |144104 |1427 |32869 |
+ROW |144105 |1427 |32870 |
+ROW |144106 |1427 |32871 |
+ROW |144107 |1427 |32872 |
+ROW |144108 |1427 |32873 |
+ROW |144109 |1427 |32874 |
+ROW |144110 |1427 |32875 |
+ROW |144111 |1427 |32876 |
+ROW |144112 |1427 |32877 |
+ROW |144113 |1427 |32878 |
+ROW |144114 |1425 |32884 |
+ROW |144115 |1427 |32885 |
+ROW |144116 |1427 |32886 |
+ROW |144117 |1427 |32887 |
+ROW |144118 |1427 |32888 |
+ROW |144119 |1427 |32889 |
+ROW |144120 |1427 |32890 |
+ROW |144121 |1430 |32925 |
+ROW |144122 |1430 |32926 |
+ROW |144123 |1431 |32927 |
+ROW |144124 |1432 |32928 |
+ROW |144125 |1432 |32929 |
+ROW |144126 |1432 |32930 |
+ROW |144127 |1431 |32931 |
+ROW |144128 |1429 |32932 |
+ROW |144129 |1429 |32933 |
+ROW |144130 |1429 |32934 |
+ROW |144131 |1429 |32935 |
+ROW |144132 |1429 |32936 |
+ROW |144133 |1429 |32937 |
+ROW |144134 |1429 |32938 |
+ROW |144135 |1429 |32939 |
+ROW |144136 |1429 |32940 |
+ROW |144137 |1429 |32941 |
+ROW |144138 |1429 |32942 |
+ROW |144139 |1429 |32943 |
+ROW |144140 |1429 |32944 |
+ROW |144141 |1429 |32945 |
+ROW |144142 |1429 |32946 |
+ROW |144143 |1429 |32947 |
+ROW |144144 |1429 |32948 |
+ROW |144145 |1429 |32949 |
+ROW |144146 |1429 |32950 |
+ROW |144147 |1429 |32951 |
+ROW |144148 |1429 |32952 |
+ROW |144149 |1429 |32953 |
+ROW |144150 |1429 |32954 |
+ROW |144151 |1429 |32955 |
+ROW |144152 |1431 |32956 |
+ROW |144153 |1431 |32957 |
+ROW |144154 |1431 |32958 |
+ROW |144155 |1431 |32959 |
+ROW |144156 |1431 |32960 |
+ROW |144157 |1431 |32961 |
+ROW |144158 |1431 |32962 |
+ROW |144159 |1431 |32963 |
+ROW |144160 |1431 |32964 |
+ROW |144161 |1431 |32965 |
+ROW |144162 |1431 |32966 |
+ROW |144163 |1431 |32967 |
+ROW |144164 |1431 |32968 |
+ROW |144165 |1431 |32969 |
+ROW |144166 |1431 |32970 |
+ROW |144167 |1429 |32976 |
+ROW |144168 |1431 |32977 |
+ROW |144169 |1431 |32978 |
+ROW |144170 |1431 |32979 |
+ROW |144171 |1431 |32980 |
+ROW |144172 |1431 |32981 |
+ROW |144173 |1431 |32982 |
+ROW |144174 |1354 |31910 |
+ROW |144175 |1354 |31911 |
+ROW |144176 |1354 |31912 |
+ROW |144177 |1354 |31913 |
+ROW |144178 |1354 |31914 |
+ROW |144179 |1354 |31915 |
+ROW |144180 |1354 |31916 |
+ROW |144181 |1354 |31917 |
+ROW |144182 |1354 |31918 |
+ROW |144183 |1354 |31919 |
+ROW |144184 |1354 |31920 |
+ROW |144185 |1354 |31921 |
+ROW |144186 |1354 |31922 |
+ROW |144187 |1354 |31923 |
+ROW |144188 |1354 |31924 |
+ROW |144189 |1354 |31925 |
+ROW |144190 |1354 |31926 |
+ROW |144191 |1354 |31927 |
+ROW |144192 |1354 |31928 |
+ROW |144193 |1354 |31929 |
+ROW |144194 |1354 |31930 |
+ROW |144195 |1354 |31931 |
+ROW |144196 |1354 |31932 |
+ROW |144197 |1354 |31933 |
+ROW |144198 |1354 |31934 |
+ROW |144199 |1354 |31935 |
+ROW |144200 |1354 |31936 |
+ROW |144201 |1354 |31937 |
+ROW |144202 |1354 |31938 |
+ROW |144203 |1354 |31939 |
+ROW |144204 |1354 |31940 |
+ROW |144205 |1354 |31941 |
+ROW |144206 |1354 |31942 |
+ROW |144207 |1354 |31943 |
+ROW |144208 |1354 |31944 |
+ROW |144209 |1354 |31945 |
+ROW |144210 |1354 |31946 |
+ROW |144211 |1354 |31947 |
+ROW |144212 |1354 |31948 |
+ROW |144213 |1354 |31949 |
+ROW |144214 |1354 |31950 |
+ROW |144215 |1354 |31951 |
+ROW |144216 |1354 |31952 |
+ROW |144217 |1354 |31953 |
+ROW |144218 |1354 |31954 |
+ROW |144219 |1354 |31955 |
+ROW |144220 |1354 |31956 |
+ROW |144221 |1354 |31957 |
+ROW |144222 |1354 |31958 |
+ROW |144223 |1354 |31959 |
+ROW |144224 |1354 |31960 |
+ROW |144225 |1354 |31961 |
+ROW |144226 |1354 |31962 |
+ROW |144227 |1354 |31963 |
+ROW |144228 |1737 |35560 |
+ROW |144229 |1737 |35561 |
+ROW |144230 |1109 |28511 |
+ROW |144231 |1342 |31554 |
+ROW |144232 |1342 |31555 |
+ROW |144233 |1342 |31556 |
+ROW |144234 |1343 |31557 |
+ROW |144235 |1343 |31558 |
+ROW |144236 |1343 |31559 |
+ROW |144237 |1343 |31560 |
+ROW |144238 |1343 |31561 |
+ROW |144239 |1343 |31562 |
+ROW |144240 |1343 |31563 |
+ROW |144241 |1343 |31564 |
+ROW |144242 |1343 |31565 |
+ROW |144243 |1343 |31566 |
+ROW |144244 |1343 |31567 |
+ROW |144245 |1343 |31568 |
+ROW |144246 |1343 |31569 |
+ROW |144247 |1343 |31570 |
+ROW |144248 |1343 |31571 |
+ROW |144249 |1343 |31572 |
+ROW |144250 |1343 |31573 |
+ROW |144251 |1343 |31574 |
+ROW |144252 |1343 |31575 |
+ROW |144253 |1344 |31576 |
+ROW |144254 |1344 |31577 |
+ROW |144255 |1344 |31578 |
+ROW |144256 |1344 |31579 |
+ROW |144257 |1344 |31580 |
+ROW |144258 |1344 |31581 |
+ROW |144259 |1344 |31582 |
+ROW |144260 |1344 |31583 |
+ROW |144261 |1344 |31584 |
+ROW |144262 |1344 |31585 |
+ROW |144263 |1344 |31586 |
+ROW |144264 |1344 |31587 |
+ROW |144265 |1344 |31588 |
+ROW |144266 |1344 |31589 |
+ROW |144267 |1344 |31590 |
+ROW |144268 |1344 |31591 |
+ROW |144269 |1344 |31592 |
+ROW |144270 |1344 |31593 |
+ROW |144271 |1344 |31594 |
+ROW |144272 |1344 |31595 |
+ROW |144273 |1344 |31596 |
+ROW |144274 |1342 |31605 |
+ROW |144275 |1342 |31606 |
+ROW |144276 |1342 |31607 |
+ROW |144277 |1342 |31608 |
+ROW |144278 |1342 |31609 |
+ROW |144279 |1343 |31610 |
+ROW |144280 |1343 |31611 |
+ROW |144281 |1343 |31612 |
+ROW |144282 |1343 |31613 |
+ROW |144283 |1343 |31614 |
+ROW |144284 |1343 |31615 |
+ROW |144285 |1343 |31616 |
+ROW |144286 |1343 |31617 |
+ROW |144287 |1343 |31618 |
+ROW |144288 |1343 |31619 |
+ROW |144289 |1343 |31620 |
+ROW |144290 |1343 |31621 |
+ROW |144291 |1344 |31622 |
+ROW |144292 |1344 |31623 |
+ROW |144293 |1344 |31624 |
+ROW |144294 |1344 |31625 |
+ROW |144295 |1512 |34094 |
+ROW |144296 |1512 |34095 |
+ROW |144297 |1512 |34096 |
+ROW |144298 |1512 |34097 |
+ROW |144299 |1512 |34098 |
+ROW |144300 |1513 |34106 |
+ROW |144301 |1513 |34107 |
+ROW |144302 |1513 |34108 |
+ROW |144303 |1513 |34109 |
+ROW |144304 |1513 |34110 |
+ROW |144305 |1513 |34111 |
+ROW |144306 |1513 |34112 |
+ROW |144307 |1513 |34113 |
+ROW |144308 |1513 |34114 |
+ROW |144309 |1513 |34115 |
+ROW |144310 |1513 |34116 |
+ROW |144311 |1513 |34117 |
+ROW |144312 |1513 |34118 |
+ROW |144313 |1513 |34119 |
+ROW |144314 |1513 |34120 |
+ROW |144315 |1513 |34121 |
+ROW |144316 |1513 |34122 |
+ROW |144317 |179 |10061 |
+ROW |144318 |179 |10062 |
+ROW |144319 |179 |10063 |
+ROW |144320 |179 |10064 |
+ROW |144321 |179 |10065 |
+ROW |144322 |179 |10066 |
+ROW |144323 |179 |22183 |
+ROW |144324 |179 |22185 |
+ROW |144325 |179 |22187 |
+ROW |144326 |179 |22189 |
+ROW |144327 |179 |22191 |
+ROW |144328 |179 |22196 |
+ROW |144329 |179 |22199 |
+ROW |144330 |179 |22219 |
+ROW |144331 |179 |22396 |
+ROW |144332 |179 |22399 |
+ROW |144333 |179 |22400 |
+ROW |144334 |179 |22401 |
+ROW |144335 |179 |22402 |
+ROW |144336 |179 |22404 |
+ROW |144337 |179 |22406 |
+ROW |144338 |179 |22408 |
+ROW |144339 |179 |22412 |
+ROW |144340 |179 |22414 |
+ROW |144341 |179 |22416 |
+ROW |144342 |179 |22418 |
+ROW |144343 |179 |22420 |
+ROW |144344 |179 |22422 |
+ROW |144345 |179 |22424 |
+ROW |144346 |179 |22426 |
+ROW |144347 |179 |22430 |
+ROW |144348 |179 |22689 |
+ROW |144349 |179 |23171 |
+ROW |144350 |179 |23251 |
+ROW |144351 |179 |23634 |
+ROW |144352 |179 |23661 |
+ROW |144353 |179 |23663 |
+ROW |144354 |179 |25366 |
+ROW |144355 |179 |25370 |
+ROW |144356 |179 |25665 |
+ROW |144357 |179 |25666 |
+ROW |144358 |179 |28248 |
+ROW |144359 |179 |28533 |
+ROW |144360 |179 |28535 |
+ROW |144361 |179 |28537 |
+ROW |144362 |179 |29822 |
+ROW |144363 |179 |34189 |
+ROW |144364 |345 |10073 |
+ROW |144365 |345 |10074 |
+ROW |144366 |345 |10075 |
+ROW |144367 |345 |10076 |
+ROW |144368 |345 |10077 |
+ROW |144369 |345 |10078 |
+ROW |144370 |345 |23252 |
+ROW |144371 |345 |23253 |
+ROW |144372 |345 |23255 |
+ROW |144373 |345 |23256 |
+ROW |144374 |345 |23257 |
+ROW |144375 |345 |23258 |
+ROW |144376 |345 |23259 |
+ROW |144377 |345 |23260 |
+ROW |144378 |345 |23261 |
+ROW |144379 |345 |23262 |
+ROW |144380 |345 |23264 |
+ROW |144381 |345 |23265 |
+ROW |144382 |345 |23266 |
+ROW |144383 |345 |23267 |
+ROW |144384 |345 |23268 |
+ROW |144385 |345 |23269 |
+ROW |144386 |345 |23270 |
+ROW |144387 |345 |23271 |
+ROW |144388 |345 |23272 |
+ROW |144389 |345 |23273 |
+ROW |144390 |345 |23274 |
+ROW |144391 |345 |23275 |
+ROW |144392 |345 |23276 |
+ROW |144393 |345 |23277 |
+ROW |144394 |345 |23328 |
+ROW |144395 |345 |23620 |
+ROW |144396 |345 |23625 |
+ROW |144397 |345 |23628 |
+ROW |144398 |345 |23635 |
+ROW |144399 |345 |23662 |
+ROW |144400 |345 |23664 |
+ROW |144401 |345 |25367 |
+ROW |144402 |345 |25371 |
+ROW |144403 |345 |25667 |
+ROW |144404 |345 |25668 |
+ROW |144405 |345 |28249 |
+ROW |144406 |345 |28534 |
+ROW |144407 |345 |28536 |
+ROW |144408 |345 |28538 |
+ROW |144409 |345 |29823 |
+ROW |144410 |345 |34196 |
+ROW |144411 |1514 |28539 |
+ROW |144412 |1110 |28540 |
+ROW |144413 |1110 |28541 |
+ROW |144414 |1110 |28542 |
+ROW |144415 |1110 |28543 |
+ROW |144416 |1110 |28544 |
+ROW |144417 |1110 |28545 |
+ROW |144418 |1110 |28546 |
+ROW |144419 |1110 |28547 |
+ROW |144420 |1110 |28548 |
+ROW |144421 |1110 |28549 |
+ROW |144422 |1110 |28550 |
+ROW |144423 |1110 |28551 |
+ROW |144424 |1110 |28552 |
+ROW |144425 |1110 |28553 |
+ROW |144426 |1110 |28554 |
+ROW |144427 |1110 |28555 |
+ROW |144428 |1110 |28556 |
+ROW |144429 |1110 |28557 |
+ROW |144430 |1110 |28558 |
+ROW |144431 |1110 |28559 |
+ROW |144432 |1110 |28560 |
+ROW |144433 |1110 |28561 |
+ROW |144434 |1110 |28562 |
+ROW |144435 |1110 |28563 |
+ROW |144436 |1110 |28564 |
+ROW |144437 |1110 |28565 |
+ROW |144438 |1110 |28566 |
+ROW |144439 |1110 |28567 |
+ROW |144440 |1110 |28568 |
+ROW |144441 |1110 |28569 |
+ROW |144442 |1110 |28570 |
+ROW |144443 |1110 |28571 |
+ROW |144444 |1110 |28572 |
+ROW |144445 |1110 |28573 |
+ROW |144446 |1110 |28574 |
+ROW |144447 |1110 |28575 |
+ROW |144448 |1110 |28576 |
+ROW |144449 |1110 |28577 |
+ROW |144450 |1110 |28578 |
+ROW |144451 |1110 |28579 |
+ROW |144452 |1110 |28580 |
+ROW |144453 |1110 |28581 |
+ROW |144454 |1110 |28582 |
+ROW |144455 |1110 |28583 |
+ROW |144456 |1110 |28584 |
+ROW |144457 |1110 |29821 |
+ROW |144458 |1110 |31053 |
+ROW |144459 |1360 |32158 |
+ROW |144460 |1360 |32159 |
+ROW |144461 |1361 |32160 |
+ROW |144462 |1361 |32161 |
+ROW |144463 |1361 |32162 |
+ROW |144464 |1361 |32163 |
+ROW |144465 |1361 |32164 |
+ROW |144466 |1361 |32165 |
+ROW |144467 |1361 |32166 |
+ROW |144468 |1361 |32167 |
+ROW |144469 |1361 |32168 |
+ROW |144470 |1361 |32169 |
+ROW |144471 |1361 |32170 |
+ROW |144472 |1361 |32171 |
+ROW |144473 |1361 |32172 |
+ROW |144474 |1361 |32173 |
+ROW |144475 |1361 |32174 |
+ROW |144476 |1361 |32175 |
+ROW |144477 |1361 |32176 |
+ROW |144478 |1361 |32177 |
+ROW |144479 |1361 |32178 |
+ROW |144480 |1361 |32179 |
+ROW |144481 |1361 |32180 |
+ROW |144482 |1361 |32181 |
+ROW |144483 |1361 |32182 |
+ROW |144484 |1361 |32183 |
+ROW |144485 |1361 |32184 |
+ROW |144486 |1361 |32185 |
+ROW |144487 |1361 |32186 |
+ROW |144488 |1361 |32187 |
+ROW |144489 |1361 |32188 |
+ROW |144490 |1361 |32189 |
+ROW |144491 |1361 |32190 |
+ROW |144492 |1361 |32191 |
+ROW |144493 |1361 |32192 |
+ROW |144494 |1361 |32201 |
+ROW |144495 |1361 |32202 |
+ROW |144496 |1361 |32203 |
+ROW |144497 |1361 |32204 |
+ROW |144498 |1361 |32205 |
+ROW |144499 |1361 |32206 |
+ROW |144500 |446 |23644 |
+ROW |144501 |447 |23645 |
+ROW |144502 |448 |23646 |
+ROW |144503 |449 |23647 |
+ROW |144504 |450 |23648 |
+ROW |144505 |451 |23649 |
+ROW |144506 |452 |23650 |
+ROW |144507 |453 |23651 |
+ROW |144508 |1111 |28585 |
+ROW |144509 |1111 |28586 |
+ROW |144510 |1111 |28587 |
+ROW |144511 |1111 |28588 |
+ROW |144512 |1111 |28589 |
+ROW |144513 |1111 |28590 |
+ROW |144514 |1111 |28591 |
+ROW |144515 |1111 |28592 |
+ROW |144516 |1111 |28593 |
+ROW |144517 |1111 |28594 |
+ROW |144518 |1111 |28595 |
+ROW |144519 |1111 |28596 |
+ROW |144520 |1111 |28597 |
+ROW |144521 |1111 |28598 |
+ROW |144522 |1111 |28599 |
+ROW |144523 |1111 |28600 |
+ROW |144524 |1111 |28601 |
+ROW |144525 |1111 |28602 |
+ROW |144526 |1111 |28603 |
+ROW |144527 |1111 |28604 |
+ROW |144528 |1111 |28605 |
+ROW |144529 |1111 |28606 |
+ROW |144530 |1111 |28607 |
+ROW |144531 |1111 |28608 |
+ROW |144532 |1111 |28609 |
+ROW |144533 |1111 |28610 |
+ROW |144534 |1111 |28611 |
+ROW |144535 |1111 |28612 |
+ROW |144536 |1111 |28613 |
+ROW |144537 |1111 |28614 |
+ROW |144538 |1111 |28615 |
+ROW |144539 |1111 |28616 |
+ROW |144540 |1111 |31052 |
+ROW |144541 |454 |23652 |
+ROW |144542 |455 |23653 |
+ROW |144543 |456 |23654 |
+ROW |144544 |356 |10067 |
+ROW |144545 |356 |10068 |
+ROW |144546 |356 |10069 |
+ROW |144547 |356 |10070 |
+ROW |144548 |356 |10071 |
+ROW |144549 |356 |10072 |
+ROW |144550 |356 |23340 |
+ROW |144551 |356 |23341 |
+ROW |144552 |356 |23342 |
+ROW |144553 |356 |23343 |
+ROW |144554 |356 |23344 |
+ROW |144555 |356 |23345 |
+ROW |144556 |356 |23346 |
+ROW |144557 |356 |23347 |
+ROW |144558 |356 |23348 |
+ROW |144559 |356 |23349 |
+ROW |144560 |356 |23350 |
+ROW |144561 |356 |23351 |
+ROW |144562 |356 |23352 |
+ROW |144563 |356 |23353 |
+ROW |144564 |356 |23354 |
+ROW |144565 |356 |23355 |
+ROW |144566 |356 |23356 |
+ROW |144567 |356 |23357 |
+ROW |144568 |356 |23358 |
+ROW |144569 |356 |23359 |
+ROW |144570 |356 |23360 |
+ROW |144571 |356 |25368 |
+ROW |144572 |356 |25369 |
+ROW |144573 |356 |28250 |
+ROW |144574 |356 |28251 |
+ROW |144575 |356 |28617 |
+ROW |144576 |356 |28618 |
+ROW |144577 |356 |28619 |
+ROW |144578 |280 |22917 |
+ROW |144579 |280 |22918 |
+ROW |144580 |273 |22920 |
+ROW |144581 |279 |22920 |
+ROW |144582 |273 |22921 |
+ROW |144583 |279 |22921 |
+ROW |144584 |273 |22922 |
+ROW |144585 |279 |22922 |
+ROW |144586 |273 |22923 |
+ROW |144587 |279 |22923 |
+ROW |144588 |273 |22924 |
+ROW |144589 |279 |22924 |
+ROW |144590 |275 |22933 |
+ROW |144591 |278 |22933 |
+ROW |144592 |275 |22934 |
+ROW |144593 |278 |22934 |
+ROW |144594 |275 |22938 |
+ROW |144595 |278 |22938 |
+ROW |144596 |275 |22939 |
+ROW |144597 |278 |22939 |
+ROW |144598 |278 |22940 |
+ROW |144599 |281 |22940 |
+ROW |144600 |281 |22941 |
+ROW |144601 |276 |22942 |
+ROW |144602 |276 |22943 |
+ROW |144603 |273 |23108 |
+ROW |144604 |331 |23108 |
+ROW |144605 |279 |23108 |
+ROW |144606 |273 |23109 |
+ROW |144607 |331 |23109 |
+ROW |144608 |279 |23109 |
+ROW |144609 |273 |23110 |
+ROW |144610 |279 |23110 |
+ROW |144611 |273 |23111 |
+ROW |144612 |331 |23111 |
+ROW |144613 |279 |23111 |
+ROW |144614 |273 |23112 |
+ROW |144615 |331 |23112 |
+ROW |144616 |279 |23112 |
+ROW |144617 |273 |23113 |
+ROW |144618 |279 |23113 |
+ROW |144619 |273 |23114 |
+ROW |144620 |279 |23114 |
+ROW |144621 |273 |23115 |
+ROW |144622 |279 |23115 |
+ROW |144623 |274 |23116 |
+ROW |144624 |279 |23116 |
+ROW |144625 |274 |23117 |
+ROW |144626 |279 |23117 |
+ROW |144627 |273 |23118 |
+ROW |144628 |331 |23118 |
+ROW |144629 |273 |23119 |
+ROW |144630 |279 |23119 |
+ROW |144631 |273 |23120 |
+ROW |144632 |279 |23120 |
+ROW |144633 |273 |23121 |
+ROW |144634 |279 |23121 |
+ROW |144635 |276 |23122 |
+ROW |144636 |279 |23122 |
+ROW |144637 |273 |23123 |
+ROW |144638 |279 |23123 |
+ROW |144639 |276 |23124 |
+ROW |144640 |276 |23125 |
+ROW |144641 |276 |23126 |
+ROW |144642 |276 |23127 |
+ROW |144643 |276 |23128 |
+ROW |144644 |276 |23129 |
+ROW |144645 |276 |23130 |
+ROW |144646 |276 |23131 |
+ROW |144647 |277 |22945 |
+ROW |144648 |277 |22946 |
+ROW |144649 |274 |22948 |
+ROW |144650 |274 |22949 |
+ROW |144651 |274 |22950 |
+ROW |144652 |274 |22951 |
+ROW |144653 |274 |22952 |
+ROW |144654 |268 |22875 |
+ROW |144655 |268 |22876 |
+ROW |144656 |270 |22877 |
+ROW |144657 |270 |22878 |
+ROW |144658 |265 |22879 |
+ROW |144659 |268 |22879 |
+ROW |144660 |263 |22880 |
+ROW |144661 |269 |22880 |
+ROW |144662 |263 |22881 |
+ROW |144663 |269 |22881 |
+ROW |144664 |263 |22882 |
+ROW |144665 |269 |22882 |
+ROW |144666 |263 |22883 |
+ROW |144667 |269 |22883 |
+ROW |144668 |263 |22884 |
+ROW |144669 |269 |22884 |
+ROW |144670 |263 |22885 |
+ROW |144671 |269 |22885 |
+ROW |144672 |263 |22886 |
+ROW |144673 |269 |22886 |
+ROW |144674 |263 |22888 |
+ROW |144675 |269 |22888 |
+ROW |144676 |263 |22891 |
+ROW |144677 |269 |22891 |
+ROW |144678 |263 |22892 |
+ROW |144679 |269 |22892 |
+ROW |144680 |265 |22893 |
+ROW |144681 |268 |22893 |
+ROW |144682 |265 |22894 |
+ROW |144683 |268 |22894 |
+ROW |144684 |266 |22895 |
+ROW |144685 |266 |22896 |
+ROW |144686 |266 |22897 |
+ROW |144687 |265 |22898 |
+ROW |144688 |268 |22898 |
+ROW |144689 |265 |22899 |
+ROW |144690 |268 |22899 |
+ROW |144691 |268 |22900 |
+ROW |144692 |271 |22900 |
+ROW |144693 |271 |22901 |
+ROW |144694 |266 |22902 |
+ROW |144695 |266 |22903 |
+ROW |144696 |264 |22908 |
+ROW |144697 |264 |22909 |
+ROW |144698 |264 |22910 |
+ROW |144699 |264 |22911 |
+ROW |144700 |264 |22912 |
+ROW |144701 |267 |23073 |
+ROW |144702 |267 |23074 |
+ROW |144703 |283 |22961 |
+ROW |144704 |289 |22961 |
+ROW |144705 |283 |22962 |
+ROW |144706 |289 |22962 |
+ROW |144707 |283 |22963 |
+ROW |144708 |289 |22963 |
+ROW |144709 |283 |22965 |
+ROW |144710 |289 |22965 |
+ROW |144711 |283 |22968 |
+ROW |144712 |289 |22968 |
+ROW |144713 |283 |22971 |
+ROW |144714 |289 |22971 |
+ROW |144715 |283 |22972 |
+ROW |144716 |289 |22972 |
+ROW |144717 |285 |22973 |
+ROW |144718 |288 |22973 |
+ROW |144719 |285 |22974 |
+ROW |144720 |288 |22974 |
+ROW |144721 |285 |22978 |
+ROW |144722 |288 |22978 |
+ROW |144723 |288 |22980 |
+ROW |144724 |291 |22980 |
+ROW |144725 |291 |22981 |
+ROW |144726 |286 |22982 |
+ROW |144727 |286 |22983 |
+ROW |144728 |287 |22985 |
+ROW |144729 |287 |22986 |
+ROW |144730 |284 |22988 |
+ROW |144731 |284 |22989 |
+ROW |144732 |284 |22990 |
+ROW |144733 |284 |22991 |
+ROW |144734 |284 |22992 |
+ROW |144735 |308 |23035 |
+ROW |144736 |308 |23036 |
+ROW |144737 |305 |23039 |
+ROW |144738 |308 |23039 |
+ROW |144739 |303 |23041 |
+ROW |144740 |309 |23041 |
+ROW |144741 |303 |23042 |
+ROW |144742 |309 |23042 |
+ROW |144743 |303 |23043 |
+ROW |144744 |309 |23043 |
+ROW |144745 |305 |23053 |
+ROW |144746 |308 |23053 |
+ROW |144747 |305 |23054 |
+ROW |144748 |308 |23054 |
+ROW |144749 |305 |23058 |
+ROW |144750 |308 |23058 |
+ROW |144751 |305 |23059 |
+ROW |144752 |308 |23059 |
+ROW |144753 |308 |23060 |
+ROW |144754 |311 |23060 |
+ROW |144755 |311 |23061 |
+ROW |144756 |306 |23062 |
+ROW |144757 |306 |23063 |
+ROW |144758 |307 |23077 |
+ROW |144759 |307 |23078 |
+ROW |144760 |304 |23068 |
+ROW |144761 |304 |23069 |
+ROW |144762 |304 |23070 |
+ROW |144763 |304 |23071 |
+ROW |144764 |304 |23072 |
+ROW |144765 |258 |22835 |
+ROW |144766 |258 |22836 |
+ROW |144767 |260 |22837 |
+ROW |144768 |260 |22838 |
+ROW |144769 |255 |22839 |
+ROW |144770 |258 |22839 |
+ROW |144771 |253 |22840 |
+ROW |144772 |259 |22840 |
+ROW |144773 |253 |22841 |
+ROW |144774 |259 |22841 |
+ROW |144775 |253 |22842 |
+ROW |144776 |259 |22842 |
+ROW |144777 |253 |22843 |
+ROW |144778 |259 |22843 |
+ROW |144779 |253 |22844 |
+ROW |144780 |259 |22844 |
+ROW |144781 |253 |22845 |
+ROW |144782 |259 |22845 |
+ROW |144783 |253 |22846 |
+ROW |144784 |259 |22846 |
+ROW |144785 |253 |22848 |
+ROW |144786 |259 |22848 |
+ROW |144787 |253 |22851 |
+ROW |144788 |259 |22851 |
+ROW |144789 |253 |22852 |
+ROW |144790 |259 |22852 |
+ROW |144791 |255 |22853 |
+ROW |144792 |258 |22853 |
+ROW |144793 |255 |22854 |
+ROW |144794 |258 |22854 |
+ROW |144795 |256 |22855 |
+ROW |144796 |256 |22856 |
+ROW |144797 |256 |22857 |
+ROW |144798 |255 |22858 |
+ROW |144799 |258 |22858 |
+ROW |144800 |255 |22859 |
+ROW |144801 |258 |22859 |
+ROW |144802 |258 |22860 |
+ROW |144803 |261 |22860 |
+ROW |144804 |261 |22861 |
+ROW |144805 |256 |22862 |
+ROW |144806 |256 |22863 |
+ROW |144807 |254 |22868 |
+ROW |144808 |254 |22869 |
+ROW |144809 |254 |22870 |
+ROW |144810 |254 |22871 |
+ROW |144811 |254 |22872 |
+ROW |144812 |257 |23075 |
+ROW |144813 |257 |23076 |
+ROW |144814 |298 |22996 |
+ROW |144815 |300 |22997 |
+ROW |144816 |300 |22998 |
+ROW |144817 |295 |22999 |
+ROW |144818 |298 |22999 |
+ROW |144819 |293 |23000 |
+ROW |144820 |299 |23000 |
+ROW |144821 |293 |23001 |
+ROW |144822 |299 |23001 |
+ROW |144823 |293 |23002 |
+ROW |144824 |299 |23002 |
+ROW |144825 |293 |23003 |
+ROW |144826 |299 |23003 |
+ROW |144827 |293 |23004 |
+ROW |144828 |299 |23004 |
+ROW |144829 |293 |23005 |
+ROW |144830 |299 |23005 |
+ROW |144831 |293 |23007 |
+ROW |144832 |299 |23007 |
+ROW |144833 |293 |23011 |
+ROW |144834 |299 |23011 |
+ROW |144835 |293 |23012 |
+ROW |144836 |299 |23012 |
+ROW |144837 |295 |23013 |
+ROW |144838 |298 |23013 |
+ROW |144839 |295 |23014 |
+ROW |144840 |298 |23014 |
+ROW |144841 |296 |23015 |
+ROW |144842 |296 |23016 |
+ROW |144843 |296 |23017 |
+ROW |144844 |295 |23018 |
+ROW |144845 |298 |23018 |
+ROW |144846 |295 |23019 |
+ROW |144847 |298 |23019 |
+ROW |144848 |298 |23020 |
+ROW |144849 |301 |23020 |
+ROW |144850 |301 |23021 |
+ROW |144851 |296 |23022 |
+ROW |144852 |296 |23023 |
+ROW |144853 |297 |23025 |
+ROW |144854 |297 |23026 |
+ROW |144855 |294 |23028 |
+ROW |144856 |294 |23029 |
+ROW |144857 |294 |23030 |
+ROW |144858 |294 |23031 |
+ROW |144859 |294 |23032 |
+ROW |144860 |743 |26925 |
+ROW |144861 |743 |26926 |
+ROW |144862 |741 |26927 |
+ROW |144863 |742 |26928 |
+ROW |144864 |743 |26929 |
+ROW |144865 |743 |26930 |
+ROW |144866 |743 |26931 |
+ROW |144867 |743 |26932 |
+ROW |144868 |745 |26933 |
+ROW |144869 |746 |26934 |
+ROW |144870 |744 |26935 |
+ROW |144871 |744 |26936 |
+ROW |144872 |746 |26937 |
+ROW |144873 |746 |26938 |
+ROW |144874 |746 |26939 |
+ROW |144875 |746 |26940 |
+ROW |144876 |746 |26941 |
+ROW |144877 |746 |26942 |
+ROW |144878 |745 |26943 |
+ROW |144879 |1362 |32207 |
+ROW |144880 |1362 |32208 |
+ROW |144881 |1362 |32209 |
+ROW |144882 |1362 |32210 |
+ROW |144883 |1362 |32211 |
+ROW |144884 |1362 |32212 |
+ROW |144885 |1362 |32213 |
+ROW |144886 |1362 |32214 |
+ROW |144887 |1362 |32215 |
+ROW |144888 |1362 |32216 |
+ROW |144889 |1362 |32217 |
+ROW |144890 |1362 |32218 |
+ROW |144891 |1362 |32219 |
+ROW |144892 |1362 |32220 |
+ROW |144893 |1362 |32221 |
+ROW |144894 |1362 |32222 |
+ROW |144895 |1362 |32223 |
+ROW |144896 |1362 |32224 |
+ROW |144897 |1362 |32225 |
+ROW |144898 |1362 |32226 |
+ROW |144899 |1362 |32227 |
+ROW |144900 |1362 |32228 |
+ROW |144901 |1362 |32229 |
+ROW |144902 |1362 |32230 |
+ROW |144903 |1362 |32231 |
+ROW |144904 |1362 |32232 |
+ROW |144905 |1362 |32233 |
+ROW |144906 |1362 |32234 |
+ROW |144907 |1362 |32235 |
+ROW |144908 |1362 |32236 |
+ROW |144909 |1362 |32237 |
+ROW |144910 |1362 |32238 |
+ROW |144911 |1362 |32239 |
+ROW |144912 |1362 |32240 |
+ROW |144913 |1362 |32241 |
+ROW |144914 |1362 |32242 |
+ROW |144915 |1362 |32243 |
+ROW |144916 |1362 |32244 |
+ROW |144917 |1362 |32245 |
+ROW |144918 |1362 |32246 |
+ROW |144919 |1362 |32247 |
+ROW |144920 |1362 |32248 |
+ROW |144921 |1362 |32249 |
+ROW |144922 |1362 |32250 |
+ROW |144923 |1362 |32251 |
+ROW |144924 |1362 |32252 |
+ROW |144925 |1362 |32253 |
+ROW |144926 |1362 |32254 |
+ROW |144927 |1362 |32255 |
+ROW |144928 |1362 |32256 |
+ROW |144929 |1362 |32257 |
+ROW |144930 |1362 |32258 |
+ROW |144931 |1362 |32259 |
+ROW |144932 |1362 |32260 |
+ROW |144933 |1362 |32261 |
+ROW |144934 |1362 |32262 |
+ROW |144935 |1362 |32263 |
+ROW |144936 |1362 |32264 |
+ROW |144937 |1362 |32265 |
+ROW |144938 |1362 |32266 |
+ROW |144939 |1362 |32267 |
+ROW |144940 |1362 |32268 |
+ROW |144941 |1362 |32269 |
+ROW |144942 |1362 |32270 |
+ROW |144943 |1362 |32271 |
+ROW |144944 |1362 |32272 |
+ROW |144945 |1362 |32273 |
+ROW |144946 |1328 |30821 |
+ROW |144947 |1328 |30822 |
+ROW |144948 |1330 |30823 |
+ROW |144949 |1330 |30824 |
+ROW |144950 |1330 |30825 |
+ROW |144951 |1330 |30826 |
+ROW |144952 |1328 |30827 |
+ROW |144953 |1330 |30828 |
+ROW |144954 |1330 |30829 |
+ROW |144955 |1330 |30830 |
+ROW |144956 |1328 |31054 |
+ROW |144957 |1328 |30831 |
+ROW |144958 |1328 |30832 |
+ROW |144959 |1328 |30833 |
+ROW |144960 |1328 |30834 |
+ROW |144961 |1328 |30835 |
+ROW |144962 |1329 |30836 |
+ROW |144963 |1328 |30837 |
+ROW |144964 |1328 |30838 |
+ROW |144965 |1328 |30839 |
+ROW |144966 |1329 |30840 |
+ROW |144967 |1328 |30841 |
+ROW |144968 |1329 |30842 |
+ROW |144969 |1329 |30843 |
+ROW |144970 |1329 |30844 |
+ROW |144971 |1329 |30845 |
+ROW |144972 |1328 |30846 |
+ROW |144973 |1328 |30847 |
+ROW |144974 |1328 |30848 |
+ROW |144975 |1328 |30849 |
+ROW |144976 |1328 |30850 |
+ROW |144977 |1328 |30851 |
+ROW |144978 |1328 |30852 |
+ROW |144979 |1328 |30853 |
+ROW |144980 |1328 |30854 |
+ROW |144981 |1328 |30855 |
+ROW |144982 |1328 |30856 |
+ROW |144983 |1328 |30857 |
+ROW |144984 |1328 |30858 |
+ROW |144985 |1328 |30859 |
+ROW |144986 |1328 |30860 |
+ROW |144987 |1328 |30861 |
+ROW |144988 |1328 |30862 |
+ROW |144989 |1328 |30863 |
+ROW |144990 |1328 |30864 |
+ROW |144991 |1328 |30865 |
+ROW |144992 |1328 |30866 |
+ROW |144993 |1328 |30867 |
+ROW |144994 |1328 |30868 |
+ROW |144995 |1328 |30869 |
+ROW |144996 |1328 |30870 |
+ROW |144997 |1328 |30871 |
+ROW |144998 |1328 |30872 |
+ROW |144999 |1329 |30873 |
+ROW |145000 |1434 |33017 |
+ROW |145001 |1434 |33018 |
+ROW |145002 |1433 |33019 |
+ROW |145003 |1434 |33020 |
+ROW |145004 |1434 |33021 |
+ROW |145005 |1433 |33022 |
+ROW |145006 |1433 |33023 |
+ROW |145007 |1433 |33024 |
+ROW |145008 |1433 |33025 |
+ROW |145009 |1433 |33026 |
+ROW |145010 |1433 |33027 |
+ROW |145011 |1433 |33028 |
+ROW |145012 |1433 |33029 |
+ROW |145013 |1433 |33030 |
+ROW |145014 |1433 |33031 |
+ROW |145015 |1433 |33032 |
+ROW |145016 |1433 |33033 |
+ROW |145017 |1433 |33034 |
+ROW |145018 |1433 |33035 |
+ROW |145019 |1433 |33036 |
+ROW |145020 |1433 |33037 |
+ROW |145021 |1433 |33038 |
+ROW |145022 |1433 |33039 |
+ROW |145023 |1433 |33040 |
+ROW |145024 |1433 |33041 |
+ROW |145025 |1433 |33042 |
+ROW |145026 |1433 |33043 |
+ROW |145027 |1433 |33044 |
+ROW |145028 |1433 |33045 |
+ROW |145029 |1433 |33046 |
+ROW |145030 |1433 |33047 |
+ROW |145031 |1433 |33048 |
+ROW |145032 |1433 |33049 |
+ROW |145033 |1433 |33050 |
+ROW |145034 |1433 |33051 |
+ROW |145035 |1433 |33052 |
+ROW |145036 |1433 |33053 |
+ROW |145037 |1433 |33054 |
+ROW |145038 |1433 |33055 |
+ROW |145039 |1433 |33056 |
+ROW |145040 |1433 |33057 |
+ROW |145041 |1433 |33058 |
+ROW |145042 |1433 |33059 |
+ROW |145043 |1433 |33060 |
+ROW |145044 |1434 |33065 |
+ROW |145045 |1434 |33066 |
+ROW |145046 |1433 |33122 |
+ROW |145047 |1433 |33123 |
+ROW |145048 |1433 |33124 |
+ROW |145049 |1433 |33125 |
+ROW |145050 |1433 |33126 |
+ROW |145051 |1433 |33127 |
+ROW |145052 |1433 |33128 |
+ROW |145053 |1433 |33129 |
+ROW |145054 |1433 |33130 |
+ROW |145055 |1433 |33131 |
+ROW |145056 |1433 |33132 |
+ROW |145057 |1433 |33133 |
+ROW |145058 |1433 |33134 |
+ROW |145059 |1433 |33135 |
+ROW |145060 |1433 |33136 |
+ROW |145061 |1433 |33137 |
+ROW |145062 |1433 |33138 |
+ROW |145063 |1435 |33139 |
+ROW |145064 |1436 |33140 |
+ROW |145065 |1435 |33141 |
+ROW |145066 |1436 |33142 |
+ROW |145067 |1435 |33144 |
+ROW |145068 |1435 |33145 |
+ROW |145069 |1435 |33146 |
+ROW |145070 |1435 |33147 |
+ROW |145071 |1435 |33148 |
+ROW |145072 |1435 |33149 |
+ROW |145073 |1435 |33150 |
+ROW |145074 |1435 |33151 |
+ROW |145075 |1435 |33152 |
+ROW |145076 |1435 |33153 |
+ROW |145077 |1435 |33154 |
+ROW |145078 |1435 |33155 |
+ROW |145079 |1435 |33156 |
+ROW |145080 |1435 |33157 |
+ROW |145081 |1435 |33158 |
+ROW |145082 |1435 |33159 |
+ROW |145083 |1435 |33160 |
+ROW |145084 |1435 |33161 |
+ROW |145085 |1435 |33162 |
+ROW |145086 |1435 |33163 |
+ROW |145087 |1435 |33164 |
+ROW |145088 |1435 |33165 |
+ROW |145089 |1435 |33166 |
+ROW |145090 |1435 |33167 |
+ROW |145091 |1435 |33168 |
+ROW |145092 |1435 |33169 |
+ROW |145093 |1435 |33170 |
+ROW |145094 |1435 |33171 |
+ROW |145095 |1435 |33172 |
+ROW |145096 |1435 |33567 |
+ROW |145097 |1436 |33177 |
+ROW |145098 |1436 |33178 |
+ROW |145099 |1336 |31055 |
+ROW |145100 |1335 |31056 |
+ROW |145101 |1335 |31057 |
+ROW |145102 |1335 |31058 |
+ROW |145103 |1335 |31626 |
+ROW |145104 |1335 |31627 |
+ROW |145105 |1335 |31628 |
+ROW |145106 |1336 |34173 |
+ROW |145107 |1336 |34174 |
+ROW |145108 |1336 |31059 |
+ROW |145109 |1335 |31060 |
+ROW |145110 |1335 |31061 |
+ROW |145111 |1335 |31062 |
+ROW |145112 |1335 |31063 |
+ROW |145113 |1335 |31064 |
+ROW |145114 |1335 |31065 |
+ROW |145115 |1335 |31066 |
+ROW |145116 |1335 |31067 |
+ROW |145117 |1335 |31068 |
+ROW |145118 |1335 |31069 |
+ROW |145119 |1335 |31070 |
+ROW |145120 |1335 |31071 |
+ROW |145121 |1335 |31072 |
+ROW |145122 |1335 |31073 |
+ROW |145123 |1335 |31074 |
+ROW |145124 |1335 |31075 |
+ROW |145125 |1335 |31076 |
+ROW |145126 |1335 |31077 |
+ROW |145127 |1335 |31078 |
+ROW |145128 |1335 |31079 |
+ROW |145129 |1335 |31080 |
+ROW |145130 |1335 |31081 |
+ROW |145131 |1335 |31082 |
+ROW |145132 |1335 |31083 |
+ROW |145133 |1335 |31084 |
+ROW |145134 |1335 |31085 |
+ROW |145135 |1335 |31086 |
+ROW |145136 |1335 |31087 |
+ROW |145137 |1335 |31088 |
+ROW |145138 |1335 |31089 |
+ROW |145139 |1335 |31090 |
+ROW |145140 |1336 |31091 |
+ROW |145141 |1335 |31092 |
+ROW |145142 |1336 |31093 |
+ROW |145143 |1336 |31094 |
+ROW |145144 |1335 |31095 |
+ROW |145145 |1335 |31096 |
+ROW |145146 |1335 |31097 |
+ROW |145147 |1335 |31098 |
+ROW |145148 |1335 |31099 |
+ROW |145149 |1335 |31100 |
+ROW |145150 |1335 |31101 |
+ROW |145151 |1335 |31102 |
+ROW |145152 |1335 |31103 |
+ROW |145153 |1335 |31104 |
+ROW |145154 |1335 |31105 |
+ROW |145155 |1335 |31106 |
+ROW |145156 |1335 |31107 |
+ROW |145157 |1335 |31108 |
+ROW |145158 |1335 |31109 |
+ROW |145159 |1335 |31110 |
+ROW |145160 |1335 |31111 |
+ROW |145161 |1335 |31112 |
+ROW |145162 |1335 |31113 |
+ROW |145163 |1335 |31114 |
+ROW |145164 |1335 |31115 |
+ROW |145165 |1335 |31116 |
+ROW |145166 |1335 |31117 |
+ROW |145167 |1335 |31118 |
+ROW |145168 |1335 |31119 |
+ROW |145169 |1335 |31120 |
+ROW |145170 |1335 |31121 |
+ROW |145171 |1336 |31128 |
+ROW |145172 |1336 |31129 |
+ROW |145173 |1336 |31130 |
+ROW |145174 |1336 |31132 |
+ROW |145175 |1336 |33194 |
+ROW |145176 |1314 |30431 |
+ROW |145177 |1314 |30432 |
+ROW |145178 |1315 |30433 |
+ROW |145179 |1314 |30434 |
+ROW |145180 |1314 |30435 |
+ROW |145181 |1314 |32546 |
+ROW |145182 |1315 |30436 |
+ROW |145183 |1314 |30437 |
+ROW |145184 |1314 |30438 |
+ROW |145185 |1314 |30439 |
+ROW |145186 |1314 |30440 |
+ROW |145187 |1314 |30441 |
+ROW |145188 |1314 |30442 |
+ROW |145189 |1315 |30443 |
+ROW |145190 |1314 |30444 |
+ROW |145191 |1314 |30445 |
+ROW |145192 |1314 |30446 |
+ROW |145193 |1314 |30447 |
+ROW |145194 |1314 |30449 |
+ROW |145195 |1314 |30450 |
+ROW |145196 |1314 |30451 |
+ROW |145197 |1314 |30452 |
+ROW |145198 |1314 |30453 |
+ROW |145199 |1314 |30454 |
+ROW |145200 |1314 |30455 |
+ROW |145201 |1314 |30456 |
+ROW |145202 |1314 |30457 |
+ROW |145203 |1314 |30458 |
+ROW |145204 |1314 |30459 |
+ROW |145205 |1314 |30460 |
+ROW |145206 |1314 |30461 |
+ROW |145207 |1314 |30462 |
+ROW |145208 |1314 |30463 |
+ROW |145209 |1314 |30464 |
+ROW |145210 |1314 |30465 |
+ROW |145211 |1314 |30466 |
+ROW |145212 |1314 |30470 |
+ROW |145213 |1314 |30471 |
+ROW |145214 |1314 |31168 |
+ROW |145215 |1314 |31169 |
+ROW |145216 |1314 |31170 |
+ROW |145217 |1314 |31171 |
+ROW |145218 |1314 |32547 |
+ROW |145219 |1314 |32548 |
+ROW |145220 |1314 |32549 |
+ROW |145221 |1314 |32550 |
+ROW |145222 |1314 |32551 |
+ROW |145223 |1314 |32552 |
+ROW |145224 |1314 |30474 |
+ROW |145225 |1315 |30475 |
+ROW |145226 |1314 |30476 |
+ROW |145227 |1314 |30477 |
+ROW |145228 |1314 |30478 |
+ROW |145229 |1314 |32554 |
+ROW |145230 |1314 |32555 |
+ROW |145231 |1314 |32556 |
+ROW |145232 |1314 |32557 |
+ROW |145233 |1314 |32558 |
+ROW |145234 |1314 |32559 |
+ROW |145235 |1322 |30637 |
+ROW |145236 |1322 |30638 |
+ROW |145237 |1323 |30639 |
+ROW |145238 |1322 |30640 |
+ROW |145239 |1322 |30641 |
+ROW |145240 |1322 |32560 |
+ROW |145241 |1323 |30642 |
+ROW |145242 |1322 |30643 |
+ROW |145243 |1322 |30644 |
+ROW |145244 |1322 |30645 |
+ROW |145245 |1322 |30646 |
+ROW |145246 |1322 |30647 |
+ROW |145247 |1322 |30648 |
+ROW |145248 |1323 |30649 |
+ROW |145249 |1322 |30650 |
+ROW |145250 |1322 |30651 |
+ROW |145251 |1322 |30652 |
+ROW |145252 |1322 |30653 |
+ROW |145253 |1322 |30655 |
+ROW |145254 |1322 |30656 |
+ROW |145255 |1322 |30657 |
+ROW |145256 |1322 |30658 |
+ROW |145257 |1322 |30659 |
+ROW |145258 |1322 |30660 |
+ROW |145259 |1322 |30661 |
+ROW |145260 |1322 |30662 |
+ROW |145261 |1322 |30663 |
+ROW |145262 |1322 |30664 |
+ROW |145263 |1322 |30665 |
+ROW |145264 |1322 |30666 |
+ROW |145265 |1322 |30667 |
+ROW |145266 |1322 |30668 |
+ROW |145267 |1322 |30669 |
+ROW |145268 |1322 |30670 |
+ROW |145269 |1322 |30671 |
+ROW |145270 |1322 |30672 |
+ROW |145271 |1322 |30676 |
+ROW |145272 |1322 |30677 |
+ROW |145273 |1322 |31172 |
+ROW |145274 |1322 |31173 |
+ROW |145275 |1322 |31174 |
+ROW |145276 |1322 |31175 |
+ROW |145277 |1322 |32561 |
+ROW |145278 |1322 |32562 |
+ROW |145279 |1322 |32563 |
+ROW |145280 |1322 |32564 |
+ROW |145281 |1322 |32565 |
+ROW |145282 |1322 |32566 |
+ROW |145283 |1322 |30680 |
+ROW |145284 |1323 |30681 |
+ROW |145285 |1322 |30682 |
+ROW |145286 |1322 |30683 |
+ROW |145287 |1322 |30684 |
+ROW |145288 |1322 |32568 |
+ROW |145289 |1322 |32569 |
+ROW |145290 |1322 |32570 |
+ROW |145291 |1322 |32571 |
+ROW |145292 |1322 |32572 |
+ROW |145293 |1322 |32573 |
+ROW |145294 |1317 |30479 |
+ROW |145295 |1316 |30480 |
+ROW |145296 |1316 |30481 |
+ROW |145297 |1316 |30482 |
+ROW |145298 |1316 |30483 |
+ROW |145299 |1316 |32574 |
+ROW |145300 |1316 |30484 |
+ROW |145301 |1317 |30485 |
+ROW |145302 |1316 |30486 |
+ROW |145303 |1317 |30487 |
+ROW |145304 |1316 |30488 |
+ROW |145305 |1316 |30489 |
+ROW |145306 |1316 |30490 |
+ROW |145307 |1316 |30491 |
+ROW |145308 |1316 |30492 |
+ROW |145309 |1316 |30493 |
+ROW |145310 |1316 |30494 |
+ROW |145311 |1316 |30495 |
+ROW |145312 |1316 |30496 |
+ROW |145313 |1316 |30497 |
+ROW |145314 |1316 |30499 |
+ROW |145315 |1316 |30500 |
+ROW |145316 |1316 |30503 |
+ROW |145317 |1316 |30504 |
+ROW |145318 |1316 |30505 |
+ROW |145319 |1316 |30506 |
+ROW |145320 |1316 |30507 |
+ROW |145321 |1316 |30508 |
+ROW |145322 |1316 |30509 |
+ROW |145323 |1316 |30510 |
+ROW |145324 |1316 |30512 |
+ROW |145325 |1316 |30513 |
+ROW |145326 |1316 |30514 |
+ROW |145327 |1316 |30515 |
+ROW |145328 |1316 |30516 |
+ROW |145329 |1316 |30517 |
+ROW |145330 |1316 |30518 |
+ROW |145331 |1316 |30519 |
+ROW |145332 |1316 |31176 |
+ROW |145333 |1316 |31177 |
+ROW |145334 |1316 |31178 |
+ROW |145335 |1316 |31179 |
+ROW |145336 |1316 |32575 |
+ROW |145337 |1316 |32576 |
+ROW |145338 |1316 |32577 |
+ROW |145339 |1316 |32578 |
+ROW |145340 |1316 |32579 |
+ROW |145341 |1316 |32580 |
+ROW |145342 |1316 |30522 |
+ROW |145343 |1317 |30523 |
+ROW |145344 |1316 |30524 |
+ROW |145345 |1316 |30525 |
+ROW |145346 |1316 |30526 |
+ROW |145347 |1316 |32582 |
+ROW |145348 |1316 |32583 |
+ROW |145349 |1316 |32584 |
+ROW |145350 |1316 |32585 |
+ROW |145351 |1316 |32586 |
+ROW |145352 |1316 |32587 |
+ROW |145353 |1345 |31629 |
+ROW |145354 |1345 |31630 |
+ROW |145355 |1346 |31631 |
+ROW |145356 |1345 |31632 |
+ROW |145357 |1346 |31633 |
+ROW |145358 |1346 |31634 |
+ROW |145359 |1346 |31635 |
+ROW |145360 |1346 |31636 |
+ROW |145361 |1346 |31637 |
+ROW |145362 |1346 |31638 |
+ROW |145363 |1346 |31639 |
+ROW |145364 |1345 |31640 |
+ROW |145365 |1345 |31641 |
+ROW |145366 |1346 |31642 |
+ROW |145367 |1346 |31643 |
+ROW |145368 |1346 |31644 |
+ROW |145369 |1346 |31645 |
+ROW |145370 |1345 |31646 |
+ROW |145371 |1345 |31647 |
+ROW |145372 |1345 |31648 |
+ROW |145373 |1345 |31649 |
+ROW |145374 |1345 |31650 |
+ROW |145375 |1345 |31651 |
+ROW |145376 |1345 |31652 |
+ROW |145377 |1345 |31653 |
+ROW |145378 |1345 |31654 |
+ROW |145379 |1345 |31655 |
+ROW |145380 |1345 |31656 |
+ROW |145381 |1345 |31657 |
+ROW |145382 |1345 |31658 |
+ROW |145383 |1345 |31659 |
+ROW |145384 |1345 |31660 |
+ROW |145385 |1345 |31661 |
+ROW |145386 |1345 |31662 |
+ROW |145387 |1345 |31663 |
+ROW |145388 |1345 |31664 |
+ROW |145389 |1345 |31665 |
+ROW |145390 |1345 |31666 |
+ROW |145391 |1345 |31667 |
+ROW |145392 |1345 |31668 |
+ROW |145393 |1345 |31669 |
+ROW |145394 |1345 |31670 |
+ROW |145395 |1345 |31671 |
+ROW |145396 |1345 |31672 |
+ROW |145397 |1345 |31673 |
+ROW |145398 |1345 |31674 |
+ROW |145399 |1345 |31675 |
+ROW |145400 |1345 |31676 |
+ROW |145401 |1345 |31677 |
+ROW |145402 |1345 |31678 |
+ROW |145403 |1345 |31679 |
+ROW |145404 |1345 |31680 |
+ROW |145405 |1345 |31681 |
+ROW |145406 |1345 |31682 |
+ROW |145407 |1345 |31683 |
+ROW |145408 |1345 |31684 |
+ROW |145409 |1345 |31685 |
+ROW |145410 |1345 |31686 |
+ROW |145411 |1345 |31687 |
+ROW |145412 |1345 |31688 |
+ROW |145413 |1345 |31689 |
+ROW |145414 |1345 |31690 |
+ROW |145415 |1345 |31691 |
+ROW |145416 |1345 |31692 |
+ROW |145417 |1345 |31693 |
+ROW |145418 |1345 |31694 |
+ROW |145419 |1345 |31695 |
+ROW |145420 |1345 |31696 |
+ROW |145421 |1345 |31697 |
+ROW |145422 |1345 |31698 |
+ROW |145423 |1345 |31699 |
+ROW |145424 |1345 |31700 |
+ROW |145425 |1345 |31701 |
+ROW |145426 |1345 |31702 |
+ROW |145427 |1345 |31703 |
+ROW |145428 |1345 |31704 |
+ROW |145429 |1345 |31705 |
+ROW |145430 |1115 |28671 |
+ROW |145431 |1115 |28672 |
+ROW |145432 |1114 |28673 |
+ROW |145433 |1114 |28674 |
+ROW |145434 |1115 |28675 |
+ROW |145435 |1114 |28676 |
+ROW |145436 |1114 |28677 |
+ROW |145437 |1114 |28678 |
+ROW |145438 |1114 |28679 |
+ROW |145439 |1114 |28680 |
+ROW |145440 |1114 |28681 |
+ROW |145441 |1115 |28682 |
+ROW |145442 |1115 |28683 |
+ROW |145443 |1114 |28684 |
+ROW |145444 |1114 |28685 |
+ROW |145445 |1115 |28686 |
+ROW |145446 |1115 |28687 |
+ROW |145447 |1114 |28688 |
+ROW |145448 |1114 |28689 |
+ROW |145449 |1114 |28690 |
+ROW |145450 |1114 |28691 |
+ROW |145451 |1114 |28692 |
+ROW |145452 |1114 |28693 |
+ROW |145453 |1114 |28694 |
+ROW |145454 |1114 |28695 |
+ROW |145455 |1114 |28696 |
+ROW |145456 |1114 |28697 |
+ROW |145457 |1114 |28698 |
+ROW |145458 |1114 |28699 |
+ROW |145459 |1114 |28700 |
+ROW |145460 |1114 |28701 |
+ROW |145461 |1114 |28702 |
+ROW |145462 |1114 |28703 |
+ROW |145463 |1114 |28704 |
+ROW |145464 |1114 |28705 |
+ROW |145465 |1114 |28706 |
+ROW |145466 |1114 |28707 |
+ROW |145467 |1114 |28708 |
+ROW |145468 |1114 |28709 |
+ROW |145469 |1114 |28710 |
+ROW |145470 |1115 |28713 |
+ROW |145471 |1115 |28714 |
+ROW |145472 |1338 |31180 |
+ROW |145473 |1337 |31181 |
+ROW |145474 |1338 |31182 |
+ROW |145475 |1338 |31183 |
+ROW |145476 |1338 |31185 |
+ROW |145477 |1338 |31186 |
+ROW |145478 |1337 |31188 |
+ROW |145479 |1337 |31189 |
+ROW |145480 |1337 |31190 |
+ROW |145481 |1337 |31191 |
+ROW |145482 |1337 |31192 |
+ROW |145483 |1337 |31193 |
+ROW |145484 |1337 |31194 |
+ROW |145485 |1338 |31195 |
+ROW |145486 |1338 |31196 |
+ROW |145487 |1337 |32592 |
+ROW |145488 |1338 |32595 |
+ROW |145489 |1337 |34944 |
+ROW |145490 |1337 |34945 |
+ROW |145491 |1337 |31197 |
+ROW |145492 |1337 |31199 |
+ROW |145493 |1337 |31200 |
+ROW |145494 |1337 |31201 |
+ROW |145495 |1337 |31202 |
+ROW |145496 |1337 |31203 |
+ROW |145497 |1337 |31204 |
+ROW |145498 |1337 |31205 |
+ROW |145499 |1337 |31206 |
+ROW |145500 |1337 |31207 |
+ROW |145501 |1337 |31208 |
+ROW |145502 |1337 |31209 |
+ROW |145503 |1337 |31210 |
+ROW |145504 |1337 |31211 |
+ROW |145505 |1337 |31212 |
+ROW |145506 |1337 |31213 |
+ROW |145507 |1337 |31215 |
+ROW |145508 |1337 |31216 |
+ROW |145509 |1337 |31217 |
+ROW |145510 |1337 |31218 |
+ROW |145511 |1337 |31219 |
+ROW |145512 |1337 |31220 |
+ROW |145513 |1337 |31221 |
+ROW |145514 |1337 |31222 |
+ROW |145515 |1337 |31223 |
+ROW |145516 |1337 |31224 |
+ROW |145517 |1337 |31225 |
+ROW |145518 |1337 |31226 |
+ROW |145519 |1337 |31227 |
+ROW |145520 |1337 |31228 |
+ROW |145521 |1337 |31229 |
+ROW |145522 |1337 |31230 |
+ROW |145523 |1337 |31231 |
+ROW |145524 |1337 |31232 |
+ROW |145525 |1337 |31233 |
+ROW |145526 |1337 |31234 |
+ROW |145527 |1337 |31235 |
+ROW |145528 |1337 |31236 |
+ROW |145529 |1337 |31237 |
+ROW |145530 |1337 |31238 |
+ROW |145531 |1337 |31239 |
+ROW |145532 |1337 |32596 |
+ROW |145533 |1302 |30273 |
+ROW |145534 |1302 |30274 |
+ROW |145535 |1303 |30275 |
+ROW |145536 |1303 |30276 |
+ROW |145537 |1302 |30277 |
+ROW |145538 |1302 |30278 |
+ROW |145539 |1302 |30279 |
+ROW |145540 |1302 |30280 |
+ROW |145541 |1302 |30281 |
+ROW |145542 |1302 |30282 |
+ROW |145543 |1302 |30283 |
+ROW |145544 |1302 |30284 |
+ROW |145545 |1302 |30285 |
+ROW |145546 |1302 |30286 |
+ROW |145547 |1302 |30287 |
+ROW |145548 |1302 |30288 |
+ROW |145549 |1302 |30289 |
+ROW |145550 |1302 |30290 |
+ROW |145551 |1302 |30291 |
+ROW |145552 |1302 |30292 |
+ROW |145553 |1302 |30293 |
+ROW |145554 |1302 |30294 |
+ROW |145555 |1302 |30295 |
+ROW |145556 |1302 |30296 |
+ROW |145557 |1302 |30297 |
+ROW |145558 |1302 |30298 |
+ROW |145559 |1302 |30299 |
+ROW |145560 |1302 |30300 |
+ROW |145561 |1302 |30301 |
+ROW |145562 |1302 |30302 |
+ROW |145563 |1302 |30303 |
+ROW |145564 |1302 |30304 |
+ROW |145565 |1302 |30305 |
+ROW |145566 |1302 |30306 |
+ROW |145567 |1302 |30307 |
+ROW |145568 |1302 |30308 |
+ROW |145569 |1302 |30309 |
+ROW |145570 |1302 |30310 |
+ROW |145571 |1302 |30311 |
+ROW |145572 |1302 |30312 |
+ROW |145573 |1302 |30313 |
+ROW |145574 |1302 |30314 |
+ROW |145575 |1302 |30315 |
+ROW |145576 |1302 |30316 |
+ROW |145577 |1302 |30317 |
+ROW |145578 |1302 |30318 |
+ROW |145579 |1302 |30319 |
+ROW |145580 |1302 |30320 |
+ROW |145581 |1302 |30321 |
+ROW |145582 |1302 |30322 |
+ROW |145583 |1302 |30323 |
+ROW |145584 |1302 |30324 |
+ROW |145585 |1302 |30325 |
+ROW |145586 |1302 |30326 |
+ROW |145587 |1302 |30327 |
+ROW |145588 |1302 |30328 |
+ROW |145589 |1302 |30329 |
+ROW |145590 |1302 |30330 |
+ROW |145591 |1302 |30331 |
+ROW |145592 |1302 |30332 |
+ROW |145593 |1302 |30333 |
+ROW |145594 |1302 |30334 |
+ROW |145595 |1302 |30335 |
+ROW |145596 |1302 |30336 |
+ROW |145597 |1302 |30344 |
+ROW |145598 |1302 |30345 |
+ROW |145599 |1302 |30346 |
+ROW |145600 |1302 |30347 |
+ROW |145601 |1302 |30351 |
+ROW |145602 |1302 |30352 |
+ROW |145603 |1302 |30353 |
+ROW |145604 |1302 |30354 |
+ROW |145605 |1302 |30355 |
+ROW |145606 |1302 |30356 |
+ROW |145607 |1302 |30357 |
+ROW |145608 |1302 |30358 |
+ROW |145609 |1302 |30359 |
+ROW |145610 |1302 |30360 |
+ROW |145611 |1302 |30361 |
+ROW |145612 |1302 |30362 |
+ROW |145613 |1302 |30363 |
+ROW |145614 |1302 |30364 |
+ROW |145615 |1302 |30365 |
+ROW |145616 |1302 |30366 |
+ROW |145617 |1302 |30367 |
+ROW |145618 |1302 |30368 |
+ROW |145619 |1302 |30369 |
+ROW |145620 |1302 |30370 |
+ROW |145621 |1302 |30371 |
+ROW |145622 |1302 |30372 |
+ROW |145623 |1302 |30373 |
+ROW |145624 |1302 |30374 |
+ROW |145625 |1302 |30375 |
+ROW |145626 |1302 |30376 |
+ROW |145627 |1302 |30377 |
+ROW |145628 |1302 |30378 |
+ROW |145629 |1302 |30379 |
+ROW |145630 |1302 |30380 |
+ROW |145631 |1302 |30381 |
+ROW |145632 |1302 |30382 |
+ROW |145633 |1302 |30383 |
+ROW |145634 |1302 |30384 |
+ROW |145635 |1302 |30385 |
+ROW |145636 |1302 |30386 |
+ROW |145637 |1302 |30387 |
+ROW |145638 |1302 |30388 |
+ROW |145639 |1302 |30389 |
+ROW |145640 |1302 |30390 |
+ROW |145641 |1302 |30391 |
+ROW |145642 |1302 |30392 |
+ROW |145643 |1302 |30393 |
+ROW |145644 |1302 |30394 |
+ROW |145645 |1302 |30395 |
+ROW |145646 |1302 |30397 |
+ROW |145647 |1302 |30398 |
+ROW |145648 |1302 |30399 |
+ROW |145649 |1302 |30400 |
+ROW |145650 |1302 |30401 |
+ROW |145651 |1302 |30402 |
+ROW |145652 |1302 |30403 |
+ROW |145653 |1302 |30404 |
+ROW |145654 |780 |27065 |
+ROW |145655 |780 |27066 |
+ROW |145656 |780 |27067 |
+ROW |145657 |799 |27149 |
+ROW |145658 |799 |27150 |
+ROW |145659 |799 |27151 |
+ROW |145660 |805 |27192 |
+ROW |145661 |805 |27193 |
+ROW |145662 |805 |27194 |
+ROW |145663 |813 |27225 |
+ROW |145664 |813 |27226 |
+ROW |145665 |813 |27227 |
+ROW |145666 |822 |27261 |
+ROW |145667 |822 |27262 |
+ROW |145668 |822 |27263 |
+ROW |145669 |825 |27282 |
+ROW |145670 |825 |27283 |
+ROW |145671 |825 |27284 |
+ROW |145672 |842 |27333 |
+ROW |145673 |842 |27334 |
+ROW |145674 |842 |27335 |
+ROW |145675 |847 |27365 |
+ROW |145676 |847 |27366 |
+ROW |145677 |847 |27367 |
+ROW |145678 |876 |27462 |
+ROW |145679 |876 |27463 |
+ROW |145680 |876 |27464 |
+ROW |145681 |885 |27496 |
+ROW |145682 |885 |27497 |
+ROW |145683 |885 |27498 |
+ROW |145684 |894 |27532 |
+ROW |145685 |894 |27533 |
+ROW |145686 |894 |27534 |
+ROW |145687 |903 |27568 |
+ROW |145688 |903 |27569 |
+ROW |145689 |903 |27570 |
+ROW |145690 |915 |27631 |
+ROW |145691 |915 |27632 |
+ROW |145692 |915 |27633 |
+ROW |145693 |918 |27654 |
+ROW |145694 |918 |27655 |
+ROW |145695 |918 |27656 |
+ROW |145696 |936 |27734 |
+ROW |145697 |936 |27735 |
+ROW |145698 |936 |27736 |
+ROW |145699 |944 |27766 |
+ROW |145700 |944 |27767 |
+ROW |145701 |944 |27768 |
+ROW |145702 |951 |27800 |
+ROW |145703 |951 |27801 |
+ROW |145704 |951 |27802 |
+ROW |145705 |971 |27882 |
+ROW |145706 |971 |27883 |
+ROW |145707 |971 |27884 |
+ROW |145708 |979 |27919 |
+ROW |145709 |979 |27920 |
+ROW |145710 |979 |27921 |
+ROW |145711 |988 |27956 |
+ROW |145712 |988 |27957 |
+ROW |145713 |988 |27958 |
+ROW |145714 |994 |27986 |
+ROW |145715 |994 |27987 |
+ROW |145716 |994 |27988 |
+ROW |145717 |1000 |28015 |
+ROW |145718 |1000 |28016 |
+ROW |145719 |1000 |28017 |
+ROW |145720 |1030 |28130 |
+ROW |145721 |1030 |28131 |
+ROW |145722 |1030 |28132 |
+ROW |145723 |1055 |28233 |
+ROW |145724 |1055 |28234 |
+ROW |145725 |1055 |28235 |
+ROW |145726 |1060 |28282 |
+ROW |145727 |1060 |28283 |
+ROW |145728 |1060 |28284 |
+ROW |145729 |1070 |28330 |
+ROW |145730 |1070 |28331 |
+ROW |145731 |1070 |28332 |
+ROW |145732 |1079 |28377 |
+ROW |145733 |1079 |28378 |
+ROW |145734 |1079 |28379 |
+ROW |145735 |1095 |28454 |
+ROW |145736 |1095 |28455 |
+ROW |145737 |1095 |28456 |
+ROW |145738 |1102 |28482 |
+ROW |145739 |1102 |28483 |
+ROW |145740 |1102 |28484 |
+ROW |145741 |1127 |28957 |
+ROW |145742 |1127 |28958 |
+ROW |145743 |1127 |28959 |
+ROW |145744 |1136 |29050 |
+ROW |145745 |1136 |29051 |
+ROW |145746 |1136 |29052 |
+ROW |145747 |1271 |30046 |
+ROW |145748 |1271 |30047 |
+ROW |145749 |1271 |30048 |
+ROW |145750 |1414 |32601 |
+ROW |145751 |1414 |32602 |
+ROW |145752 |1414 |32603 |
+ROW |145753 |1422 |32765 |
+ROW |145754 |1422 |32766 |
+ROW |145755 |1422 |32767 |
+ROW |145756 |800 |27152 |
+ROW |145757 |799 |27154 |
+ROW |145758 |800 |27157 |
+ROW |145759 |799 |29844 |
+ROW |145760 |800 |29845 |
+ROW |145761 |800 |29846 |
+ROW |145762 |800 |29847 |
+ROW |145763 |800 |29848 |
+ROW |145764 |804 |27195 |
+ROW |145765 |804 |27199 |
+ROW |145766 |805 |27202 |
+ROW |145767 |812 |27228 |
+ROW |145768 |812 |27232 |
+ROW |145769 |813 |27235 |
+ROW |145770 |821 |27264 |
+ROW |145771 |821 |27268 |
+ROW |145772 |822 |27271 |
+ROW |145773 |824 |27285 |
+ROW |145774 |824 |27289 |
+ROW |145775 |825 |27292 |
+ROW |145776 |841 |27336 |
+ROW |145777 |841 |27340 |
+ROW |145778 |842 |27343 |
+ROW |145779 |846 |27368 |
+ROW |145780 |846 |27372 |
+ROW |145781 |847 |27375 |
+ROW |145782 |875 |27465 |
+ROW |145783 |875 |27469 |
+ROW |145784 |876 |27472 |
+ROW |145785 |884 |27499 |
+ROW |145786 |884 |27503 |
+ROW |145787 |885 |27506 |
+ROW |145788 |893 |27535 |
+ROW |145789 |893 |27539 |
+ROW |145790 |894 |27542 |
+ROW |145791 |902 |27571 |
+ROW |145792 |902 |27575 |
+ROW |145793 |903 |27578 |
+ROW |145794 |914 |27634 |
+ROW |145795 |914 |27638 |
+ROW |145796 |915 |27641 |
+ROW |145797 |917 |27657 |
+ROW |145798 |917 |27661 |
+ROW |145799 |918 |27664 |
+ROW |145800 |935 |27737 |
+ROW |145801 |935 |27741 |
+ROW |145802 |936 |27744 |
+ROW |145803 |943 |27769 |
+ROW |145804 |943 |27773 |
+ROW |145805 |944 |27776 |
+ROW |145806 |950 |27803 |
+ROW |145807 |950 |27807 |
+ROW |145808 |951 |27810 |
+ROW |145809 |970 |27885 |
+ROW |145810 |970 |27889 |
+ROW |145811 |971 |27892 |
+ROW |145812 |978 |27922 |
+ROW |145813 |978 |27926 |
+ROW |145814 |979 |27929 |
+ROW |145815 |987 |27959 |
+ROW |145816 |987 |27963 |
+ROW |145817 |988 |27966 |
+ROW |145818 |993 |27989 |
+ROW |145819 |993 |27993 |
+ROW |145820 |994 |27996 |
+ROW |145821 |999 |28018 |
+ROW |145822 |999 |28022 |
+ROW |145823 |1000 |28025 |
+ROW |145824 |1029 |28133 |
+ROW |145825 |1029 |28137 |
+ROW |145826 |1030 |28140 |
+ROW |145827 |1054 |28236 |
+ROW |145828 |1054 |28240 |
+ROW |145829 |1055 |28243 |
+ROW |145830 |1059 |28285 |
+ROW |145831 |1059 |28289 |
+ROW |145832 |1060 |28292 |
+ROW |145833 |1069 |28333 |
+ROW |145834 |1069 |28337 |
+ROW |145835 |1070 |28340 |
+ROW |145836 |1078 |28380 |
+ROW |145837 |1078 |28384 |
+ROW |145838 |1079 |28387 |
+ROW |145839 |1094 |28457 |
+ROW |145840 |1094 |28461 |
+ROW |145841 |1095 |28464 |
+ROW |145842 |1101 |28485 |
+ROW |145843 |1101 |28489 |
+ROW |145844 |1102 |28492 |
+ROW |145845 |1126 |28960 |
+ROW |145846 |1126 |28964 |
+ROW |145847 |1127 |28967 |
+ROW |145848 |1135 |29053 |
+ROW |145849 |1135 |29057 |
+ROW |145850 |1136 |29060 |
+ROW |145851 |1000 |29834 |
+ROW |145852 |999 |29835 |
+ROW |145853 |999 |29836 |
+ROW |145854 |999 |29837 |
+ROW |145855 |999 |29838 |
+ROW |145856 |805 |29849 |
+ROW |145857 |804 |29850 |
+ROW |145858 |804 |29851 |
+ROW |145859 |804 |29852 |
+ROW |145860 |804 |29853 |
+ROW |145861 |813 |29854 |
+ROW |145862 |812 |29855 |
+ROW |145863 |812 |29856 |
+ROW |145864 |812 |29857 |
+ROW |145865 |812 |29858 |
+ROW |145866 |822 |29859 |
+ROW |145867 |821 |29860 |
+ROW |145868 |821 |29861 |
+ROW |145869 |821 |29862 |
+ROW |145870 |821 |29863 |
+ROW |145871 |825 |29864 |
+ROW |145872 |824 |29865 |
+ROW |145873 |824 |29866 |
+ROW |145874 |824 |29867 |
+ROW |145875 |824 |29868 |
+ROW |145876 |842 |29869 |
+ROW |145877 |841 |29870 |
+ROW |145878 |841 |29871 |
+ROW |145879 |841 |29872 |
+ROW |145880 |841 |29873 |
+ROW |145881 |847 |29874 |
+ROW |145882 |846 |29875 |
+ROW |145883 |846 |29876 |
+ROW |145884 |846 |29877 |
+ROW |145885 |846 |29878 |
+ROW |145886 |876 |29879 |
+ROW |145887 |875 |29880 |
+ROW |145888 |875 |29881 |
+ROW |145889 |875 |29882 |
+ROW |145890 |875 |29883 |
+ROW |145891 |885 |29884 |
+ROW |145892 |884 |29885 |
+ROW |145893 |884 |29886 |
+ROW |145894 |884 |29887 |
+ROW |145895 |884 |29888 |
+ROW |145896 |894 |29889 |
+ROW |145897 |893 |29890 |
+ROW |145898 |893 |29891 |
+ROW |145899 |893 |29892 |
+ROW |145900 |893 |29893 |
+ROW |145901 |903 |29894 |
+ROW |145902 |902 |29895 |
+ROW |145903 |902 |29896 |
+ROW |145904 |902 |29897 |
+ROW |145905 |902 |29898 |
+ROW |145906 |915 |29899 |
+ROW |145907 |914 |29900 |
+ROW |145908 |914 |29901 |
+ROW |145909 |914 |29902 |
+ROW |145910 |914 |29903 |
+ROW |145911 |918 |29904 |
+ROW |145912 |917 |29905 |
+ROW |145913 |917 |29906 |
+ROW |145914 |917 |29907 |
+ROW |145915 |917 |29908 |
+ROW |145916 |936 |29909 |
+ROW |145917 |935 |29910 |
+ROW |145918 |935 |29911 |
+ROW |145919 |935 |29912 |
+ROW |145920 |935 |29913 |
+ROW |145921 |944 |29914 |
+ROW |145922 |943 |29915 |
+ROW |145923 |943 |29916 |
+ROW |145924 |943 |29917 |
+ROW |145925 |943 |29918 |
+ROW |145926 |951 |29919 |
+ROW |145927 |950 |29920 |
+ROW |145928 |950 |29921 |
+ROW |145929 |950 |29922 |
+ROW |145930 |950 |29923 |
+ROW |145931 |971 |29924 |
+ROW |145932 |970 |29925 |
+ROW |145933 |970 |29926 |
+ROW |145934 |970 |29927 |
+ROW |145935 |970 |29928 |
+ROW |145936 |979 |29929 |
+ROW |145937 |978 |29930 |
+ROW |145938 |978 |29931 |
+ROW |145939 |978 |29932 |
+ROW |145940 |978 |29933 |
+ROW |145941 |988 |29934 |
+ROW |145942 |987 |29935 |
+ROW |145943 |987 |29936 |
+ROW |145944 |987 |29937 |
+ROW |145945 |987 |29938 |
+ROW |145946 |994 |29939 |
+ROW |145947 |993 |29940 |
+ROW |145948 |993 |29941 |
+ROW |145949 |993 |29942 |
+ROW |145950 |993 |29943 |
+ROW |145951 |1030 |29944 |
+ROW |145952 |1029 |29945 |
+ROW |145953 |1029 |29946 |
+ROW |145954 |1029 |29947 |
+ROW |145955 |1029 |29948 |
+ROW |145956 |1055 |29954 |
+ROW |145957 |1054 |29955 |
+ROW |145958 |1054 |29956 |
+ROW |145959 |1054 |29957 |
+ROW |145960 |1054 |29958 |
+ROW |145961 |1060 |29959 |
+ROW |145962 |1059 |29960 |
+ROW |145963 |1059 |29961 |
+ROW |145964 |1059 |29962 |
+ROW |145965 |1059 |29963 |
+ROW |145966 |1070 |29964 |
+ROW |145967 |1069 |29965 |
+ROW |145968 |1069 |29966 |
+ROW |145969 |1069 |29967 |
+ROW |145970 |1069 |29968 |
+ROW |145971 |1079 |29969 |
+ROW |145972 |1078 |29970 |
+ROW |145973 |1078 |29971 |
+ROW |145974 |1078 |29972 |
+ROW |145975 |1078 |29973 |
+ROW |145976 |1095 |29974 |
+ROW |145977 |1094 |29975 |
+ROW |145978 |1094 |29976 |
+ROW |145979 |1094 |29977 |
+ROW |145980 |1094 |29978 |
+ROW |145981 |1102 |29979 |
+ROW |145982 |1101 |29980 |
+ROW |145983 |1101 |29981 |
+ROW |145984 |1101 |29982 |
+ROW |145985 |1101 |29983 |
+ROW |145986 |1127 |29984 |
+ROW |145987 |1126 |29985 |
+ROW |145988 |1126 |29986 |
+ROW |145989 |1126 |29987 |
+ROW |145990 |1126 |29988 |
+ROW |145991 |1136 |29989 |
+ROW |145992 |1135 |29990 |
+ROW |145993 |1135 |29991 |
+ROW |145994 |1135 |29992 |
+ROW |145995 |1135 |29993 |
+ROW |145996 |1270 |30049 |
+ROW |145997 |1270 |30050 |
+ROW |145998 |1270 |30051 |
+ROW |145999 |1270 |30052 |
+ROW |146000 |1270 |30053 |
+ROW |146001 |1270 |30054 |
+ROW |146002 |1271 |30055 |
+ROW |146003 |1271 |30056 |
+ROW |146004 |1413 |32604 |
+ROW |146005 |1413 |32605 |
+ROW |146006 |1413 |32606 |
+ROW |146007 |1413 |32607 |
+ROW |146008 |1413 |32608 |
+ROW |146009 |1413 |32609 |
+ROW |146010 |1414 |32610 |
+ROW |146011 |1414 |32611 |
+ROW |146012 |1421 |32768 |
+ROW |146013 |1421 |32769 |
+ROW |146014 |1421 |32770 |
+ROW |146015 |1421 |32771 |
+ROW |146016 |1421 |32772 |
+ROW |146017 |1421 |32773 |
+ROW |146018 |1422 |32774 |
+ROW |146019 |1422 |32775 |
+ROW |146020 |1283 |30142 |
+ROW |146021 |1286 |30143 |
+ROW |146022 |1292 |30145 |
+ROW |146023 |1295 |30146 |
+ROW |146024 |1284 |30157 |
+ROW |146025 |1284 |30158 |
+ROW |146026 |1284 |30159 |
+ROW |146027 |1287 |30163 |
+ROW |146028 |1287 |30164 |
+ROW |146029 |1287 |30165 |
+ROW |146030 |1293 |30175 |
+ROW |146031 |1293 |30176 |
+ROW |146032 |1293 |30177 |
+ROW |146033 |1296 |30181 |
+ROW |146034 |1296 |30182 |
+ROW |146035 |1296 |30183 |
+ROW |146036 |1419 |32741 |
+ROW |146037 |1420 |32753 |
+ROW |146038 |1221 |22231 |
+ROW |146039 |1221 |22232 |
+ROW |146040 |1221 |23318 |
+ROW |146041 |1222 |29544 |
+ROW |146042 |1223 |29545 |
+ROW |146043 |1223 |29546 |
+ROW |146044 |1224 |29547 |
+ROW |146045 |1225 |10020 |
+ROW |146046 |1225 |10059 |
+ROW |146047 |1226 |22833 |
+ROW |146048 |1226 |22834 |
+ROW |146049 |1228 |22873 |
+ROW |146050 |1228 |22874 |
+ROW |146051 |1230 |22913 |
+ROW |146052 |1230 |22914 |
+ROW |146053 |1232 |22953 |
+ROW |146054 |1232 |22954 |
+ROW |146055 |1234 |22993 |
+ROW |146056 |1234 |22994 |
+ROW |146057 |1236 |23033 |
+ROW |146058 |1236 |23034 |
+ROW |146059 |1238 |23160 |
+ROW |146060 |1238 |23161 |
+ROW |146061 |1225 |23319 |
+ROW |146062 |1226 |23320 |
+ROW |146063 |1228 |23321 |
+ROW |146064 |1230 |23322 |
+ROW |146065 |1232 |23323 |
+ROW |146066 |1234 |23324 |
+ROW |146067 |1236 |23325 |
+ROW |146068 |1238 |23326 |
+ROW |146069 |1161 |29548 |
+ROW |146070 |1227 |29549 |
+ROW |146071 |1229 |29550 |
+ROW |146072 |1231 |29551 |
+ROW |146073 |1233 |29552 |
+ROW |146074 |1235 |29553 |
+ROW |146075 |1237 |29554 |
+ROW |146076 |1219 |29555 |
+ROW |146077 |1241 |29558 |
+ROW |146078 |1242 |29559 |
+ROW |146079 |1241 |29560 |
+ROW |146080 |1269 |29995 |
+ROW |146081 |1192 |29996 |
+ROW |146082 |1269 |29997 |
+ROW |146083 |1240 |23287 |
+ROW |146084 |1240 |23288 |
+ROW |146085 |1240 |23327 |
+ROW |146086 |1171 |29557 |
+ROW |146087 |810 |27203 |
+ROW |146088 |807 |27207 |
+ROW |146089 |806 |27208 |
+ROW |146090 |810 |30086 |
+ROW |146091 |807 |30087 |
+ROW |146092 |807 |30088 |
+ROW |146093 |807 |30089 |
+ROW |146094 |808 |27212 |
+ROW |146095 |809 |27213 |
+ROW |146096 |810 |27214 |
+ROW |146097 |1279 |30091 |
+ROW |146098 |1279 |30092 |
+ROW |146099 |1364 |28305 |
+ROW |146100 |1068 |28323 |
+ROW |146101 |1068 |28324 |
+ROW |146102 |1062 |28325 |
+ROW |146103 |1062 |28326 |
+ROW |146104 |1064 |28327 |
+ROW |146105 |1064 |28328 |
+ROW |146106 |1066 |28329 |
+ROW |146107 |1363 |32307 |
+ROW |146108 |819 |27236 |
+ROW |146109 |819 |27237 |
+ROW |146110 |813 |27238 |
+ROW |146111 |814 |27240 |
+ROW |146112 |815 |30093 |
+ROW |146113 |816 |27246 |
+ROW |146114 |816 |27247 |
+ROW |146115 |817 |27248 |
+ROW |146116 |818 |27249 |
+ROW |146117 |818 |27250 |
+ROW |146118 |826 |27294 |
+ROW |146119 |831 |27295 |
+ROW |146120 |831 |27296 |
+ROW |146121 |835 |27297 |
+ROW |146122 |827 |30094 |
+ROW |146123 |836 |27299 |
+ROW |146124 |838 |27301 |
+ROW |146125 |837 |30095 |
+ROW |146126 |839 |30096 |
+ROW |146127 |829 |27312 |
+ROW |146128 |830 |27313 |
+ROW |146129 |828 |27314 |
+ROW |146130 |828 |27315 |
+ROW |146131 |833 |27316 |
+ROW |146132 |834 |27317 |
+ROW |146133 |832 |27318 |
+ROW |146134 |835 |27319 |
+ROW |146135 |835 |27320 |
+ROW |146136 |1755 |35903 |
+ROW |146137 |1755 |35904 |
+ROW |146138 |1755 |35905 |
+ROW |146139 |1755 |35906 |
+ROW |146140 |1757 |35907 |
+ROW |146141 |1757 |35908 |
+ROW |146142 |1754 |35914 |
+ROW |146143 |1756 |35915 |
+ROW |146144 |1756 |35916 |
+ROW |146145 |1756 |35917 |
+ROW |146146 |1444 |33197 |
+ROW |146147 |1444 |33198 |
+ROW |146148 |1444 |33199 |
+ROW |146149 |1439 |33200 |
+ROW |146150 |1439 |33201 |
+ROW |146151 |1439 |33202 |
+ROW |146152 |1440 |33203 |
+ROW |146153 |1440 |33204 |
+ROW |146154 |1439 |33205 |
+ROW |146155 |1439 |33206 |
+ROW |146156 |1439 |33207 |
+ROW |146157 |1440 |33208 |
+ROW |146158 |1444 |33209 |
+ROW |146159 |1444 |33210 |
+ROW |146160 |1437 |33219 |
+ROW |146161 |1440 |33220 |
+ROW |146162 |1438 |33221 |
+ROW |146163 |1441 |33222 |
+ROW |146164 |1441 |33223 |
+ROW |146165 |1441 |33224 |
+ROW |146166 |1443 |33235 |
+ROW |146167 |1445 |33236 |
+ROW |146168 |1445 |33237 |
+ROW |146169 |1453 |33238 |
+ROW |146170 |1453 |33239 |
+ROW |146171 |1453 |33240 |
+ROW |146172 |1448 |33241 |
+ROW |146173 |1448 |33242 |
+ROW |146174 |1448 |33243 |
+ROW |146175 |1449 |33244 |
+ROW |146176 |1449 |33245 |
+ROW |146177 |1448 |33246 |
+ROW |146178 |1448 |33247 |
+ROW |146179 |1448 |33248 |
+ROW |146180 |1449 |33249 |
+ROW |146181 |1453 |33250 |
+ROW |146182 |1453 |33251 |
+ROW |146183 |1446 |33260 |
+ROW |146184 |1449 |33261 |
+ROW |146185 |1447 |33262 |
+ROW |146186 |1450 |33263 |
+ROW |146187 |1450 |33264 |
+ROW |146188 |1450 |33265 |
+ROW |146189 |1452 |33276 |
+ROW |146190 |1454 |33277 |
+ROW |146191 |1454 |33278 |
+ROW |146192 |1462 |33279 |
+ROW |146193 |1462 |33280 |
+ROW |146194 |1462 |33281 |
+ROW |146195 |1457 |33282 |
+ROW |146196 |1457 |33283 |
+ROW |146197 |1457 |33284 |
+ROW |146198 |1458 |33285 |
+ROW |146199 |1458 |33286 |
+ROW |146200 |1457 |33287 |
+ROW |146201 |1457 |33288 |
+ROW |146202 |1457 |33289 |
+ROW |146203 |1458 |33290 |
+ROW |146204 |1462 |33291 |
+ROW |146205 |1462 |33292 |
+ROW |146206 |1455 |33301 |
+ROW |146207 |1458 |33302 |
+ROW |146208 |1456 |33303 |
+ROW |146209 |1459 |33304 |
+ROW |146210 |1459 |33305 |
+ROW |146211 |1459 |33306 |
+ROW |146212 |1461 |33317 |
+ROW |146213 |1463 |33318 |
+ROW |146214 |1463 |33319 |
+ROW |146215 |1471 |33320 |
+ROW |146216 |1471 |33321 |
+ROW |146217 |1471 |33322 |
+ROW |146218 |1466 |33323 |
+ROW |146219 |1466 |33324 |
+ROW |146220 |1466 |33325 |
+ROW |146221 |1467 |33326 |
+ROW |146222 |1467 |33327 |
+ROW |146223 |1466 |33328 |
+ROW |146224 |1466 |33329 |
+ROW |146225 |1466 |33330 |
+ROW |146226 |1467 |33331 |
+ROW |146227 |1471 |33332 |
+ROW |146228 |1471 |33333 |
+ROW |146229 |1464 |33342 |
+ROW |146230 |1467 |33343 |
+ROW |146231 |1465 |33344 |
+ROW |146232 |1468 |33345 |
+ROW |146233 |1468 |33346 |
+ROW |146234 |1468 |33347 |
+ROW |146235 |1470 |33358 |
+ROW |146236 |1472 |33359 |
+ROW |146237 |1472 |33360 |
+ROW |146238 |1480 |33361 |
+ROW |146239 |1480 |33362 |
+ROW |146240 |1480 |33363 |
+ROW |146241 |1475 |33364 |
+ROW |146242 |1475 |33365 |
+ROW |146243 |1475 |33366 |
+ROW |146244 |1476 |33367 |
+ROW |146245 |1476 |33368 |
+ROW |146246 |1475 |33369 |
+ROW |146247 |1475 |33370 |
+ROW |146248 |1475 |33371 |
+ROW |146249 |1476 |33372 |
+ROW |146250 |1480 |33373 |
+ROW |146251 |1480 |33374 |
+ROW |146252 |1473 |33383 |
+ROW |146253 |1476 |33384 |
+ROW |146254 |1474 |33385 |
+ROW |146255 |1477 |33386 |
+ROW |146256 |1477 |33387 |
+ROW |146257 |1477 |33388 |
+ROW |146258 |1479 |33399 |
+ROW |146259 |1481 |33400 |
+ROW |146260 |1481 |33401 |
+ROW |146261 |851 |27376 |
+ROW |146262 |852 |27378 |
+ROW |146263 |852 |27379 |
+ROW |146264 |852 |30097 |
+ROW |146265 |869 |27380 |
+ROW |146266 |870 |27382 |
+ROW |146267 |870 |27383 |
+ROW |146268 |858 |27385 |
+ROW |146269 |858 |27386 |
+ROW |146270 |1048 |28209 |
+ROW |146271 |1048 |28210 |
+ROW |146272 |858 |30098 |
+ROW |146273 |870 |30099 |
+ROW |146274 |1048 |30100 |
+ROW |146275 |848 |27415 |
+ROW |146276 |848 |27416 |
+ROW |146277 |849 |27417 |
+ROW |146278 |852 |27419 |
+ROW |146279 |853 |27420 |
+ROW |146280 |853 |27421 |
+ROW |146281 |854 |27422 |
+ROW |146282 |855 |27423 |
+ROW |146283 |1056 |28246 |
+ROW |146284 |848 |30101 |
+ROW |146285 |856 |27425 |
+ROW |146286 |856 |27426 |
+ROW |146287 |857 |27427 |
+ROW |146288 |858 |27428 |
+ROW |146289 |859 |27429 |
+ROW |146290 |859 |27430 |
+ROW |146291 |860 |27431 |
+ROW |146292 |861 |27432 |
+ROW |146293 |868 |27443 |
+ROW |146294 |868 |27444 |
+ROW |146295 |870 |27445 |
+ROW |146296 |871 |27446 |
+ROW |146297 |871 |27447 |
+ROW |146298 |872 |27448 |
+ROW |146299 |873 |27449 |
+ROW |146300 |1048 |28208 |
+ROW |146301 |1049 |28215 |
+ROW |146302 |1050 |28216 |
+ROW |146303 |1051 |28217 |
+ROW |146304 |1051 |28218 |
+ROW |146305 |1052 |28220 |
+ROW |146306 |1052 |28222 |
+ROW |146307 |1057 |28247 |
+ROW |146308 |856 |30102 |
+ROW |146309 |868 |30103 |
+ROW |146310 |1052 |30104 |
+ROW |146311 |877 |27478 |
+ROW |146312 |880 |27479 |
+ROW |146313 |881 |27480 |
+ROW |146314 |882 |27481 |
+ROW |146315 |882 |27482 |
+ROW |146316 |882 |27483 |
+ROW |146317 |882 |27484 |
+ROW |146318 |879 |27485 |
+ROW |146319 |878 |30105 |
+ROW |146320 |891 |27508 |
+ROW |146321 |891 |27509 |
+ROW |146322 |891 |27510 |
+ROW |146323 |886 |27511 |
+ROW |146324 |891 |30106 |
+ROW |146325 |888 |27517 |
+ROW |146326 |890 |27518 |
+ROW |146327 |889 |27519 |
+ROW |146328 |887 |30107 |
+ROW |146329 |900 |27543 |
+ROW |146330 |900 |27544 |
+ROW |146331 |900 |27545 |
+ROW |146332 |900 |27546 |
+ROW |146333 |895 |27547 |
+ROW |146334 |897 |27553 |
+ROW |146335 |899 |27554 |
+ROW |146336 |898 |27555 |
+ROW |146337 |896 |30108 |
+ROW |146338 |909 |27579 |
+ROW |146339 |909 |27580 |
+ROW |146340 |909 |27582 |
+ROW |146341 |909 |27583 |
+ROW |146342 |906 |27584 |
+ROW |146343 |906 |27585 |
+ROW |146344 |904 |27586 |
+ROW |146345 |909 |30109 |
+ROW |146346 |905 |27591 |
+ROW |146347 |907 |27593 |
+ROW |146348 |908 |27594 |
+ROW |146349 |908 |27595 |
+ROW |146350 |905 |30110 |
+ROW |146351 |905 |30111 |
+ROW |146352 |1855 |36626 |
+ROW |146353 |1855 |36627 |
+ROW |146354 |1742 |35646 |
+ROW |146355 |1749 |35647 |
+ROW |146356 |1748 |35648 |
+ROW |146357 |1749 |35649 |
+ROW |146358 |1749 |35650 |
+ROW |146359 |1749 |35651 |
+ROW |146360 |1749 |35652 |
+ROW |146361 |1749 |35653 |
+ROW |146362 |1742 |35654 |
+ROW |146363 |1742 |35655 |
+ROW |146364 |1742 |35656 |
+ROW |146365 |1742 |35657 |
+ROW |146366 |1742 |35658 |
+ROW |146367 |1742 |35659 |
+ROW |146368 |1742 |35660 |
+ROW |146369 |1742 |35661 |
+ROW |146370 |1742 |35662 |
+ROW |146371 |1748 |35663 |
+ROW |146372 |1750 |35679 |
+ROW |146373 |1751 |35680 |
+ROW |146374 |1751 |35681 |
+ROW |146375 |1747 |35682 |
+ROW |146376 |1740 |35683 |
+ROW |146377 |1740 |35684 |
+ROW |146378 |1746 |35685 |
+ROW |146379 |1750 |35686 |
+ROW |146380 |1739 |35687 |
+ROW |146381 |1739 |35688 |
+ROW |146382 |1739 |35689 |
+ROW |146383 |1739 |35690 |
+ROW |146384 |1739 |35691 |
+ROW |146385 |1739 |35692 |
+ROW |146386 |1739 |35693 |
+ROW |146387 |1739 |35694 |
+ROW |146388 |1739 |35695 |
+ROW |146389 |1739 |35696 |
+ROW |146390 |1739 |35697 |
+ROW |146391 |1739 |35698 |
+ROW |146392 |1739 |35699 |
+ROW |146393 |1739 |35700 |
+ROW |146394 |1739 |35701 |
+ROW |146395 |1739 |35702 |
+ROW |146396 |1739 |35703 |
+ROW |146397 |1739 |35704 |
+ROW |146398 |1739 |35705 |
+ROW |146399 |1739 |35706 |
+ROW |146400 |1739 |35707 |
+ROW |146401 |1739 |35708 |
+ROW |146402 |1739 |35709 |
+ROW |146403 |1739 |35710 |
+ROW |146404 |1739 |35711 |
+ROW |146405 |1739 |35712 |
+ROW |146406 |1739 |35713 |
+ROW |146407 |1739 |35714 |
+ROW |146408 |1739 |35715 |
+ROW |146409 |1739 |35716 |
+ROW |146410 |1743 |35722 |
+ROW |146411 |1743 |35723 |
+ROW |146412 |1743 |35724 |
+ROW |146413 |1743 |35725 |
+ROW |146414 |1743 |35726 |
+ROW |146415 |1743 |35727 |
+ROW |146416 |1744 |35728 |
+ROW |146417 |1744 |35729 |
+ROW |146418 |1744 |35730 |
+ROW |146419 |1744 |35731 |
+ROW |146420 |919 |27671 |
+ROW |146421 |921 |27672 |
+ROW |146422 |922 |27673 |
+ROW |146423 |923 |27674 |
+ROW |146424 |924 |27675 |
+ROW |146425 |924 |27676 |
+ROW |146426 |924 |27677 |
+ROW |146427 |924 |27678 |
+ROW |146428 |924 |27679 |
+ROW |146429 |920 |30112 |
+ROW |146430 |1036 |28141 |
+ROW |146431 |1036 |28142 |
+ROW |146432 |1031 |28143 |
+ROW |146433 |1033 |28150 |
+ROW |146434 |1032 |28153 |
+ROW |146435 |1034 |28154 |
+ROW |146436 |1035 |28155 |
+ROW |146437 |1033 |28156 |
+ROW |146438 |1036 |28157 |
+ROW |146439 |1036 |28158 |
+ROW |146440 |1032 |30113 |
+ROW |146441 |1032 |30114 |
+ROW |146442 |1032 |30115 |
+ROW |146443 |941 |27748 |
+ROW |146444 |941 |27749 |
+ROW |146445 |941 |27750 |
+ROW |146446 |939 |27751 |
+ROW |146447 |937 |27753 |
+ROW |146448 |941 |27754 |
+ROW |146449 |940 |27755 |
+ROW |146450 |938 |30116 |
+ROW |146451 |948 |27777 |
+ROW |146452 |948 |27778 |
+ROW |146453 |945 |27783 |
+ROW |146454 |945 |27784 |
+ROW |146455 |948 |27785 |
+ROW |146456 |946 |27786 |
+ROW |146457 |947 |27787 |
+ROW |146458 |957 |27812 |
+ROW |146459 |957 |27813 |
+ROW |146460 |951 |27814 |
+ROW |146461 |957 |30117 |
+ROW |146462 |954 |27821 |
+ROW |146463 |956 |27822 |
+ROW |146464 |955 |27823 |
+ROW |146465 |952 |28894 |
+ROW |146466 |953 |30118 |
+ROW |146467 |1486 |33402 |
+ROW |146468 |1486 |33403 |
+ROW |146469 |1486 |33404 |
+ROW |146470 |1483 |33405 |
+ROW |146471 |1483 |33406 |
+ROW |146472 |1482 |33407 |
+ROW |146473 |1483 |33408 |
+ROW |146474 |1483 |33409 |
+ROW |146475 |1483 |33410 |
+ROW |146476 |1483 |33411 |
+ROW |146477 |1486 |33412 |
+ROW |146478 |1486 |33413 |
+ROW |146479 |1044 |28200 |
+ROW |146480 |1044 |28201 |
+ROW |146481 |1045 |28202 |
+ROW |146482 |1045 |28203 |
+ROW |146483 |1047 |28204 |
+ROW |146484 |1047 |28205 |
+ROW |146485 |1046 |28206 |
+ROW |146486 |1484 |33429 |
+ROW |146487 |1484 |33430 |
+ROW |146488 |1484 |33431 |
+ROW |146489 |976 |27893 |
+ROW |146490 |976 |27894 |
+ROW |146491 |976 |27895 |
+ROW |146492 |973 |27898 |
+ROW |146493 |973 |27900 |
+ROW |146494 |976 |30119 |
+ROW |146495 |973 |30120 |
+ROW |146496 |972 |27904 |
+ROW |146497 |974 |27905 |
+ROW |146498 |975 |27906 |
+ROW |146499 |975 |27907 |
+ROW |146500 |975 |27908 |
+ROW |146501 |974 |31790 |
+ROW |146502 |1365 |32308 |
+ROW |146503 |1368 |32309 |
+ROW |146504 |1370 |32310 |
+ROW |146505 |1370 |32311 |
+ROW |146506 |1366 |32312 |
+ROW |146507 |1369 |32313 |
+ROW |146508 |1369 |32314 |
+ROW |146509 |1369 |32315 |
+ROW |146510 |1369 |32316 |
+ROW |146511 |1368 |32317 |
+ROW |146512 |1368 |32318 |
+ROW |146513 |1365 |32319 |
+ROW |146514 |1367 |32320 |
+ROW |146515 |1367 |32321 |
+ROW |146516 |1367 |32322 |
+ROW |146517 |1366 |32323 |
+ROW |146518 |1366 |32324 |
+ROW |146519 |1371 |32325 |
+ROW |146520 |1365 |32326 |
+ROW |146521 |1365 |32327 |
+ROW |146522 |1370 |32328 |
+ROW |146523 |1366 |32330 |
+ROW |146524 |1372 |32331 |
+ROW |146525 |1376 |32332 |
+ROW |146526 |1377 |32333 |
+ROW |146527 |1377 |32334 |
+ROW |146528 |1373 |32335 |
+ROW |146529 |1376 |32336 |
+ROW |146530 |1376 |32337 |
+ROW |146531 |1376 |32338 |
+ROW |146532 |1375 |32339 |
+ROW |146533 |1378 |32340 |
+ROW |146534 |1375 |32341 |
+ROW |146535 |1375 |32342 |
+ROW |146536 |1374 |32343 |
+ROW |146537 |1374 |32344 |
+ROW |146538 |1374 |32345 |
+ROW |146539 |1373 |32346 |
+ROW |146540 |1373 |32347 |
+ROW |146541 |1377 |32348 |
+ROW |146542 |1373 |32350 |
+ROW |146543 |1379 |32351 |
+ROW |146544 |1382 |32352 |
+ROW |146545 |1384 |32353 |
+ROW |146546 |1384 |32354 |
+ROW |146547 |1380 |32355 |
+ROW |146548 |1383 |32356 |
+ROW |146549 |1383 |32357 |
+ROW |146550 |1383 |32358 |
+ROW |146551 |1383 |32359 |
+ROW |146552 |1382 |32360 |
+ROW |146553 |1382 |32361 |
+ROW |146554 |1379 |32362 |
+ROW |146555 |1381 |32363 |
+ROW |146556 |1381 |32364 |
+ROW |146557 |1381 |32365 |
+ROW |146558 |1380 |32366 |
+ROW |146559 |1380 |32367 |
+ROW |146560 |1385 |32368 |
+ROW |146561 |1379 |32369 |
+ROW |146562 |1379 |32370 |
+ROW |146563 |1384 |32371 |
+ROW |146564 |1380 |32373 |
+ROW |146565 |1390 |32374 |
+ROW |146566 |1387 |32375 |
+ROW |146567 |1387 |32376 |
+ROW |146568 |1388 |32377 |
+ROW |146569 |1388 |32378 |
+ROW |146570 |1388 |32379 |
+ROW |146571 |1389 |32380 |
+ROW |146572 |1386 |32382 |
+ROW |146573 |1391 |32383 |
+ROW |146574 |1393 |32384 |
+ROW |146575 |1395 |32385 |
+ROW |146576 |1392 |32386 |
+ROW |146577 |1394 |32387 |
+ROW |146578 |1394 |32388 |
+ROW |146579 |1394 |32389 |
+ROW |146580 |1393 |32390 |
+ROW |146581 |1392 |32391 |
+ROW |146582 |1391 |32392 |
+ROW |146583 |1392 |32393 |
+ROW |146584 |1392 |32394 |
+ROW |146585 |1396 |32395 |
+ROW |146586 |1391 |32396 |
+ROW |146587 |1391 |32397 |
+ROW |146588 |1391 |32398 |
+ROW |146589 |1395 |32399 |
+ROW |146590 |1392 |32401 |
+ROW |146591 |1397 |32402 |
+ROW |146592 |1399 |32403 |
+ROW |146593 |1401 |32404 |
+ROW |146594 |1398 |32405 |
+ROW |146595 |1400 |32406 |
+ROW |146596 |1400 |32407 |
+ROW |146597 |1400 |32408 |
+ROW |146598 |1399 |32409 |
+ROW |146599 |1398 |32410 |
+ROW |146600 |1397 |32411 |
+ROW |146601 |1398 |32412 |
+ROW |146602 |1398 |32413 |
+ROW |146603 |1402 |32414 |
+ROW |146604 |1397 |32415 |
+ROW |146605 |1397 |32416 |
+ROW |146606 |1397 |32417 |
+ROW |146607 |1401 |32418 |
+ROW |146608 |1398 |32420 |
+ROW |146609 |1409 |32421 |
+ROW |146610 |1407 |32422 |
+ROW |146611 |1405 |32423 |
+ROW |146612 |1405 |32424 |
+ROW |146613 |1407 |32425 |
+ROW |146614 |1407 |32426 |
+ROW |146615 |1407 |32427 |
+ROW |146616 |1408 |32428 |
+ROW |146617 |1408 |32429 |
+ROW |146618 |1404 |32436 |
+ROW |146619 |1404 |32437 |
+ROW |146620 |1404 |32438 |
+ROW |146621 |1403 |32439 |
+ROW |146622 |1404 |32440 |
+ROW |146623 |1406 |32441 |
+ROW |146624 |1406 |32442 |
+ROW |146625 |1406 |32443 |
+ROW |146626 |1406 |32444 |
+ROW |146627 |985 |27930 |
+ROW |146628 |985 |27931 |
+ROW |146629 |981 |27935 |
+ROW |146630 |980 |27936 |
+ROW |146631 |985 |30121 |
+ROW |146632 |981 |30122 |
+ROW |146633 |981 |30123 |
+ROW |146634 |982 |27940 |
+ROW |146635 |982 |27941 |
+ROW |146636 |984 |27942 |
+ROW |146637 |983 |27943 |
+ROW |146638 |991 |27967 |
+ROW |146639 |991 |27968 |
+ROW |146640 |991 |27970 |
+ROW |146641 |991 |27971 |
+ROW |146642 |990 |27972 |
+ROW |146643 |990 |27973 |
+ROW |146644 |989 |27975 |
+ROW |146645 |1282 |30124 |
+ROW |146646 |991 |30125 |
+ROW |146647 |990 |30126 |
+ROW |146648 |1280 |30129 |
+ROW |146649 |1281 |30130 |
+ROW |146650 |997 |27997 |
+ROW |146651 |997 |27998 |
+ROW |146652 |997 |27999 |
+ROW |146653 |997 |28000 |
+ROW |146654 |995 |28003 |
+ROW |146655 |996 |30131 |
+ROW |146656 |1003 |28026 |
+ROW |146657 |1003 |28027 |
+ROW |146658 |1001 |28031 |
+ROW |146659 |1002 |30132 |
+ROW |146660 |1002 |30133 |
+ROW |146661 |1002 |30134 |
+ROW |146662 |1002 |30135 |
+ROW |146663 |1002 |30136 |
+ROW |146664 |1761 |35951 |
+ROW |146665 |1758 |35952 |
+ROW |146666 |1758 |35953 |
+ROW |146667 |1758 |35954 |
+ROW |146668 |1758 |35955 |
+ROW |146669 |1758 |35956 |
+ROW |146670 |1758 |35957 |
+ROW |146671 |1758 |35958 |
+ROW |146672 |1761 |35959 |
+ROW |146673 |1761 |35960 |
+ROW |146674 |1762 |35981 |
+ROW |146675 |1760 |35982 |
+ROW |146676 |1768 |35983 |
+ROW |146677 |1764 |35984 |
+ROW |146678 |1763 |35985 |
+ROW |146679 |1764 |35986 |
+ROW |146680 |1764 |35987 |
+ROW |146681 |1764 |35988 |
+ROW |146682 |1764 |35989 |
+ROW |146683 |1764 |35990 |
+ROW |146684 |1764 |35991 |
+ROW |146685 |1768 |35992 |
+ROW |146686 |1765 |35999 |
+ROW |146687 |1769 |36025 |
+ROW |146688 |1767 |36026 |
+ROW |146689 |1775 |36027 |
+ROW |146690 |1772 |36028 |
+ROW |146691 |1770 |36029 |
+ROW |146692 |1772 |36030 |
+ROW |146693 |1772 |36031 |
+ROW |146694 |1772 |36032 |
+ROW |146695 |1772 |36033 |
+ROW |146696 |1772 |36034 |
+ROW |146697 |1772 |36035 |
+ROW |146698 |1775 |36036 |
+ROW |146699 |1771 |36041 |
+ROW |146700 |1776 |36059 |
+ROW |146701 |1774 |36060 |
+ROW |146702 |1783 |36061 |
+ROW |146703 |1779 |36062 |
+ROW |146704 |1779 |36063 |
+ROW |146705 |1779 |36064 |
+ROW |146706 |1779 |36065 |
+ROW |146707 |1779 |36066 |
+ROW |146708 |1783 |36067 |
+ROW |146709 |1778 |36079 |
+ROW |146710 |1791 |36128 |
+ROW |146711 |1787 |36129 |
+ROW |146712 |1787 |36130 |
+ROW |146713 |1787 |36131 |
+ROW |146714 |1787 |36132 |
+ROW |146715 |1787 |36133 |
+ROW |146716 |1791 |36134 |
+ROW |146717 |1786 |36146 |
+ROW |146718 |1797 |36195 |
+ROW |146719 |1794 |36196 |
+ROW |146720 |1794 |36197 |
+ROW |146721 |1794 |36198 |
+ROW |146722 |1794 |36199 |
+ROW |146723 |1794 |36200 |
+ROW |146724 |1794 |36201 |
+ROW |146725 |1794 |36202 |
+ROW |146726 |1797 |36203 |
+ROW |146727 |1797 |36204 |
+ROW |146728 |1793 |36210 |
+ROW |146729 |1798 |36227 |
+ROW |146730 |1796 |36228 |
+ROW |146731 |1802 |36229 |
+ROW |146732 |1800 |36230 |
+ROW |146733 |1799 |36231 |
+ROW |146734 |1800 |36232 |
+ROW |146735 |1800 |36233 |
+ROW |146736 |1800 |36234 |
+ROW |146737 |1800 |36235 |
+ROW |146738 |1800 |36236 |
+ROW |146739 |1800 |36237 |
+ROW |146740 |1802 |36238 |
+ROW |146741 |1808 |36267 |
+ROW |146742 |1804 |36268 |
+ROW |146743 |1803 |36269 |
+ROW |146744 |1804 |36270 |
+ROW |146745 |1804 |36271 |
+ROW |146746 |1804 |36272 |
+ROW |146747 |1804 |36273 |
+ROW |146748 |1804 |36274 |
+ROW |146749 |1804 |36275 |
+ROW |146750 |1808 |36276 |
+ROW |146751 |1805 |36283 |
+ROW |146752 |1809 |36309 |
+ROW |146753 |1807 |36310 |
+ROW |146754 |1815 |36311 |
+ROW |146755 |1811 |36312 |
+ROW |146756 |1810 |36313 |
+ROW |146757 |1811 |36314 |
+ROW |146758 |1811 |36315 |
+ROW |146759 |1811 |36316 |
+ROW |146760 |1811 |36317 |
+ROW |146761 |1811 |36318 |
+ROW |146762 |1811 |36319 |
+ROW |146763 |1815 |36320 |
+ROW |146764 |1812 |36327 |
+ROW |146765 |1816 |36353 |
+ROW |146766 |1814 |36354 |
+ROW |146767 |1822 |36355 |
+ROW |146768 |1819 |36356 |
+ROW |146769 |1817 |36357 |
+ROW |146770 |1819 |36358 |
+ROW |146771 |1819 |36359 |
+ROW |146772 |1819 |36360 |
+ROW |146773 |1819 |36361 |
+ROW |146774 |1819 |36362 |
+ROW |146775 |1819 |36363 |
+ROW |146776 |1822 |36364 |
+ROW |146777 |1818 |36371 |
+ROW |146778 |1823 |36397 |
+ROW |146779 |1821 |36398 |
+ROW |146780 |1829 |36399 |
+ROW |146781 |1826 |36400 |
+ROW |146782 |1824 |36401 |
+ROW |146783 |1826 |36402 |
+ROW |146784 |1826 |36403 |
+ROW |146785 |1826 |36404 |
+ROW |146786 |1826 |36405 |
+ROW |146787 |1826 |36406 |
+ROW |146788 |1826 |36407 |
+ROW |146789 |1829 |36408 |
+ROW |146790 |1825 |36415 |
+ROW |146791 |1830 |36441 |
+ROW |146792 |1828 |36442 |
+ROW |146793 |1837 |36443 |
+ROW |146794 |1833 |36444 |
+ROW |146795 |1831 |36445 |
+ROW |146796 |1833 |36446 |
+ROW |146797 |1833 |36447 |
+ROW |146798 |1833 |36448 |
+ROW |146799 |1834 |36449 |
+ROW |146800 |1833 |36450 |
+ROW |146801 |1833 |36451 |
+ROW |146802 |1833 |36452 |
+ROW |146803 |1837 |36453 |
+ROW |146804 |1832 |36460 |
+ROW |146805 |1838 |36486 |
+ROW |146806 |1836 |36487 |
+ROW |146807 |1845 |36488 |
+ROW |146808 |1841 |36489 |
+ROW |146809 |1839 |36490 |
+ROW |146810 |1841 |36491 |
+ROW |146811 |1841 |36492 |
+ROW |146812 |1841 |36493 |
+ROW |146813 |1842 |36494 |
+ROW |146814 |1841 |36495 |
+ROW |146815 |1841 |36496 |
+ROW |146816 |1841 |36497 |
+ROW |146817 |1845 |36498 |
+ROW |146818 |1840 |36505 |
+ROW |146819 |1846 |36531 |
+ROW |146820 |1844 |36532 |
+ROW |146821 |1853 |36533 |
+ROW |146822 |1849 |36534 |
+ROW |146823 |1847 |36535 |
+ROW |146824 |1849 |36536 |
+ROW |146825 |1849 |36537 |
+ROW |146826 |1849 |36538 |
+ROW |146827 |1849 |36539 |
+ROW |146828 |1849 |36540 |
+ROW |146829 |1849 |36541 |
+ROW |146830 |1853 |36542 |
+ROW |146831 |1848 |36550 |
+ROW |146832 |1850 |36551 |
+ROW |146833 |1854 |36577 |
+ROW |146834 |1852 |36578 |
+ROW |146835 |1142 |29087 |
+ROW |146836 |1142 |29088 |
+ROW |146837 |1142 |29089 |
+ROW |146838 |1142 |29090 |
+ROW |146839 |1142 |29091 |
+ROW |146840 |1142 |29092 |
+ROW |146841 |1142 |29093 |
+ROW |146842 |1142 |29094 |
+ROW |146843 |1142 |29095 |
+ROW |146844 |1142 |29096 |
+ROW |146845 |1142 |29097 |
+ROW |146846 |1142 |29098 |
+ROW |146847 |1142 |29099 |
+ROW |146848 |1142 |29100 |
+ROW |146849 |1142 |29101 |
+ROW |146850 |1142 |29102 |
+ROW |146851 |1144 |29103 |
+ROW |146852 |1144 |29104 |
+ROW |146853 |1144 |29105 |
+ROW |146854 |1144 |29106 |
+ROW |146855 |1144 |29107 |
+ROW |146856 |1144 |29108 |
+ROW |146857 |1151 |29110 |
+ROW |146858 |1148 |29111 |
+ROW |146859 |1148 |29112 |
+ROW |146860 |1148 |29113 |
+ROW |146861 |1148 |29114 |
+ROW |146862 |1148 |29115 |
+ROW |146863 |1148 |29116 |
+ROW |146864 |1148 |29117 |
+ROW |146865 |1148 |29118 |
+ROW |146866 |1148 |29119 |
+ROW |146867 |1150 |29120 |
+ROW |146868 |1149 |29121 |
+ROW |146869 |1149 |29122 |
+ROW |146870 |1149 |29123 |
+ROW |146871 |1152 |29124 |
+ROW |146872 |1152 |29125 |
+ROW |146873 |1152 |29126 |
+ROW |146874 |1152 |29127 |
+ROW |146875 |1152 |29128 |
+ROW |146876 |1152 |29129 |
+ROW |146877 |1152 |29130 |
+ROW |146878 |1152 |29131 |
+ROW |146879 |1152 |29132 |
+ROW |146880 |1152 |29133 |
+ROW |146881 |1152 |29134 |
+ROW |146882 |1152 |29135 |
+ROW |146883 |1152 |29136 |
+ROW |146884 |1152 |29137 |
+ROW |146885 |1152 |29138 |
+ROW |146886 |1152 |29139 |
+ROW |146887 |1154 |29140 |
+ROW |146888 |1154 |29141 |
+ROW |146889 |1154 |29142 |
+ROW |146890 |1154 |29143 |
+ROW |146891 |1154 |29144 |
+ROW |146892 |1154 |29145 |
+ROW |146893 |1161 |29147 |
+ROW |146894 |1158 |29148 |
+ROW |146895 |1158 |29149 |
+ROW |146896 |1158 |29150 |
+ROW |146897 |1158 |29151 |
+ROW |146898 |1158 |29152 |
+ROW |146899 |1158 |29153 |
+ROW |146900 |1158 |29154 |
+ROW |146901 |1158 |29155 |
+ROW |146902 |1158 |29156 |
+ROW |146903 |1160 |29157 |
+ROW |146904 |1159 |29158 |
+ROW |146905 |1159 |29159 |
+ROW |146906 |1159 |29160 |
+ROW |146907 |1162 |29161 |
+ROW |146908 |1162 |29162 |
+ROW |146909 |1162 |29163 |
+ROW |146910 |1162 |29164 |
+ROW |146911 |1162 |29165 |
+ROW |146912 |1162 |29166 |
+ROW |146913 |1162 |29167 |
+ROW |146914 |1162 |29168 |
+ROW |146915 |1162 |29169 |
+ROW |146916 |1162 |29170 |
+ROW |146917 |1162 |29171 |
+ROW |146918 |1162 |29172 |
+ROW |146919 |1162 |29173 |
+ROW |146920 |1162 |29174 |
+ROW |146921 |1162 |29175 |
+ROW |146922 |1162 |29176 |
+ROW |146923 |1164 |29177 |
+ROW |146924 |1164 |29178 |
+ROW |146925 |1164 |29179 |
+ROW |146926 |1164 |29180 |
+ROW |146927 |1164 |29181 |
+ROW |146928 |1164 |29182 |
+ROW |146929 |1171 |29184 |
+ROW |146930 |1168 |29185 |
+ROW |146931 |1168 |29186 |
+ROW |146932 |1168 |29187 |
+ROW |146933 |1168 |29188 |
+ROW |146934 |1168 |29189 |
+ROW |146935 |1168 |29190 |
+ROW |146936 |1168 |29191 |
+ROW |146937 |1168 |29192 |
+ROW |146938 |1168 |29193 |
+ROW |146939 |1170 |29194 |
+ROW |146940 |1169 |29195 |
+ROW |146941 |1169 |29196 |
+ROW |146942 |1169 |29197 |
+ROW |146943 |1142 |29198 |
+ROW |146944 |1144 |31270 |
+ROW |146945 |1152 |29199 |
+ROW |146946 |1154 |31271 |
+ROW |146947 |1162 |29200 |
+ROW |146948 |1164 |31272 |
+ROW |146949 |1146 |31278 |
+ROW |146950 |1156 |31281 |
+ROW |146951 |1166 |31284 |
+ROW |146952 |1146 |31287 |
+ROW |146953 |1146 |31290 |
+ROW |146954 |1156 |31293 |
+ROW |146955 |1156 |31296 |
+ROW |146956 |1166 |31299 |
+ROW |146957 |1166 |31302 |
+ROW |146958 |1173 |29273 |
+ROW |146959 |1173 |29274 |
+ROW |146960 |1173 |29275 |
+ROW |146961 |1173 |29276 |
+ROW |146962 |1173 |29277 |
+ROW |146963 |1173 |29278 |
+ROW |146964 |1173 |29279 |
+ROW |146965 |1173 |29280 |
+ROW |146966 |1173 |29281 |
+ROW |146967 |1173 |29282 |
+ROW |146968 |1173 |29283 |
+ROW |146969 |1173 |29284 |
+ROW |146970 |1173 |29285 |
+ROW |146971 |1173 |29286 |
+ROW |146972 |1173 |29287 |
+ROW |146973 |1173 |29288 |
+ROW |146974 |1175 |29289 |
+ROW |146975 |1175 |29290 |
+ROW |146976 |1175 |29291 |
+ROW |146977 |1175 |29292 |
+ROW |146978 |1175 |29293 |
+ROW |146979 |1175 |29294 |
+ROW |146980 |1182 |29296 |
+ROW |146981 |1179 |29297 |
+ROW |146982 |1179 |29298 |
+ROW |146983 |1179 |29299 |
+ROW |146984 |1179 |29300 |
+ROW |146985 |1179 |29301 |
+ROW |146986 |1179 |29302 |
+ROW |146987 |1179 |29303 |
+ROW |146988 |1179 |29304 |
+ROW |146989 |1179 |29305 |
+ROW |146990 |1181 |29306 |
+ROW |146991 |1180 |29307 |
+ROW |146992 |1180 |29308 |
+ROW |146993 |1180 |29309 |
+ROW |146994 |1183 |29310 |
+ROW |146995 |1183 |29311 |
+ROW |146996 |1183 |29312 |
+ROW |146997 |1183 |29313 |
+ROW |146998 |1183 |29314 |
+ROW |146999 |1183 |29315 |
+ROW |147000 |1183 |29316 |
+ROW |147001 |1183 |29317 |
+ROW |147002 |1183 |29318 |
+ROW |147003 |1183 |29319 |
+ROW |147004 |1183 |29320 |
+ROW |147005 |1183 |29321 |
+ROW |147006 |1183 |29322 |
+ROW |147007 |1183 |29323 |
+ROW |147008 |1183 |29324 |
+ROW |147009 |1183 |29325 |
+ROW |147010 |1185 |29326 |
+ROW |147011 |1185 |29327 |
+ROW |147012 |1185 |29328 |
+ROW |147013 |1185 |29329 |
+ROW |147014 |1185 |29330 |
+ROW |147015 |1185 |29331 |
+ROW |147016 |1192 |29333 |
+ROW |147017 |1189 |29334 |
+ROW |147018 |1189 |29335 |
+ROW |147019 |1189 |29336 |
+ROW |147020 |1189 |29337 |
+ROW |147021 |1189 |29338 |
+ROW |147022 |1189 |29339 |
+ROW |147023 |1189 |29340 |
+ROW |147024 |1189 |29341 |
+ROW |147025 |1189 |29342 |
+ROW |147026 |1191 |29343 |
+ROW |147027 |1190 |29344 |
+ROW |147028 |1190 |29345 |
+ROW |147029 |1190 |29346 |
+ROW |147030 |1173 |29347 |
+ROW |147031 |1175 |31303 |
+ROW |147032 |1183 |29348 |
+ROW |147033 |1185 |31304 |
+ROW |147034 |1177 |31309 |
+ROW |147035 |1187 |31312 |
+ROW |147036 |1177 |31315 |
+ROW |147037 |1177 |31318 |
+ROW |147038 |1187 |31321 |
+ROW |147039 |1187 |31324 |
+ROW |147040 |1201 |29395 |
+ROW |147041 |1196 |29396 |
+ROW |147042 |1196 |29397 |
+ROW |147043 |1194 |29398 |
+ROW |147044 |1193 |29399 |
+ROW |147045 |1196 |29400 |
+ROW |147046 |1196 |29401 |
+ROW |147047 |1196 |29402 |
+ROW |147048 |1196 |29403 |
+ROW |147049 |1194 |29404 |
+ROW |147050 |1193 |29405 |
+ROW |147051 |1193 |29406 |
+ROW |147052 |1193 |29407 |
+ROW |147053 |1193 |29408 |
+ROW |147054 |1193 |29409 |
+ROW |147055 |1193 |29410 |
+ROW |147056 |1193 |29411 |
+ROW |147057 |1193 |29412 |
+ROW |147058 |1193 |29413 |
+ROW |147059 |1194 |29414 |
+ROW |147060 |1197 |29415 |
+ROW |147061 |1193 |29416 |
+ROW |147062 |1193 |29417 |
+ROW |147063 |1193 |29418 |
+ROW |147064 |1193 |29419 |
+ROW |147065 |1193 |29420 |
+ROW |147066 |1199 |29421 |
+ROW |147067 |1195 |29422 |
+ROW |147068 |1194 |29423 |
+ROW |147069 |1194 |29424 |
+ROW |147070 |1194 |29425 |
+ROW |147071 |1193 |29426 |
+ROW |147072 |1193 |29427 |
+ROW |147073 |1195 |29428 |
+ROW |147074 |1201 |29450 |
+ROW |147075 |1201 |29451 |
+ROW |147076 |1128 |28978 |
+ROW |147077 |1128 |28979 |
+ROW |147078 |1128 |28980 |
+ROW |147079 |1128 |28981 |
+ROW |147080 |1128 |28982 |
+ROW |147081 |1128 |28983 |
+ROW |147082 |1128 |28984 |
+ROW |147083 |1128 |28985 |
+ROW |147084 |1128 |28986 |
+ROW |147085 |1130 |28987 |
+ROW |147086 |1130 |28988 |
+ROW |147087 |1130 |28989 |
+ROW |147088 |1130 |28990 |
+ROW |147089 |1130 |28991 |
+ROW |147090 |1130 |28992 |
+ROW |147091 |1132 |28993 |
+ROW |147092 |1132 |28994 |
+ROW |147093 |1132 |28995 |
+ROW |147094 |1132 |28996 |
+ROW |147095 |1132 |28997 |
+ROW |147096 |1132 |28998 |
+ROW |147097 |1132 |28999 |
+ROW |147098 |1132 |29000 |
+ROW |147099 |1132 |29001 |
+ROW |147100 |1134 |29002 |
+ROW |147101 |1134 |29003 |
+ROW |147102 |1134 |29004 |
+ROW |147103 |1134 |29005 |
+ROW |147104 |1134 |29006 |
+ROW |147105 |1134 |29007 |
+ROW |147106 |1130 |29017 |
+ROW |147107 |1130 |29018 |
+ROW |147108 |1130 |29019 |
+ROW |147109 |1130 |29020 |
+ROW |147110 |1130 |29021 |
+ROW |147111 |1130 |29022 |
+ROW |147112 |1130 |29023 |
+ROW |147113 |1130 |29024 |
+ROW |147114 |1130 |29025 |
+ROW |147115 |1130 |29026 |
+ROW |147116 |1134 |29034 |
+ROW |147117 |1134 |29035 |
+ROW |147118 |1134 |29036 |
+ROW |147119 |1134 |29037 |
+ROW |147120 |1134 |29038 |
+ROW |147121 |1134 |29039 |
+ROW |147122 |1134 |29040 |
+ROW |147123 |1134 |29041 |
+ROW |147124 |1134 |29042 |
+ROW |147125 |1134 |29043 |
+ROW |147126 |1130 |29048 |
+ROW |147127 |1134 |29049 |
+ROW |147128 |1202 |29454 |
+ROW |147129 |1202 |29455 |
+ROW |147130 |1202 |29456 |
+ROW |147131 |1202 |29457 |
+ROW |147132 |1202 |29458 |
+ROW |147133 |1202 |29459 |
+ROW |147134 |1203 |29460 |
+ROW |147135 |1203 |29461 |
+ROW |147136 |1203 |29462 |
+ROW |147137 |1203 |29463 |
+ROW |147138 |1203 |29466 |
+ROW |147139 |1203 |29467 |
+ROW |147140 |1203 |29468 |
+ROW |147141 |1203 |29469 |
+ROW |147142 |1203 |29470 |
+ROW |147143 |1209 |29472 |
+ROW |147144 |1207 |29473 |
+ROW |147145 |1207 |29474 |
+ROW |147146 |1207 |29475 |
+ROW |147147 |1207 |29476 |
+ROW |147148 |1207 |29477 |
+ROW |147149 |1208 |29478 |
+ROW |147150 |1202 |30137 |
+ROW |147151 |1202 |31325 |
+ROW |147152 |1203 |31326 |
+ROW |147153 |1203 |31327 |
+ROW |147154 |1211 |36579 |
+ROW |147155 |1212 |29480 |
+ROW |147156 |1212 |29481 |
+ROW |147157 |1212 |29482 |
+ROW |147158 |1212 |29483 |
+ROW |147159 |1212 |29484 |
+ROW |147160 |1212 |29485 |
+ROW |147161 |1213 |29486 |
+ROW |147162 |1213 |29487 |
+ROW |147163 |1213 |29488 |
+ROW |147164 |1213 |29489 |
+ROW |147165 |1213 |29492 |
+ROW |147166 |1213 |29493 |
+ROW |147167 |1213 |29494 |
+ROW |147168 |1213 |29495 |
+ROW |147169 |1213 |29496 |
+ROW |147170 |1219 |29498 |
+ROW |147171 |1217 |29499 |
+ROW |147172 |1217 |29500 |
+ROW |147173 |1217 |29501 |
+ROW |147174 |1217 |29502 |
+ROW |147175 |1217 |29503 |
+ROW |147176 |1218 |29504 |
+ROW |147177 |1212 |30138 |
+ROW |147178 |1212 |31328 |
+ROW |147179 |1213 |31329 |
+ROW |147180 |1213 |31330 |
+ROW |147181 |1216 |36580 |
+ROW |147182 |1203 |31331 |
+ROW |147183 |1213 |31332 |
+ROW |147184 |1310 |30425 |
+ROW |147185 |1311 |30426 |
+ROW |147186 |1243 |29561 |
+ROW |147187 |1243 |29562 |
+ROW |147188 |1243 |29563 |
+ROW |147189 |1243 |29564 |
+ROW |147190 |1243 |29565 |
+ROW |147191 |1243 |29566 |
+ROW |147192 |1244 |29567 |
+ROW |147193 |1244 |29568 |
+ROW |147194 |1244 |29569 |
+ROW |147195 |1244 |29570 |
+ROW |147196 |1244 |29573 |
+ROW |147197 |1244 |29574 |
+ROW |147198 |1244 |29575 |
+ROW |147199 |1244 |29576 |
+ROW |147200 |1244 |29577 |
+ROW |147201 |1250 |29579 |
+ROW |147202 |1248 |29580 |
+ROW |147203 |1248 |29581 |
+ROW |147204 |1248 |29582 |
+ROW |147205 |1248 |29583 |
+ROW |147206 |1248 |29584 |
+ROW |147207 |1249 |29585 |
+ROW |147208 |1243 |30139 |
+ROW |147209 |1243 |31343 |
+ROW |147210 |1244 |31344 |
+ROW |147211 |1244 |31345 |
+ROW |147212 |1252 |36601 |
+ROW |147213 |1253 |29587 |
+ROW |147214 |1253 |29588 |
+ROW |147215 |1253 |29589 |
+ROW |147216 |1253 |29590 |
+ROW |147217 |1253 |29591 |
+ROW |147218 |1253 |29592 |
+ROW |147219 |1254 |29593 |
+ROW |147220 |1254 |29594 |
+ROW |147221 |1254 |29595 |
+ROW |147222 |1254 |29596 |
+ROW |147223 |1254 |29599 |
+ROW |147224 |1254 |29600 |
+ROW |147225 |1254 |29601 |
+ROW |147226 |1254 |29602 |
+ROW |147227 |1254 |29603 |
+ROW |147228 |1242 |29605 |
+ROW |147229 |1258 |29606 |
+ROW |147230 |1258 |29607 |
+ROW |147231 |1258 |29608 |
+ROW |147232 |1258 |29609 |
+ROW |147233 |1258 |29610 |
+ROW |147234 |1259 |29611 |
+ROW |147235 |1253 |30140 |
+ROW |147236 |1253 |31346 |
+ROW |147237 |1254 |31347 |
+ROW |147238 |1254 |31348 |
+ROW |147239 |1257 |36602 |
+ROW |147240 |1244 |31349 |
+ROW |147241 |1254 |31350 |
+ROW |147242 |1312 |30429 |
+ROW |147243 |1313 |30430 |
+ROW |147244 |1493 |33568 |
+ROW |147245 |1493 |33569 |
+ROW |147246 |1493 |33570 |
+ROW |147247 |1492 |33571 |
+ROW |147248 |1492 |33572 |
+ROW |147249 |1492 |33574 |
+ROW |147250 |1492 |33575 |
+ROW |147251 |1492 |33576 |
+ROW |147252 |1492 |33577 |
+ROW |147253 |1492 |33578 |
+ROW |147254 |1493 |33579 |
+ROW |147255 |1493 |33580 |
+ROW |147256 |1493 |33581 |
+ROW |147257 |1493 |33582 |
+ROW |147258 |1493 |33583 |
+ROW |147259 |1493 |33584 |
+ROW |147260 |1493 |33585 |
+ROW |147261 |1493 |33589 |
+ROW |147262 |1493 |33590 |
+ROW |147263 |1493 |33591 |
+ROW |147264 |1493 |33592 |
+ROW |147265 |1493 |33593 |
+ROW |147266 |1493 |33594 |
+ROW |147267 |1493 |33595 |
+ROW |147268 |1492 |34083 |
+ROW |147269 |1493 |33602 |
+ROW |147270 |1493 |33603 |
+ROW |147271 |1493 |33604 |
+ROW |147272 |1493 |33605 |
+ROW |147273 |1493 |33606 |
+ROW |147274 |1492 |33607 |
+ROW |147275 |1493 |33608 |
+ROW |147276 |1493 |33609 |
+ROW |147277 |1493 |33610 |
+ROW |147278 |1493 |33611 |
+ROW |147279 |1493 |33612 |
+ROW |147280 |1493 |33613 |
+ROW |147281 |1493 |33614 |
+ROW |147282 |1493 |33615 |
+ROW |147283 |1493 |33616 |
+ROW |147284 |1493 |33617 |
+ROW |147285 |1493 |33618 |
+ROW |147286 |1495 |33619 |
+ROW |147287 |1495 |33620 |
+ROW |147288 |1495 |33621 |
+ROW |147289 |1494 |33622 |
+ROW |147290 |1494 |33623 |
+ROW |147291 |1494 |33625 |
+ROW |147292 |1494 |33626 |
+ROW |147293 |1494 |33627 |
+ROW |147294 |1494 |33628 |
+ROW |147295 |1494 |33629 |
+ROW |147296 |1495 |33630 |
+ROW |147297 |1495 |33631 |
+ROW |147298 |1495 |33632 |
+ROW |147299 |1495 |33633 |
+ROW |147300 |1495 |33634 |
+ROW |147301 |1495 |33635 |
+ROW |147302 |1495 |33636 |
+ROW |147303 |1495 |33640 |
+ROW |147304 |1495 |33641 |
+ROW |147305 |1495 |33642 |
+ROW |147306 |1495 |33643 |
+ROW |147307 |1495 |33644 |
+ROW |147308 |1495 |33645 |
+ROW |147309 |1495 |33646 |
+ROW |147310 |1494 |34084 |
+ROW |147311 |1495 |33653 |
+ROW |147312 |1495 |33654 |
+ROW |147313 |1495 |33655 |
+ROW |147314 |1495 |33656 |
+ROW |147315 |1495 |33657 |
+ROW |147316 |1494 |33658 |
+ROW |147317 |1495 |33659 |
+ROW |147318 |1495 |33660 |
+ROW |147319 |1495 |33661 |
+ROW |147320 |1495 |33662 |
+ROW |147321 |1495 |33663 |
+ROW |147322 |1495 |33664 |
+ROW |147323 |1495 |33665 |
+ROW |147324 |1495 |33666 |
+ROW |147325 |1495 |33667 |
+ROW |147326 |1495 |33668 |
+ROW |147327 |1495 |33669 |
+ROW |147328 |1497 |33670 |
+ROW |147329 |1497 |33671 |
+ROW |147330 |1497 |33672 |
+ROW |147331 |1496 |33673 |
+ROW |147332 |1496 |33674 |
+ROW |147333 |1496 |33676 |
+ROW |147334 |1496 |33677 |
+ROW |147335 |1496 |33678 |
+ROW |147336 |1496 |33679 |
+ROW |147337 |1496 |33680 |
+ROW |147338 |1497 |33681 |
+ROW |147339 |1497 |33682 |
+ROW |147340 |1497 |33683 |
+ROW |147341 |1497 |33684 |
+ROW |147342 |1497 |33685 |
+ROW |147343 |1497 |33686 |
+ROW |147344 |1497 |33687 |
+ROW |147345 |1497 |33691 |
+ROW |147346 |1497 |33692 |
+ROW |147347 |1497 |33693 |
+ROW |147348 |1497 |33694 |
+ROW |147349 |1497 |33695 |
+ROW |147350 |1497 |33696 |
+ROW |147351 |1497 |33697 |
+ROW |147352 |1496 |34085 |
+ROW |147353 |1497 |33704 |
+ROW |147354 |1497 |33705 |
+ROW |147355 |1497 |33706 |
+ROW |147356 |1497 |33707 |
+ROW |147357 |1497 |33708 |
+ROW |147358 |1496 |33709 |
+ROW |147359 |1497 |33710 |
+ROW |147360 |1497 |33711 |
+ROW |147361 |1497 |33712 |
+ROW |147362 |1497 |33713 |
+ROW |147363 |1497 |33714 |
+ROW |147364 |1497 |33715 |
+ROW |147365 |1497 |33716 |
+ROW |147366 |1497 |33717 |
+ROW |147367 |1497 |33718 |
+ROW |147368 |1497 |33719 |
+ROW |147369 |1497 |33720 |
+ROW |147370 |1499 |33721 |
+ROW |147371 |1499 |33722 |
+ROW |147372 |1499 |33723 |
+ROW |147373 |1498 |33724 |
+ROW |147374 |1498 |33725 |
+ROW |147375 |1498 |33727 |
+ROW |147376 |1498 |33728 |
+ROW |147377 |1498 |33729 |
+ROW |147378 |1498 |33730 |
+ROW |147379 |1498 |33731 |
+ROW |147380 |1499 |33732 |
+ROW |147381 |1499 |33733 |
+ROW |147382 |1499 |33734 |
+ROW |147383 |1499 |33735 |
+ROW |147384 |1499 |33736 |
+ROW |147385 |1499 |33737 |
+ROW |147386 |1499 |33738 |
+ROW |147387 |1499 |33742 |
+ROW |147388 |1499 |33743 |
+ROW |147389 |1499 |33744 |
+ROW |147390 |1499 |33745 |
+ROW |147391 |1499 |33746 |
+ROW |147392 |1499 |33747 |
+ROW |147393 |1499 |33748 |
+ROW |147394 |1498 |34086 |
+ROW |147395 |1499 |33755 |
+ROW |147396 |1499 |33756 |
+ROW |147397 |1499 |33757 |
+ROW |147398 |1499 |33758 |
+ROW |147399 |1499 |33759 |
+ROW |147400 |1498 |33760 |
+ROW |147401 |1499 |33761 |
+ROW |147402 |1499 |33762 |
+ROW |147403 |1499 |33763 |
+ROW |147404 |1499 |33764 |
+ROW |147405 |1499 |33765 |
+ROW |147406 |1499 |33766 |
+ROW |147407 |1499 |33767 |
+ROW |147408 |1499 |33768 |
+ROW |147409 |1499 |33769 |
+ROW |147410 |1499 |33770 |
+ROW |147411 |1499 |33771 |
+ROW |147412 |1501 |33772 |
+ROW |147413 |1501 |33773 |
+ROW |147414 |1501 |33774 |
+ROW |147415 |1500 |33775 |
+ROW |147416 |1500 |33776 |
+ROW |147417 |1500 |33778 |
+ROW |147418 |1500 |33779 |
+ROW |147419 |1500 |33780 |
+ROW |147420 |1500 |33781 |
+ROW |147421 |1500 |33782 |
+ROW |147422 |1501 |33783 |
+ROW |147423 |1501 |33784 |
+ROW |147424 |1501 |33785 |
+ROW |147425 |1501 |33786 |
+ROW |147426 |1501 |33787 |
+ROW |147427 |1501 |33788 |
+ROW |147428 |1501 |33789 |
+ROW |147429 |1501 |33793 |
+ROW |147430 |1501 |33794 |
+ROW |147431 |1501 |33795 |
+ROW |147432 |1501 |33796 |
+ROW |147433 |1501 |33797 |
+ROW |147434 |1501 |33798 |
+ROW |147435 |1501 |33799 |
+ROW |147436 |1500 |34087 |
+ROW |147437 |1501 |33806 |
+ROW |147438 |1501 |33807 |
+ROW |147439 |1501 |33808 |
+ROW |147440 |1501 |33809 |
+ROW |147441 |1501 |33810 |
+ROW |147442 |1500 |33811 |
+ROW |147443 |1501 |33812 |
+ROW |147444 |1501 |33813 |
+ROW |147445 |1501 |33814 |
+ROW |147446 |1501 |33815 |
+ROW |147447 |1501 |33816 |
+ROW |147448 |1501 |33817 |
+ROW |147449 |1501 |33818 |
+ROW |147450 |1501 |33819 |
+ROW |147451 |1501 |33820 |
+ROW |147452 |1501 |33821 |
+ROW |147453 |1501 |33822 |
+ROW |147454 |1503 |33823 |
+ROW |147455 |1503 |33824 |
+ROW |147456 |1503 |33825 |
+ROW |147457 |1502 |33826 |
+ROW |147458 |1502 |33827 |
+ROW |147459 |1502 |33829 |
+ROW |147460 |1502 |33830 |
+ROW |147461 |1502 |33831 |
+ROW |147462 |1502 |33832 |
+ROW |147463 |1502 |33833 |
+ROW |147464 |1503 |33834 |
+ROW |147465 |1503 |33835 |
+ROW |147466 |1503 |33836 |
+ROW |147467 |1503 |33837 |
+ROW |147468 |1503 |33838 |
+ROW |147469 |1503 |33839 |
+ROW |147470 |1503 |33840 |
+ROW |147471 |1503 |33844 |
+ROW |147472 |1503 |33845 |
+ROW |147473 |1503 |33846 |
+ROW |147474 |1503 |33847 |
+ROW |147475 |1503 |33848 |
+ROW |147476 |1503 |33849 |
+ROW |147477 |1503 |33850 |
+ROW |147478 |1502 |34088 |
+ROW |147479 |1503 |33857 |
+ROW |147480 |1503 |33858 |
+ROW |147481 |1503 |33859 |
+ROW |147482 |1503 |33860 |
+ROW |147483 |1503 |33861 |
+ROW |147484 |1502 |33862 |
+ROW |147485 |1503 |33863 |
+ROW |147486 |1503 |33864 |
+ROW |147487 |1503 |33865 |
+ROW |147488 |1503 |33866 |
+ROW |147489 |1503 |33867 |
+ROW |147490 |1503 |33868 |
+ROW |147491 |1503 |33869 |
+ROW |147492 |1503 |33870 |
+ROW |147493 |1503 |33871 |
+ROW |147494 |1503 |33872 |
+ROW |147495 |1503 |33873 |
+ROW |147496 |1505 |33874 |
+ROW |147497 |1505 |33875 |
+ROW |147498 |1505 |33876 |
+ROW |147499 |1504 |33877 |
+ROW |147500 |1504 |33878 |
+ROW |147501 |1504 |33880 |
+ROW |147502 |1504 |33881 |
+ROW |147503 |1504 |33882 |
+ROW |147504 |1504 |33883 |
+ROW |147505 |1504 |33884 |
+ROW |147506 |1505 |33885 |
+ROW |147507 |1505 |33886 |
+ROW |147508 |1505 |33887 |
+ROW |147509 |1505 |33888 |
+ROW |147510 |1505 |33889 |
+ROW |147511 |1505 |33890 |
+ROW |147512 |1505 |33891 |
+ROW |147513 |1505 |33895 |
+ROW |147514 |1505 |33896 |
+ROW |147515 |1505 |33897 |
+ROW |147516 |1505 |33898 |
+ROW |147517 |1505 |33899 |
+ROW |147518 |1505 |33900 |
+ROW |147519 |1505 |33901 |
+ROW |147520 |1504 |34089 |
+ROW |147521 |1505 |33908 |
+ROW |147522 |1505 |33909 |
+ROW |147523 |1505 |33910 |
+ROW |147524 |1505 |33911 |
+ROW |147525 |1505 |33912 |
+ROW |147526 |1504 |33913 |
+ROW |147527 |1505 |33914 |
+ROW |147528 |1505 |33915 |
+ROW |147529 |1505 |33916 |
+ROW |147530 |1505 |33917 |
+ROW |147531 |1505 |33918 |
+ROW |147532 |1505 |33919 |
+ROW |147533 |1505 |33920 |
+ROW |147534 |1505 |33921 |
+ROW |147535 |1505 |33922 |
+ROW |147536 |1505 |33923 |
+ROW |147537 |1505 |33924 |
+ROW |147538 |1489 |33433 |
+ROW |147539 |1489 |33434 |
+ROW |147540 |1488 |33435 |
+ROW |147541 |1488 |33436 |
+ROW |147542 |1488 |33438 |
+ROW |147543 |1488 |33439 |
+ROW |147544 |1488 |33440 |
+ROW |147545 |1488 |33441 |
+ROW |147546 |1488 |33442 |
+ROW |147547 |1489 |33443 |
+ROW |147548 |1489 |33444 |
+ROW |147549 |1489 |33445 |
+ROW |147550 |1489 |33446 |
+ROW |147551 |1489 |33447 |
+ROW |147552 |1489 |33448 |
+ROW |147553 |1489 |33449 |
+ROW |147554 |1489 |33453 |
+ROW |147555 |1489 |33454 |
+ROW |147556 |1489 |33455 |
+ROW |147557 |1489 |33456 |
+ROW |147558 |1489 |33457 |
+ROW |147559 |1489 |33458 |
+ROW |147560 |1489 |33459 |
+ROW |147561 |1489 |33925 |
+ROW |147562 |1488 |34090 |
+ROW |147563 |1489 |33465 |
+ROW |147564 |1489 |33466 |
+ROW |147565 |1489 |33467 |
+ROW |147566 |1489 |33468 |
+ROW |147567 |1489 |33469 |
+ROW |147568 |1488 |33470 |
+ROW |147569 |1489 |33471 |
+ROW |147570 |1489 |33472 |
+ROW |147571 |1489 |33473 |
+ROW |147572 |1489 |33474 |
+ROW |147573 |1489 |33475 |
+ROW |147574 |1489 |33476 |
+ROW |147575 |1489 |33477 |
+ROW |147576 |1489 |33478 |
+ROW |147577 |1489 |33927 |
+ROW |147578 |1489 |33928 |
+ROW |147579 |1489 |33929 |
+ROW |147580 |1507 |33930 |
+ROW |147581 |1507 |33931 |
+ROW |147582 |1507 |33932 |
+ROW |147583 |1506 |33933 |
+ROW |147584 |1506 |33934 |
+ROW |147585 |1506 |33936 |
+ROW |147586 |1506 |33937 |
+ROW |147587 |1506 |33938 |
+ROW |147588 |1506 |33939 |
+ROW |147589 |1506 |33940 |
+ROW |147590 |1507 |33941 |
+ROW |147591 |1507 |33942 |
+ROW |147592 |1507 |33943 |
+ROW |147593 |1507 |33944 |
+ROW |147594 |1507 |33945 |
+ROW |147595 |1507 |33946 |
+ROW |147596 |1507 |33947 |
+ROW |147597 |1507 |33951 |
+ROW |147598 |1507 |33952 |
+ROW |147599 |1507 |33953 |
+ROW |147600 |1507 |33954 |
+ROW |147601 |1507 |33955 |
+ROW |147602 |1507 |33956 |
+ROW |147603 |1507 |33957 |
+ROW |147604 |1506 |34091 |
+ROW |147605 |1507 |33964 |
+ROW |147606 |1507 |33965 |
+ROW |147607 |1507 |33966 |
+ROW |147608 |1507 |33967 |
+ROW |147609 |1507 |33968 |
+ROW |147610 |1506 |33969 |
+ROW |147611 |1507 |33970 |
+ROW |147612 |1507 |33971 |
+ROW |147613 |1507 |33972 |
+ROW |147614 |1507 |33973 |
+ROW |147615 |1507 |33974 |
+ROW |147616 |1507 |33975 |
+ROW |147617 |1507 |33976 |
+ROW |147618 |1507 |33977 |
+ROW |147619 |1507 |33978 |
+ROW |147620 |1507 |33979 |
+ROW |147621 |1507 |33980 |
+ROW |147622 |1509 |33981 |
+ROW |147623 |1509 |33982 |
+ROW |147624 |1509 |33983 |
+ROW |147625 |1508 |33984 |
+ROW |147626 |1508 |33985 |
+ROW |147627 |1508 |33987 |
+ROW |147628 |1508 |33988 |
+ROW |147629 |1508 |33989 |
+ROW |147630 |1508 |33990 |
+ROW |147631 |1508 |33991 |
+ROW |147632 |1509 |33992 |
+ROW |147633 |1509 |33993 |
+ROW |147634 |1509 |33994 |
+ROW |147635 |1509 |33995 |
+ROW |147636 |1509 |33996 |
+ROW |147637 |1509 |33997 |
+ROW |147638 |1509 |33998 |
+ROW |147639 |1509 |34002 |
+ROW |147640 |1509 |34003 |
+ROW |147641 |1509 |34004 |
+ROW |147642 |1509 |34005 |
+ROW |147643 |1509 |34006 |
+ROW |147644 |1509 |34007 |
+ROW |147645 |1509 |34008 |
+ROW |147646 |1508 |34092 |
+ROW |147647 |1509 |34015 |
+ROW |147648 |1509 |34016 |
+ROW |147649 |1509 |34017 |
+ROW |147650 |1509 |34018 |
+ROW |147651 |1509 |34019 |
+ROW |147652 |1508 |34020 |
+ROW |147653 |1509 |34021 |
+ROW |147654 |1509 |34022 |
+ROW |147655 |1509 |34023 |
+ROW |147656 |1509 |34024 |
+ROW |147657 |1509 |34025 |
+ROW |147658 |1509 |34026 |
+ROW |147659 |1509 |34027 |
+ROW |147660 |1509 |34028 |
+ROW |147661 |1509 |34029 |
+ROW |147662 |1509 |34030 |
+ROW |147663 |1509 |34031 |
+ROW |147664 |1511 |34032 |
+ROW |147665 |1511 |34033 |
+ROW |147666 |1511 |34034 |
+ROW |147667 |1510 |34035 |
+ROW |147668 |1510 |34036 |
+ROW |147669 |1510 |34038 |
+ROW |147670 |1510 |34039 |
+ROW |147671 |1510 |34040 |
+ROW |147672 |1510 |34041 |
+ROW |147673 |1510 |34042 |
+ROW |147674 |1511 |34043 |
+ROW |147675 |1511 |34044 |
+ROW |147676 |1511 |34045 |
+ROW |147677 |1511 |34046 |
+ROW |147678 |1511 |34047 |
+ROW |147679 |1511 |34048 |
+ROW |147680 |1511 |34049 |
+ROW |147681 |1511 |34053 |
+ROW |147682 |1511 |34054 |
+ROW |147683 |1511 |34055 |
+ROW |147684 |1511 |34056 |
+ROW |147685 |1511 |34057 |
+ROW |147686 |1511 |34058 |
+ROW |147687 |1511 |34059 |
+ROW |147688 |1510 |34093 |
+ROW |147689 |1511 |34066 |
+ROW |147690 |1511 |34067 |
+ROW |147691 |1511 |34068 |
+ROW |147692 |1511 |34069 |
+ROW |147693 |1511 |34070 |
+ROW |147694 |1510 |34071 |
+ROW |147695 |1511 |34072 |
+ROW |147696 |1511 |34073 |
+ROW |147697 |1511 |34074 |
+ROW |147698 |1511 |34075 |
+ROW |147699 |1511 |34076 |
+ROW |147700 |1511 |34077 |
+ROW |147701 |1511 |34078 |
+ROW |147702 |1511 |34079 |
+ROW |147703 |1511 |34080 |
+ROW |147704 |1511 |34081 |
+ROW |147705 |1511 |34082 |
+ROW |147706 |1424 |32776 |
+ROW |147707 |1424 |32777 |
+ROW |147708 |1424 |32778 |
+ROW |147709 |1424 |32779 |
+ROW |147710 |1491 |33479 |
+ROW |147711 |1490 |33480 |
+ROW |147712 |1491 |33481 |
+ROW |147713 |1491 |33482 |
+ROW |147714 |1491 |33483 |
+ROW |147715 |1491 |33484 |
+ROW |147716 |1491 |33485 |
+ROW |147717 |1491 |33486 |
+ROW |147718 |1491 |33487 |
+ROW |147719 |1490 |33488 |
+ROW |147720 |1490 |33489 |
+ROW |147721 |1491 |33490 |
+ROW |147722 |1490 |33491 |
+ROW |147723 |1491 |33492 |
+ROW |147724 |1490 |33493 |
+ROW |147725 |1490 |33494 |
+ROW |147726 |1490 |33495 |
+ROW |147727 |1491 |33496 |
+ROW |147728 |1491 |33497 |
+ROW |147729 |1491 |33498 |
+ROW |147730 |1491 |33499 |
+ROW |147731 |1490 |33500 |
+ROW |147732 |1490 |33501 |
+ROW |147733 |1491 |33502 |
+ROW |147734 |1491 |33503 |
+ROW |147735 |1490 |33504 |
+ROW |147736 |1490 |33505 |
+ROW |147737 |1490 |33506 |
+ROW |147738 |1490 |33507 |
+ROW |147739 |1490 |33508 |
+ROW |147740 |1490 |33509 |
+ROW |147741 |1491 |33510 |
+ROW |147742 |1491 |33511 |
+ROW |147743 |1490 |33512 |
+ROW |147744 |1491 |33545 |
+ROW |147745 |1491 |33551 |
+ROW |147746 |1491 |33552 |
+ROW |147747 |1491 |33553 |
+ROW |147748 |1491 |33559 |
+ROW |147749 |1491 |33560 |
+ROW |147750 |1491 |33561 |
+ROW |147751 |1491 |33562 |
+ROW |147752 |1416 |32612 |
+ROW |147753 |1416 |32613 |
+ROW |147754 |1416 |32614 |
+ROW |147755 |1416 |32615 |
+ROW |147756 |1325 |30685 |
+ROW |147757 |1616 |34946 |
+ROW |147758 |1616 |34947 |
+ROW |147759 |1616 |34948 |
+ROW |147760 |1616 |34949 |
+ROW |147761 |1616 |34950 |
+ROW |147762 |1621 |34951 |
+ROW |147763 |1616 |34952 |
+ROW |147764 |1621 |34953 |
+ROW |147765 |1614 |34964 |
+ROW |147766 |1614 |34965 |
+ROW |147767 |1614 |34966 |
+ROW |147768 |1615 |34967 |
+ROW |147769 |1619 |34982 |
+ROW |147770 |1619 |34983 |
+ROW |147771 |1619 |34984 |
+ROW |147772 |1619 |34985 |
+ROW |147773 |1619 |34986 |
+ROW |147774 |1620 |34987 |
+ROW |147775 |1622 |34988 |
+ROW |147776 |1622 |34989 |
+ROW |147777 |1622 |34990 |
+ROW |147778 |1622 |34991 |
+ROW |147779 |1622 |34992 |
+ROW |147780 |1617 |34993 |
+ROW |147781 |1617 |34994 |
+ROW |147782 |1621 |34995 |
+ROW |147783 |1623 |34996 |
+ROW |147784 |1623 |34997 |
+ROW |147785 |1623 |34998 |
+ROW |147786 |1277 |30066 |
+ROW |147787 |1277 |30067 |
+ROW |147788 |1277 |30068 |
+ROW |147789 |1277 |30069 |
+ROW |147790 |1277 |30070 |
+ROW |147791 |1276 |30071 |
+ROW |147792 |1271 |30072 |
+ROW |147793 |1274 |30073 |
+ROW |147794 |1274 |30074 |
+ROW |147795 |1273 |30075 |
+ROW |147796 |1275 |30076 |
+ROW |147797 |1275 |30077 |
+ROW |147798 |1275 |30078 |
+ROW |147799 |1275 |30079 |
+ROW |147800 |1278 |30080 |
+ROW |147801 |1278 |30081 |
+ROW |147802 |1278 |30082 |
+ROW |147803 |1272 |30083 |
+ROW |147804 |1272 |30084 |
+ROW |147805 |1272 |30085 |
+ROW |147806 |1635 |35041 |
+ROW |147807 |1635 |35042 |
+ROW |147808 |1636 |35043 |
+ROW |147809 |1636 |35044 |
+ROW |147810 |1636 |35045 |
+ROW |147811 |1635 |35046 |
+ROW |147812 |1635 |35047 |
+ROW |147813 |1635 |35048 |
+ROW |147814 |1639 |35049 |
+ROW |147815 |1636 |35050 |
+ROW |147816 |1639 |35051 |
+ROW |147817 |1635 |35052 |
+ROW |147818 |1639 |35053 |
+ROW |147819 |1633 |35061 |
+ROW |147820 |1633 |35062 |
+ROW |147821 |1633 |35063 |
+ROW |147822 |1634 |35064 |
+ROW |147823 |1634 |35065 |
+ROW |147824 |1637 |35066 |
+ROW |147825 |1637 |35067 |
+ROW |147826 |1637 |35068 |
+ROW |147827 |1637 |35069 |
+ROW |147828 |1637 |35070 |
+ROW |147829 |1637 |35071 |
+ROW |147830 |1638 |35072 |
+ROW |147831 |1640 |35073 |
+ROW |147832 |1640 |35074 |
+ROW |147833 |1641 |35075 |
+ROW |147834 |1641 |35076 |
+ROW |147835 |1641 |35077 |
+ROW |147836 |1641 |35078 |
+ROW |147837 |1641 |35079 |
+ROW |147838 |1641 |35080 |
+ROW |147839 |1653 |35123 |
+ROW |147840 |1653 |35124 |
+ROW |147841 |1654 |35125 |
+ROW |147842 |1654 |35126 |
+ROW |147843 |1654 |35127 |
+ROW |147844 |1653 |35128 |
+ROW |147845 |1653 |35129 |
+ROW |147846 |1653 |35130 |
+ROW |147847 |1657 |35131 |
+ROW |147848 |1654 |35132 |
+ROW |147849 |1657 |35133 |
+ROW |147850 |1653 |35134 |
+ROW |147851 |1657 |35135 |
+ROW |147852 |1651 |35143 |
+ROW |147853 |1651 |35144 |
+ROW |147854 |1651 |35145 |
+ROW |147855 |1652 |35146 |
+ROW |147856 |1652 |35147 |
+ROW |147857 |1655 |35148 |
+ROW |147858 |1655 |35149 |
+ROW |147859 |1655 |35150 |
+ROW |147860 |1655 |35151 |
+ROW |147861 |1655 |35152 |
+ROW |147862 |1655 |35153 |
+ROW |147863 |1656 |35154 |
+ROW |147864 |1658 |35155 |
+ROW |147865 |1658 |35156 |
+ROW |147866 |1659 |35157 |
+ROW |147867 |1659 |35158 |
+ROW |147868 |1659 |35159 |
+ROW |147869 |1659 |35160 |
+ROW |147870 |1659 |35161 |
+ROW |147871 |1659 |35162 |
+ROW |147872 |1671 |35205 |
+ROW |147873 |1671 |35206 |
+ROW |147874 |1672 |35207 |
+ROW |147875 |1672 |35208 |
+ROW |147876 |1672 |35209 |
+ROW |147877 |1671 |35210 |
+ROW |147878 |1671 |35211 |
+ROW |147879 |1671 |35212 |
+ROW |147880 |1675 |35213 |
+ROW |147881 |1672 |35214 |
+ROW |147882 |1675 |35215 |
+ROW |147883 |1671 |35216 |
+ROW |147884 |1675 |35217 |
+ROW |147885 |1669 |35225 |
+ROW |147886 |1669 |35226 |
+ROW |147887 |1669 |35227 |
+ROW |147888 |1670 |35228 |
+ROW |147889 |1670 |35229 |
+ROW |147890 |1673 |35230 |
+ROW |147891 |1673 |35231 |
+ROW |147892 |1673 |35232 |
+ROW |147893 |1673 |35233 |
+ROW |147894 |1673 |35234 |
+ROW |147895 |1673 |35235 |
+ROW |147896 |1674 |35236 |
+ROW |147897 |1676 |35237 |
+ROW |147898 |1676 |35238 |
+ROW |147899 |1677 |35239 |
+ROW |147900 |1677 |35240 |
+ROW |147901 |1677 |35241 |
+ROW |147902 |1677 |35242 |
+ROW |147903 |1677 |35243 |
+ROW |147904 |1677 |35244 |
+ROW |147905 |1689 |35287 |
+ROW |147906 |1689 |35288 |
+ROW |147907 |1690 |35289 |
+ROW |147908 |1690 |35290 |
+ROW |147909 |1690 |35291 |
+ROW |147910 |1689 |35292 |
+ROW |147911 |1689 |35293 |
+ROW |147912 |1689 |35294 |
+ROW |147913 |1693 |35295 |
+ROW |147914 |1690 |35296 |
+ROW |147915 |1693 |35297 |
+ROW |147916 |1689 |35298 |
+ROW |147917 |1693 |35299 |
+ROW |147918 |1687 |35307 |
+ROW |147919 |1687 |35308 |
+ROW |147920 |1687 |35309 |
+ROW |147921 |1688 |35310 |
+ROW |147922 |1688 |35311 |
+ROW |147923 |1691 |35312 |
+ROW |147924 |1691 |35313 |
+ROW |147925 |1691 |35314 |
+ROW |147926 |1691 |35315 |
+ROW |147927 |1691 |35316 |
+ROW |147928 |1691 |35317 |
+ROW |147929 |1692 |35318 |
+ROW |147930 |1694 |35319 |
+ROW |147931 |1694 |35320 |
+ROW |147932 |1695 |35321 |
+ROW |147933 |1695 |35322 |
+ROW |147934 |1695 |35323 |
+ROW |147935 |1695 |35324 |
+ROW |147936 |1695 |35325 |
+ROW |147937 |1695 |35326 |
+ROW |147938 |1070 |28341 |
+ROW |147939 |1073 |28342 |
+ROW |147940 |1073 |28344 |
+ROW |147941 |1073 |28345 |
+ROW |147942 |1073 |30141 |
+ROW |147943 |1076 |28354 |
+ROW |147944 |1076 |28355 |
+ROW |147945 |1076 |28356 |
+ROW |147946 |1076 |28357 |
+ROW |147947 |1075 |28358 |
+ROW |147948 |1072 |28359 |
+ROW |147949 |1072 |28360 |
+ROW |147950 |1074 |28361 |
+ROW |147951 |1074 |28362 |
+ROW |147952 |1074 |28363 |
+ROW |147953 |1074 |28364 |
+ROW |147954 |1074 |28365 |
+ROW |147955 |1074 |28366 |
+ROW |147956 |1074 |28367 |
+ROW |147957 |1077 |28368 |
+ROW |147958 |1077 |28369 |
+ROW |147959 |1077 |28370 |
+ROW |147960 |1077 |28371 |
+ROW |147961 |1077 |28372 |
+ROW |147962 |1077 |28373 |
+ROW |147963 |1071 |28374 |
+ROW |147964 |1071 |28375 |
+ROW |147965 |1071 |28376 |
+ROW |147966 |1698 |35327 |
+ROW |147967 |1698 |35328 |
+ROW |147968 |1699 |35329 |
+ROW |147969 |1699 |35330 |
+ROW |147970 |1698 |35331 |
+ROW |147971 |1698 |35332 |
+ROW |147972 |1698 |35333 |
+ROW |147973 |1704 |35334 |
+ROW |147974 |1703 |35335 |
+ROW |147975 |1703 |35336 |
+ROW |147976 |1698 |35337 |
+ROW |147977 |1703 |35338 |
+ROW |147978 |1696 |35353 |
+ROW |147979 |1696 |35354 |
+ROW |147980 |1696 |35355 |
+ROW |147981 |1696 |35356 |
+ROW |147982 |1697 |35357 |
+ROW |147983 |1700 |35358 |
+ROW |147984 |1701 |35359 |
+ROW |147985 |1701 |35360 |
+ROW |147986 |1701 |35361 |
+ROW |147987 |1701 |35362 |
+ROW |147988 |1701 |35363 |
+ROW |147989 |1701 |35364 |
+ROW |147990 |1702 |35365 |
+ROW |147991 |1704 |35366 |
+ROW |147992 |1704 |35367 |
+ROW |147993 |1704 |35368 |
+ROW |147994 |1704 |35369 |
+ROW |147995 |1704 |35370 |
+ROW |147996 |1704 |35371 |
+ROW |147997 |1704 |35372 |
+ROW |147998 |1704 |35373 |
+ROW |147999 |1704 |35374 |
+ROW |148000 |1704 |35375 |
+ROW |148001 |1704 |35376 |
+ROW |148002 |1704 |35377 |
+ROW |148003 |1704 |35378 |
+ROW |148004 |1704 |35379 |
+ROW |148005 |1704 |35380 |
+ROW |148006 |1705 |35381 |
+ROW |148007 |1705 |35382 |
+ROW |148008 |1705 |35383 |
+ROW |148009 |1708 |35384 |
+ROW |148010 |1708 |35385 |
+ROW |148011 |1709 |35386 |
+ROW |148012 |1709 |35387 |
+ROW |148013 |1708 |35388 |
+ROW |148014 |1708 |35389 |
+ROW |148015 |1708 |35390 |
+ROW |148016 |1714 |35391 |
+ROW |148017 |1713 |35392 |
+ROW |148018 |1713 |35393 |
+ROW |148019 |1708 |35394 |
+ROW |148020 |1713 |35395 |
+ROW |148021 |1706 |35410 |
+ROW |148022 |1706 |35411 |
+ROW |148023 |1706 |35412 |
+ROW |148024 |1706 |35413 |
+ROW |148025 |1707 |35414 |
+ROW |148026 |1710 |35415 |
+ROW |148027 |1711 |35416 |
+ROW |148028 |1711 |35417 |
+ROW |148029 |1711 |35418 |
+ROW |148030 |1711 |35419 |
+ROW |148031 |1711 |35420 |
+ROW |148032 |1711 |35421 |
+ROW |148033 |1712 |35422 |
+ROW |148034 |1714 |35423 |
+ROW |148035 |1714 |35424 |
+ROW |148036 |1714 |35425 |
+ROW |148037 |1714 |35426 |
+ROW |148038 |1714 |35427 |
+ROW |148039 |1714 |35428 |
+ROW |148040 |1714 |35429 |
+ROW |148041 |1714 |35430 |
+ROW |148042 |1714 |35431 |
+ROW |148043 |1714 |35432 |
+ROW |148044 |1714 |35433 |
+ROW |148045 |1714 |35434 |
+ROW |148046 |1714 |35435 |
+ROW |148047 |1714 |35436 |
+ROW |148048 |1714 |35437 |
+ROW |148049 |1715 |35438 |
+ROW |148050 |1715 |35439 |
+ROW |148051 |1715 |35440 |
+ROW |148052 |1718 |35441 |
+ROW |148053 |1718 |35442 |
+ROW |148054 |1719 |35443 |
+ROW |148055 |1719 |35444 |
+ROW |148056 |1718 |35445 |
+ROW |148057 |1718 |35446 |
+ROW |148058 |1718 |35447 |
+ROW |148059 |1724 |35448 |
+ROW |148060 |1723 |35449 |
+ROW |148061 |1723 |35450 |
+ROW |148062 |1718 |35451 |
+ROW |148063 |1723 |35452 |
+ROW |148064 |1716 |35467 |
+ROW |148065 |1716 |35468 |
+ROW |148066 |1716 |35469 |
+ROW |148067 |1716 |35470 |
+ROW |148068 |1717 |35471 |
+ROW |148069 |1720 |35472 |
+ROW |148070 |1721 |35473 |
+ROW |148071 |1721 |35474 |
+ROW |148072 |1721 |35475 |
+ROW |148073 |1721 |35476 |
+ROW |148074 |1721 |35477 |
+ROW |148075 |1721 |35478 |
+ROW |148076 |1722 |35479 |
+ROW |148077 |1724 |35480 |
+ROW |148078 |1724 |35481 |
+ROW |148079 |1724 |35482 |
+ROW |148080 |1724 |35483 |
+ROW |148081 |1724 |35484 |
+ROW |148082 |1724 |35485 |
+ROW |148083 |1724 |35486 |
+ROW |148084 |1724 |35487 |
+ROW |148085 |1724 |35488 |
+ROW |148086 |1724 |35489 |
+ROW |148087 |1724 |35490 |
+ROW |148088 |1724 |35491 |
+ROW |148089 |1724 |35492 |
+ROW |148090 |1724 |35493 |
+ROW |148091 |1724 |35494 |
+ROW |148092 |1725 |35495 |
+ROW |148093 |1725 |35496 |
+ROW |148094 |1725 |35497 |
+ROW |148095 |1728 |35498 |
+ROW |148096 |1728 |35499 |
+ROW |148097 |1729 |35500 |
+ROW |148098 |1729 |35501 |
+ROW |148099 |1728 |35502 |
+ROW |148100 |1728 |35503 |
+ROW |148101 |1728 |35504 |
+ROW |148102 |1734 |35505 |
+ROW |148103 |1733 |35506 |
+ROW |148104 |1733 |35507 |
+ROW |148105 |1728 |35508 |
+ROW |148106 |1733 |35509 |
+ROW |148107 |1726 |35524 |
+ROW |148108 |1726 |35525 |
+ROW |148109 |1726 |35526 |
+ROW |148110 |1726 |35527 |
+ROW |148111 |1727 |35528 |
+ROW |148112 |1730 |35529 |
+ROW |148113 |1731 |35530 |
+ROW |148114 |1731 |35531 |
+ROW |148115 |1731 |35532 |
+ROW |148116 |1731 |35533 |
+ROW |148117 |1731 |35534 |
+ROW |148118 |1731 |35535 |
+ROW |148119 |1732 |35536 |
+ROW |148120 |1734 |35537 |
+ROW |148121 |1734 |35538 |
+ROW |148122 |1734 |35539 |
+ROW |148123 |1734 |35540 |
+ROW |148124 |1734 |35541 |
+ROW |148125 |1734 |35542 |
+ROW |148126 |1734 |35543 |
+ROW |148127 |1734 |35544 |
+ROW |148128 |1734 |35545 |
+ROW |148129 |1734 |35546 |
+ROW |148130 |1734 |35547 |
+ROW |148131 |1734 |35548 |
+ROW |148132 |1734 |35549 |
+ROW |148133 |1734 |35550 |
+ROW |148134 |1734 |35551 |
+ROW |148135 |1735 |35552 |
+ROW |148136 |1735 |35553 |
+ROW |148137 |1735 |35554 |
+ROW |148138 |1085 |28388 |
+ROW |148139 |1082 |28390 |
+ROW |148140 |1082 |28391 |
+ROW |148141 |1079 |29994 |
+ROW |148142 |1085 |28404 |
+ROW |148143 |1085 |28405 |
+ROW |148144 |1085 |28406 |
+ROW |148145 |1085 |28407 |
+ROW |148146 |1085 |28408 |
+ROW |148147 |1085 |28409 |
+ROW |148148 |1084 |28411 |
+ROW |148149 |1081 |28412 |
+ROW |148150 |1080 |28413 |
+ROW |148151 |1080 |28414 |
+ROW |148152 |1080 |28415 |
+ROW |148153 |1080 |28416 |
+ROW |148154 |1083 |28417 |
+ROW |148155 |1083 |28418 |
+ROW |148156 |1083 |28419 |
+ROW |148157 |1083 |28420 |
+ROW |148158 |1083 |28421 |
+ROW |148159 |1083 |28422 |
+ROW |148160 |1086 |28423 |
+ROW |148161 |1086 |28424 |
+ROW |148162 |1086 |28425 |
+ROW |148163 |1085 |32732 |
+ROW |148164 |1085 |32733 |
+ROW |148165 |1085 |32734 |
+ROW |148166 |1085 |32735 |
+ROW |148167 |1085 |32736 |
+ROW |148168 |1085 |32737 |
+ROW |148169 |1085 |32738 |
+ROW |148170 |1085 |32739 |
+ROW |148171 |1085 |32740 |
+ROW |148172 |1095 |28465 |
+ROW |148173 |1097 |28466 |
+ROW |148174 |1097 |28467 |
+ROW |148175 |1100 |28474 |
+ROW |148176 |1100 |28475 |
+ROW |148177 |1100 |28476 |
+ROW |148178 |1099 |28477 |
+ROW |148179 |1096 |28478 |
+ROW |148180 |1096 |28479 |
+ROW |148181 |1098 |28480 |
+ROW |148182 |1098 |28481 |
+ROW |148183 |1104 |28495 |
+ROW |148184 |1103 |28496 |
TABLE |mappings
FIELDS|mappingid|valuemapid|value|newvalue |
@@ -32827,6 +32863,38 @@ ROW |2079 |250 |10 |port
ROW |2080 |250 |11 |stack |
ROW |2081 |250 |12 |cpu |
ROW |2082 |20 |3 |testing |
+ROW |2083 |251 |0 |none |
+ROW |2084 |251 |1 |enabled |
+ROW |2085 |251 |2 |disabled |
+ROW |2086 |251 |3 |disabledbyparent |
+ROW |2087 |252 |0 |none |
+ROW |2088 |252 |1 |green |
+ROW |2089 |252 |2 |yellow |
+ROW |2090 |252 |3 |red |
+ROW |2091 |252 |4 |blue |
+ROW |2092 |252 |5 |gray |
+ROW |2093 |253 |0 |unknown |
+ROW |2094 |253 |1 |offline |
+ROW |2095 |253 |2 |forcedOffline |
+ROW |2096 |253 |3 |standby |
+ROW |2097 |253 |4 |active |
+ROW |2098 |254 |0 |unknown |
+ROW |2099 |254 |1 |syncing |
+ROW |2100 |254 |2 |needManualSync |
+ROW |2101 |254 |3 |inSync |
+ROW |2102 |254 |4 |syncFailed |
+ROW |2103 |254 |5 |syncDisconnected |
+ROW |2104 |254 |6 |standalone |
+ROW |2105 |254 |7 |awaitingInitialSync |
+ROW |2106 |254 |8 |incompatibleVersion |
+ROW |2107 |254 |9 |partialSync |
+ROW |2108 |255 |0 |unknown |
+ROW |2109 |255 |1 |notpresent |
+ROW |2110 |255 |2 |down |
+ROW |2111 |255 |3 |lowerlayerdown |
+ROW |2112 |255 |4 |testing |
+ROW |2113 |255 |5 |dormant |
+ROW |2114 |255 |6 |up |
TABLE |sysmaps
FIELDS|sysmapid|name |width|height|backgroundid|label_type|label_location|highlight|expandproblem|markelements|show_unack|grid_size|grid_show|grid_align|label_format|label_type_host|label_type_hostgroup|label_type_trigger|label_type_map|label_type_image|label_string_host|label_string_hostgroup|label_string_trigger|label_string_map|label_string_image|iconmapid|expand_macros|severity_min|userid|private|show_suppressed|
@@ -33929,19 +33997,15 @@ ROW |2362 |31321 |31306 |
ROW |2363 |31322 |31306 |
ROW |2364 |31323 |31306 |
ROW |2365 |31324 |31306 |
-ROW |2366 |31335 |31333 |
ROW |2367 |31336 |31333 |
ROW |2368 |31337 |31333 |
ROW |2369 |31338 |31333 |
-ROW |2370 |31339 |31334 |
ROW |2371 |31340 |31334 |
ROW |2372 |31341 |31334 |
ROW |2373 |31342 |31334 |
-ROW |2374 |31353 |31351 |
ROW |2375 |31354 |31351 |
ROW |2376 |31355 |31351 |
ROW |2377 |31356 |31351 |
-ROW |2378 |31357 |31352 |
ROW |2379 |31358 |31352 |
ROW |2380 |31359 |31352 |
ROW |2381 |31360 |31352 |
@@ -36445,6 +36509,13 @@ ROW |5066 |36621 |36604 |
ROW |5067 |36622 |36604 |
ROW |5068 |36623 |32742 |
ROW |5069 |36624 |32754 |
+ROW |5070 |36625 |30571 |
+ROW |5071 |36628 |35677 |
+ROW |5072 |36629 |35677 |
+ROW |5073 |36630 |31333 |
+ROW |5074 |36631 |31334 |
+ROW |5075 |36632 |31351 |
+ROW |5076 |36633 |31352 |
TABLE |host_discovery
FIELDS|hostid|parent_hostid|parent_itemid|
@@ -36707,11 +36778,11 @@ ROW |261 |27321 |9 |{#IFADMINSTATUS} |{$NET.IF.IFADMI
ROW |262 |27331 |8 |{#IFOPERSTATUS} |1 |
ROW |263 |27331 |8 |{#SNMPVALUE} |(2&pipe;3) |
ROW |266 |27393 |8 |{#ENT_SN} |.+ |
-ROW |267 |27393 |8 |{#ENT_CLASS} |[^3] |
+ROW |267 |27393 |8 |{#ENT_CLASS} |^3$ |
ROW |268 |27399 |8 |{#ENT_SN} |.+ |
-ROW |269 |27399 |8 |{#ENT_CLASS} |[^3] |
+ROW |269 |27399 |8 |{#ENT_CLASS} |^3$ |
ROW |272 |27410 |8 |{#ENT_SN} |.+ |
-ROW |273 |27410 |8 |{#ENT_CLASS} |[^3] |
+ROW |273 |27410 |8 |{#ENT_CLASS} |^3$ |
ROW |274 |27450 |8 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.MATCHES} |
ROW |275 |27450 |9 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |
ROW |276 |27460 |8 |{#IFOPERSTATUS} |1 |
@@ -36793,7 +36864,7 @@ ROW |399 |28197 |8 |{#SNMPVALUE} |10
ROW |400 |28198 |8 |{#ENT_CLASS} |3 |
ROW |401 |28199 |8 |{#ENT_CLASS} |6 |
ROW |402 |28207 |8 |{#ENT_SN} |.+ |
-ROW |403 |28207 |8 |{#ENT_CLASS} |[^3] |
+ROW |403 |28207 |8 |{#ENT_CLASS} |^3$ |
ROW |404 |28223 |8 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.MATCHES} |
ROW |405 |28223 |9 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |
ROW |407 |27098 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.MATCHES} |
@@ -38939,19 +39010,15 @@ ROW |942 |133 |31319 |
ROW |943 |133 |31320 |
ROW |944 |133 |31322 |
ROW |945 |133 |31323 |
-ROW |946 |134 |31335 |
ROW |947 |134 |31336 |
ROW |948 |134 |31337 |
ROW |949 |134 |31338 |
-ROW |950 |135 |31339 |
ROW |951 |135 |31340 |
ROW |952 |135 |31341 |
ROW |953 |135 |31342 |
-ROW |954 |136 |31353 |
ROW |955 |136 |31354 |
ROW |956 |136 |31355 |
ROW |957 |136 |31356 |
-ROW |958 |137 |31357 |
ROW |959 |137 |31358 |
ROW |960 |137 |31359 |
ROW |961 |137 |31360 |
@@ -40748,6 +40815,13 @@ ROW |2834 |382 |36621 |
ROW |2835 |382 |36622 |
ROW |2836 |196 |36623 |
ROW |2837 |198 |36624 |
+ROW |2838 |104 |36625 |
+ROW |2839 |320 |36628 |
+ROW |2840 |320 |36629 |
+ROW |2841 |134 |36630 |
+ROW |2842 |135 |36631 |
+ROW |2843 |136 |36632 |
+ROW |2844 |137 |36633 |
TABLE |item_preproc
FIELDS|item_preprocid|itemid|step|type|params |error_handler|error_handler_params |
@@ -43089,191 +43163,191 @@ ROW |63809 |27954 |1 |21 |try {&bsn; var data = JSON.parse(value
ROW |63810 |28128 |1 |21 |try {&bsn; var data = JSON.parse(value);&bsn;}&bsn;catch (error) {&bsn; throw 'Failed to parse JSON of EtherLike-MIB discovery.';&bsn;}&bsn;var fields = ['{#SNMPVALUE}','{#IFOPERSTATUS}','{#IFALIAS}','{#IFNAME}','{#IFDESCR}'];&bsn;data.forEach(function (element) {&bsn; fields.forEach(function (field) {&bsn; element[field] = element[field] &pipe;&pipe; '';&bsn; });&bsn;});&bsn;return JSON.stringify(data); |0 | |
ROW |63811 |28280 |1 |21 |try {&bsn; var data = JSON.parse(value);&bsn;}&bsn;catch (error) {&bsn; throw 'Failed to parse JSON of EtherLike-MIB discovery.';&bsn;}&bsn;var fields = ['{#SNMPVALUE}','{#IFOPERSTATUS}','{#IFALIAS}','{#IFNAME}','{#IFDESCR}'];&bsn;data.forEach(function (element) {&bsn; fields.forEach(function (field) {&bsn; element[field] = element[field] &pipe;&pipe; '';&bsn; });&bsn;});&bsn;return JSON.stringify(data); |0 | |
ROW |63812 |28955 |1 |21 |try {&bsn; var data = JSON.parse(value);&bsn;}&bsn;catch (error) {&bsn; throw 'Failed to parse JSON of EtherLike-MIB discovery.';&bsn;}&bsn;var fields = ['{#SNMPVALUE}','{#IFOPERSTATUS}','{#IFALIAS}','{#IFNAME}','{#IFDESCR}'];&bsn;data.forEach(function (element) {&bsn; fields.forEach(function (field) {&bsn; element[field] = element[field] &pipe;&pipe; '';&bsn; });&bsn;});&bsn;return JSON.stringify(data); |0 | |
-ROW |63813 |27152 |1 |20 |1h |0 | |
+ROW |63813 |27152 |1 |20 |12h |0 | |
ROW |63814 |29844 |1 |1 |0.01 |0 | |
-ROW |63815 |29845 |1 |20 |1h |0 | |
-ROW |63816 |29846 |1 |20 |1d |0 | |
-ROW |63817 |29847 |1 |20 |1h |0 | |
-ROW |63818 |29848 |1 |20 |1d |0 | |
-ROW |63819 |27199 |1 |20 |1h |0 | |
-ROW |63820 |27232 |1 |20 |1h |0 | |
-ROW |63821 |27268 |1 |20 |1h |0 | |
-ROW |63822 |27289 |1 |20 |1h |0 | |
-ROW |63823 |27340 |1 |20 |1h |0 | |
-ROW |63824 |27372 |1 |20 |1h |0 | |
-ROW |63825 |27469 |1 |20 |1h |0 | |
-ROW |63826 |27503 |1 |20 |1h |0 | |
-ROW |63827 |27539 |1 |20 |1h |0 | |
-ROW |63828 |27575 |1 |20 |1h |0 | |
-ROW |63829 |27638 |1 |20 |1h |0 | |
-ROW |63830 |27661 |1 |20 |1h |0 | |
-ROW |63831 |27741 |1 |20 |1h |0 | |
-ROW |63832 |27773 |1 |20 |1h |0 | |
-ROW |63833 |27807 |1 |20 |1h |0 | |
-ROW |63834 |27889 |1 |20 |1h |0 | |
-ROW |63835 |27926 |1 |20 |1h |0 | |
-ROW |63836 |27963 |1 |20 |1h |0 | |
-ROW |63837 |27993 |1 |20 |1h |0 | |
-ROW |63838 |28022 |1 |20 |1h |0 | |
-ROW |63839 |28137 |1 |20 |1h |0 | |
-ROW |63841 |28240 |1 |20 |1h |0 | |
-ROW |63842 |28289 |1 |20 |1h |0 | |
-ROW |63843 |28337 |1 |20 |1h |0 | |
-ROW |63844 |28384 |1 |20 |1h |0 | |
-ROW |63845 |28461 |1 |20 |1h |0 | |
-ROW |63846 |28489 |1 |20 |1h |0 | |
-ROW |63847 |28964 |1 |20 |1h |0 | |
-ROW |63848 |29057 |1 |20 |1h |0 | |
+ROW |63815 |29845 |1 |20 |12h |0 | |
+ROW |63816 |29846 |1 |20 |12h |0 | |
+ROW |63817 |29847 |1 |20 |12h |0 | |
+ROW |63818 |29848 |1 |20 |12h |0 | |
+ROW |63819 |27199 |1 |20 |12h |0 | |
+ROW |63820 |27232 |1 |20 |12h |0 | |
+ROW |63821 |27268 |1 |20 |12h |0 | |
+ROW |63822 |27289 |1 |20 |12h |0 | |
+ROW |63823 |27340 |1 |20 |12h |0 | |
+ROW |63824 |27372 |1 |20 |12h |0 | |
+ROW |63825 |27469 |1 |20 |12h |0 | |
+ROW |63826 |27503 |1 |20 |12h |0 | |
+ROW |63827 |27539 |1 |20 |12h |0 | |
+ROW |63828 |27575 |1 |20 |12h |0 | |
+ROW |63829 |27638 |1 |20 |12h |0 | |
+ROW |63830 |27661 |1 |20 |12h |0 | |
+ROW |63831 |27741 |1 |20 |12h |0 | |
+ROW |63832 |27773 |1 |20 |12h |0 | |
+ROW |63833 |27807 |1 |20 |12h |0 | |
+ROW |63834 |27889 |1 |20 |12h |0 | |
+ROW |63835 |27926 |1 |20 |12h |0 | |
+ROW |63836 |27963 |1 |20 |12h |0 | |
+ROW |63837 |27993 |1 |20 |12h |0 | |
+ROW |63838 |28022 |1 |20 |12h |0 | |
+ROW |63839 |28137 |1 |20 |12h |0 | |
+ROW |63841 |28240 |1 |20 |12h |0 | |
+ROW |63842 |28289 |1 |20 |12h |0 | |
+ROW |63843 |28337 |1 |20 |12h |0 | |
+ROW |63844 |28384 |1 |20 |12h |0 | |
+ROW |63845 |28461 |1 |20 |12h |0 | |
+ROW |63846 |28489 |1 |20 |12h |0 | |
+ROW |63847 |28964 |1 |20 |12h |0 | |
+ROW |63848 |29057 |1 |20 |12h |0 | |
ROW |63849 |29834 |1 |1 |0.01 |0 | |
-ROW |63850 |29835 |1 |20 |1h |0 | |
-ROW |63851 |29836 |1 |20 |1d |0 | |
-ROW |63852 |29837 |1 |20 |1h |0 | |
-ROW |63853 |29838 |1 |20 |1d |0 | |
+ROW |63850 |29835 |1 |20 |12h |0 | |
+ROW |63851 |29836 |1 |20 |12h |0 | |
+ROW |63852 |29837 |1 |20 |12h |0 | |
+ROW |63853 |29838 |1 |20 |12h |0 | |
ROW |63854 |29849 |1 |1 |0.01 |0 | |
-ROW |63855 |29850 |1 |20 |1h |0 | |
-ROW |63856 |29851 |1 |20 |1d |0 | |
-ROW |63857 |29852 |1 |20 |1h |0 | |
-ROW |63858 |29853 |1 |20 |1d |0 | |
+ROW |63855 |29850 |1 |20 |12h |0 | |
+ROW |63856 |29851 |1 |20 |12h |0 | |
+ROW |63857 |29852 |1 |20 |12h |0 | |
+ROW |63858 |29853 |1 |20 |12h |0 | |
ROW |63859 |29854 |1 |1 |0.01 |0 | |
-ROW |63860 |29855 |1 |20 |1h |0 | |
-ROW |63861 |29856 |1 |20 |1d |0 | |
-ROW |63862 |29857 |1 |20 |1h |0 | |
-ROW |63863 |29858 |1 |20 |1d |0 | |
+ROW |63860 |29855 |1 |20 |12h |0 | |
+ROW |63861 |29856 |1 |20 |12h |0 | |
+ROW |63862 |29857 |1 |20 |12h |0 | |
+ROW |63863 |29858 |1 |20 |12h |0 | |
ROW |63864 |29859 |1 |1 |0.01 |0 | |
-ROW |63865 |29860 |1 |20 |1h |0 | |
-ROW |63866 |29861 |1 |20 |1d |0 | |
-ROW |63867 |29862 |1 |20 |1h |0 | |
-ROW |63868 |29863 |1 |20 |1d |0 | |
+ROW |63865 |29860 |1 |20 |12h |0 | |
+ROW |63866 |29861 |1 |20 |12h |0 | |
+ROW |63867 |29862 |1 |20 |12h |0 | |
+ROW |63868 |29863 |1 |20 |12h |0 | |
ROW |63869 |29864 |1 |1 |0.01 |0 | |
-ROW |63870 |29865 |1 |20 |1h |0 | |
-ROW |63871 |29866 |1 |20 |1d |0 | |
-ROW |63872 |29867 |1 |20 |1h |0 | |
-ROW |63873 |29868 |1 |20 |1d |0 | |
+ROW |63870 |29865 |1 |20 |12h |0 | |
+ROW |63871 |29866 |1 |20 |12h |0 | |
+ROW |63872 |29867 |1 |20 |12h |0 | |
+ROW |63873 |29868 |1 |20 |12h |0 | |
ROW |63874 |29869 |1 |1 |0.01 |0 | |
-ROW |63875 |29870 |1 |20 |1h |0 | |
-ROW |63876 |29871 |1 |20 |1d |0 | |
-ROW |63877 |29872 |1 |20 |1h |0 | |
-ROW |63878 |29873 |1 |20 |1d |0 | |
+ROW |63875 |29870 |1 |20 |12h |0 | |
+ROW |63876 |29871 |1 |20 |12h |0 | |
+ROW |63877 |29872 |1 |20 |12h |0 | |
+ROW |63878 |29873 |1 |20 |12h |0 | |
ROW |63879 |29874 |1 |1 |0.01 |0 | |
-ROW |63880 |29875 |1 |20 |1h |0 | |
-ROW |63881 |29876 |1 |20 |1d |0 | |
-ROW |63882 |29877 |1 |20 |1h |0 | |
-ROW |63883 |29878 |1 |20 |1d |0 | |
+ROW |63880 |29875 |1 |20 |12h |0 | |
+ROW |63881 |29876 |1 |20 |12h |0 | |
+ROW |63882 |29877 |1 |20 |12h |0 | |
+ROW |63883 |29878 |1 |20 |12h |0 | |
ROW |63884 |29879 |1 |1 |0.01 |0 | |
-ROW |63885 |29880 |1 |20 |1h |0 | |
-ROW |63886 |29881 |1 |20 |1d |0 | |
-ROW |63887 |29882 |1 |20 |1h |0 | |
-ROW |63888 |29883 |1 |20 |1d |0 | |
+ROW |63885 |29880 |1 |20 |12h |0 | |
+ROW |63886 |29881 |1 |20 |12h |0 | |
+ROW |63887 |29882 |1 |20 |12h |0 | |
+ROW |63888 |29883 |1 |20 |12h |0 | |
ROW |63889 |29884 |1 |1 |0.01 |0 | |
-ROW |63890 |29885 |1 |20 |1h |0 | |
-ROW |63891 |29886 |1 |20 |1d |0 | |
-ROW |63892 |29887 |1 |20 |1h |0 | |
-ROW |63893 |29888 |1 |20 |1d |0 | |
+ROW |63890 |29885 |1 |20 |12h |0 | |
+ROW |63891 |29886 |1 |20 |12h |0 | |
+ROW |63892 |29887 |1 |20 |12h |0 | |
+ROW |63893 |29888 |1 |20 |12h |0 | |
ROW |63894 |29889 |1 |1 |0.01 |0 | |
-ROW |63895 |29890 |1 |20 |1h |0 | |
-ROW |63896 |29891 |1 |20 |1d |0 | |
-ROW |63897 |29892 |1 |20 |1h |0 | |
-ROW |63898 |29893 |1 |20 |1d |0 | |
+ROW |63895 |29890 |1 |20 |12h |0 | |
+ROW |63896 |29891 |1 |20 |12h |0 | |
+ROW |63897 |29892 |1 |20 |12h |0 | |
+ROW |63898 |29893 |1 |20 |12h |0 | |
ROW |63899 |29894 |1 |1 |0.01 |0 | |
-ROW |63900 |29895 |1 |20 |1h |0 | |
-ROW |63901 |29896 |1 |20 |1d |0 | |
-ROW |63902 |29897 |1 |20 |1h |0 | |
-ROW |63903 |29898 |1 |20 |1d |0 | |
+ROW |63900 |29895 |1 |20 |12h |0 | |
+ROW |63901 |29896 |1 |20 |12h |0 | |
+ROW |63902 |29897 |1 |20 |12h |0 | |
+ROW |63903 |29898 |1 |20 |12h |0 | |
ROW |63904 |29899 |1 |1 |0.01 |0 | |
-ROW |63905 |29900 |1 |20 |1h |0 | |
-ROW |63906 |29901 |1 |20 |1d |0 | |
-ROW |63907 |29902 |1 |20 |1h |0 | |
-ROW |63908 |29903 |1 |20 |1d |0 | |
+ROW |63905 |29900 |1 |20 |12h |0 | |
+ROW |63906 |29901 |1 |20 |12h |0 | |
+ROW |63907 |29902 |1 |20 |12h |0 | |
+ROW |63908 |29903 |1 |20 |12h |0 | |
ROW |63909 |29904 |1 |1 |0.01 |0 | |
-ROW |63910 |29905 |1 |20 |1h |0 | |
-ROW |63911 |29906 |1 |20 |1d |0 | |
-ROW |63912 |29907 |1 |20 |1h |0 | |
-ROW |63913 |29908 |1 |20 |1d |0 | |
+ROW |63910 |29905 |1 |20 |12h |0 | |
+ROW |63911 |29906 |1 |20 |12h |0 | |
+ROW |63912 |29907 |1 |20 |12h |0 | |
+ROW |63913 |29908 |1 |20 |12h |0 | |
ROW |63914 |29909 |1 |1 |0.01 |0 | |
-ROW |63915 |29910 |1 |20 |1h |0 | |
-ROW |63916 |29911 |1 |20 |1d |0 | |
-ROW |63917 |29912 |1 |20 |1h |0 | |
-ROW |63918 |29913 |1 |20 |1d |0 | |
+ROW |63915 |29910 |1 |20 |12h |0 | |
+ROW |63916 |29911 |1 |20 |12h |0 | |
+ROW |63917 |29912 |1 |20 |12h |0 | |
+ROW |63918 |29913 |1 |20 |12h |0 | |
ROW |63919 |29914 |1 |1 |0.01 |0 | |
-ROW |63920 |29915 |1 |20 |1h |0 | |
-ROW |63921 |29916 |1 |20 |1d |0 | |
-ROW |63922 |29917 |1 |20 |1h |0 | |
-ROW |63923 |29918 |1 |20 |1d |0 | |
+ROW |63920 |29915 |1 |20 |12h |0 | |
+ROW |63921 |29916 |1 |20 |12h |0 | |
+ROW |63922 |29917 |1 |20 |12h |0 | |
+ROW |63923 |29918 |1 |20 |12h |0 | |
ROW |63924 |29919 |1 |1 |0.01 |0 | |
-ROW |63925 |29920 |1 |20 |1h |0 | |
-ROW |63926 |29921 |1 |20 |1d |0 | |
-ROW |63927 |29922 |1 |20 |1h |0 | |
-ROW |63928 |29923 |1 |20 |1d |0 | |
+ROW |63925 |29920 |1 |20 |12h |0 | |
+ROW |63926 |29921 |1 |20 |12h |0 | |
+ROW |63927 |29922 |1 |20 |12h |0 | |
+ROW |63928 |29923 |1 |20 |12h |0 | |
ROW |63929 |29924 |1 |1 |0.01 |0 | |
-ROW |63930 |29925 |1 |20 |1h |0 | |
-ROW |63931 |29926 |1 |20 |1d |0 | |
-ROW |63932 |29927 |1 |20 |1h |0 | |
-ROW |63933 |29928 |1 |20 |1d |0 | |
+ROW |63930 |29925 |1 |20 |12h |0 | |
+ROW |63931 |29926 |1 |20 |12h |0 | |
+ROW |63932 |29927 |1 |20 |12h |0 | |
+ROW |63933 |29928 |1 |20 |12h |0 | |
ROW |63934 |29929 |1 |1 |0.01 |0 | |
-ROW |63935 |29930 |1 |20 |1h |0 | |
-ROW |63936 |29931 |1 |20 |1d |0 | |
-ROW |63937 |29932 |1 |20 |1h |0 | |
-ROW |63938 |29933 |1 |20 |1d |0 | |
+ROW |63935 |29930 |1 |20 |12h |0 | |
+ROW |63936 |29931 |1 |20 |12h |0 | |
+ROW |63937 |29932 |1 |20 |12h |0 | |
+ROW |63938 |29933 |1 |20 |12h |0 | |
ROW |63939 |29934 |1 |1 |0.01 |0 | |
-ROW |63940 |29935 |1 |20 |1h |0 | |
-ROW |63941 |29936 |1 |20 |1d |0 | |
-ROW |63942 |29937 |1 |20 |1h |0 | |
-ROW |63943 |29938 |1 |20 |1d |0 | |
+ROW |63940 |29935 |1 |20 |12h |0 | |
+ROW |63941 |29936 |1 |20 |12h |0 | |
+ROW |63942 |29937 |1 |20 |12h |0 | |
+ROW |63943 |29938 |1 |20 |12h |0 | |
ROW |63944 |29939 |1 |1 |0.01 |0 | |
-ROW |63945 |29940 |1 |20 |1h |0 | |
-ROW |63946 |29941 |1 |20 |1d |0 | |
-ROW |63947 |29942 |1 |20 |1h |0 | |
-ROW |63948 |29943 |1 |20 |1d |0 | |
+ROW |63945 |29940 |1 |20 |12h |0 | |
+ROW |63946 |29941 |1 |20 |12h |0 | |
+ROW |63947 |29942 |1 |20 |12h |0 | |
+ROW |63948 |29943 |1 |20 |12h |0 | |
ROW |63949 |29944 |1 |1 |0.01 |0 | |
-ROW |63950 |29945 |1 |20 |1h |0 | |
-ROW |63951 |29946 |1 |20 |1d |0 | |
-ROW |63952 |29947 |1 |20 |1h |0 | |
-ROW |63953 |29948 |1 |20 |1d |0 | |
+ROW |63950 |29945 |1 |20 |12h |0 | |
+ROW |63951 |29946 |1 |20 |12h |0 | |
+ROW |63952 |29947 |1 |20 |12h |0 | |
+ROW |63953 |29948 |1 |20 |12h |0 | |
ROW |63959 |29954 |1 |1 |0.01 |0 | |
-ROW |63960 |29955 |1 |20 |1h |0 | |
-ROW |63961 |29956 |1 |20 |1d |0 | |
-ROW |63962 |29957 |1 |20 |1h |0 | |
-ROW |63963 |29958 |1 |20 |1d |0 | |
+ROW |63960 |29955 |1 |20 |12h |0 | |
+ROW |63961 |29956 |1 |20 |12h |0 | |
+ROW |63962 |29957 |1 |20 |12h |0 | |
+ROW |63963 |29958 |1 |20 |12h |0 | |
ROW |63964 |29959 |1 |1 |0.01 |0 | |
-ROW |63965 |29960 |1 |20 |1h |0 | |
-ROW |63966 |29961 |1 |20 |1d |0 | |
-ROW |63967 |29962 |1 |20 |1h |0 | |
-ROW |63968 |29963 |1 |20 |1d |0 | |
+ROW |63965 |29960 |1 |20 |12h |0 | |
+ROW |63966 |29961 |1 |20 |12h |0 | |
+ROW |63967 |29962 |1 |20 |12h |0 | |
+ROW |63968 |29963 |1 |20 |12h |0 | |
ROW |63969 |29964 |1 |1 |0.01 |0 | |
-ROW |63970 |29965 |1 |20 |1h |0 | |
-ROW |63971 |29966 |1 |20 |1d |0 | |
-ROW |63972 |29967 |1 |20 |1h |0 | |
-ROW |63973 |29968 |1 |20 |1d |0 | |
+ROW |63970 |29965 |1 |20 |12h |0 | |
+ROW |63971 |29966 |1 |20 |12h |0 | |
+ROW |63972 |29967 |1 |20 |12h |0 | |
+ROW |63973 |29968 |1 |20 |12h |0 | |
ROW |63974 |29969 |1 |1 |0.01 |0 | |
-ROW |63975 |29970 |1 |20 |1h |0 | |
-ROW |63976 |29971 |1 |20 |1d |0 | |
-ROW |63977 |29972 |1 |20 |1h |0 | |
-ROW |63978 |29973 |1 |20 |1d |0 | |
+ROW |63975 |29970 |1 |20 |12h |0 | |
+ROW |63976 |29971 |1 |20 |12h |0 | |
+ROW |63977 |29972 |1 |20 |12h |0 | |
+ROW |63978 |29973 |1 |20 |12h |0 | |
ROW |63979 |29974 |1 |1 |0.01 |0 | |
-ROW |63980 |29975 |1 |20 |1h |0 | |
-ROW |63981 |29976 |1 |20 |1d |0 | |
-ROW |63982 |29977 |1 |20 |1h |0 | |
-ROW |63983 |29978 |1 |20 |1d |0 | |
+ROW |63980 |29975 |1 |20 |12h |0 | |
+ROW |63981 |29976 |1 |20 |12h |0 | |
+ROW |63982 |29977 |1 |20 |12h |0 | |
+ROW |63983 |29978 |1 |20 |12h |0 | |
ROW |63984 |29979 |1 |1 |0.01 |0 | |
-ROW |63985 |29980 |1 |20 |1h |0 | |
-ROW |63986 |29981 |1 |20 |1d |0 | |
-ROW |63987 |29982 |1 |20 |1h |0 | |
-ROW |63988 |29983 |1 |20 |1d |0 | |
+ROW |63985 |29980 |1 |20 |12h |0 | |
+ROW |63986 |29981 |1 |20 |12h |0 | |
+ROW |63987 |29982 |1 |20 |12h |0 | |
+ROW |63988 |29983 |1 |20 |12h |0 | |
ROW |63989 |29984 |1 |1 |0.01 |0 | |
-ROW |63990 |29985 |1 |20 |1h |0 | |
-ROW |63991 |29986 |1 |20 |1d |0 | |
-ROW |63992 |29987 |1 |20 |1h |0 | |
-ROW |63993 |29988 |1 |20 |1d |0 | |
+ROW |63990 |29985 |1 |20 |12h |0 | |
+ROW |63991 |29986 |1 |20 |12h |0 | |
+ROW |63992 |29987 |1 |20 |12h |0 | |
+ROW |63993 |29988 |1 |20 |12h |0 | |
ROW |63994 |29989 |1 |1 |0.01 |0 | |
-ROW |63995 |29990 |1 |20 |1h |0 | |
-ROW |63996 |29991 |1 |20 |1d |0 | |
-ROW |63997 |29992 |1 |20 |1h |0 | |
-ROW |63998 |29993 |1 |20 |1d |0 | |
-ROW |63999 |30050 |1 |20 |1d |0 | |
-ROW |64000 |30051 |1 |20 |1d |0 | |
-ROW |64001 |30052 |1 |20 |1h |0 | |
-ROW |64002 |30053 |1 |20 |1h |0 | |
-ROW |64003 |30054 |1 |20 |1h |0 | |
+ROW |63995 |29990 |1 |20 |12h |0 | |
+ROW |63996 |29991 |1 |20 |12h |0 | |
+ROW |63997 |29992 |1 |20 |12h |0 | |
+ROW |63998 |29993 |1 |20 |12h |0 | |
+ROW |63999 |30050 |1 |20 |12h |0 | |
+ROW |64000 |30051 |1 |20 |12h |0 | |
+ROW |64001 |30052 |1 |20 |12h |0 | |
+ROW |64002 |30053 |1 |20 |12h |0 | |
+ROW |64003 |30054 |1 |20 |12h |0 | |
ROW |64004 |30055 |1 |1 |0.01 |0 | |
ROW |64005 |30142 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
ROW |64006 |30143 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
@@ -43869,8 +43943,8 @@ ROW |64611 |29087 |1 |20 |1d
ROW |64612 |29089 |1 |10 | |0 | |
ROW |64613 |29102 |1 |10 | |0 | |
ROW |64614 |29111 |1 |20 |1h |0 | |
-ROW |64615 |29113 |1 |20 |1h |0 | |
-ROW |64616 |29114 |1 |20 |1d |0 | |
+ROW |64615 |29113 |1 |20 |12h |0 | |
+ROW |64616 |29114 |1 |20 |12h |0 | |
ROW |64617 |29116 |1 |20 |1d |0 | |
ROW |64618 |29117 |1 |20 |1d |0 | |
ROW |64619 |29120 |1 |20 |1h |0 | |
@@ -43881,8 +43955,8 @@ ROW |64623 |29124 |1 |20 |1d
ROW |64624 |29126 |1 |10 | |0 | |
ROW |64625 |29139 |1 |10 | |0 | |
ROW |64626 |29148 |1 |20 |1h |0 | |
-ROW |64627 |29150 |1 |20 |1h |0 | |
-ROW |64628 |29151 |1 |20 |1d |0 | |
+ROW |64627 |29150 |1 |20 |12h |0 | |
+ROW |64628 |29151 |1 |20 |12h |0 | |
ROW |64629 |29153 |1 |20 |1d |0 | |
ROW |64630 |29154 |1 |20 |1d |0 | |
ROW |64631 |29157 |1 |20 |1h |0 | |
@@ -43893,8 +43967,8 @@ ROW |64635 |29161 |1 |20 |1d
ROW |64636 |29163 |1 |10 | |0 | |
ROW |64637 |29176 |1 |10 | |0 | |
ROW |64638 |29185 |1 |20 |1h |0 | |
-ROW |64639 |29187 |1 |20 |1h |0 | |
-ROW |64640 |29188 |1 |20 |1d |0 | |
+ROW |64639 |29187 |1 |20 |12h |0 | |
+ROW |64640 |29188 |1 |20 |12h |0 | |
ROW |64641 |29190 |1 |20 |1d |0 | |
ROW |64642 |29191 |1 |20 |1d |0 | |
ROW |64643 |29194 |1 |20 |1h |0 | |
@@ -43918,7 +43992,7 @@ ROW |64660 |29218 |1 |10 |
ROW |64661 |29219 |1 |10 | |0 | |
ROW |64662 |29220 |1 |10 | |0 | |
ROW |64663 |29221 |1 |10 | |0 | |
-ROW |64664 |29222 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |64664 |29222 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "unkonwn":&bsn; newvalue = 0;&bsn; break;&bsn; case "notpresent":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "lowerlayerdown":&bsn; newvalue = 3;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 5;&bsn; break;&bsn; case "up":&bsn; newvalue = 6;&bsn; break; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
ROW |64665 |29223 |1 |20 |1d |0 | |
ROW |64666 |31278 |1 |21 |return JSON.stringify(value.trim().split(/ +/)); |0 | |
ROW |64667 |29230 |1 |10 | |0 | |
@@ -43929,7 +44003,7 @@ ROW |64671 |29232 |1 |10 |
ROW |64672 |29233 |1 |10 | |0 | |
ROW |64673 |29234 |1 |10 | |0 | |
ROW |64674 |29235 |1 |10 | |0 | |
-ROW |64675 |29236 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |64675 |29236 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "unkonwn":&bsn; newvalue = 0;&bsn; break;&bsn; case "notpresent":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "lowerlayerdown":&bsn; newvalue = 3;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 5;&bsn; break;&bsn; case "up":&bsn; newvalue = 6;&bsn; break; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
ROW |64676 |29237 |1 |20 |1d |0 | |
ROW |64677 |31281 |1 |21 |return JSON.stringify(value.trim().split(/ +/)); |0 | |
ROW |64678 |29244 |1 |10 | |0 | |
@@ -43940,7 +44014,7 @@ ROW |64682 |29246 |1 |10 |
ROW |64683 |29247 |1 |10 | |0 | |
ROW |64684 |29248 |1 |10 | |0 | |
ROW |64685 |29249 |1 |10 | |0 | |
-ROW |64686 |29250 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |64686 |29250 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "unkonwn":&bsn; newvalue = 0;&bsn; break;&bsn; case "notpresent":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "lowerlayerdown":&bsn; newvalue = 3;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 5;&bsn; break;&bsn; case "up":&bsn; newvalue = 6;&bsn; break; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
ROW |64687 |29251 |1 |20 |1d |0 | |
ROW |64688 |31284 |1 |21 |return JSON.stringify(value.trim().split(/ +/)); |0 | |
ROW |64689 |31285 |1 |12 |$[10] |0 | |
@@ -43995,8 +44069,8 @@ ROW |64737 |29273 |1 |20 |1d
ROW |64738 |29275 |1 |10 | |0 | |
ROW |64739 |29288 |1 |10 | |0 | |
ROW |64740 |29297 |1 |20 |1h |0 | |
-ROW |64741 |29299 |1 |20 |1h |0 | |
-ROW |64742 |29300 |1 |20 |1d |0 | |
+ROW |64741 |29299 |1 |20 |12h |0 | |
+ROW |64742 |29300 |1 |20 |12h |0 | |
ROW |64743 |29302 |1 |20 |1d |0 | |
ROW |64744 |29303 |1 |20 |1d |0 | |
ROW |64745 |29306 |1 |20 |1h |0 | |
@@ -44007,8 +44081,8 @@ ROW |64749 |29310 |1 |20 |1d
ROW |64750 |29312 |1 |10 | |0 | |
ROW |64751 |29325 |1 |10 | |0 | |
ROW |64752 |29334 |1 |20 |1h |0 | |
-ROW |64753 |29336 |1 |20 |1h |0 | |
-ROW |64754 |29337 |1 |20 |1d |0 | |
+ROW |64753 |29336 |1 |20 |12h |0 | |
+ROW |64754 |29337 |1 |20 |12h |0 | |
ROW |64755 |29339 |1 |20 |1d |0 | |
ROW |64756 |29340 |1 |20 |1d |0 | |
ROW |64757 |29343 |1 |20 |1h |0 | |
@@ -44029,7 +44103,7 @@ ROW |64771 |29363 |1 |10 |
ROW |64772 |29364 |1 |10 | |0 | |
ROW |64773 |29365 |1 |10 | |0 | |
ROW |64774 |29366 |1 |10 | |0 | |
-ROW |64775 |29367 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |64775 |29367 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "unkonwn":&bsn; newvalue = 0;&bsn; break;&bsn; case "notpresent":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "lowerlayerdown":&bsn; newvalue = 3;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 5;&bsn; break;&bsn; case "up":&bsn; newvalue = 6;&bsn; break; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
ROW |64776 |29368 |1 |20 |1d |0 | |
ROW |64777 |31309 |1 |21 |return JSON.stringify(value.trim().split(/ +/)); |0 | |
ROW |64778 |29375 |1 |10 | |0 | |
@@ -44040,7 +44114,7 @@ ROW |64782 |29377 |1 |10 |
ROW |64783 |29378 |1 |10 | |0 | |
ROW |64784 |29379 |1 |10 | |0 | |
ROW |64785 |29380 |1 |10 | |0 | |
-ROW |64786 |29381 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |64786 |29381 |1 |21 |var newvalue;&bsn;switch(value) {&bsn; case "unkonwn":&bsn; newvalue = 0;&bsn; break;&bsn; case "notpresent":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "lowerlayerdown":&bsn; newvalue = 3;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 5;&bsn; break;&bsn; case "up":&bsn; newvalue = 6;&bsn; break; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
ROW |64787 |29382 |1 |20 |1d |0 | |
ROW |64788 |31312 |1 |21 |return JSON.stringify(value.trim().split(/ +/)); |0 | |
ROW |64789 |31313 |1 |12 |$[10] |0 | |
@@ -44167,7 +44241,7 @@ ROW |64909 |29442 |1 |22 |node_network_speed_bytes{device="{#IFNAME
ROW |64910 |29442 |2 |1 |8 |0 | |
ROW |64911 |29443 |1 |22 |node_network_protocol_type{device="{#IFNAME}"}&bsn; |0 | |
ROW |64912 |29444 |1 |22 |node_network_info{device="{#IFNAME}"}&bsn;operstate |0 | |
-ROW |64913 |29444 |2 |21 |var newvalue;&bsn;switch(value) {&bsn; case "up":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "unknown":&bsn; newvalue = 5;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 6;&bsn; break;&bsn; case "notPresent":&bsn; newvalue = 7;&bsn; break;&bsn; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
+ROW |64913 |29444 |2 |21 |var newvalue;&bsn;switch(value) {&bsn; case "unkonwn":&bsn; newvalue = 0;&bsn; break;&bsn; case "notpresent":&bsn; newvalue = 1;&bsn; break;&bsn; case "down":&bsn; newvalue = 2;&bsn; break;&bsn; case "lowerlayerdown":&bsn; newvalue = 3;&bsn; break;&bsn; case "testing":&bsn; newvalue = 4;&bsn; break;&bsn; case "dormant":&bsn; newvalue = 5;&bsn; break;&bsn; case "up":&bsn; newvalue = 6;&bsn; break; default:&bsn; newvalue = "Problem parsing interface operstate in JS";&bsn;}&bsn;return newvalue; |0 | |
ROW |64914 |29445 |1 |22 |{__name__=~"^node_filesystem_avail(?:_bytes)?$", mountpoint="{#FSNAME}"}&bsn; |0 | |
ROW |64915 |29446 |1 |22 |{__name__=~"^node_filesystem_size(?:_bytes)?$", mountpoint="{#FSNAME}"}&bsn; |0 | |
ROW |64916 |29447 |1 |23 |{__name__=~"node_filesystem_files.*",mountpoint="{#FSNAME}"} |0 | |
@@ -44415,11 +44489,11 @@ ROW |65270 |32596 |3 |10 |
ROW |65271 |32598 |1 |12 |$['{#APPLICATION}'].flush_lag |0 | |
ROW |65272 |32599 |1 |12 |$['{#APPLICATION}'].replay_lag |0 | |
ROW |65273 |32600 |1 |12 |$['{#APPLICATION}'].write_lag |0 | |
-ROW |65274 |32605 |1 |20 |1d |0 | |
-ROW |65275 |32606 |1 |20 |1d |0 | |
-ROW |65276 |32607 |1 |20 |1h |0 | |
-ROW |65277 |32608 |1 |20 |1h |0 | |
-ROW |65278 |32609 |1 |20 |1h |0 | |
+ROW |65274 |32605 |1 |20 |12h |0 | |
+ROW |65275 |32606 |1 |20 |12h |0 | |
+ROW |65276 |32607 |1 |20 |12h |0 | |
+ROW |65277 |32608 |1 |20 |12h |0 | |
+ROW |65278 |32609 |1 |20 |12h |0 | |
ROW |65279 |32610 |1 |1 |0.01 |0 | |
ROW |65280 |32612 |1 |20 |10m |0 | |
ROW |65281 |32613 |1 |20 |6h |0 | |
@@ -44576,11 +44650,11 @@ ROW |65434 |32763 |1 |12 |$[?(@.disk_name=='{#NAME}')].temperature.
ROW |65435 |32763 |2 |20 |6h |0 | |
ROW |65436 |32764 |1 |12 |$[?(@.disk_name=='{#NAME}')].ata_smart_data.self_test.status.passed.first() |0 | |
ROW |65437 |32764 |2 |20 |6h |0 | |
-ROW |65438 |32769 |1 |20 |1d |0 | |
-ROW |65439 |32770 |1 |20 |1d |0 | |
-ROW |65440 |32771 |1 |20 |1h |0 | |
-ROW |65441 |32772 |1 |20 |1h |0 | |
-ROW |65442 |32773 |1 |20 |1h |0 | |
+ROW |65438 |32769 |1 |20 |12h |0 | |
+ROW |65439 |32770 |1 |20 |12h |0 | |
+ROW |65440 |32771 |1 |20 |12h |0 | |
+ROW |65441 |32772 |1 |20 |12h |0 | |
+ROW |65442 |32773 |1 |20 |12h |0 | |
ROW |65443 |32774 |1 |1 |0.01 |0 | |
ROW |65444 |32776 |1 |20 |6h |0 | |
ROW |65445 |32777 |1 |1 |1048576 |0 | |
@@ -45200,12 +45274,12 @@ ROW |66059 |33395 |1 |1 |1000000
ROW |66060 |33395 |2 |20 |1h |0 | |
ROW |66061 |33396 |1 |20 |6h |0 | |
ROW |66062 |33397 |1 |20 |6h |0 | |
-ROW |66063 |33406 |1 |20 |1d |0 | |
+ROW |66063 |33406 |1 |20 |12h |0 | |
ROW |66064 |33407 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |66065 |33408 |1 |20 |1d |0 | |
-ROW |66066 |33409 |1 |20 |1h |0 | |
-ROW |66067 |33410 |1 |20 |1h |0 | |
-ROW |66068 |33411 |1 |20 |1h |0 | |
+ROW |66065 |33408 |1 |20 |12h |0 | |
+ROW |66066 |33409 |1 |20 |12h |0 | |
+ROW |66067 |33410 |1 |20 |12h |0 | |
+ROW |66068 |33411 |1 |20 |12h |0 | |
ROW |66069 |33412 |1 |1 |0.01 |0 | |
ROW |66070 |33414 |1 |20 |6h |0 | |
ROW |66071 |33415 |1 |20 |6h |0 | |
@@ -45238,8 +45312,8 @@ ROW |66098 |33435 |1 |20 |6h
ROW |66099 |33436 |1 |20 |6h |0 | |
ROW |66101 |33438 |1 |20 |6h |0 | |
ROW |66102 |33439 |1 |20 |6h |0 | |
-ROW |66103 |33440 |1 |20 |1d |0 | |
-ROW |66104 |33441 |1 |20 |1d |0 | |
+ROW |66103 |33440 |1 |20 |12h |0 | |
+ROW |66104 |33441 |1 |20 |12h |0 | |
ROW |66105 |33443 |1 |1 |0.1 |0 | |
ROW |66106 |33443 |2 |20 |6h |0 | |
ROW |66107 |33444 |1 |20 |6h |0 | |
@@ -45403,8 +45477,8 @@ ROW |66264 |33571 |1 |20 |6h
ROW |66265 |33572 |1 |20 |6h |0 | |
ROW |66267 |33574 |1 |20 |6h |0 | |
ROW |66268 |33575 |1 |20 |6h |0 | |
-ROW |66269 |33576 |1 |20 |1d |0 | |
-ROW |66270 |33577 |1 |20 |1d |0 | |
+ROW |66269 |33576 |1 |20 |12h |0 | |
+ROW |66270 |33577 |1 |20 |12h |0 | |
ROW |66271 |33579 |1 |1 |0.1 |0 | |
ROW |66272 |33579 |2 |20 |6h |0 | |
ROW |66273 |33580 |1 |20 |6h |0 | |
@@ -45454,8 +45528,8 @@ ROW |66316 |33622 |1 |20 |6h
ROW |66317 |33623 |1 |20 |6h |0 | |
ROW |66319 |33625 |1 |20 |6h |0 | |
ROW |66320 |33626 |1 |20 |6h |0 | |
-ROW |66321 |33627 |1 |20 |1d |0 | |
-ROW |66322 |33628 |1 |20 |1d |0 | |
+ROW |66321 |33627 |1 |20 |12h |0 | |
+ROW |66322 |33628 |1 |20 |12h |0 | |
ROW |66323 |33630 |1 |1 |0.1 |0 | |
ROW |66324 |33630 |2 |20 |6h |0 | |
ROW |66325 |33631 |1 |20 |6h |0 | |
@@ -45505,8 +45579,8 @@ ROW |66368 |33673 |1 |20 |6h
ROW |66369 |33674 |1 |20 |6h |0 | |
ROW |66371 |33676 |1 |20 |6h |0 | |
ROW |66372 |33677 |1 |20 |6h |0 | |
-ROW |66373 |33678 |1 |20 |1d |0 | |
-ROW |66374 |33679 |1 |20 |1d |0 | |
+ROW |66373 |33678 |1 |20 |12h |0 | |
+ROW |66374 |33679 |1 |20 |12h |0 | |
ROW |66375 |33681 |1 |1 |0.1 |0 | |
ROW |66376 |33681 |2 |20 |6h |0 | |
ROW |66377 |33682 |1 |20 |6h |0 | |
@@ -45556,8 +45630,8 @@ ROW |66420 |33724 |1 |20 |6h
ROW |66421 |33725 |1 |20 |6h |0 | |
ROW |66423 |33727 |1 |20 |6h |0 | |
ROW |66424 |33728 |1 |20 |6h |0 | |
-ROW |66425 |33729 |1 |20 |1d |0 | |
-ROW |66426 |33730 |1 |20 |1d |0 | |
+ROW |66425 |33729 |1 |20 |12h |0 | |
+ROW |66426 |33730 |1 |20 |12h |0 | |
ROW |66427 |33732 |1 |1 |0.1 |0 | |
ROW |66428 |33732 |2 |20 |6h |0 | |
ROW |66429 |33733 |1 |20 |6h |0 | |
@@ -45607,8 +45681,8 @@ ROW |66472 |33775 |1 |20 |6h
ROW |66473 |33776 |1 |20 |6h |0 | |
ROW |66475 |33778 |1 |20 |6h |0 | |
ROW |66476 |33779 |1 |20 |6h |0 | |
-ROW |66477 |33780 |1 |20 |1d |0 | |
-ROW |66478 |33781 |1 |20 |1d |0 | |
+ROW |66477 |33780 |1 |20 |12h |0 | |
+ROW |66478 |33781 |1 |20 |12h |0 | |
ROW |66479 |33783 |1 |1 |0.1 |0 | |
ROW |66480 |33783 |2 |20 |6h |0 | |
ROW |66481 |33784 |1 |20 |6h |0 | |
@@ -45658,8 +45732,8 @@ ROW |66524 |33826 |1 |20 |6h
ROW |66525 |33827 |1 |20 |6h |0 | |
ROW |66527 |33829 |1 |20 |6h |0 | |
ROW |66528 |33830 |1 |20 |6h |0 | |
-ROW |66529 |33831 |1 |20 |1d |0 | |
-ROW |66530 |33832 |1 |20 |1d |0 | |
+ROW |66529 |33831 |1 |20 |12h |0 | |
+ROW |66530 |33832 |1 |20 |12h |0 | |
ROW |66531 |33834 |1 |1 |0.1 |0 | |
ROW |66532 |33834 |2 |20 |6h |0 | |
ROW |66533 |33835 |1 |20 |6h |0 | |
@@ -45709,8 +45783,8 @@ ROW |66576 |33877 |1 |20 |6h
ROW |66577 |33878 |1 |20 |6h |0 | |
ROW |66579 |33880 |1 |20 |6h |0 | |
ROW |66580 |33881 |1 |20 |6h |0 | |
-ROW |66581 |33882 |1 |20 |1d |0 | |
-ROW |66582 |33883 |1 |20 |1d |0 | |
+ROW |66581 |33882 |1 |20 |12h |0 | |
+ROW |66582 |33883 |1 |20 |12h |0 | |
ROW |66583 |33885 |1 |1 |0.1 |0 | |
ROW |66584 |33885 |2 |20 |6h |0 | |
ROW |66585 |33886 |1 |20 |6h |0 | |
@@ -45766,8 +45840,8 @@ ROW |66634 |33933 |1 |20 |6h
ROW |66635 |33934 |1 |20 |6h |0 | |
ROW |66637 |33936 |1 |20 |6h |0 | |
ROW |66638 |33937 |1 |20 |6h |0 | |
-ROW |66639 |33938 |1 |20 |1d |0 | |
-ROW |66640 |33939 |1 |20 |1d |0 | |
+ROW |66639 |33938 |1 |20 |12h |0 | |
+ROW |66640 |33939 |1 |20 |12h |0 | |
ROW |66641 |33941 |1 |1 |0.1 |0 | |
ROW |66642 |33941 |2 |20 |6h |0 | |
ROW |66643 |33942 |1 |20 |6h |0 | |
@@ -45817,8 +45891,8 @@ ROW |66686 |33984 |1 |20 |6h
ROW |66687 |33985 |1 |20 |6h |0 | |
ROW |66689 |33987 |1 |20 |6h |0 | |
ROW |66690 |33988 |1 |20 |6h |0 | |
-ROW |66691 |33989 |1 |20 |1d |0 | |
-ROW |66692 |33990 |1 |20 |1d |0 | |
+ROW |66691 |33989 |1 |20 |12h |0 | |
+ROW |66692 |33990 |1 |20 |12h |0 | |
ROW |66693 |33992 |1 |1 |0.1 |0 | |
ROW |66694 |33992 |2 |20 |6h |0 | |
ROW |66695 |33993 |1 |20 |6h |0 | |
@@ -45868,8 +45942,8 @@ ROW |66738 |34035 |1 |20 |6h
ROW |66739 |34036 |1 |20 |6h |0 | |
ROW |66741 |34038 |1 |20 |6h |0 | |
ROW |66742 |34039 |1 |20 |6h |0 | |
-ROW |66743 |34040 |1 |20 |1d |0 | |
-ROW |66744 |34041 |1 |20 |1d |0 | |
+ROW |66743 |34040 |1 |20 |12h |0 | |
+ROW |66744 |34041 |1 |20 |12h |0 | |
ROW |66745 |34043 |1 |1 |0.1 |0 | |
ROW |66746 |34043 |2 |20 |6h |0 | |
ROW |66747 |34044 |1 |20 |6h |0 | |
@@ -46856,11 +46930,11 @@ ROW |67735 |34941 |1 |12 |$['{#UPSTREAM}'].peers[?(@.server == '{#P
ROW |67736 |34942 |1 |12 |$['{#NAME}'].zombies |0 | |
ROW |67737 |34943 |1 |12 |$['{#NAME}'].zone |0 | |
ROW |67738 |34943 |2 |20 |3h |0 | |
-ROW |67739 |34946 |1 |20 |1d |0 | |
-ROW |67740 |34947 |1 |20 |1d |0 | |
-ROW |67741 |34948 |1 |20 |1h |0 | |
-ROW |67742 |34949 |1 |20 |1h |0 | |
-ROW |67743 |34950 |1 |20 |1h |0 | |
+ROW |67739 |34946 |1 |20 |12h |0 | |
+ROW |67740 |34947 |1 |20 |12h |0 | |
+ROW |67741 |34948 |1 |20 |12h |0 | |
+ROW |67742 |34949 |1 |20 |12h |0 | |
+ROW |67743 |34950 |1 |20 |12h |0 | |
ROW |67744 |34951 |1 |1 |0.01 |0 | |
ROW |67745 |34953 |1 |20 |1h |0 | |
ROW |67746 |34957 |1 |21 |var result = [];&bsn;&bsn;JSON.parse(value).forEach(function (netif) {&bsn; if (typeof netif["{#IFNAME}"] === 'undefined') {&bsn; netif["{#IFNAME}"] = netif["{#IFDESCR}"];&bsn; }&bsn; if (typeof netif["{#IFALIAS}"] === 'undefined') {&bsn; netif["{#IFALIAS}"] = "";&bsn; }&bsn; result.push(netif);&bsn;});&bsn;&bsn;return JSON.stringify(result);&bsn; |0 | |
@@ -47351,7 +47425,7 @@ ROW |68502 |35662 |1 |20 |6h
ROW |68503 |35663 |1 |20 |1h |0 | |
ROW |68504 |35664 |1 |20 |6h |0 | |
ROW |68505 |35665 |1 |20 |6h |0 | |
-ROW |68506 |35666 |1 |20 |6h |0 | |
+ROW |68506 |35666 |1 |20 |12h |0 | |
ROW |68507 |35667 |1 |20 |6h |0 | |
ROW |68508 |35668 |1 |20 |6h |0 | |
ROW |68509 |35669 |1 |20 |6h |0 | |
@@ -47368,7 +47442,7 @@ ROW |68519 |35679 |1 |20 |1h
ROW |68520 |35680 |1 |20 |1h |0 | |
ROW |68521 |35681 |1 |1 |0.001 |0 | |
ROW |68522 |35681 |2 |20 |1h |0 | |
-ROW |68523 |35682 |1 |20 |1h |0 | |
+ROW |68523 |35682 |1 |20 |12h |0 | |
ROW |68524 |35683 |1 |20 |1h |0 | |
ROW |68525 |35684 |1 |20 |1h |0 | |
ROW |68526 |35685 |1 |20 |1h |0 | |
@@ -47376,14 +47450,7 @@ ROW |68527 |35686 |1 |20 |1h
ROW |68528 |35714 |1 |20 |1h |0 | |
ROW |68529 |35715 |1 |20 |1h |0 | |
ROW |68530 |35716 |1 |20 |1h |0 | |
-ROW |68531 |35717 |1 |20 |6h |0 | |
-ROW |68532 |35718 |1 |20 |6h |0 | |
-ROW |68533 |35719 |1 |20 |6h |0 | |
-ROW |68534 |35720 |1 |20 |6h |0 | |
-ROW |68535 |35721 |1 |20 |6h |0 | |
ROW |68536 |35722 |1 |20 |1h |0 | |
-ROW |68537 |35723 |1 |20 |1h |0 | |
-ROW |68538 |35724 |1 |20 |1h |0 | |
ROW |68539 |35725 |1 |20 |1h |0 | |
ROW |68540 |35726 |1 |20 |1h |0 | |
ROW |68541 |35727 |1 |20 |1h |0 | |
@@ -48521,6 +48588,13 @@ ROW |69672 |32746 |2 |20 |6h
ROW |69673 |36624 |1 |12 |$[?(@.disk_name=='{#NAME}')].ata_smart_attributes.table[?(@.id=={#ID})].raw.string.first() |0 | |
ROW |69674 |36624 |2 |20 |6h |0 | |
ROW |69675 |32758 |2 |20 |6h |0 | |
+ROW |69676 |36625 |1 |12 |$.cpu_stats.cpu_usage.percent_usage |0 | |
+ROW |69677 |36628 |1 |20 |1h |0 | |
+ROW |69678 |36629 |1 |20 |1h |0 | |
+ROW |69679 |36630 |1 |21 |return 100 - value |0 | |
+ROW |69680 |36631 |1 |21 |return 100 - value |0 | |
+ROW |69681 |36632 |1 |21 |return 100 - value |0 | |
+ROW |69682 |36633 |1 |21 |return 100 - value |0 | |
TABLE |sysmap_shape
FIELDS|sysmap_shapeid|sysmapid|type|x |y |width|height|text |font|font_size|font_color|text_halign|text_valign|border_type|border_width|border_color|background_color|zindex|
@@ -48658,82 +48732,82 @@ ROW |543 |34756 |Trigger disabled |1 |0
ROW |544 |34756 |Trigger enabled |2 |0 | |0 |
ROW |545 |34801 |Trigger disabled |1 |0 | |0 |
ROW |546 |34801 |Trigger enabled |2 |0 | |0 |
-ROW |728 |30961 |trigger |1 |0 | |0 |
-ROW |729 |30193 |Discard HTTP status codes |1 |0 | |0 |
-ROW |730 |30194 |Discard HTTP status codes |1 |0 | |0 |
-ROW |731 |30195 |Discard HTTP status codes |1 |0 | |0 |
-ROW |732 |30236 |Discard HTTP status codes |1 |0 | |0 |
-ROW |733 |30237 |Discard HTTP status codes |1 |0 | |0 |
-ROW |734 |30238 |Discard HTTP status codes |1 |0 | |0 |
-ROW |735 |33063 |Primary metrics |1 |0 | |0 |
-ROW |736 |33063 |Arbiter metrics |2 |0 | |0 |
-ROW |737 |32742 |ID filter |1 |0 | |0 |
-ROW |738 |32743 |Self-test |1 |0 | |0 |
-ROW |739 |32743 |Not NVMe |2 |0 | |0 |
-ROW |740 |32754 |ID filter |1 |0 | |0 |
-ROW |741 |32755 |Self-test |1 |0 | |0 |
-ROW |742 |32755 |Not NVMe |2 |0 | |0 |
-ROW |743 |28306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |744 |28306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |745 |28306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |746 |28306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |747 |28307 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |748 |28307 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |749 |28307 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |750 |28307 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |751 |32306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |752 |32306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |753 |32306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |754 |32306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |755 |35911 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |756 |35961 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |757 |35962 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |758 |35994 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |759 |36038 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |760 |36072 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |761 |36073 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |762 |36139 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |763 |36140 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |764 |36206 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |765 |36207 |Trigger disabled |1 |0 | |0 |
-ROW |766 |36207 |Trigger enabled |2 |0 | |0 |
-ROW |767 |36239 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |768 |36278 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |769 |36322 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |770 |36366 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |771 |36410 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |772 |36455 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |773 |36500 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |774 |36545 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |775 |33598 |Temp |1 |0 | |0 |
-ROW |776 |33599 |Temp |1 |0 | |0 |
-ROW |777 |33649 |Temp |1 |0 | |0 |
-ROW |778 |33650 |Temp |1 |0 | |0 |
-ROW |779 |33700 |Temp |1 |0 | |0 |
-ROW |780 |33701 |Temp |1 |0 | |0 |
-ROW |781 |33751 |Temp |1 |0 | |0 |
-ROW |782 |33752 |Temp |1 |0 | |0 |
-ROW |783 |33802 |Temp |1 |0 | |0 |
-ROW |784 |33803 |Temp |1 |0 | |0 |
-ROW |785 |33853 |Temp |1 |0 | |0 |
-ROW |786 |33854 |Temp |1 |0 | |0 |
-ROW |787 |33904 |Temp |1 |0 | |0 |
-ROW |788 |33905 |Temp |1 |0 | |0 |
-ROW |789 |33462 |Temp |1 |0 | |0 |
-ROW |790 |33463 |Temp |1 |0 | |0 |
-ROW |791 |33960 |Temp |1 |0 | |0 |
-ROW |792 |33961 |Temp |1 |0 | |0 |
-ROW |793 |34011 |Temp |1 |0 | |0 |
-ROW |794 |34012 |Temp |1 |0 | |0 |
-ROW |795 |34062 |Temp |1 |0 | |0 |
-ROW |796 |34063 |Temp |1 |0 | |0 |
-ROW |797 |32618 |Do not discover aggregate metrics |1 |0 | |0 |
-ROW |798 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
-ROW |799 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
-ROW |800 |30687 |trigger SENSOR_LO_DISAST |3 |0 | |0 |
-ROW |801 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
-ROW |802 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
-ROW |803 |30687 |trigger SENSOR_HI_DISAST |6 |0 | |0 |
+ROW |804 |30961 |trigger |1 |0 | |0 |
+ROW |805 |30193 |Discard HTTP status codes |1 |0 | |0 |
+ROW |806 |30194 |Discard HTTP status codes |1 |0 | |0 |
+ROW |807 |30195 |Discard HTTP status codes |1 |0 | |0 |
+ROW |808 |30236 |Discard HTTP status codes |1 |0 | |0 |
+ROW |809 |30237 |Discard HTTP status codes |1 |0 | |0 |
+ROW |810 |30238 |Discard HTTP status codes |1 |0 | |0 |
+ROW |811 |33063 |Primary metrics |1 |0 | |0 |
+ROW |812 |33063 |Arbiter metrics |2 |0 | |0 |
+ROW |813 |32742 |ID filter |1 |0 | |0 |
+ROW |814 |32743 |Self-test |1 |0 | |0 |
+ROW |815 |32743 |Not NVMe |2 |0 | |0 |
+ROW |816 |32754 |ID filter |1 |0 | |0 |
+ROW |817 |32755 |Self-test |1 |0 | |0 |
+ROW |818 |32755 |Not NVMe |2 |0 | |0 |
+ROW |819 |28306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |820 |28306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |821 |28306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |822 |28306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |823 |28307 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |824 |28307 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |825 |28307 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |826 |28307 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |827 |32306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |828 |32306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |829 |32306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |830 |32306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |831 |35911 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |832 |35961 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |833 |35962 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |834 |35994 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |835 |36038 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |836 |36072 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |837 |36073 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |838 |36139 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |839 |36140 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |840 |36206 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |841 |36207 |Trigger disabled |1 |0 | |0 |
+ROW |842 |36207 |Trigger enabled |2 |0 | |0 |
+ROW |843 |36239 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |844 |36278 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |845 |36322 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |846 |36366 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |847 |36410 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |848 |36455 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |849 |36500 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |850 |36545 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |851 |33598 |Temp |1 |0 | |0 |
+ROW |852 |33599 |Temp |1 |0 | |0 |
+ROW |853 |33649 |Temp |1 |0 | |0 |
+ROW |854 |33650 |Temp |1 |0 | |0 |
+ROW |855 |33700 |Temp |1 |0 | |0 |
+ROW |856 |33701 |Temp |1 |0 | |0 |
+ROW |857 |33751 |Temp |1 |0 | |0 |
+ROW |858 |33752 |Temp |1 |0 | |0 |
+ROW |859 |33802 |Temp |1 |0 | |0 |
+ROW |860 |33803 |Temp |1 |0 | |0 |
+ROW |861 |33853 |Temp |1 |0 | |0 |
+ROW |862 |33854 |Temp |1 |0 | |0 |
+ROW |863 |33904 |Temp |1 |0 | |0 |
+ROW |864 |33905 |Temp |1 |0 | |0 |
+ROW |865 |33462 |Temp |1 |0 | |0 |
+ROW |866 |33463 |Temp |1 |0 | |0 |
+ROW |867 |33960 |Temp |1 |0 | |0 |
+ROW |868 |33961 |Temp |1 |0 | |0 |
+ROW |869 |34011 |Temp |1 |0 | |0 |
+ROW |870 |34012 |Temp |1 |0 | |0 |
+ROW |871 |34062 |Temp |1 |0 | |0 |
+ROW |872 |34063 |Temp |1 |0 | |0 |
+ROW |873 |32618 |Do not discover aggregate metrics |1 |0 | |0 |
+ROW |874 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
+ROW |875 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
+ROW |876 |30687 |trigger SENSOR_LO_DISAST |3 |0 | |0 |
+ROW |877 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
+ROW |878 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
+ROW |879 |30687 |trigger SENSOR_HI_DISAST |6 |0 | |0 |
TABLE |lld_override_condition
FIELDS|lld_override_conditionid|lld_overrideid|operator|macro |value |
@@ -48773,78 +48847,78 @@ ROW |473 |543 |8 |{#ZYXEL.IF.NAME}
ROW |474 |544 |8 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
ROW |475 |545 |8 |{#ZYXEL.IF.NAME} |.* |
ROW |476 |546 |8 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |644 |728 |8 |{#GRPC.CODE} |{$ETCD.GRPC_CODE.TRIGGER.MATCHES} |
-ROW |645 |729 |8 |{#MODE} |tcp |
-ROW |646 |730 |8 |{#MODE} |tcp |
-ROW |647 |731 |8 |{#MODE} |tcp |
-ROW |648 |732 |8 |{#MODE} |tcp |
-ROW |649 |733 |8 |{#MODE} |tcp |
-ROW |650 |734 |8 |{#MODE} |tcp |
-ROW |651 |735 |8 |{#NODE_STATE} |1 |
-ROW |652 |736 |8 |{#NODE_STATE} |7 |
-ROW |653 |737 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
-ROW |654 |737 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
-ROW |655 |738 |8 |{#DISKTYPE} |nvme |
-ROW |656 |739 |9 |{#DISKTYPE} |nvme |
-ROW |657 |740 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
-ROW |658 |740 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
-ROW |659 |741 |8 |{#DISKTYPE} |nvme |
-ROW |660 |742 |9 |{#DISKTYPE} |nvme |
-ROW |661 |743 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |662 |744 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |663 |745 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |664 |746 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |665 |747 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |666 |748 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |667 |749 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |668 |750 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |669 |751 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |670 |752 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |671 |753 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |672 |754 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |673 |755 |9 |{#CISCO.IF.NAME} |{$CISCO.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |674 |756 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |675 |757 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |676 |758 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |677 |759 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |678 |760 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |679 |761 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |680 |762 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |681 |763 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |682 |764 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |683 |765 |8 |{#ZYXEL.IF.NAME} |.* |
-ROW |684 |766 |8 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |685 |767 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |686 |768 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |687 |769 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |688 |770 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |689 |771 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |690 |772 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |691 |773 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |692 |774 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |693 |775 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |694 |776 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |695 |777 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |696 |778 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |697 |779 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |698 |780 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |699 |781 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |700 |782 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |701 |783 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |702 |784 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |703 |785 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |704 |786 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |705 |787 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |706 |788 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |707 |789 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |708 |790 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |709 |791 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |710 |792 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |711 |793 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |712 |794 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |713 |795 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |714 |796 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |715 |797 |8 |{#FSTYPE} |3&pipe;4 |
+ROW |716 |804 |8 |{#GRPC.CODE} |{$ETCD.GRPC_CODE.TRIGGER.MATCHES} |
+ROW |717 |805 |8 |{#MODE} |tcp |
+ROW |718 |806 |8 |{#MODE} |tcp |
+ROW |719 |807 |8 |{#MODE} |tcp |
+ROW |720 |808 |8 |{#MODE} |tcp |
+ROW |721 |809 |8 |{#MODE} |tcp |
+ROW |722 |810 |8 |{#MODE} |tcp |
+ROW |723 |811 |8 |{#NODE_STATE} |1 |
+ROW |724 |812 |8 |{#NODE_STATE} |7 |
+ROW |725 |813 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
+ROW |726 |813 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
+ROW |727 |814 |8 |{#DISKTYPE} |nvme |
+ROW |728 |815 |9 |{#DISKTYPE} |nvme |
+ROW |729 |816 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
+ROW |730 |816 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
+ROW |731 |817 |8 |{#DISKTYPE} |nvme |
+ROW |732 |818 |9 |{#DISKTYPE} |nvme |
+ROW |733 |819 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |734 |820 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |735 |821 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |736 |822 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |737 |823 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |738 |824 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |739 |825 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |740 |826 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |741 |827 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |742 |828 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |743 |829 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |744 |830 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |745 |831 |9 |{#CISCO.IF.NAME} |{$CISCO.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |746 |832 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |747 |833 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |748 |834 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |749 |835 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |750 |836 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |751 |837 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |752 |838 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |753 |839 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |754 |840 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |755 |841 |8 |{#ZYXEL.IF.NAME} |.* |
+ROW |756 |842 |8 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |757 |843 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |758 |844 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |759 |845 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |760 |846 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |761 |847 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |762 |848 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |763 |849 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |764 |850 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |765 |851 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |766 |852 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |767 |853 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |768 |854 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |769 |855 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |770 |856 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |771 |857 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |772 |858 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |773 |859 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |774 |860 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |775 |861 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |776 |862 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |777 |863 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |778 |864 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |779 |865 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |780 |866 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |781 |867 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |782 |868 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |783 |869 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |784 |870 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |785 |871 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |786 |872 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |787 |873 |8 |{#FSTYPE} |3&pipe;4 |
TABLE |lld_override_operation
FIELDS|lld_override_operationid|lld_overrideid|operationobject|operator|value |
@@ -48884,85 +48958,85 @@ ROW |564 |543 |1 |8 |.*
ROW |565 |544 |1 |8 |.* |
ROW |566 |545 |1 |8 |.* |
ROW |567 |546 |1 |8 |.* |
-ROW |755 |728 |1 |2 |Too many failed gRPC requests |
-ROW |756 |729 |0 |2 |Number of responses with codes |
-ROW |757 |730 |0 |2 |Number of responses with codes |
-ROW |758 |731 |0 |2 |Number of responses with codes |
-ROW |759 |732 |0 |2 |Number of responses with codes |
-ROW |760 |733 |0 |2 |Number of responses with codes |
-ROW |761 |734 |0 |2 |Number of responses with codes |
-ROW |762 |735 |0 |2 |Number of replicas |
-ROW |763 |735 |0 |2 |Unhealthy replicas |
-ROW |764 |735 |0 |2 |Number of unhealthy replicas |
-ROW |765 |735 |0 |2 |Replication lag |
-ROW |766 |736 |0 |2 |Replication lag |
-ROW |767 |737 |0 |8 | |
-ROW |768 |738 |0 |2 |Self-test |
-ROW |769 |739 |0 |8 |Media&pipe;Percentage&pipe;Critical |
-ROW |770 |740 |0 |8 | |
-ROW |771 |741 |0 |2 |Self-test |
-ROW |772 |742 |0 |8 |Media&pipe;Percentage&pipe;Critical |
-ROW |773 |743 |1 |8 |Temperature is below the warning threshold |
-ROW |774 |744 |1 |8 |Temperature is below the critical threshold|
-ROW |775 |745 |1 |8 |Temperature is above the warning threshold |
-ROW |776 |746 |1 |8 |Temperature is above the critical threshold|
-ROW |777 |747 |1 |8 |Fan speed is below the warning threshold |
-ROW |778 |748 |1 |8 |Fan speed is below the critical threshold |
-ROW |779 |749 |1 |8 |Fan speed is above the warning threshold |
-ROW |780 |750 |1 |8 |Fan speed is above the critical threshold |
-ROW |781 |751 |1 |8 |Voltage is below the warning threshold |
-ROW |782 |752 |1 |8 |Voltage is below the critical threshold |
-ROW |783 |753 |1 |8 |Voltage is above the warning threshold |
-ROW |784 |754 |1 |8 |Voltage is above the critical threshold |
-ROW |785 |755 |1 |8 |.* |
-ROW |786 |756 |1 |8 |.* |
-ROW |787 |757 |1 |8 |.* |
-ROW |788 |758 |1 |8 |.* |
-ROW |789 |759 |1 |8 |.* |
-ROW |790 |760 |1 |8 |.* |
-ROW |791 |761 |1 |8 |.* |
-ROW |792 |762 |1 |8 |.* |
-ROW |793 |763 |1 |8 |.* |
-ROW |794 |764 |1 |8 |.* |
-ROW |795 |765 |1 |8 |.* |
-ROW |796 |766 |1 |8 |.* |
-ROW |797 |767 |1 |8 |.* |
-ROW |798 |768 |1 |8 |.* |
-ROW |799 |769 |1 |8 |.* |
-ROW |800 |770 |1 |8 |.* |
-ROW |801 |771 |1 |8 |.* |
-ROW |802 |772 |1 |8 |.* |
-ROW |803 |773 |1 |8 |.* |
-ROW |804 |774 |1 |8 |.* |
-ROW |805 |775 |0 |2 |Humidity |
-ROW |806 |776 |0 |2 |Humidity |
-ROW |807 |777 |0 |2 |Humidity |
-ROW |808 |778 |0 |2 |Humidity |
-ROW |809 |779 |0 |2 |Humidity |
-ROW |810 |780 |0 |2 |Humidity |
-ROW |811 |781 |0 |2 |Humidity |
-ROW |812 |782 |0 |2 |Humidity |
-ROW |813 |783 |0 |2 |Humidity |
-ROW |814 |784 |0 |2 |Humidity |
-ROW |815 |785 |0 |2 |Humidity |
-ROW |816 |786 |0 |2 |Humidity |
-ROW |817 |787 |0 |2 |Humidity |
-ROW |818 |788 |0 |2 |Humidity |
-ROW |819 |789 |0 |2 |Humidity |
-ROW |820 |790 |0 |2 |Humidity |
-ROW |821 |791 |0 |2 |Humidity |
-ROW |822 |792 |0 |2 |Humidity |
-ROW |823 |793 |0 |2 |Humidity |
-ROW |824 |794 |0 |2 |Humidity |
-ROW |825 |795 |0 |2 |Humidity |
-ROW |826 |796 |0 |2 |Humidity |
-ROW |827 |797 |0 |2 |Saved |
-ROW |828 |798 |1 |2 |{#SENSOR_LO_WARN} |
-ROW |829 |799 |1 |2 |{#SENSOR_LO_CRIT} |
-ROW |830 |800 |1 |2 |{#SENSOR_LO_DISAST} |
-ROW |831 |801 |1 |2 |{#SENSOR_HI_WARN} |
-ROW |832 |802 |1 |2 |{#SENSOR_HI_CRIT} |
-ROW |833 |803 |1 |2 |{#SENSOR_HI_DISAST} |
+ROW |834 |804 |1 |2 |Too many failed gRPC requests |
+ROW |835 |805 |0 |2 |Number of responses with codes |
+ROW |836 |806 |0 |2 |Number of responses with codes |
+ROW |837 |807 |0 |2 |Number of responses with codes |
+ROW |838 |808 |0 |2 |Number of responses with codes |
+ROW |839 |809 |0 |2 |Number of responses with codes |
+ROW |840 |810 |0 |2 |Number of responses with codes |
+ROW |841 |811 |0 |2 |Number of replicas |
+ROW |842 |811 |0 |2 |Unhealthy replicas |
+ROW |843 |811 |0 |2 |Number of unhealthy replicas |
+ROW |844 |811 |0 |2 |Replication lag |
+ROW |845 |812 |0 |2 |Replication lag |
+ROW |846 |813 |0 |8 | |
+ROW |847 |814 |0 |2 |Self-test |
+ROW |848 |815 |0 |8 |Media&pipe;Percentage&pipe;Critical |
+ROW |849 |816 |0 |8 | |
+ROW |850 |817 |0 |2 |Self-test |
+ROW |851 |818 |0 |8 |Media&pipe;Percentage&pipe;Critical |
+ROW |852 |819 |1 |8 |Temperature is below the warning threshold |
+ROW |853 |820 |1 |8 |Temperature is below the critical threshold|
+ROW |854 |821 |1 |8 |Temperature is above the warning threshold |
+ROW |855 |822 |1 |8 |Temperature is above the critical threshold|
+ROW |856 |823 |1 |8 |Fan speed is below the warning threshold |
+ROW |857 |824 |1 |8 |Fan speed is below the critical threshold |
+ROW |858 |825 |1 |8 |Fan speed is above the warning threshold |
+ROW |859 |826 |1 |8 |Fan speed is above the critical threshold |
+ROW |860 |827 |1 |8 |Voltage is below the warning threshold |
+ROW |861 |828 |1 |8 |Voltage is below the critical threshold |
+ROW |862 |829 |1 |8 |Voltage is above the warning threshold |
+ROW |863 |830 |1 |8 |Voltage is above the critical threshold |
+ROW |864 |831 |1 |8 |.* |
+ROW |865 |832 |1 |8 |.* |
+ROW |866 |833 |1 |8 |.* |
+ROW |867 |834 |1 |8 |.* |
+ROW |868 |835 |1 |8 |.* |
+ROW |869 |836 |1 |8 |.* |
+ROW |870 |837 |1 |8 |.* |
+ROW |871 |838 |1 |8 |.* |
+ROW |872 |839 |1 |8 |.* |
+ROW |873 |840 |1 |8 |.* |
+ROW |874 |841 |1 |8 |.* |
+ROW |875 |842 |1 |8 |.* |
+ROW |876 |843 |1 |8 |.* |
+ROW |877 |844 |1 |8 |.* |
+ROW |878 |845 |1 |8 |.* |
+ROW |879 |846 |1 |8 |.* |
+ROW |880 |847 |1 |8 |.* |
+ROW |881 |848 |1 |8 |.* |
+ROW |882 |849 |1 |8 |.* |
+ROW |883 |850 |1 |8 |.* |
+ROW |884 |851 |0 |2 |Humidity |
+ROW |885 |852 |0 |2 |Humidity |
+ROW |886 |853 |0 |2 |Humidity |
+ROW |887 |854 |0 |2 |Humidity |
+ROW |888 |855 |0 |2 |Humidity |
+ROW |889 |856 |0 |2 |Humidity |
+ROW |890 |857 |0 |2 |Humidity |
+ROW |891 |858 |0 |2 |Humidity |
+ROW |892 |859 |0 |2 |Humidity |
+ROW |893 |860 |0 |2 |Humidity |
+ROW |894 |861 |0 |2 |Humidity |
+ROW |895 |862 |0 |2 |Humidity |
+ROW |896 |863 |0 |2 |Humidity |
+ROW |897 |864 |0 |2 |Humidity |
+ROW |898 |865 |0 |2 |Humidity |
+ROW |899 |866 |0 |2 |Humidity |
+ROW |900 |867 |0 |2 |Humidity |
+ROW |901 |868 |0 |2 |Humidity |
+ROW |902 |869 |0 |2 |Humidity |
+ROW |903 |870 |0 |2 |Humidity |
+ROW |904 |871 |0 |2 |Humidity |
+ROW |905 |872 |0 |2 |Humidity |
+ROW |906 |873 |0 |2 |Saved |
+ROW |907 |874 |1 |2 |{#SENSOR_LO_WARN} |
+ROW |908 |875 |1 |2 |{#SENSOR_LO_CRIT} |
+ROW |909 |876 |1 |2 |{#SENSOR_LO_DISAST} |
+ROW |910 |877 |1 |2 |{#SENSOR_HI_WARN} |
+ROW |911 |878 |1 |2 |{#SENSOR_HI_CRIT} |
+ROW |912 |879 |1 |2 |{#SENSOR_HI_DISAST} |
TABLE |lld_override_opstatus
FIELDS|lld_override_operationid|status|
@@ -49002,85 +49076,85 @@ ROW |564 |0 |
ROW |565 |0 |
ROW |566 |0 |
ROW |567 |0 |
-ROW |755 |0 |
-ROW |756 |0 |
-ROW |757 |0 |
-ROW |758 |0 |
-ROW |759 |0 |
-ROW |760 |0 |
-ROW |761 |0 |
-ROW |762 |0 |
-ROW |763 |0 |
-ROW |764 |0 |
-ROW |765 |0 |
-ROW |766 |0 |
-ROW |767 |0 |
-ROW |768 |0 |
-ROW |769 |0 |
-ROW |770 |0 |
-ROW |771 |0 |
-ROW |772 |0 |
-ROW |773 |0 |
-ROW |774 |0 |
-ROW |775 |0 |
-ROW |776 |0 |
-ROW |777 |0 |
-ROW |778 |0 |
-ROW |779 |0 |
-ROW |780 |0 |
-ROW |781 |0 |
-ROW |782 |0 |
-ROW |783 |0 |
-ROW |784 |0 |
-ROW |785 |0 |
-ROW |786 |0 |
-ROW |787 |0 |
-ROW |788 |0 |
-ROW |789 |0 |
-ROW |790 |0 |
-ROW |791 |0 |
-ROW |792 |0 |
-ROW |793 |0 |
-ROW |794 |0 |
-ROW |795 |0 |
-ROW |796 |0 |
-ROW |797 |0 |
-ROW |798 |0 |
-ROW |799 |0 |
-ROW |800 |0 |
-ROW |801 |0 |
-ROW |802 |0 |
-ROW |803 |0 |
-ROW |804 |0 |
-ROW |805 |0 |
-ROW |806 |0 |
-ROW |807 |0 |
-ROW |808 |0 |
-ROW |809 |0 |
-ROW |810 |0 |
-ROW |811 |0 |
-ROW |812 |0 |
-ROW |813 |0 |
-ROW |814 |0 |
-ROW |815 |0 |
-ROW |816 |0 |
-ROW |817 |0 |
-ROW |818 |0 |
-ROW |819 |0 |
-ROW |820 |0 |
-ROW |821 |0 |
-ROW |822 |0 |
-ROW |823 |0 |
-ROW |824 |0 |
-ROW |825 |0 |
-ROW |826 |0 |
-ROW |827 |0 |
-ROW |828 |0 |
-ROW |829 |0 |
-ROW |830 |0 |
-ROW |831 |0 |
-ROW |832 |0 |
-ROW |833 |0 |
+ROW |834 |0 |
+ROW |835 |0 |
+ROW |836 |0 |
+ROW |837 |0 |
+ROW |838 |0 |
+ROW |839 |0 |
+ROW |840 |0 |
+ROW |841 |0 |
+ROW |842 |0 |
+ROW |843 |0 |
+ROW |844 |0 |
+ROW |845 |0 |
+ROW |846 |0 |
+ROW |847 |0 |
+ROW |848 |0 |
+ROW |849 |0 |
+ROW |850 |0 |
+ROW |851 |0 |
+ROW |852 |0 |
+ROW |853 |0 |
+ROW |854 |0 |
+ROW |855 |0 |
+ROW |856 |0 |
+ROW |857 |0 |
+ROW |858 |0 |
+ROW |859 |0 |
+ROW |860 |0 |
+ROW |861 |0 |
+ROW |862 |0 |
+ROW |863 |0 |
+ROW |864 |0 |
+ROW |865 |0 |
+ROW |866 |0 |
+ROW |867 |0 |
+ROW |868 |0 |
+ROW |869 |0 |
+ROW |870 |0 |
+ROW |871 |0 |
+ROW |872 |0 |
+ROW |873 |0 |
+ROW |874 |0 |
+ROW |875 |0 |
+ROW |876 |0 |
+ROW |877 |0 |
+ROW |878 |0 |
+ROW |879 |0 |
+ROW |880 |0 |
+ROW |881 |0 |
+ROW |882 |0 |
+ROW |883 |0 |
+ROW |884 |0 |
+ROW |885 |0 |
+ROW |886 |0 |
+ROW |887 |0 |
+ROW |888 |0 |
+ROW |889 |0 |
+ROW |890 |0 |
+ROW |891 |0 |
+ROW |892 |0 |
+ROW |893 |0 |
+ROW |894 |0 |
+ROW |895 |0 |
+ROW |896 |0 |
+ROW |897 |0 |
+ROW |898 |0 |
+ROW |899 |0 |
+ROW |900 |0 |
+ROW |901 |0 |
+ROW |902 |0 |
+ROW |903 |0 |
+ROW |904 |0 |
+ROW |905 |0 |
+ROW |906 |0 |
+ROW |907 |0 |
+ROW |908 |0 |
+ROW |909 |0 |
+ROW |910 |0 |
+ROW |911 |0 |
+ROW |912 |0 |
TABLE |lld_override_opdiscover
FIELDS|lld_override_operationid|discover|
@@ -49120,83 +49194,83 @@ ROW |564 |1 |
ROW |565 |0 |
ROW |566 |1 |
ROW |567 |0 |
-ROW |755 |0 |
-ROW |756 |1 |
-ROW |757 |1 |
-ROW |758 |1 |
-ROW |759 |1 |
-ROW |760 |1 |
-ROW |761 |1 |
-ROW |762 |0 |
-ROW |763 |0 |
-ROW |764 |0 |
-ROW |765 |1 |
-ROW |766 |1 |
-ROW |767 |1 |
-ROW |768 |1 |
-ROW |769 |1 |
-ROW |770 |1 |
-ROW |771 |1 |
-ROW |772 |1 |
-ROW |773 |1 |
-ROW |774 |1 |
-ROW |775 |1 |
-ROW |776 |1 |
-ROW |777 |1 |
-ROW |778 |1 |
-ROW |779 |1 |
-ROW |780 |1 |
-ROW |781 |1 |
-ROW |782 |1 |
-ROW |783 |1 |
-ROW |784 |1 |
-ROW |785 |1 |
-ROW |786 |1 |
-ROW |787 |1 |
-ROW |788 |1 |
-ROW |789 |1 |
-ROW |790 |1 |
-ROW |791 |1 |
-ROW |792 |1 |
-ROW |793 |1 |
-ROW |794 |1 |
-ROW |795 |1 |
-ROW |796 |0 |
-ROW |797 |1 |
-ROW |798 |1 |
-ROW |799 |1 |
-ROW |800 |1 |
-ROW |801 |1 |
-ROW |802 |1 |
-ROW |803 |1 |
-ROW |804 |1 |
-ROW |805 |1 |
-ROW |806 |1 |
-ROW |807 |1 |
-ROW |808 |1 |
-ROW |809 |1 |
-ROW |810 |1 |
-ROW |811 |1 |
-ROW |812 |1 |
-ROW |813 |1 |
-ROW |814 |1 |
-ROW |815 |1 |
-ROW |816 |1 |
-ROW |817 |1 |
-ROW |818 |1 |
-ROW |819 |1 |
-ROW |820 |1 |
-ROW |821 |1 |
-ROW |822 |1 |
-ROW |823 |1 |
-ROW |824 |1 |
-ROW |825 |1 |
-ROW |826 |1 |
-ROW |827 |1 |
-ROW |828 |1 |
-ROW |829 |1 |
-ROW |830 |1 |
-ROW |831 |1 |
-ROW |832 |1 |
-ROW |833 |1 |
+ROW |834 |0 |
+ROW |835 |1 |
+ROW |836 |1 |
+ROW |837 |1 |
+ROW |838 |1 |
+ROW |839 |1 |
+ROW |840 |1 |
+ROW |841 |0 |
+ROW |842 |0 |
+ROW |843 |0 |
+ROW |844 |1 |
+ROW |845 |1 |
+ROW |846 |1 |
+ROW |847 |1 |
+ROW |848 |1 |
+ROW |849 |1 |
+ROW |850 |1 |
+ROW |851 |1 |
+ROW |852 |1 |
+ROW |853 |1 |
+ROW |854 |1 |
+ROW |855 |1 |
+ROW |856 |1 |
+ROW |857 |1 |
+ROW |858 |1 |
+ROW |859 |1 |
+ROW |860 |1 |
+ROW |861 |1 |
+ROW |862 |1 |
+ROW |863 |1 |
+ROW |864 |1 |
+ROW |865 |1 |
+ROW |866 |1 |
+ROW |867 |1 |
+ROW |868 |1 |
+ROW |869 |1 |
+ROW |870 |1 |
+ROW |871 |1 |
+ROW |872 |1 |
+ROW |873 |1 |
+ROW |874 |1 |
+ROW |875 |0 |
+ROW |876 |1 |
+ROW |877 |1 |
+ROW |878 |1 |
+ROW |879 |1 |
+ROW |880 |1 |
+ROW |881 |1 |
+ROW |882 |1 |
+ROW |883 |1 |
+ROW |884 |1 |
+ROW |885 |1 |
+ROW |886 |1 |
+ROW |887 |1 |
+ROW |888 |1 |
+ROW |889 |1 |
+ROW |890 |1 |
+ROW |891 |1 |
+ROW |892 |1 |
+ROW |893 |1 |
+ROW |894 |1 |
+ROW |895 |1 |
+ROW |896 |1 |
+ROW |897 |1 |
+ROW |898 |1 |
+ROW |899 |1 |
+ROW |900 |1 |
+ROW |901 |1 |
+ROW |902 |1 |
+ROW |903 |1 |
+ROW |904 |1 |
+ROW |905 |1 |
+ROW |906 |1 |
+ROW |907 |1 |
+ROW |908 |1 |
+ROW |909 |1 |
+ROW |910 |1 |
+ROW |911 |1 |
+ROW |912 |1 |